

:root {
    --teal-950: #051f21;
    --teal-900: #072B2E;
    --teal-850: #083337;
    --teal-800: #0E4448;
    --teal-700: #135458;
    --gold: #C7A34C;
    --gold-dark: #A88535;
    --gold-light: #E8CE85;
    --white: #ffffff;
    --white-70: rgba(255, 255, 255, 0.7);
    --white-60: rgba(255, 255, 255, 0.6);
    --white-50: rgba(255, 255, 255, 0.5);
    --white-15: rgba(255, 255, 255, 0.15);
    --white-10: rgba(255, 255, 255, 0.1);
    --white-05: rgba(255, 255, 255, 0.05);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    background-color: var(--teal-800);
    color: var(--white);
    font-family: "Outfit", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.5;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Playfair Display", Georgia, serif;
    margin: 0;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }
ul { list-style: none; padding: 0; margin: 0; }

::selection { background: var(--gold); color: var(--teal-950); }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography helpers */
.gold-italic {
    background: linear-gradient(135deg, #E8CE85 0%, #C7A34C 45%, #A88535 100%);
    -webkit-background-clip: text; background-clip: text;
    color: transparent;
    font-style: italic;
    font-weight: 500;
}
.eyebrow {
    display: inline-flex; align-items: center; gap: 12px;
    font-family: "Outfit", sans-serif;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.32em;
    color: var(--gold);
    font-weight: 500;
}
.eyebrow::before {
    content: ""; width: 36px; height: 1px; background: var(--gold);
}
.eyebrow-mini {
    font-size: 10px; letter-spacing: 0.25em; text-transform: uppercase;
    color: var(--white-50);
}
.gold-line {
    display: inline-block; width: 60px; height: 1px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
}

/* ============ NAVBAR ============ */
.navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 50;
    background: transparent;
    transition: all 0.5s ease;
    border-bottom: 1px solid transparent;
}
.navbar.scrolled {
    background: rgba(14, 68, 72, 0.95);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom-color: rgba(199, 163, 76, 0.25);
    box-shadow: 0 6px 24px rgba(0,0,0,0.35);
}
.nav-inner {
    display: flex; align-items: center; justify-content: space-between;
    height: 84px;
}
.nav-logo img {
    height: 42px; width: auto;
    filter: drop-shadow(0 2px 12px rgba(199,163,76,0.25));
}
.nav-links { display: flex; align-items: center; gap: 40px; }
.nav-link {
    font-size: 14px; font-weight: 500;
    color: rgba(255,255,255,0.85);
    letter-spacing: 0.02em;
    transition: color 0.2s ease;
    position: relative; padding-bottom: 4px;
}
.nav-link::after {
    content: ""; position: absolute; left: 0; bottom: 0;
    width: 0; height: 1px; background: var(--gold); transition: width 0.3s;
}
.nav-link:hover { color: var(--gold); }
.nav-link:hover::after { width: 100%; }

.nav-cta { display: inline-flex; }

.nav-burger {
    display: none;
    background: transparent; border: 0; padding: 10px;
    color: var(--white);
    border-radius: 999px;
}
.nav-burger span {
    display: block; width: 22px; height: 2px; margin: 4px 0;
    background: var(--white); transition: transform 0.3s, opacity 0.3s;
}
.nav-burger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.mobile-menu {
    display: none;
    padding: 20px 24px 28px;
    background: rgba(14, 68, 72, 0.98);
    backdrop-filter: blur(18px);
    border-top: 1px solid rgba(199,163,76,0.2);
    flex-direction: column; gap: 6px;
}
.mobile-menu.open { display: flex; animation: fadeInUp 0.3s ease-out; }
.mobile-menu a {
    padding: 12px 8px; font-size: 16px; font-weight: 500;
    color: var(--white); border-radius: 6px;
    transition: background 0.2s, color 0.2s;
}
.mobile-menu a:not(.btn):hover { background: var(--white-05); color: var(--gold); }

/* ============ BUTTONS ============ */
.btn {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 14px 28px;
    border-radius: 999px;
    font-weight: 600; font-size: 15px;
    border: 1px solid transparent;
    transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
    cursor: pointer;
}
.btn-gold {
    background: var(--gold); color: var(--teal-950);
}
.btn-gold:hover {
    background: var(--gold-dark); transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(199,163,76,0.35);
}
.btn-outline-gold {
    background: rgba(199,163,76,0.08); color: var(--gold);
    border-color: var(--gold);
    padding: 10px 22px; font-size: 14px;
}
.btn-outline-gold:hover { background: var(--gold); color: var(--teal-950); }
.btn-outline-white {
    background: rgba(255,255,255,0.05); color: var(--white);
    border-color: rgba(199,163,76,0.4);
    backdrop-filter: blur(6px);
}
.btn-outline-white:hover { border-color: var(--gold); transform: translateY(-2px); }

/* ============ HERO ============ */
.hero {
    position: relative; overflow: hidden;
    min-height: 100svh;
    display: flex; align-items: center;
    background: var(--teal-800);
    padding: 140px 0 100px;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.4; }
.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(120deg, rgba(14,68,72,0.96) 0%, rgba(14,68,72,0.85) 45%, rgba(14,68,72,0.55) 100%);
}
.hero-grid-pattern {
    position: absolute; inset: 0; opacity: 0.05;
    background-image:
        linear-gradient(#C7A34C 1px, transparent 1px),
        linear-gradient(90deg, #C7A34C 1px, transparent 1px);
    background-size: 80px 80px;
}
.hero-corner-tr {
    position: absolute; top: 120px; right: 40px;
    width: 160px; height: 160px;
    border-top: 1px solid rgba(199,163,76,0.4);
    border-right: 1px solid rgba(199,163,76,0.4);
    pointer-events: none; z-index: 1;
}
.hero-corner-bl {
    position: absolute; bottom: 60px; left: 40px;
    width: 128px; height: 128px;
    border-bottom: 1px solid rgba(199,163,76,0.4);
    border-left: 1px solid rgba(199,163,76,0.4);
    pointer-events: none; z-index: 1;
}
.hero-content { position: relative; z-index: 2; width: 100%; }

.eyebrow-pill {
    display: inline-flex; align-items: center; gap: 12px;
    padding: 8px 18px; border-radius: 999px;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(199,163,76,0.3);
    font-size: 11px; text-transform: uppercase; letter-spacing: 0.35em;
    color: var(--gold-light); font-weight: 500;
    margin-bottom: 32px;
}
.dot-gold {
    width: 8px; height: 8px; border-radius: 999px; background: var(--gold);
    box-shadow: 0 0 12px var(--gold);
}

.hero-brand { margin-bottom: 24px; max-width: 520px; }
.hero-brand-img {
    width: 100%; height: auto;
    filter: drop-shadow(0 8px 32px rgba(199,163,76,0.35));
}

.hero-title {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 500; line-height: 1.05;
    color: var(--white);
    letter-spacing: -0.01em;
    max-width: 800px;
}
.hero-sub-line { font-size: 0.75em; color: rgba(255,255,255,0.8); }
.hero-subtitle {
    margin-top: 28px; max-width: 560px;
    font-size: 1.05rem; color: rgba(255,255,255,0.72);
    line-height: 1.7;
}
.hero-actions {
    margin-top: 36px;
    display: flex; flex-wrap: wrap; gap: 16px;
}
.hero-stats {
    margin-top: 64px; max-width: 640px;
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.stat-num {
    font-family: "Playfair Display", serif;
    font-size: clamp(1.5rem, 3vw, 2.25rem); font-weight: 700;
    background: linear-gradient(135deg, #E8CE85, #C7A34C, #A88535);
    -webkit-background-clip: text; background-clip: text; color: transparent;
}
.stat-label {
    margin-top: 6px;
    font-size: 10px; text-transform: uppercase; letter-spacing: 0.25em;
    color: rgba(255,255,255,0.55);
}

.scroll-hint {
    position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
    z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 12px;
    color: rgba(255,255,255,0.6);
    font-size: 10px; text-transform: uppercase; letter-spacing: 0.3em;
    transition: color 0.2s;
}
.scroll-hint:hover { color: var(--gold); }
.scroll-line {
    width: 1px; height: 48px;
    background: linear-gradient(to bottom, rgba(199,163,76,0.7), transparent);
}

/* ============ SECTIONS ============ */
.section { position: relative; padding: 100px 0; overflow: hidden; }
.section-teal { background: var(--teal-800); }
.section-teal-deep { background: var(--teal-850); }

.section-head { max-width: 640px; margin: 0 auto 60px; text-align: center; }
.section-head .eyebrow { justify-content: center; }
.section-title {
    font-size: clamp(2rem, 4vw, 3.5rem); font-weight: 700;
    letter-spacing: -0.01em; line-height: 1.05; color: var(--white);
    margin-top: 20px;
}
.section-desc {
    margin-top: 22px;
    color: rgba(255,255,255,0.65);
    font-size: 1rem; line-height: 1.75;
}
.hours {
    margin-top: 22px;
    display: inline-flex; align-items: center; gap: 12px;
    color: rgba(255,255,255,0.6); font-size: 14px;
}
.hours svg { color: var(--gold); }

/* ============ ABOUT ============ */
.dotted-pattern {
    position: absolute; inset: 0; opacity: 0.04; pointer-events: none;
    background-image: radial-gradient(circle at 1px 1px, #C7A34C 1px, transparent 0);
    background-size: 24px 24px;
}
.about-grid {
    position: relative;
    display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
    align-items: center;
}
.about-visual { position: relative; }
.about-img-wrap {
    position: relative; overflow: hidden;
    aspect-ratio: 4 / 5; background: var(--teal-800);
    box-shadow: inset 0 0 0 1px rgba(199,163,76,0.25);
}
.about-img-wrap img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.about-visual:hover .about-img-wrap img { transform: scale(1.06); }
.about-corner-tl {
    position: absolute; top: -24px; left: -24px; width: 96px; height: 96px;
    border-top: 2px solid rgba(199,163,76,0.6);
    border-left: 2px solid rgba(199,163,76,0.6);
}
.about-corner-br {
    position: absolute; bottom: -24px; right: -24px; width: 128px; height: 128px;
    border-bottom: 2px solid var(--gold);
    border-right: 2px solid var(--gold);
}
.about-badge {
    position: absolute; bottom: -32px; left: 40px;
    background: var(--teal-950); color: var(--white);
    padding: 18px 26px;
    border: 1px solid rgba(199,163,76,0.6);
    box-shadow: 0 12px 40px rgba(0,0,0,0.55);
}
.about-badge-num {
    font-family: "Playfair Display", serif;
    font-size: 2.5rem; font-weight: 700; line-height: 1;
    background: linear-gradient(135deg, #E8CE85, #C7A34C, #A88535);
    -webkit-background-clip: text; background-clip: text; color: transparent;
}
.about-badge-label {
    margin-top: 6px; font-size: 10px; text-transform: uppercase;
    letter-spacing: 0.25em; color: rgba(255,255,255,0.7);
}
.about-content .section-title { text-align: left; }
.para {
    margin: 24px 0 0; font-size: 1.05rem; color: rgba(255,255,255,0.8);
    line-height: 1.75;
}
.para-muted { color: rgba(255,255,255,0.6); font-size: 1rem; }
.feature-list {
    margin-top: 30px;
    display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
}
.feature-list li {
    display: flex; align-items: flex-start; gap: 12px;
    font-size: 14px; color: rgba(255,255,255,0.85);
}
.feature-list .check {
    flex-shrink: 0;
    width: 20px; height: 20px; border-radius: 999px;
    background: rgba(199,163,76,0.15);
    border: 1px solid rgba(199,163,76,0.4);
    color: var(--gold);
    display: grid; place-items: center;
    font-weight: bold; font-size: 11px;
}

/* ============ PRODUCTS ============ */
.product-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.product-card {
    position: relative;
    padding: 40px;
    border: 1px solid rgba(199,163,76,0.25);
    background: rgba(14,68,72,0.35);
    backdrop-filter: blur(6px);
    transition: all 0.35s;
}
.product-card:hover {
    border-color: var(--gold);
    background: rgba(14,68,72,0.6);
    transform: translateY(-3px);
}
.product-meta {
    display: flex; align-items: center; gap: 12px;
    margin-bottom: 16px;
}
.product-meta .num {
    font-family: "Courier New", monospace; font-size: 12px;
    color: rgba(199,163,76,0.7);
}
.product-title {
    font-size: 2rem; font-weight: 700; color: var(--white);
    letter-spacing: -0.01em;
    transition: background 0.3s;
}
.product-card:hover .product-title {
    background: linear-gradient(135deg, #E8CE85, #C7A34C, #A88535);
    -webkit-background-clip: text; background-clip: text; color: transparent;
}
.product-card p {
    margin-top: 16px; color: rgba(255,255,255,0.65);
    font-size: 14px; line-height: 1.7;
}
.product-footer {
    margin-top: 24px; padding-top: 24px;
    border-top: 1px solid var(--white-10);
    font-size: 10px; letter-spacing: 0.3em;
    text-transform: uppercase; color: var(--gold);
}

/* ============ CONTACT ============ */
.glow-tr {
    position: absolute; top: -128px; right: -128px;
    width: 500px; height: 500px; border-radius: 999px;
    background: radial-gradient(circle, rgba(199,163,76,0.15) 0%, transparent 60%);
    pointer-events: none;
}
.glow-bl {
    position: absolute; bottom: -128px; left: -128px;
    width: 500px; height: 500px; border-radius: 999px;
    background: radial-gradient(circle, rgba(199,163,76,0.08) 0%, transparent 60%);
    pointer-events: none;
}
.branch-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
}
.branch-card {
    position: relative;
    padding: 40px;
    border: 1px solid rgba(199,163,76,0.25);
    background: rgba(14,68,72,0.25);
    backdrop-filter: blur(6px);
    transition: border-color 0.3s;
}
.branch-card:hover { border-color: var(--gold); }
.branch-num {
    position: absolute; top: 26px; right: 32px;
    font-family: "Courier New", monospace; font-size: 12px;
    color: rgba(199,163,76,0.6);
}
.branch-label {
    display: flex; align-items: center; gap: 12px;
    font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase;
    color: var(--gold); font-weight: 600;
    margin-bottom: 12px;
}
.thin-line { display: inline-block; width: 40px; height: 1px; background: rgba(199,163,76,0.4); }

.branch-city {
    display: flex; align-items: flex-start; gap: 16px;
}
.pin-icon {
    flex-shrink: 0;
    width: 48px; height: 48px; border-radius: 999px;
    background: rgba(199,163,76,0.15);
    border: 1px solid rgba(199,163,76,0.4);
    color: var(--gold);
    display: grid; place-items: center;
}
.branch-city h3 {
    font-size: 2rem; font-weight: 700; letter-spacing: -0.01em; color: var(--white);
}
.branch-district { margin: 4px 0 0; font-size: 1rem; color: rgba(255,255,255,0.7); }
.branch-address {
    margin: 12px 0 0;
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    line-height: 1.6;
}
.branch-building { color: var(--gold); }

.branch-phone, .branch-wa, .branch-maps {
    display: flex; align-items: center; justify-content: space-between; gap: 16px;
    margin-top: 12px; padding: 16px 20px;
    transition: all 0.3s;
}
.branch-phone {
    margin-top: 32px;
    border: 1px solid var(--white-15);
    background: rgba(255,255,255,0.03);
}
.branch-phone:hover { border-color: var(--gold); background: rgba(255,255,255,0.07); }
.branch-wa {
    background: var(--gold); color: var(--teal-950);
}
.branch-wa:hover { background: var(--gold-dark); transform: translateY(-2px); }
.branch-maps {
    justify-content: center;
    border: 1px solid var(--white-15);
    color: var(--white);
    font-size: 11px; letter-spacing: 0.25em; text-transform: uppercase;
}
.branch-maps:hover { border-color: var(--gold); color: var(--gold); }

.row { display: flex; align-items: center; gap: 16px; }
.mini-circle {
    width: 40px; height: 40px; border-radius: 999px;
    background: rgba(199,163,76,0.15);
    color: var(--gold);
    display: grid; place-items: center;
}
.mini-circle.dark {
    background: rgba(5,31,33,0.25); color: var(--teal-950);
}
.label-mini {
    font-size: 10px; letter-spacing: 0.25em; text-transform: uppercase;
    color: rgba(255,255,255,0.5);
}
.label-mini.dark { color: rgba(5,31,33,0.8); }
.phone-num {
    font-family: "Playfair Display", serif;
    font-size: 1.35rem; font-weight: 700; color: var(--white);
    margin-top: 2px;
}
.phone-num.dark { color: var(--teal-950); }
.cta-mini {
    font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
    color: rgba(255,255,255,0.4);
}
.cta-mini.dark { color: rgba(5,31,33,0.7); }

/* ============ FOOTER ============ */
.footer {
    background: var(--teal-950);
    border-top: 1px solid rgba(199,163,76,0.2);
    padding: 30px 0;
}
.footer-inner {
    display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
    gap: 16px;
}
.footer-brand {
    display: flex; align-items: center; gap: 14px;
}
.footer-brand img { height: 32px; width: auto; }
.copyright { margin: 0; font-size: 12px; color: rgba(255,255,255,0.45); }

/* ============ WHATSAPP FLOAT ============ */
.wa-float {
    position: fixed; z-index: 40;
    bottom: 24px; right: 24px;
    opacity: 0; transform: translateY(16px);
    pointer-events: none;
    transition: all 0.5s ease;
}
.wa-float.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.wa-btn {
    width: 60px; height: 60px; border-radius: 999px;
    background: #25D366; color: var(--white);
    border: 0;
    display: grid; place-items: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
    animation: waPulse 2s infinite;
    transition: transform 0.3s;
}
.wa-btn:hover { background: #1ebe5b; transform: translateY(-4px); }

.wa-menu {
    position: absolute; bottom: 80px; right: 0;
    width: 280px;
    background: var(--teal-950);
    border: 1px solid rgba(199,163,76,0.4);
    padding: 16px;
    box-shadow: 0 24px 60px rgba(0,0,0,0.6);
    display: none;
    animation: fadeInUp 0.25s ease-out;
}
.wa-menu.open { display: block; }
.wa-menu-head {
    display: flex; justify-content: space-between; align-items: flex-start;
    margin-bottom: 14px;
}
.wa-menu-title {
    font-family: "Playfair Display", serif;
    font-size: 1.15rem; font-weight: 700; color: var(--white);
    margin-top: 4px;
}
.wa-close {
    background: transparent; border: 0; color: rgba(255,255,255,0.6);
    font-size: 20px; line-height: 1;
    width: 28px; height: 28px; border-radius: 999px;
    display: grid; place-items: center;
}
.wa-close:hover { color: var(--white); }
.wa-item {
    display: flex; align-items: center; justify-content: space-between;
    gap: 12px; padding: 14px 16px;
    border: 1px solid var(--white-10);
    background: var(--white-05);
    margin-bottom: 8px;
    transition: all 0.3s;
}
.wa-item:hover { border-color: #25D366; background: rgba(37,211,102,0.1); }
.wa-item-icon { color: #25D366; }
.wa-item-label {
    font-size: 10px; letter-spacing: 0.25em; text-transform: uppercase;
    color: rgba(255,255,255,0.5);
}
.wa-item-city {
    font-family: "Playfair Display", serif;
    font-size: 1rem; font-weight: 600; color: var(--white);
    margin-top: 4px;
}
.wa-item-city span { color: rgba(255,255,255,0.5); font-weight: 400; }
.wa-item-phone {
    font-size: 12px; color: rgba(255,255,255,0.6);
    margin-top: 4px;
}

/* ============ ANIMATIONS ============ */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes waPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(37,211,102,0.55), 0 10px 30px rgba(0,0,0,0.4); }
    50% { box-shadow: 0 0 0 18px rgba(37,211,102,0), 0 10px 30px rgba(0,0,0,0.4); }
}
.fade-in { animation: fadeInUp 0.9s ease-out both; }
.delay-1 { animation-delay: 0.05s; }
.delay-2 { animation-delay: 0.15s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.45s; }
.delay-5 { animation-delay: 0.6s; }

/* ============ RESPONSIVE ============ */
@media (max-width: 1023px) {
    .nav-links { display: none; }
    .nav-cta { display: none; }
    .nav-burger { display: inline-flex; flex-direction: column; align-items: center; justify-content: center; }
    .hero-corner-tr, .hero-corner-bl { display: none; }
    .about-grid { grid-template-columns: 1fr; gap: 80px; }
    .about-visual { max-width: 500px; margin: 0 auto; }
    .about-content .section-title { text-align: center; }
    .about-content .eyebrow { justify-content: center; }
    .product-grid { grid-template-columns: 1fr; gap: 16px; }
    .branch-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
    .container { padding: 0 20px; }
    .section { padding: 70px 0; }
    .hero { padding: 120px 0 80px; }
    .hero-stats { grid-template-columns: repeat(3, 1fr); gap: 12px; }
    .hero-brand { max-width: 320px; }
    .feature-list { grid-template-columns: 1fr; }
    .about-badge { left: 20px; bottom: -24px; padding: 14px 20px; }
    .about-badge-num { font-size: 2rem; }
    .about-corner-tl, .about-corner-br { display: none; }
    .branch-city h3 { font-size: 1.6rem; }
    .phone-num { font-size: 1.15rem; }
    .cta-mini, .branch-phone .cta-mini, .branch-wa .cta-mini { display: none; }
    .wa-float { bottom: 16px; right: 16px; }
    .wa-btn { width: 54px; height: 54px; }
    .wa-menu { right: -8px; width: calc(100vw - 24px); max-width: 320px; }
}
