/* ───────────────────────────────────────────
   1. RESET & BASE
─────────────────────────────────────────── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: #FCFAF7;
    font-family: 'Jost', sans-serif;
    color: #1A202C;
    overflow-x: hidden;
}











/* ───────────────────────────────────────────
   2. SHARED GRADIENT UTILITIES
─────────────────────────────────────────── */
.gold-gradient {
    background: linear-gradient(135deg, #D4AF37 0%, #F1D592 50%, #B8860B 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gold-bg-gradient {
    background: linear-gradient(135deg, #D4AF37 0%, #B8860B 100%);
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background-color: #D4AF37;
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background-color: black;
}













/* ───────────────────────────────────────────
   3. HEADER
─────────────────────────────────────────── */
.site-header {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 40;
    width: 100%;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    background-color: rgba(255, 255, 255, 0.685);
    padding: 1px 12px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.site-header.scrolled {
    padding-top: 4px;
    padding-bottom: 3px;
}

.site-header:not(.scrolled) {
    padding-top: 4px;
    padding-bottom: 4px;
}

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

.header-brand {
    display: flex;
    flex-direction: column;
}

.site-title {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.025em;
}

.menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    color: black;
    transition: color 0.3s ease;
    margin-left: 16px;
    background: none;
    border: none;
    cursor: pointer;
}

.menu-toggle:hover {
    /* color: #B8860B; */
    color: #D4AF37;
}

.menu-icon {
    font-size: 30px;
}

@media (min-width: 768px) {
    .site-title {
        font-size: 30px;
    }

    .menu-toggle {
        margin-left: 0;
    }
}











/* ───────────────────────────────────────────
   4. HERO SECTION
─────────────────────────────────────────── */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 96px 24px 48px;
}

.hero-bg {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 0;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.15;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 1024px;
    margin: 0 auto;
    text-align: left;
}

.hero-heading {
    font-family: 'Playfair Display', serif;
    font-size: 45px;
    margin-bottom: 24px;
    /* line-height: 1.1; */
    font-weight: normal;
}

.hero-highlight {
    font-weight: 700;
    color: #D4AF37;
}

.hero-description {
    font-size: 20px;
    color: #4B5563;
    margin-bottom: 40px;
    max-width: 672px;
    font-weight: 300;
    line-height: 1.625;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: start;
}

.btn-primary {
    display: block;
    padding: 10px 20px;
    background: linear-gradient(135deg, #D4AF37 0%, #B8860B 100%);
    color: #ffffff;
    font-weight: 700;
    /* border-radius: 15px; */
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    text-decoration: none;
    text-align: center;
    transition: transform 0.2s ease;
}

.btn-primary:hover {
    transform: scale(1.05);
}

.btn-outline {
    display: block;
    padding: 10px 20px;
    border: 2px solid #D4AF37;
    color: #B8860B;
    font-weight: 700;
    border-radius: 30px;
    text-decoration: none;
    text-align: center;
    transition: background-color 0.2s ease;
}

.btn-outline:hover {
    background-color: rgba(212, 175, 55, 0.05);
}

@media (min-width: 640px) {
    .hero-actions {
        flex-direction: row;
    }
}

@media (min-width: 768px) {
    .hero-section {
        padding: 96px 48px 48px;
    }

    .hero-heading {
        font-size: 60px;
    }

    .hero-description {
        font-size: 24px;
    }

    .hero-actions {
        justify-content: flex-start;
    }
}














/* ───────────────────────────────────────────
   4. MOTTO SECTION
─────────────────────────────────────────── */
.motto-section {
    background-color: #000000;
    padding: 50px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* text-align: center; */
}

.motto-container {
    max-width: 900px;
    margin: 0 auto;
    width: 100%;
}

.motto-heading {
    font-family: 'Cormorant Garamond', 'Georgia', 'Times New Roman', serif;
    font-size: 30px;
    font-weight: 400;
    line-height: 1.3;
    color: #ffffff;
    margin-bottom: 24px;
}

.motto-highlight {
    color: #D4AF37;
    font-weight: 700;
}

.motto-text {
    font-family: 'Jost', sans-serif;
    font-weight: bold;
    font-size: 20px;
    color: #D4AF37;
    margin-top: 16px;
    text-align: right;
    /* word-spacing: 5px; */
}

/* Optional: slightly larger on bigger screens */
@media (min-width: 768px) {
    .motto-heading {
        font-size: 35px;
    }

    .motto-text {
        font-size: 20px;
    }
}













/* ───────────────────────────────────────────
   5. ABOUT SECTION
─────────────────────────────────────────── */
.about-section {
    padding: 96px 0;
    background-color: #ffffff;
    border-top: 1px solid rgba(212, 175, 55, 0.05);
    border-bottom: 1px solid rgba(212, 175, 55, 0.05);
}

.about-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 64px;
    align-items: center;
}

.about-image-wrap {
    position: relative;
}

.about-corner-tl {
    position: absolute;
    top: -16px;
    left: -16px;
    width: 96px;
    height: 96px;
    border-top: 2px solid #D4AF37;
    border-left: 2px solid #D4AF37;
}

.about-image {
    position: relative;
    z-index: 10;
    width: 100%;
    border-radius: 2px;
    filter: grayscale(100%);
    transition: filter 0.7s ease;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.about-image:hover {
    filter: grayscale(0%);
}

.about-corner-br {
    position: absolute;
    bottom: -16px;
    right: -16px;
    width: 96px;
    height: 96px;
    border-bottom: 2px solid #D4AF37;
    border-right: 2px solid #D4AF37;
}

/* Shared section eyebrow label */
.section-eyebrow {
    color: #D4AF37;
    font-weight: 700;
    letter-spacing: 7px;
    text-transform: uppercase;
    margin-bottom: 16px;
    font-size: 14px;
}

.about-heading {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    margin-bottom: 24px;
    line-height: 1.25;
}

.about-text {
    font-size: 18px;
    color: #4B5563;
    margin-bottom: 24px;
}

.about-list {
    margin-bottom: 32px;
}

.about-list-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
}

.about-list-bullet {
    color: #D4AF37;
}

.about-cta {
    font-weight: 700;
    color: #B8860B;
    border-bottom: 2px solid #D4AF37;
    border-top: none;
    border-left: none;
    border-right: none;
    padding-bottom: 4px;
    transition: color 0.3s ease;
    background: none;
    cursor: pointer;
    font-family: 'Jost', sans-serif;
    font-size: 16px;
}

.about-cta:hover {
    color: #D4AF37;
}

@media (min-width: 768px) {
    .about-container {
        padding: 0 48px;
    }

    .about-heading {
        font-size: 48px;
    }
}

@media (min-width: 1024px) {
    .about-container {
        grid-template-columns: 1fr 1fr;
    }
}












/* ───────────────────────────────────────────
   6. KPI SECTION
─────────────────────────────────────────── */
.kpi-section {
    padding: 64px 0;
    background-color: #1A202C;
    color: #ffffff;
}

.kpi-grid {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: center;
}

@media (max-width: 970px) {
    .kpi-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 500px) {
    .kpi-grid {
        grid-template-columns: 1fr;
    }
}

.kpi-number {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    color: #D4AF37;
    margin-bottom: 8px;
}

.kpi-label {
    color: white;
    font-size: 13px;
    letter-spacing: 1px;
    font-weight: 600;
}

@media (min-width: 768px) {
    .kpi-number {
        font-size: 48px;
    }

    .kpi-label {
        font-size: 14px;
    }
}

/* ───────────────────────────────────────────
   7. SERVICES SECTION
─────────────────────────────────────────── */
.services-section {
    padding: 96px 24px;
}

.services-container {
    max-width: 1280px;
    margin: 0 auto;
}

.section-header-centered {
    text-align: center;
    margin-bottom: 64px;
}

.section-heading-lg {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}


@media (max-width: 850px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

.service-card {
    padding: 32px;
    background-color: #ffffff;
    border: 1px solid #F3F4F6;
    transition: border-color 0.3s ease;
}

.service-card:hover {
    border-color: #D4AF37;
}

.service-icon-wrap {
    width: 64px;
    height: 64px;
    background-color: #FCFAF7;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: background-color 0.3s ease;
}

.service-card:hover .service-icon-wrap {
    background-color: #D4AF37;
}

.service-icon {
    width: 32px;
    height: 32px;
    color: #D4AF37;
    transition: color 0.3s ease;
}

.service-card:hover .service-icon {
    color: #ffffff;
}

.service-title {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    margin-bottom: 16px;
    font-style: italic;
}

.service-description {
    color: #6B7280;
    line-height: 1.625;
    margin-bottom: 24px;
}

.service-link {
    color: #D4AF37;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.1em;
    text-decoration: none;
    transition: all 0.3s ease;
}

.service-link:hover {
    color: black;
    text-decoration: underline;
}

@media (min-width: 768px) {
    .services-section {
        padding: 96px 48px;
    }

    .section-heading-lg {
        font-size: 48px;
    }
}













/* ───────────────────────────────────────────
   8. TEAM SECTION
─────────────────────────────────────────── */
.team-section {
    padding: 96px 0;
    background-color: #ffffff;
}

.team-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.team-header {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-bottom: 64px;
    gap: 24px;
}

.team-eyebrow {
    color: #D4AF37;
    font-weight: 700;
    letter-spacing: 7px;
    text-transform: uppercase;
    margin-bottom: 16px;
    font-size: 14px;
}

.team-heading {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
}

.team-header-desc {
    max-width: 448px;
    color: #6B7280;
}

.team-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
}

.team-card {
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.team-photo {
    /* width: 100%; */
    /* display: block; */
    filter: grayscale(100%);
    transition: filter 0.5s ease, transform 0.5s ease;
    transform: scale(1.05);
}

.team-card:hover .team-photo {
    filter: grayscale(0%);
    transform: scale(1);
}

.team-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 25px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: #ffffff;
    transform: translateY(16px);
    transition: transform 0.3s ease;
}

.team-card:hover .team-overlay {
    transform: translateY(0);
}

.team-name {
    font-size: 20px;
    font-family: 'Playfair Display', serif;
}

.team-role {
    color: #D4AF37;
    font-size: 13px;
    font-weight: bold;
    text-transform: uppercase;
    /* letter-spacing: 0.1em; */
}

@media (min-width: 640px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) {
    .team-container {
        padding: 0 48px;
    }

    .team-header {
        flex-direction: row;
    }

    .team-heading {
        font-size: 48px;
    }
}

@media (min-width: 1024px) {
    .team-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}














/* ───────────────────────────────────────────
   9. GALLERY SECTION
─────────────────────────────────────────── */
.gallery-section {
    padding: 96px 0;
    background-color: #FCFAF7;
}

.gallery-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

.gallery-section-header {
    text-align: center;
    margin-bottom: 64px;
}

.gallery-heading {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.gallery-image {
    width: 100%;
    height: 256px;
    object-fit: cover;
    border-radius: 2px;
}

.gallery-image-offset {
    width: 100%;
    height: 256px;
    object-fit: cover;
    border-radius: 2px;
}

@media (min-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .gallery-image-offset {
        margin-top: 48px;
    }
}














/* ───────────────────────────────────────────
   10. NEWS SECTION
─────────────────────────────────────────── */
.news-section {
    padding: 96px 24px;
    background-color: #ffffff;
}

.news-container {
    max-width: 1280px;
    margin: 0 auto;
}

.news-main-title {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    margin-bottom: 48px;
    text-align: center;
}

.news-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
}

.news-article {
    display: flex;
    gap: 24px;
}

.news-thumbnail-wrap {
    width: 128px;
    height: 128px;
    flex-shrink: 0;
    background-color: #F3F4F6;
    overflow: hidden;
}

.news-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.news-article:hover .news-thumbnail {
    transform: scale(1.1);
}

.news-date {
    color: #D4AF37;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    word-spacing: 3px;
}

.news-heading {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    margin-top: 8px;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.news-excerpt {
    font-size: 14px;
    color: #6B7280;
}

.news-link {
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    display: block;
    margin-top: 10px;
    color: black;
    text-decoration: underline;
}

.news-link:hover {
    color: #D4AF37;
}

@media (min-width: 768px) {
    .news-section {
        padding: 96px 48px;
    }

    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


















/* ───────────────────────────────────────────
   11. TESTIMONIALS SECTION
─────────────────────────────────────────── */
.testimonials-section {
    background-color: #1A202C;
    color: #ffffff;
    padding: 100px 0;
}

.testimonials-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 60px;
    position: relative;
}

.testimonial-carousel-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-slides-wrapper {
    /* width: 100%; */
    /* overflow: hidden; */
}

.testimonial-slide {
    display: none;
    text-align: center;
    animation: fadeEffect 0.3s ease;
}

.testimonial-slide.active {
    display: block;
}

@keyframes fadeEffect {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.testimonial-text {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-style: italic;
    line-height: 1.625;
    margin-bottom: 32px;
}

.testimonial-divider {
    height: 4px;
    width: 80px;
    background-color: #D4AF37;
    margin: 0 auto 24px;
}

.testimonial-author {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 4px;
}

.testimonial-role {
    color: #D4AF37;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.testimonial-prev,
.testimonial-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid #D4AF37;
    color: #D4AF37;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    backdrop-filter: blur(4px);
    z-index: 15;
}

.testimonial-prev {
    left: -20px;
}

.testimonial-next {
    right: -20px;
}

.testimonial-prev:hover,
.testimonial-next:hover {
    background: #D4AF37;
    color: #1A202C;
    transform: translateY(-50%) scale(1.05);
}

@media (max-width: 550px) {
    .testimonial-prev {
        top: 80%;
    }

    .testimonial-next {
        top: 80%;
    }
}

/* 4 dots */
.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-top: 50px;
}

.dot {
    width: 14px;
    height: 14px;
    background-color: rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.2s;
    border: none;
}

.dot.active {
    background-color: #D4AF37;
    transform: scale(1.3);
    box-shadow: 0 0 6px #D4AF37;
}

.dot:hover {
    background-color: #D4AF37;
    transform: scale(1.1);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .testimonials-container {
        padding: 0 32px;
    }

    .testimonial-prev,
    .testimonial-next {
        width: 38px;
        height: 38px;
        font-size: 24px;
    }

    .testimonial-prev {
        left: -12px;
    }

    .testimonial-next {
        right: -12px;
    }

    .testimonial-text {
        font-size: 20px;
    }
}

@media (max-width: 550px) {
    .testimonials-container {
        padding: 0 20px;
    }

    .testimonial-prev,
    .testimonial-next {
        width: 34px;
        height: 34px;
        font-size: 20px;
    }

    .testimonial-prev {
        left: -8px;
    }

    .testimonial-next {
        right: -8px;
    }
}












/* ───────────────────────────────────────────
   12. FAQ SECTION
─────────────────────────────────────────── */
.faq-section {
    padding: 96px 24px;
    background-color: #ffffff;
}

.faq-container {
    max-width: 768px;
    margin: 0 auto;
}

.faq-main-title {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    margin-bottom: 48px;
    text-align: center;
}

.faq-item {
    border-bottom: 1px solid #F3F4F6;
    padding-bottom: 16px;
    margin-bottom: 24px;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    font-weight: 700;
    font-size: 18px;
    transition: color 0.3s ease;
    background: none;
    border: none;
    cursor: pointer;
    color: #1A202C;
    padding: 0;
    font-family: 'Jost', sans-serif;
}

.faq-question:hover {
    color: #D4AF37;
}

.faq-question-icon {
    color: #D4AF37;
}

@media (min-width: 768px) {
    .faq-section {
        padding: 96px 48px;
    }
}

/* details/summary base styling */
.faq-item details {
    width: 100%;
    margin-bottom: 0;
}

.faq-item details summary {
    list-style: none;           /* removes default triangle */
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    font-size: 18px;
    cursor: pointer;
    transition: color 0.3s ease;
    color: #1A202C;
    padding: 0;
    width: 100%;
    font-family: 'Jost', sans-serif;
}

.faq-item details summary:hover {
    color: #D4AF37;
}

/* hide default marker for webkit / mozilla */
.faq-item details summary::-webkit-details-marker {
    display: none;
}

.faq-item details summary::marker {
    display: none;
}

/* plus/minus icon using pseudo-element */
.faq-icon::after {
    content: "+";
    display: inline-block;
    color: #D4AF37;
    font-weight: bold;
    font-size: 22px;
    line-height: 1;
    transition: all 0.2s ease;
    width: 24px;
    text-align: center;
}

details[open] .faq-icon::after {
    content: "-";
}

/* answer styling */
.faq-answer {
    margin-top: 16px;
    margin-bottom: 20px;
    color: #4B5563;
    line-height: 1.625;
    font-size: 16px;
    padding-right: 8px;
    font-family: 'Jost', sans-serif;
}

/* maintain consistent spacing for faq-item (existing border-bottom is kept) */
.faq-item {
    border-bottom: 1px solid #F3F4F6;
    margin-bottom: 24px;
    padding-bottom: 0;
}

/* optional: adjust last item margin */
.faq-item:last-child {
    margin-bottom: 0;
    border-bottom: none;
}
















/* ───────────────────────────────────────────
   13. CONTACT SECTION
─────────────────────────────────────────── */
.contact-section {
    padding: 96px 0;
    background-color: #FCFAF7;
}

.contact-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 80px;
}

.contact-eyebrow {
    color: #D4AF37;
    font-weight: 700;
    letter-spacing: 7px;
    text-transform: uppercase;
    margin-bottom: 16px;
    font-size: 14px;
}

.contact-heading {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    margin-bottom: 40px;
    line-height: 1.25;
}

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

.contact-icon-wrap {
    width: 48px;
    height: 48px;
    background-color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    color: #D4AF37;
    flex-shrink: 0;
}

.contact-icon {
    width: 24px;
    height: 24px;
}

.contact-detail-label {
    font-weight: 700;
    font-size: 18px;
}

.contact-detail-value {
    color: #4B5563;
    font-weight: bold;
    text-decoration: none;
    word-spacing: 3px;
}

.contact-form-wrap {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 2px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border-top: 4px solid #D4AF37;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 24px;
}

@media (max-width: 700px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

.form-input {
    width: 100%;
    border: 1px solid #E5E7EB;
    padding: 12px 16px;
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    font-family: 'Jost', sans-serif;
    font-size: 16px;
    margin-bottom: 24px;
}

.form-row .form-input {
    margin-bottom: 0;
}

.form-input:focus {
    border-color: #D4AF37;
    box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.2);
}

.form-textarea {
    width: 100%;
    border: 1px solid #E5E7EB;
    padding: 12px 16px;
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    font-family: 'Jost', sans-serif;
    font-size: 16px;
    resize: vertical;
    margin-bottom: 24px;
}

.form-textarea:focus {
    border-color: #D4AF37;
    box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.2);
}

.btn-submit {
    width: 100%;
    padding: 16px 0;
    background: linear-gradient(135deg, #D4AF37 0%, #B8860B 100%);
    color: #ffffff;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border: none;
    cursor: pointer;
    transition: opacity 0.3s ease;
    font-family: 'Jost', sans-serif;
    font-size: 16px;
}

.btn-submit:hover {
    opacity: 0.9;
}

@media (min-width: 768px) {
    .contact-container {
        padding: 0 48px;
    }

    .contact-heading {
        font-size: 48px;
    }
}

@media (min-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }
}










/* ───────────────────────────────────────────
   14. MAP SECTION
─────────────────────────────────────────── */
.map-section {
    height: 400px;
    width: 100%;
    background-color: #E5E7EB;
    filter: grayscale(30%);
    opacity: 0.7;
}

.map-iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}


















/* ───────────────────────────────────────────
   15. FOOTER
─────────────────────────────────────────── */
.site-footer {
    background-color: #1A202C;
    color: #ffffff;
    padding: 10px 20px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    display: flex;
    justify-content: space-between;
    align-items: center;
    column-gap: 20px;
    row-gap: 5px;
}

@media (max-width: 700px) {
    .site-footer {
        flex-direction: column;
    }
}

.developer a {
    color: white;
    text-decoration: none;
}












/* ───────────────────────────────────────────
   16. SIDEBAR OVERLAY
─────────────────────────────────────────── */
.sidebar-overlay {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(143, 143, 143, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 60;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.sidebar-overlay.is-open {
    opacity: 1;
    pointer-events: auto;
}

/* ───────────────────────────────────────────
   17. SIDEBAR DRAWER
─────────────────────────────────────────── */
.sidebar-drawer {
    position: fixed;
    top: 0;
    right: 0;
    height: 100%;
    width: 320px;
    background-color: #ffffff;
    z-index: 70;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    display: flex;
    flex-direction: column;
}

.sidebar-drawer.is-open {
    transform: translateX(0);
}

.sidebar-close-wrap {
    display: flex;
    justify-content: flex-end;
    padding: 8px 20px;
}

.sidebar-close {
    color: #1A202C;
    transition: color 0.3s ease;
    background: none;
    border: none;
    cursor: pointer;
}

.sidebar-close:hover {
    color: #D4AF37;
}

.sidebar-close-icon {
    font-size: 30px;
}

.sidebar-body {
    padding: 0 20px;
    flex-grow: 1;
    overflow-y: auto;
}

.lang-section {
    margin-bottom: 28px;
}

.sidebar-section-label {
    font-size: 13px;
    font-style: italic;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #9CA3AF;
    font-weight: 700;
    margin-bottom: 16px;
    text-decoration-line: underline;
    text-decoration-style: wavy;
    text-decoration-color: #9CA3AF;
}

.lang-options {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.lang-btn {
    padding: 4px 12px;
    font-size: 13px;
    border: 1px solid #E5E7EB;
    border-radius: 9999px;
    background: none;
    cursor: pointer;
    transition: border-color 0.3s ease, color 0.3s ease;
    font-family: 'Jost', sans-serif;
    color: #1A202C;
}

.lang-btn:hover {
    border-color: #D4AF37;
    color: #D4AF37;
}

.lang-btn-active {
    padding: 4px 12px;
    font-size: 13px;
    font-weight: bold;
    background-color: #D4AF37;
    color: #ffffff;
    border-radius: 9999px;
    border: 2px solid #D4AF37;
    font-family: 'Jost', sans-serif;
}

.auth-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 28px;
}

.btn-login {
    flex: 1;
    padding: 8px 0;
    font-size: 14px;
    font-weight: 700;
    border: 1px solid #D4AF37;
    color: #B8860B;
    transition: background-color 0.3s ease, color 0.3s ease;
    background: none;
    cursor: pointer;
    font-family: 'Jost', sans-serif;
    border-radius: 10px;
}

.btn-login:hover {
    background-color: #D4AF37;
    color: #ffffff;
}

.btn-register {
    flex: 1;
    padding: 8px 0;
    font-size: 14px;
    font-weight: 700;
    background: linear-gradient(135deg, #D4AF37 0%, #B8860B 100%);
    color: #ffffff;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    border: none;
    cursor: pointer;
    transition: transform 0.2s ease;
    font-family: 'Jost', sans-serif;
    border-radius: 10px;
}

.btn-register:hover {
    transform: scale(1.05);
}

.sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sidebar-nav-label {
    font-size: 13px;
    font-style: italic;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #9CA3AF;
    font-weight: 700;
    text-decoration-line: underline;
    text-decoration-style: wavy;
    text-decoration-color: #9CA3AF;
}

.sidebar-nav-link {
    font-size: 15px;
    font-family: 'Playfair Display', serif;
    font-weight: bold;
    text-decoration: none;
    color: #4e4e4e;
    transition: all 0.3s ease;
}

.sidebar-nav-link:hover {
    color: #D4AF37;
}

.sidebar-footer {
    padding: 8px 20px 8px 20px;
    border-top: 1px solid #F3F4F6;
    margin-top: auto;
}

.sidebar-follow-label {

    font-size: 13px;
    font-style: italic;
    text-transform: uppercase;
    /* letter-spacing: 0.1em; */
    margin-bottom: 10px;
    color: #9CA3AF;
    font-weight: 700;
    text-decoration-line: underline;
    text-decoration-style: wavy;
    text-decoration-color: #9CA3AF;
}

.sidebar-social-links {
    display: flex;
    gap: 16px;
}

.sidebar-social-link {
    color: #1A202C;
    text-decoration: none;
    transition: color 0.3s ease;
}

.sidebar-social-link:hover {
    color: #D4AF37;
}