:root {
    --bg: #2E3135;
    --bg-elevated: #3A3D42;
    --bg-card: rgba(255,255,255,0.04);
    --bg-glass: rgba(255,255,255,0.05);
    --bg-glass-hover: rgba(255,255,255,0.09);
    --border: rgba(255,255,255,0.08);
    --border-hover: rgba(255,255,255,0.16);
    --text: #F5F5F5;
    --text-dim: rgba(245,245,245,0.48);
    --text-mid: rgba(245,245,245,0.70);
    --accent: #FFC16C;
    --accent-hover: #FFB44A;
    --accent-glow: rgba(255,193,108,0.14);
    --accent-glow-strong: rgba(255,193,108,0.28);
    --orange: #FFBC13;
    --orange-glow: rgba(255,188,19,0.16);
    --blue: #8995A0;
    --blue-glow: rgba(137,149,160,0.14);
    --radius-xl: 24px;
    --radius-lg: 20px;
    --radius-md: 16px;
    --radius-sm: 12px;
    --radius-xs: 8px;
    --max-w: 1200px;
    --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
    font-family: 'Onest', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

/* AMBIENT */
.ambient { position: fixed; inset: 0; z-index: 0; pointer-events: none; }
.ambient .orb { position: absolute; border-radius: 50%; filter: blur(80px); }
.ambient .orb-1 { width: 700px; height: 700px; top: -200px; right: -100px; background: radial-gradient(circle, rgba(255,193,108,0.07) 0%, transparent 70%); animation: orbFloat 25s ease-in-out infinite; }
.ambient .orb-2 { width: 500px; height: 500px; bottom: 10%; left: -150px; background: radial-gradient(circle, rgba(255,188,19,0.05) 0%, transparent 70%); animation: orbFloat 30s ease-in-out infinite reverse; }
.ambient .orb-3 { width: 400px; height: 400px; top: 50%; left: 40%; background: radial-gradient(circle, rgba(137,149,160,0.04) 0%, transparent 70%); animation: orbFloat 35s ease-in-out infinite 5s; }
@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(40px, -30px) scale(1.05); }
    66% { transform: translate(-20px, 20px) scale(0.95); }
}

.noise { position: fixed; inset: 0; z-index: 1; pointer-events: none; opacity: 0.025; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E"); background-repeat: repeat; background-size: 256px; }

/* LAYOUT */
.container { position: relative; z-index: 2; max-width: var(--max-w); margin: 0 auto; padding: 0 40px; }
@media (max-width: 768px) { .container { padding: 0 20px; } }

/* Location hero: two-column like homepage */
.loc-hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; width: 100%; }
@media (max-width: 960px) { .loc-hero-grid { grid-template-columns: 1fr; gap: 32px; } }

/* Location content sections: centered readable width */
.loc-section { max-width: 800px; }
@media (max-width: 960px) { .loc-section { max-width: 100%; } }

/* Two-column layout for location body */
.loc-body-grid { display: grid; grid-template-columns: 1fr 360px; gap: 48px; align-items: start; }
@media (max-width: 960px) { .loc-body-grid { grid-template-columns: 1fr; gap: 0; } }
.loc-sidebar { position: sticky; top: 96px; display: flex; flex-direction: column; gap: 20px; }
@media (max-width: 960px) { .loc-sidebar { position: static; display: none; } }
.loc-sidebar-cta { background: linear-gradient(135deg, rgba(255,193,108,0.08) 0%, rgba(255,188,19,0.06) 100%); border: 1px solid rgba(255,193,108,0.12); border-radius: var(--radius-lg); padding: 28px; text-align: center; position: relative; overflow: hidden; }
.loc-sidebar-cta::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, rgba(255,193,108,0.45), transparent); }
.loc-sidebar-cta h3 { font-family: 'Unbounded', sans-serif; font-weight: 700; font-size: 18px; letter-spacing: -0.5px; margin-bottom: 8px; }
.loc-sidebar-cta p { font-size: 13px; color: var(--text-dim); margin-bottom: 16px; }
.loc-sidebar-cta .btn-primary { width: 100%; justify-content: center; font-size: 15px; padding: 14px 20px; }
.loc-sidebar-cta .sidebar-messengers { display: flex; gap: 10px; margin-top: 12px; }
.loc-sidebar-cta .sidebar-messengers a { flex: 1; display: flex; align-items: center; justify-content: center; gap: 6px; background: var(--bg-glass); border: 1px solid var(--border); color: var(--text); font-weight: 500; font-size: 13px; padding: 10px; border-radius: var(--radius-xs); transition: background var(--transition), border-color var(--transition); }
.loc-sidebar-cta .sidebar-messengers a:hover { background: var(--bg-glass-hover); border-color: var(--border-hover); }
.loc-sidebar-cta .sidebar-messengers a svg { width: 16px; height: 16px; }

/* NAV */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: rgba(46,49,53,0.85); backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px); border-bottom: 1px solid var(--border); }
.nav-inner { max-width: var(--max-w); margin: 0 auto; padding: 0 40px; height: 72px; display: flex; align-items: center; justify-content: space-between; }
@media (max-width: 768px) { .nav-inner { padding: 0 20px; height: 60px; } }
.nav-logo { font-family: 'Unbounded', sans-serif; font-weight: 900; font-size: 22px; letter-spacing: -1px; display: flex; align-items: center; gap: 3px; }
.nav-logo span { color: var(--accent); }
.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav-links a { font-size: 14px; font-weight: 400; color: var(--text-mid); transition: color var(--transition); letter-spacing: -0.1px; }
.nav-links a:hover { color: var(--text); }
.nav-right { display: flex; align-items: center; gap: 16px; min-height: 40px; }
.nav-phone { font-size: 15px; font-weight: 600; letter-spacing: -0.3px; color: var(--text); transition: color var(--transition); }
.nav-phone:hover { color: var(--accent); }
.nav-cta { display: inline-flex; align-items: center; gap: 8px; background: var(--accent); color: #1A1A1A; font-weight: 600; font-size: 14px; padding: 10px 22px; border-radius: 50px; transition: background var(--transition), transform 0.15s; }
.nav-cta:hover { background: var(--accent-hover); }
.nav-cta:active { transform: scale(0.97); }
.nav-cta svg { width: 16px; height: 16px; }
.nav-mobile-toggle { display: none; background: none; color: var(--text); padding: 8px; }
.nav-mobile-toggle svg { width: 24px; height: 24px; }
/* NAV DROPDOWN */
.nav-dropdown { position: relative; }
.nav-dropdown-toggle { display: flex; align-items: center; gap: 4px; font-size: 14px; font-weight: 400; color: var(--text-mid); transition: color var(--transition); letter-spacing: -0.1px; cursor: pointer; background: none; padding: 0; }
.nav-dropdown-toggle:hover { color: var(--text); }
.nav-dropdown-toggle svg { width: 14px; height: 14px; transition: transform 0.25s ease; }
.nav-dropdown.open .nav-dropdown-toggle svg { transform: rotate(180deg); }
.nav-dropdown-toggle.active { color: var(--accent); }
.nav-dropdown-menu { position: absolute; top: calc(100% + 16px); left: 50%; transform: translateX(-50%); background: var(--bg-elevated); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 12px; backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px); box-shadow: 0 16px 48px rgba(0,0,0,0.5); opacity: 0; visibility: hidden; transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease; transform: translateX(-50%) translateY(8px); z-index: 10; display: grid; grid-template-columns: 1fr 1fr; gap: 0 16px; min-width: 340px; }
.nav-dropdown.open .nav-dropdown-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.nav-dropdown-col { min-width: 0; }
.nav-dropdown-label { font-size: 11px; font-weight: 500; color: var(--text-dim); text-transform: uppercase; letter-spacing: 1px; padding: 6px 10px 4px; }
.nav-dropdown-menu a { display: block; font-size: 14px; font-weight: 400; color: var(--text-mid); padding: 7px 10px; border-radius: var(--radius-xs); transition: background var(--transition), color var(--transition); white-space: nowrap; }
.nav-dropdown-menu a:hover { background: var(--bg-glass-hover); color: var(--text); }

@media (max-width: 960px) {
    .nav-links { display: none; }
    .nav-phone { display: none; }
    .nav-mobile-toggle { display: block; }
}
@media (max-width: 960px) {
    .nav-links.show { display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: rgba(46,49,53,0.95); backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px); border-bottom: 1px solid var(--border); padding: 16px 20px; gap: 12px; }
    .nav-links.show a { font-size: 16px; padding: 8px 0; }
    /* Mobile: dropdown inline */
    .nav-dropdown-menu { position: static; transform: none; opacity: 1; visibility: visible; background: transparent; border: none; box-shadow: none; backdrop-filter: none; padding: 4px 0 0 12px; min-width: 0; display: none; grid-template-columns: 1fr; gap: 0; }
    .nav-dropdown.open .nav-dropdown-menu { display: grid; transform: none; }
    .nav-dropdown-menu a { font-size: 15px; padding: 6px 0; }
    .nav-dropdown-label { padding: 6px 0 2px; }
    .nav-dropdown-col { min-width: 0; }
}

/* SECTIONS */
section { padding: 80px 0; }
@media (max-width: 768px) { section { padding: 56px 0; } }

.section-header { margin-bottom: 48px; }
.section-header.center { text-align: center; }
.section-tag { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 500; color: var(--accent); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 12px; }
.section-tag::before { content: ''; width: 16px; height: 1.5px; background: var(--accent); border-radius: 1px; }
.section-title { font-family: 'Unbounded', sans-serif; font-weight: 800; font-size: clamp(28px, 3.5vw, 42px); letter-spacing: -1.5px; line-height: 1.1; margin-bottom: 12px; }
.section-sub { font-size: 16px; color: var(--text-dim); font-weight: 300; max-width: 500px; line-height: 1.5; }
.section-header.center .section-sub { margin: 0 auto; }

/* HERO (homepage) */
.hero { padding: 140px 0 80px; min-height: 90vh; display: flex; align-items: center; }
@media (max-width: 768px) { .hero { padding: 110px 0 60px; min-height: auto; } }
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; width: 100%; }
@media (max-width: 960px) { .hero-grid { grid-template-columns: 1fr; gap: 40px; } }
.hero-content { animation: fadeUp 0.8s ease-out; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: var(--accent-glow); border: 1px solid rgba(255,193,108,0.18); color: var(--accent); font-size: 13px; font-weight: 500; padding: 8px 18px; border-radius: 50px; margin-bottom: 28px; letter-spacing: 0.2px; }
.hero-badge .pulse-dot { width: 8px; height: 8px; background: var(--accent); border-radius: 50%; position: relative; }
.hero-badge .pulse-dot::after { content: ''; position: absolute; inset: -3px; border-radius: 50%; border: 1.5px solid var(--accent); animation: pingPulse 2s ease-out infinite; }
@keyframes pingPulse { 0% { transform: scale(1); opacity: 0.8; } 100% { transform: scale(2.2); opacity: 0; } }
.hero h1 { font-family: 'Unbounded', sans-serif; font-weight: 900; font-size: clamp(38px, 5.5vw, 64px); line-height: 1.05; letter-spacing: -2.5px; margin-bottom: 20px; }
.hero h1 em { font-style: normal; color: var(--accent); }
.hero-sub { font-size: 18px; line-height: 1.6; color: var(--text-mid); font-weight: 300; margin-bottom: 36px; max-width: 480px; }
@media (max-width: 768px) { .hero-sub { font-size: 16px; } }

/* Location hero (single column) */
.location-page .hero { min-height: auto; padding: 120px 0 60px; }
@media (max-width: 768px) { .location-page .hero { padding: 100px 0 40px; } }
.location-page .hero h1 { font-size: clamp(28px, 4vw, 42px); letter-spacing: -1.5px; }

/* HERO ACTIONS */
.hero-actions { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }

/* BUTTONS */
.btn-primary { display: inline-flex; align-items: center; gap: 10px; background: var(--accent); color: #1A1A1A; font-weight: 600; font-size: 16px; padding: 16px 32px; border-radius: var(--radius-sm); box-shadow: 0 0 60px var(--accent-glow), 0 4px 24px rgba(0,0,0,0.4); transition: background var(--transition), transform 0.15s, box-shadow var(--transition); letter-spacing: -0.2px; }
.btn-primary:hover { background: var(--accent-hover); box-shadow: 0 0 80px var(--accent-glow-strong), 0 6px 30px rgba(0,0,0,0.4); }
.btn-primary:active { transform: scale(0.97); }
.btn-primary svg { width: 20px; height: 20px; }
.btn-ghost { display: inline-flex; align-items: center; gap: 8px; background: var(--bg-glass); border: 1px solid var(--border); color: var(--text); font-weight: 500; font-size: 15px; padding: 15px 26px; border-radius: var(--radius-sm); backdrop-filter: blur(10px); transition: background var(--transition), border-color var(--transition); }
.btn-ghost:hover { background: var(--bg-glass-hover); border-color: var(--border-hover); }
.btn-ghost svg { width: 18px; height: 18px; }
.tg-color { color: #26A5E4; }
.wa-color { color: #25D366; }

/* HERO VISUAL (stats card on homepage) */
.hero-visual { position: relative; animation: fadeUp 0.8s ease-out 0.2s both; }
.hero-card-main { background: var(--bg-glass); border: 1px solid var(--border); border-radius: var(--radius-xl); padding: 40px; backdrop-filter: blur(16px); position: relative; overflow: hidden; }
.hero-card-main::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, rgba(255,193,108,0.35), transparent); }
.hero-stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 32px; }
.hero-stat { text-align: center; }
.hero-stat-num { font-family: 'Unbounded', sans-serif; font-weight: 900; font-size: 36px; line-height: 1; margin-bottom: 6px; background: linear-gradient(135deg, var(--text) 0%, var(--text-mid) 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-stat-num small { font-size: 18px; font-weight: 600; }
.hero-stat-label { font-size: 12px; color: var(--text-dim); text-transform: uppercase; letter-spacing: 1px; font-weight: 500; }
.hero-card-divider { height: 1px; background: var(--border); margin-bottom: 28px; }
.hero-features { display: flex; flex-direction: column; gap: 16px; }
.hero-feature { display: flex; align-items: center; gap: 14px; }
.hero-feature-icon { width: 44px; height: 44px; min-width: 44px; border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; font-size: 20px; }
.hero-feature-icon.green { background: var(--accent-glow); }
.hero-feature-icon.orange { background: var(--orange-glow); }
.hero-feature-icon.blue { background: var(--blue-glow); }
.hero-feature-text { font-size: 14px; color: var(--text-mid); font-weight: 400; line-height: 1.45; }
.hero-feature-text strong { color: var(--text); font-weight: 600; }

/* SERVICES */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
@media (max-width: 960px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 580px) { .services-grid { grid-template-columns: 1fr; } }
.service-card { background: var(--bg-glass); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px 24px; backdrop-filter: blur(10px); transition: border-color var(--transition), background var(--transition), transform var(--transition); cursor: default; position: relative; overflow: hidden; display: flex; flex-direction: column; }
.service-card:hover { border-color: var(--border-hover); background: var(--bg-glass-hover); transform: translateY(-2px); }
.service-icon { width: 52px; height: 52px; border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; font-size: 24px; margin-bottom: 18px; }
.service-card h3 { font-family: 'Unbounded', sans-serif; font-weight: 600; font-size: 16px; letter-spacing: -0.5px; margin-bottom: 8px; }
.service-card p { font-size: 13px; color: var(--text-dim); font-weight: 300; line-height: 1.5; flex: 1; }
.service-price-tag { display: inline-flex; margin-top: 14px; font-family: 'Unbounded', sans-serif; font-weight: 600; font-size: 14px; color: var(--accent); background: var(--accent-glow); padding: 6px 14px; border-radius: 50px; align-self: flex-start; }

.inline-link { color: var(--accent); text-decoration: none; font-weight: 500; transition: opacity var(--transition); }
.inline-link:hover { opacity: 0.8; text-decoration: underline; }

/* ABOUT */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
@media (max-width: 960px) { .about-grid { grid-template-columns: 1fr; gap: 32px; } }
.about-text p { font-size: 16px; color: var(--text-mid); font-weight: 300; line-height: 1.7; margin-bottom: 16px; }
.about-text p strong { color: var(--text); font-weight: 600; }
.about-highlights { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.about-hl { background: var(--bg-glass); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 24px 20px; backdrop-filter: blur(10px); text-align: center; transition: border-color var(--transition), transform var(--transition); }
.about-hl:hover { border-color: var(--border-hover); transform: translateY(-2px); }
.about-hl-num { font-family: 'Unbounded', sans-serif; font-weight: 900; font-size: 32px; margin-bottom: 4px; color: var(--text); }
.about-hl-num small { font-size: 16px; font-weight: 600; }
.about-hl-label { font-size: 12px; color: var(--text-dim); font-weight: 400; text-transform: uppercase; letter-spacing: 0.5px; line-height: 1.4; }

/* PRICES */
.prices-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 768px) { .prices-wrapper { grid-template-columns: 1fr; } }
.price-block { background: var(--bg-glass); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; backdrop-filter: blur(10px); }
.price-block-header { padding: 20px 24px; border-bottom: 1px solid var(--border); font-family: 'Unbounded', sans-serif; font-weight: 600; font-size: 16px; letter-spacing: -0.3px; display: flex; align-items: center; gap: 10px; }
.price-block-header .tag-icon { font-size: 18px; }
.price-row { display: flex; align-items: center; justify-content: space-between; padding: 16px 24px; border-bottom: 1px solid var(--border); transition: background var(--transition); }
.price-row:last-child { border-bottom: none; }
.price-row:hover { background: var(--bg-glass); }
.price-row-name { font-size: 14px; color: var(--text-mid); font-weight: 400; }
.price-row-val { font-family: 'Unbounded', sans-serif; font-weight: 600; font-size: 14px; color: var(--text); white-space: nowrap; }

/* Location page price block (single column) */
.price-info-block { background: var(--bg-glass); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; backdrop-filter: blur(10px); }
.price-info-row { display: flex; align-items: center; justify-content: space-between; padding: 16px 24px; border-bottom: 1px solid var(--border); }
.price-info-row:last-child { border-bottom: none; }
.price-info-label { font-size: 14px; color: var(--text-mid); font-weight: 400; }
.price-info-value { font-family: 'Unbounded', sans-serif; font-weight: 600; font-size: 14px; color: var(--text); }
.price-note { font-size: 13px; color: var(--text-dim); font-weight: 300; margin-top: 12px; line-height: 1.5; }

/* GALLERY */
.gallery-scroll { display: flex; gap: 16px; overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; padding-bottom: 12px; margin: 0 -40px; padding-left: 40px; padding-right: 40px; }
.gallery-scroll::-webkit-scrollbar { height: 4px; }
.gallery-scroll::-webkit-scrollbar-track { background: transparent; }
.gallery-scroll::-webkit-scrollbar-thumb { background: var(--border); border-radius: 2px; }
@media (max-width: 768px) { .gallery-scroll { margin: 0 -20px; padding-left: 20px; padding-right: 20px; } }
.gallery-item { min-width: 320px; max-width: 380px; aspect-ratio: 4/3; border-radius: var(--radius-lg); overflow: hidden; scroll-snap-align: start; flex-shrink: 0; background: var(--bg-glass); border: 1px solid var(--border); position: relative; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gallery-item:hover img { transform: scale(1.05); }

/* STEPS */
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 768px) { .steps-grid { grid-template-columns: 1fr; } }
.step-card { background: var(--bg-glass); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 32px 28px; backdrop-filter: blur(10px); position: relative; transition: border-color var(--transition), transform var(--transition); }
.step-card:hover { border-color: var(--border-hover); transform: translateY(-2px); }
.step-number { font-family: 'Unbounded', sans-serif; font-weight: 900; font-size: 48px; color: rgba(255,193,108,0.10); line-height: 1; margin-bottom: 16px; }
.step-card h3 { font-family: 'Unbounded', sans-serif; font-weight: 600; font-size: 16px; letter-spacing: -0.4px; margin-bottom: 10px; }
.step-card p { font-size: 14px; color: var(--text-dim); font-weight: 300; line-height: 1.55; }

/* FAQ */
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 768px) { .faq-grid { grid-template-columns: 1fr; } }
.faq-grid--single { grid-template-columns: 1fr; }
.faq-item { background: var(--bg-glass); border: 1px solid var(--border); border-radius: var(--radius-md); overflow: hidden; backdrop-filter: blur(10px); transition: border-color var(--transition); }
.faq-item:hover, .faq-item.open { border-color: var(--border-hover); }
.faq-q { display: flex; align-items: center; justify-content: space-between; padding: 20px 24px; cursor: pointer; font-size: 15px; font-weight: 500; letter-spacing: -0.2px; user-select: none; gap: 16px; transition: color var(--transition); width: 100%; background: none; color: var(--text); text-align: left; }
.faq-q:hover { color: var(--accent); }
.faq-toggle { width: 28px; height: 28px; min-width: 28px; border-radius: 50%; background: var(--bg-glass); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; transition: transform 0.35s ease, background var(--transition); }
.faq-toggle svg { width: 14px; height: 14px; color: var(--text-dim); transition: color var(--transition); }
.faq-item.open .faq-toggle { transform: rotate(45deg); background: var(--accent-glow); }
.faq-item.open .faq-toggle svg { color: var(--accent); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-item.open .faq-a { max-height: 300px; }
.faq-a-inner { padding: 0 24px 20px; font-size: 14px; color: var(--text-dim); font-weight: 300; line-height: 1.6; }

/* CTA BANNER */
.cta-banner { padding: 80px 0; }
.cta-banner-inner { background: linear-gradient(135deg, rgba(255,193,108,0.08) 0%, rgba(255,188,19,0.06) 100%); border: 1px solid rgba(255,193,108,0.12); border-radius: var(--radius-xl); padding: 60px; text-align: center; position: relative; overflow: hidden; }
@media (max-width: 768px) { .cta-banner-inner { padding: 40px 24px; } }
.cta-banner-inner::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, rgba(255,193,108,0.45), transparent); }
.cta-banner h2 { font-family: 'Unbounded', sans-serif; font-weight: 800; font-size: clamp(24px, 3vw, 36px); letter-spacing: -1px; margin-bottom: 12px; }
.cta-banner p { font-size: 16px; color: var(--text-mid); font-weight: 300; margin-bottom: 32px; }
.cta-banner-actions { display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; }

/* BREADCRUMBS */
.breadcrumbs { padding: 100px 0 0; }
@media (max-width: 768px) { .breadcrumbs { padding: 76px 0 0; } }
.breadcrumbs-inner { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text-dim); flex-wrap: wrap; }
.breadcrumbs-inner a { color: var(--text-mid); transition: color var(--transition); }
.breadcrumbs-inner a:hover { color: var(--accent); }
.bc-sep { color: var(--text-dim); opacity: 0.5; }

/* LINK CARDS (for related pages) */
.link-cards { display: flex; flex-direction: column; gap: 10px; }
.link-card { display: flex; align-items: center; justify-content: space-between; background: var(--bg-glass); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 18px 24px; backdrop-filter: blur(10px); transition: border-color var(--transition), background var(--transition), transform var(--transition); }
.link-card:hover { border-color: var(--border-hover); background: var(--bg-glass-hover); transform: translateX(4px); }
.link-card-name { font-size: 15px; font-weight: 500; }
.link-card-cta { font-size: 13px; color: var(--accent); margin-top: 4px; }
.link-card-arrow { width: 20px; height: 20px; color: var(--text-dim); flex-shrink: 0; }

/* SPECIFICS LIST */
.specifics-list { display: flex; flex-direction: column; gap: 12px; margin-top: 20px; }
.specifics-item { display: flex; align-items: flex-start; gap: 12px; font-size: 15px; color: var(--text-mid); line-height: 1.5; }
.specifics-icon { width: 20px; height: 20px; min-width: 20px; color: var(--accent); margin-top: 2px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

/* ROAD NOTE (warning block) */
.road-note { background: rgba(255,188,19,0.08); border: 1px solid rgba(255,188,19,0.18); border-radius: var(--radius-md); padding: 18px 20px; margin-top: 20px; display: flex; align-items: flex-start; gap: 12px; font-size: 14px; color: var(--text-mid); line-height: 1.5; }
.road-note-icon { width: 20px; height: 20px; min-width: 20px; color: var(--orange); fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; margin-top: 1px; }

/* LANDMARKS */
.landmarks-list { display: flex; flex-direction: column; gap: 10px; }
.landmark-item { display: flex; align-items: center; gap: 12px; font-size: 15px; color: var(--text-mid); }
.landmark-pin { width: 32px; height: 32px; min-width: 32px; border-radius: 50%; background: var(--accent-glow); display: flex; align-items: center; justify-content: center; }
.landmark-pin svg { width: 16px; height: 16px; fill: none; stroke: var(--accent); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

/* ARRIVAL TIME */
.time-block { background: var(--bg-glass); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 32px; text-align: center; backdrop-filter: blur(10px); }
.time-range { margin-bottom: 12px; }
.time-num { font-family: 'Unbounded', sans-serif; font-weight: 900; font-size: 48px; color: var(--accent); }
.time-unit { font-family: 'Unbounded', sans-serif; font-weight: 600; font-size: 18px; color: var(--text-mid); margin-left: 8px; }
.time-note { font-size: 14px; color: var(--text-dim); font-weight: 300; line-height: 1.5; }

/* SECTION TEXT (location pages) */
.section-text { font-size: 16px; color: var(--text-mid); font-weight: 300; line-height: 1.7; }
.section-subtitle { font-size: 14px; color: var(--text-dim); margin-top: -4px; margin-bottom: 20px; }

/* SAFETY STEPS (location pages) */
.safety-steps { display: flex; flex-direction: column; gap: 12px; }
.safety-step { display: flex; align-items: flex-start; gap: 16px; background: var(--bg-glass); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 20px; }
.safety-step-num { font-family: 'Unbounded', sans-serif; font-weight: 900; font-size: 24px; color: rgba(255,193,108,0.20); min-width: 40px; }
.safety-step-text { font-size: 14px; color: var(--text-mid); line-height: 1.5; }

/* 404 PAGE */
.error-page { min-height: 80vh; display: flex; align-items: center; justify-content: center; text-align: center; padding-top: 100px; }
.error-code { font-family: 'Unbounded', sans-serif; font-weight: 900; font-size: 120px; color: rgba(255,193,108,0.10); line-height: 1; }
.error-title { font-family: 'Unbounded', sans-serif; font-weight: 800; font-size: 28px; letter-spacing: -1px; margin-bottom: 12px; }
.error-text { font-size: 16px; color: var(--text-dim); margin-bottom: 32px; }

/* FOOTER */
.footer { border-top: 1px solid var(--border); padding: 40px 0; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.footer-left { display: flex; align-items: center; gap: 24px; }
.footer-logo { font-family: 'Unbounded', sans-serif; font-weight: 800; font-size: 18px; letter-spacing: -0.5px; }
.footer-logo span { color: var(--accent); }
.footer-copy { font-size: 13px; color: var(--text-dim); font-weight: 300; }
.footer-contacts { display: flex; align-items: center; gap: 20px; }
.footer-contacts a { font-size: 14px; color: var(--text-mid); font-weight: 400; transition: color var(--transition); }
.footer-contacts a:hover { color: var(--text); }

/* BOTTOM BAR (mobile) */
.bottom-bar { display: none; }
@media (max-width: 960px) {
    .bottom-bar { display: block; position: fixed; bottom: 0; left: 0; right: 0; z-index: 1000; background: rgba(46,49,53,0.94); backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px); border-top: 1px solid var(--border); padding: 12px 20px; padding-bottom: max(12px, env(safe-area-inset-bottom)); }
    .bottom-bar-inner { max-width: 430px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
    .bb-btn { display: flex; align-items: center; justify-content: center; gap: 8px; font-weight: 600; font-size: 15px; padding: 14px 16px; border-radius: var(--radius-xs); transition: transform 0.15s; text-decoration: none; }
    .bb-btn:active { transform: scale(0.97); }
    .bb-btn svg { width: 18px; height: 18px; }
    .bb-call { background: var(--accent); color: #1A1A1A; }
    .bb-msg { background: var(--bg-glass); border: 1px solid var(--border); color: var(--text); }
    .footer { padding-bottom: 100px; }
}

/* RESPONSIVE TYPOGRAPHY */
@media (max-width: 480px) {
    .hero h1 { font-size: 34px; letter-spacing: -1.5px; }
    .hero-sub { font-size: 15px; }
    .hero-card-main { padding: 24px 20px; }
    .hero-stat-num { font-size: 28px; }
    .hero-stat-num small { font-size: 14px; }
    .hero-stats-grid { gap: 12px; }
    .hero-feature-icon { width: 38px; height: 38px; min-width: 38px; font-size: 17px; }
    .hero-feature-text { font-size: 13px; }
    .btn-primary { width: 100%; justify-content: center; padding: 16px 24px; font-size: 15px; }
    .btn-ghost { padding: 13px 20px; font-size: 14px; }
    .hero-actions { gap: 10px; }
    .hero-actions .btn-ghost { flex: 1; justify-content: center; }
    .section-title { font-size: 24px; letter-spacing: -1px; }
    .service-card { padding: 22px 20px; }
    .service-icon { width: 44px; height: 44px; font-size: 20px; margin-bottom: 14px; }
    .service-card h3 { font-size: 15px; }
    .step-card { padding: 24px 22px; }
    .step-number { font-size: 36px; margin-bottom: 10px; }
    .about-hl-num { font-size: 26px; }
    .about-hl { padding: 18px 14px; }
    .gallery-item { min-width: 260px; max-width: 300px; }
    .faq-q { padding: 16px 18px; font-size: 14px; }
    .faq-a-inner { padding: 0 18px 16px; font-size: 13px; }
    .cta-banner-inner { padding: 32px 20px; }
    .cta-banner-actions .btn-primary { width: 100%; }
    .cta-banner-actions .btn-ghost { flex: 1; }
    .footer-inner { flex-direction: column; align-items: flex-start; gap: 12px; }
    .footer-left { flex-direction: column; align-items: flex-start; gap: 6px; }
    .footer-contacts { flex-wrap: wrap; gap: 12px; }
}

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