/* ========================================
   CHARGED UP GROUP OF COMPANIES
   Premium Brand Website — 2026
   ======================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&family=Jost:wght@300;400;500;600;700&display=swap');

/* ========== ROOT & VARIABLES ========== */
:root {
    --gold:        #C9A84C;
    --gold-light:  #E8D49A;
    --gold-dark:   #9A7B34;
    --gold-glow:   rgba(201, 168, 76, 0.35);
    --black:       #0A0A0A;
    --black-2:     #141414;
    --black-3:     #1E1E1E;
    --white:       #FFFFFF;
    --cream:       #FAF6EE;
    --ivory:       #F4EFE4;
    --gray-light:  #D8D0C4;
    --gray-mid:    #9A9186;
    --text-dark:   #1A1A1A;
    --text-mid:    #5A5550;
    --border:      rgba(201, 168, 76, 0.25);
    --shadow-sm:   0 4px 20px rgba(0,0,0,0.08);
    --shadow-md:   0 12px 40px rgba(0,0,0,0.12);
    --shadow-lg:   0 24px 60px rgba(0,0,0,0.18);
    --shadow-gold: 0 8px 30px rgba(201, 168, 76, 0.3);
    --ease:        cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
    --wa-icon:     url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Cpath fill='%23000' d='M16 3C8.8 3 3 8.8 3 16c0 2.3.6 4.6 1.8 6.5L3 29l6.7-1.8A12.9 12.9 0 0 0 16 29c7.2 0 13-5.8 13-13S23.2 3 16 3zm0 23.7c-2 0-3.9-.5-5.6-1.5l-.4-.2-4 1.1 1.1-3.9-.2-.4A10.7 10.7 0 1 1 16 26.7zm5.9-8.1c-.3-.2-1.7-.8-1.9-.9-.3-.1-.5-.2-.7.2-.2.3-.8.9-1 1.1-.2.2-.4.2-.7.1-.3-.2-1.4-.5-2.6-1.6-1-.9-1.6-1.9-1.8-2.3-.2-.3 0-.5.1-.7l.4-.5c.1-.2.2-.3.3-.5.1-.2 0-.4 0-.6l-.9-2.1c-.2-.5-.5-.4-.7-.4h-.6c-.2 0-.5.1-.8.4-.3.3-1.1 1-1.1 2.4 0 1.4 1 2.8 1.2 3 .1.2 2.1 3.2 5 4.5.7.3 1.3.5 1.8.6.8.2 1.5.2 2 .1.6-.1 1.7-.7 1.9-1.3.2-.6.2-1.2.2-1.3-.1-.2-.3-.3-.6-.4z'/%3E%3C/svg%3E");
}

/* ========== RESET & BASE ========== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: 'Jost', sans-serif;
    background: var(--cream);
    color: var(--text-dark);
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; transition: color 0.3s ease; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ========== TYPOGRAPHY ========== */
.h-serif {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.m-serif {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    letter-spacing: -0.01em;
    line-height: 1.2;
}

h1, h2, h3 { margin-bottom: 1rem; }

p {
    margin-bottom: 1rem;
    color: var(--text-mid);
    font-size: 1.05rem;
    font-weight: 300;
    line-height: 1.8;
}

strong { color: var(--text-dark); font-weight: 600; }

/* ========== CONTAINER ========== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ========== GOLD DIVIDER ========== */
.gold-line {
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    border-radius: 2px;
    margin: 1rem auto 0;
}

/* ========== PRELOADER ========== */
.preloader {
    position: fixed;
    inset: 0;
    background: var(--black);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}
.preloader.is-loaded { opacity: 0; visibility: hidden; pointer-events: none; }

.preloader-logo {
    width: 120px;
    margin-bottom: 2rem;
    animation: pulse-logo 1.5s ease infinite;
}
@keyframes pulse-logo { 0%,100%{opacity:.7;transform:scale(1)} 50%{opacity:1;transform:scale(1.05)} }

.preloader-inner {
    width: 200px;
    height: 2px;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    overflow: hidden;
}
.preloader-bar {
    height: 100%;
    width: 40%;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light));
    border-radius: 10px;
    animation: preload 1.4s ease-in-out infinite;
}
@keyframes preload {
    0% { transform: translateX(-150%); }
    100% { transform: translateX(350%); }
}

/* ========== NAVBAR ========== */
.navbar {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    background: rgba(10,10,10,0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
    transition: all 0.4s ease;
}
.navbar.scrolled {
    background: rgba(10,10,10,0.98);
    box-shadow: 0 4px 30px rgba(0,0,0,0.4);
}
.navbar-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}
.brand-logo {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
}
.logo-img {
    height: 60px;
    width: auto;
    filter: brightness(1.1) drop-shadow(0 2px 8px rgba(201,168,76,0.4));
    transition: all 0.3s ease;
}
.brand-text {
    font-family: 'Jost', sans-serif;
    font-size: 0.94rem;
    font-weight: 700;
    letter-spacing: 2.6px;
    color: var(--gold-light);
    text-transform: uppercase;
    white-space: nowrap;
    position: relative;
    padding-bottom: 0.1rem;
    text-shadow: 0 2px 10px rgba(201,168,76,0.25);
    transition: color 0.3s ease, letter-spacing 0.3s ease;
}
.brand-text::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -0.2rem;
    width: 56%;
    height: 1px;
    background: linear-gradient(90deg, var(--gold), transparent);
    transition: width 0.3s var(--ease);
}
.navbar-brand:hover .logo-img {
    filter: brightness(1.3) drop-shadow(0 4px 14px rgba(201,168,76,0.6));
    transform: scale(1.03);
}
.navbar-brand:hover .brand-text {
    color: var(--gold);
    letter-spacing: 2.8px;
}
.navbar-brand:hover .brand-text::after { width: 100%; }

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}
.nav-link {
    color: rgba(255,255,255,0.8);
    font-size: 0.88rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    position: relative;
    padding: 0.4rem 0;
    transition: color 0.3s ease;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 1px;
    background: var(--gold);
    transition: width 0.35s var(--ease);
}
.nav-link:hover, .nav-link.active { color: var(--gold); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }

.cta-nav {
    background: var(--gold);
    color: var(--black) !important;
    padding: 0.6rem 1.4rem !important;
    border-radius: 4px;
    font-weight: 700;
    letter-spacing: 1px;
    transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease !important;
}
.cta-nav::after { display: none !important; }
.cta-nav:hover {
    background: var(--gold-light) !important;
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
    z-index: 1001;
}
.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.35s ease;
}
.hamburger.is-active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.is-active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.is-active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.7);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}
.nav-overlay.is-open { opacity: 1; visibility: visible; }

@media (max-width: 900px) {
    .hamburger { display: flex; }
    .nav-overlay { display: block; }
    .brand-text {
        font-size: 0.82rem;
        letter-spacing: 2px;
    }
    .nav-menu {
        position: fixed;
        top: 0; right: -100%;
        width: min(320px, 85vw);
        height: 100vh;
        background: var(--black-2);
        flex-direction: column;
        justify-content: center;
        gap: 2rem;
        padding: 2rem;
        transition: right 0.4s var(--ease);
        z-index: 999;
        border-left: 1px solid var(--border);
    }
    .nav-menu.is-open { right: 0; }
    .nav-link { font-size: 1.1rem; color: rgba(255,255,255,0.9); }
    .cta-nav { text-align: center; }
}
@media (max-width: 480px) {
    .brand-text { display: none; }
}

/* ========== BUTTONS ========== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 2rem;
    font-family: 'Jost', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border: 2px solid transparent;
    border-radius: 3px;
    cursor: pointer;
    transition: all 0.35s var(--ease);
}
.btn-primary {
    background: var(--gold);
    color: var(--black);
    border-color: var(--gold);
}
.btn-primary:hover {
    background: transparent;
    color: var(--gold);
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
}
.btn-outline {
    background: transparent;
    color: var(--gold);
    border-color: var(--gold);
}
.btn-outline:hover {
    background: var(--gold);
    color: var(--black);
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
}
.btn-whatsapp {
    background: linear-gradient(135deg, #2de06d 0%, #21b95a 100%);
    color: var(--white) !important;
    border-color: rgba(255,255,255,0.28);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    border-radius: 999px;
    box-shadow: 0 12px 30px rgba(37,211,102,0.35), inset 0 1px 0 rgba(255,255,255,0.3);
    animation: wa-pulse 2.8s ease infinite;
    position: relative;
    padding: 0.9rem 1.9rem 0.9rem 3rem;
}
.btn-whatsapp::before {
    content: '';
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1.05rem;
    height: 1.05rem;
    background: var(--white);
    -webkit-mask: var(--wa-icon) center/contain no-repeat;
    mask: var(--wa-icon) center/contain no-repeat;
}
.btn-whatsapp:hover {
    background: linear-gradient(135deg, #21d861 0%, #169f4b 100%);
    border-color: rgba(255,255,255,0.38);
    transform: translateY(-3px);
    box-shadow: 0 16px 38px rgba(37,211,102,0.45), inset 0 1px 0 rgba(255,255,255,0.35);
    animation: none;
}
.btn-whatsapp > svg { display: none; }
@keyframes wa-pulse {
    0%,100% { box-shadow: 0 0 0 0 rgba(37,211,102,0.4); }
    50% { box-shadow: 0 0 0 10px rgba(37,211,102,0); }
}
.btn-dark {
    background: var(--black);
    color: var(--white);
    border-color: var(--black);
}
.btn-dark:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--black);
    transform: translateY(-3px);
}

/* ========== HERO ========== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background: var(--black);
}
.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.45;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at center, rgba(201,168,76,0.12) 0%, transparent 70%),
        linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.7) 100%);
    z-index: 1;
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 860px;
    padding: 2rem;
}
.hero-logo {
    height: 130px;
    width: auto;
    margin: 0 auto 2.5rem;
    filter: drop-shadow(0 4px 20px rgba(201,168,76,0.5));
    animation: hero-logo-in 1s var(--ease-out) 0.2s both;
}
@keyframes hero-logo-in {
    from { opacity: 0; transform: translateY(-30px) scale(0.9); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}
.hero-eyebrow {
    font-family: 'Jost', sans-serif;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.2rem;
    animation: fade-up 0.8s var(--ease-out) 0.5s both;
}
.hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1;
    letter-spacing: -0.02em;
    margin-bottom: 0.8rem;
    animation: fade-up 0.9s var(--ease-out) 0.6s both;
}
.hero-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.4rem, 3vw, 2.2rem);
    color: var(--gold-light);
    font-style: italic;
    font-weight: 400;
    margin-bottom: 1.5rem;
    animation: fade-up 0.9s var(--ease-out) 0.7s both;
}
.hero-description {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.7);
    font-weight: 300;
    letter-spacing: 0.3px;
    margin-bottom: 2.5rem;
    animation: fade-up 0.9s var(--ease-out) 0.8s both;
}
.hero-cta {
    animation: fade-up 0.9s var(--ease-out) 0.9s both;
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}
.hero-scroll {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255,255,255,0.5);
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: scroll-bounce 2s ease infinite;
}
.hero-scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, var(--gold), transparent);
}
@keyframes scroll-bounce {
    0%,100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}
@keyframes fade-up {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ========== PAGE HEADER (inner pages) ========== */
.page-header {
    margin-top: 80px;
    padding: 80px 2rem 60px;
    background: var(--black);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center bottom, rgba(201,168,76,0.18) 0%, transparent 65%);
}
.page-header h1 {
    color: var(--white);
    position: relative;
    z-index: 1;
}
.header-subtitle {
    font-size: 1.1rem;
    color: var(--gold);
    margin-top: 0.8rem;
    font-weight: 300;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 1;
}
.page-header-line {
    width: 50px;
    height: 2px;
    background: var(--gold);
    margin: 1rem auto 0;
    position: relative;
    z-index: 1;
}

/* ========== SECTION STYLES ========== */
.section-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    display: block;
    margin-bottom: 0.8rem;
}
.section-title {
    text-align: center;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}
.section-title.light { color: var(--white); }
.section-sub {
    text-align: center;
    color: var(--gray-mid);
    font-size: 1rem;
    margin-bottom: 3.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ========== REVEAL ANIMATION ========== */
[data-reveal] {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
[data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}
[data-reveal][data-delay="1"] { transition-delay: 0.1s; }
[data-reveal][data-delay="2"] { transition-delay: 0.2s; }
[data-reveal][data-delay="3"] { transition-delay: 0.3s; }
[data-reveal][data-delay="4"] { transition-delay: 0.4s; }

/* ========== ABOUT PREVIEW ========== */
.about-preview {
    padding: 100px 2rem;
    background: var(--cream);
}
.preview-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}
.preview-text h2 { color: var(--text-dark); margin-bottom: 1.5rem; }
.preview-text p { font-size: 1.05rem; }
.preview-image {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
}
.preview-image img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
    border-radius: 4px;
}
.preview-image::before {
    content: '';
    position: absolute;
    inset: -10px;
    border: 1px solid var(--gold);
    border-radius: 4px;
    z-index: 0;
    opacity: 0.4;
    transform: translate(12px, 12px);
}
@media (max-width: 900px) {
    .preview-inner { grid-template-columns: 1fr; gap: 3rem; }
    .preview-image img { height: 360px; }
}

/* ========== STATS BAR ========== */
.stats-bar {
    background: var(--gold);
    padding: 3rem 2rem;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}
.stat-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--black);
    line-height: 1;
    display: block;
}
.stat-label {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--black-3);
    margin-top: 0.4rem;
    display: block;
}
@media (max-width: 600px) {
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ========== SERVICES OVERVIEW ========== */
.services-overview {
    padding: 100px 2rem;
    background: var(--ivory);
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    margin-top: 1rem;
}
.service-card {
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.07);
    border-radius: 4px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    transition: all 0.4s var(--ease);
    position: relative;
}
.service-card::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
    transform: scaleX(0);
    transition: transform 0.4s var(--ease);
    transform-origin: left;
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.service-card:hover::before { transform: scaleX(1); }
.service-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
}
.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease);
}
.service-card:hover .service-image img { transform: scale(1.08); }
.service-body {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.service-body h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}
.service-body p { font-size: 0.92rem; flex: 1; }
.service-arrow {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--gold);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 1rem;
    transition: gap 0.3s ease;
}
.service-card:hover .service-arrow { gap: 0.8rem; }

/* ========== EXPERTISE / VIDEO ========== */
.expertise {
    padding: 100px 2rem;
    background: var(--black);
}
.expertise-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
}
.expertise-card {
    background: var(--black-2);
    border: 1px solid var(--border);
    border-radius: 4px;
    overflow: hidden;
    transition: all 0.4s ease;
}
.expertise-card:hover { border-color: var(--gold); box-shadow: 0 0 30px rgba(201,168,76,0.15); }
.expertise-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--white);
    padding: 1.5rem 1.5rem 1rem;
}
.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    background: #000;
}
.video-container video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
@media (max-width: 768px) {
    .expertise-grid { grid-template-columns: 1fr; }
}

/* ========== FAQ ========== */
.faq-section {
    padding: 100px 2rem;
    background: var(--cream);
}
.faq-container {
    max-width: 760px;
    margin: 0 auto;
}
.faq-item {
    border-bottom: 1px solid var(--border);
    overflow: hidden;
}
.faq-question {
    width: 100%;
    padding: 1.4rem 0;
    background: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Jost', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-dark);
    text-align: left;
    gap: 1rem;
    transition: color 0.3s ease;
}
.faq-question:hover, .faq-question.is-active { color: var(--gold); }
.faq-icon {
    min-width: 20px;
    height: 20px;
    border: 1.5px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: var(--gold);
    transition: transform 0.35s ease;
}
.faq-question.is-active .faq-icon { transform: rotate(45deg); }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.45s var(--ease);
}
.faq-answer.is-open { max-height: 400px; }
.faq-answer p {
    padding: 0 0 1.4rem;
    color: var(--text-mid);
}
.faq-footer {
    text-align: center;
    margin-top: 2.5rem;
    color: var(--gray-mid);
    font-size: 0.95rem;
}
.faq-footer a { color: var(--gold); }

/* ========== HEADQUARTERS ========== */
.headquarters {
    padding: 100px 2rem;
    background: var(--ivory);
}
.hq-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.hq-text h2 { color: var(--text-dark); margin-bottom: 1.5rem; }
.hq-image-wrap {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.hq-image-wrap img {
    width: 100%;
    height: 380px;
    object-fit: cover;
}
.hq-badge {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    background: var(--gold);
    color: var(--black);
    padding: 0.7rem 1.2rem;
    border-radius: 3px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}
@media (max-width: 900px) {
    .hq-inner { grid-template-columns: 1fr; }
    .hq-image-wrap img { height: 280px; }
}

/* ========== AWARDS / CLIENTS ========== */
.clients {
    padding: 80px 2rem;
    background: var(--black);
    text-align: center;
}
.awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}
.award-card {
    background: var(--black-2);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 2rem 1.5rem;
    transition: all 0.35s ease;
}
.award-card:hover {
    border-color: var(--gold);
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(201,168,76,0.15);
}
.award-icon { font-size: 2rem; margin-bottom: 1rem; display: block; color: var(--gold); }
.award-card h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 0.4rem;
}
.award-card p {
    font-size: 0.85rem;
    color: var(--gray-mid);
    margin: 0;
}

/* ========== GALLERY ========== */
.gallery-section {
    padding: 100px 2rem;
    background: var(--cream);
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 260px;
    gap: 12px;
}
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 3px;
    cursor: pointer;
    background: var(--gray-light);
}
.gallery-item:nth-child(4n+1) { grid-column: span 2; grid-row: span 2; }
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease);
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.35s ease;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
@media (max-width: 900px) {
    .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 220px; }
    .gallery-item:nth-child(4n+1) { grid-column: span 1; grid-row: span 1; }
}
@media (max-width: 480px) {
    .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 250px; }
}

/* ========== CONTACT SECTION ========== */
.contact-section {
    padding: 100px 2rem;
    background: var(--ivory);
}
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}
.contact-info h2 { color: var(--text-dark); margin-bottom: 2rem; }
.info-item {
    display: flex;
    gap: 1.2rem;
    margin-bottom: 1.8rem;
    align-items: flex-start;
}
.info-icon {
    min-width: 44px;
    height: 44px;
    border: 1px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}
.info-item strong { color: var(--text-dark); display: block; margin-bottom: 0.3rem; font-size: 0.85rem; letter-spacing: 1px; text-transform: uppercase; }
.info-item p { margin: 0; font-size: 0.95rem; }
.info-item a { color: var(--gold); }
.info-item a:hover { color: var(--gold-dark); }
.contact-map {
    border-radius: 4px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
    height: 460px;
}
.contact-map iframe { width: 100%; height: 100%; border: 0; display: block; }
@media (max-width: 900px) {
    .contact-content { grid-template-columns: 1fr; }
    .contact-map { height: 340px; }
}

/* ========== ABOUT PAGE ========== */
.founder-section {
    padding: 100px 2rem;
    background: var(--cream);
}
.founder-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 5rem;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}
.founder-text h2 { color: var(--text-dark); margin-bottom: 1.5rem; }
.founder-text p { margin-bottom: 1rem; }
.achievement-list {
    margin: 1.5rem 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}
.achievement-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    font-size: 0.95rem;
    color: var(--text-mid);
}
.achievement-list li::before {
    content: '';
    min-width: 20px;
    height: 20px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Ccircle cx='10' cy='10' r='9' fill='none' stroke='%23C9A84C' stroke-width='1.5'/%3E%3Cpolyline points='6,10 9,13 14,7' fill='none' stroke='%23C9A84C' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat;
    margin-top: 1px;
}
.founder-image-wrap {
    position: relative;
}
.founder-image-wrap img {
    width: 100%;
    height: 580px;
    object-fit: cover;
    object-position: top center;
    border-radius: 4px;
    box-shadow: var(--shadow-lg);
    display: block;
}
.founder-badge {
    position: absolute;
    bottom: -1.5rem;
    left: -1.5rem;
    background: var(--gold);
    color: var(--black);
    padding: 1.2rem 1.5rem;
    border-radius: 3px;
    text-align: center;
    box-shadow: var(--shadow-gold);
}
.founder-badge .badge-year {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}
.founder-badge .badge-text {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    display: block;
    margin-top: 0.2rem;
}
@media (max-width: 900px) {
    .founder-grid { grid-template-columns: 1fr; gap: 3rem; }
    .founder-image-wrap img { height: 420px; }
    .founder-badge { left: 1rem; bottom: 1rem; }
}

/* Vision section */
.vision-section {
    padding: 100px 2rem;
    background: var(--black);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.vision-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(201,168,76,0.15) 0%, transparent 65%);
}
.vision-inner {
    max-width: 820px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
.vision-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.3rem, 2.5vw, 1.8rem);
    color: var(--white);
    font-style: italic;
    font-weight: 400;
    line-height: 1.7;
    position: relative;
    padding: 0 2rem;
}
.vision-quote::before {
    content: '"';
    position: absolute;
    top: -1rem; left: 0;
    font-size: 5rem;
    color: var(--gold);
    opacity: 0.4;
    font-family: 'Cormorant Garamond', serif;
    line-height: 1;
}

/* Team section */
.team-section {
    padding: 100px 2rem;
    background: var(--ivory);
}
.team-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}
.team-text h2 { color: var(--text-dark); margin-bottom: 1.5rem; }
.team-image-wrap img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: var(--shadow-md);
}
@media (max-width: 900px) {
    .team-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .team-image-wrap img { height: 320px; }
}

/* About gallery */
.about-gallery {
    padding: 80px 2rem;
    background: var(--cream);
}
.about-gallery-grid {
    position: relative;
    display: flex;
    gap: 1rem;
    overflow: hidden;
    padding: 0.25rem 0;
}

/* Continuous horizontal gallery loop */
.about-gallery-track {
    display: flex;
    gap: 1rem;
    will-change: transform;
    animation: aboutGalleryScroll 22s linear infinite;
}

/* Each tile */
.about-gallery-grid .gallery-item {
    flex: 0 0 auto;
    width: 240px;
    height: 260px;
    border-radius: 3px;
}
.about-gallery-grid .gallery-item img {
    width: 100%;
    height: 100%;
}

@keyframes aboutGalleryScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
    .about-gallery-track { animation: none; }
}

@media (max-width: 900px) {
    .about-gallery-grid .gallery-item {
        width: 200px;
        height: 230px;
    }
}

@media (max-width: 768px) {
    .about-gallery-grid .gallery-item {
        width: 46vw;
        max-width: 240px;
        height: 250px;
    }
}
@media (max-width: 480px) {
    .about-gallery-grid .gallery-item {
        width: 70vw;
        max-width: 260px;
        height: 250px;
    }
}

/* ========== SERVICES PAGE ========== */
.service-section {
    padding: 100px 2rem;
}
.service-section:nth-child(odd) { background: var(--cream); }
.service-section:nth-child(even) { background: var(--ivory); }

.service-showcase {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2.5rem;
    align-items: stretch;
    max-width: 1100px;
    margin: 0 auto;
}
.showcase-images {
    display: grid;
    gap: 1rem;
}
.showcase-images img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: var(--shadow-sm);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.showcase-images img:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-md);
}
.showcase-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-width: 200px;
    padding: 1rem;
    gap: 1.5rem;
}
.service-logo {
    height: 90px;
    width: auto;
}
.service-contact-box {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 1.2rem;
    font-size: 0.85rem;
    color: var(--text-mid);
    width: 100%;
}
.service-contact-box p { margin: 0.25rem 0; font-size: 0.85rem; }
@media (max-width: 900px) {
    .service-showcase {
        grid-template-columns: 1fr;
    }
    .showcase-images { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
    .showcase-images { grid-template-columns: 1fr; }
    .showcase-images img { height: 220px; }
}

/* ========== EVENTS PAGE ========== */
.event-section {
    padding: 100px 2rem;
}
.event-section.event-light { background: var(--cream); }
.event-section.event-dark { background: var(--black); }
.event-section.event-dark h2 { color: var(--white); }
.event-section.event-dark p { color: rgba(255,255,255,0.65); }
.event-section.event-dark strong { color: var(--gold); }

.event-header {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}
.event-status {
    flex-shrink: 0;
    padding: 0.35rem 0.9rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 0.4rem;
}
.event-status.upcoming { background: var(--gold); color: var(--black); }
.event-status.completed { background: rgba(255,255,255,0.15); color: rgba(255,255,255,0.7); border: 1px solid rgba(255,255,255,0.2); }
.event-status.completed-dark { background: rgba(0,0,0,0.08); color: var(--gray-mid); border: 1px solid var(--border); }

.event-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    max-width: 1100px;
    margin: 0 auto;
}
.event-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
.event-gallery img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 4px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.event-gallery img:first-child {
    grid-column: span 2;
    height: 280px;
}
.event-gallery img:hover {
    transform: scale(1.04);
    box-shadow: var(--shadow-md);
}
@media (max-width: 900px) {
    .event-inner { grid-template-columns: 1fr; gap: 2.5rem; }
    .event-gallery img:first-child { height: 220px; }
}

/* ========== FOOTER ========== */
.footer {
    background: var(--black);
    border-top: 1px solid var(--border);
    padding: 3rem 2rem;
}
.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    align-items: center;
}
.footer-brand img {
    height: 50px;
    filter: brightness(0.9);
    margin-bottom: 1rem;
}
.footer-brand p { font-size: 0.85rem; color: var(--gray-mid); margin: 0; }
.footer-links {
    display: flex;
    gap: 2rem;
    flex-direction: column;
    align-items: center;
}
.footer-links a {
    color: rgba(255,255,255,0.5);
    font-size: 0.8rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: color 0.3s ease;
}
.footer-links a:hover { color: var(--gold); }
.footer-social {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    align-items: center;
}
.social-link {
    width: 40px;
    height: 40px;
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
    transition: all 0.3s ease;
}
.social-link[aria-label="WhatsApp"] svg { display: none; }
.social-link[aria-label="WhatsApp"]::before {
    content: '';
    width: 1.05rem;
    height: 1.05rem;
    background: currentColor;
    -webkit-mask: var(--wa-icon) center/contain no-repeat;
    mask: var(--wa-icon) center/contain no-repeat;
}
.social-link:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(201,168,76,0.1);
}
.footer-bottom {
    max-width: 1200px;
    margin: 2rem auto 0;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.06);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.footer-bottom p {
    color: rgba(255,255,255,0.3);
    font-size: 0.8rem;
    margin: 0;
}
@media (max-width: 768px) {
    .footer-inner { grid-template-columns: 1fr; text-align: center; }
    .footer-links { flex-direction: row; flex-wrap: wrap; justify-content: center; }
    .footer-social { justify-content: center; }
    .footer-bottom { justify-content: center; text-align: center; }
}

/* ========== FLOATING WHATSAPP ========== */
.wa-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 58px;
    height: 58px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 4px 20px rgba(37,211,102,0.5);
    z-index: 900;
    transition: all 0.3s ease;
    animation: wa-pulse 2.5s ease infinite;
    text-decoration: none;
}
.wa-float svg { display: none; }
.wa-float::before {
    content: '';
    width: 1.6rem;
    height: 1.6rem;
    background: var(--white);
    -webkit-mask: var(--wa-icon) center/contain no-repeat;
    mask: var(--wa-icon) center/contain no-repeat;
}
.wa-float:hover {
    background: #1aad54;
    transform: scale(1.1);
    animation: none;
    box-shadow: 0 6px 24px rgba(37,211,102,0.6);
}

/* ========== UTILITY ========== */
.text-gold { color: var(--gold); }
.text-center { text-align: center; }
.mt-2 { margin-top: 2rem; }
.mb-0 { margin-bottom: 0; }
