/* ============================================
   KIOSK / კიოსკი — Main Stylesheet
   Brand Colors:
   --c-bg:    #020002  (deep black)
   --c-gold:  #fcd120  (signature yellow)
   --c-white: #ffffff
============================================ */

:root {
    --c-bg: #020002;
    --c-bg-card: #0a0a0c;
    --c-bg-elevated: #131316;
    --c-gold: #fcd120;
    --c-gold-soft: rgba(252, 209, 32, 0.12);
    --c-gold-dim: rgba(252, 209, 32, 0.4);
    --c-white: #ffffff;
    --c-text: #e8e8ea;
    --c-text-muted: #9a9aa3;
    --c-border: rgba(255, 255, 255, 0.08);
    --c-border-strong: rgba(252, 209, 32, 0.25);
    --section-pad: clamp(64px, 8vw, 110px);
    --container-max: 1200px;
    --gradient-gold: linear-gradient(135deg, #fcd120 0%, #ffe26a 50%, #fcd120 100%);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
    font-family: 'Helvetica Neue', 'Inter', 'BPG Nino Mtavruli', 'Sylfaen', system-ui, -apple-system, sans-serif;
    background: var(--c-bg);
    color: var(--c-text);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body[lang="ka"] {
    font-family: 'BPG Nino Mtavruli', 'Sylfaen', 'FiraGO', 'Helvetica Neue', system-ui, sans-serif;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; font-family: inherit; }

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: var(--section-pad) 0;
    position: relative;
}

.text-center { text-align: center; }

/* ===== LOADER ===== */
.loader-overlay {
    position: fixed; inset: 0; z-index: 99999;
    background: var(--c-bg);
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    transition: opacity .6s ease, visibility .6s ease;
}
.loader-overlay.fade-out { opacity: 0; visibility: hidden; }
.loader-cosmos {
    position: relative; width: 120px; height: 120px;
}
.loader-ring-outer {
    position: absolute; inset: 0; border-radius: 50%;
    border: 2px solid transparent;
    border-top-color: var(--c-gold);
    border-right-color: var(--c-gold);
    animation: l-spin 1.4s linear infinite;
}
.loader-ring-middle {
    position: absolute; inset: 18px; border-radius: 50%;
    border: 1.5px solid transparent;
    border-bottom-color: var(--c-gold);
    animation: l-spin-r 1.8s linear infinite;
    opacity: 0.6;
}
.loader-core {
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 28px; height: 28px; border-radius: 50%;
    background: var(--c-gold);
    box-shadow: 0 0 24px var(--c-gold-dim), 0 0 48px rgba(252,209,32,.2);
    animation: l-pulse 1.6s ease-in-out infinite;
}
.loader-brand {
    margin-top: 36px; font-size: 1.6rem; font-weight: 700;
    letter-spacing: 0.18em; color: var(--c-white);
    text-transform: uppercase;
}
.loader-tagline {
    margin-top: 8px; font-size: .68rem; letter-spacing: .25em;
    text-transform: uppercase; color: var(--c-gold);
    animation: l-fpulse 2s ease-in-out infinite;
}
.loader-stars { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.loader-star {
    position: absolute; width: 2px; height: 2px;
    background: var(--c-gold); border-radius: 50%;
    animation: l-twinkle var(--dur) ease-in-out infinite;
    animation-delay: var(--delay); opacity: 0;
}
@keyframes l-spin { to { transform: rotate(360deg); } }
@keyframes l-spin-r { to { transform: rotate(-360deg); } }
@keyframes l-pulse {
    0%, 100% { transform: translate(-50%,-50%) scale(1); }
    50% { transform: translate(-50%,-50%) scale(1.18); }
}
@keyframes l-fpulse { 0%, 100% { opacity: .4; } 50% { opacity: 1; } }
@keyframes l-twinkle { 0%, 100% { opacity: 0; } 50% { opacity: .7; } }

/* ===== STARFIELD (subtle dust) ===== */
.starfield {
    position: fixed; top: 0; left: 0;
    width: 100%; height: 100%;
    pointer-events: none; z-index: 0;
}
.starfield .star {
    position: absolute; border-radius: 50%;
    background: var(--c-white);
    animation: twinkle var(--dur) ease-in-out infinite alternate;
}
@keyframes twinkle { 0% { opacity: 0.08; } 100% { opacity: 0.5; } }
.page-content { position: relative; z-index: 1; }

/* ===== HERO ===== */
.hero {
    min-height: 92vh;
    display: flex; align-items: center;
    padding: calc(80px + var(--section-pad)) 0 var(--section-pad);
    position: relative; overflow: hidden;
}
.hero-grid {
    display: grid; grid-template-columns: 1.1fr 1fr;
    gap: 60px; align-items: center;
}
.hero-badge {
    display: inline-flex; align-items: center; gap: 10px;
    background: var(--c-gold-soft);
    border: 1px solid var(--c-border-strong);
    padding: 7px 18px; border-radius: 999px;
    font-size: 0.72rem; color: var(--c-gold);
    font-weight: 600; margin-bottom: 26px;
    letter-spacing: 0.1em; text-transform: uppercase;
}
.hero-badge .dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--c-gold);
    box-shadow: 0 0 8px var(--c-gold);
    animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }

.hero h1 {
    font-size: clamp(2.4rem, 5.2vw, 4.2rem);
    color: var(--c-white);
    margin-bottom: 22px;
    line-height: 1.08;
    font-weight: 800;
    letter-spacing: -0.02em;
}
.hero h1 .accent {
    color: var(--c-gold);
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-text > p {
    font-size: 1.0625rem;
    color: var(--c-text-muted);
    margin-bottom: 36px;
    max-width: 540px;
    line-height: 1.75;
}
.hero-cta {
    display: flex; gap: 14px; flex-wrap: wrap;
}
.btn {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 14px 28px; border-radius: 12px;
    font-weight: 600; font-size: 0.95rem;
    transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
    cursor: pointer;
}
.btn-primary {
    background: var(--c-gold);
    color: var(--c-bg);
    box-shadow: 0 8px 28px rgba(252, 209, 32, 0.25);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 38px rgba(252, 209, 32, 0.4);
}
.btn-secondary {
    background: transparent;
    color: var(--c-white);
    border: 1.5px solid var(--c-border);
}
.btn-secondary:hover {
    border-color: var(--c-gold);
    color: var(--c-gold);
}

.hero-visual {
    display: flex; justify-content: center; align-items: center;
    position: relative;
}
.hero-card-stack {
    position: relative; width: 100%; max-width: 460px;
    aspect-ratio: 4/5;
}
.hero-card {
    position: absolute; inset: 0;
    background: var(--c-bg-card);
    border: 1px solid var(--c-border);
    border-radius: 24px; overflow: hidden;
    box-shadow: 0 40px 80px rgba(0,0,0,0.5),
                0 0 80px rgba(252, 209, 32, 0.08);
    transition: transform .4s ease;
}
.hero-card-glow {
    position: absolute; inset: -2px;
    border-radius: 26px;
    background: linear-gradient(135deg, transparent, var(--c-gold-soft), transparent);
    z-index: -1; opacity: 0.5; filter: blur(20px);
}
.hero-card-inner {
    height: 100%; display: flex;
    flex-direction: column; align-items: center; justify-content: center;
    padding: 40px; text-align: center;
    background:
        radial-gradient(circle at top, rgba(252,209,32,0.08), transparent 60%),
        var(--c-bg-card);
}
.hero-logo-circle {
    width: 140px; height: 140px;
    border-radius: 50%;
    border: 2px solid var(--c-gold);
    background: var(--c-bg);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 28px;
    box-shadow: 0 0 0 8px rgba(252,209,32,0.05),
                0 0 40px rgba(252,209,32,0.18);
    animation: float 4s ease-in-out infinite;
}
.hero-logo-circle img {
    width: 90px; height: 90px; object-fit: contain;
}
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}
.hero-card-title {
    color: var(--c-white); font-size: 1.6rem;
    font-weight: 700; margin-bottom: 6px;
    letter-spacing: 0.04em;
}
.hero-card-sub {
    color: var(--c-gold); font-size: 0.78rem;
    letter-spacing: 0.2em; text-transform: uppercase;
    font-weight: 900;
}
.hero-glow {
    position: absolute; width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(252,209,32,0.1) 0%, transparent 65%);
    top: 50%; left: 50%; transform: translate(-50%, -50%);
    pointer-events: none; z-index: -1;
}

/* ===== TRUST BAR ===== */
.trust-bar {
    background: var(--c-bg-card);
    border-top: 1px solid var(--c-border);
    border-bottom: 1px solid var(--c-border);
    padding: 36px 0;
}
.trust-items {
    display: flex; justify-content: center; align-items: center;
    gap: clamp(28px, 6vw, 80px); flex-wrap: wrap;
}
.trust-item { text-align: center; }
.trust-item .num {
    font-size: 2rem; color: var(--c-gold);
    font-weight: 800; line-height: 1;
}
.trust-item .label {
    font-size: 0.72rem; color: var(--c-text-muted);
    margin-top: 6px; letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* ===== SECTION HEADERS ===== */
.section-eyebrow {
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--c-gold);
    font-weight: 700;
    margin-bottom: 14px;
}
.section-title {
    font-size: clamp(1.85rem, 3.6vw, 2.8rem);
    color: var(--c-white);
    margin-bottom: 18px;
    font-weight: 800;
    letter-spacing: -0.015em;
}
.section-desc {
    font-size: 1rem;
    color: var(--c-text-muted);
    max-width: 660px;
    margin: 0 auto 56px;
    line-height: 1.75;
}

/* ===== FEATURES ===== */
.features { background: var(--c-bg); }
.features-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.feature-card {
    background: var(--c-bg-card);
    border: 1px solid var(--c-border);
    border-radius: 18px;
    padding: 36px 28px;
    transition: transform .3s, border-color .3s, box-shadow .3s;
    position: relative; overflow: hidden;
}
.feature-card:hover {
    transform: translateY(-4px);
    border-color: var(--c-border-strong);
    box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}
.feature-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0;
    height: 3px; background: var(--c-gold);
    opacity: 0; transition: opacity .3s;
}
.feature-card:hover::before { opacity: 1; }
.feature-icon {
    width: 56px; height: 56px; border-radius: 14px;
    background: var(--c-gold-soft);
    border: 1px solid var(--c-border-strong);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 22px;
    color: var(--c-gold);
}
.feature-icon svg { width: 26px; height: 26px; }
.feature-card h3 {
    font-size: 1.18rem; color: var(--c-white);
    margin-bottom: 10px; font-weight: 700;
}
.feature-card p {
    font-size: 0.9rem; color: var(--c-text-muted);
    line-height: 1.75;
}

/* ===== ABOUT/STORY SECTION ===== */
.story {
    background: linear-gradient(180deg, var(--c-bg) 0%, #050306 100%);
}
.story-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 64px; align-items: center;
}
.story-visual {
    background: var(--c-bg-card);
    border: 1px solid var(--c-border);
    border-radius: 22px;
    padding: 0; position: relative; overflow: hidden;
    aspect-ratio: 1/1;
}
.story-visual img {
    width: 100%; height: 100%; object-fit: cover;
}
.story-visual-fallback {
    width: 100%; height: 100%;
    background:
        radial-gradient(circle at 30% 20%, var(--c-gold-soft), transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(252,209,32,0.06), transparent 50%),
        var(--c-bg-card);
    display: flex; align-items: center; justify-content: center;
}
.story-visual-fallback img {
    width: 50%; height: auto; object-fit: contain;
    filter: drop-shadow(0 0 30px rgba(252,209,32,0.3));
}
.story-content h2 { color: var(--c-white); }
.story-content p {
    color: var(--c-text-muted);
    margin-bottom: 18px;
    line-height: 1.85;
    font-size: 0.98rem;
}
.story-points {
    margin-top: 32px;
    display: flex; flex-direction: column; gap: 18px;
}
.story-point { display: flex; gap: 16px; align-items: flex-start; }
.story-point-icon {
    width: 42px; height: 42px; min-width: 42px;
    border-radius: 12px;
    background: var(--c-gold-soft);
    border: 1px solid var(--c-border-strong);
    display: flex; align-items: center; justify-content: center;
    color: var(--c-gold);
}
.story-point-icon svg { width: 20px; height: 20px; }
.story-point h4 {
    font-size: 1rem; color: var(--c-white);
    font-weight: 700; margin-bottom: 4px;
}
.story-point p {
    font-size: 0.875rem;
    color: var(--c-text-muted);
    margin: 0; line-height: 1.65;
}

/* ===== TESTIMONIALS / PROOF ===== */
.proof { background: var(--c-bg-card); }
.proof-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
.proof-card {
    background: var(--c-bg-elevated);
    border: 1px solid var(--c-border);
    border-radius: 18px;
    padding: 30px 26px;
}
.proof-card .stars {
    color: var(--c-gold); font-size: 1rem;
    margin-bottom: 14px; letter-spacing: 3px;
}
.proof-card blockquote {
    font-size: 0.92rem; color: var(--c-text);
    line-height: 1.75; margin-bottom: 18px;
    font-style: italic;
}
.proof-card cite {
    font-size: 0.78rem; color: var(--c-gold);
    font-style: normal; font-weight: 600;
    letter-spacing: 0.05em;
}

/* ===== FAQ ===== */
.faq-section { background: var(--c-bg); }
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--c-border); }
.faq-question {
    width: 100%; background: none; text-align: left;
    padding: 24px 0;
    display: flex; justify-content: space-between;
    align-items: center; gap: 16px;
    font-size: 1rem; font-weight: 600;
    color: var(--c-white);
    font-family: inherit;
    transition: color .25s;
}
.faq-question:hover { color: var(--c-gold); }
.faq-question .icon {
    font-size: 1.4rem; color: var(--c-gold);
    transition: transform .35s;
    min-width: 24px; text-align: center;
    font-weight: 300;
}
.faq-item.open .faq-question .icon { transform: rotate(45deg); }
.faq-answer {
    max-height: 0; overflow: hidden;
    transition: max-height .4s ease, padding .3s;
}
.faq-item.open .faq-answer { max-height: 500px; padding-bottom: 24px; }
.faq-answer p {
    font-size: 0.92rem;
    color: var(--c-text-muted);
    line-height: 1.8;
}

/* ===== FINAL CTA ===== */
.cta-section {
    background: linear-gradient(180deg, var(--c-bg) 0%, #0a0608 100%);
    text-align: center;
    position: relative; overflow: hidden;
}
.cta-section h2 {
    font-size: clamp(2rem, 4.2vw, 3.1rem);
    color: var(--c-white);
    margin-bottom: 18px;
    font-weight: 800;
    letter-spacing: -0.02em;
}
.cta-section h2 .accent {
    color: var(--c-gold);
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.cta-section p {
    font-size: 1.06rem;
    color: var(--c-text-muted);
    max-width: 580px;
    margin: 0 auto 40px;
    line-height: 1.75;
}
.cta-glow {
    position: absolute; width: 700px; height: 700px;
    background: radial-gradient(circle, rgba(252,209,32,0.1) 0%, transparent 65%);
    top: 50%; left: 50%; transform: translate(-50%, -50%);
    pointer-events: none;
}

/* ===== PAGE HEADER (for inner pages) ===== */
.page-header {
    padding: calc(120px + 40px) 0 80px;
    text-align: center;
    background:
        radial-gradient(circle at top, rgba(252,209,32,0.06), transparent 60%),
        var(--c-bg);
    border-bottom: 1px solid var(--c-border);
}
.page-header h1 {
    font-size: clamp(2.2rem, 4.6vw, 3.4rem);
    color: var(--c-white);
    margin-bottom: 16px;
    font-weight: 800;
    letter-spacing: -0.02em;
}
.page-header h1 .accent {
    color: var(--c-gold);
}
.page-header p {
    font-size: 1.06rem;
    color: var(--c-text-muted);
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.7;
}
.breadcrumbs {
    margin-top: 22px;
    font-size: 0.82rem;
    color: var(--c-text-muted);
    letter-spacing: 0.05em;
}
.breadcrumbs a {
    color: var(--c-gold); transition: opacity .25s;
}
.breadcrumbs a:hover { opacity: 0.7; }
.breadcrumbs .sep { margin: 0 10px; opacity: 0.5; }

/* ===== ABOUT PAGE ===== */
.about-content { background: var(--c-bg); }
.about-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 64px; align-items: center;
}
.about-text h2 {
    color: var(--c-white);
    font-size: clamp(1.7rem, 3.2vw, 2.4rem);
    margin-bottom: 20px;
    font-weight: 800;
}
.about-text p {
    color: var(--c-text-muted);
    line-height: 1.85;
    margin-bottom: 18px;
    font-size: 0.98rem;
}
.about-text strong { color: var(--c-white); }
.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 60px;
}
.value-card {
    background: var(--c-bg-card);
    border: 1px solid var(--c-border);
    border-radius: 18px;
    padding: 32px;
    transition: border-color .3s, transform .3s;
}
.value-card:hover {
    border-color: var(--c-border-strong);
    transform: translateY(-3px);
}
.value-icon {
    width: 52px; height: 52px;
    border-radius: 12px;
    background: var(--c-gold-soft);
    border: 1px solid var(--c-border-strong);
    color: var(--c-gold);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 20px;
}
.value-icon svg { width: 24px; height: 24px; }
.value-card h3 {
    color: var(--c-white);
    font-size: 1.15rem;
    margin-bottom: 10px;
    font-weight: 700;
}
.value-card p {
    color: var(--c-text-muted);
    font-size: 0.92rem;
    line-height: 1.75;
}

/* ===== CONTACT PAGE ===== */
.contact-grid {
    display: grid; grid-template-columns: 1fr 1.2fr;
    gap: 56px; align-items: start;
}
.contact-info h2 {
    color: var(--c-white);
    font-size: 1.6rem;
    margin-bottom: 18px;
    font-weight: 700;
}
.contact-info > p {
    color: var(--c-text-muted);
    line-height: 1.75;
    margin-bottom: 32px;
    font-size: 0.98rem;
}
.contact-list {
    list-style: none; padding: 0;
    display: flex; flex-direction: column; gap: 18px;
}
.contact-item {
    display: flex; gap: 16px; align-items: flex-start;
    background: var(--c-bg-card);
    border: 1px solid var(--c-border);
    padding: 18px 20px; border-radius: 14px;
    transition: border-color .3s;
}
.contact-item:hover { border-color: var(--c-border-strong); }
.contact-item-icon {
    width: 42px; height: 42px; min-width: 42px;
    border-radius: 10px;
    background: var(--c-gold-soft);
    border: 1px solid var(--c-border-strong);
    color: var(--c-gold);
    display: flex; align-items: center; justify-content: center;
}
.contact-item-icon svg { width: 20px; height: 20px; }
.contact-item-label {
    font-size: 0.7rem;
    color: var(--c-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 4px;
    font-weight: 600;
}
.contact-item-value {
    color: var(--c-white);
    font-size: 0.98rem;
    font-weight: 500;
    word-break: break-word;
}
.contact-item-value a { color: var(--c-white); transition: color .25s; }
.contact-item-value a:hover { color: var(--c-gold); }

.contact-form-wrap {
    background: var(--c-bg-card);
    border: 1px solid var(--c-border);
    border-radius: 22px;
    padding: clamp(28px, 4vw, 44px);
}
.contact-form-wrap h2 {
    color: var(--c-white);
    font-size: 1.5rem;
    margin-bottom: 8px;
    font-weight: 700;
}
.contact-form-wrap > p {
    color: var(--c-text-muted);
    margin-bottom: 28px;
    font-size: 0.92rem;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 18px;
}
.form-group { margin-bottom: 18px; }
.form-group label {
    display: block;
    font-size: 0.78rem;
    color: var(--c-text);
    margin-bottom: 8px;
    font-weight: 600;
    letter-spacing: 0.04em;
}
.form-group label .req { color: var(--c-gold); margin-left: 2px; }
.form-control {
    width: 100%;
    background: var(--c-bg);
    border: 1px solid var(--c-border);
    border-radius: 10px;
    padding: 13px 16px;
    color: var(--c-white);
    font-family: inherit;
    font-size: 0.95rem;
    transition: border-color .25s, background .25s;
}
.form-control:focus {
    outline: none;
    border-color: var(--c-gold);
    background: var(--c-bg-elevated);
}
.form-control::placeholder { color: var(--c-text-muted); opacity: 0.6; }
textarea.form-control {
    min-height: 140px; resize: vertical; line-height: 1.6;
}
.form-submit {
    width: 100%;
    background: var(--c-gold);
    color: var(--c-bg);
    padding: 15px 28px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.02em;
    transition: transform .25s, box-shadow .25s;
    margin-top: 8px;
}
.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(252,209,32,0.3);
}
.form-message {
    padding: 14px 18px;
    border-radius: 10px;
    margin-bottom: 20px;
    font-size: 0.92rem;
}
.form-message.success {
    background: rgba(72, 187, 120, 0.1);
    border: 1px solid rgba(72, 187, 120, 0.4);
    color: #68d391;
}
.form-message.error {
    background: rgba(245, 101, 101, 0.1);
    border: 1px solid rgba(245, 101, 101, 0.4);
    color: #fc8181;
}

/* ===== ADDRESSES PAGE ===== */
.addresses-cover {
    width: 100%;
    aspect-ratio: 21/9;
    max-height: 480px;
    object-fit: cover;
    border-radius: 24px;
    margin-bottom: 60px;
    border: 1px solid var(--c-border);
    box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}
.addresses-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.address-card {
    background: var(--c-bg-card);
    border: 1px solid var(--c-border);
    border-radius: 18px;
    padding: 32px;
    transition: border-color .3s, transform .3s;
    position: relative;
}
.address-card:hover {
    border-color: var(--c-border-strong);
    transform: translateY(-3px);
}
.address-badge {
    display: inline-block;
    background: var(--c-gold-soft);
    color: var(--c-gold);
    border: 1px solid var(--c-border-strong);
    padding: 5px 12px;
    border-radius: 999px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
}
.address-card h3 {
    color: var(--c-white);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 14px;
}
.address-detail {
    display: flex; gap: 12px; align-items: flex-start;
    margin-bottom: 12px;
    color: var(--c-text);
    font-size: 0.94rem;
    line-height: 1.6;
}
.address-detail svg {
    width: 18px; height: 18px; min-width: 18px;
    color: var(--c-gold);
    margin-top: 2px;
}
.address-detail a { color: var(--c-text); transition: color .25s; }
.address-detail a:hover { color: var(--c-gold); }
.address-hours {
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid var(--c-border);
    font-size: 0.88rem;
    color: var(--c-text-muted);
}
.address-hours-title {
    color: var(--c-gold);
    font-size: 0.74rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 8px;
    font-weight: 700;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-grid { grid-template-columns: 1fr; text-align: center; }
    .hero-text > p { margin-left: auto; margin-right: auto; }
    .hero-cta { justify-content: center; }
    .hero-visual { margin-top: 40px; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .story-grid, .about-grid { grid-template-columns: 1fr; }
    .story-visual, .about-visual { order: -1; max-width: 480px; margin: 0 auto; }
    .proof-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-grid { grid-template-columns: 1fr; }
    .addresses-grid { grid-template-columns: 1fr; }
    .values-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
    .container { padding: 0 18px; }
    .features-grid { grid-template-columns: 1fr; }
    .proof-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .hero-card-stack { max-width: 320px; }
    .hero-logo-circle { width: 110px; height: 110px; }
    .hero-logo-circle img { width: 70px; height: 70px; }
    .trust-items { gap: 28px; }
    .trust-item .num { font-size: 1.5rem; }
    .addresses-cover { aspect-ratio: 16/10; }
}

/* ===== ANIMATIONS ===== */
.fade-up {
    opacity: 0; transform: translateY(30px);
    transition: opacity .6s ease-out, transform .6s ease-out;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }
.stagger-6 { transition-delay: 0.6s; }



.address-map {
    margin-bottom: 18px;
    overflow: hidden;
    border-radius: 12px;
    border: 1px solid var(--c-border);
    background: var(--c-bg);
    filter: grayscale(0.3) brightness(0.92);
    transition: filter .35s ease;
}
.address-map:hover {
    filter: grayscale(0) brightness(1);
}
.address-map iframe {
    display: block;
    filter: invert(0.92) hue-rotate(180deg);
}