/* ===========================
   STYLEFIT INTERIORS — CSS
   Navy #0A192F | Gold #C9A84C | Cream #FAF8F3
=========================== */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'DM Sans', sans-serif; background: #FAF8F3; color: #1C2B3A; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: #0A192F; }
::-webkit-scrollbar-thumb { background: #C9A84C; border-radius: 2px; }

/* ─── VARIABLES ─── */
:root {
    --navy: #0A192F;
    --navy2: #0d2240;
    --gold: #C9A84C;
    --cream: #FAF8F3;
    --dark: #061220;
    --text: #1C2B3A;
    --gray: #6B7280;
    --radius: 2px;
    --shadow: 0 4px 24px rgba(10,25,47,.12);
    --shadow-lg: 0 16px 48px rgba(10,25,47,.18);
}

/* ─── TYPOGRAPHY ─── */
.font-display { font-family: 'Cormorant Garamond', serif; }
.eyebrow { font-size: 10px; font-weight: 600; letter-spacing: .28em; text-transform: uppercase; color: var(--gold); display: block; }
.section-heading { font-family: 'Cormorant Garamond', serif; font-size: clamp(2rem, 4vw, 3.5rem); font-weight: 600; color: var(--navy); line-height: 1.1; }
.section-heading span { color: var(--gold); font-style: italic; }
.gold-line::after { content: ''; display: block; width: 48px; height: 2px; background: var(--gold); margin-top: 14px; }
.gold-line-c::after { content: ''; display: block; width: 48px; height: 2px; background: var(--gold); margin: 14px auto 0; }

/* ─── LAYOUT ─── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-pad { padding: 80px 0; }
.section-pad-lg { padding: 100px 0; }
.text-center { text-align: center; }

/* ─── BUTTONS ─── */
.btn-gold {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--gold); color: #fff;
    font-size: 10px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase;
    padding: 13px 28px; border: 2px solid var(--gold); border-radius: var(--radius);
    transition: background .3s, color .3s, transform .2s;
    cursor: pointer;
}
.btn-gold:hover { background: transparent; color: var(--gold); }
.btn-ghost {
    display: inline-flex; align-items: center; gap: 8px;
    background: transparent; color: #fff;
    font-size: 10px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase;
    padding: 13px 28px; border: 2px solid rgba(255,255,255,.4); border-radius: var(--radius);
    transition: border-color .3s, color .3s;
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn-navy {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--navy); color: #fff;
    font-size: 10px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase;
    padding: 13px 28px; border: 2px solid var(--navy); border-radius: var(--radius);
    transition: background .3s, color .3s;
}
.btn-navy:hover { background: transparent; color: var(--navy); }
.btn-whatsapp {
    display: inline-flex; align-items: center; gap: 8px;
    background: #25D366; color: #fff;
    font-size: 10px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase;
    padding: 13px 28px; border: 2px solid #25D366; border-radius: var(--radius);
    transition: background .3s;
}
.btn-whatsapp:hover { background: #1db954; }
.btn-sm { font-size: 10px; padding: 10px 18px; }
.w-full { width: 100%; justify-content: center; }

/* ─── TOPBAR ─── */
.topbar { background: #061220; border-bottom: 1px solid rgba(201,168,76,.1); display: none; }
@media(min-width:768px){ .topbar { display: block; } }
.topbar-inner { display: flex; justify-content: space-between; align-items: center; padding: 10px 24px; }
.topbar-left, .topbar-right { display: flex; align-items: center; gap: 24px; font-size: 11px; color: rgba(255,255,255,.55); font-weight: 300; }
.topbar-left a:hover, .topbar-right a:hover { color: var(--gold); }
.topbar-left i, .topbar-right i { color: var(--gold); font-size: 9px; margin-right: 5px; }
.topbar-social { display: flex; gap: 14px; }
.topbar-social a { color: rgba(255,255,255,.4); font-size: 11px; transition: color .2s; }
.topbar-social a:hover { color: var(--gold); }

/* ─── NAVBAR ─── */
.navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: rgba(10,25,47,.95); backdrop-filter: blur(12px);
    transition: box-shadow .4s, background .4s;
}
@media(min-width:768px){ .navbar { top: 40px; } }
.navbar.scrolled { background: rgba(10,25,47,.98); box-shadow: 0 4px 40px rgba(0,0,0,.35); }
.navbar-inner { display: flex; align-items: center; justify-content: space-between; padding: 12px 24px; gap: 16px; }
.navbar-logo { display: flex; align-items: center; gap: 12px; }
.logo-circle { width: 48px; height: 48px; border-radius: 50%; overflow: hidden; border: 2px solid rgba(201,168,76,.4); background: #fff; flex-shrink: 0; }
.logo-circle img { width: 100%; height: 100%; object-fit: cover; }
.logo-circle-lg { width: 72px; height: 72px; }
.logo-circle-sm { width: 52px; height: 52px; }
.logo-name { display: block; font-family: 'Cormorant Garamond', serif; font-size: 18px; font-weight: 600; color: #fff; line-height: 1.1; }
.logo-tagline { display: block; font-size: 9px; font-weight: 500; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); margin-top: 1px; }

.nav-links { display: none; align-items: center; gap: 32px; }
@media(min-width:1024px){ .nav-links { display: flex; } }
.nav-links > li { position: relative; }
.nav-links > li > a { font-size: 11px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: rgba(255,255,255,.8); padding-bottom: 4px; transition: color .2s; position: relative; }
.nav-links > li > a::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 1.5px; background: var(--gold); transition: width .3s; }
.nav-links > li > a:hover, .nav-links > li > a.active { color: var(--gold); }
.nav-links > li > a:hover::after, .nav-links > li > a.active::after { width: 100%; }

/* Dropdown */
.has-dropdown { position: relative; }
.dropdown { display: none; position: absolute; top: 100%; left: 0; min-width: 220px; background: var(--dark); border: 1px solid rgba(201,168,76,.15); border-top: 2px solid var(--gold); padding: 8px 0; z-index: 200; border-radius: 0 0 4px 4px; box-shadow: 0 16px 40px rgba(0,0,0,.4); }
.has-dropdown:hover .dropdown { display: block; }
.dropdown li a { display: block; padding: 10px 20px; font-size: 12px; font-weight: 400; color: rgba(255,255,255,.7); transition: color .2s, padding-left .2s; }
.dropdown li a:hover { color: var(--gold); padding-left: 26px; }

.navbar-cta { display: flex; align-items: center; gap: 12px; }
.hamburger { display: flex; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
@media(min-width:1024px){ .hamburger { display: none; } }
.hamburger span { display: block; width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: transform .3s, opacity .3s; }
.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); }

/* Mobile Menu */
.mobile-menu { position: fixed; inset: 0; background: var(--navy); z-index: 300; transform: translateX(100%); transition: transform .45s cubic-bezier(.77,0,.175,1); display: flex; flex-direction: column; padding: 24px; overflow-y: auto; }
.mobile-menu.open { transform: translateX(0); }
.mobile-close { position: absolute; top: 20px; right: 20px; background: none; border: none; color: #fff; font-size: 28px; cursor: pointer; }
.mobile-close:hover { color: var(--gold); }
.mobile-logo { text-align: center; padding: 48px 0 32px; }
.mobile-brand { font-family: 'Cormorant Garamond', serif; font-size: 22px; color: #fff; margin-top: 12px; font-weight: 600; }
.mobile-nav { display: flex; flex-direction: column; gap: 4px; flex: 1; }
.mobile-nav li a { display: flex; align-items: center; gap: 14px; font-family: 'Cormorant Garamond', serif; font-size: 26px; font-weight: 600; color: rgba(255,255,255,.8); padding: 12px 16px; border-radius: 4px; transition: color .2s, background .2s; }
.mobile-nav li a i { font-size: 18px; color: var(--gold); width: 24px; }
.mobile-nav li a:hover { color: var(--gold); background: rgba(201,168,76,.06); }
.mobile-contact { display: flex; flex-direction: column; gap: 10px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.1); }
.mobile-overlay { position: fixed; inset: 0; background: rgba(0,0,0,.6); z-index: 299; display: none; }
.mobile-overlay.show { display: block; }

/* ─── HERO ─── */
.hero { min-height: 100vh; background: var(--navy); display: flex; align-items: center; position: relative; overflow: hidden; padding: 120px 0 60px; }
.hero-bg-img { position: absolute; inset: 0; }
.hero-bg-img img { width: 100%; height: 100%; object-fit: cover; opacity: .07; }
.hero-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(201,168,76,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(201,168,76,.04) 1px, transparent 1px); background-size: 48px 48px; }
.hero-content { position: relative; z-index: 2; text-align: center; max-width: 880px; margin: 0 auto; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 10px; font-size: 10px; font-weight: 600; letter-spacing: .28em; text-transform: uppercase; color: var(--gold); margin-bottom: 24px; }
.hero-eyebrow::before, .hero-eyebrow::after { content: ''; width: 32px; height: 1px; background: var(--gold); opacity: .4; }
.hero-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(2.4rem, 5vw, 5rem); font-weight: 600; color: #fff; line-height: 1.05; margin-bottom: 24px; }
.hero-title span { color: var(--gold); font-style: italic; }
.hero-subtitle { font-size: clamp(.85rem, 1.5vw, 1.05rem); font-weight: 300; color: rgba(255,255,255,.65); line-height: 1.8; max-width: 680px; margin: 0 auto 36px; }
.hero-subtitle strong { color: #fff; font-weight: 500; }
.hero-pills { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-bottom: 40px; }
.hero-pill { font-size: 9px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: rgba(201,168,76,.8); border: 1px solid rgba(201,168,76,.2); padding: 7px 16px; border-radius: 100px; transition: border-color .2s, color .2s; }
.hero-pill:hover { border-color: var(--gold); color: var(--gold); }
.hero-btns { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin-bottom: 56px; }
.hero-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; max-width: 600px; margin: 0 auto; }
@media(min-width:640px){ .hero-stats { grid-template-columns: repeat(4, 1fr); } }
.stat-box { border-left: 2px solid rgba(201,168,76,.3); padding-left: 16px; text-align: left; }
.stat-num { font-family: 'Cormorant Garamond', serif; font-size: 2.4rem; font-weight: 600; color: var(--gold); line-height: 1; }
.stat-label { font-size: 9px; font-weight: 300; color: rgba(255,255,255,.45); letter-spacing: .1em; text-transform: uppercase; margin-top: 4px; }

/* ─── PAGE HERO (inner pages) ─── */
.page-hero { background: var(--navy); padding: 100px 0 60px; text-align: center; position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(201,168,76,.03) 1px, transparent 1px), linear-gradient(90deg, rgba(201,168,76,.03) 1px, transparent 1px); background-size: 48px 48px; }
.page-hero-content { position: relative; z-index: 1; }
.page-hero h1 { font-family: 'Cormorant Garamond', serif; font-size: clamp(2rem, 4vw, 3.5rem); font-weight: 600; color: #fff; }
.page-hero h1 span { color: var(--gold); font-style: italic; }
.page-hero p { color: rgba(255,255,255,.55); font-size: 14px; font-weight: 300; margin-top: 14px; }
.breadcrumb { display: flex; align-items: center; justify-content: center; gap: 8px; font-size: 11px; color: rgba(255,255,255,.4); margin-top: 16px; }
.breadcrumb a { color: rgba(255,255,255,.4); transition: color .2s; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb i { font-size: 8px; }

/* ─── ABOUT STRIP (homepage) ─── */
.about-strip { background: var(--navy); padding: 40px 0; }
.strip-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: rgba(201,168,76,.1); }
@media(min-width:768px){ .strip-grid { grid-template-columns: repeat(4, 1fr); } }
.strip-item { background: var(--navy); padding: 28px 32px; text-align: center; }
.strip-item i { font-size: 24px; color: var(--gold); margin-bottom: 12px; }
.strip-item h4 { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-weight: 600; color: #fff; margin-bottom: 4px; }
.strip-item p { font-size: 12px; font-weight: 300; color: rgba(255,255,255,.45); }

/* ─── PRODUCT CARDS ─── */
.products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; margin-top: 40px; }
.product-card { background: #fff; border: 1px solid rgba(201,168,76,.12); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: transform .3s, box-shadow .3s, border-color .3s; display: flex; flex-direction: column; }
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(201,168,76,.35); }
.product-card-img { position: relative; height: 220px; overflow: hidden; background: #e5e7eb; }
.product-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.product-card:hover .product-card-img img { transform: scale(1.05); }
.product-cat-tag { position: absolute; top: 12px; left: 12px; background: var(--gold); color: #fff; font-size: 8px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; padding: 5px 12px; border-radius: 100px; }
.product-card-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.product-card-body h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; font-weight: 600; color: var(--navy); margin-bottom: 8px; }
.product-card-body p { font-size: 13px; font-weight: 300; color: var(--gray); line-height: 1.6; flex: 1; }
.product-features { display: flex; flex-wrap: wrap; gap: 6px; margin: 14px 0; }
.feat-pill { font-size: 9px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--navy); background: rgba(201,168,76,.12); border: 1px solid rgba(201,168,76,.2); padding: 4px 10px; border-radius: 100px; }
.product-card-footer { padding: 16px 20px; border-top: 1px solid rgba(201,168,76,.1); display: flex; gap: 10px; }

/* Filter pills */
.filter-bar { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 8px; }
.filter-pill { font-size: 10px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--navy); background: transparent; border: 1.5px solid rgba(10,25,47,.2); padding: 9px 20px; border-radius: 100px; cursor: pointer; transition: all .25s; }
.filter-pill:hover, .filter-pill.active { background: var(--gold); color: #fff; border-color: var(--gold); }

/* ─── WHY US CARDS ─── */
.why-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 24px; margin-top: 40px; }
.why-card { background: #fff; border: 1px solid rgba(201,168,76,.12); padding: 32px 28px; border-radius: var(--radius); box-shadow: var(--shadow); transition: transform .3s, border-color .3s; }
.why-card:hover { transform: translateY(-4px); border-color: var(--gold); }
.why-icon { width: 52px; height: 52px; background: rgba(201,168,76,.1); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.why-icon i { font-size: 22px; color: var(--gold); }
.why-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.25rem; font-weight: 600; color: var(--navy); margin-bottom: 10px; }
.why-card p { font-size: 13px; font-weight: 300; color: var(--gray); line-height: 1.7; }

/* ─── GALLERY ─── */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 16px; margin-top: 40px; }
.gallery-item { position: relative; overflow: hidden; border-radius: var(--radius); aspect-ratio: 4/3; cursor: pointer; background: #e5e7eb; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay { position: absolute; inset: 0; background: rgba(10,25,47,.5); opacity: 0; transition: opacity .3s; display: flex; align-items: center; justify-content: center; }
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay i { font-size: 28px; color: #fff; }
.gallery-label { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(transparent, rgba(10,25,47,.8)); padding: 24px 14px 12px; }
.gallery-label span { font-size: 11px; font-weight: 500; color: #fff; letter-spacing: .08em; }

/* ─── TESTIMONIALS ─── */
.testi-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; margin-top: 40px; }
.testi-card { background: #fff; border: 1px solid rgba(201,168,76,.12); padding: 28px; border-radius: var(--radius); box-shadow: var(--shadow); }
.testi-stars { color: var(--gold); font-size: 13px; margin-bottom: 14px; }
.testi-text { font-size: 14px; font-weight: 300; color: var(--gray); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar { width: 42px; height: 42px; background: rgba(201,168,76,.15); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-weight: 700; color: var(--gold); flex-shrink: 0; }
.testi-name { font-weight: 600; font-size: 14px; color: var(--navy); }
.testi-place { font-size: 11px; color: var(--gray); }

/* ─── CONTACT ─── */
.contact-wrap { display: grid; grid-template-columns: 1fr; gap: 0; background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); border: 1px solid rgba(201,168,76,.12); }
@media(min-width:1024px){ .contact-wrap { grid-template-columns: 5fr 7fr; } }
.contact-left { background: var(--navy); padding: 48px 40px; position: relative; overflow: hidden; }
.contact-left::before { content: ''; position: absolute; bottom: -60px; right: -60px; width: 200px; height: 200px; border: 1px solid rgba(201,168,76,.08); border-radius: 50%; pointer-events: none; }
.contact-left::after { content: ''; position: absolute; bottom: -20px; right: -20px; width: 100px; height: 100px; border: 1px solid rgba(201,168,76,.08); border-radius: 50%; pointer-events: none; }
.contact-info-list { display: flex; flex-direction: column; gap: 22px; margin-top: 32px; }
.cinfo-item { display: flex; align-items: flex-start; gap: 16px; }
.cinfo-icon { width: 36px; height: 36px; background: rgba(201,168,76,.1); border-radius: var(--radius); flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.cinfo-icon i { font-size: 14px; color: var(--gold); }
.cinfo-text h5 { font-size: 13px; font-weight: 600; color: #fff; margin-bottom: 2px; }
.cinfo-text p, .cinfo-text a { font-size: 13px; font-weight: 300; color: rgba(255,255,255,.6); line-height: 1.6; }
.cinfo-text a:hover { color: var(--gold); }
.contact-social { display: flex; gap: 10px; margin-top: 32px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.08); }
.contact-social a { width: 36px; height: 36px; background: rgba(255,255,255,.05); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; color: #fff; font-size: 13px; transition: background .2s, color .2s; }
.contact-social a:hover { background: var(--gold); }
.contact-right { padding: 48px 40px; }
.contact-right h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; font-weight: 600; color: var(--navy); margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr; gap: 18px; margin-bottom: 18px; }
@media(min-width:640px){ .form-row { grid-template-columns: 1fr 1fr; } }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 10px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: rgba(10,25,47,.6); }
.finput { width: 100%; padding: 12px 16px; border: 1.5px solid rgba(10,25,47,.15); border-radius: var(--radius); font-size: 13px; font-family: 'DM Sans', sans-serif; color: var(--text); background: #fff; transition: border-color .2s; outline: none; }
.finput:focus { border-color: var(--gold); }
textarea.finput { resize: vertical; min-height: 100px; }
select.finput { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23C9A84C' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; }
.form-note { font-size: 11px; color: var(--gray); text-align: center; margin-top: 10px; }
.form-note a { color: var(--gold); }
.form-success { display: none; background: #f0fdf4; border: 1px solid #bbf7d0; padding: 16px; border-radius: 4px; text-align: center; color: #166534; font-size: 14px; }

/* ─── MAP ─── */
.map-section { position: relative; height: 420px; }
.map-section iframe { position: absolute; inset: 0; width: 100%; height: 100%; filter: grayscale(40%); transition: filter .5s; border: 0; }
.map-section iframe:hover { filter: grayscale(0%); }
.map-card { position: absolute; top: 50%; left: 40px; transform: translateY(-50%); background: rgba(10,25,47,.96); backdrop-filter: blur(14px); border-top: 3px solid var(--gold); padding: 28px 32px; max-width: 300px; border-radius: 0 0 2px 2px; box-shadow: var(--shadow-lg); }
.map-card h4 { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; font-weight: 600; color: #fff; margin: 8px 0 18px; }
.map-info-list { display: flex; flex-direction: column; gap: 12px; }
.map-info-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 12px; color: rgba(255,255,255,.55); font-weight: 300; line-height: 1.5; }
.map-info-list i { color: var(--gold); font-size: 11px; margin-top: 2px; flex-shrink: 0; }
.map-info-list a { color: rgba(255,255,255,.55); }
.map-info-list a:hover { color: var(--gold); }

/* ─── TEAM SECTION ─── */
.team-section { background: var(--navy); padding: 80px 0; position: relative; overflow: hidden; }
.team-grid { display: grid; grid-template-columns: 1fr; gap: 28px; max-width: 900px; margin: 40px auto 0; }
@media(min-width:768px){ .team-grid { grid-template-columns: 1fr 1fr; } }
.team-card { background: var(--navy2); border: 1px solid rgba(201,168,76,.18); border-radius: var(--radius); overflow: hidden; transition: transform .3s; }
.team-card:hover { transform: translateY(-6px); }
.team-card-top { height: 200px; background: linear-gradient(135deg, #0f2847, #1a3a6b); display: flex; flex-direction: column; align-items: center; justify-content: center; position: relative; border-bottom: 1px solid rgba(201,168,76,.12); }
.team-card-top::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, transparent, var(--gold), transparent); }
.team-avatar { width: 96px; height: 96px; border-radius: 50%; border: 3px solid rgba(201,168,76,.45); overflow: hidden; background: linear-gradient(135deg, #1a3a6b, var(--navy)); display: flex; align-items: center; justify-content: center; }
.team-avatar img { width: 100%; height: 100%; object-fit: cover; }
.team-avatar-initial { font-family: 'Cormorant Garamond', serif; font-size: 3rem; font-weight: 700; color: var(--gold); }
.team-badge { margin-top: 14px; background: rgba(201,168,76,.15); border: 1px solid rgba(201,168,76,.3); padding: 5px 16px; border-radius: 100px; }
.team-badge span { font-size: 9px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); }
.team-card-body { padding: 24px 28px; }
.team-card-body h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; font-weight: 600; color: #fff; margin-bottom: 4px; }
.team-card-body .role { font-size: 10px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
.team-card-body p { font-size: 13px; font-weight: 300; color: rgba(255,255,255,.55); line-height: 1.7; margin-bottom: 20px; }
.team-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 20px; }
.team-tag { font-size: 9px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: rgba(201,168,76,.7); border: 1px solid rgba(201,168,76,.2); padding: 4px 10px; border-radius: 100px; }
.team-btns { display: flex; gap: 8px; }
.team-btns a { flex: 1; display: flex; align-items: center; justify-content: center; gap: 6px; padding: 10px; font-size: 10px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; border-radius: var(--radius); border: 1px solid; transition: all .25s; }
.team-btn-call { color: var(--gold); border-color: rgba(201,168,76,.3); background: rgba(201,168,76,.07); }
.team-btn-call:hover { background: var(--gold); color: #fff; border-color: var(--gold); }
.team-btn-wa { color: #4ade80; border-color: rgba(74,222,128,.2); background: rgba(74,222,128,.05); }
.team-btn-wa:hover { background: #25D366; color: #fff; border-color: #25D366; }
.gst-bar { margin-top: 48px; background: var(--navy2); border: 1px solid rgba(201,168,76,.15); border-radius: var(--radius); overflow: hidden; max-width: 900px; margin-left: auto; margin-right: auto; }
.gst-bar-top { background: rgba(201,168,76,.08); border-bottom: 1px solid rgba(201,168,76,.12); padding: 12px 24px; display: flex; align-items: center; gap: 10px; }
.gst-bar-top i { color: var(--gold); }
.gst-bar-top span { font-size: 10px; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; color: var(--gold); }
.gst-bar-body { display: grid; grid-template-columns: 1fr; gap: 1px; background: rgba(201,168,76,.08); }
@media(min-width:640px){ .gst-bar-body { grid-template-columns: repeat(3, 1fr); } }
.gst-cell { background: var(--navy2); padding: 24px 28px; }
.gst-cell .eyebrow { margin-bottom: 8px; }
.gst-cell h4 { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; font-weight: 600; color: #fff; }
.gst-cell p { font-size: 12px; color: rgba(255,255,255,.45); font-weight: 300; margin-top: 4px; }
.gst-num { font-family: monospace; font-size: 1.1rem; font-weight: 600; color: #fff; letter-spacing: .12em; }

/* ─── FOOTER ─── */
.footer { background: var(--dark); padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 40px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.05); }
@media(min-width:640px){ .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media(min-width:1024px){ .footer-grid { grid-template-columns: 2fr 1.5fr 1.5fr 2fr; } }
.footer-brand { }
.footer-title { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-weight: 600; color: #fff; margin: 14px 0 10px; }
.footer-desc { font-size: 12px; font-weight: 300; color: rgba(255,255,255,.4); line-height: 1.8; margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 34px; height: 34px; background: rgba(255,255,255,.05); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.5); font-size: 12px; transition: background .2s, color .2s; }
.footer-social a:hover { background: var(--gold); color: #fff; }
.footer-heading { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-weight: 600; color: #fff; margin-bottom: 18px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links li a { font-size: 12px; font-weight: 300; color: rgba(255,255,255,.45); transition: color .2s, padding-left .2s; display: inline-block; }
.footer-links li a:hover { color: var(--gold); padding-left: 5px; }
.footer-gst { margin-top: 24px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.06); }
.footer-gst-label { font-size: 9px; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; color: var(--gold); margin-bottom: 4px; }
.footer-gst-num { font-family: monospace; font-size: 13px; color: rgba(255,255,255,.6); letter-spacing: .1em; }
.footer-contact-list { display: flex; flex-direction: column; gap: 14px; }
.footer-contact-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 12px; color: rgba(255,255,255,.45); font-weight: 300; line-height: 1.6; }
.footer-contact-list i { color: var(--gold); font-size: 11px; margin-top: 2px; flex-shrink: 0; width: 14px; }
.footer-contact-list a { color: rgba(255,255,255,.45); transition: color .2s; }
.footer-contact-list a:hover { color: var(--gold); }
.footer-bottom { padding: 18px 0; }
.footer-bottom-inner { display: flex; flex-direction: column; align-items: center; gap: 6px; text-align: center; }
@media(min-width:640px){ .footer-bottom-inner { flex-direction: row; justify-content: space-between; } }
.footer-bottom-inner p { font-size: 10px; font-weight: 300; color: rgba(255,255,255,.25); letter-spacing: .08em; text-transform: uppercase; }

/* ─── WHATSAPP FLOAT ─── */
.whatsapp-float { position: fixed; bottom: 28px; right: 28px; z-index: 500; width: 56px; height: 56px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 20px rgba(37,211,102,.4); transition: transform .2s, box-shadow .2s; }
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,.5); }
.whatsapp-float i { font-size: 28px; color: #fff; }

/* ─── LIGHTBOX ─── */
.lightbox { position: fixed; inset: 0; background: rgba(0,0,0,.92); z-index: 1000; display: none; align-items: center; justify-content: center; padding: 20px; }
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 88vh; object-fit: contain; border-radius: 2px; }
.lightbox-close { position: absolute; top: 16px; right: 20px; color: #fff; font-size: 32px; cursor: pointer; background: none; border: none; transition: color .2s; }
.lightbox-close:hover { color: var(--gold); }
.lightbox-prev, .lightbox-next { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,.1); border: none; color: #fff; font-size: 22px; width: 48px; height: 48px; border-radius: 50%; cursor: pointer; transition: background .2s; display: flex; align-items: center; justify-content: center; }
.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }
.lightbox-prev:hover, .lightbox-next:hover { background: var(--gold); }

/* ─── UTILITY ─── */
.bg-cream { background: var(--cream); }
.bg-navy { background: var(--navy); }
.bg-white { background: #fff; }
.dot-bg { background-image: radial-gradient(circle, rgba(201,168,76,.12) 1px, transparent 1px); background-size: 28px 28px; }
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .6s, transform .6s cubic-bezier(.16,1,.3,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ─── RESPONSIVE ─── */
@media(max-width:767px){
    .map-card { left: 12px; right: 12px; top: auto; bottom: 12px; transform: none; max-width: 100%; }
    .map-section { height: 480px; }
    .contact-left { padding: 32px 24px; }
    .contact-right { padding: 32px 24px; }
}
