/* =========================================================
   GÄLLIVARE TAXI — SHARED DESIGN SYSTEM
========================================================= */
:root {
    --bg: #0a0c10;
    --bg-alt: #12151c;
    --nav-bg: rgba(10, 12, 16, 0.72);
    --panel: rgba(18, 21, 28, 0.7);
    --panel-border: rgba(255, 255, 255, 0.1);
    --field-bg: rgba(255, 255, 255, 0.07);
    --field-border: rgba(255, 255, 255, 0.16);
    --text: #f5f6f8;
    --text-dim: rgba(245, 246, 248, 0.68);

    --gold: #FFB020;
    --gold-dark: #E39A14;
    --gold-soft: rgba(255, 176, 32, 0.15);

    --wa: #25D366;
    --wa-hover: #1EBE5C;

    /* The hero always sits over a dark photo + shade overlay, in both
       themes, so its text needs its own fixed light tone rather than
       the theme-switching --text / --text-dim tokens. */
    --hero-text: #f5f6f8;
    --hero-text-dim: rgba(245, 246, 248, 0.75);

    --radius: 18px;
    --transition: all 0.25s ease;
    --max-width: 1180px;
}

[data-theme="light"] {
    --bg: #f4f5f8;
    --bg-alt: #ffffff;
    --nav-bg: rgba(255, 255, 255, 0.82);
    --panel: rgba(255, 255, 255, 0.75);
    --panel-border: rgba(20, 21, 26, 0.1);
    --field-bg: rgba(20, 21, 26, 0.04);
    --field-border: rgba(20, 21, 26, 0.14);
    --text: #14151a;
    --text-dim: rgba(20, 21, 26, 0.64);
}

[data-theme="light"] .field input,
[data-theme="light"] .field select,
[data-theme="light"] .field textarea {
    color: var(--text);
}

[data-theme="light"] .field input::placeholder,
[data-theme="light"] .field textarea::placeholder {
    color: rgba(20, 21, 26, 0.45);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    background: var(--bg);
    color: var(--text);
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; }

.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 5%;
}

/* =========================================================
   NAVBAR
========================================================= */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 5%;
    background: var(--nav-bg);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--panel-border);
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 1.3rem;
    font-weight: 800;
    letter-spacing: -0.3px;
}

.brand img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    flex-shrink: 0;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dim);
    transition: var(--transition);
    position: relative;
}

.nav-links a:hover, .nav-links a.active { color: var(--gold); }

.nav-links a.active::after {
    content: "";
    position: absolute;
    left: 0; right: 0; bottom: -6px;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
}

.nav-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 0.6rem;
}

.lang-switch { display: flex; gap: 0.35rem; }

.lang-flag {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.06);
    border: 1px solid var(--panel-border);
    border-radius: 50%;
    font-size: 0.95rem;
    line-height: 1;
    cursor: pointer;
    opacity: 0.55;
    transition: var(--transition);
}

.lang-flag svg { border-radius: 3px; flex-shrink: 0; }

.lang-flag:hover { opacity: 0.85; background: rgba(255,255,255,0.14); }
.lang-flag.active { opacity: 1; border-color: var(--gold); background: var(--gold-soft); }

[data-theme="light"] .lang-flag {
    background: rgba(20,21,26,0.04);
    border-color: rgba(20,21,26,0.16);
}
[data-theme="light"] .lang-flag:hover { background: rgba(20,21,26,0.08); }

.icon-btn {
    background: rgba(255,255,255,0.06);
    border: 1px solid var(--panel-border);
    color: var(--text);
    padding: 0.5rem 0.8rem;
    border-radius: 999px;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 700;
    transition: var(--transition);
}

.icon-btn:hover { background: rgba(255,255,255,0.14); }

[data-theme="light"] .icon-btn {
    background: rgba(20,21,26,0.04);
    border-color: rgba(20,21,26,0.16);
}
[data-theme="light"] .icon-btn:hover { background: rgba(20,21,26,0.08); }

.qr-wrap { position: relative; }

.qr-popover {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    z-index: 1100;
    width: 190px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    background: var(--panel);
    border: 1px solid var(--panel-border);
    backdrop-filter: blur(14px);
    border-radius: 16px;
    padding: 1rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: var(--transition);
}

.qr-wrap:hover .qr-popover,
.qr-wrap:focus-within .qr-popover {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.qr-popover img {
    width: 150px;
    height: 150px;
    border-radius: 10px;
    background: #fff;
    padding: 6px;
}

.qr-popover p {
    font-size: 0.75rem;
    text-align: center;
    color: var(--text-dim);
}

.nav-cta {
    background: var(--gold);
    color: #16130a;
    padding: 0.6rem 1.3rem;
    border-radius: 999px;
    font-weight: 800;
    font-size: 0.9rem;
    transition: var(--transition);
}

.nav-cta:hover { background: var(--gold-dark); transform: translateY(-2px); }

.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text);
    font-size: 1.6rem;
    cursor: pointer;
}

@media (max-width: 1024px) {
    .qr-wrap { display: none; }
}

@media (max-width: 860px) {
    .nav-links { display: none; }
    .nav-toggle { display: block; }

    .nav-links.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--bg);
        backdrop-filter: blur(14px);
        padding: 1.5rem 8%;
        gap: 1.25rem;
        border-bottom: 1px solid var(--panel-border);
    }
}

/* =========================================================
   HERO (with animated aurora + snow)
========================================================= */
.hero {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    isolation: isolate;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 7rem 5% 4rem;
}

.hero.compact { min-height: 60vh; justify-content: center; }

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: -3;
    background-image: url('../Assets/Images/hero-taxi-car.jpg');
    background-size: cover;
    background-position: center 40%;
    filter: saturate(0.9) brightness(0.72);
}

.hero-bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 40%;
    background-image: none;
}

.hero-shade {
    position: absolute;
    inset: 0;
    z-index: -2;
    background: linear-gradient(180deg, rgba(6,8,12,0.65) 0%, rgba(6,8,12,0.55) 45%, rgba(6,8,12,0.92) 100%);
}

.aurora {
    position: absolute;
    inset: -10% -10% 40% -10%;
    z-index: -1;
    pointer-events: none;
    mix-blend-mode: screen;
    opacity: 0.7;
    background:
        radial-gradient(ellipse 60% 40% at 20% 10%, rgba(60,255,170,0.32), transparent 60%),
        radial-gradient(ellipse 50% 35% at 60% 5%, rgba(80,180,255,0.28), transparent 60%),
        radial-gradient(ellipse 55% 30% at 85% 20%, rgba(255,176,32,0.22), transparent 60%);
    filter: blur(30px);
    animation: auroraShift 14s ease-in-out infinite alternate;
}

@keyframes auroraShift {
    0%   { transform: translateX(-4%) translateY(0) scaleY(1); opacity: 0.55; }
    50%  { transform: translateX(3%) translateY(2%) scaleY(1.1); opacity: 0.8; }
    100% { transform: translateX(-2%) translateY(-1%) scaleY(0.95); opacity: 0.6; }
}

.snow-canvas {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 720px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--gold-soft);
    border: 1px solid var(--gold);
    color: var(--gold);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.6px;
    padding: 0.45rem 1rem;
    border-radius: 999px;
    margin-bottom: 1.25rem;
}

.hero-content h1 {
    font-size: clamp(2.3rem, 5vw, 3.6rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1px;
    margin-bottom: 1.25rem;
    color: var(--hero-text);
    text-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

.hero-content h1 .gold-text { color: var(--gold); }

.hero-content .hero-tagline {
    color: var(--gold);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.hero-content p {
    font-size: 1.1rem;
    color: var(--hero-text-dim);
    max-width: 560px;
    margin-bottom: 2rem;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; }

/* =========================================================
   BUTTONS
========================================================= */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.95rem 1.8rem;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.btn-gold { background: var(--gold); color: #16130a; }
.btn-gold:hover { background: var(--gold-dark); transform: translateY(-2px); }

.btn-ghost {
    background: rgba(255,255,255,0.06);
    border: 1px solid var(--panel-border);
    color: var(--text);
}
.btn-ghost:hover { background: rgba(255,255,255,0.14); }

[data-theme="light"] .btn-ghost {
    background: rgba(20,21,26,0.04);
    border-color: rgba(20,21,26,0.16);
}
[data-theme="light"] .btn-ghost:hover { background: rgba(20,21,26,0.08); }

.hero .btn-ghost {
    background: rgba(245,246,248,0.08);
    border-color: rgba(245,246,248,0.25);
    color: var(--hero-text);
}
.hero .btn-ghost:hover { background: rgba(245,246,248,0.16); }

.btn-wa { background: var(--wa); color: #fff; }
.btn-wa:hover { background: var(--wa-hover); transform: translateY(-2px); }

/* =========================================================
   STATS STRIP
========================================================= */
.stats {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
    max-width: 720px;
}

.stat h3 { font-size: 1.8rem; color: var(--gold); font-weight: 800; }
.stat p { font-size: 0.85rem; color: var(--hero-text-dim); }

.weather-stat h3 { font-size: 1.5rem; white-space: nowrap; }

/* =========================================================
   SECTIONS
========================================================= */
section { padding: 5rem 0; }

.section-head { text-align: center; max-width: 640px; margin: 0 auto 3rem; }
.section-head .eyebrow { margin-bottom: 1rem; }
.section-head h2 { font-size: clamp(1.8rem, 3.5vw, 2.5rem); font-weight: 800; margin-bottom: 0.75rem; }
.section-head p { color: var(--text-dim); }

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}

.card {
    background: var(--panel);
    border: 1px solid var(--panel-border);
    backdrop-filter: blur(10px);
    border-radius: var(--radius);
    padding: 2rem;
    transition: var(--transition);
}

.card:hover { transform: translateY(-4px); border-color: var(--gold); }

.card .icon-circle {
    width: 52px; height: 52px;
    border-radius: 14px;
    background: var(--gold-soft);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
}

.card h3 { font-size: 1.15rem; margin-bottom: 0.6rem; }
.card p { color: var(--text-dim); font-size: 0.95rem; }

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 1rem;
    color: var(--gold);
    font-size: 0.9rem;
    font-weight: 700;
    transition: var(--transition);
}

.card-link:hover { gap: 0.65rem; color: var(--gold-dark); }

.destination-card { padding: 0; overflow: hidden; }

.card-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

.destination-card .card-body { padding: 1.5rem 1.75rem 1.75rem; }
.destination-card .card-body h3 { font-size: 1.15rem; margin-bottom: 0.6rem; }
.destination-card .card-body p { color: var(--text-dim); font-size: 0.95rem; }

.photo-credit {
    margin-top: 0.75rem;
    font-size: 0.7rem;
    color: var(--text-dim);
    opacity: 0.7;
}

.photo-credit a { color: inherit; text-decoration: underline; }
.photo-credit a:hover { color: var(--gold); }

/* =========================================================
   TESTIMONIALS
========================================================= */
.testimonial-video-wrap {
    max-width: 760px;
    margin: 0 auto 3rem;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--panel-border);
}

.testimonial-video-wrap video {
    width: 100%;
    max-height: 320px;
    object-fit: cover;
    display: block;
}

.testimonial-card {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.testimonial-card .stars {
    color: var(--gold);
    letter-spacing: 2px;
    font-size: 1rem;
}

.testimonial-card .testimonial-quote {
    color: var(--text-dim);
    font-size: 0.95rem;
    font-style: italic;
    flex-grow: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: auto;
}

.testimonial-author .avatar {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--gold-soft);
}

.testimonial-author strong { display: block; font-size: 0.9rem; }
.testimonial-author span { font-size: 0.8rem; color: var(--text-dim); }

/* =========================================================
   FAQ ACCORDION
========================================================= */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 760px;
    margin: 0 auto;
}

.faq-item {
    background: var(--panel);
    border: 1px solid var(--panel-border);
    border-radius: var(--radius);
    padding: 0 1.5rem;
    transition: var(--transition);
}

.faq-item:hover { border-color: var(--gold); }

.faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 1.25rem 0;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
    content: "+";
    flex-shrink: 0;
    color: var(--gold);
    font-size: 1.4rem;
    font-weight: 800;
    line-height: 1;
}

.faq-item[open] summary::after { content: "\2212"; }

.faq-answer {
    color: var(--text-dim);
    font-size: 0.95rem;
    padding-bottom: 1.25rem;
}

.bg-alt { background: var(--bg-alt); }

/* CTA banner */
.cta-banner {
    position: relative;
    overflow: hidden;
    background: linear-gradient(120deg, rgba(255,176,32,0.14), rgba(255,107,53,0.1));
    border: 1px solid var(--gold-soft);
    border-radius: 24px;
    padding: 3rem 2rem;
    text-align: center;
    max-width: var(--max-width);
    margin: 0 auto;
}

.cta-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url('../Assets/Images/hero-taxi-car.jpg');
    background-size: cover;
    background-position: center 40%;
    opacity: 0.18;
    z-index: 0;
}

.cta-banner::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, transparent 0%, var(--bg) 120%);
    opacity: 0.85;
    z-index: 0;
}

.cta-banner > * { position: relative; z-index: 1; }

.cta-banner h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 0.75rem; }
.cta-banner p { color: var(--text-dim); margin-bottom: 1.75rem; }
.cta-banner .hero-actions { justify-content: center; }

/* =========================================================
   BOOKING FORM (used on book.html)
========================================================= */
.booking-section {
    position: relative;
    overflow: hidden;
}

.booking-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url('../Assets/Images/hero-taxi-car.jpg');
    background-size: cover;
    background-position: center 35%;
    opacity: 0.16;
    z-index: 0;
}

.booking-section::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, var(--bg) 0%, transparent 25%, transparent 75%, var(--bg) 100%);
    z-index: 0;
}

.booking-section .container { position: relative; z-index: 1; }

.booking-panel {
    position: relative;
    z-index: 2;
    background: var(--panel);
    border: 1px solid var(--panel-border);
    backdrop-filter: blur(12px);
    border-radius: 22px;
    padding: 2rem;
}

.routes-panel {
    background: var(--gold);
    color: #14151a;
    border-radius: 18px;
    padding: 1.5rem 2rem;
    margin-bottom: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
}

.routes-panel label { display: block; font-size: 0.7rem; font-weight: 800; letter-spacing: 0.8px; margin-bottom: 0.5rem; opacity: 0.75; }

.pickup-select {
    background: #14151a; color: #fff; border: none; border-radius: 10px;
    padding: 0.85rem 1.5rem; font-size: 1rem; font-weight: 600; cursor: pointer;
    min-width: 220px; text-align: left;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.25rem;
    margin-bottom: 1.25rem;
}

.field label { display: block; font-size: 0.7rem; font-weight: 800; letter-spacing: 0.8px; color: var(--gold); margin-bottom: 0.5rem; }

.field .input-wrap { position: relative; display: flex; align-items: center; }
.field .input-wrap .icon { position: absolute; left: 0.9rem; font-size: 1rem; opacity: 0.85; }

.field input, .field select, .field textarea {
    width: 100%;
    background: var(--field-bg);
    border: 1px solid var(--field-border);
    border-radius: 10px;
    padding: 0.85rem 1rem 0.85rem 2.5rem;
    color: #fff;
    font-size: 0.95rem;
    transition: var(--transition);
    font-family: inherit;
}

.field textarea { padding-left: 1rem; resize: vertical; min-height: 100px; }
.field input::placeholder, .field textarea::placeholder { color: rgba(255,255,255,0.5); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold); background: rgba(255,255,255,0.12); }
.field select { appearance: none; cursor: pointer; }
.field select option { color: #000; }

.checkboxes { display: flex; align-items: center; gap: 1.5rem; padding-top: 1.6rem; }
.checkboxes label { display: flex; align-items: center; gap: 0.5rem; font-size: 0.9rem; font-weight: 600; cursor: pointer; }
.checkboxes input[type="checkbox"] { width: 18px; height: 18px; accent-color: var(--gold); cursor: pointer; }

/* =========================================================
   FOOTER
========================================================= */
footer {
    background: var(--bg-alt);
    border-top: 1px solid var(--panel-border);
    padding: 3.5rem 0 1.5rem;
}

.footer-map {
    width: 100%;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--panel-border);
    margin-bottom: 2.5rem;
    background: var(--bg-alt);
}

.footer-map iframe {
    width: 100%;
    height: 280px;
    border: 0;
    display: block;
    filter: grayscale(0.15) contrast(1.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-col h4 { font-size: 0.95rem; margin-bottom: 1rem; color: var(--gold); }
.footer-brand { display: flex; align-items: center; gap: 0.5rem; }
.footer-brand img { width: 28px; height: 28px; border-radius: 50%; flex-shrink: 0; }
.footer-col p, .footer-col a { color: var(--text-dim); font-size: 0.9rem; display: block; margin-bottom: 0.6rem; transition: var(--transition); }
.footer-col a:hover { color: var(--gold); }

.footer-weather #weatherTemp { color: var(--gold); font-weight: 700; }

.footer-bottom {
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-dim);
    border-top: 1px solid var(--panel-border);
    padding-top: 1.5rem;
}

/* =========================================================
   WHATSAPP FLOAT
========================================================= */
.whatsapp-float {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    width: 56px; height: 56px;
    background: var(--wa);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 10px 20px rgba(0,0,0,0.35);
    z-index: 500;
    transition: var(--transition);
}

.whatsapp-float:hover { background: var(--wa-hover); transform: translateY(-3px) scale(1.05); }

@media (max-width: 640px) {
    .routes-panel { flex-direction: column; align-items: stretch; }
}

/* =========================================================
   COOKIE / LOCAL STORAGE NOTICE
========================================================= */
.cookie-banner {
    position: fixed;
    left: 1.5rem;
    right: 1.5rem;
    bottom: 1.5rem;
    z-index: 1500;
    max-width: 640px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    background: var(--panel);
    border: 1px solid var(--panel-border);
    backdrop-filter: blur(14px);
    border-radius: 16px;
    padding: 1.25rem 1.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.35);
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px);
    transition: var(--transition);
}

.cookie-banner.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.cookie-banner p {
    color: var(--text-dim);
    font-size: 0.85rem;
    flex: 1 1 320px;
    margin: 0;
}

.btn-sm { padding: 0.6rem 1.2rem; font-size: 0.85rem; flex-shrink: 0; }

@media (max-width: 760px) {
    .cookie-banner { bottom: 6rem; }
}

/* =========================================================
   LIGHT CONTACT VARIANT
========================================================= */
.light-section {
    background: #ffffff;
    color: #14151a;
    padding: 5rem 0;
}

.light-title {
    text-align: center;
    margin-bottom: 3.5rem;
}

.light-title h1 {
    display: inline-block;
    background: var(--gold);
    color: #14151a;
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    font-weight: 800;
    letter-spacing: 1px;
    padding: 0.5rem 1.5rem;
    position: relative;
}

.light-title h1::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -14px;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--gold);
    border-radius: 2px;
}

.contact-columns {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 2rem;
    align-items: start;
}

@media (max-width: 860px) {
    .contact-columns { grid-template-columns: 1fr; }
}

.light-card {
    background: #f4f5f7;
    border-radius: 16px;
    padding: 2rem;
}

.light-card h2 {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: #14151a;
}

.light-field { margin-bottom: 1.25rem; }

.light-field label {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #14151a;
}

.light-field input, .light-field textarea {
    width: 100%;
    background: #ffffff;
    border: 1px solid #e2e4e9;
    border-radius: 10px;
    padding: 0.85rem 1rem;
    font-size: 0.95rem;
    font-family: inherit;
    color: #14151a;
    transition: var(--transition);
}

.light-field textarea { min-height: 130px; resize: vertical; }

.light-field input::placeholder, .light-field textarea::placeholder { color: #9aa0ab; }

.light-field input:focus, .light-field textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px var(--gold-soft);
}

.btn-block { width: 100%; justify-content: center; }

.info-list { display: flex; flex-direction: column; gap: 1.5rem; margin-bottom: 2rem; }

.info-list li { display: flex; align-items: flex-start; gap: 1rem; list-style: none; }

.info-icon {
    flex-shrink: 0;
    width: 44px; height: 44px;
    background: var(--gold);
    color: #14151a;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem;
}

.info-list strong { display: block; color: #14151a; font-size: 1rem; margin-bottom: 0.2rem; }
.info-list p, .info-list a { color: #5b616e; font-size: 0.92rem; }
.info-list a:hover { color: var(--gold-dark); }

.follow-us {
    background: #f4f5f7;
    border-radius: 16px;
    padding: 1.5rem 2rem;
}

.follow-us h3 { font-size: 1rem; font-weight: 800; margin-bottom: 1rem; color: #14151a; }

.social-icons { display: flex; gap: 0.75rem; }

.social-icons a {
    width: 40px; height: 40px;
    background: var(--gold);
    color: #14151a;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem;
    transition: var(--transition);
}

.social-icons a:hover { background: var(--gold-dark); transform: translateY(-2px); }
