/* Zuger Taxi & Transport GmbH - Premium Stylesheet */

:root {
    --navy: #051321;
    --navy-light: #0c2237;
    --navy-pale: #f0f4f8;
    --ink: #102a3a;
    --muted: #62727d;
    --sand: #f6f2eb;
    --paper: #fbfaf7;
    --white: #ffffff;
    --gold: #caa04c;
    --gold-bright: #d4af37;
    --gold-dark: #a47b2c;
    --gold-pale: #f2dfb7;
    --line: rgba(12, 34, 54, 0.08);
    --shadow: 0 20px 40px rgba(5, 19, 33, 0.08);
    --shadow-hover: 0 30px 60px rgba(5, 19, 33, 0.14);
    --radius: 4px;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: 'Plus Jakarta Sans', ui-sans-serif, system-ui, -apple-system, sans-serif;
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

.container {
    width: min(1200px, calc(100% - 48px));
    margin-inline: auto;
}

.narrow {
    width: min(780px, 100%);
}

.skip-link {
    position: absolute;
    left: -9999px;
}

.skip-link:focus {
    left: 1rem;
    top: 1rem;
    z-index: 999;
    background: var(--white);
    color: var(--navy);
    padding: 0.6rem 1.2rem;
    border: 1px solid var(--gold);
    box-shadow: var(--shadow);
}

/* Glassmorphic Fixed Header */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1200;
    background: rgba(251, 250, 247, 0.92);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-bottom: 1px solid var(--line);
    transition: var(--transition);
}

body {
    padding-top: 96px;
}

@media (max-width: 860px) {
    body {
        padding-top: 80px;
    }
}

.header-inner {
    height: 96px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.brand img {
    display: block;
    width: 124px;
    height: auto;
    max-height: 72px;
    object-fit: contain;
    transition: var(--transition);
}

.brand:hover img {
    transform: scale(1.02);
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-right: auto;
}

.desktop-nav a {
    color: var(--navy);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.88rem;
    transition: var(--transition);
    position: relative;
    padding: 0.25rem 0;
}

.desktop-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: var(--transition);
}

.desktop-nav a:hover {
    color: var(--gold-dark);
}

.desktop-nav a:hover::after {
    width: 100%;
}

/* Language Switcher */
.lang-switcher {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.82rem;
    font-weight: 800;
    background: rgba(12, 34, 54, 0.05);
    padding: 0.35rem 0.75rem;
    border-radius: 99px;
    border: 1px solid rgba(12, 34, 54, 0.03);
}

.lang-link {
    color: var(--muted);
    text-decoration: none;
    transition: var(--transition);
}

.lang-link:hover {
    color: var(--gold-dark);
}

.lang-separator {
    color: rgba(12, 34, 54, 0.15);
}

.lang-active {
    color: var(--navy);
    position: relative;
}

/* Header Phone */
.header-phone {
    position: relative;
    color: var(--navy);
    text-decoration: none;
    font-size: 1.05rem;
    font-weight: 800;
    text-align: right;
    line-height: 1.25;
    transition: var(--transition);
    padding-left: 1.2rem;
}

.header-phone::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #4f9e7b;
    box-shadow: 0 0 0 4px rgba(79, 158, 123, 0.2);
    animation: pulse-green 2s infinite;
}

.header-phone span {
    display: block;
    color: var(--muted);
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.header-phone:hover {
    color: var(--gold-dark);
}

@keyframes pulse-green {
    0% { box-shadow: 0 0 0 0 rgba(79, 158, 123, 0.4); }
    70% { box-shadow: 0 0 0 6px rgba(79, 158, 123, 0); }
    100% { box-shadow: 0 0 0 0 rgba(79, 158, 123, 0); }
}

/* Eyebrows & Headings */
.eyebrow {
    margin: 0 0 1rem;
    color: var(--gold);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

h1, h2, h3, h4 {
    color: var(--navy);
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 600;
    margin-top: 0;
}

h1 {
    font-size: clamp(3rem, 5.5vw, 5.8rem);
    letter-spacing: -0.04em;
    line-height: 1.02;
    margin-bottom: 2rem;
}

h1 em {
    font-style: italic;
    font-weight: 400;
    color: var(--gold-dark);
}

h2 {
    font-size: clamp(2.2rem, 3.8vw, 3.8rem);
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

/* Hero Section (Intro) */
.intro, .page-intro, .coverage-intro {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--sand) 0%, #edf1f2 100%);
    padding: 7rem 0 6.5rem;
}

.intro::after, .page-intro::after, .coverage-intro::after {
    content: "";
    position: absolute;
    width: 50rem;
    height: 50rem;
    right: -15rem;
    top: -20rem;
    border: 1px solid rgba(202, 160, 76, 0.2);
    border-radius: 50%;
    box-shadow: 0 0 0 50px rgba(202, 160, 76, 0.03), 0 0 0 120px rgba(202, 160, 76, 0.01);
    pointer-events: none;
}

.intro-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.22fr 0.78fr;
    align-items: center;
    gap: 5rem;
}

.lead {
    max-width: 650px;
    color: #4a5a65;
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

.trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-top: 2rem;
}

.trust-row span {
    border: 1px solid rgba(202, 160, 76, 0.35);
    background: rgba(255, 255, 255, 0.65);
    border-radius: 99px;
    padding: 0.4rem 0.9rem;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--navy-light);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

/* Premium Offer Card */
.quote-card {
    position: relative;
    background: linear-gradient(145deg, var(--navy-light) 0%, var(--navy) 100%);
    color: var(--white);
    padding: 3rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
}

.quote-card::after {
    content: "";
    position: absolute;
    width: 14rem;
    height: 14rem;
    right: -7rem;
    bottom: -7rem;
    border: 1px solid rgba(202, 160, 76, 0.25);
    border-radius: 50%;
}

.quote-card > * {
    position: relative;
    z-index: 1;
}

.quote-card .eyebrow {
    color: var(--gold-bright);
}

.quote-card h2 {
    color: var(--white);
    margin: 0.5rem 0 1.2rem;
    font-size: 2.2rem;
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.quote-card p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

/* Buttons & Links */
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    border: 0;
    border-radius: var(--radius);
    padding: 0.9rem 1.8rem;
    font-weight: 800;
    font-size: 0.95rem;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
}

.button-primary {
    background: linear-gradient(135deg, var(--gold-bright) 0%, var(--gold) 100%);
    color: var(--navy);
    box-shadow: 0 8px 24px rgba(202, 160, 76, 0.25);
}

.button-primary:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, #ffd359 0%, var(--gold-bright) 100%);
    box-shadow: 0 12px 30px rgba(202, 160, 76, 0.35);
}

.button-light {
    background: var(--white);
    color: var(--navy);
    box-shadow: var(--shadow);
}

.button-light:hover {
    transform: translateY(-2px);
    background: var(--navy-pale);
    box-shadow: var(--shadow-hover);
}

.button-ghost {
    border: 2px solid rgba(12, 34, 54, 0.25);
    color: var(--navy);
    background: transparent;
}

.button-ghost:hover {
    border-color: var(--navy);
    background: rgba(12, 34, 54, 0.02);
    transform: translateY(-2px);
}

.button-outline {
    border: 2px solid var(--gold);
    color: var(--navy);
    background: transparent;
    padding: 0.8rem 1.6rem;
}

.button-outline:hover {
    background: var(--gold);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(202, 160, 76, 0.2);
}

.text-link {
    display: inline-block;
    color: var(--gold-dark);
    font-weight: 800;
    text-decoration: none;
    transition: var(--transition);
    margin-top: 1rem;
}

.text-link:hover {
    color: var(--navy);
    transform: translateX(4px);
}

/* Service Grid & Cards */
.service-strip {
    padding: 6rem 0;
    background: var(--sand);
    border-bottom: 1px solid var(--line);
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.service-card {
    display: flex;
    flex-direction: column;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    text-decoration: none;
    color: var(--ink);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.service-card-img {
    position: relative;
    width: 100%;
    aspect-ratio: 1.6;
    overflow: hidden;
    background: var(--navy-pale);
}

.service-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.service-card-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-card-content h3 {
    margin: 0 0 0.5rem 0;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.35rem;
    letter-spacing: -0.02em;
    color: var(--navy);
}

.service-card-content p {
    margin: 0 0 1.25rem 0;
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1.5;
    flex-grow: 1;
}

.card-link {
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--gold-dark);
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    transition: var(--transition);
    margin-top: auto;
}

.card-link .arrow {
    transition: transform 0.3s var(--transition);
}

/* Hover effects */
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(202, 160, 76, 0.3);
}

.service-card:hover .service-card-img img {
    transform: scale(1.05);
}

.service-card:hover .card-link {
    color: var(--navy);
}

.service-card:hover .card-link .arrow {
    transform: translateX(4px);
}

/* Sections */
.section {
    padding: 8rem 0;
}

.section-tint {
    background: #f4f6f7;
}

.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3.5rem;
}

.feature-grid article {
    position: relative;
    min-height: 240px;
    padding: 2.2rem;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: 0 4px 12px rgba(0,0,0,0.015);
    transition: var(--transition);
}

.feature-grid article::before {
    content: "";
    position: absolute;
    top: 0;
    left: 2.2rem;
    width: 3rem;
    border-top: 3px solid var(--gold);
    transition: var(--transition);
}

.feature-grid article:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
    border-color: rgba(202, 160, 76, 0.25);
}

.feature-grid article:hover::before {
    width: 4.5rem;
}

.feature-grid span {
    color: var(--gold-dark);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.feature-grid h3 {
    margin: 1rem 0 0.75rem;
    font-size: 1.45rem;
    letter-spacing: -0.02em;
}

.feature-grid p {
    color: var(--muted);
    margin: 0;
    font-size: 0.95rem;
}

/* Image Pair Component */
.image-pair {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 3.5rem;
}

.image-pair article {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.01);
    transition: var(--transition);
}

.image-pair article:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}

.image-pair figure {
    margin: 0;
    height: 24rem;
    overflow: hidden;
    background: #e5edf0;
}

.image-pair img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.image-pair article:hover img {
    transform: scale(1.03);
}

.image-caption {
    padding: 2rem;
}

.image-caption h3 {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.image-caption p {
    color: var(--muted);
    margin-bottom: 1.5rem;
}

/* Locations & Coverage */
.coverage {
    text-align: center;
}

.coverage p:not(.eyebrow) {
    max-width: 800px;
    margin: 0 auto 2.5rem;
}

.locations-section {
    background: var(--white);
}

.section-heading {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: flex-end;
    margin-bottom: 4rem;
}

.section-heading p {
    margin: 0;
    color: var(--muted);
    font-size: 1.1rem;
}

.location-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

.location-card {
    position: relative;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 1.5rem;
    min-height: 140px;
    padding: 1.8rem 2.2rem;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    color: var(--navy);
    text-decoration: none;
    transition: var(--transition);
}

.location-card:hover {
    z-index: 2;
    transform: translateY(-4px);
    border-color: var(--gold-dark);
    box-shadow: var(--shadow-hover);
    background: var(--navy);
    color: var(--white);
}

.location-index {
    align-self: start;
    color: var(--gold);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.location-card:hover .location-index {
    color: var(--gold-bright);
}

.location-name {
    font-size: 1.8rem;
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 600;
    letter-spacing: -0.03em;
}

.location-arrow {
    color: var(--gold);
    font-size: 1.5rem;
    transition: var(--transition);
}

.location-card:hover .location-arrow {
    transform: translate(3px, -3px);
    color: var(--gold-bright);
}

.location-meta {
    grid-column: 2 / -1;
    color: var(--muted);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.location-card:hover .location-meta {
    color: rgba(255, 255, 255, 0.7);
}

/* Route Note */
.route-note {
    background: linear-gradient(90deg, #f3ede2 0%, #f9f7f4 100%);
    border-top: 1px solid rgba(202, 160, 76, 0.15);
    border-bottom: 1px solid rgba(202, 160, 76, 0.15);
}

.route-note-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

/* Pages Styling & Form */
.page-intro {
    padding: 8rem 0 6.5rem;
}

.page-intro h1 {
    font-size: clamp(3.2rem, 6.5vw, 6.2rem);
}

.content h2 {
    margin-top: 3.5rem;
    font-size: 2.2rem;
    border-bottom: 1px solid var(--line);
    padding-bottom: 0.5rem;
}

.content h2:first-child {
    margin-top: 0;
}

.content p {
    margin: 1.25rem 0;
}

/* Accordion FAQs */
.content details {
    padding: 1.25rem 0;
    border-bottom: 1px solid var(--line);
    transition: var(--transition);
}

.content summary {
    cursor: pointer;
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--navy);
    list-style: none;
    position: relative;
    padding-right: 2rem;
}

.content summary::-webkit-details-marker {
    display: none;
}

.content summary::after {
    content: "+";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--gold);
    transition: var(--transition);
}

.content details[open] summary::after {
    content: "−";
    transform: translateY(-50%) rotate(180deg);
    color: var(--navy);
}

.content details p {
    margin-top: 1rem;
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.6;
}

/* Form Styling */
.quote-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.quote-form .full {
    grid-column: 1 / -1;
}

.quote-form label {
    display: grid;
    gap: 0.5rem;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--navy);
}

.quote-form input, .quote-form textarea, .quote-form select {
    width: 100%;
    border: 1px solid rgba(12, 34, 54, 0.2);
    border-radius: var(--radius);
    padding: 0.9rem 1.1rem;
    font-family: inherit;
    font-size: 1rem;
    background: var(--white);
    transition: var(--transition);
    color: var(--navy);
}

.quote-form input:focus, .quote-form textarea:focus, .quote-form select:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 4px rgba(202, 160, 76, 0.15);
}

.quote-form textarea {
    min-height: 8rem;
    resize: vertical;
}

.quote-form .notice {
    font-size: 0.88rem;
    color: var(--muted);
    margin: 0.5rem 0 1.5rem;
}

.quote-form .honeypot {
    position: absolute;
    left: -9999px;
}

.form-error {
    color: #a11f1f;
    font-size: 0.85rem;
    font-weight: 500;
}

/* District specific components */
.local-intro-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 5rem;
    align-items: center;
}

.local-mark {
    background: var(--navy-light);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius);
    padding: 2.5rem;
    color: var(--white);
    box-shadow: var(--shadow);
    text-align: center;
}

.local-mark strong {
    display: block;
    font-size: 2.1rem;
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 600;
    margin: 0.8rem 0;
    color: var(--gold-bright);
}

.local-mark span {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.88rem;
}

.journey-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3.5rem;
}

.journey-grid article {
    padding: 2.2rem;
    border: 1px solid var(--line);
    background: var(--white);
    border-radius: var(--radius);
    transition: var(--transition);
}

.journey-grid article:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    border-color: rgba(202, 160, 76, 0.25);
}

.journey-grid span {
    display: block;
    margin-bottom: 1rem;
    color: var(--gold-dark);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.journey-grid h3 {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
}

.journey-grid p {
    color: var(--muted);
    font-size: 0.95rem;
    margin: 0;
}

.local-checklist {
    margin: 2rem 0 0;
    padding: 0;
    list-style: none;
}

.local-checklist li {
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--line);
    display: flex;
    align-items: center;
    font-weight: 600;
}

.local-checklist li::before {
    content: "✓";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(202, 160, 76, 0.15);
    color: var(--gold-dark);
    margin-right: 1rem;
    font-size: 0.8rem;
    font-weight: 900;
}

.related-locations {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1rem;
}

.related-locations a {
    padding: 0.6rem 1.1rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    color: var(--navy);
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    background: var(--white);
    transition: var(--transition);
}

.related-locations a:hover {
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy);
    transform: translateY(-2px);
}

/* Final Call to Action Section */
.final-cta {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    color: #fff;
    padding: 7.5rem 0;
    text-align: center;
    border-top: 1px solid rgba(202, 160, 76, 0.25);
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(202, 160, 76, 0.05) 0%, transparent 60%);
    pointer-events: none;
}

.final-cta h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2.2rem, 4vw, 3rem);
    color: #fff;
    margin: 0.5rem 0 1.5rem 0;
    letter-spacing: -0.02em;
}

.final-cta p {
    color: #cfdae0;
    font-size: 1.15rem;
    max-width: 600px;
    margin: 0 auto 2.5rem auto;
    line-height: 1.65;
}

.final-cta .eyebrow {
    color: var(--gold);
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.final-cta .button-light {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-bright) 100%);
    color: var(--navy) !important;
    border: none;
    font-weight: 800;
    box-shadow: 0 10px 25px rgba(202, 160, 76, 0.3);
    transition: var(--transition);
}

.final-cta .button-light:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(202, 160, 76, 0.45);
    background: var(--gold-bright);
}

.final-cta .button-outline {
    border-color: rgba(255, 255, 255, 0.3) !important;
    color: #fff !important;
    background: transparent;
    transition: var(--transition);
}

.final-cta .button-outline:hover {
    border-color: var(--gold) !important;
    color: var(--gold) !important;
    background: rgba(255, 255, 255, 0.02);
}

/* Footer Section */
.site-footer {
    background: #020b12;
    color: #b2c0cc;
    padding: 6rem 0 2rem;
    font-size: 0.95rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1fr;
    gap: 4rem;
}

.footer-logo {
    display: inline-block;
    background: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    width: 140px;
    height: auto;
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.footer-logo:hover {
    transform: translateY(-2px);
}

.footer-grid p {
    line-height: 1.7;
}

.footer-grid a {
    display: block;
    color: #b2c0cc;
    text-decoration: none;
    margin: 0.6rem 0;
    transition: var(--transition);
}

.footer-grid a:hover {
    color: var(--gold-bright);
    transform: translateX(3px);
}

.site-footer .eyebrow {
    color: var(--gold-bright);
    margin-bottom: 1.25rem;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 4.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: #6a7c8a;
    font-size: 0.85rem;
}

.footer-bottom a {
    color: #6a7c8a;
    text-decoration: none;
    transition: var(--transition);
}

.footer-bottom a:hover {
    color: var(--gold-bright);
}

/* Mobile Call Bar */
.mobile-call {
    display: none;
}

/* Responsive Grid layouts */
@media (max-width: 990px) {
    .footer-grid {
        grid-template-columns: 1.2fr 1fr;
        gap: 3rem;
    }
}

@media (max-width: 860px) {
    .container {
        width: min(100% - 36px, 1200px);
    }

    .desktop-nav, .lang-switcher {
        display: none;
    }
    
    /* Header layout for mobile */
    .header-inner {
        height: 80px;
    }

    .header-phone {
        margin-left: auto;
        font-size: 0.9rem;
    }

    .header-phone span {
        display: none;
    }

    .brand img {
        width: 105px;
    }

    .intro, .page-intro, .coverage-intro {
        padding: 5.5rem 0;
    }

    .intro-grid, .split, .route-note-grid, .section-heading, .local-intro-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .intro h1, .page-intro h1, .coverage-intro h1 {
        font-size: clamp(2.8rem, 10vw, 4.8rem);
    }

    .service-grid {
        grid-template-columns: 1fr 1fr;
    }

    .feature-grid, .journey-grid, .image-pair {
        grid-template-columns: 1fr;
    }

    .image-pair figure {
        height: 18rem;
    }

    .location-grid {
        grid-template-columns: 1fr;
    }

    .quote-form {
        grid-template-columns: 1fr;
    }

    .quote-form .full {
        grid-column: auto;
    }

    .section {
        padding: 5.5rem 0;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    /* Fixed bottom CTA for conversion */
    .mobile-call {
        display: flex;
        align-items: center;
        justify-content: center;
        position: fixed;
        z-index: 99;
        left: 16px;
        right: 16px;
        bottom: 16px;
        background: linear-gradient(135deg, var(--gold-bright) 0%, var(--gold) 100%);
        color: var(--navy);
        padding: 1rem;
        box-shadow: 0 10px 25px rgba(5,19,33,0.3);
        font-weight: 800;
        text-decoration: none;
        border-radius: var(--radius);
        text-transform: uppercase;
        font-size: 0.95rem;
        letter-spacing: 0.05em;
        transition: var(--transition);
        border: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .mobile-call:active {
        transform: scale(0.98);
    }

    .site-footer {
        padding-bottom: 6.5rem;
    }
}

@media (max-width: 480px) {
    .header-phone {
        font-size: 0.8rem;
    }

    .service-grid {
        grid-template-columns: 1fr;
    }

    .intro h1, .page-intro h1, .coverage-intro h1 {
        font-size: 2.6rem;
    }

    .location-card {
        padding: 1.5rem;
        min-height: 120px;
    }

    .location-name {
        font-size: 1.5rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    /* Show hamburger menu toggle on mobile */
    .menu-toggle {
        display: flex !important;
    }
}

/* Mobile Menu Styles */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    position: relative;
    z-index: 1301;
    touch-action: manipulation;
}

.menu-toggle:focus-visible {
    outline: 3px solid var(--gold);
    outline-offset: 3px;
}

.menu-toggle .bar {
    width: 100%;
    height: 2px;
    background-color: var(--navy);
    transition: var(--transition);
}

/* Mobile overlay styles */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    background: rgba(5, 19, 33, 0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1100;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    overflow-y: auto;
    transition: opacity 0.4s var(--transition), visibility 0.4s var(--transition);
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-inner {
    width: 100%;
    max-width: 450px;
    padding: max(5.5rem, env(safe-area-inset-top)) 2rem max(6.5rem, env(safe-area-inset-bottom));
    display: flex;
    flex-direction: column;
    gap: 2.4rem;
    text-align: center;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.mobile-nav a {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    transition: var(--transition);
}

.mobile-nav a:hover {
    color: var(--gold-bright);
}

.mobile-menu-eyebrow {
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--gold);
    margin-bottom: 0.75rem;
}

.mobile-lang-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    font-size: 1.2rem;
    font-weight: 700;
}

.mobile-lang-link {
    color: #b2c0cc;
    text-decoration: none;
}

.mobile-lang-link:hover {
    color: #fff;
}

.mobile-lang-active {
    color: var(--gold-bright);
}

.mobile-lang-separator {
    color: rgba(255, 255, 255, 0.2);
}

.mobile-menu-phone {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
}

.mobile-menu-phone:hover {
    color: var(--gold-bright);
}

/* Hamburger toggle active state animations */
.menu-toggle.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
    background-color: #fff;
}

.menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
    background-color: #fff;
}

/* Mobile Sticky Action Bar Container */
.mobile-action-bar {
    display: none;
}

@media (max-width: 991px) {
    body { padding-bottom: calc(78px + env(safe-area-inset-bottom)); }

    .mobile-action-bar {
        display: flex;
        gap: 10px;
        position: fixed;
        z-index: 1000;
        left: 16px;
        right: 16px;
        bottom: max(12px, env(safe-area-inset-bottom));
    }
    
    .mobile-action-bar .action-btn {
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0.85rem;
        font-weight: 800;
        text-decoration: none;
        border-radius: 8px;
        text-transform: uppercase;
        font-size: 0.9rem;
        letter-spacing: 0.05em;
        transition: var(--transition);
        box-shadow: 0 10px 25px rgba(5,19,33,0.3);
    }
    
    .mobile-action-bar .call-btn {
        background: linear-gradient(135deg, var(--gold-bright) 0%, var(--gold) 100%);
        color: var(--navy);
        border: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .mobile-action-bar .whatsapp-btn {
        background: #25d366;
        color: #fff;
        border: 1px solid rgba(0, 0, 0, 0.05);
    }
    
    .mobile-action-bar .action-btn:active {
        transform: scale(0.97);
    }
    
    /* Hide the old single mobile-call button */
    .mobile-call {
        display: none !important;
    }
}

@media (max-width: 1100px) {
    .desktop-nav, .lang-switcher { display: none; }
    .menu-toggle {
        display: flex !important;
        flex: 0 0 48px;
        width: 48px;
        height: 48px;
        margin-left: auto;
        padding: 14px 12px;
        border: 1px solid rgba(5, 19, 33, 0.16);
        border-radius: 10px;
        background: rgba(255, 255, 255, 0.96);
        box-shadow: 0 6px 18px rgba(5, 19, 33, 0.12);
    }
    .menu-toggle.active {
        background: rgba(5, 19, 33, 0.76);
        border-color: rgba(255, 255, 255, 0.35);
        box-shadow: none;
    }
    .menu-toggle.active .bar:nth-child(1) { transform: translateY(9px) rotate(45deg); }
    .menu-toggle.active .bar:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }
    .header-phone { margin-left: auto; }
    body.menu-open .site-header { background:transparent; border-color:transparent; backdrop-filter:none; -webkit-backdrop-filter:none; }
    body.menu-open .site-header .brand, body.menu-open .site-header .header-phone { visibility:hidden; }
}

@media (max-width: 600px) {
    .header-phone { display: none; }
    .header-inner { gap: 1rem; }
    .brand img { width: 108px; max-height: 62px; }
    .mobile-nav { gap: 1.15rem; }
    .mobile-nav a { font-size: 1.5rem; }
    .mobile-menu-inner { gap: 1.8rem; }
    .mobile-action-bar { left: 10px; right: 10px; gap: 8px; }
    .mobile-action-bar .action-btn { min-height: 48px; padding: .72rem .55rem; font-size: .78rem; }
}

@media (max-width: 380px) {
    .brand img { width: 96px; }
    .mobile-menu-inner { padding-left: 1.2rem; padding-right: 1.2rem; }
}

/* Desktop Floating WhatsApp Button styling */
.desktop-whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.desktop-whatsapp-float:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
    color: #FFF;
}

/* Pulse animation */
.desktop-whatsapp-float::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #25d366;
    opacity: 0.3;
    z-index: -1;
    animation: whatsapp-pulse 2s infinite;
}

@keyframes whatsapp-pulse {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }
    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}

/* Hide on mobile screens since we have the bottom bar */
@media (max-width: 991px) {
    .desktop-whatsapp-float {
        display: none !important;
    }
}
