/* ========================================
   CSS VARIABLES — Reeti Riwaz Events
======================================== */
:root {
    --gold:         #c9a84c;
    --gold-light:   #e8d5a0;
    --gold-dark:    #a0802e;
    --black:        #0a0a0a;
    --dark:         #111111;
    --dark-2:       #1a1a1a;
    --dark-3:       #222222;
    --rose:         #8b1a4a;
    --cream:        #f5ede0;
    --white:        #ffffff;
    --text-muted:   rgba(255,255,255,.55);
    --border:       rgba(201,168,76,.2);
    --shadow:       0 8px 40px rgba(0,0,0,.5);
    --radius:       14px;
    --transition:   all .35s ease;
}

/* ========================================
   RESET & BASE
======================================== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Inter', 'Segoe UI', sans-serif;
    background: var(--black);
    color: var(--cream);
    line-height: 1.75;
    overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; }

/* ========================================
   TYPOGRAPHY HELPERS
======================================== */
.section-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.85rem, 3.5vw, 2.75rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: .75rem;
    line-height: 1.25;
}
.section-subtitle {
    font-size: 1rem;
    color: var(--text-muted);
    max-width: 620px;
    margin: 0 auto 3rem;
}
.section-badge {
    display: inline-block;
    background: rgba(201,168,76,.12);
    color: var(--gold);
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: .35rem 1.1rem;
    border-radius: 50px;
    border: 1px solid rgba(201,168,76,.25);
    margin-bottom: .85rem;
}
.section-header { padding: 0 1.5rem; }
.text-center { text-align: center; }
.gold-text { color: var(--gold); }

/* ========================================
   BUTTONS
======================================== */
.btn-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--black);
    padding: .8rem 2.25rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: .95rem;
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    letter-spacing: .3px;
}
.btn-gold:hover {
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    color: var(--black);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(201,168,76,.35);
}
.btn-gold.btn-lg { padding: 1rem 2.75rem; font-size: 1rem; }
.btn-gold.btn-full { width: 100%; justify-content: center; border-radius: 10px; padding: 1rem; }
.btn-outline-white {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255,255,255,.5);
    padding: .8rem 2.25rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: .95rem;
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    transition: var(--transition);
    cursor: pointer;
}
.btn-outline-white:hover {
    background: rgba(255,255,255,.1);
    border-color: var(--white);
    color: var(--white);
    transform: translateY(-3px);
}
.btn-outline-gold {
    background: transparent;
    color: var(--gold);
    border: 1.5px solid var(--gold);
    padding: .8rem 2.25rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: .95rem;
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    transition: var(--transition);
    cursor: pointer;
}
.btn-outline-gold:hover {
    background: rgba(201,168,76,.12);
    border-color: var(--gold-light);
    color: var(--gold-light);
    transform: translateY(-3px);
}
.btn-outline-gold.btn-lg { padding: 1rem 2.75rem; font-size: 1rem; }

/* ========================================
   NAVBAR
======================================== */
.navbar-custom {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 0.1rem 0;
    transition: var(--transition);
    background: transparent;
}
.navbar-custom.scrolled {
    background: rgba(10,10,10,.97);
    backdrop-filter: blur(16px);
    box-shadow: 0 1px 0 rgba(201,168,76,.15);
    padding: .7rem 0;
}
.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.navbar-brand-wrap {
    display: flex;
    align-items: center;
    gap: .65rem;
}

/* ── Dual Logo Switching ── */
.brand-logo-img {
    height: 90px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    display: block;
    transition: opacity .35s ease;
}
/* Transparent navbar → show black logo */
.brand-logo--white { display: none;  }
.brand-logo--black { display: block; }

/* Scrolled (solid black navbar) → show white logo */
.navbar-custom.scrolled .brand-logo--white { display: block; }
.navbar-custom.scrolled .brand-logo--black { display: none;  }

.brand-logo {
    width: 42px; height: 42px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--black);
    font-size: 1.1rem;
    flex-shrink: 0;
}
.brand-text-wrap {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}
.brand-main {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: .3px;
}
.brand-sub {
    font-size: .7rem;
    color: var(--gold);
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
}
.nav-menu {
    display: flex;
    align-items: center;
    gap: .15rem;
    list-style: none;
}
.nav-link-item {
    color: rgba(255,255,255,.8);
    font-weight: 500;
    font-size: .9rem;
    padding: .5rem 1rem;
    border-radius: 8px;
    transition: var(--transition);
    position: relative;
}
.nav-link-item::after {
    content: '';
    position: absolute;
    bottom: 0; left: 50%; right: 50%;
    height: 1.5px;
    background: var(--gold);
    transition: var(--transition);
    border-radius: 2px;
}
.nav-link-item:hover::after,
.nav-link-item.active::after { left: 15%; right: 15%; }
.nav-link-item:hover,
.nav-link-item.active {
    color: var(--gold);
    background: rgba(201,168,76,.07);
}
.nav-cta {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--black) !important;
    padding: .55rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    margin-left: .5rem;
}
.nav-cta::after { display: none; }
.nav-cta:hover {
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    color: var(--black) !important;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(201,168,76,.3);
}
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: .5rem;
    background: none;
    border: none;
}
.hamburger span {
    display: block;
    width: 26px; height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ========================================
   HERO CAROUSEL
======================================== */
.hero-section { position: relative; }
.hero-carousel {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 620px;
    overflow: hidden;
}
.carousel-track {
    display: flex;
    height: 100%;
    transition: transform .8s cubic-bezier(.77,0,.175,1);
}
.carousel-slide {
    min-width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
}
.slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 8s ease;
}
.carousel-slide.active .slide-bg { transform: scale(1.06); }
.slide-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10,10,10,.85) 0%, rgba(10,10,10,.4) 60%, rgba(10,10,10,.7) 100%);
}
.slide-content {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
}
.slide-badge {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    background: rgba(201,168,76,.12);
    border: 1px solid rgba(201,168,76,.3);
    color: var(--gold);
    padding: .4rem 1.1rem;
    border-radius: 50px;
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .6s .3s, transform .6s .3s;
}
.dot {
    width: 6px; height: 6px;
    background: var(--gold);
    border-radius: 50%;
    animation: pulse-dot 1.6s infinite;
}
@keyframes pulse-dot {
    0%,100% { opacity: 1; transform: scale(1); }
    50% { opacity: .4; transform: scale(1.5); }
}
.slide-heading {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 5.5vw, 4.5rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 1.25rem;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .7s .5s, transform .7s .5s;
}
.slide-heading span { color: var(--gold); }
.slide-desc {
    font-size: 1.1rem;
    color: rgba(255,255,255,.8);
    max-width: 540px;
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .7s .7s, transform .7s .7s;
}
.slide-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .7s .9s, transform .7s .9s;
}
.carousel-slide.active .slide-badge,
.carousel-slide.active .slide-heading,
.carousel-slide.active .slide-desc,
.carousel-slide.active .slide-actions {
    opacity: 1;
    transform: translateY(0);
}

/* Carousel Controls */
.carousel-prev, .carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 54px; height: 54px;
    background: rgba(201,168,76,.12);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(201,168,76,.3);
    border-radius: 50%;
    color: var(--gold);
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}
.carousel-prev { left: 1.5rem; }
.carousel-next { right: 1.5rem; }
.carousel-prev:hover, .carousel-next:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--black);
    transform: translateY(-50%) scale(1.08);
}
.carousel-dots {
    position: absolute;
    bottom: 2rem; left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: .5rem;
    z-index: 10;
}
.carousel-dot {
    width: 8px; height: 8px;
    background: rgba(255,255,255,.3);
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}
.carousel-dot.active { background: var(--gold); width: 30px; }

.scroll-indicator {
    position: absolute;
    bottom: 2.5rem; right: 2rem;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .5rem;
    color: rgba(255,255,255,.5);
    font-size: .7rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}
.scroll-line {
    width: 1px; height: 50px;
    background: linear-gradient(to bottom, rgba(201,168,76,.6), transparent);
    animation: scroll-anim 1.6s infinite;
}
@keyframes scroll-anim {
    0% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    51% { transform: scaleY(1); transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ========================================
   STATS BAND
======================================== */
.stats-band {
    background: linear-gradient(135deg, #0d0d0d, #1a1209);
    border-top: 1px solid rgba(201,168,76,.12);
    border-bottom: 1px solid rgba(201,168,76,.12);
    padding: 3.5rem 0;
}
.stats-grid {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}
.stat-item { position: relative; }
.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0; top: 20%;
    height: 60%;
    width: 1px;
    background: rgba(201,168,76,.15);
}
.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
    margin-bottom: .5rem;
}
.stat-suffix { font-size: 2rem; color: var(--gold); }
.stat-label {
    font-size: .85rem;
    color: rgba(255,255,255,.5);
    font-weight: 500;
    letter-spacing: .5px;
}

/* ========================================
   SERVICES SECTION
======================================== */
.services-section {
    padding: 6rem 0;
    background: var(--dark);
}
.services-section .section-header { margin-bottom: 3.5rem; }
.services-grid {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
}
.service-card {
    background: var(--dark-2);
    border: 1px solid rgba(201,168,76,.1);
    border-radius: var(--radius);
    padding: 2.5rem 2rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--rose));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .4s ease;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover {
    transform: translateY(-6px);
    border-color: rgba(201,168,76,.3);
    box-shadow: 0 20px 50px rgba(0,0,0,.5);
}
.service-icon {
    width: 64px; height: 64px;
    background: rgba(201,168,76,.1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
    transition: var(--transition);
}
.service-card:hover .service-icon {
    background: var(--gold);
    color: var(--black);
    transform: rotate(5deg) scale(1.1);
}
.service-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: .75rem;
}
.service-card p {
    color: rgba(255,255,255,.55);
    font-size: .9rem;
    line-height: 1.8;
}
.service-link {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    color: var(--gold);
    font-weight: 600;
    font-size: .85rem;
    margin-top: 1.5rem;
    transition: var(--transition);
}
.service-link:hover { gap: .7rem; color: var(--gold-light); }

/* ========================================
   CTA SECTION
======================================== */
.cta-section {
    padding: 5.5rem 0;
    background: linear-gradient(135deg, #0d0a02 0%, #1a1209 50%, #0d0a02 100%);
    border-top: 1px solid rgba(201,168,76,.15);
    border-bottom: 1px solid rgba(201,168,76,.15);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute;
    top: -40%; left: -10%;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(201,168,76,.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.cta-section::after {
    content: '';
    position: absolute;
    bottom: -40%; right: -5%;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(139,26,74,.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.cta-content {
    position: relative;
    z-index: 1;
    max-width: 760px;
    margin: 0 auto;
    padding: 0 2rem;
}
.cta-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1rem;
    line-height: 1.2;
}
.cta-section h2 span { color: var(--gold); }
.cta-section p {
    color: rgba(255,255,255,.65);
    font-size: 1.05rem;
    margin-bottom: 2.25rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.cta-actions { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }

/* ========================================
   GALLERY SECTION
======================================== */
.gallery-section {
    padding: 6rem 0;
    background: var(--black);
}
.gallery-section .section-header { margin-bottom: 2.5rem; }
.gallery-filter {
    display: flex;
    justify-content: center;
    gap: .75rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
    padding: 0 2rem;
}
.filter-btn {
    padding: .45rem 1.4rem;
    border-radius: 50px;
    border: 1px solid rgba(201,168,76,.25);
    background: transparent;
    color: rgba(255,255,255,.55);
    font-weight: 500;
    font-size: .85rem;
    cursor: pointer;
    transition: var(--transition);
}
.filter-btn.active, .filter-btn:hover {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-color: var(--gold);
    color: var(--black);
    font-weight: 600;
}
.gallery-grid {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}
.gallery-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
    border: 1px solid rgba(201,168,76,.08);
}
.gallery-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .6s ease;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10,10,10,.92) 0%, rgba(10,10,10,.2) 60%, transparent 100%);
    opacity: 0;
    transition: var(--transition);
    display: flex;
    align-items: flex-end;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay-content {
    padding: 1.5rem;
    width: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}
.gallery-overlay-content h4 {
    font-family: 'Playfair Display', serif;
    color: var(--white);
    font-size: 1rem;
    font-weight: 700;
}
.gallery-overlay-content p {
    color: var(--gold);
    font-size: .78rem;
    font-weight: 500;
    letter-spacing: .5px;
}
.gallery-zoom {
    width: 38px; height: 38px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--black);
    font-size: .85rem;
    flex-shrink: 0;
    transition: var(--transition);
}
.gallery-zoom:hover { background: var(--gold-light); transform: scale(1.1); }

/* ========================================
   LIGHTBOX
======================================== */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.95);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(8px);
}
.lightbox.open { display: flex; }
.lightbox-close {
    position: absolute;
    top: 1.5rem; right: 1.5rem;
    width: 48px; height: 48px;
    background: rgba(201,168,76,.15);
    border: 1px solid rgba(201,168,76,.3);
    border-radius: 50%;
    color: var(--gold);
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}
.lightbox-close:hover { background: var(--gold); color: var(--black); }
.lightbox-content { text-align: center; max-width: 90vw; }
.lightbox-content img {
    max-height: 80vh;
    max-width: 90vw;
    border-radius: var(--radius);
    box-shadow: 0 20px 60px rgba(0,0,0,.8);
}
#lightboxTitle {
    color: var(--gold);
    font-size: .9rem;
    margin-top: 1rem;
    font-weight: 500;
    letter-spacing: .5px;
}

/* ========================================
   ABOUT SECTION
======================================== */
.about-section {
    padding: 6rem 0;
    background: var(--dark);
}
.about-grid {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}
.about-image-wrap { position: relative; }
.about-img-main {
    width: 100%;
    border-radius: var(--radius);
    object-fit: cover;
    height: 480px;
    border: 1px solid rgba(201,168,76,.15);
}
.about-badge {
    position: absolute;
    bottom: -1.5rem; right: -1.5rem;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--black);
    padding: 1.5rem 2rem;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: 0 10px 30px rgba(201,168,76,.3);
}
.about-badge-num {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1;
}
.about-badge-lbl { font-size: .75rem; font-weight: 600; opacity: .85; margin-top: .3rem; }
.about-badge-2 {
    position: absolute;
    top: 1.5rem; left: -1.5rem;
    background: var(--dark-3);
    border: 1px solid rgba(201,168,76,.25);
    color: var(--gold);
    padding: .7rem 1.1rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .8rem;
    font-weight: 600;
    box-shadow: 0 6px 20px rgba(0,0,0,.4);
}
.about-content .section-title { text-align: left; }
.about-desc {
    color: rgba(255,255,255,.55);
    margin-bottom: 1.25rem;
    font-size: .95rem;
}
.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .85rem;
    margin-bottom: 2.5rem;
}
.feature-item {
    display: flex;
    align-items: center;
    gap: .65rem;
    font-size: .9rem;
    font-weight: 500;
    color: rgba(255,255,255,.8);
}
.check {
    width: 22px; height: 22px;
    background: rgba(201,168,76,.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: .65rem;
    flex-shrink: 0;
    border: 1px solid rgba(201,168,76,.25);
}

/* ========================================
   TESTIMONIALS SECTION
======================================== */
.testimonials-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #0a0a0a, #130d05, #0a0a0a);
}
.testimonials-section .section-header { margin-bottom: 3.5rem; }
.testimonials-grid {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
}
.testimonial-card {
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(201,168,76,.12);
    border-radius: var(--radius);
    padding: 2.25rem;
    transition: var(--transition);
    position: relative;
}
.testimonial-card::before {
    content: '\201C';
    font-family: 'Playfair Display', serif;
    font-size: 5rem;
    color: rgba(201,168,76,.1);
    position: absolute;
    top: 1rem; right: 1.5rem;
    line-height: 1;
}
.testimonial-card:hover {
    background: rgba(201,168,76,.04);
    border-color: rgba(201,168,76,.25);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,.5);
}
.stars {
    color: var(--gold);
    font-size: .85rem;
    margin-bottom: 1.1rem;
    letter-spacing: 1px;
}
.testimonial-card p {
    color: rgba(255,255,255,.7);
    font-size: .92rem;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 1.75rem;
}
.testimonial-author { display: flex; align-items: center; gap: 1rem; }
.author-avatar {
    width: 50px; height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--gold);
    flex-shrink: 0;
}
.author-info h5 {
    color: var(--white);
    font-size: .95rem;
    font-weight: 700;
}
.author-info span { color: rgba(255,255,255,.4); font-size: .78rem; }

/* ========================================
   CONTACT SECTION
======================================== */
.contact-section {
    padding: 6rem 0;
    background: var(--dark);
}
.contact-wrapper {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 4.5rem;
    align-items: start;
}
.contact-info .section-title { text-align: left; }
.contact-details { margin: 2rem 0; display: flex; flex-direction: column; gap: 1.1rem; }
.contact-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}
.contact-icon {
    width: 44px; height: 44px;
    background: rgba(201,168,76,.1);
    border: 1px solid rgba(201,168,76,.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: .95rem;
    flex-shrink: 0;
}
.contact-detail-item strong {
    display: block;
    color: var(--white);
    font-size: .9rem;
    font-weight: 600;
    margin-bottom: .15rem;
}
.contact-detail-item span { color: rgba(255,255,255,.5); font-size: .85rem; }
.contact-social { display: flex; gap: .65rem; margin-top: .5rem; }

/* Form */
.contact-form-wrap {
    background: var(--dark-2);
    border: 1px solid rgba(201,168,76,.12);
    border-radius: 20px;
    padding: 2.75rem;
}
.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}
.form-group {
    margin-bottom: 1.25rem;
}
.form-group label {
    display: block;
    color: rgba(255,255,255,.7);
    font-size: .82rem;
    font-weight: 600;
    letter-spacing: .5px;
    margin-bottom: .5rem;
    text-transform: uppercase;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(201,168,76,.15);
    border-radius: 10px;
    padding: .8rem 1.1rem;
    color: var(--white);
    font-size: .92rem;
    font-family: 'Inter', sans-serif;
    outline: none;
    transition: var(--transition);
    appearance: none;
    -webkit-appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,.25); }
.form-group select { cursor: pointer; color: rgba(255,255,255,.7); }
.form-group select option { background: #1a1a1a; color: var(--white); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    background: rgba(201,168,76,.05);
    box-shadow: 0 0 0 3px rgba(201,168,76,.1);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-note {
    text-align: center;
    color: rgba(255,255,255,.3);
    font-size: .78rem;
    margin-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .4rem;
}
.form-note i { color: var(--gold); }

/* ========================================
   FOOTER
======================================== */
.footer {
    background: #050505;
    border-top: 1px solid rgba(201,168,76,.12);
    color: rgba(255,255,255,.6);
}
.footer-top {
    max-width: 1280px;
    margin: 0 auto;
    padding: 4rem 2rem 3.5rem;
    display: grid;
    grid-template-columns: 1.7fr 1fr 1fr 1.4fr;
    gap: 3rem;
    border-bottom: 1px solid rgba(255,255,255,.05);
}
.footer-brand-link { margin-bottom: 1rem; display: inline-flex; }
.footer-brand-logo { height: 150px; width: auto; object-fit: contain; display: block; }
.footer-brand p {
    font-size: .88rem;
    line-height: 1.85;
    margin: 1rem 0 1.5rem;
    color: rgba(255,255,255,.4);
}
.social-links { display: flex; gap: .6rem; flex-wrap: wrap; }
.social-link {
    width: 38px; height: 38px;
    border-radius: 10px;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(201,168,76,.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,.5);
    font-size: .88rem;
    transition: var(--transition);
}
.social-link:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--black);
    transform: translateY(-3px);
}
.footer-heading {
    color: var(--white);
    font-family: 'Playfair Display', serif;
    font-size: .95rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: .75rem;
}
.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 28px; height: 1.5px;
    background: var(--gold);
    border-radius: 2px;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: .65rem; }
.footer-links a {
    color: rgba(255,255,255,.45);
    font-size: .85rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: .4rem;
}
.footer-links a:hover { color: var(--gold); padding-left: .4rem; }
.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: .75rem;
    margin-bottom: 1rem;
    font-size: .85rem;
    color: rgba(255,255,255,.45);
}
.footer-contact-icon {
    width: 32px; height: 32px;
    background: rgba(201,168,76,.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: .8rem;
    flex-shrink: 0;
}
.newsletter-form {
    display: flex;
    gap: .5rem;
    margin-top: .75rem;
}
.newsletter-form input {
    flex: 1;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(201,168,76,.15);
    border-radius: 8px;
    padding: .65rem 1rem;
    color: var(--white);
    font-size: .85rem;
    outline: none;
    transition: var(--transition);
    font-family: 'Inter', sans-serif;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,.25); }
.newsletter-form input:focus { border-color: var(--gold); }
.newsletter-form button {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--black);
    border: none;
    border-radius: 8px;
    padding: .65rem 1rem;
    cursor: pointer;
    font-size: .85rem;
    transition: var(--transition);
    flex-shrink: 0;
}
.newsletter-form button:hover { background: var(--gold-light); }
.footer-bottom {
    max-width: 1280px;
    margin: 0 auto;
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}
.footer-bottom p { font-size: .82rem; color: rgba(255,255,255,.3); }
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a {
    font-size: .8rem;
    color: rgba(255,255,255,.3);
    transition: var(--transition);
}
.footer-bottom-links a:hover { color: var(--gold); }

/* ========================================
   WHATSAPP BUTTON
======================================== */
.whatsapp-float {
    position: fixed;
    bottom: 5.5rem; right: 2rem;
    width: 54px; height: 54px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    z-index: 998;
    box-shadow: 0 4px 20px rgba(37,211,102,.4);
    transition: var(--transition);
    animation: pulse-wa 2.5s infinite;
}
.whatsapp-float:hover {
    background: #20ba59;
    transform: scale(1.1);
    animation: none;
    color: var(--white);
}
@keyframes pulse-wa {
    0%,100% { box-shadow: 0 4px 20px rgba(37,211,102,.4); }
    50% { box-shadow: 0 4px 35px rgba(37,211,102,.7); }
}

/* ========================================
   SCROLL TO TOP
======================================== */
.scroll-top {
    position: fixed;
    bottom: 2rem; right: 2rem;
    width: 46px; height: 46px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--black);
    border: none;
    border-radius: 12px;
    font-size: .9rem;
    cursor: pointer;
    z-index: 997;
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(201,168,76,.35);
}
.scroll-top.visible { opacity: 1; transform: translateY(0); }
.scroll-top:hover { background: var(--gold-light); transform: translateY(-3px); }

/* ========================================
   SCROLL REVEAL
======================================== */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity .8s ease, transform .8s ease;
}
.reveal.revealed { opacity: 1; transform: translateY(0); }

/* ========================================
   TOAST
======================================== */
.toast {
    position: fixed;
    bottom: 5rem; right: 2rem;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--black);
    padding: .9rem 1.75rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: .9rem;
    box-shadow: 0 6px 25px rgba(0,0,0,.4);
    z-index: 9999;
    opacity: 0;
    transform: translateY(10px);
    transition: all .35s ease;
}
.toast.show { opacity: 1; transform: translateY(0); }

/* ========================================
   NAV BACKDROP (mobile drawer overlay)
======================================== */
.nav-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.6);
    backdrop-filter: blur(3px);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: opacity .38s ease, visibility .38s ease;
}
.nav-backdrop.open { /* opacity: 1; */ visibility: visible; }

/* ========================================
   RESPONSIVE
======================================== */
@media (max-width: 1100px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-top { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .about-grid { gap: 3rem; }
    .contact-wrapper { grid-template-columns: 1fr; gap: 3rem; }
    .contact-info .section-title { text-align: center; }
    .contact-info .section-badge { display: block; text-align: center; }
    .contact-details { max-width: 460px; margin: 2rem auto; }
    .contact-social { justify-content: center; }
}
@media (max-width: 768px) {
    .hamburger { display: flex; }
    /* Right-side drawer */
    .nav-menu {
        position: fixed;
        top: 0; right: 0; bottom: 0;
        width: min(280px, 85vw);
        background: #0a0a0a;
        border-left: 1px solid rgba(201,168,76,.18);
        flex-direction: column;
        padding: 6rem 1.5rem 2rem;
        gap: 0;
        transform: translateX(110%);
        opacity: 0;
        transition: transform .4s cubic-bezier(.77,0,.175,1), opacity .38s ease;
        pointer-events: none;
        list-style: none;
        z-index: 999;
        box-shadow: -16px 0 50px rgba(0,0,0,.7);
        overflow-y: auto;
    }
    .nav-menu.open { transform: translateX(0); opacity: 1; pointer-events: all; }
    .nav-link-item {
        color: rgba(255,255,255,.8) !important;
        width: 100%; display: block;
        padding: .9rem 1rem !important;
        border-radius: 10px;
        border-bottom: 1px solid rgba(255,255,255,.04);
        font-size: .95rem !important;
        margin-bottom: .15rem;
    }
    .nav-link-item:hover,
    .nav-link-item.active { background: rgba(201,168,76,.08); color: var(--gold) !important; }
    .nav-cta {
        text-align: center !important;
        color: var(--black) !important;
        margin-top: 1rem;
        border-bottom: none !important;
        border-radius: 50px !important;
    }
    .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .about-badge { bottom: 1rem; right: 1rem; }
    .about-badge-2 { display: none; }
    .services-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr; gap: 2rem; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .stat-item::after { display: none; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .contact-form .form-row { grid-template-columns: 1fr; }
    .contact-form-wrap { padding: 1.75rem 1.25rem; }
    /* Section padding reduction */
    .services-section,
    .gallery-section,
    .about-section,
    .testimonials-section,
    .contact-section { padding: 4rem 0; }
    .cta-section { padding: 3.5rem 0; }
    .stats-band { padding: 2.5rem 0; }
    /* Logo & nav */
    .brand-logo-img { height: 62px; }
    .footer-brand-logo { height: 100px; }
    .nav-container { padding: 0 1rem; }
    /* Carousel arrows smaller + tighter */
    .carousel-prev,
    .carousel-next { width: 42px; height: 42px; font-size: .9rem; }
    .carousel-prev { left: .5rem; }
    .carousel-next { right: .5rem; }
    .scroll-indicator { display: none; }
    /* Hero text */
    .slide-desc { font-size: 1rem; max-width: 100%; }
}
@media (max-width: 480px) {
    .slide-actions { flex-direction: column; align-items: flex-start; }
    .cta-actions { flex-direction: column; align-items: center; }
    .stats-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
    .section-title { font-size: 1.8rem; }
    .about-features { grid-template-columns: 1fr; }
    /* Further padding reduction on small phones */
    .services-section,
    .gallery-section,
    .about-section,
    .testimonials-section,
    .contact-section { padding: 2.75rem 0; }
    .cta-section,
    .stats-band { padding: 2rem 0; }
    /* Logos */
    .brand-logo-img { height: 50px; }
    .footer-brand-logo { height: 80px; }
    /* Hide carousel arrows to free up slide real estate */
    .carousel-prev,
    .carousel-next { display: none; }
    /* Hero */
    .hero-carousel { min-height: 520px; }
    .slide-content { padding: 0 1.25rem; }
    .slide-heading { font-size: clamp(1.8rem, 8vw, 2.5rem); }
    /* Footer bottom links */
    .footer-bottom-links { gap: 1rem; flex-wrap: wrap; justify-content: center; }
    /* Gallery filter */
    .gallery-filter { gap: .5rem; padding: 0 1rem; }
    .filter-btn { padding: .4rem 1rem; font-size: .8rem; }
    /* Section header padding */
    .section-header { padding: 0 1rem; }
    /* Stats grid uniform */
    .stat-number { font-size: 2.2rem; }
}

/* ========================================================
   ABOUT PAGE STYLES
======================================================== */

/* ---- Shared container ---- */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ---- Gold divider ---- */
.gold-divider {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), transparent);
    margin: 1.25rem 0 1.75rem;
    border-radius: 2px;
}

/* ========================================
   PAGE HERO
======================================== */
.page-hero {
    position: relative;
    height: 55vh;
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}
.page-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.06);
    transition: transform 8s ease;
}
.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10,10,10,.75) 0%, rgba(10,10,10,.65) 50%, rgba(10,10,10,.9) 100%);
}
.page-hero-content {
    position: relative;
    z-index: 2;
    padding: 0 2rem;
}
.page-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    margin: .75rem 0 1rem;
}
.page-hero-desc {
    font-size: 1.05rem;
    color: rgba(255,255,255,.7);
    max-width: 580px;
    margin: 0 auto 1.5rem;
}
.breadcrumb-nav {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    font-size: .82rem;
    color: rgba(255,255,255,.5);
}
.breadcrumb-nav a {
    color: var(--gold);
    transition: var(--transition);
}
.breadcrumb-nav a:hover { color: var(--gold-light); }
.breadcrumb-nav i { font-size: .65rem; color: rgba(255,255,255,.3); }
.breadcrumb-nav span { color: rgba(255,255,255,.6); }

/* ========================================
   INTRO SECTION
======================================== */
.about-intro-section {
    padding: 6rem 0;
    background: var(--dark);
}
.about-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

/* Visual side */
.about-intro-visual { position: relative; }
.intro-img-frame {
    position: relative;
    border-radius: var(--radius);
    overflow: visible;
}
.intro-img-main {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: var(--radius);
    border: 1px solid rgba(201,168,76,.15);
    display: block;
}
.intro-img-accent {
    position: absolute;
    inset: -12px;
    border: 1px solid rgba(201,168,76,.2);
    border-radius: calc(var(--radius) + 6px);
    pointer-events: none;
    z-index: -1;
}
.intro-float-card {
    position: absolute;
    bottom: -1.5rem;
    right: -1.5rem;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--black);
    padding: 1.1rem 1.5rem;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    gap: .85rem;
    box-shadow: 0 12px 35px rgba(201,168,76,.35);
    min-width: 190px;
}
.float-card-icon {
    width: 40px; height: 40px;
    background: rgba(0,0,0,.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}
.intro-float-card strong {
    display: block;
    font-size: .95rem;
    font-weight: 700;
    line-height: 1.2;
}
.intro-float-card span {
    font-size: .75rem;
    opacity: .8;
}
.intro-float-card-2 {
    position: absolute;
    top: 2rem;
    left: -2rem;
    background: var(--dark-3);
    border: 1px solid rgba(201,168,76,.25);
    border-radius: var(--radius);
    padding: 1.25rem 1.5rem;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0,0,0,.5);
}
.float-num {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--gold);
    display: block;
    line-height: 1;
}
.float-num sup { font-size: 1rem; }
.float-lbl {
    font-size: .72rem;
    color: rgba(255,255,255,.5);
    letter-spacing: .5px;
    display: block;
    margin-top: .3rem;
}

/* Text side */
.intro-desc {
    color: rgba(255,255,255,.6);
    font-size: .95rem;
    line-height: 1.85;
    margin-bottom: 1.1rem;
}
.intro-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .75rem;
    margin: 1.75rem 0 2.25rem;
}
.intro-highlight-item {
    display: flex;
    align-items: center;
    gap: .6rem;
    font-size: .88rem;
    color: rgba(255,255,255,.75);
    font-weight: 500;
}
.intro-highlight-item i { color: var(--gold); font-size: .85rem; }

/* ========================================
   STATS STRIP
======================================== */
.about-stats-strip {
    padding: 4rem 0;
    background: linear-gradient(135deg, #0d0a02, #0f0f0f, #0d0a02);
    border-top: 1px solid rgba(201,168,76,.1);
    border-bottom: 1px solid rgba(201,168,76,.1);
}
.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    text-align: center;
}
.about-stat-item {
    padding: 1.5rem 1rem;
    border: 1px solid rgba(201,168,76,.1);
    border-radius: var(--radius);
    background: rgba(201,168,76,.03);
    transition: var(--transition);
}
.about-stat-item:hover {
    border-color: rgba(201,168,76,.3);
    background: rgba(201,168,76,.07);
    transform: translateY(-4px);
}
.about-stat-icon {
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: .75rem;
    opacity: .75;
}
.about-stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
    margin-bottom: .4rem;
}
.about-stat-lbl {
    font-size: .8rem;
    color: rgba(255,255,255,.45);
    font-weight: 500;
    letter-spacing: .3px;
}

/* ========================================
   VISION & MISSION
======================================== */
.vm-section {
    padding: 6rem 0;
    background: var(--black);
}
.vm-section .section-header { margin-bottom: 3.5rem; }
.vm-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
}
.vm-card {
    background: var(--dark-2);
    border: 1px solid rgba(201,168,76,.1);
    border-radius: var(--radius);
    padding: 2.75rem 2.25rem;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}
.vm-card:hover {
    transform: translateY(-6px);
    border-color: rgba(201,168,76,.28);
    box-shadow: 0 20px 50px rgba(0,0,0,.5);
}
.vm-card-glow {
    position: absolute;
    top: -60px; right: -60px;
    width: 160px; height: 160px;
    border-radius: 50%;
    filter: blur(60px);
    opacity: .18;
    pointer-events: none;
}
.vm-card-glow--gold { background: var(--gold); }
.vm-card-glow--rose { background: var(--rose); }
.vm-icon-wrap {
    width: 66px; height: 66px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    margin-bottom: 1.5rem;
    transition: var(--transition);
}
.vm-icon-wrap--gold { background: rgba(201,168,76,.12); color: var(--gold); border: 1px solid rgba(201,168,76,.2); }
.vm-icon-wrap--rose { background: rgba(139,26,74,.12); color: #c4537e; border: 1px solid rgba(139,26,74,.2); }
.vm-card:hover .vm-icon-wrap { transform: scale(1.1) rotate(5deg); }
.vm-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
}
.vm-card p {
    color: rgba(255,255,255,.55);
    font-size: .9rem;
    line-height: 1.85;
    margin-bottom: .85rem;
}
.vm-quote {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: var(--gold);
    font-size: .92rem;
    margin-top: 1.5rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(201,168,76,.15);
}

/* ========================================
   WHY CHOOSE US
======================================== */
.why-section {
    padding: 6rem 0;
    background: var(--dark);
}
.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: stretch;
}

/* Mosaic visual */
.why-visual { position: relative; display: flex; }
.why-mosaic {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    border-radius: var(--radius);
    overflow: hidden;
}
.mosaic-img--large {
    grid-column: 1;
    grid-row: 1 / 3;
    width: 100%;
    height: 360px;
    object-fit: cover;
    border-radius: var(--radius);
}
.mosaic-right {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.mosaic-right img {
    width: 100%;
    height: 172px;
    object-fit: cover;
    border-radius: var(--radius);
    flex: 1;
}
.why-single-img {
    border-radius: var(--radius);
    overflow: hidden;
    width: 100%;
    flex: 1;
}
.why-single-img img {
    width: 100%;
    height: 100%;
    min-height: 360px;
    object-fit: cover;
    border-radius: var(--radius);
    display: block;
}
@media (max-width: 991px) {
    .why-single-img img { min-height: 300px; }
}
@media (max-width: 575px) {
    .why-single-img img { min-height: 220px; }
}
.why-badge {
    position: absolute;
    bottom: -1.5rem;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--black);
    padding: .85rem 1.75rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: .65rem;
    font-weight: 700;
    font-size: .85rem;
    white-space: nowrap;
    box-shadow: 0 8px 25px rgba(201,168,76,.35);
}

/* Why list */
.why-content .section-title { text-align: left; }
.why-list { margin-top: 2rem; display: flex; flex-direction: column; gap: 1.5rem; }
.why-item {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    padding: 1.25rem;
    background: rgba(201,168,76,.03);
    border: 1px solid rgba(201,168,76,.08);
    border-radius: 12px;
    transition: var(--transition);
}
.why-item:hover {
    background: rgba(201,168,76,.07);
    border-color: rgba(201,168,76,.2);
    transform: translateX(4px);
}
.why-item-icon {
    width: 46px; height: 46px;
    background: rgba(201,168,76,.12);
    border: 1px solid rgba(201,168,76,.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1rem;
    flex-shrink: 0;
    transition: var(--transition);
}
.why-item:hover .why-item-icon {
    background: var(--gold);
    color: var(--black);
}
.why-item-body h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: .35rem;
}
.why-item-body p {
    color: rgba(255,255,255,.5);
    font-size: .87rem;
    line-height: 1.75;
}

/* ========================================
   TIMELINE
======================================== */
.timeline-section {
    padding: 6rem 0;
    background: var(--black);
}
.timeline-section .section-header { margin-bottom: 4rem; }
.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}
.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0; bottom: 0;
    width: 1px;
    background: linear-gradient(to bottom, transparent, rgba(201,168,76,.35) 10%, rgba(201,168,76,.35) 90%, transparent);
    transform: translateX(-50%);
}
.timeline-item {
    display: flex;
    align-items: flex-start;
    gap: 2.5rem;
    margin-bottom: 3rem;
    position: relative;
}
.timeline-item--left { flex-direction: row; padding-right: calc(50% + 2.5rem); }
.timeline-item--right { flex-direction: row-reverse; padding-left: calc(50% + 2.5rem); }
.timeline-dot {
    position: absolute;
    left: 50%;
    top: 1.25rem;
    transform: translateX(-50%);
    width: 44px; height: 44px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--black);
    font-size: .85rem;
    z-index: 2;
    box-shadow: 0 4px 18px rgba(201,168,76,.4);
    flex-shrink: 0;
}
.timeline-card {
    background: var(--dark-2);
    border: 1px solid rgba(201,168,76,.12);
    border-radius: var(--radius);
    padding: 1.75rem;
    transition: var(--transition);
    flex: 1;
}
.timeline-card:hover {
    border-color: rgba(201,168,76,.3);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0,0,0,.5);
}
.timeline-year {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--gold);
    display: block;
    margin-bottom: .4rem;
    line-height: 1;
}
.timeline-card h4 {
    font-family: 'Playfair Display', serif;
    color: var(--white);
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: .6rem;
}
.timeline-card p {
    color: rgba(255,255,255,.5);
    font-size: .87rem;
    line-height: 1.8;
}

/* ========================================
   PREMIUM SERVICES
======================================== */
.premium-services-section {
    padding: 6rem 0;
    background: var(--dark);
}
.premium-services-section .section-header { margin-bottom: 3.5rem; }
.premium-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
}
.premium-card {
    background: var(--dark-2);
    border: 1px solid rgba(201,168,76,.1);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
}
.premium-card:hover {
    transform: translateY(-6px);
    border-color: rgba(201,168,76,.28);
    box-shadow: 0 20px 50px rgba(0,0,0,.5);
}
.premium-card-img {
    position: relative;
    height: 220px;
    overflow: hidden;
}
.premium-card-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .6s ease;
}
.premium-card:hover .premium-card-img img { transform: scale(1.08); }
.premium-card-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(17,17,17,.7) 0%, transparent 60%);
}
.premium-card-badge {
    position: absolute;
    bottom: 1rem; right: 1rem;
    z-index: 2;
    width: 42px; height: 42px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--black);
    font-size: .95rem;
}
.premium-card-body { padding: 2rem; }
.premium-card-body h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: .75rem;
}
.premium-card-body p {
    color: rgba(255,255,255,.5);
    font-size: .87rem;
    line-height: 1.8;
    margin-bottom: 1.25rem;
}
.premium-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: .5rem;
}
.premium-list li {
    display: flex;
    align-items: center;
    gap: .6rem;
    color: rgba(255,255,255,.6);
    font-size: .83rem;
}
.premium-list li i { color: var(--gold); font-size: .75rem; }

/* ========================================
   TEAM SECTION
======================================== */
.team-section {
    padding: 6rem 0;
    background: var(--black);
}
.team-section .section-header { margin-bottom: 3.5rem; }
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.team-card {
    background: var(--dark-2);
    border: 1px solid rgba(201,168,76,.1);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
}
.team-card:hover {
    transform: translateY(-6px);
    border-color: rgba(201,168,76,.28);
    box-shadow: 0 20px 50px rgba(0,0,0,.5);
}
.team-img-wrap {
    position: relative;
    height: 280px;
    overflow: hidden;
}
.team-img-wrap img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: top;
    transition: transform .6s ease;
}
.team-card:hover .team-img-wrap img { transform: scale(1.06); }
.team-social {
    position: absolute;
    inset: 0;
    background: rgba(10,10,10,.7);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .75rem;
    opacity: 0;
    transition: var(--transition);
}
.team-card:hover .team-social { opacity: 1; }
.team-social a {
    width: 40px; height: 40px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--black);
    font-size: .85rem;
    transition: var(--transition);
}
.team-social a:hover { background: var(--gold-light); transform: scale(1.1); }
.team-info {
    padding: 1.5rem;
}
.team-info h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: .25rem;
}
.team-info span {
    color: var(--gold);
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .5px;
    text-transform: uppercase;
    display: block;
    margin-bottom: .75rem;
}
.team-info p {
    color: rgba(255,255,255,.45);
    font-size: .85rem;
    line-height: 1.75;
}

/* ========================================
   AWARDS SECTION
======================================== */
.awards-section {
    padding: 5rem 0;
    background: var(--dark);
    border-top: 1px solid rgba(201,168,76,.08);
    border-bottom: 1px solid rgba(201,168,76,.08);
}
.awards-section .section-header { margin-bottom: 3rem; }
.awards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}
.award-item {
    display: flex;
    gap: 1.1rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: rgba(201,168,76,.04);
    border: 1px solid rgba(201,168,76,.1);
    border-radius: var(--radius);
    transition: var(--transition);
}
.award-item:hover {
    background: rgba(201,168,76,.08);
    border-color: rgba(201,168,76,.25);
    transform: translateY(-3px);
}
.award-icon {
    width: 46px; height: 46px;
    background: rgba(201,168,76,.12);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.1rem;
    flex-shrink: 0;
}
.award-body h4 {
    color: var(--white);
    font-size: .92rem;
    font-weight: 700;
    margin-bottom: .3rem;
    line-height: 1.35;
}
.award-body span {
    color: rgba(255,255,255,.4);
    font-size: .78rem;
}

/* ========================================
   ABOUT PAGE CTA
======================================== */
.about-cta-section {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #0d0a02 0%, #0a0a0a 50%, #0d0a02 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.about-cta-glow {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 600px; height: 300px;
    background: radial-gradient(ellipse, rgba(201,168,76,.1) 0%, transparent 70%);
    pointer-events: none;
}
.about-cta-content {
    position: relative;
    z-index: 1;
    max-width: 780px;
    margin: 0 auto;
}
.about-cta-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800;
    color: var(--white);
    margin: .75rem 0 1.1rem;
    line-height: 1.2;
}
.about-cta-content p {
    color: rgba(255,255,255,.55);
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto 2.25rem;
    line-height: 1.85;
}
.about-cta-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}
.about-cta-trust {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}
.about-cta-trust span {
    display: flex;
    align-items: center;
    gap: .5rem;
    color: rgba(255,255,255,.4);
    font-size: .82rem;
    font-weight: 500;
}
.about-cta-trust i { color: var(--gold); font-size: .75rem; }

/* ========================================
   ABOUT PAGE RESPONSIVE
======================================== */
@media (max-width: 1100px) {
    .about-intro-grid { gap: 3rem; }
    .about-stats-grid { grid-template-columns: repeat(3, 1fr); gap: 1rem; }
    .vm-grid { grid-template-columns: 1fr; max-width: 600px; margin: 0 auto; }
    .why-grid { grid-template-columns: 1fr; gap: 3rem; }
    .why-mosaic { max-width: 500px; margin: 0 auto; }
    .why-content .section-title { text-align: center; }
    .why-content .section-badge { display: block; text-align: center; }
    .why-content .gold-divider { margin: 1.25rem auto 1.75rem; }
    .premium-grid { grid-template-columns: 1fr 1fr; }
    .team-grid { grid-template-columns: 1fr 1fr; }
    .awards-grid { grid-template-columns: 1fr 1fr; }
    .timeline-item--left { padding-right: calc(50% + 1.5rem); }
    .timeline-item--right { padding-left: calc(50% + 1.5rem); }
    /* Section padding */
    .about-intro-section, .vm-section, .why-section,
    .premium-services-section { padding: 5rem 0; }
    .about-cta-section { padding: 5rem 1.5rem; }
}
@media (max-width: 768px) {
    .about-intro-grid { grid-template-columns: 1fr; }
    .intro-float-card-2 { display: none; }
    .intro-float-card { bottom: .75rem; right: .75rem; min-width: 155px; padding: .85rem 1rem; gap: .6rem; }
    .about-stats-grid { grid-template-columns: repeat(2, 1fr); }
    .vm-grid { grid-template-columns: 1fr; }
    .vm-card { padding: 1.75rem 1.5rem; }
    .premium-grid { grid-template-columns: 1fr; }
    .team-grid { grid-template-columns: 1fr; }
    .awards-grid { grid-template-columns: 1fr; }
    .timeline::before { left: 22px; }
    .timeline-item { flex-direction: column; padding: 0 0 0 4.5rem; }
    .timeline-item--left { flex-direction: column; padding: 0 0 0 4.5rem; }
    .timeline-item--right { flex-direction: column; padding: 0 0 0 4.5rem; }
    .timeline-dot { left: 0; transform: none; }
    .why-mosaic { grid-template-columns: 1fr; }
    .mosaic-img--large { height: 220px; grid-row: auto; }
    .mosaic-right { flex-direction: row; }
    .mosaic-right img { height: 120px; }
    .intro-highlights { grid-template-columns: 1fr; }
    .about-cta-trust { gap: 1.25rem; flex-direction: column; align-items: center; }
    /* Section padding */
    .about-intro-section, .vm-section, .why-section,
    .premium-services-section { padding: 4rem 0; }
    .about-cta-section { padding: 4rem 1.5rem; }
    /* Intro image */
    .intro-img-main { height: 320px; }
    /* Page hero */
    .page-hero-desc { font-size: .95rem; }
}
@media (max-width: 480px) {
    .page-hero { height: 60vh; }
    .about-stats-grid { grid-template-columns: 1fr 1fr; }
    .about-cta-actions { flex-direction: column; align-items: center; }
    /* Section padding */
    .about-intro-section, .vm-section, .why-section,
    .premium-services-section { padding: 2.75rem 0; }
    .about-cta-section { padding: 2.75rem 1rem; }
    /* Container tighter */
    .container { padding: 0 1rem; }
    /* Intro image */
    .intro-img-main { height: 220px; }
    /* Float card hidden on smallest screens */
    .intro-float-card { display: none; }
    /* VM card */
    .vm-card { padding: 1.5rem 1.25rem; }
    /* Why mosaic — hide side column to avoid cramping */
    .mosaic-right { display: none; }
    .mosaic-img--large { height: 200px; width: 100%; }
    /* CTA buttons full width */
    .about-cta-actions { gap: .75rem; }
    .about-cta-actions .btn-gold,
    .about-cta-actions .btn-outline-gold { width: 100%; justify-content: center; }
    /* Page hero desc */
    .page-hero-desc { font-size: .88rem; padding: 0 .5rem; }
}

/* ========================================================
   SERVICES PAGE STYLES
======================================================== */

/* Intro Strip */
.srv-intro-strip {
    background: linear-gradient(135deg, #0d0a02, #0f0f0f);
    border-bottom: 1px solid rgba(201,168,76,.12);
    padding: 2.5rem 0;
}
.srv-intro-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}
.srv-intro-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.1rem 1.25rem;
    border: 1px solid rgba(201,168,76,.1);
    border-radius: var(--radius);
    background: rgba(201,168,76,.03);
    transition: var(--transition);
}
.srv-intro-item:hover {
    border-color: rgba(201,168,76,.28);
    background: rgba(201,168,76,.07);
    transform: translateY(-2px);
}
.srv-intro-icon {
    width: 44px; height: 44px;
    background: rgba(201,168,76,.12);
    border: 1px solid rgba(201,168,76,.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1rem;
    flex-shrink: 0;
}
.srv-intro-item strong {
    display: block;
    color: var(--white);
    font-size: .9rem;
    font-weight: 700;
    margin-bottom: .15rem;
}
.srv-intro-item span { color: rgba(255,255,255,.45); font-size: .78rem; }

/* Feature Sections */
.srv-feature-section { padding: 6rem 0; }
.srv-feature--dark  { background: var(--dark); }
.srv-feature--black { background: var(--black); }

.srv-feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}
.srv-feature-grid--reverse { direction: rtl; }
.srv-feature-grid--reverse > * { direction: ltr; }

.srv-feature-visual { position: relative; }
.srv-img-frame {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid rgba(201,168,76,.15);
}
.srv-img-frame img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
    transition: transform .6s ease;
}
.srv-img-frame:hover img { transform: scale(1.04); }
.srv-img-tag {
    position: absolute;
    top: 1.25rem; left: 1.25rem;
    background: rgba(10,10,10,.85);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(201,168,76,.3);
    color: var(--gold);
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .5px;
    padding: .4rem 1rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: .45rem;
}
.srv-feature-badge {
    position: absolute;
    bottom: -1.5rem; right: -1.5rem;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--black);
    padding: 1.25rem 1.75rem;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: 0 10px 30px rgba(201,168,76,.35);
}
.srv-badge-num {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
    display: block;
}
.srv-badge-lbl {
    font-size: .72rem;
    font-weight: 600;
    opacity: .85;
    display: block;
    margin-top: .2rem;
}
.srv-feature-content .section-title { text-align: left; }
.srv-desc {
    color: rgba(255,255,255,.55);
    font-size: .95rem;
    line-height: 1.85;
    margin-bottom: 1.5rem;
}
.srv-feature-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .65rem;
    margin-bottom: 2rem;
}
.srv-feature-item {
    display: flex;
    align-items: center;
    gap: .6rem;
    color: rgba(255,255,255,.75);
    font-size: .87rem;
    font-weight: 500;
}
.srv-feature-item i { color: var(--gold); font-size: .8rem; flex-shrink: 0; }
.srv-feature-actions { display: flex; gap: .85rem; flex-wrap: wrap; align-items: center; }

/* All Services Cards */
.all-services-section {
    padding: 6rem 0;
    background: var(--dark);
}
.all-services-section .section-header { margin-bottom: 3.5rem; }
.all-srv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.all-srv-card {
    background: var(--dark-2);
    border: 1px solid rgba(201,168,76,.1);
    border-radius: var(--radius);
    padding: 2.25rem 2rem;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}
.all-srv-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--gold-dark));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .4s ease;
}
.all-srv-card:hover::after { transform: scaleX(1); }
.all-srv-card:hover {
    transform: translateY(-7px);
    border-color: rgba(201,168,76,.3);
    box-shadow: 0 20px 50px rgba(0,0,0,.55);
}
.all-srv-icon-wrap {
    width: 62px; height: 62px;
    background: rgba(201,168,76,.1);
    border: 1px solid rgba(201,168,76,.2);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.55rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
    transition: var(--transition);
}
.all-srv-card:hover .all-srv-icon-wrap {
    background: var(--gold);
    color: var(--black);
    transform: scale(1.1) rotate(5deg);
    border-color: var(--gold);
}
.all-srv-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: .65rem;
}
.all-srv-card p {
    color: rgba(255,255,255,.5);
    font-size: .87rem;
    line-height: 1.8;
    flex: 1;
    margin-bottom: 1.5rem;
}
.all-srv-cta {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    color: var(--gold);
    font-size: .85rem;
    font-weight: 600;
    transition: var(--transition);
    margin-top: auto;
}
.all-srv-cta i { font-size: .75rem; transition: var(--transition); }
.all-srv-card:hover .all-srv-cta { color: var(--gold-light); }
.all-srv-card:hover .all-srv-cta i { transform: translateX(4px); }

/* Process Section */
.process-section {
    padding: 6rem 0;
    background: var(--black);
    border-top: 1px solid rgba(201,168,76,.08);
}
.process-section .section-header { margin-bottom: 4rem; }
.process-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
    align-items: center;
}
.process-step {
    background: var(--dark-2);
    border: 1px solid rgba(201,168,76,.1);
    border-radius: var(--radius);
    padding: 2.25rem 1.75rem;
    text-align: center;
    position: relative;
    transition: var(--transition);
}
.process-step:hover {
    border-color: rgba(201,168,76,.3);
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(0,0,0,.5);
}
.process-num {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 800;
    color: rgba(201,168,76,.12);
    line-height: 1;
    position: absolute;
    top: 1rem; right: 1.25rem;
}
.process-icon {
    width: 60px; height: 60px;
    background: rgba(201,168,76,.1);
    border: 1px solid rgba(201,168,76,.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--gold);
    margin: 0 auto 1.25rem;
    transition: var(--transition);
}
.process-step:hover .process-icon { background: var(--gold); color: var(--black); }
.process-step h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: .6rem;
}
.process-step p { color: rgba(255,255,255,.45); font-size: .82rem; line-height: 1.75; }
.process-connector {
    color: rgba(201,168,76,.3);
    font-size: 1.1rem;
    padding: 0 .75rem;
    text-align: center;
}

/* Services Responsive */
@media (max-width: 1100px) {
    .srv-intro-grid   { grid-template-columns: 1fr 1fr; }
    .srv-feature-grid { gap: 3rem; }
    .all-srv-grid     { grid-template-columns: 1fr 1fr; }
    .process-grid     { grid-template-columns: 1fr 1fr; gap: 1.25rem; }
    .process-connector { display: none; }
    /* Section padding */
    .srv-feature-section,
    .all-services-section,
    .process-section { padding: 5rem 0; }
}
@media (max-width: 768px) {
    .srv-intro-grid          { grid-template-columns: 1fr 1fr; gap: 1rem; }
    .srv-intro-strip         { padding: 2rem 0; }
    .srv-feature-grid        { grid-template-columns: 1fr; gap: 2rem; }
    .srv-feature-grid--reverse { direction: ltr; }
    .srv-feature-badge       { bottom: .75rem; right: .75rem; }
    .srv-img-frame img       { height: 280px; }
    .srv-feature-list        { grid-template-columns: 1fr; }
    .all-srv-grid            { grid-template-columns: 1fr; }
    .process-grid            { grid-template-columns: 1fr; gap: 1rem; }
    /* Section padding */
    .srv-feature-section,
    .all-services-section,
    .process-section { padding: 4rem 0; }
    /* Center feature content when stacked */
    .srv-feature-content .section-title,
    .srv-feature-content .section-badge { text-align: center; }
    .srv-feature-content .gold-divider  { margin: 1.25rem auto 1.75rem; }
    .srv-feature-actions                { justify-content: center; }
    /* Cards & steps */
    .all-srv-card  { padding: 1.75rem 1.5rem; }
    .process-step  { padding: 1.75rem 1.25rem; }
}
@media (max-width: 480px) {
    .srv-intro-grid  { grid-template-columns: 1fr; }
    .srv-intro-strip { padding: 1.5rem 0; }
    .srv-feature-actions { flex-direction: column; }
    .srv-feature-actions .btn-gold,
    .srv-feature-actions .btn-outline-gold { width: 100%; justify-content: center; }
    /* Section padding */
    .srv-feature-section,
    .all-services-section,
    .process-section { padding: 2.75rem 0; }
    /* Image height */
    .srv-img-frame img { height: 220px; }
    /* Cards & steps tighter */
    .all-srv-card  { padding: 1.5rem 1.25rem; }
    .all-srv-grid  { gap: 1rem; }
    .process-step  { padding: 1.5rem 1rem; }
    .process-num   { font-size: 2rem; }
}

/* ========================================================
   GALLERY PAGE STYLES
======================================================== */

/* Stats Strip */
.glr-stats-strip {
    background: linear-gradient(135deg,#0d0a02,#0f0f0f,#0d0a02);
    border-bottom: 1px solid rgba(201,168,76,.12);
    padding: 2.75rem 0;
}
.glr-stats-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
}
.glr-stat {
    flex: 1;
    text-align: center;
    padding: 1rem 2rem;
}
.glr-stat-div {
    width: 1px;
    height: 50px;
    background: rgba(201,168,76,.15);
    flex-shrink: 0;
}
.glr-stat-num {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 2.6rem;
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
    margin-bottom: .4rem;
}
.glr-stat-lbl {
    display: block;
    font-size: .8rem;
    color: rgba(255,255,255,.45);
    letter-spacing: .5px;
    font-weight: 500;
}

/* Filter Bar */
.gallery-page-section {
    padding: 5rem 0 6rem;
    background: var(--black);
}
.glr-filter-bar {
    display: flex;
    justify-content: center;
    gap: .6rem;
    flex-wrap: nowrap;
    overflow-x: auto;
    margin-bottom: 1.5rem;
    padding-bottom: .4rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}
.glr-filter-bar::-webkit-scrollbar { display: none; }
.glr-filter-btn {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    padding: .5rem 1rem;
    border-radius: 50px;
    border: 1px solid rgba(201,168,76,.2);
    background: rgba(201,168,76,.04);
    color: rgba(255,255,255,.55);
    font-size: .8rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Inter', sans-serif;
    white-space: nowrap;
    flex-shrink: 0;
}
.glr-filter-btn i { font-size: .78rem; }
.glr-filter-btn:hover {
    border-color: rgba(201,168,76,.4);
    color: var(--gold);
    background: rgba(201,168,76,.08);
}
.glr-filter-btn.active {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-color: var(--gold);
    color: var(--black);
    font-weight: 700;
}

/* Count bar */
.glr-count-bar {
    text-align: center;
    margin-bottom: 2.5rem;
    color: rgba(255,255,255,.35);
    font-size: .82rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .75rem;
}
.glr-count-sep { color: rgba(201,168,76,.3); }
#glrCount { color: var(--gold); font-weight: 600; }
#glrCategory { color: rgba(255,255,255,.45); }

/* Masonry Grid */
.glr-masonry {
    columns: 3;
    column-gap: 1.1rem;
    transition: var(--transition);
}
.glr-item {
    break-inside: avoid;
    margin-bottom: 1.1rem;
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    border: 1px solid rgba(201,168,76,.08);
    transition: opacity .4s ease, transform .4s ease;
}
.glr-item.hiding {
    opacity: 0;
    transform: scale(.92);
    pointer-events: none;
}
.glr-item-inner {
    position: relative;
    display: block;
    width: 100%;
    overflow: hidden;
}
/* Size variants — control image height */
.glr-item--normal .glr-item-inner img { height: 260px; }
.glr-item--tall   .glr-item-inner img { height: 380px; }
.glr-item--wide   .glr-item-inner img { height: 220px; }

.glr-item-inner img {
    width: 100%;
    object-fit: cover;
    display: block;
    transition: transform .65s cubic-bezier(.25,.46,.45,.94);
}
.glr-item:hover .glr-item-inner img { transform: scale(1.08); }

/* Overlay */
.glr-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(10,10,10,.95) 0%,
        rgba(10,10,10,.5)  45%,
        rgba(10,10,10,.1)  75%,
        transparent        100%
    );
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1rem;
    opacity: 0;
    transition: opacity .4s ease;
}
.glr-item:hover .glr-overlay { opacity: 1; }

.glr-overlay-tag {
    align-self: flex-start;
    background: rgba(10,10,10,.8);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(201,168,76,.3);
    color: var(--gold);
    font-size: .7rem;
    font-weight: 600;
    letter-spacing: .8px;
    padding: .3rem .85rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: .4rem;
    transform: translateY(-6px);
    transition: transform .4s ease .05s;
}
.glr-item:hover .glr-overlay-tag { transform: translateY(0); }

.glr-overlay-body {
    transform: translateY(8px);
    transition: transform .4s ease .05s;
}
.glr-item:hover .glr-overlay-body { transform: translateY(0); }
.glr-overlay-body h4 {
    font-family: 'Playfair Display', serif;
    color: var(--white);
    font-size: .98rem;
    font-weight: 700;
    margin-bottom: .3rem;
    line-height: 1.3;
}
.glr-overlay-body p {
    color: rgba(255,255,255,.55);
    font-size: .75rem;
    display: flex;
    align-items: center;
    gap: .35rem;
}
.glr-overlay-body p i { color: var(--gold); font-size: .65rem; }

.glr-zoom-btn {
    position: absolute;
    top: 1rem; right: 1rem;
    width: 38px; height: 38px;
    background: rgba(201,168,76,.9);
    border: none;
    border-radius: 50%;
    color: var(--black);
    font-size: .85rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    transform: scale(.8) rotate(-10deg);
}
.glr-item:hover .glr-zoom-btn {
    transform: scale(1) rotate(0deg);
}
.glr-zoom-btn:hover {
    background: var(--gold-light);
    transform: scale(1.12) !important;
}

/* Empty state */
.glr-empty {
    text-align: center;
    padding: 5rem 0;
    color: rgba(255,255,255,.25);
}
.glr-empty i { font-size: 3rem; margin-bottom: 1rem; display: block; color: rgba(201,168,76,.2); }
.glr-empty p { font-size: 1rem; }

/* ── LIGHTBOX ─────────────────────────────────────────────── */
.glr-lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    visibility: hidden;
    opacity: 0;
    transition: opacity .35s ease, visibility .35s ease;
}
.glr-lightbox.open {
    visibility: visible;
    opacity: 1;
}
.glr-lb-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.96);
    backdrop-filter: blur(14px);
    cursor: pointer;
}
.glr-lb-box {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 92vw;
    max-height: 94vh;
    transform: scale(.94);
    transition: transform .35s cubic-bezier(.34,1.56,.64,1);
}
.glr-lightbox.open .glr-lb-box { transform: scale(1); }

/* Close */
.glr-lb-close {
    position: fixed;
    top: 1.5rem; right: 1.5rem;
    width: 46px; height: 46px;
    background: rgba(201,168,76,.12);
    border: 1px solid rgba(201,168,76,.3);
    border-radius: 50%;
    color: var(--gold);
    font-size: 1rem;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: var(--transition);
    z-index: 3;
}
.glr-lb-close:hover { background: var(--gold); color: var(--black); }

/* Prev / Next */
.glr-lb-prev, .glr-lb-next {
    position: fixed;
    top: 50%; transform: translateY(-50%);
    width: 52px; height: 52px;
    background: rgba(201,168,76,.1);
    border: 1px solid rgba(201,168,76,.25);
    border-radius: 50%;
    color: var(--gold);
    font-size: 1rem;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: var(--transition);
    z-index: 3;
}
.glr-lb-prev { left: 1.5rem; }
.glr-lb-next { right: 1.5rem; }
.glr-lb-prev:hover, .glr-lb-next:hover {
    background: var(--gold);
    color: var(--black);
    transform: translateY(-50%) scale(1.08);
}

/* Image */
.glr-lb-img-wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 120px;
}
.glr-lb-spinner {
    position: absolute;
    color: var(--gold);
    font-size: 1.5rem;
    opacity: 1;
    transition: opacity .2s;
}
.glr-lb-spinner.hidden { opacity: 0; pointer-events: none; }
.glr-lb-img {
    max-width: 88vw;
    max-height: 72vh;
    border-radius: var(--radius);
    object-fit: contain;
    box-shadow: 0 25px 70px rgba(0,0,0,.9);
    display: block;
    opacity: 0;
    transition: opacity .3s ease;
}
.glr-lb-img.loaded { opacity: 1; }

/* Caption */
.glr-lb-caption {
    text-align: center;
    margin-top: 1.25rem;
    padding: 0 1rem;
}
.glr-lb-caption h4 {
    font-family: 'Playfair Display', serif;
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: .35rem;
    display: none;
}
.glr-lb-caption p {
    color: var(--gold);
    font-size: .82rem;
    display: none;
    align-items: center;
    justify-content: center;
    gap: .4rem;
    margin-bottom: .5rem;
}
.glr-lb-counter {
    color: rgba(255,255,255,.35);
    font-size: .78rem;
    letter-spacing: .5px;
}
#glrLbCurrent { color: var(--gold); font-weight: 700; }

/* ── Reel / Video CTA Section ─────────────────────────────── */
.glr-reel-section {
    padding: 6rem 0;
    background: var(--dark);
    border-top: 1px solid rgba(201,168,76,.08);
}
.glr-reel-inner {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 4rem;
    align-items: center;
}
.glr-reel-text .section-title { text-align: left; }
.glr-reel-text p {
    color: rgba(255,255,255,.5);
    font-size: .95rem;
    line-height: 1.85;
    margin-bottom: 2rem;
}
.glr-reel-mosaic {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: .85rem;
    height: 360px;
}
.glr-reel-img {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid rgba(201,168,76,.1);
}
.glr-reel-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s ease;
}
.glr-reel-img:hover img { transform: scale(1.06); }
.glr-reel-img--lg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(10,10,10,.45);
}
.glr-reel-col {
    display: flex;
    flex-direction: column;
    gap: .85rem;
}
.glr-reel-col .glr-reel-img { flex: 1; }
.glr-reel-play {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: .75rem;
    cursor: pointer;
}
.glr-play-btn {
    width: 64px; height: 64px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--black);
    font-size: 1.2rem;
    padding-left: .2rem;
    box-shadow: 0 0 0 12px rgba(201,168,76,.15);
    transition: var(--transition);
}
.glr-reel-play:hover .glr-play-btn {
    transform: scale(1.12);
    box-shadow: 0 0 0 18px rgba(201,168,76,.1);
}
.glr-reel-play span {
    color: var(--white);
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* ── Gallery Responsive ───────────────────────────────────── */
@media (max-width: 1100px) {
    .glr-masonry { columns: 2; }
    .glr-reel-inner { grid-template-columns: 1fr; gap: 2.5rem; }
    .glr-reel-text .section-title { text-align: center; }
    .glr-reel-text p { text-align: center; }
    .glr-reel-text { display: flex; flex-direction: column; align-items: center; }
    .glr-reel-mosaic { height: 280px; }
    /* Section padding */
    .gallery-page-section { padding: 4rem 0 5rem; }
}
@media (max-width: 768px) {
    .glr-masonry { columns: 2; column-gap: .75rem; }
    .glr-item--normal .glr-item-inner img { height: 200px; }
    .glr-item--tall   .glr-item-inner img { height: 290px; }
    .glr-item--wide   .glr-item-inner img { height: 170px; }
    .glr-stats-grid { flex-wrap: wrap; }
    .glr-stat { min-width: 120px; padding: .75rem 1rem; }
    .glr-stat-div { display: none; }
    .glr-lb-prev { left: .5rem; }
    .glr-lb-next { right: .5rem; }
    .glr-reel-mosaic { grid-template-columns: 1fr; height: auto; }
    .glr-reel-col { display: none; }
    /* Section padding */
    .gallery-page-section { padding: 3rem 0 4rem; }
    /* Filter bar scrollable hint */
    .glr-filter-bar { justify-content: flex-start; padding-left: .25rem; }
    /* Count bar */
    .glr-count-bar { font-size: .78rem; margin-bottom: 2rem; }
    /* Lightbox close button */
    .glr-lb-close { top: 1rem; right: 1rem; width: 40px; height: 40px; }
}
@media (max-width: 480px) {
    .glr-masonry { columns: 1; }
    .glr-item--normal .glr-item-inner img,
    .glr-item--tall   .glr-item-inner img,
    .glr-item--wide   .glr-item-inner img { height: 240px; }
    .glr-filter-btn span { display: none; }
    .glr-filter-btn { padding: .45rem .75rem; }
    .glr-lb-img { max-width: 95vw; max-height: 60vh; }
    /* Section padding */
    .gallery-page-section { padding: 2.5rem 0 3rem; }
    /* Masonry gap tighter */
    .glr-masonry { column-gap: .6rem; }
    .glr-item { margin-bottom: .6rem; }
    /* Count bar */
    .glr-count-bar { flex-wrap: wrap; gap: .4rem; margin-bottom: 1.5rem; }
}

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

/* ── Quick Strip ─────────────────────────────────────── */
.ctc-strip {
    background: linear-gradient(135deg,#0d0a02,#0f0f0f,#0d0a02);
    border-bottom: 1px solid rgba(201,168,76,.12);
    padding: 2.75rem 0;
}
.ctc-strip-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 1.1rem;
}
.ctc-strip-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.35rem;
    background: rgba(201,168,76,.04);
    border: 1px solid rgba(201,168,76,.12);
    border-radius: var(--radius);
    transition: var(--transition);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}
.ctc-strip-card::before {
    content:'';
    position:absolute;
    inset:0;
    background:rgba(201,168,76,.04);
    opacity:0;
    transition:var(--transition);
}
.ctc-strip-card:hover { border-color:rgba(201,168,76,.3); transform:translateY(-3px); }
.ctc-strip-card:hover::before { opacity:1; }
.ctc-strip-card--wa:hover { border-color:rgba(37,211,102,.3); }
.ctc-strip-card--wa:hover::before { background:rgba(37,211,102,.04); }
.ctc-strip-icon {
    width:46px; height:46px;
    border-radius:12px;
    display:flex; align-items:center; justify-content:center;
    font-size:1.05rem; flex-shrink:0;
    transition:var(--transition);
}
.ctc-strip-icon--gold { background:rgba(201,168,76,.12); border:1px solid rgba(201,168,76,.2); color:var(--gold); }
.ctc-strip-icon--wa   { background:rgba(37,211,102,.12); border:1px solid rgba(37,211,102,.2); color:#25d366; }
.ctc-strip-card:hover .ctc-strip-icon--gold { background:var(--gold); color:var(--black); }
.ctc-strip-card:hover .ctc-strip-icon--wa   { background:#25d366; color:var(--white); }
.ctc-strip-body { flex:1; min-width:0; }
.ctc-strip-body strong { display:block; color:var(--white); font-size:.9rem; font-weight:700; margin-bottom:.15rem; }
.ctc-strip-body span   { color:rgba(255,255,255,.45); font-size:.78rem; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; display:block; }
.ctc-strip-arrow { color:rgba(201,168,76,.4); font-size:.8rem; flex-shrink:0; transition:var(--transition); }
.ctc-strip-card:hover .ctc-strip-arrow { color:var(--gold); transform:translateX(3px); }

/* ── Main Section ────────────────────────────────────── */
.ctc-main-section { padding:6rem 0; background:var(--dark); }
.ctc-main-grid {
    display:grid;
    grid-template-columns:1fr 1.35fr;
    gap:4.5rem;
    align-items:start;
}

/* Info col */
.ctc-info-header .section-title { text-align:left; }
.ctc-intro { color:rgba(255,255,255,.55); font-size:.95rem; line-height:1.85; margin-bottom:.25rem; }
.ctc-details { margin:2rem 0; display:flex; flex-direction:column; gap:1.25rem; }
.ctc-detail-item {
    display:flex; align-items:flex-start; gap:1rem;
    padding:1.1rem 1.25rem;
    background:rgba(201,168,76,.03);
    border:1px solid rgba(201,168,76,.08);
    border-radius:var(--radius);
    transition:var(--transition);
}
.ctc-detail-item:hover { border-color:rgba(201,168,76,.2); background:rgba(201,168,76,.06); }
.ctc-detail-icon {
    width:42px; height:42px;
    background:rgba(201,168,76,.1); border:1px solid rgba(201,168,76,.2);
    border-radius:11px;
    display:flex; align-items:center; justify-content:center;
    color:var(--gold); font-size:.9rem; flex-shrink:0; margin-top:.1rem;
}
.ctc-detail-body strong { display:block; color:var(--white); font-size:.88rem; font-weight:700; margin-bottom:.35rem; }
.ctc-detail-body span  { display:block; color:rgba(255,255,255,.45); font-size:.82rem; line-height:1.6; }
.ctc-detail-body a     { color:var(--gold); transition:var(--transition); }
.ctc-detail-body a:hover { color:var(--gold-light); }

/* Social grid */
.ctc-social-block { margin-bottom:1.5rem; }
.ctc-social-title {
    color:var(--white); font-family:'Playfair Display',serif;
    font-size:.95rem; font-weight:700;
    margin-bottom:1rem;
    padding-bottom:.6rem;
    border-bottom:1px solid rgba(201,168,76,.12);
}
.ctc-social-grid {
    display:grid; grid-template-columns:repeat(3,1fr); gap:.65rem;
}
.ctc-social-card {
    display:flex; align-items:center; gap:.55rem;
    padding:.7rem 1rem;
    background:rgba(255,255,255,.03);
    border:1px solid rgba(255,255,255,.07);
    border-radius:10px;
    color:rgba(255,255,255,.55);
    font-size:.82rem; font-weight:500;
    transition:var(--transition);
    text-decoration:none;
}
.ctc-social-card i { font-size:.95rem; flex-shrink:0; }
.ctc-social-card:hover { color:var(--white); transform:translateY(-2px); }
.ctc-social-card:hover               { background:rgba(59,89,152,.2); border-color:rgba(59,89,152,.4); }
.ctc-social-card--insta:hover        { background:rgba(225,48,108,.15); border-color:rgba(225,48,108,.4); }
.ctc-social-card--yt:hover           { background:rgba(255,0,0,.12); border-color:rgba(255,0,0,.35); }
.ctc-social-card--wa:hover           { background:rgba(37,211,102,.12); border-color:rgba(37,211,102,.35); }
.ctc-social-card--pin:hover          { background:rgba(230,0,35,.12); border-color:rgba(230,0,35,.35); }

/* WhatsApp CTA block */
.ctc-wa-block {
    display:flex; align-items:center; gap:1.1rem;
    padding:1.1rem 1.4rem;
    background:rgba(37,211,102,.07);
    border:1px solid rgba(37,211,102,.25);
    border-radius:var(--radius);
    transition:var(--transition);
    text-decoration:none;
}
.ctc-wa-block:hover { background:rgba(37,211,102,.12); border-color:rgba(37,211,102,.45); transform:translateY(-2px); }
.ctc-wa-icon {
    width:50px; height:50px; background:#25d366; border-radius:50%;
    display:flex; align-items:center; justify-content:center;
    font-size:1.4rem; color:var(--white); flex-shrink:0;
}
.ctc-wa-block strong { display:block; color:var(--white); font-size:.92rem; font-weight:700; margin-bottom:.2rem; }
.ctc-wa-block span   { color:rgba(255,255,255,.5); font-size:.78rem; }
.ctc-wa-arrow { margin-left:auto; color:rgba(37,211,102,.6); flex-shrink:0; transition:var(--transition); }
.ctc-wa-block:hover .ctc-wa-arrow { color:#25d366; transform:translateX(4px); }

/* ── Main Form Card ──────────────────────────────────── */
.ctc-form-card {
    background:var(--dark-2);
    border:1px solid rgba(201,168,76,.12);
    border-radius:20px;
    padding:2.75rem;
}
.ctc-form-header {
    display:flex; align-items:flex-start; gap:1rem;
    margin-bottom:2rem; padding-bottom:1.5rem;
    border-bottom:1px solid rgba(201,168,76,.1);
}
.ctc-form-header-icon {
    width:50px; height:50px; flex-shrink:0;
    background:linear-gradient(135deg,var(--gold),var(--gold-dark));
    border-radius:14px;
    display:flex; align-items:center; justify-content:center;
    color:var(--black); font-size:1.1rem;
}
.ctc-form-header h3 {
    font-family:'Playfair Display',serif;
    color:var(--white); font-size:1.2rem; font-weight:700;
    margin-bottom:.25rem;
}
.ctc-form-header p { color:rgba(255,255,255,.45); font-size:.83rem; }

/* Success message */
.ctc-success-msg {
    display:flex; align-items:center; gap:.75rem;
    background:rgba(34,197,94,.1); border:1px solid rgba(34,197,94,.3);
    border-radius:10px; padding:1rem 1.25rem;
    color:#4ade80; font-size:.9rem; font-weight:600;
    margin-bottom:1.5rem;
}
.ctc-success-msg i { font-size:1.1rem; flex-shrink:0; }

/* Form rows */
.ctc-form-row { display:grid; grid-template-columns:1fr 1fr; gap:1.1rem; }
.ctc-form-group { margin-bottom:1.1rem; }
.ctc-form-group label {
    display:block; color:rgba(255,255,255,.6);
    font-size:.75rem; font-weight:600;
    letter-spacing:.6px; text-transform:uppercase;
    margin-bottom:.5rem;
}
.ctc-form-group label span { color:var(--gold); }

/* Input wrap */
.ctc-input-wrap {
    position:relative;
    display:flex; align-items:center;
}
.ctc-input-wrap > i {
    position:absolute; left:1rem;
    color:rgba(201,168,76,.5); font-size:.85rem;
    pointer-events:none; z-index:1;
}
.ctc-input-wrap input,
.ctc-input-wrap select,
.ctc-input-wrap textarea {
    width:100%;
    background:rgba(255,255,255,.04);
    border:1px solid rgba(201,168,76,.15);
    border-radius:10px;
    padding:.8rem 1rem .8rem 2.6rem;
    color:var(--white); font-size:.9rem;
    font-family:'Inter',sans-serif;
    outline:none; transition:var(--transition);
    appearance:none; -webkit-appearance:none;
}
.ctc-input-wrap input::placeholder,
.ctc-input-wrap textarea::placeholder { color:rgba(255,255,255,.2); }
.ctc-input-wrap select { cursor:pointer; color:rgba(255,255,255,.6); }
.ctc-input-wrap select option { background:#1a1a1a; color:var(--white); }
.ctc-input-wrap input:focus,
.ctc-input-wrap select:focus,
.ctc-input-wrap textarea:focus {
    border-color:var(--gold);
    background:rgba(201,168,76,.06);
    box-shadow:0 0 0 3px rgba(201,168,76,.1);
}
.ctc-textarea-wrap { align-items:flex-start; }
.ctc-textarea-wrap > i { top:1rem; }
.ctc-input-wrap textarea { resize:vertical; min-height:110px; }

/* Checkbox */
.ctc-checkbox-group { margin-bottom:1.5rem; }
.ctc-checkbox-label {
    display:flex; align-items:center; gap:.75rem;
    cursor:pointer; color:rgba(255,255,255,.55); font-size:.85rem;
}
.ctc-checkbox-label input[type="checkbox"] { display:none; }
.ctc-checkbox-box {
    width:20px; height:20px; flex-shrink:0;
    background:rgba(201,168,76,.1); border:1px solid rgba(201,168,76,.25);
    border-radius:5px; display:flex; align-items:center; justify-content:center;
    transition:var(--transition);
}
.ctc-checkbox-box i { color:var(--black); font-size:.65rem; opacity:0; transition:var(--transition); }
.ctc-checkbox-label input:checked ~ .ctc-checkbox-box { background:var(--gold); border-color:var(--gold); }
.ctc-checkbox-label input:checked ~ .ctc-checkbox-box i { opacity:1; }

/* Submit button */
.ctc-submit-btn {
    width:100%; padding:1rem;
    background:linear-gradient(135deg,var(--gold),var(--gold-dark));
    color:var(--black); border:none; border-radius:12px;
    font-size:1rem; font-weight:700;
    display:flex; align-items:center; justify-content:center; gap:.6rem;
    cursor:pointer; position:relative; overflow:hidden;
    transition:var(--transition);
}
.ctc-submit-btn:hover { background:linear-gradient(135deg,var(--gold-light),var(--gold)); transform:translateY(-2px); box-shadow:0 10px 30px rgba(201,168,76,.35); }
.ctc-btn-shine {
    position:absolute; top:0; left:-100%;
    width:60%; height:100%;
    background:linear-gradient(90deg,transparent,rgba(255,255,255,.2),transparent);
    transform:skewX(-20deg);
    transition:left .6s ease;
}
.ctc-submit-btn:hover .ctc-btn-shine { left:160%; }

/* Validation error */
.ctc-error { display:block; color:#f87171; font-size:.75rem; margin-top:.35rem; }
.ctc-form-note {
    display:flex; align-items:center; justify-content:center;
    gap:.4rem; color:rgba(255,255,255,.3);
    font-size:.75rem; margin-top:.85rem; text-align:center;
}
.ctc-form-note i { color:var(--gold); }

/* ── Quick Enquiry ───────────────────────────────────── */
.ctc-quick-section {
    padding:4.5rem 0;
    background:var(--black);
    border-top:1px solid rgba(201,168,76,.08);
    border-bottom:1px solid rgba(201,168,76,.08);
}
.ctc-quick-inner {
    display:grid; grid-template-columns:1fr 1.4fr;
    gap:4rem; align-items:center;
}
.ctc-quick-text .section-title { text-align:left; }
.ctc-quick-text p { color:rgba(255,255,255,.5); font-size:.95rem; margin-top:.5rem; }
.ctc-quick-fields {
    display:grid; grid-template-columns:1fr 1fr 1fr auto;
    gap:.85rem; align-items:end;
}
.ctc-quick-fields .ctc-input-wrap { margin:0; }
.ctc-quick-btn {
    height:44px; padding:0 1.5rem;
    white-space:nowrap; flex-shrink:0;
    border-radius:10px;
}

/* ── Map ─────────────────────────────────────────────── */
.ctc-map-section { background:var(--dark); padding-top:5rem; }
.ctc-map-header { text-align:center; padding:0 2rem 3rem; }
.ctc-map-header .section-subtitle { margin-bottom:0; }
.ctc-map-wrap { position:relative; }
.ctc-map-overlay-card {
    position:absolute;
    top:2rem; left:2rem;
    z-index:10;
    background:rgba(10,10,10,.95);
    backdrop-filter:blur(12px);
    border:1px solid rgba(201,168,76,.25);
    border-radius:var(--radius);
    padding:1.5rem 1.75rem;
    min-width:230px;
    box-shadow:0 10px 35px rgba(0,0,0,.6);
}
.ctc-map-card-icon {
    width:44px; height:44px;
    background:linear-gradient(135deg,var(--gold),var(--gold-dark));
    border-radius:12px;
    display:flex; align-items:center; justify-content:center;
    color:var(--black); font-size:1rem; margin-bottom:1rem;
}
.ctc-map-card-body h4 {
    font-family:'Playfair Display',serif;
    color:var(--white); font-size:1rem; font-weight:700; margin-bottom:.4rem;
}
.ctc-map-card-body p { color:rgba(255,255,255,.5); font-size:.82rem; line-height:1.65; margin-bottom:1rem; }
.ctc-map-dir-btn {
    display:inline-flex; align-items:center; gap:.45rem;
    background:linear-gradient(135deg,var(--gold),var(--gold-dark));
    color:var(--black); padding:.5rem 1.1rem;
    border-radius:50px; font-size:.78rem; font-weight:700;
    transition:var(--transition);
}
.ctc-map-dir-btn:hover { background:var(--gold-light); transform:translateY(-1px); }
.ctc-map-iframe {
    width:100%; height:480px; border:none; display:block;
    filter:grayscale(1) invert(1) sepia(.2) hue-rotate(180deg) brightness(.85) contrast(.9);
}

/* ── FAQ ─────────────────────────────────────────────── */
.ctc-faq-section { padding:6rem 0; background:var(--black); }
.ctc-faq-section .section-header { margin-bottom:3rem; }
.ctc-faq-list { max-width:820px; margin:0 auto; display:flex; flex-direction:column; gap:.75rem; }
.ctc-faq-item {
    background:var(--dark-2); border:1px solid rgba(201,168,76,.1);
    border-radius:var(--radius); overflow:hidden; transition:var(--transition);
}
.ctc-faq-item:hover { border-color:rgba(201,168,76,.22); }
.ctc-faq-item.open  { border-color:rgba(201,168,76,.3); }
.ctc-faq-q {
    width:100%; background:none; border:none; cursor:pointer;
    display:flex; align-items:center; justify-content:space-between;
    gap:1rem; padding:1.35rem 1.5rem;
    text-align:left;
}
.ctc-faq-q span {
    color:var(--white); font-size:.95rem; font-weight:600;
    font-family:'Playfair Display',serif; line-height:1.4;
}
.ctc-faq-icon {
    width:32px; height:32px; flex-shrink:0;
    background:rgba(201,168,76,.1); border:1px solid rgba(201,168,76,.2);
    border-radius:8px;
    display:flex; align-items:center; justify-content:center;
    color:var(--gold); font-size:.75rem; transition:var(--transition);
}
.ctc-faq-item.open .ctc-faq-icon { background:var(--gold); color:var(--black); }
.ctc-faq-item.open .ctc-faq-icon i { transform:rotate(45deg); }
.ctc-faq-a {
    max-height:0; overflow:hidden; transition:max-height .4s ease, padding .3s ease;
    padding:0 1.5rem;
}
.ctc-faq-item.open .ctc-faq-a { max-height:200px; padding:0 1.5rem 1.35rem; }
.ctc-faq-a p { color:rgba(255,255,255,.5); font-size:.88rem; line-height:1.85; }

/* ── Contact Responsive ──────────────────────────────── */
@media (max-width:1100px) {
    .ctc-strip-grid  { grid-template-columns:1fr 1fr; gap:.85rem; }
    .ctc-main-grid   { grid-template-columns:1fr; gap:3rem; }
    .ctc-quick-inner { grid-template-columns:1fr; gap:2rem; }
    .ctc-quick-text .section-title { text-align:center; }
    .ctc-quick-text p { text-align:center; }
    .ctc-quick-text { text-align:center; }
    .ctc-quick-fields { grid-template-columns:1fr 1fr; }
    .ctc-quick-btn   { grid-column:span 2; }
    /* Section padding */
    .ctc-strip       { padding:2.25rem 0; }
    .ctc-main-section{ padding:5rem 0; }
    .ctc-map-section { padding-top:4rem; }
    /* Centre info col when stacked */
    .ctc-info-header .section-title,
    .ctc-info-header .section-badge { text-align:center; }
    .ctc-info-header .gold-divider  { margin:1.25rem auto 1.75rem; }
    .ctc-intro       { text-align:center; }
}
@media (max-width:768px) {
    .ctc-strip-grid  { grid-template-columns:1fr 1fr; }
    .ctc-form-card   { padding:1.75rem 1.25rem; }
    .ctc-form-row    { grid-template-columns:1fr; }
    .ctc-social-grid { grid-template-columns:1fr 1fr; }
    .ctc-quick-fields{ grid-template-columns:1fr; }
    .ctc-quick-btn   { grid-column:span 1; }
    .ctc-map-overlay-card { position:static; margin:0 1.5rem 1rem; }
    .ctc-map-iframe  { height:320px; }
    /* Section padding */
    .ctc-strip       { padding:2rem 0; }
    .ctc-main-section{ padding:4rem 0; }
    .ctc-map-section { padding-top:3rem; }
    .ctc-map-header  { padding:0 1rem 2rem; }
    /* WA block wraps on small screens */
    .ctc-wa-block    { gap:.75rem; }
    /* Strip cards tighter */
    .ctc-strip-card  { padding:1rem 1.1rem; }
    .ctc-strip-body strong { font-size:.85rem; }
    .ctc-strip-body span   { font-size:.72rem; }
}
@media (max-width:480px) {
    .ctc-strip-grid  { grid-template-columns:1fr; }
    .ctc-social-grid { grid-template-columns:repeat(3,1fr); }
    /* Section padding */
    .ctc-strip       { padding:1.5rem 0; }
    .ctc-main-section{ padding:2.75rem 0; }
    .ctc-map-section { padding-top:2.5rem; }
    .ctc-map-header  { padding:0 .5rem 1.75rem; }
    /* Form card */
    .ctc-form-card   { padding:1.5rem 1rem; }
    /* Map */
    .ctc-map-overlay-card { margin:0 1rem 1rem; padding:1.25rem; }
    .ctc-map-iframe  { height:260px; }
    /* WA block */
    .ctc-wa-block    { padding:.9rem 1rem; }
    .ctc-wa-arrow    { display:none; }
    /* Detail items tighter */
    .ctc-detail-item { padding:.9rem 1rem; gap:.75rem; }
    /* Submit button */
    .ctc-submit-btn  { font-size:.92rem; }
}

/* ====================================================================
   COMPREHENSIVE RESPONSIVE ENHANCEMENTS
   Covers: about image heights · 576px · 360px · landscape mode
===================================================================== */

/* ── About section image heights on mobile ───────────────────────── */
@media (max-width: 768px) {
    .about-img-main { height: 300px; }
}
@media (max-width: 480px) {
    .about-img-main  { height: 220px; }
    .about-badge     { padding: 1.1rem 1.4rem; }
    .about-badge-num { font-size: 1.85rem; }
}

/* ── 576px mid-range phones ──────────────────────────────────────── */
@media (max-width: 576px) {
    /* Nav & logo */
    .nav-container  { padding: 0 1rem; }
    .brand-logo-img { height: 56px; }
    .footer-brand-logo { height: 90px; }

    /* Section padding */
    .services-section,
    .gallery-section,
    .about-section,
    .testimonials-section,
    .contact-section { padding: 3.25rem 0; }
    .cta-section,
    .stats-band { padding: 2.5rem 0; }

    /* Hero */
    .slide-heading { font-size: clamp(1.8rem, 7vw, 2.6rem); }
    .slide-desc    { font-size: .95rem; }

    /* About */
    .about-img-main { height: 260px; }
    .about-features { grid-template-columns: 1fr; }

    /* Service cards */
    .service-card { padding: 2rem 1.5rem; }

    /* Homepage gallery filter — horizontal scroll instead of wrapping */
    .gallery-filter {
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start;
        padding-bottom: .4rem;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    .gallery-filter::-webkit-scrollbar { display: none; }
    .filter-btn { flex-shrink: 0; }

    /* Footer */
    .footer-top    { padding: 3rem 1.25rem 2.5rem; }
    .footer-bottom { padding: 1.25rem 1.25rem; }

    /* Newsletter form stacks vertically */
    .newsletter-form            { flex-direction: column; }
    .newsletter-form input,
    .newsletter-form button     { width: 100%; border-radius: 8px; }

    /* Testimonials */
    .testimonial-card { padding: 1.75rem 1.5rem; }

    /* Stats */
    .stat-number { font-size: 2.2rem; }

    /* Contact form */
    .contact-form-wrap { padding: 1.5rem 1.25rem; }

    /* About page sections */
    .about-intro-section,
    .vm-section,
    .why-section,
    .premium-services-section { padding: 3rem 0; }

    /* Services page sections */
    .srv-feature-section,
    .all-services-section,
    .process-section { padding: 3rem 0; }

    /* Gallery page */
    .gallery-page-section { padding: 2.75rem 0 3.5rem; }
    .glr-reel-section     { padding: 3rem 0; }
}

/* ── 360px extra-small phones ────────────────────────────────────── */
@media (max-width: 360px) {
    /* Navbar */
    .nav-container  { padding: 0 .75rem; }
    .brand-logo-img { height: 46px; }
    .nav-menu       { width: 90vw; }

    /* Hero */
    .slide-content  { padding: 0 .9rem; }
    .slide-badge    { font-size: .65rem; padding: .3rem .8rem; }
    .hero-carousel  { min-height: 460px; }

    /* Buttons */
    .btn-gold,
    .btn-outline-white,
    .btn-outline-gold       { font-size: .82rem; padding: .65rem 1.35rem; }
    .btn-gold.btn-lg,
    .btn-outline-gold.btn-lg { padding: .85rem 1.75rem; }

    /* About */
    .about-img-main  { height: 190px; }
    .about-badge     { padding: .8rem 1rem; }
    .about-badge-num { font-size: 1.5rem; }

    /* Stats */
    .stat-number { font-size: 1.75rem; }
    .stat-suffix { font-size: 1.4rem; }

    /* Section headers */
    .section-header { padding: 0 .75rem; }
    .cta-content    { padding: 0 .9rem; }

    /* Footer */
    .footer-brand-logo  { height: 70px; }
    .footer-bottom-links { flex-direction: column; gap: .35rem; align-items: center; }
    .footer-bottom { text-align: center; }

    /* Testimonials */
    .testimonial-card { padding: 1.5rem 1rem; }

    /* Page hero */
    .page-hero       { min-height: 340px; }
    .page-hero-title { font-size: clamp(1.8rem, 9vw, 2.8rem); }

    /* Services page */
    .all-srv-card { padding: 1.25rem 1rem; }
    .process-step { padding: 1.25rem .85rem; }

    /* Contact page */
    .ctc-form-card  { padding: 1.25rem .85rem; }
    .ctc-strip-grid { grid-template-columns: 1fr; }

    /* Contact form */
    .contact-form-wrap { padding: 1.25rem .85rem; }

    /* About page */
    .vm-card      { padding: 1.25rem 1rem; }
    .why-item     { padding: 1rem; }
    .timeline-dot { width: 36px; height: 36px; }
}

/* ── Landscape orientation for phones ────────────────────────────── */
@media (max-width: 812px) and (orientation: landscape) and (max-height: 500px) {
    .hero-carousel {
        height: 100svh;
        min-height: 280px;
    }
    .slide-heading   { font-size: clamp(1.4rem, 4vw, 2rem); }
    .slide-desc      { font-size: .88rem; max-width: 55%; margin-bottom: 1.25rem; }
    .slide-badge     { margin-bottom: .6rem; }
    .slide-actions   { flex-direction: row; }
    .scroll-indicator { display: none; }

    .page-hero       { height: 80vh; min-height: 260px; }
    .page-hero-title { font-size: clamp(1.6rem, 5vw, 2.5rem); }
    .page-hero-desc  { font-size: .9rem; }

    /* Compact navbar in landscape */
    .brand-logo-img { height: 50px; }
    .nav-container  { padding: 0 1rem; }
}

/* ====================================================
   ABOUT PAGE — ADDITIONAL RESPONSIVE FIXES
==================================================== */

/* 1100px rule above collapses vm-grid to 1 col too early — restore 2 cols for tablets */
@media (min-width: 769px) and (max-width: 1100px) {
    .vm-grid {
        grid-template-columns: 1fr 1fr;
        max-width: none;
        margin: 0;
    }
    .intro-img-main { height: 420px; }
}

/* 576px — mid-range phones */
@media (max-width: 576px) {
    .about-intro-section, .vm-section, .why-section,
    .premium-services-section { padding: 3rem 0; }
    .about-cta-section { padding: 3rem 1rem; }
    .about-intro-grid { gap: 1.5rem; }
    .intro-img-main { height: 260px; }
    .vm-card { padding: 1.5rem 1.25rem; }
    .vm-card h3 { font-size: 1.2rem; }
    .why-item { padding: 1rem .85rem; }
    .premium-card-body { padding: 1.5rem; }
    .premium-card-body h3 { font-size: 1.1rem; }
    .about-cta-content h2 { font-size: clamp(1.6rem, 6vw, 2.2rem); }
    .about-cta-content p { font-size: .9rem; }
    .page-hero { min-height: 360px; }
    .page-hero-content { padding: 0 1rem; }
}

/* 480px — hide accent border to stop overflow */
@media (max-width: 480px) {
    .intro-img-accent { display: none; }
    .premium-card-body { padding: 1.25rem; }
}

/* 360px — about-specific tighten */
@media (max-width: 360px) {
    .intro-img-main { height: 190px; }
    .premium-card-body { padding: 1rem; }
    .premium-card-body h3 { font-size: 1rem; }
    .why-item-body h4 { font-size: .9rem; }
    .vm-card h3 { font-size: 1.05rem; }
    .about-cta-content h2 { font-size: 1.5rem; }
}
