/* ============================================
   AVIYAL EVENTS & CATERINGS
   style.css - Complete Stylesheet
   ============================================ */

/* ── CSS VARIABLES ── */
:root {
    --gold: #C9933A;
    --gold-light: #E8B96A;
    --gold-dark: #8B6020;
    --deep: #1A0E05;
    --warm: #2C1A0E;
    --cream: #FDF6EC;
    --cream2: #F5ECD8;
    --text: #3D2B1A;
    --muted: #8A7060;
}

/* ── RESET & BASE ── */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Nunito', sans-serif;
    background: var(--cream);
    color: var(--text);
    overflow-x: hidden;
}

/* ============================================
   TOP BAR
   ============================================ */


.top-bar {
    background: rgb(15 8 4 / 75%);
    border-bottom: 1px solid rgba(201, 147, 58, 0.2);
    padding: 4px 60px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    position: relative;
    /* ← add this */
    top: 0;
    /* ← add this */
    z-index: 1001;
    /* ← above nav */
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.top-phones {
    display: flex;
    align-items: center;
    gap: 14px;
}

.top-phones a {
    color: var(--gold);
    text-decoration: none;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.3s;
}

.top-phones a svg {
    width: 13px;
    height: 13px;
    flex-shrink: 0;
}

.top-phones a:hover {
    color: var(--gold-light);
}

.top-divider {
    color: rgba(201, 147, 58, 0.3);
    font-size: 0.9rem;
}

.top-socials {
    display: flex;
    align-items: center;
    gap: 10px;
}

.top-socials .social-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid rgba(201, 147, 58, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    text-decoration: none;
    transition: all 0.3s;
}

.top-socials .social-icon svg {
    width: 14px;
    height: 14px;
}

.top-socials .social-icon:hover {
    background: rgba(201, 147, 58, 0.15);
    border-color: var(--gold);
    transform: translateY(-2px);
}

/* ============================================
   NAVIGATION
   ============================================ */
nav {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0px 60px;
    /* ← reduced from 16px to 4px */
    background: rgba(26, 14, 5, 0.75);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(201, 147, 58, 0.25);
}

nav {
    padding: 0px 60px;
    height: 70px;
    /* ← fix nav height small */
    overflow: visible;
    /* ← allow logo to overflow outside nav */
}

.nav-logo img {
    height: 150px;
    width: 150px;
    margin-top: 84px;
    /* ← negative pushes logo UP above nav */
    background: #0f0804;
    border: 1px solid #C9933A;
    padding: 8px;
}

.nav-links {
    display: flex;
    gap: 36px;
    list-style: none;
    align-items: center;
}

.nav-links a {
    color: var(--cream2);
    text-decoration: none;
    font-size: 0.78rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    font-weight: 700;
    transition: color 0.3s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s;
}

.nav-links a:hover {
    color: var(--gold);
}

.nav-links a:hover::after {
    transform: scaleX(1);
}

.nav-cta {
    background: var(--gold);
    color: var(--deep) !important;
    padding: 11px 26px;
    border-radius: 2px;
    letter-spacing: 2px;
}

.nav-cta::after {
    display: none !important;
}

.nav-cta:hover {
    background: var(--gold-light) !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(201, 147, 58, 0.3);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
    transition: all 0.3s;
}


#home {
    height: 100vh;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: -108px;
    /* Pulls section under transparent header */
    background-color: #000;
    /* Fallback */
}

/* ============================================
   HERO SLIDER FIX
============================================ */
.hero-slider {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-track {
    display: flex;
    height: 100%;
    width: 500%;
    /* 5 slides = 500% */
    transition: transform 1.2s cubic-bezier(0.7, 0, 0.3, 1);
}

.slide {
    flex: 0 0 20%;
    /* Each slide is 1/5th of the 500% track */
    height: 100vh;
    width: 100vw;
    overflow: hidden;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Forces image to fill 100vh without distortion */
    object-position: center;
    display: block;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.2));
    z-index: 1;
}

/* ============================================
   HERO CONTENT & TYPOGRAPHY
============================================ */
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 20px;
    max-width: 900px;
    margin-top: 108px;
    /* Offsets the negative margin to center text visually */
}

.hero-tag {
    display: inline-block;
    font-size: 0.75rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: #c9933a;
    /* var(--gold) */
    border: 1px solid rgba(201, 147, 58, 0.4);
    padding: 10px 25px;
    margin-bottom: 30px;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 900;
    color: #fdf6ec;
    /* var(--cream) */
    line-height: 1.1;
}

.hero-title em {
    color: #c9933a;
    font-style: italic;
    display: block;
}

.hero-sub {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    color: rgba(253, 246, 236, 0.9);
    margin: 25px auto 40px;
    max-width: 600px;
}

.hero-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Helper Button Styles */
.btn-gold {
    background: #c9933a;
    color: #fff;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 4px;
    transition: 0.3s;
}

.btn-outline {
    border: 1px solid #fff;
    color: #fff;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 4px;
    transition: 0.3s;
}

.btn-gold:hover {
    background: #b07d2e;
}

.btn-outline:hover {
    background: #fff;
    color: #000;
}

/* DISTRICTS BAR */
.hero-districts {
    position: absolute;
    bottom: 40px;
    display: flex;
    gap: 30px;
    z-index: 2;
    color: #fff;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.d-line {
    height: 1px;
    background: #c9933a;
    width: 0%;
    transition: 0.5s;
}

.district-item:hover .d-line {
    width: 100%;
}

/* ============================================
   BUTTONS
============================================ */

.btn-gold {
    background: var(--gold);
    color: var(--deep);
    padding: 16px 40px;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 700;
    text-decoration: none;
    border-radius: 2px;
    transition: 0.3s;
}

.btn-gold:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
}

.btn-outline {
    border: 1px solid rgba(201, 147, 58, 0.6);
    color: var(--gold);
    padding: 16px 40px;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 700;
    text-decoration: none;
    border-radius: 2px;
    transition: 0.3s;
}

.btn-outline:hover {
    border-color: var(--gold);
    background: rgba(201, 147, 58, 0.1);
}

/* ============================================
   DISTRICTS
============================================ */

.hero-districts {
    position: absolute;
    bottom: 60px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 40px;
    z-index: 2;
}

.district-item {
    text-align: center;
}

.d-name {
    color: var(--gold);
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.d-line {
    width: 1px;
    height: 30px;
    background: rgba(201, 147, 58, 0.3);
    margin: 8px auto 0;
}

/* ============================================
   SHARED SECTION STYLES
   ============================================ */
section {
    padding: 100px 60px;
}

.section-tag {
    font-size: 0.7rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
    display: block;
}

.section-tag-light {
    color: var(--gold-light);
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 900;
    color: var(--deep);
    line-height: 1.1;
    margin-bottom: 20px;
}

.section-title em {
    color: var(--gold);
    font-style: italic;
}

.section-title-light {
    color: var(--cream);
}

.divider {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), transparent);
    margin: 20px 0 40px;
}

.divider-center {
    margin: 20px auto 40px;
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   ABOUT SECTION
   ============================================ */
#about {
    background: var(--deep);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

#about .section-title {
    color: var(--cream);
}

.about-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    color: rgba(253, 246, 236, 0.75);
    line-height: 1.9;
    margin-bottom: 18px;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.stat-box {
    border-top: 1px solid rgba(201, 147, 58, 0.4);
    padding-top: 20px;
}

.stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--gold);
}

.stat-label {
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(253, 246, 236, 0.45);
    margin-top: 4px;
}

.about-img-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.about-img-placeholder {
    background: var(--warm);
    border: 1px solid rgba(201, 147, 58, 0.2);
    border-radius: 4px;
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    letter-spacing: 2px;
    color: var(--gold);
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
}

.about-img-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(201, 147, 58, 0.1), transparent);
}

.about-img-placeholder.tall {
    grid-row: span 2;
    aspect-ratio: unset;
}

/* ============================================
   SERVICES SECTION
   ============================================ */
#services {
    background: var(--cream2);
}

.services-header {
    text-align: center;
    margin-bottom: 60px;
}

.services-header .divider {
    margin: 20px auto 30px;
}

.services-intro {
    max-width: 580px;
    margin: 0 auto;
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: var(--cream);
    border: 1px solid rgba(201, 147, 58, 0.2);
    padding: 40px 30px;
    border-radius: 4px;
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(26, 14, 5, 0.15);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    display: block;
}

.service-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--deep);
    margin-bottom: 12px;
}

.service-desc {
    font-size: 0.88rem;
    color: var(--muted);
    line-height: 1.75;
}

.service-tag {
    display: inline-block;
    margin-top: 16px;
    font-size: 0.65rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 700;
}

/* ============================================
   GALLERY SECTION
   ============================================ */
#gallery {
    background: var(--deep);
}

.gallery-header {
    margin-bottom: 50px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 260px 220px;
    gap: 15px;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-item {
    background: var(--warm);
    border-radius: 4px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    border: 1px solid rgba(201, 147, 58, 0.15);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.06);
}

.gallery-item.wide {
    grid-column: span 2;
}

.gallery-item.tall {
    grid-row: span 2;
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 14, 5, 0.75), transparent);
    opacity: 0;
    transition: opacity 0.3s;
    display: flex;
    align-items: flex-end;
    padding: 20px;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-caption {
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 700;
}

.gallery-insta {
    text-align: center;
    margin-top: 50px;
}

.insta-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--gold);
    text-decoration: none;
    border: 1px solid rgba(201, 147, 58, 0.4);
    padding: 14px 30px;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 700;
    transition: all 0.3s;
    border-radius: 2px;
}

.insta-link:hover {
    background: rgba(201, 147, 58, 0.1);
    border-color: var(--gold);
}

/* ============================================
   WHY US SECTION
   ============================================ */
#why {
    background: var(--cream);
    text-align: center;
}

.why-header {
    margin-bottom: 0;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 60px auto 0;
}

.why-card {
    padding: 36px 24px;
    border: 1px solid rgba(201, 147, 58, 0.2);
    border-radius: 4px;
    transition: all 0.3s;
}

.why-card:hover {
    background: var(--cream2);
    border-color: var(--gold);
    transform: translateY(-4px);
}

.why-icon {
    font-size: 2.2rem;
    margin-bottom: 16px;
}

.why-title {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--deep);
    margin-bottom: 10px;
}

.why-desc {
    font-size: 0.85rem;
    color: var(--muted);
    line-height: 1.65;
}

/* ============================================
   DISTRICTS SECTION
   ============================================ */
#districts {
    background: linear-gradient(135deg, var(--deep) 0%, var(--warm) 100%);
    text-align: center;
    padding: 80px 60px;
}

.districts-desc {
    color: rgba(253, 246, 236, 0.5);
    font-size: 0.9rem;
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.7;
}

.districts-row {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 60px;
    flex-wrap: wrap;
}

.district-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.district-circle {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    border: 2px solid rgba(201, 147, 58, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 1px;
    text-transform: uppercase;
    text-align: center;
    transition: all 0.3s;
    line-height: 1.4;
}

.district-card:hover .district-circle {
    background: rgba(201, 147, 58, 0.12);
    border-color: var(--gold);
    transform: scale(1.06);
}

.district-sub {
    font-size: 0.68rem;
    color: rgba(253, 246, 236, 0.35);
    letter-spacing: 3px;
    text-transform: uppercase;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
#contact {
    background: var(--cream);
}

.contact-header {
    text-align: center;
    margin-bottom: 60px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 80px;
    max-width: 1100px;
    margin: 0 auto;
    align-items: start;
}

.contact-heading {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    margin-bottom: 30px;
    color: var(--deep);
}

.contact-info-item {
    display: flex;
    gap: 18px;
    margin-bottom: 28px;
    align-items: flex-start;
}

.contact-icon {
    width: 44px;
    height: 44px;
    border: 1px solid rgba(201, 147, 58, 0.35);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.contact-detail h4 {
    font-family: 'Playfair Display', serif;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--deep);
    margin-bottom: 5px;
}

.contact-detail p {
    font-size: 0.88rem;
    color: var(--muted);
    line-height: 1.7;
}

.contact-detail a {
    color: var(--gold);
    text-decoration: none;
    transition: color 0.3s;
}

.contact-detail a:hover {
    color: var(--gold-light);
}

.contact-note {
    font-size: 0.75rem !important;
    margin-top: 4px;
    color: var(--muted) !important;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.68rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--muted);
    font-weight: 700;
}

.form-group input,
.form-group select,
.form-group textarea {
    border: 1px solid rgba(201, 147, 58, 0.3);
    background: var(--cream);
    padding: 14px 18px;
    font-size: 0.9rem;
    font-family: 'Nunito', sans-serif;
    color: var(--text);
    border-radius: 2px;
    outline: none;
    transition: border-color 0.3s;
    appearance: none;
    -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold);
}

.form-group textarea {
    resize: vertical;
    min-height: 130px;
}

.submit-btn {
    background: var(--gold);
    color: var(--deep);
    border: none;
    padding: 16px 40px;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 700;
    cursor: pointer;
    border-radius: 2px;
    transition: all 0.3s;
    font-family: 'Nunito', sans-serif;
    align-self: flex-start;
}

.submit-btn:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(201, 147, 58, 0.3);
}

/* ============================================
   FOOTER
   ============================================ */
footer {
    background: var(--deep);
    padding: 70px 60px;
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr;
    gap: 60px;
    border-top: 1px solid rgba(201, 147, 58, 0.2);
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.7rem;
    font-weight: 900;
    color: var(--gold);
    letter-spacing: 2px;
    margin-bottom: 16px;
    display: block;
}

.footer-desc {
    font-size: 0.85rem;
    color: rgba(253, 246, 236, 0.45);
    line-height: 1.75;
    max-width: 290px;
    margin-top: 14px;
}

.footer-socials {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.footer-socials a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(201, 147, 58, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    text-decoration: none;
    transition: all 0.3s;
}

.footer-socials a:hover {
    background: rgba(201, 147, 58, 0.15);
    border-color: var(--gold);
    transform: translateY(-2px);
}

.footer-col h4 {
    font-size: 0.68rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 22px;
    font-weight: 700;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: rgba(253, 246, 236, 0.45);
    text-decoration: none;
    font-size: 0.88rem;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: var(--gold);
}

.footer-bottom {
    background: var(--deep);
    padding: 20px 60px;
    border-top: 1px solid rgba(201, 147, 58, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 0.75rem;
    color: rgba(253, 246, 236, 0.25);
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   RESPONSIVE - TABLET (max 1100px)
   ============================================ */
@media (max-width: 1100px) {

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ============================================
   RESPONSIVE - MOBILE (max 900px)
   ============================================ */
@media (max-width: 900px) {

    .top-bar {
        padding: 8px 20px;
        flex-direction: column;
        align-items: flex-end;
        gap: 8px;
    }

    .top-bar-left {
        display: none;
    }

    .top-bar-right {
        gap: 10px;
        flex-wrap: wrap;
        justify-content: flex-end;
    }

    .top-phones a {
        font-size: 0.72rem;
    }

    nav {
        padding: 14px 20px;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 108px;
        left: 0;
        right: 0;
        background: var(--deep);
        flex-direction: column;
        padding: 30px 24px;
        gap: 22px;
        border-top: 1px solid rgba(201, 147, 58, 0.2);
        z-index: 999;
    }

    .nav-links.open {
        display: flex;
    }

    .nav-links a {
        font-size: 0.9rem;
    }

    section {
        padding: 70px 24px;
    }

    .hero-districts {
        display: none;
    }

    .hero-content {
        padding: 100px 24px 80px;
    }

    #about {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .about-img-grid {
        display: none;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }

    .gallery-item.wide {
        grid-column: span 2;
    }

    .gallery-item.tall {
        grid-row: auto;
    }

    .gallery-item {
        min-height: 200px;
    }

    .why-grid {
        grid-template-columns: 1fr 1fr;
    }

    #districts {
        padding: 70px 24px;
    }

    .districts-row {
        gap: 30px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    footer {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 50px 24px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
        padding: 20px 24px;
    }
}

/* ============================================
   RESPONSIVE - SMALL MOBILE (max 480px)
   ============================================ */
@media (max-width: 480px) {

    .top-phones {
        gap: 8px;
    }

    .top-phones a {
        font-size: 0.68rem;
    }

    .hero-btns {
        flex-direction: column;
        align-items: center;
    }

    .about-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .districts-row {
        gap: 20px;
    }

    .submit-btn {
        width: 100%;
        text-align: center;
    }
}


/*---------- extra---------------*/

.about-img-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    /* reduced from 2fr */
    grid-template-rows: 1fr 1fr;
    gap: 20px;
}

.about-img-item {
    overflow: hidden;
    border-radius: 12px;
}

.about-img-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

/* Tall image on left */
.about-img-item.tall {
    grid-row: span 2;
}

/* Hover effect */
.about-img-item:hover img {
    transform: scale(1.05);
}

/*------------------------------------------------------------------------*/


/* Center wrapper */
.gallery-btn-wrap {
    text-align: center;
    margin-top: 60px;
}

/* Round bordered button */
.gallery-btn {
    display: inline-block;
    padding: 14px 40px;
    border: 2px solid var(--gold);
    color: var(--gold);
    text-decoration: none;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 50px;
    /* makes it round */
    transition: all 0.3s ease;
}

/* Hover effect */
.gallery-btn:hover {
    background: var(--gold);
    color: var(--deep);
    transform: translateY(-3px);
}



.section-btn-wrap {
    text-align: center;
    margin-top: 60px;
}

.section-btn {
    display: inline-block;
    padding: 14px 40px;
    border: 2px solid var(--gold);
    color: var(--gold);
    text-decoration: none;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.section-btn:hover {
    background: var(--gold);
    color: var(--deep);
    transform: translateY(-3px);
}


/*------------------------------------------------------------------------*/


/*--------------------ABOUT US--------------------*/


/*------------------------------------------------------------------------*/

:root {
    --gold: #C9933A;
    --gold-light: #E8B96A;
    --gold-dark: #8B6020;
    --deep: #1A0E05;
    --warm: #2C1A0E;
    --cream: #FDF6EC;
    --cream2: #F5ECD8;
    --text: #3D2B1A;
    --muted: #8A7060;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Nunito', sans-serif;
    background: var(--cream);
    color: var(--text);
    overflow-x: hidden;
}

/* TOP BAR */
.top-bar {
    background: rgb(15 8 4 / 97%);
    border-bottom: 1px solid rgba(201, 147, 58, 0.2);
    padding: 4px 60px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    position: relative;
    z-index: 1001;
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.top-phones {
    display: flex;
    align-items: center;
    gap: 14px;
}

.top-phones a {
    color: var(--gold);
    text-decoration: none;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.3s;
}

.top-phones a svg {
    width: 13px;
    height: 13px;
    flex-shrink: 0;
}

.top-phones a:hover {
    color: var(--gold-light);
}

.top-divider {
    color: rgba(201, 147, 58, 0.3);
    font-size: 0.9rem;
}

.top-socials {
    display: flex;
    align-items: center;
    gap: 10px;
}

.top-socials .social-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid rgba(201, 147, 58, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    text-decoration: none;
    transition: all 0.3s;
}

.top-socials .social-icon svg {
    width: 14px;
    height: 14px;
}

.top-socials .social-icon:hover {
    background: rgba(201, 147, 58, 0.15);
    border-color: var(--gold);
    transform: translateY(-2px);
}

/* NAV */
nav {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 60px;
    height: 70px;
    background: rgba(26, 14, 5, 0.97);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(201, 147, 58, 0.25);
    overflow: visible;
}

.nav-logo img {
    height: 150px;
    width: 150px;
    margin-top: 84px;
    background: #0f0804;
    border: 1px solid #C9933A;
    padding: 8px;
}

.nav-links {
    display: flex;
    gap: 36px;
    list-style: none;
    align-items: center;
}

.nav-links a {
    color: #F5ECD8;
    text-decoration: none;
    font-size: 0.78rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    font-weight: 700;
    transition: color 0.3s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--gold);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    transform: scaleX(1);
}

.nav-cta {
    background: var(--gold) !important;
    color: var(--deep) !important;
    padding: 11px 26px;
    border-radius: 2px;
    letter-spacing: 2px;
}

.nav-cta::after {
    display: none !important;
}

.nav-cta:hover {
    background: var(--gold-light) !important;
    transform: translateY(-1px);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
}

/* SHARED */
section {
    padding: 100px 60px;
}

.section-tag {
    font-size: 0.7rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
    display: block;
}

.section-tag-light {
    color: var(--gold-light);
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 900;
    color: var(--deep);
    line-height: 1.15;
    margin-bottom: 20px;
}

.section-title em {
    color: var(--gold);
    font-style: italic;
}

.section-title-light {
    color: var(--cream);
}

.divider {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), transparent);
    margin: 20px 0 40px;
}

.divider-center {
    margin: 20px auto 40px;
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.btn-gold {
    background: var(--gold);
    color: var(--deep);
    padding: 16px 40px;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 700;
    text-decoration: none;
    border-radius: 2px;
    transition: 0.3s;
    display: inline-block;
}

.btn-gold:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
}

.btn-outline {
    border: 1px solid rgba(201, 147, 58, 0.6);
    color: var(--gold);
    padding: 16px 40px;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 700;
    text-decoration: none;
    border-radius: 2px;
    transition: 0.3s;
    display: inline-block;
}

.btn-outline:hover {
    border-color: var(--gold);
    background: rgba(201, 147, 58, 0.1);
}

/* PAGE HERO */
.page-hero {
    height: 30vh;
    min-height: 350px;
    background: linear-gradient(135deg, #1A0E05 0%, #2C1A0E 60%, #1A0E05 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 20% 50%, rgba(201, 147, 58, 0.12) 0%, transparent 50%), radial-gradient(circle at 80% 50%, rgba(201, 147, 58, 0.08) 0%, transparent 50%);
}

.page-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201, 147, 58, 0.5), transparent);
}

.hero-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.04;
    background-image: repeating-linear-gradient(45deg, #C9933A 0px, #C9933A 1px, transparent 1px, transparent 40px);
}

.page-hero-content {
    position: relative;
    z-index: 2;
    padding: 0 20px;
}

.breadcrumb {
    font-size: 0.72rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(201, 147, 58, 0.6);
    margin-bottom: 20px;
}

.breadcrumb a {
    color: rgba(201, 147, 58, 0.6);
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb a:hover {
    color: var(--gold);
}

.breadcrumb span {
    margin: 0 10px;
}

.page-hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.8rem, 6vw, 5rem);
    font-weight: 900;
    color: var(--cream);
    line-height: 1.1;
}

.page-hero-content h1 em {
    color: var(--gold);
    font-style: italic;
}

.page-hero-sub {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    color: rgba(253, 246, 236, 0.6);
    margin-top: 16px;
    letter-spacing: 2px;
}

/* STORY */
#story {
    background: var(--cream);
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.story-body {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    color: #6A5040;
    line-height: 1.9;
    margin-bottom: 18px;
}

.story-body strong {
    color: var(--deep);
    font-weight: 600;
}

.founder-quote {
    margin-top: 40px;
    border-left: 3px solid var(--gold);
    padding: 20px 30px;
    background: rgba(201, 147, 58, 0.06);
    border-radius: 0 4px 4px 0;
}

.founder-quote p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    font-style: italic;
    color: var(--deep);
    line-height: 1.7;
    margin-bottom: 12px;
}

.founder-name {
    font-size: 0.72rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
}

.story-visual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 200px 200px;
    gap: 14px;
}

.story-img {
    background: var(--warm);
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.story-img.tall {
    grid-row: span 2;
}

.story-img-ph {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 8px;
    background: linear-gradient(135deg, #2C1A0E, #1A0E05);
}

.story-img-ph span {
    font-size: 2.5rem;
}

.story-img-ph small {
    font-size: 0.6rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
}

.story-img-badge {
    position: absolute;
    bottom: 14px;
    left: 14px;
    background: rgba(26, 14, 5, 0.85);
    border: 1px solid rgba(201, 147, 58, 0.4);
    padding: 8px 14px;
    font-size: 0.65rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
}

/* NUMBERS */
#numbers {
    background: var(--deep);
    padding: 70px 60px;
}

.numbers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    max-width: 1100px;
    margin: 0 auto;
}

.number-item {
    text-align: center;
    padding: 40px 20px;
    position: relative;
}

.number-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 60px;
    width: 1px;
    background: rgba(201, 147, 58, 0.2);
}

.number-val {
    font-family: 'Playfair Display', serif;
    font-size: 3.2rem;
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
}

.number-unit {
    font-size: 2rem;
}

.number-label {
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(253, 246, 236, 0.4);
    margin-top: 10px;
}

/* MISSION VISION */
#mission-vision {
    background: var(--cream2);
}

.mv-header {
    text-align: center;
    margin-bottom: 70px;
}

.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.mv-card {
    padding: 50px 44px;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
}

.mv-card.mission {
    background: var(--deep);
}

.mv-card.vision {
    background: linear-gradient(135deg, #2C1A0E, #1A0E05);
    border: 1px solid rgba(201, 147, 58, 0.25);
}

.mv-card::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    border: 1px solid rgba(201, 147, 58, 0.12);
}

.mv-card::after {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 1px solid rgba(201, 147, 58, 0.18);
}

.mv-icon {
    font-size: 2.8rem;
    margin-bottom: 24px;
    display: block;
}

.mv-tag {
    font-size: 0.65rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 700;
    display: block;
    margin-bottom: 14px;
}

.mv-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 900;
    color: var(--cream);
    margin-bottom: 20px;
    line-height: 1.2;
}

.mv-title em {
    color: var(--gold);
    font-style: italic;
}

.mv-body {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.08rem;
    color: rgba(253, 246, 236, 0.7);
    line-height: 1.9;
    margin-bottom: 14px;
}

.mv-points {
    margin-top: 28px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mv-point {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.mv-point-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
    flex-shrink: 0;
    margin-top: 7px;
}

.mv-point-text {
    font-size: 0.88rem;
    color: rgba(253, 246, 236, 0.6);
    line-height: 1.6;
}

/* VALUES */
#values {
    background: var(--cream);
}

.values-header {
    text-align: center;
    margin-bottom: 60px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.value-card {
    padding: 40px 30px;
    border: 1px solid rgba(201, 147, 58, 0.18);
    border-radius: 4px;
    position: relative;
    transition: all 0.4s;
    background: var(--cream);
    overflow: hidden;
}

.value-card:hover {
    transform: translateY(-6px);
    border-color: var(--gold);
    box-shadow: 0 20px 50px rgba(26, 14, 5, 0.1);
}

.value-number {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 900;
    color: rgba(201, 147, 58, 0.1);
    line-height: 1;
    margin-bottom: -10px;
}

.value-icon {
    font-size: 2rem;
    margin-bottom: 16px;
    display: block;
}

.value-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--deep);
    margin-bottom: 10px;
}

.value-desc {
    font-size: 0.88rem;
    color: var(--muted);
    line-height: 1.75;
}

.value-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s;
}

.value-card:hover::after {
    transform: scaleX(1);
}

/* TIMELINE */
#journey {
    background: var(--deep);
}

.journey-header {
    text-align: center;
    margin-bottom: 70px;
}

.timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(to bottom, transparent, rgba(201, 147, 58, 0.4), transparent);
    transform: translateX(-50%);
}

.timeline-item {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 30px;
    align-items: center;
    margin-bottom: 50px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.tl-left {
    text-align: right;
}

.tl-right {
    text-align: left;
}

.timeline-dot {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid var(--gold);
    background: var(--deep);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    color: var(--gold);
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.timeline-year {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
}

.timeline-title {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--cream);
    margin-bottom: 6px;
}

.timeline-desc {
    font-size: 0.83rem;
    color: rgba(253, 246, 236, 0.45);
    line-height: 1.65;
}

/* PROMISE */
#promise {
    background: linear-gradient(135deg, #2C1A0E, var(--deep));
    text-align: center;
}

.promise-content {
    max-width: 700px;
    margin: 0 auto;
}

.promise-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    color: rgba(253, 246, 236, 0.75);
    line-height: 1.85;
    margin: 30px 0 50px;
}

.promise-seal {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 2px solid rgba(201, 147, 58, 0.4);
    margin: 0 auto 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 0.65rem;
    color: var(--gold);
    letter-spacing: 2px;
    text-transform: uppercase;
    text-align: center;
    line-height: 1.6;
    position: relative;
}

.promise-seal::before {
    content: '';
    position: absolute;
    inset: 6px;
    border-radius: 50%;
    border: 1px solid rgba(201, 147, 58, 0.2);
}

.promise-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* FOOTER */
footer {
    background: var(--deep);
    padding: 70px 60px;
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr;
    gap: 60px;
    border-top: 1px solid rgba(201, 147, 58, 0.2);
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.7rem;
    font-weight: 900;
    color: var(--gold);
    letter-spacing: 2px;
    margin-bottom: 16px;
    display: block;
}

.footer-desc {
    font-size: 0.85rem;
    color: rgba(253, 246, 236, 0.45);
    line-height: 1.75;
    max-width: 290px;
    margin-top: 14px;
}

.footer-socials {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.footer-socials a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(201, 147, 58, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    text-decoration: none;
    transition: all 0.3s;
}

.footer-socials a:hover {
    background: rgba(201, 147, 58, 0.15);
    border-color: var(--gold);
    transform: translateY(-2px);
}

.footer-col h4 {
    font-size: 0.68rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 22px;
    font-weight: 700;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: rgba(253, 246, 236, 0.45);
    text-decoration: none;
    font-size: 0.88rem;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: var(--gold);
}

.footer-bottom {
    background: var(--deep);
    padding: 20px 60px;
    border-top: 1px solid rgba(201, 147, 58, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 0.75rem;
    color: rgba(253, 246, 236, 0.25);
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .top-bar {
        padding: 8px 20px;
    }

    nav {
        padding: 14px 20px;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 108px;
        left: 0;
        right: 0;
        background: var(--deep);
        flex-direction: column;
        padding: 30px 24px;
        gap: 22px;
        border-top: 1px solid rgba(201, 147, 58, 0.2);
        z-index: 999;
    }

    .nav-links.open {
        display: flex;
    }

    section {
        padding: 70px 24px;
    }

    .story-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .story-visual {
        display: none;
    }

    .mv-grid {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .numbers-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .number-item:nth-child(2)::after {
        display: none;
    }

    #numbers {
        padding: 50px 24px;
    }

    .timeline::before {
        left: 22px;
        transform: none;
    }

    .timeline-item {
        grid-template-columns: auto 1fr;
        gap: 16px;
    }

    .tl-left {
        display: none;
    }

    footer {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 50px 24px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
        padding: 20px 24px;
    }
}

@media (max-width: 480px) {
    .numbers-grid {
        grid-template-columns: 1fr 1fr;
    }

    .promise-btns {
        flex-direction: column;
        align-items: center;
    }
}



/*---------------services---------------/


/*---------------services---------------/



 :root {
            --gold: #C9933A;
            --gold-light: #E8B96A;
            --gold-dark: #8B6020;
            --deep: #1A0E05;
            --warm: #2C1A0E;
            --cream: #FDF6EC;
            --cream2: #F5ECD8;
            --text: #3D2B1A;
            --muted: #8A7060;
        }
        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }
        body { font-family: 'Nunito', sans-serif; background: var(--cream); color: var(--text); overflow-x: hidden; }

        /* ── TOP BAR ── */
.top-bar {
    background: rgb(15 8 4 / 97%);
    border-bottom: 1px solid rgba(201, 147, 58, 0.2);
    padding: 4px 60px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    position: relative;
    z-index: 1001;
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.top-phones {
    display: flex;
    align-items: center;
    gap: 14px;
}

.top-phones a {
    color: var(--gold);
    text-decoration: none;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.3s;
}

.top-phones a svg {
    width: 13px;
    height: 13px;
    flex-shrink: 0;
}

.top-phones a:hover {
    color: var(--gold-light);
}

.top-divider {
    color: rgba(201, 147, 58, 0.3);
    font-size: 0.9rem;
}

.top-socials {
    display: flex;
    align-items: center;
    gap: 10px;
}

.top-socials .social-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid rgba(201, 147, 58, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    text-decoration: none;
    transition: all 0.3s;
}

.top-socials .social-icon svg {
    width: 14px;
    height: 14px;
}

.top-socials .social-icon:hover {
    background: rgba(201, 147, 58, 0.15);
    border-color: var(--gold);
    transform: translateY(-2px);
}

/* ── NAV ── */
nav {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 60px;
    height: 70px;
    background: rgba(26, 14, 5, 0.97);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(201, 147, 58, 0.25);
    overflow: visible;
}

.nav-logo img {
    height: 150px;
    width: 150px;
    margin-top: 84px;
    background: #0f0804;
    border: 1px solid #C9933A;
    padding: 8px;
}

.nav-links {
    display: flex;
    gap: 36px;
    list-style: none;
    align-items: center;
}

.nav-links a {
    color: #F5ECD8;
    text-decoration: none;
    font-size: 0.78rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    font-weight: 700;
    transition: color 0.3s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--gold);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    transform: scaleX(1);
}

.nav-cta {
    background: var(--gold) !important;
    color: var(--deep) !important;
    padding: 11px 26px;
    border-radius: 2px;
    letter-spacing: 2px;
}

.nav-cta::after {
    display: none !important;
}

.nav-cta:hover {
    background: var(--gold-light) !important;
    transform: translateY(-1px);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
}

/* ── SHARED ── */
section {
    padding: 100px 60px;
}

.section-tag {
    font-size: 0.7rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
    display: block;
}

.section-tag-light {
    color: var(--gold-light);
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 900;
    color: var(--deep);
    line-height: 1.15;
    margin-bottom: 20px;
}

.section-title em {
    color: var(--gold);
    font-style: italic;
}

.section-title-light {
    color: var(--cream);
}

.divider {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), transparent);
    margin: 20px 0 40px;
}

.divider-center {
    margin: 20px auto 40px;
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.btn-gold {
    background: var(--gold);
    color: var(--deep);
    padding: 16px 40px;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 700;
    text-decoration: none;
    border-radius: 2px;
    transition: 0.3s;
    display: inline-block;
}

.btn-gold:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
}

.btn-outline {
    border: 1px solid rgba(201, 147, 58, 0.6);
    color: var(--gold);
    padding: 16px 40px;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 700;
    text-decoration: none;
    border-radius: 2px;
    transition: 0.3s;
    display: inline-block;
}

.btn-outline:hover {
    border-color: var(--gold);
    background: rgba(201, 147, 58, 0.1);
}

/* ── PAGE HERO ── */
.page-hero {
    height: 30vh;
    min-height: 350px;
    background: linear-gradient(135deg, #1A0E05 0%, #2C1A0E 60%, #1A0E05 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 20% 50%, rgba(201, 147, 58, 0.12) 0%, transparent 50%), radial-gradient(circle at 80% 50%, rgba(201, 147, 58, 0.08) 0%, transparent 50%);
}

.page-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201, 147, 58, 0.5), transparent);
}

.hero-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.04;
    background-image: repeating-linear-gradient(45deg, #C9933A 0px, #C9933A 1px, transparent 1px, transparent 40px);
}

.page-hero-content {
    position: relative;
    z-index: 2;
    padding: 0 20px;
}

.breadcrumb {
    font-size: 0.72rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(201, 147, 58, 0.6);
    margin-bottom: 20px;
}

.breadcrumb a {
    color: rgba(201, 147, 58, 0.6);
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb a:hover {
    color: var(--gold);
}

.breadcrumb span {
    margin: 0 10px;
}

.page-hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.8rem, 6vw, 5rem);
    font-weight: 900;
    color: var(--cream);
    line-height: 1.1;
}

.page-hero-content h1 em {
    color: var(--gold);
    font-style: italic;
}

.page-hero-sub {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    color: rgba(253, 246, 236, 0.6);
    margin-top: 16px;
    letter-spacing: 2px;
}

/* ── INTRO ── */
#services-intro {
    background: var(--cream);
    padding: 80px 60px 60px;
}

.intro-inner {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.intro-body {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    color: #6A5040;
    line-height: 1.9;
    margin-bottom: 14px;
}

/* ── MAIN SERVICES ── */
#main-services {
    background: var(--cream2);
    padding: 80px 60px;
}

.main-services-header {
    text-align: center;
    margin-bottom: 60px;
}

.service-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    margin-bottom: 6px;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 4px 30px rgba(26, 14, 5, 0.08);
}

.service-block:nth-child(even) .service-block-img {
    order: 2;
}

.service-block:nth-child(even) .service-block-text {
    order: 1;
}

.service-block-img {
    min-height: 380px;
    background: var(--warm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 12px;
    position: relative;
    overflow: hidden;
}

.service-block-img-ph {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.service-block-img-ph span {
    font-size: 4rem;
}

.service-block-img-ph small {
    font-size: 0.65rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(201, 147, 58, 0.6);
}

.service-block-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26, 14, 5, 0.3), transparent);
    pointer-events: none;
}

.service-block-text {
    background: var(--cream);
    padding: 56px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-block-tag {
    font-size: 0.65rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 700;
    margin-bottom: 14px;
}

.service-block-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 900;
    color: var(--deep);
    line-height: 1.2;
    margin-bottom: 20px;
}

.service-block-title em {
    color: var(--gold);
    font-style: italic;
}

.service-block-desc {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.08rem;
    color: #6A5040;
    line-height: 1.85;
    margin-bottom: 14px;
}

.service-features {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.service-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.85rem;
    color: var(--muted);
}

.service-feature::before {
    content: '✦';
    color: var(--gold);
    font-size: 0.65rem;
    flex-shrink: 0;
}

/* ── QUICK SERVICES GRID ── */
#quick-services {
    background: var(--deep);
    padding: 80px 60px;
}

.quick-header {
    text-align: center;
    margin-bottom: 60px;
}

.quick-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

.quick-card {
    border: 1px solid rgba(201, 147, 58, 0.2);
    border-radius: 4px;
    padding: 36px 28px;
    position: relative;
    transition: all 0.4s;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.02);
}

.quick-card:hover {
    border-color: var(--gold);
    background: rgba(201, 147, 58, 0.05);
    transform: translateY(-5px);
}

.quick-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s;
}

.quick-card:hover::after {
    transform: scaleX(1);
}

.quick-icon {
    font-size: 2.4rem;
    margin-bottom: 18px;
    display: block;
}

.quick-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--cream);
    margin-bottom: 10px;
}

.quick-desc {
    font-size: 0.85rem;
    color: rgba(253, 246, 236, 0.5);
    line-height: 1.7;
}

/* ── PROCESS ── */
#process {
    background: var(--cream);
    padding: 100px 60px;
}

.process-header {
    text-align: center;
    margin-bottom: 70px;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 36px;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201, 147, 58, 0.4), transparent);
}

.process-step {
    text-align: center;
    padding: 0 16px;
    position: relative;
}

.step-num {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    border: 2px solid var(--gold);
    background: var(--cream);
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--gold);
    position: relative;
    z-index: 1;
    transition: all 0.3s;
}

.process-step:hover .step-num {
    background: var(--gold);
    color: var(--deep);
}

.step-title {
    font-family: 'Playfair Display', serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--deep);
    margin-bottom: 8px;
}

.step-desc {
    font-size: 0.78rem;
    color: var(--muted);
    line-height: 1.6;
}

/* ── PACKAGES ── */
#packages {
    background: var(--cream2);
    padding: 100px 60px;
}

.packages-header {
    text-align: center;
    margin-bottom: 60px;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.package-card {
    background: var(--cream);
    border: 1px solid rgba(201, 147, 58, 0.2);
    border-radius: 4px;
    overflow: hidden;
    transition: all 0.4s;
    position: relative;
}

.package-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 60px rgba(26, 14, 5, 0.12);
    border-color: var(--gold);
}

.package-card.featured {
    border-color: var(--gold);
    box-shadow: 0 12px 40px rgba(201, 147, 58, 0.15);
}

.package-header-band {
    padding: 28px 30px;
    background: var(--deep);
    position: relative;
    overflow: hidden;
}

.package-card.featured .package-header-band {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
}

.package-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--gold);
    color: var(--deep);
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 20px;
}

.package-card.featured .package-badge {
    background: var(--deep);
    color: var(--gold);
}

.package-tier {
    font-size: 0.65rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(201, 147, 58, 0.7);
    font-weight: 700;
    margin-bottom: 8px;
}

.package-card.featured .package-tier {
    color: rgba(26, 14, 5, 0.6);
}

.package-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--cream);
}

.package-card.featured .package-name {
    color: var(--deep);
}

.package-tagline {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.95rem;
    color: rgba(253, 246, 236, 0.55);
    margin-top: 6px;
}

.package-card.featured .package-tagline {
    color: rgba(26, 14, 5, 0.6);
}

.package-body {
    padding: 30px;
}

.package-includes {
    font-size: 0.65rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 700;
    margin-bottom: 18px;
}

.package-items {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 28px;
}

.package-items li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.88rem;
    color: var(--muted);
    line-height: 1.5;
}

.package-items li::before {
    content: '✦';
    color: var(--gold);
    font-size: 0.6rem;
    flex-shrink: 0;
    margin-top: 3px;
}

.package-cta {
    display: block;
    text-align: center;
    padding: 14px;
    border: 1px solid rgba(201, 147, 58, 0.4);
    color: var(--gold);
    text-decoration: none;
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 700;
    border-radius: 2px;
    transition: all 0.3s;
}

.package-cta:hover,
.package-card.featured .package-cta {
    background: var(--gold);
    color: var(--deep);
    border-color: var(--gold);
}

/* ── WHY ── */
#why-services {
    background: linear-gradient(135deg, var(--deep), var(--warm));
    padding: 100px 60px;
}

.why-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.why-text-body {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.12rem;
    color: rgba(253, 246, 236, 0.7);
    line-height: 1.9;
    margin-bottom: 16px;
}

.why-list {
    margin-top: 36px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.why-item {
    display: flex;
    gap: 18px;
    align-items: flex-start;
}

.why-item-icon {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1px solid rgba(201, 147, 58, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.why-item-text h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--cream);
    margin-bottom: 4px;
}

.why-item-text p {
    font-size: 0.85rem;
    color: rgba(253, 246, 236, 0.5);
    line-height: 1.6;
}

.why-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.why-stat-box {
    border: 1px solid rgba(201, 147, 58, 0.25);
    padding: 30px 24px;
    border-radius: 4px;
    text-align: center;
    transition: all 0.3s;
    background: rgba(255, 255, 255, 0.02);
}

.why-stat-box:hover {
    border-color: var(--gold);
    background: rgba(201, 147, 58, 0.06);
}

.why-stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
}

.why-stat-label {
    font-size: 0.68rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(253, 246, 236, 0.35);
    margin-top: 8px;
}

/* ── CTA ── */
#services-cta {
    background: var(--cream2);
    padding: 100px 60px;
    text-align: center;
}

.cta-inner {
    max-width: 680px;
    margin: 0 auto;
}

.cta-body {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    color: #6A5040;
    line-height: 1.85;
    margin: 24px 0 44px;
}

.cta-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ── FOOTER ── */
footer {
    background: var(--deep);
    padding: 70px 60px;
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr;
    gap: 60px;
    border-top: 1px solid rgba(201, 147, 58, 0.2);
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.7rem;
    font-weight: 900;
    color: var(--gold);
    letter-spacing: 2px;
    margin-bottom: 16px;
    display: block;
}

.footer-desc {
    font-size: 0.85rem;
    color: rgba(253, 246, 236, 0.45);
    line-height: 1.75;
    max-width: 290px;
    margin-top: 14px;
}

.footer-socials {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.footer-socials a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(201, 147, 58, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    text-decoration: none;
    transition: all 0.3s;
}

.footer-socials a:hover {
    background: rgba(201, 147, 58, 0.15);
    border-color: var(--gold);
    transform: translateY(-2px);
}

.footer-col h4 {
    font-size: 0.68rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 22px;
    font-weight: 700;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: rgba(253, 246, 236, 0.45);
    text-decoration: none;
    font-size: 0.88rem;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: var(--gold);
}

.footer-bottom {
    background: var(--deep);
    padding: 20px 60px;
    border-top: 1px solid rgba(201, 147, 58, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 0.75rem;
    color: rgba(253, 246, 236, 0.25);
}

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
    .service-block {
        grid-template-columns: 1fr;
    }

    .service-block:nth-child(even) .service-block-img {
        order: 0;
    }

    .service-block:nth-child(even) .service-block-text {
        order: 0;
    }

    .service-block-img {
        min-height: 260px;
    }

    .quick-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-steps {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
    }

    .process-steps::before {
        display: none;
    }

    .packages-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
    }

    .why-inner {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

@media (max-width: 900px) {
    .top-bar {
        padding: 8px 20px;
    }

    nav {
        padding: 14px 20px;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 108px;
        left: 0;
        right: 0;
        background: var(--deep);
        flex-direction: column;
        padding: 30px 24px;
        gap: 22px;
        border-top: 1px solid rgba(201, 147, 58, 0.2);
        z-index: 999;
    }

    .nav-links.open {
        display: flex;
    }

    section {
        padding: 70px 24px;
    }

    #services-intro,
    #main-services,
    #quick-services,
    #process,
    #packages,
    #why-services,
    #services-cta {
        padding: 70px 24px;
    }

    .quick-grid {
        grid-template-columns: 1fr;
    }

    .process-steps {
        grid-template-columns: 1fr 1fr;
    }

    .service-block-text {
        padding: 40px 28px;
    }

    footer {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 50px 24px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
        padding: 20px 24px;
    }
}

@media (max-width: 480px) {
    .process-steps {
        grid-template-columns: 1fr;
    }

    .why-stats {
        grid-template-columns: 1fr 1fr;
    }

    .cta-btns {
        flex-direction: column;
        align-items: center;
    }
}

/*********************gallery**************/

/****************************************7*/



:root {
            --gold: #C9933A;
            --gold-light: #E8B96A;
            --deep: #1A0E05;
            --warm: #2C1A0E;
            --cream: #FDF6EC;
            --cream2: #F5ECD8;
            --text: #3D2B1A;
            --muted: #8A7060;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Nunito', sans-serif;
            background: var(--deep);
            color: var(--text);
            overflow-x: hidden;
        }

        /* ── TOP BAR ── */
        .top-bar {
            background: rgb(15 8 4 / 97%);
            border-bottom: 1px solid rgba(201, 147, 58, 0.2);
            padding: 4px 60px;
            display: flex;
            justify-content: flex-end;
            align-items: center;
            position: relative;
            z-index: 1001;
        }

        .top-bar-right {
            display: flex;
            align-items: center;
            gap: 16px;
        }

        .top-phones {
            display: flex;
            align-items: center;
            gap: 14px;
        }

        .top-phones a {
            color: var(--gold);
            text-decoration: none;
            font-size: 0.78rem;
            font-weight: 600;
            letter-spacing: 1px;
            display: flex;
            align-items: center;
            gap: 6px;
            transition: color 0.3s;
        }

        .top-phones a svg {
            width: 13px;
            height: 13px;
            flex-shrink: 0;
        }

        .top-phones a:hover {
            color: var(--gold-light);
        }

        .top-divider {
            color: rgba(201, 147, 58, 0.3);
        }

        .top-socials {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .top-socials .social-icon {
            width: 30px;
            height: 30px;
            border-radius: 50%;
            border: 1px solid rgba(201, 147, 58, 0.35);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--gold);
            text-decoration: none;
            transition: all 0.3s;
        }

        .top-socials .social-icon svg {
            width: 14px;
            height: 14px;
        }

        .top-socials .social-icon:hover {
            background: rgba(201, 147, 58, 0.15);
            border-color: var(--gold);
            transform: translateY(-2px);
        }

        /* ── NAV ── */
        nav {
            position: sticky;
            top: 0;
            z-index: 1000;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 60px;
            height: 70px;
            background: rgba(26, 14, 5, 0.97);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(201, 147, 58, 0.25);
            overflow: visible;
        }

        .nav-logo img {
            height: 150px;
            width: 150px;
            margin-top: 84px;
            background: #0f0804;
            border: 1px solid #C9933A;
            padding: 8px;
        }

        .nav-links {
            display: flex;
            gap: 36px;
            list-style: none;
            align-items: center;
        }

        .nav-links a {
            color: #F5ECD8;
            text-decoration: none;
            font-size: 0.78rem;
            letter-spacing: 2.5px;
            text-transform: uppercase;
            font-weight: 700;
            transition: color 0.3s;
            position: relative;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            right: 0;
            height: 1px;
            background: var(--gold);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.3s;
        }

        .nav-links a:hover,
        .nav-links a.active {
            color: var(--gold);
        }

        .nav-links a:hover::after,
        .nav-links a.active::after {
            transform: scaleX(1);
        }

        .nav-cta {
            background: var(--gold) !important;
            color: var(--deep) !important;
            padding: 11px 26px;
            border-radius: 2px;
            letter-spacing: 2px;
        }

        .nav-cta::after {
            display: none !important;
        }

        .nav-cta:hover {
            background: var(--gold-light) !important;
        }

        .nav-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 4px;
        }

        .nav-toggle span {
            display: block;
            width: 24px;
            height: 2px;
            background: var(--gold);
            border-radius: 2px;
        }

        /* ── PAGE HERO ── */
        .page-hero {
            height: 52vh;
            min-height: 340px;
            background: linear-gradient(135deg, #1A0E05 0%, #2C1A0E 60%, #1A0E05 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .page-hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image: radial-gradient(circle at 20% 50%, rgba(201, 147, 58, 0.12) 0%, transparent 50%), radial-gradient(circle at 80% 50%, rgba(201, 147, 58, 0.08) 0%, transparent 50%);
        }

        .page-hero::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(201, 147, 58, 0.5), transparent);
        }

        .hero-pattern {
            position: absolute;
            inset: 0;
            opacity: 0.04;
            background-image: repeating-linear-gradient(45deg, #C9933A 0px, #C9933A 1px, transparent 1px, transparent 40px);
        }

        .page-hero-content {
            position: relative;
            z-index: 2;
            padding: 0 20px;
        }

        .breadcrumb {
            font-size: 0.72rem;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: rgba(201, 147, 58, 0.6);
            margin-bottom: 20px;
        }

        .breadcrumb a {
            color: rgba(201, 147, 58, 0.6);
            text-decoration: none;
        }

        .breadcrumb a:hover {
            color: var(--gold);
        }

        .breadcrumb span {
            margin: 0 10px;
        }

        .page-hero-content h1 {
            font-family: 'Playfair Display', serif;
            font-size: clamp(2.8rem, 6vw, 5rem);
            font-weight: 900;
            color: var(--cream);
            line-height: 1.1;
        }

        .page-hero-content h1 em {
            color: var(--gold);
            font-style: italic;
        }

        .page-hero-sub {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.2rem;
            color: rgba(253, 246, 236, 0.6);
            margin-top: 16px;
            letter-spacing: 2px;
        }

        /* ── FILTER BAR ── */
        #filter-bar {
            background: var(--warm);
            padding: 26px 60px;
            border-bottom: 1px solid rgba(201, 147, 58, 0.15);
            position: sticky;
            top: 70px;
            z-index: 99;
        }

        .filter-inner {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            flex-wrap: wrap;
        }

        .filter-btn {
            background: transparent;
            border: 1px solid rgba(201, 147, 58, 0.22);
            color: rgba(253, 246, 236, 0.5);
            padding: 9px 22px;
            font-size: 0.72rem;
            letter-spacing: 2px;
            text-transform: uppercase;
            font-weight: 700;
            font-family: 'Nunito', sans-serif;
            cursor: pointer;
            border-radius: 30px;
            transition: all 0.25s;
            white-space: nowrap;
        }

        .filter-btn:hover {
            border-color: var(--gold);
            color: var(--gold);
        }

        .filter-btn.active {
            background: var(--gold);
            border-color: var(--gold);
            color: var(--deep);
        }

        /* ── GALLERY SECTION ── */
        #gallery-main {
            background: var(--deep);
            padding: 50px 60px 80px;
        }

        /* Meta bar */
        .gallery-meta {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 32px;
            flex-wrap: wrap;
            gap: 12px;
        }

        .gallery-count {
            font-size: 0.72rem;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: rgba(253, 246, 236, 0.3);
        }

        .gallery-count strong {
            color: var(--gold);
        }

        .shuffle-btn {
            background: transparent;
            border: 1px solid rgba(201, 147, 58, 0.28);
            color: var(--gold);
            padding: 8px 18px;
            font-size: 0.7rem;
            letter-spacing: 2px;
            text-transform: uppercase;
            font-weight: 700;
            font-family: 'Nunito', sans-serif;
            cursor: pointer;
            border-radius: 2px;
            transition: all 0.25s;
            display: flex;
            align-items: center;
            gap: 7px;
        }

        .shuffle-btn:hover {
            background: rgba(201, 147, 58, 0.1);
            border-color: var(--gold);
        }

        .shuffle-btn svg {
            width: 14px;
            height: 14px;
            transition: transform 0.5s;
        }

        .shuffle-btn:hover svg {
            transform: rotate(180deg);
        }

        /* ── MASONRY ── */
        .masonry {
            columns: 4;
            column-gap: 12px;
        }

        .masonry-item {
            break-inside: avoid;
            margin-bottom: 12px;
            position: relative;
            overflow: hidden;
            border-radius: 3px;
            cursor: pointer;
            border: 1px solid rgba(201, 147, 58, 0.07);
            transition: border-color 0.3s, transform 0.3s;
        }

        .masonry-item:hover {
            border-color: rgba(201, 147, 58, 0.4);
        }

        /* placeholder tile */
        .tile-ph {
            width: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 10px;
            background: linear-gradient(145deg, #2a1808, #1A0E05);
            transition: transform 0.45s ease;
        }

        .masonry-item:hover .tile-ph {
            transform: scale(1.05);
        }

        .tile-ph .icon {
            font-size: 2.8rem;
            display: block;
        }

        .tile-ph .lbl {
            font-size: 0.58rem;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: rgba(201, 147, 58, 0.45);
        }

        /* real images */
        .masonry-item img {
            width: 100%;
            display: block;
            transition: transform 0.45s ease;
        }

        .masonry-item:hover img {
            transform: scale(1.05);
        }

        /* heights */
        .h-xs {
            height: 150px;
        }

        .h-s {
            height: 200px;
        }

        .h-m {
            height: 260px;
        }

        .h-l {
            height: 320px;
        }

        .h-xl {
            height: 390px;
        }

        /* hover overlay */
        .tile-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(26, 14, 5, 0.9) 0%, rgba(26, 14, 5, 0.15) 55%, transparent 100%);
            opacity: 0;
            transition: opacity 0.3s;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 16px;
        }

        .masonry-item:hover .tile-overlay {
            opacity: 1;
        }

        .tile-cat {
            font-size: 0.58rem;
            letter-spacing: 2.5px;
            text-transform: uppercase;
            color: rgba(201, 147, 58, 0.7);
            margin-bottom: 4px;
        }

        .tile-caption {
            font-family: 'Playfair Display', serif;
            font-size: 0.88rem;
            font-weight: 700;
            color: var(--cream);
            line-height: 1.3;
        }

        .tile-zoom {
            position: absolute;
            top: 12px;
            right: 12px;
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background: rgba(201, 147, 58, 0.15);
            border: 1px solid rgba(201, 147, 58, 0.45);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--gold);
            font-size: 1rem;
            opacity: 0;
            transition: opacity 0.3s;
        }

        .masonry-item:hover .tile-zoom {
            opacity: 1;
        }

        /* no results */
        .no-results {
            text-align: center;
            padding: 80px 20px;
            display: none;
        }

        .no-results.show {
            display: block;
        }

        .no-results p {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.3rem;
            color: rgba(253, 246, 236, 0.25);
        }

        /* ── PAGINATION ── */
        .pag-wrap {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            margin-top: 56px;
            flex-wrap: wrap;
        }

        .pag-arrow,
        .pag-num {
            font-family: 'Nunito', sans-serif;
            font-weight: 700;
            cursor: pointer;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.25s;
            border: 1px solid rgba(201, 147, 58, 0.25);
            background: transparent;
        }

        .pag-arrow {
            width: 44px;
            height: 44px;
            color: var(--gold);
            font-size: 1.3rem;
        }

        .pag-num {
            width: 44px;
            height: 44px;
            color: rgba(253, 246, 236, 0.45);
            font-size: 0.82rem;
        }

        .pag-arrow:hover:not(:disabled),
        .pag-num:hover {
            border-color: var(--gold);
            color: var(--gold);
            background: rgba(201, 147, 58, 0.08);
        }

        .pag-num.active {
            background: var(--gold);
            border-color: var(--gold);
            color: var(--deep);
        }

        .pag-arrow:disabled {
            opacity: 0.2;
            cursor: default;
        }

        .pag-dots {
            color: rgba(253, 246, 236, 0.2);
            font-size: 0.9rem;
            padding: 0 4px;
            line-height: 44px;
        }

        .pag-info {
            font-size: 0.65rem;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: rgba(253, 246, 236, 0.2);
            margin-left: 8px;
        }

        /* ── LIGHTBOX ── */
        #lightbox {
            display: none;
            position: fixed;
            inset: 0;
            background: rgba(5, 2, 1, 0.96);
            z-index: 9999;
            align-items: center;
            justify-content: center;
        }

        #lightbox.open {
            display: flex;
        }

        .lb-close {
            position: fixed;
            top: 20px;
            right: 26px;
            width: 46px;
            height: 46px;
            border-radius: 50%;
            border: 1px solid rgba(201, 147, 58, 0.4);
            background: rgba(26, 14, 5, 0.7);
            color: var(--gold);
            font-size: 1.2rem;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
            z-index: 10;
        }

        .lb-close:hover {
            background: var(--gold);
            color: var(--deep);
        }

        .lb-nav {
            position: fixed;
            top: 50%;
            transform: translateY(-50%);
            width: 52px;
            height: 52px;
            border-radius: 50%;
            border: 1px solid rgba(201, 147, 58, 0.3);
            background: rgba(26, 14, 5, 0.6);
            color: var(--gold);
            font-size: 1.8rem;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
            z-index: 10;
            line-height: 1;
        }

        .lb-nav:hover {
            background: var(--gold);
            color: var(--deep);
            border-color: var(--gold);
        }

        .lb-prev {
            left: 18px;
        }

        .lb-next {
            right: 18px;
        }

        .lb-body {
            display: flex;
            flex-direction: column;
            align-items: center;
            max-width: 88vw;
        }

        .lb-frame {
            width: 700px;
            max-width: 84vw;
            height: 480px;
            max-height: 68vh;
            border-radius: 4px;
            overflow: hidden;
            border: 1px solid rgba(201, 147, 58, 0.2);
            position: relative;
            background: var(--warm);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .lb-frame img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .lb-frame-ph {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 16px;
        }

        .lb-frame-ph .lb-big-icon {
            font-size: 7rem;
            line-height: 1;
        }

        .lb-frame-ph .lb-ph-lbl {
            font-size: 0.62rem;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: rgba(201, 147, 58, 0.5);
        }

        .lb-info {
            text-align: center;
            margin-top: 18px;
        }

        .lb-cat-tag {
            font-size: 0.62rem;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--gold);
            margin-bottom: 6px;
        }

        .lb-title {
            font-family: 'Playfair Display', serif;
            font-size: 1.15rem;
            font-weight: 700;
            color: var(--cream);
        }

        .lb-counter {
            font-size: 0.62rem;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: rgba(253, 246, 236, 0.25);
            margin-top: 8px;
        }

        /* ── VIDEO HIGHLIGHTS ── */
        #video-section {
            background: var(--warm);
            padding: 80px 60px;
            border-top: 1px solid rgba(201, 147, 58, 0.15);
            border-bottom: 1px solid rgba(201, 147, 58, 0.15);
        }

        .video-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .video-header .section-tag-light {
            display: block;
            font-size: 0.7rem;
            letter-spacing: 5px;
            text-transform: uppercase;
            color: var(--gold-light);
            margin-bottom: 14px;
        }

        .video-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            max-width: 1100px;
            margin: 0 auto;
        }

        .video-thumb {
            position: relative;
            border-radius: 4px;
            overflow: hidden;
            cursor: pointer;
            background: var(--deep);
            aspect-ratio: 16/9;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid rgba(201, 147, 58, 0.15);
            transition: all 0.3s;
        }

        .video-thumb:hover {
            border-color: rgba(201, 147, 58, 0.45);
            transform: translateY(-5px);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
        }

        .video-thumb-ph {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
            z-index: 1;
        }

        .video-thumb-ph span {
            font-size: 2.4rem;
        }

        .video-thumb-ph small {
            font-size: 0.6rem;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: rgba(201, 147, 58, 0.45);
        }

        /* dark gradient overlay on thumb */
        .video-thumb::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(26, 14, 5, 0.7), transparent);
            z-index: 0;
        }

        .play-btn {
            position: absolute;
            width: 58px;
            height: 58px;
            border-radius: 50%;
            background: rgba(201, 147, 58, 0.9);
            border: 2px solid var(--gold-light);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
            z-index: 2;
        }

        .video-thumb:hover .play-btn {
            background: var(--gold);
            transform: scale(1.1);
            box-shadow: 0 0 30px rgba(201, 147, 58, 0.4);
        }

        .play-btn svg {
            width: 20px;
            height: 20px;
            fill: var(--deep);
            margin-left: 3px;
        }

        .video-label {
            position: absolute;
            bottom: 14px;
            left: 14px;
            font-size: 0.65rem;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--gold);
            font-weight: 700;
            background: rgba(26, 14, 5, 0.75);
            padding: 5px 11px;
            border-radius: 2px;
            z-index: 2;
        }

        /* ── INSTA CTA ── */
        #insta-cta {
            background: linear-gradient(135deg, var(--warm), var(--deep));
            padding: 70px 60px;
            text-align: center;
            border-top: 1px solid rgba(201, 147, 58, 0.15);
        }

        .insta-inner {
            max-width: 520px;
            margin: 0 auto;
        }

        .insta-emoji {
            font-size: 2.6rem;
            margin-bottom: 16px;
        }

        .section-title {
            font-family: 'Playfair Display', serif;
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 900;
            line-height: 1.15;
            margin-bottom: 20px;
        }

        .section-title em {
            color: var(--gold);
            font-style: italic;
        }

        .section-title-light {
            color: var(--cream);
        }

        .divider-center {
            width: 60px;
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--gold), transparent);
            margin: 14px auto 30px;
        }

        .insta-handle {
            font-family: 'Playfair Display', serif;
            font-size: 1.6rem;
            font-weight: 900;
            color: var(--gold);
            margin-bottom: 16px;
        }

        .insta-body {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.1rem;
            color: rgba(253, 246, 236, 0.5);
            line-height: 1.8;
            margin-bottom: 28px;
        }

        .insta-link {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            border: 2px solid var(--gold);
            color: var(--gold);
            padding: 13px 32px;
            font-size: 0.78rem;
            letter-spacing: 2px;
            text-transform: uppercase;
            font-weight: 700;
            text-decoration: none;
            border-radius: 50px;
            transition: all 0.3s;
        }

        .insta-link:hover {
            background: var(--gold);
            color: var(--deep);
            transform: translateY(-3px);
        }

        .insta-link svg {
            width: 15px;
            height: 15px;
        }

        /* ── CTA ── */
        #gallery-cta {
            background: var(--cream2);
            padding: 80px 60px;
            text-align: center;
        }

        .cta-inner {
            max-width: 560px;
            margin: 0 auto;
        }

        .cta-inner .section-title {
            color: var(--deep);
        }

        .cta-body {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.2rem;
            color: #6A5040;
            line-height: 1.8;
            margin: 18px 0 36px;
        }

        .cta-btns {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn-gold {
            background: var(--gold);
            color: var(--deep);
            padding: 15px 38px;
            font-size: 0.8rem;
            letter-spacing: 2px;
            text-transform: uppercase;
            font-weight: 700;
            text-decoration: none;
            border-radius: 2px;
            transition: 0.3s;
            display: inline-block;
        }

        .btn-gold:hover {
            background: var(--gold-light);
            transform: translateY(-2px);
        }

        .btn-outline {
            border: 1px solid rgba(201, 147, 58, 0.5);
            color: var(--gold);
            padding: 15px 38px;
            font-size: 0.8rem;
            letter-spacing: 2px;
            text-transform: uppercase;
            font-weight: 700;
            text-decoration: none;
            border-radius: 2px;
            transition: 0.3s;
            display: inline-block;
        }

        .btn-outline:hover {
            border-color: var(--gold);
            background: rgba(201, 147, 58, 0.07);
        }

        /* ── FOOTER ── */
        footer {
            background: var(--deep);
            padding: 70px 60px;
            display: grid;
            grid-template-columns: 1.6fr 1fr 1fr;
            gap: 60px;
            border-top: 1px solid rgba(201, 147, 58, 0.2);
        }

        .footer-logo {
            font-family: 'Playfair Display', serif;
            font-size: 1.7rem;
            font-weight: 900;
            color: var(--gold);
            letter-spacing: 2px;
            margin-bottom: 16px;
            display: block;
        }

        .footer-desc {
            font-size: 0.85rem;
            color: rgba(253, 246, 236, 0.45);
            line-height: 1.75;
            max-width: 290px;
            margin-top: 14px;
        }

        .footer-socials {
            display: flex;
            gap: 12px;
            margin-top: 24px;
        }

        .footer-socials a {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            border: 1px solid rgba(201, 147, 58, 0.35);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--gold);
            text-decoration: none;
            transition: all 0.3s;
        }

        .footer-socials a:hover {
            background: rgba(201, 147, 58, 0.15);
            border-color: var(--gold);
            transform: translateY(-2px);
        }

        .footer-col h4 {
            font-size: 0.68rem;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--gold);
            margin-bottom: 22px;
            font-weight: 700;
        }

        .footer-col ul {
            list-style: none;
        }

        .footer-col ul li {
            margin-bottom: 12px;
        }

        .footer-col ul li a {
            color: rgba(253, 246, 236, 0.45);
            text-decoration: none;
            font-size: 0.88rem;
            transition: color 0.3s;
        }

        .footer-col ul li a:hover {
            color: var(--gold);
        }

        .footer-bottom {
            background: var(--deep);
            padding: 20px 60px;
            border-top: 1px solid rgba(201, 147, 58, 0.1);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .footer-bottom p {
            font-size: 0.75rem;
            color: rgba(253, 246, 236, 0.25);
        }

        /* ── WHATSAPP ── */
        .wa-float {
            position: fixed;
            bottom: 28px;
            right: 28px;
            z-index: 998;
        }

        .wa-btn {
            width: 56px;
            height: 56px;
            border-radius: 50%;
            background: #25D366;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
            text-decoration: none;
            transition: all 0.3s;
            position: relative;
        }

        .wa-btn:hover {
            transform: scale(1.1);
        }

        .wa-btn svg {
            width: 26px;
            height: 26px;
            fill: white;
        }

        .wa-pulse {
            position: absolute;
            inset: -4px;
            border-radius: 50%;
            background: rgba(37, 211, 102, 0.25);
            animation: wap 2s infinite;
        }

        @keyframes wap {

            0%,
            100% {
                opacity: .6;
                transform: scale(1)
            }

            50% {
                opacity: 0;
                transform: scale(1.4)
            }
        }

        /* ── RESPONSIVE ── */
        @media (max-width: 1200px) {
            .masonry {
                columns: 3;
            }
        }

        @media (max-width: 900px) {
            .top-bar {
                padding: 8px 20px;
            }

            nav {
                padding: 14px 20px;
            }

            .nav-toggle {
                display: flex;
            }

            .nav-links {
                display: none;
                position: fixed;
                top: 108px;
                left: 0;
                right: 0;
                background: var(--deep);
                flex-direction: column;
                padding: 30px 24px;
                gap: 22px;
                border-top: 1px solid rgba(201, 147, 58, 0.2);
                z-index: 999;
            }

            .nav-links.open {
                display: flex;
            }

            #gallery-main {
                padding: 36px 16px 60px;
            }

            #filter-bar {
                padding: 18px 16px;
            }

            .masonry {
                columns: 2;
                column-gap: 8px;
            }

            .masonry-item {
                margin-bottom: 8px;
            }

            .lb-nav {
                display: none;
            }

            .video-grid {
                grid-template-columns: 1fr 1fr;
            }

            #video-section {
                padding: 60px 24px;
            }

            footer {
                grid-template-columns: 1fr;
                gap: 40px;
                padding: 50px 24px;
            }

            .footer-bottom {
                flex-direction: column;
                gap: 8px;
                text-align: center;
                padding: 20px 24px;
            }

            #insta-cta,
            #gallery-cta {
                padding: 60px 24px;
            }
        }

        @media (max-width: 480px) {
            .masonry {
                columns: 1;
            }

            .cta-btns {
                flex-direction: column;
                align-items: center;
            }

            .lb-frame {
                height: 260px;
            }
        }



/************contact**************/

/*********************************/



:root {
    --gold: #C9933A;
    --gold-light: #E8B96A;
    --gold-dark: #8B6020;
    --deep: #1A0E05;
    --warm: #2C1A0E;
    --cream: #FDF6EC;
    --cream2: #F5ECD8;
    --text: #3D2B1A;
    --muted: #8A7060;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Nunito', sans-serif;
    background: var(--cream);
    color: var(--text);
    overflow-x: hidden;
}

/* ── TOP BAR ── */
.top-bar {
    background: rgb(15 8 4 / 97%);
    border-bottom: 1px solid rgba(201, 147, 58, 0.2);
    padding: 4px 60px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    position: relative;
    z-index: 1001;
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.top-phones {
    display: flex;
    align-items: center;
    gap: 14px;
}

.top-phones a {
    color: var(--gold);
    text-decoration: none;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.3s;
}

.top-phones a svg {
    width: 13px;
    height: 13px;
    flex-shrink: 0;
}

.top-phones a:hover {
    color: var(--gold-light);
}

.top-divider {
    color: rgba(201, 147, 58, 0.3);
    font-size: 0.9rem;
}

.top-socials {
    display: flex;
    align-items: center;
    gap: 10px;
}

.top-socials .social-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid rgba(201, 147, 58, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    text-decoration: none;
    transition: all 0.3s;
}

.top-socials .social-icon svg {
    width: 14px;
    height: 14px;
}

.top-socials .social-icon:hover {
    background: rgba(201, 147, 58, 0.15);
    border-color: var(--gold);
    transform: translateY(-2px);
}

/* ── NAV ── */
nav {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 60px;
    height: 70px;
    background: rgba(26, 14, 5, 0.97);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(201, 147, 58, 0.25);
    overflow: visible;
}

.nav-logo img {
    height: 150px;
    width: 150px;
    margin-top: 84px;
    background: #0f0804;
    border: 1px solid #C9933A;
    padding: 8px;
}

.nav-links {
    display: flex;
    gap: 36px;
    list-style: none;
    align-items: center;
}

.nav-links a {
    color: #F5ECD8;
    text-decoration: none;
    font-size: 0.78rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    font-weight: 700;
    transition: color 0.3s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--gold);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    transform: scaleX(1);
}

.nav-cta {
    background: var(--gold) !important;
    color: var(--deep) !important;
    padding: 11px 26px;
    border-radius: 2px;
    letter-spacing: 2px;
}

.nav-cta::after {
    display: none !important;
}

.nav-cta:hover {
    background: var(--gold-light) !important;
    transform: translateY(-1px);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
}

/* ── SHARED ── */
.section-tag {
    font-size: 0.7rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
    display: block;
}

.section-tag-light {
    color: var(--gold-light);
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 900;
    color: var(--deep);
    line-height: 1.15;
    margin-bottom: 20px;
}

.section-title em {
    color: var(--gold);
    font-style: italic;
}

.section-title-light {
    color: var(--cream);
}

.divider {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), transparent);
    margin: 20px 0 40px;
}

.divider-center {
    margin: 20px auto 40px;
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── PAGE HERO ── */
.page-hero {
    height: 30vh;
    min-height: 350px;
    background: linear-gradient(135deg, #1A0E05 0%, #2C1A0E 60%, #1A0E05 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 20% 50%, rgba(201, 147, 58, 0.12) 0%, transparent 50%), radial-gradient(circle at 80% 50%, rgba(201, 147, 58, 0.08) 0%, transparent 50%);
}

.page-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201, 147, 58, 0.5), transparent);
}

.hero-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.04;
    background-image: repeating-linear-gradient(45deg, #C9933A 0px, #C9933A 1px, transparent 1px, transparent 40px);
}

.page-hero-content {
    position: relative;
    z-index: 2;
    padding: 0 20px;
}

.breadcrumb {
    font-size: 0.72rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(201, 147, 58, 0.6);
    margin-bottom: 20px;
}

.breadcrumb a {
    color: rgba(201, 147, 58, 0.6);
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb a:hover {
    color: var(--gold);
}

.breadcrumb span {
    margin: 0 10px;
}

.page-hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.8rem, 6vw, 5rem);
    font-weight: 900;
    color: var(--cream);
    line-height: 1.1;
}

.page-hero-content h1 em {
    color: var(--gold);
    font-style: italic;
}

.page-hero-sub {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    color: rgba(253, 246, 236, 0.6);
    margin-top: 16px;
    letter-spacing: 2px;
}

/* ── QUICK CONTACT STRIP ── */
#quick-contact {
    background: var(--gold);
    padding: 0;
}

.quick-strip {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
}

.quick-item {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 22px 30px;
    border-right: 1px solid rgba(26, 14, 5, 0.15);
    text-decoration: none;
    transition: background 0.3s;
}

.quick-item:last-child {
    border-right: none;
}

.quick-item:hover {
    background: rgba(26, 14, 5, 0.08);
}

.quick-item-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(26, 14, 5, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.quick-item-text {
    display: flex;
    flex-direction: column;
}

.quick-item-label {
    font-size: 0.6rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(26, 14, 5, 0.5);
    font-weight: 700;
}

.quick-item-val {
    font-size: 0.92rem;
    color: var(--deep);
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-top: 2px;
}

/* ── CONTACT MAIN ── */
#contact-main {
    background: var(--cream2);
    padding: 100px 60px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: start;
}

/* Left info column */
.contact-info-heading {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--deep);
    margin-bottom: 30px;
}

.contact-info-body {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    color: #6A5040;
    line-height: 1.8;
    margin-bottom: 36px;
}

.info-card {
    display: flex;
    gap: 18px;
    margin-bottom: 28px;
    align-items: flex-start;
    padding: 20px;
    background: var(--cream);
    border: 1px solid rgba(201, 147, 58, 0.18);
    border-radius: 4px;
    transition: all 0.3s;
}

.info-card:hover {
    border-color: var(--gold);
    box-shadow: 0 8px 24px rgba(26, 14, 5, 0.08);
    transform: translateX(4px);
}

.info-icon {
    width: 48px;
    height: 48px;
    border: 1px solid rgba(201, 147, 58, 0.35);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
    background: rgba(201, 147, 58, 0.06);
}

.info-detail h4 {
    font-family: 'Playfair Display', serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--deep);
    margin-bottom: 5px;
}

.info-detail p {
    font-size: 0.88rem;
    color: var(--muted);
    line-height: 1.7;
}

.info-detail a {
    color: var(--gold);
    text-decoration: none;
    transition: color 0.3s;
    display: block;
}

.info-detail a:hover {
    color: var(--gold-light);
}

.info-note {
    font-size: 0.72rem;
    color: var(--muted);
    margin-top: 3px;
}

/* Social row */
.social-row {
    display: flex;
    gap: 12px;
    margin-top: 30px;
}

.social-pill {
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(201, 147, 58, 0.3);
    padding: 10px 18px;
    border-radius: 30px;
    color: var(--gold);
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    transition: all 0.3s;
}

.social-pill svg {
    width: 14px;
    height: 14px;
}

.social-pill:hover {
    background: var(--gold);
    color: var(--deep);
    border-color: var(--gold);
}

/* ── CONTACT FORM ── */
.contact-form-wrap {
    background: var(--cream);
    border: 1px solid rgba(201, 147, 58, 0.2);
    border-radius: 4px;
    padding: 50px 44px;
    box-shadow: 0 12px 50px rgba(26, 14, 5, 0.08);
}

.form-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--deep);
    margin-bottom: 6px;
}

.form-subtitle {
    font-size: 0.85rem;
    color: var(--muted);
    margin-bottom: 32px;
    line-height: 1.6;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.form-group label {
    font-size: 0.68rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--muted);
    font-weight: 700;
}

.form-group input,
.form-group select,
.form-group textarea {
    border: 1px solid rgba(201, 147, 58, 0.25);
    background: var(--cream2);
    padding: 14px 18px;
    font-size: 0.9rem;
    font-family: 'Nunito', sans-serif;
    color: var(--text);
    border-radius: 2px;
    outline: none;
    transition: border-color 0.3s, box-shadow 0.3s;
    appearance: none;
    -webkit-appearance: none;
    width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201, 147, 58, 0.08);
    background: var(--cream);
}

.form-group textarea {
    resize: vertical;
    min-height: 130px;
}

.form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23C9933A' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
    cursor: pointer;
}

/* Checkbox group */
.checkbox-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 4px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.84rem;
    color: var(--muted);
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: var(--gold);
    cursor: pointer;
    flex-shrink: 0;
}

.submit-btn {
    background: var(--gold);
    color: var(--deep);
    border: none;
    padding: 16px 44px;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 700;
    cursor: pointer;
    border-radius: 2px;
    transition: all 0.3s;
    font-family: 'Nunito', sans-serif;
    width: 100%;
    margin-top: 10px;
}

.submit-btn:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(201, 147, 58, 0.3);
}

.form-note {
    font-size: 0.72rem;
    color: var(--muted);
    text-align: center;
    margin-top: 14px;
    line-height: 1.6;
}

/* Success message */
.success-msg {
    display: none;
    background: rgba(201, 147, 58, 0.1);
    border: 1px solid rgba(201, 147, 58, 0.4);
    border-radius: 4px;
    padding: 24px;
    text-align: center;
    margin-top: 20px;
}

.success-msg.show {
    display: block;
}

.success-msg h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--deep);
    margin-bottom: 8px;
}

.success-msg p {
    font-size: 0.85rem;
    color: var(--muted);
}

/* ── MAP SECTION ── */
#map-section {
    background: var(--deep);
    padding: 0;
}

.map-header {
    padding: 70px 60px 40px;
    text-align: center;
}

.map-container {
    position: relative;
    height: 480px;
    overflow: hidden;
    border-top: 1px solid rgba(201, 147, 58, 0.15);
    border-bottom: 1px solid rgba(201, 147, 58, 0.15);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(20%) contrast(1.05);
}

/* Gold frame lines */
.map-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    z-index: 2;
}

.map-container::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    z-index: 2;
}

/* Map info overlay */
.map-info-bar {
    background: var(--warm);
    padding: 28px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(201, 147, 58, 0.15);
    flex-wrap: wrap;
    gap: 20px;
}

.map-address {
    display: flex;
    align-items: center;
    gap: 14px;
}

.map-pin {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(201, 147, 58, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.map-address-text h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--cream);
    margin-bottom: 3px;
}

.map-address-text p {
    font-size: 0.82rem;
    color: rgba(253, 246, 236, 0.5);
}

.map-directions {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gold);
    color: var(--deep);
    padding: 12px 26px;
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 700;
    text-decoration: none;
    border-radius: 2px;
    transition: all 0.3s;
}

.map-directions:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
}

.map-directions svg {
    width: 14px;
    height: 14px;
}

/* ── DISTRICTS REACH ── */
#districts-reach {
    background: var(--cream2);
    padding: 80px 60px;
}

.districts-header {
    text-align: center;
    margin-bottom: 50px;
}

.districts-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.district-card {
    background: var(--cream);
    border: 1px solid rgba(201, 147, 58, 0.2);
    border-radius: 4px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s;
}

.district-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(26, 14, 5, 0.1);
}

.district-card.hq {
    background: var(--deep);
    border-color: rgba(201, 147, 58, 0.4);
}

.district-icon {
    font-size: 2rem;
    margin-bottom: 12px;
    display: block;
}

.district-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--deep);
    margin-bottom: 6px;
}

.district-card.hq .district-name {
    color: var(--gold);
}

.district-status {
    font-size: 0.65rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--muted);
}

.district-card.hq .district-status {
    color: rgba(253, 246, 236, 0.4);
}

.district-badge {
    display: inline-block;
    background: rgba(201, 147, 58, 0.15);
    color: var(--gold);
    font-size: 0.6rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 20px;
    margin-top: 10px;
    font-weight: 700;
}

/* ── FAQ ── */
#faq {
    background: var(--cream);
    padding: 80px 60px;
}

.faq-header {
    text-align: center;
    margin-bottom: 50px;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid rgba(201, 147, 58, 0.18);
    border-radius: 4px;
    overflow: hidden;
}

.faq-q {
    padding: 20px 24px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    background: var(--cream);
    transition: background 0.3s;
}

.faq-q:hover {
    background: var(--cream2);
}

.faq-q span {
    font-family: 'Playfair Display', serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--deep);
    line-height: 1.4;
}

.faq-arrow {
    color: var(--gold);
    font-size: 1.2rem;
    flex-shrink: 0;
    transition: transform 0.3s;
}

.faq-item.open .faq-arrow {
    transform: rotate(45deg);
}

.faq-a {
    display: none;
    padding: 0 24px 20px;
    font-size: 0.88rem;
    color: var(--muted);
    line-height: 1.75;
    border-top: 1px solid rgba(201, 147, 58, 0.12);
    padding-top: 16px;
}

.faq-item.open .faq-a {
    display: block;
}

/* ── WHATSAPP FLOAT ── */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.whatsapp-btn {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.35);
    text-decoration: none;
    transition: all 0.3s;
    position: relative;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 32px rgba(37, 211, 102, 0.5);
}

.whatsapp-btn svg {
    width: 28px;
    height: 28px;
    fill: white;
}

.whatsapp-pulse {
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: rgba(37, 211, 102, 0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 0.6;
        transform: scale(1);
    }

    50% {
        opacity: 0;
        transform: scale(1.4);
    }
}

/* ── FOOTER ── */
footer {
    background: var(--deep);
    padding: 70px 60px;
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr;
    gap: 60px;
    border-top: 1px solid rgba(201, 147, 58, 0.2);
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.7rem;
    font-weight: 900;
    color: var(--gold);
    letter-spacing: 2px;
    margin-bottom: 16px;
    display: block;
}

.footer-desc {
    font-size: 0.85rem;
    color: rgba(253, 246, 236, 0.45);
    line-height: 1.75;
    max-width: 290px;
    margin-top: 14px;
}

.footer-socials {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.footer-socials a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(201, 147, 58, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    text-decoration: none;
    transition: all 0.3s;
}

.footer-socials a:hover {
    background: rgba(201, 147, 58, 0.15);
    border-color: var(--gold);
    transform: translateY(-2px);
}

.footer-col h4 {
    font-size: 0.68rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 22px;
    font-weight: 700;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: rgba(253, 246, 236, 0.45);
    text-decoration: none;
    font-size: 0.88rem;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: var(--gold);
}

.footer-bottom {
    background: var(--deep);
    padding: 20px 60px;
    border-top: 1px solid rgba(201, 147, 58, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 0.75rem;
    color: rgba(253, 246, 236, 0.25);
}

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .districts-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 900px) {
    .top-bar {
        padding: 8px 20px;
    }

    nav {
        padding: 14px 20px;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 108px;
        left: 0;
        right: 0;
        background: var(--deep);
        flex-direction: column;
        padding: 30px 24px;
        gap: 22px;
        border-top: 1px solid rgba(201, 147, 58, 0.2);
        z-index: 999;
    }

    .nav-links.open {
        display: flex;
    }

    #contact-main,
    #districts-reach,
    #faq {
        padding: 70px 24px;
    }

    .map-header {
        padding: 50px 24px 30px;
    }

    .map-info-bar {
        padding: 24px;
        flex-direction: column;
        align-items: flex-start;
    }

    .contact-form-wrap {
        padding: 36px 24px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .quick-strip {
        flex-direction: column;
    }

    .quick-item {
        border-right: none;
        border-bottom: 1px solid rgba(26, 14, 5, 0.15);
    }

    .quick-item:last-child {
        border-bottom: none;
    }

    footer {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 50px 24px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
        padding: 20px 24px;
    }

    .checkbox-group {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .districts-cards {
        grid-template-columns: 1fr 1fr;
    }

    .map-container {
        height: 320px;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }
}



.masonry {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
    padding: 20px 0;
}

.gallery-item {
    position: relative;
    cursor: pointer;
    overflow: hidden;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.gallery-item:hover { transform: scale(1.02); }

.gallery-item img { width: 100%; height: auto; display: block; }

/* Popup Styling */
.popup-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.9);
    display: none; justify-content: center; align-items: center;
    z-index: 1000;
}

#popupImg { max-width: 90%; max-height: 80%; border-radius: 5px; }

.close-btn {
    position: absolute; top: 20px; right: 30px;
    color: white; font-size: 40px; cursor: pointer;
}