/* =========================================
   CONTACT PAGE PREMIUM STYLES
   ========================================= */

:root {
    --primary: #DB6A9E;
    --primary-dark: #94619C;
    --secondary: #FFF0F7;
    --text-dark: #000000;
    --text-body: #000000;
    --bg-page: #FFF0F7;
    --border-color: #94619C;
    --gray-light: #f9f9f9; /* Added for premium soft backgrounds */
}

.contact-page {
    color: var(--text-dark);
    background-color: #ffffff;
}

.section-padding { padding: 80px 0; }
.container-1200 { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.text-center { text-align: center; }

/* Reusable Gradient Text */
.gradient-text {
    background: linear-gradient(135deg, var(--primary) 0%, #94619C 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* --- 1. Premium Header Banner --- */
.contact-header-banner {
    /* Upgraded to a soft editorial gradient */
    background: linear-gradient(180deg, #ffffff 0%, var(--gray-light) 100%);
    border-bottom: 1px solid rgba(0,0,0,0.03);
    padding: 50px 0;
}

.contact-header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-page-title {
    margin: 0;
    font-size: 38px;
    font-weight: 800;
    color: var(--text-dark);
    letter-spacing: -0.5px;
}

.contact-breadcrumb {
    font-size: 13px;
    color: #000000;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-breadcrumb a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-breadcrumb a:hover {
    color: var(--primary-dark);
}

.contact-breadcrumb span {
    color: var(--primary-dark);
}

/* --- 2. Main Layout --- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr; /* Adjusted to give the form slightly more breathing room */
    gap: 80px;
    align-items: start;
}

/* --- Left Column: Info --- */
.sp-subtitle {
    color: var(--primary);
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 3px;
    font-size: 14px;
    display: block;
    margin-bottom: 10px;
}

.sd-heading {
    font-size: 38px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.2;
}

/* Target the span in the heading to make it a gradient */
.sd-heading span { 
    color: #94619C;
    display: inline-block;
}

.contact-desc {
    font-size: 16px;
    color: #666; /* Softer text for paragraphs */
    line-height: 1.6;
    margin-bottom: 40px;
}

.contact-details-list {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Premium Homepage-Style Icons */
.contact-icon {
    width: 60px;
    height: 60px;
    background: rgba(219, 106, 158, 0.1); /* Primary tinted */
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid rgba(219, 106, 158, 0.2);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.contact-icon svg {
    width: 24px;
    height: 24px;
    transition: color 0.4s ease;
}

.contact-item:hover .contact-icon {
    background: var(--primary);
    color: #ffffff;
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(219, 106, 158, 0.2);
}

.contact-text strong {
    display: block;
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 5px;
    font-weight: 700;
}

.contact-text span, 
.contact-text a {
    color: #666;
    font-size: 15px;
    text-decoration: none;
    transition: color 0.3s;
    line-height: 1.5;
}

.contact-text a:hover { color: var(--primary); }

/* Social Icons */
.contact-socials {
    margin-top: 50px;
    padding-top: 40px;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.contact-socials h3 {
    font-size: 18px;
    margin: 0 0 20px;
    color: var(--text-dark);
    font-weight: 700;
}

.social-icons-row {
    display: flex;
    gap: 12px;
}

.social-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: var(--gray-light);
    border: 1px solid rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.social-btn:hover {
    background-color: var(--primary);
    color: #ffffff;
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(219, 106, 158, 0.2);
}

.social-btn svg { width: 20px; height: 20px; }

/* --- Right Column: Premium Form --- */
.contact-form-card {
    background: #ffffff;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.contact-form-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(219, 106, 158, 0.08);
}

.contact-form-card h3 {
    font-size: 26px;
    font-weight: 800;
    margin: 0 0 30px;
    color: var(--text-dark);
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

/* Premium Soft Inputs */
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 16px 20px;
    border: 1px solid rgba(0,0,0,0.06);
    background: var(--gray-light);
    border-radius: 12px; /* Soft modern corners */
    font-family: inherit;
    font-size: 15px;
    color: var(--text-dark);
    transition: all 0.3s ease;
    outline: none;
    box-sizing: border-box;
}

.contact-form textarea {
    resize: vertical;
    min-height: 140px;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--primary);
    background: #ffffff;
    box-shadow: 0 5px 15px rgba(219, 106, 158, 0.08);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #999;
}

/* Premium Pill Button */
.btn-primary {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background-color: var(--primary);
    color: #fff;
    padding: 16px 35px;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 30px; /* Upgraded to a pill shape */
    transition: all 0.4s ease;
    border: none;
    cursor: pointer;
    width: 100%;
    margin-top: 10px;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    box-shadow: 0 10px 20px rgba(219, 106, 158, 0.3);
    transform: translateY(-2px);
}

/* --- 3. Full Width Map Section --- */
.full-width-map-section {
    width: 100vw;               /* Force full viewport width */
    position: relative;
    left: 50%;                  /* Center the wrapper */
    right: 50%;
    margin-left: -50vw;         /* Pull back to the left edge */
    margin-right: -50vw;        /* Pull back to the right edge */
    height: 450px;              /* Taller height for better visibility */
    line-height: 0;             /* Remove annoying blank space at bottom */
    display: block;
    overflow: hidden;
}

.full-width-map-section iframe {
    width: 100%;
    height: 100%;
    display: block;
    border: none;
    filter: grayscale(10%) contrast(1.1); /* Subtle premium styling for the map */
}

/* --- Responsive --- */
@media (max-width: 991px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .contact-form-card {
        padding: 40px 30px;
    }
}

@media (max-width: 767px) {
    .contact-header-banner {
        padding: 40px 0;
    }
    .contact-header-flex {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    .contact-page-title { 
        font-size: 30px; 
    }
    .contact-form .form-row { 
        grid-template-columns: 1fr; 
        gap: 0; 
    }
    .contact-form-card {
        padding: 30px 20px;
    }
    .section-padding { padding: 50px 0; }
    
    .full-width-map-section {
        height: 300px; /* Make map slightly shorter on mobile */
    }
}