body {
    font-family: 'Inter', sans-serif;
    background-color: #fff;
    overflow-x: hidden;
}

/* ==========================================================================
   Contact Page Navigation Active State
   ========================================================================== */
.nav-links li a.active {
    color: #C9A961;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 20px;
    letter-spacing: -0.15px;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: none;
    text-decoration-thickness: 12%;
    text-underline-offset: 24%;
    text-underline-position: from-font;
}

.nav-links li a.active svg {
    color: #C9A961;
}

/* ==========================================================================
   Contact Section 1: Hero
   ========================================================================== */

.contact-section1 {
    position: relative;
    width: 100%;
    height: 541px;
    background-image: url('Assets/Contact/contactBgHeroSection1.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 80px;
}

.contact-section1-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.80) 0%, rgba(0, 0, 0, 0.60) 50%, rgba(0, 0, 0, 0.40) 100%);
    z-index: 1;
}

.contact-section1-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Breadcrumb Styling */
.contact-breadcrumb {
    margin-bottom: 24px;
    color: #FFF;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-style: normal;
    line-height: 20px;
}

.contact-breadcrumb a {
    color: #FFF;
    font-weight: 300;
    opacity: 0.7;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.contact-breadcrumb a:hover {
    opacity: 1;
}

.contact-breadcrumb .current {
    font-weight: 500;
}

/* Hero Title Styling */
.contact-section1-title {
    margin-bottom: 24px;
}

.contact-section1-title .light-text {
    color: #FFF;
    font-family: 'Inter', sans-serif;
    font-size: 40px;
    font-style: normal;
    font-weight: 300;
    line-height: 75px;
    letter-spacing: 0.264px;
}

.contact-section1-title .bold-text {
    color: #FFF;
    font-family: 'Inter', sans-serif;
    font-size: 40px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 0.264px;
}

/* Hero Description Styling */
.contact-section1-desc {
    width: 100%;
    max-width: 800px;
    color: rgba(255, 255, 255, 0.90);
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 32.5px;
    letter-spacing: -0.449px;


}

/* Responsive Design for Contact Hero */
@media (max-width: 1024px) {
    .contact-section1 {
        height: auto;
        min-height: 500px;
        align-items: flex-end;
        padding: 120px 20px 60px 20px;
    }

    .contact-section1-content {
        padding-top: 60px;
    }

    .contact-section1-title .light-text,
    .contact-section1-title .bold-text {
        font-size: 32px;
        line-height: 1.4;
    }

    .contact-section1-desc {
        font-size: 18px;
        line-height: 1.6;
        padding: 0 20px;
    }
}

@media (max-width: 768px) {
    .contact-section1 {
        min-height: 500px;
        height: auto;
        align-items: flex-end;
        padding: 280px 16px 40px 16px;
    }

    .contact-section1-content {
        padding-top: 40px;
    }

    .contact-section1-title {
        margin-bottom: 12px;
    }

    .contact-section1-title br {
        display: none;
    }

    .contact-section1-title .light-text,
    .contact-section1-title .bold-text {
        display: block;
        font-size: 22px;
        line-height: 32px;
    }

    .contact-section1-title .bold-text {
        margin-top: 4px;
    }

    .contact-section1-desc {
        font-size: 14px;
        line-height: 24px;
        padding: 0 4px;
    }

    .contact-breadcrumb {
        margin-bottom: 16px;
        font-size: 12px;
    }
}

/* ==========================================================================
   Contact Section 2: Get in Touch
   ========================================================================== */
.contact-section2 {
    padding: 100px 0;
    background: #FFF;
}

.contact-header {
    text-align: center;
    margin-bottom: 60px;
}

.contact-title {
    color: #2A2A2A;
    font-family: 'Inter', sans-serif;
    font-size: 36px;
    font-style: normal;
    font-weight: 600;
    line-height: 40px;
    letter-spacing: 0.369px;
    margin-bottom: 16px;
}

.contact-subtitle {
    color: #4A5565;
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    letter-spacing: -0.439px;
    margin: 0;
}

.contact-cards-grid {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 60px;
}

.contact-info-card {
    width: 295px;
    height: 250px;
    border-radius: 16px;
    border: 1px solid #F3F4F6;
    background: #FFF;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.10), 0 2px 4px -2px rgba(0, 0, 0, 0.10);
    padding: 32px 24px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.contact-icon-container {
    display: flex;
    width: 64px;
    height: 64px;
    min-width: 64px;
    max-width: 64px;
    min-height: 64px;
    max-height: 64px;
    flex-shrink: 0;
    justify-content: center;
    align-items: center;
    border-radius: 16px;
    margin-bottom: 24px;
    box-sizing: border-box;
}

.contact-icon-container.green-gradient {
    background: linear-gradient(135deg, #1A4D2E 0%, rgba(26, 77, 46, 0.80) 100%);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.10), 0 4px 6px -4px rgba(0, 0, 0, 0.10);
}

.contact-icon-container.gold-gradient {
    background: linear-gradient(135deg, #C9A961 0%, rgba(201, 169, 97, 0.80) 100%);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.10), 0 4px 6px -4px rgba(0, 0, 0, 0.10);
}

.contact-icon-container img {
    display: block;
    margin: 0;
    width: 32px;
    height: 32px;
    filter: brightness(0) invert(1);
}

.contact-card-title {
    color: #2A2A2A;
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 28px;
    letter-spacing: -0.449px;
    margin: 0 0 12px 0;
}

.contact-card-text {
    color: #4A5565;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 26px;
    letter-spacing: -0.312px;
    margin: 0;
}

.contact-form-wrapper {
    width: 100%;
    border-radius: 16px;
    border: 1px solid #E5E7EB;
    background: #F5F2ED;
    padding: 48px;
    box-sizing: border-box;
    margin: 0 auto;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-row {
    display: flex;
    gap: 24px;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    width: 100%;
}

.form-group label {
    color: #2A2A2A;
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 28px;
    letter-spacing: -0.15px;
    margin-bottom: 8px;
}

.form-group input {
    display: flex;
    width: 100%;
    height: 56px;
    padding: 16px;
    align-items: center;
    border-radius: 8px;
    border: 1px solid rgba(26, 77, 46, 0.16);
    background: #FFF;
    box-sizing: border-box;
    color: #2A2A2A;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #4A5565;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: -0.312px;
}

.form-group textarea {
    display: flex;
    width: 100%;
    height: 140px;
    padding: 16px;
    border-radius: 8px;
    border: 1px solid rgba(26, 77, 46, 0.16);
    background: #FFF;
    box-sizing: border-box;
    color: #2A2A2A;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    resize: none;
}

.date-input {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="%234A5565" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect x="3" y="4" width="18" height="18" rx="2" ry="2"></rect><line x1="16" y1="2" x2="16" y2="6"></line><line x1="8" y1="2" x2="8" y2="6"></line><line x1="3" y1="10" x2="21" y2="10"></line></svg>');
    background-repeat: no-repeat;
    background-position: right 16px center;
}

.form-submit {
    display: flex;
    justify-content: center;
    margin-top: 16px;
}

.btn-send-enquiry {
    display: inline-flex;
    padding: 16px 32px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border-radius: 8px;
    background: #1A4D2E;
    color: #FFF;
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-send-enquiry:hover {
    background: #123720;
}

/* Responsive */
@media (max-width: 1200px) {
    .contact-cards-grid {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 1024px) {
    .form-row {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .contact-title {
        font-size: 28px;
    }

    .contact-form-wrapper {
        padding: 24px;
    }
}

/* ==========================================================================
   Contact Section 3: Map
   ========================================================================== */
.contact-section3 {
    padding: 0 0 100px 0;
    background: #FFF;
}

.contact-map-header {
    text-align: center;
    margin-bottom: 40px;
}

.contact-map-title {
    color: #2A2A2A;
    font-family: 'Inter', sans-serif;
    font-size: 36px;
    font-style: normal;
    font-weight: 600;
    line-height: 40px;
    letter-spacing: 0.369px;
    margin-bottom: 16px;
}

.contact-map-subtitle {
    color: #4A5565;
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    letter-spacing: -0.439px;
    margin: 0;
}

.contact-map-container {
    width: 100%;
    height: 520px;
    margin: 0 auto;
    border-radius: 16px;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.08) 100%), url('Assets/Contact/contactMap.png') lightgray 50% / cover no-repeat;
}

@media (max-width: 768px) {
    .contact-map-title {
        font-size: 28px;
    }

    .contact-map-container {
        height: 300px;
        border-radius: 12px;
    }
}