/* =========================================
   CSS CUSTOM PROPERTIES (DESIGN TOKENS)
========================================= */
:root {
    --color-primary: #4A7196;
    /* modern steel blue */
    --color-primary-dark: #3A5F80;
    --color-primary-light: #6090B5;
    --color-accent: #D4A03C;
    /* warm honey gold */
    --color-accent-dark: #B5882E;
    --color-accent-light: #E8B85A;
    --color-bg: #F5F3EF;
    /* warm off-white */
    --color-bg-alt: #ffffff;
    --color-text: #2a2a2a;
    --color-text-muted: #6b7280;
    --color-border: #e0ddd6;
    --color-star: #f59e0b;
    --font-heading: 'Inter', system-ui, sans-serif;
    --font-body: 'Inter', system-ui, sans-serif;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, .08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, .10);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, .14);
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --max-width: 1200px;
    --top-bar-height: 40px;
    --main-nav-height: 72px;
    --header-height: 112px; /* --top-bar-height + --main-nav-height */
    --transition: 0.25s ease;
}

/* =========================================
   RESET & BASE
========================================= */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--color-text);
    background: var(--color-bg);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    padding-top: var(--header-height);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

button {
    cursor: pointer;
    font-family: inherit;
    border: none;
}

/* =========================================
   TYPOGRAPHY
========================================= */
h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    line-height: 1.2;
    color: var(--color-primary);
}

h1 {
    font-size: clamp(1.6rem, 3.6vw, 2.5rem);
    font-weight: 700;
}

h2 {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 600;
}

h3 {
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    font-weight: 600;
}

p {
    margin-bottom: 1rem;
}

p:last-child {
    margin-bottom: 0;
}

/* =========================================
   UTILITY CLASSES
========================================= */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

.section-pad {
    padding: 80px 0;
}

.section-pad-sm {
    padding: 56px 0;
}

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

.text-muted {
    color: var(--color-text-muted);
}

/* Screen-reader only (accessible hidden labels) */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-weight: 600;
    transition: all var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background: var(--color-accent);
    color: #fff;
}

.btn-primary:hover {
    background: var(--color-accent-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--color-accent);
    color: var(--color-accent);
}

.btn-outline:hover {
    background: var(--color-accent);
    color: #fff;
    transform: translateY(-2px);
}

.btn-white {
    background: #fff;
    color: var(--color-primary);
}

.btn-white:hover {
    background: var(--color-bg);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.05rem;
}

.section-label {
    display: inline-block;
    background: rgba(200, 150, 62, 0.12);
    color: var(--color-accent-dark);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 50px;
    margin-bottom: 14px;
}

.divider {
    width: 56px;
    height: 3px;
    background: var(--color-accent);
    border-radius: 2px;
    margin: 16px auto 0;
}

.divider-left {
    margin: 16px 0 0;
}

.stars {
    color: var(--color-star);
    font-size: 1rem;
    letter-spacing: 2px;
}

/* =========================================
   ── HEADER ──
========================================= */
#header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--header-height);
    pointer-events: none;
}

#header .container {
    height: 100%;
}

/* Double-Decker Top Bar */
.top-bar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: var(--top-bar-height);
    background: #233545; /* Dark slate brand color */
    color: rgba(255, 255, 255, 0.9);
    z-index: 1002;
    pointer-events: auto;
    font-size: 0.82rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.top-bar-left, .top-bar-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.top-bar-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color var(--transition);
}

.top-bar-item i {
    color: var(--color-accent);
}

a.top-bar-item:hover {
    color: #ffffff;
}

/* Adjustments for the hours dropdown in Top Bar */
.top-bar .hours-dropdown {
    position: relative;
}

.top-bar .hours-dropdown .dropdown-toggle {
    color: rgba(255, 255, 255, 0.9);
}

.top-bar .hours-dropdown .dropdown-toggle:hover {
    color: #ffffff;
}

.top-bar .hours-dropdown .dropdown-menu {
    top: calc(100% + 2px);
    right: 0;
    left: auto;
}

.btn-top-call {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px;
    background: #ffffff;
    color: var(--color-primary);
    border: 1px solid var(--color-primary);
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.8rem;
    text-decoration: none;
    transition: all var(--transition);
}

.btn-top-call:hover {
    background: var(--color-primary);
    color: #ffffff;
    border-color: var(--color-primary);
}

/* Double-Decker Main Navigation Bar */
.main-nav-bar {
    position: absolute;
    top: var(--top-bar-height);
    left: 0;
    right: 0;
    height: var(--main-nav-height);
    background: var(--color-bg-alt);
    border-bottom: 1px solid var(--color-border);
    z-index: 1001;
    pointer-events: auto;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease;
}

.main-nav-bar.scrolled {
    box-shadow: var(--shadow-md);
}

.main-nav-bar.hide {
    transform: translateY(-100%);
    box-shadow: none;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    gap: 16px;
    position: relative;
}

/* Responsive Top Bar styles */
@media (max-width: 991px) {
    .top-bar-left .name-item {
        display: none;
    }
}

@media (max-width: 768px) {
    .top-bar-inner {
        padding: 0 10px;
    }
    .top-bar-left .address-item span,
    .top-bar-left .email-item span {
        display: none;
    }
    .top-bar-left {
        gap: 12px;
    }
    .top-bar-right {
        gap: 12px;
    }
    .btn-top-call span {
        display: none;
    }
    .btn-top-call {
        padding: 4px 8px;
    }
}

@media (max-width: 480px) {
    .top-bar-left .email-item {
        display: none;
    }
}

/* Logo */
.logo {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
    text-decoration: none;
    flex-shrink: 0;
}

.logo-name {
    font-family: var(--font-heading);
    font-size: 1.45rem;
    font-weight: 700;
    color: var(--color-primary);
}

.logo-sub {
    font-size: 0.68rem;
    font-weight: 500;
    color: var(--color-accent-dark);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

/* Desktop Nav */
.nav-desktop {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-left: auto; /* Pushes nav fully to the right */
}

.nav-desktop a,
.nav-desktop .nav-item {
    position: relative;
    padding: 8px 12px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-primary);
    border-radius: var(--radius-sm);
    transition: all var(--transition);
    white-space: normal; /* Allows text like "Über Mich" to break on small screens */
    text-align: center;
    line-height: 1.2;
}

.nav-desktop a:hover,
.nav-desktop .nav-item:hover {
    background: var(--color-bg);
    color: var(--color-accent);
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    user-select: none;
}

.dropdown-toggle i {
    font-size: 0.65rem;
    transition: transform var(--transition);
}

.dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    min-width: 240px;
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all var(--transition);
    z-index: 200;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 14px;
    font-size: 0.875rem;
    font-weight: 400;
    border-radius: var(--radius-sm);
    color: var(--color-text);
}

.dropdown-menu a:hover {
    background: var(--color-bg);
    color: var(--color-accent);
}

.dropdown-menu a i {
    width: 16px;
    text-align: center;
    color: var(--color-accent);
    font-size: 0.8rem;
}

/* Mega Menu */
.mega-dropdown {
    position: static;
}

.mega-menu {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    min-width: 720px;
    left: 50%;
    transform: translateX(-50%) translateY(-8px);
    padding: 20px;
}

.mega-dropdown:hover .mega-menu {
    transform: translateX(-50%) translateY(0);
}

.mega-col {
    padding: 8px 12px;
}

.mega-col+.mega-col {
    border-left: 1px solid var(--color-border);
}

/* Every 4th column starts new visual row — reset border */
.mega-col:nth-child(3n+1) {
    border-left: none;
}

.mega-heading {
    font-size: 0.82rem !important;
    font-weight: 700 !important;
    color: var(--color-primary) !important;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 6px;
    padding-bottom: 6px !important;
    border-bottom: 2px solid var(--color-primary-light);
}

.mega-heading i {
    color: var(--color-primary) !important;
    margin-right: 4px;
}

.mega-col a:not(.mega-heading) {
    font-size: 0.82rem;
    padding: 4px 8px;
    color: var(--color-text-muted);
}

.mega-col a:not(.mega-heading):hover {
    color: var(--color-primary);
    background: rgba(74, 166, 255, .06);
}

.nav-desktop a.btn-call {
    color: #ffffff;
}

/* Opening Hours Dropdown */
.hours-dropdown .dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
}

.status-indicator {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #94a3b8;
}

.status-indicator.open {
    background-color: #22c55e;
    box-shadow: 0 0 6px rgba(34, 197, 94, 0.4);
}

.status-indicator.closed {
    background-color: #ef4444;
}

.hours-menu {
    width: 260px;
    padding: 12px 0;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 6px 16px;
    font-size: 0.85rem;
    color: var(--color-text);
}

.hours-row.empty {
    color: var(--color-text-muted);
}

.hours-row.today {
    font-weight: 600;
    color: var(--color-primary);
    background-color: var(--color-bg);
}

/* CTA Phone Button in Header */
.btn-call {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--color-primary-dark);
    color: #fff;
    font-weight: 600;
    font-size: 0.88rem;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
    white-space: nowrap;
}

.btn-call:hover,
.nav-desktop a.btn-call:hover {
    background: var(--color-accent);
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: var(--shadow-sm);
}

/* Mobile Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    padding: 8px;
    z-index: 1100;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-primary);
    border-radius: 2px;
    transition: all var(--transition);
}

.hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Nav Drawer */
.nav-mobile {
    display: none;
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    overflow-y: auto;
    z-index: 999;
    padding: 20px 24px 40px;
    flex-direction: column;
    gap: 4px;
}

.nav-mobile.open {
    display: flex;
}

.nav-mobile a,
.nav-mobile .mobile-group-title {
    display: block;
    padding: 12px 16px;
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-primary);
    border-radius: var(--radius-sm);
    transition: background var(--transition);
}

.nav-mobile a:hover {
    background: var(--color-bg);
}

.mobile-group-title {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-accent-dark);
    margin-top: 14px;
    padding-bottom: 4px;
    cursor: default;
}

.nav-mobile .sub-link {
    padding-left: 32px;
    font-size: 0.9rem;
    font-weight: 400;
}

.nav-mobile-cta {
    margin-top: 20px;
    display: block;
    text-align: center;
}

/* =========================================
   ── HERO SECTION ──
========================================= */
#hero {
    background: linear-gradient(135deg, #5580A0 0%, #3E6585 100%);
    color: #fff;
    padding: 30px 0 0;
    overflow: hidden;
    position: relative;
}

#hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
}

.hero-content {
    /* container for left-side hero text */
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .15);
    color: var(--color-accent-light);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 50px;
    margin-bottom: 20px;
    letter-spacing: 0.05em;
}

.hero-content h1 {
    color: #fff;
    font-size: clamp(1.5rem, 3.2vw, 2.3rem);
    font-weight: 400;
    margin-bottom: 18px;
    line-height: 1.18;
}

.hero-content h1 em {
    font-style: normal;
    color: var(--color-accent-light);
}

.hero-subtitle {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, .82);
    margin-bottom: 32px;
    line-height: 1.7;
}

.hero-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 0;
}

/* Hero-specific button sizes – compact to fit in one row */
.btn-hero {
    padding: 11px 22px;
    font-size: 0.92rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
}

/* Dark hero primary CTA */
.btn-hero.btn-primary {
    background: #1e3a50;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, .18);
}

.btn-hero.btn-primary:hover {
    background: #162e42;
    border-color: rgba(255, 255, 255, .35);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-hero-outline {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, .4);
    color: #fff;
}

.btn-hero-outline:hover {
    background: rgba(255, 255, 255, .12);
    border-color: rgba(255, 255, 255, .7);
    transform: translateY(-2px);
}

/* Rating strip – flat inline text */
.hero-ratings {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 20px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, .75);
}

.rating-inline {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.rating-inline strong {
    color: rgba(255, 255, 255, .85);
    font-weight: 600;
    font-size: 0.82rem;
}

.rating-inline .rating-score {
    font-weight: 700;
    color: #fff;
    font-size: 0.95rem;
}

.rating-inline .rating-stars {
    color: var(--color-star);
    font-size: 0.75rem;
    letter-spacing: 1px;
}

.rating-inline .rating-count {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, .55);
}

.rating-divider {
    color: rgba(255, 255, 255, .25);
    margin: 0 4px;
}

/* Trust Bar – full width beneath hero grid */
.hero-benefits {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, .12);
    border-top: 1px solid rgba(255, 255, 255, .12);
    border-bottom: 1px solid rgba(255, 255, 255, .12);
    overflow: hidden;
    margin-top: 36px;
    margin-left: -24px;
    margin-right: -24px;
    border-radius: 0;
}

.hero-benefit {
    background: rgba(255, 255, 255, .07);
    padding: 10px 14px;
    text-align: center;
}

.hero-benefit i {
    font-size: 1.1rem;
    color: var(--color-accent-light);
    margin-bottom: 2px;
}

.hero-benefit strong {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 1px;
}

.hero-benefit p {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, .65);
    margin: 0;
    line-height: 1.3;
}

/* Hero Image */
.hero-image-wrap {
    position: relative;
}

.hero-image-wrap::before {
    content: '';
    position: absolute;
    inset: -12px;
    border: 2px solid rgba(200, 150, 62, .35);
    border-radius: var(--radius-lg);
    z-index: 0;
}

.hero-image-wrap img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: var(--radius-md);
    position: relative;
    z-index: 1;
    box-shadow: var(--shadow-lg);
}

/* Floating trust cards on hero image */
.hero-float {
    position: absolute;
    background: #fff;
    border-radius: var(--radius-sm);
    padding: 10px 14px;
    box-shadow: var(--shadow-lg);
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-float i {
    color: var(--color-accent);
    font-size: 1.1rem;
}

.hero-float-text strong {
    display: block;
    font-size: 0.85rem;
    color: var(--color-primary);
    font-weight: 600;
}

.hero-float-text span {
    font-size: 0.72rem;
    color: var(--color-text-muted);
}

.float-top-left {
    top: 20px;
    left: -20px;
}

.float-bottom-right {
    bottom: 30px;
    right: -20px;
}

/* =========================================
   ── SEO INTRO SECTION ──
========================================= */
#seo-intro {
    background: var(--color-bg-alt);
    padding: 80px 0;
}

.seo-intro-inner {
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
}

.seo-intro-inner h2 {
    margin-bottom: 24px;
}

.seo-intro-inner p {
    font-size: 1.05rem;
    color: var(--color-text-muted);
    line-height: 1.85;
}

.seo-intro-inner p strong {
    color: var(--color-text);
}

.seo-intro-cta {
    margin-top: 32px;
}

/* =========================================
   ── BENEFITS SECTION ──
========================================= */
#benefits {
    background: var(--color-bg);
    padding: 80px 0;
}

.section-header {
    margin-bottom: 52px;
}

.section-header.centered {
    text-align: center;
}

.section-header h2 {
    margin-bottom: 12px;
}

.section-header p {
    color: var(--color-text-muted);
    font-size: 1.05rem;
    max-width: 600px;
    margin: 0 auto;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.benefit-card {
    background: var(--color-bg-alt);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 32px 28px;
    text-align: center;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.benefit-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--color-accent);
    transform: scaleX(0);
    transition: transform var(--transition);
}

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.benefit-card:hover::after {
    transform: scaleX(1);
}

.benefit-icon {
    width: 64px;
    height: 64px;
    background: rgba(200, 150, 62, .1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.benefit-icon i {
    font-size: 1.5rem;
    color: var(--color-accent);
}

.benefit-card h3 {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.benefit-card p {
    font-size: 0.92rem;
    color: var(--color-text-muted);
    margin: 0;
    line-height: 1.6;
}

/* =========================================
   ── SERVICES SECTION ──
========================================= */
#services {
    background: var(--color-primary);
    padding: 80px 0;
}

#services .section-header h2 {
    color: #fff;
}

#services .section-header p {
    color: var(--color-accent-light);
    opacity: 1;
    font-size: 1.25rem;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

#services .divider {
    background: var(--color-accent);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 48px;
}

.service-card {
    background: #ffffff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 32px 28px;
    transition: all var(--transition);
    cursor: pointer;
    text-decoration: none;
    display: block;
    box-shadow: var(--shadow-md);
}

.service-card:hover {
    background: #ffffff;
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-accent);
}

.service-card-icon {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 20px;
}

.service-card-icon i {
    font-size: 2.5rem;
    color: var(--color-accent);
}

.service-card h3 {
    color: var(--color-primary);
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.service-card p {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    margin: 0 0 20px;
    line-height: 1.6;
}

.service-card .learn-more {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-accent-light);
    display: flex;
    align-items: center;
    gap: 5px;
}

.service-card:hover .learn-more {
    gap: 8px;
}

/* =========================================
   ── WHY US SECTION ──
========================================= */
#why-us {
    background: var(--color-bg-alt);
    padding: 80px 0;
}

.why-us-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}

.why-us-content h2 {
    margin-bottom: 20px;
}

.why-us-content p {
    color: var(--color-text-muted);
    font-size: 1rem;
    line-height: 1.8;
}

.why-us-content p+p {
    margin-top: -4px;
}

.why-us-highlights {
    margin-top: 28px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px;
    background: var(--color-bg);
    border-radius: var(--radius-sm);
    border-left: 3px solid var(--color-accent);
}

.highlight-item i {
    color: var(--color-accent);
    font-size: 1rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.highlight-item p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

.highlight-item strong {
    color: var(--color-primary);
}

.why-us-image {
    position: relative;
}

.why-us-image img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
}

.why-us-stat {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: var(--color-primary);
    color: #fff;
    padding: 20px 24px;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-lg);
}

.why-us-stat .stat-number {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--color-accent-light);
    display: block;
    line-height: 1;
}

.why-us-stat .stat-label {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, .75);
    margin-top: 4px;
}

.why-us-cta {
    margin-top: 32px;
}

/* =========================================
   ── HOW IT WORKS SECTION ──
========================================= */
#how-it-works {
    background: var(--color-bg);
    padding: 80px 0;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 48px;
    position: relative;
}

/* Connecting line between steps */
.steps-grid::before {
    content: '';
    position: absolute;
    top: 38px;
    left: calc(16.67% + 16px);
    right: calc(16.67% + 16px);
    height: 2px;
    background: linear-gradient(90deg, var(--color-accent) 0%, var(--color-accent) 100%);
    background-size: 8px 2px;
    background-image: repeating-linear-gradient(90deg, var(--color-accent) 0, var(--color-accent) 4px, transparent 4px, transparent 12px);
}

.step-card {
    text-align: center;
    padding: 32px 20px;
    background: var(--color-bg-alt);
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border);
    position: relative;
    transition: all var(--transition);
}

.step-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.step-number {
    width: max-content;
    height: 40px;
    padding: 0 24px;
    background: var(--color-accent);
    color: #fff;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    position: relative;
    z-index: 1;
}

.step-card i {
    font-size: 1.6rem;
    color: var(--color-primary-light);
    margin-bottom: 14px;
}

.step-card h3 {
    margin-bottom: 10px;
    font-size: 1.05rem;
}

.step-card p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin: 0;
    line-height: 1.6;
}

.steps-cta {
    text-align: center;
    margin-top: 44px;
}

/* =========================================
   ── TESTIMONIALS SECTION ──
========================================= */
#testimonials {
    background: var(--color-bg-alt);
    padding: 80px 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.testimonial-card {
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 28px;
    position: relative;
    transition: all var(--transition);
}

.testimonial-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: 10px;
    right: 20px;
    font-family: var(--font-heading);
    font-size: 5rem;
    color: var(--color-accent);
    opacity: 0.15;
    line-height: 1;
}

.testimonial-stars {
    margin-bottom: 14px;
}

.testimonial-text {
    font-size: 0.92rem;
    color: var(--color-text-muted);
    line-height: 1.75;
    font-style: italic;
    margin-bottom: 18px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, var(--color-primary-light), var(--color-accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
}

.author-info strong {
    display: block;
    font-size: 0.9rem;
    color: var(--color-primary);
    font-weight: 600;
}

.author-info span {
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

/* Platform ratings row */
.platform-ratings {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 48px;
    padding-top: 44px;
    border-top: 1px solid var(--color-border);
}

.platform-rating {
    text-align: center;
    padding: 24px 16px;
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    transition: all var(--transition);
}

.platform-rating:hover {
    box-shadow: var(--shadow-sm);
    transform: translateY(-2px);
}

.platform-name {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.platform-score {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-accent);
    display: block;
    margin-bottom: 6px;
}

.platform-stars {
    font-size: 0.9rem;
    color: var(--color-star);
    margin-bottom: 6px;
}

.platform-details {
    font-size: 0.75rem;
    color: var(--color-text-muted);
}

/* =========================================
   ── FINAL CTA SECTION ──
========================================= */
#final-cta {
    background: linear-gradient(135deg, var(--color-accent-dark) 0%, var(--color-accent) 100%);
    color: #fff;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

#final-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.final-cta-inner {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.final-cta-inner h2 {
    color: #fff;
    font-size: clamp(1.6rem, 3vw, 2.3rem);
    margin-bottom: 20px;
}

.final-cta-inner p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, .85);
    margin-bottom: 36px;
    line-height: 1.7;
}

.final-cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
}

/* =========================================
   ── CONTACT SECTION ──
========================================= */
#contact {
    background: var(--color-bg-alt);
    padding: 80px 0;
}

.contact-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    margin-top: 48px;
}

.contact-locations {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.location-card {
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 28px;
}

.location-card h3 {
    font-size: 1.15rem;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.location-card h3 i {
    color: var(--color-accent);
}

.location-card p {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.92rem;
    color: var(--color-text-muted);
    margin-bottom: 8px;
}

.location-card p i {
    width: 16px;
    color: var(--color-accent);
    margin-top: 3px;
}

.location-card p a {
    color: var(--color-primary);
    font-weight: 500;
}

.location-card p a:hover {
    color: var(--color-accent);
    text-decoration: underline;
}

/* Contact Form */
.contact-form {
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 32px;
}

.contact-form h3 {
    margin-bottom: 24px;
    font-size: 1.15rem;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 0.95rem;
    color: var(--color-text);
    background: var(--color-bg-alt);
    transition: all var(--transition);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #9ca3af;
    font-weight: 400;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(74, 166, 255, .15);
}

.form-group input:focus::placeholder,
.form-group textarea:focus::placeholder {
    color: #c0c5cc;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-group.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 24px;
    margin-bottom: 24px;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 4px;
    cursor: pointer;
}

.gdpr-label {
    display: inline;
    font-size: 0.8rem !important;
    font-weight: 400 !important;
    color: var(--color-text) !important;
    line-height: 1.5;
    margin: 0 !important;
}

.gdpr-label a {
    color: var(--color-primary);
    text-decoration: underline;
}

.gdpr-label a:hover {
    color: var(--color-accent);
}

.form-submit {
    display: flex;
    justify-content: center;
    margin: 0 auto;
    width: fit-content;
    padding: 16px 48px;
}

.form-message {
    margin-top: 16px;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 500;
    text-align: center;
    display: none;
}

.form-message.success {
    background: rgba(34, 197, 94, 0.12);
    color: #15803d;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.form-message.error {
    background: rgba(239, 68, 68, 0.12);
    color: #b91c1c;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

/* =========================================
   ── FOOTER ──
========================================= */
#footer {
    background: var(--color-primary);
    color: rgba(255, 255, 255, .8);
    padding: 56px 0 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 40px;
}

.footer-about h3,
.footer-links h3,
.footer-contact h3 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 16px;
}

.footer-about p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, .7);
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-links a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, .75);
    transition: all var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.footer-links a:hover {
    color: var(--color-accent-light);
    padding-left: 4px;
}

.footer-contact p {
    font-size: 0.88rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, .75);
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 8px;
}

.footer-contact p i {
    color: var(--color-accent-light);
    margin-top: 3px;
    width: 14px;
}

.footer-contact a {
    color: #fff;
    font-weight: 500;
}

.footer-contact a:hover {
    color: var(--color-accent-light);
    text-decoration: underline;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .12);
    padding-top: 24px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, .6);
}

.footer-legal {
    display: flex;
    gap: 16px;
}

.footer-legal a {
    color: rgba(255, 255, 255, .65);
    transition: color var(--transition);
}

.footer-legal a:hover {
    color: var(--color-accent-light);
}

/* Scroll to top button */
#scroll-top {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 48px;
    height: 48px;
    background: var(--color-accent);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
    box-shadow: var(--shadow-lg);
    z-index: 900;
}

#scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

#scroll-top:hover {
    background: var(--color-accent-dark);
    transform: translateY(-3px);
}

/* =========================================
   ANIMATIONS
========================================= */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* =========================================
   RESPONSIVE
========================================= */
@media (max-width: 900px) {
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-image-wrap {
        order: -1;
    }

    .hero-image-wrap img {
        height: 360px;
    }

    .float-top-left,
    .float-bottom-right {
        display: none;
    }

    .benefits-grid,
    .services-grid,
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-us-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .why-us-image {
        order: -1;
    }

    .why-us-stat {
        bottom: 10px;
        left: 10px;
    }

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

    .steps-grid::before {
        display: none;
    }

    .contact-inner {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 600px) {
    :root {
        --top-bar-height: 36px;
        --main-nav-height: 64px;
        --header-height: 100px;
    }

    .nav-desktop {
        display: none;
    }

    .btn-call {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero-benefits {
        grid-template-columns: 1fr;
    }

    .hero-cta-group {
        flex-direction: column;
    }

    .benefits-grid,
    .services-grid,
    .testimonials-grid,
    .platform-ratings {
        grid-template-columns: 1fr;
    }

    .final-cta-buttons {
        flex-direction: column;
    }
}

/* =========================================
   ── SERVICE SUBPAGES (SCHEIDUNG ETC) ──
========================================= */

/* Hero Section */
.service-hero {
    background: linear-gradient(135deg, #5580A0 0%, #3E6585 100%);
    color: #fff;
    padding: 40px 0 0;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.service-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.25;
}

.service-hero .hero-inner {
    grid-template-columns: 1.25fr 0.75fr;
    gap: 48px;
    align-items: center;
}

.service-hero .hero-kicker {
    display: inline-block;
    font-size: 0.825rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-accent);
    margin-bottom: 12px;
}

.service-hero h1 {
    color: #fff;
    font-size: clamp(2rem, 3.8vw, 2.8rem);
    font-weight: 400;
    margin-bottom: 16px;
    line-height: 1.15;
    text-shadow: 0 2px 4px rgba(0,0,0,0.15);
}

.service-hero h1 i {
    color: var(--color-accent);
    margin-right: 8px;
    font-size: 0.9em;
}

.service-hero .hero-subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 24px;
    line-height: 1.5;
}

/* Bullet list in hero for key selling points */
.service-hero .hero-bullets {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 30px;
    padding-left: 0;
    list-style: none;
}

.service-hero .hero-bullet-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.975rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
}

.service-hero .hero-bullet-item i {
    color: var(--color-accent);
    font-size: 0.85rem;
    width: 22px;
    height: 22px;
    background: rgba(212, 160, 60, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(212, 160, 60, 0.3);
    flex-shrink: 0;
}

/* CTA Buttons inside hero */
.service-hero .hero-cta-group {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    position: relative;
    z-index: 5;
}

.btn-hero-primary {
    background: var(--color-accent);
    color: #fff !important;
    border: 2px solid var(--color-accent);
}

.btn-hero-primary:hover {
    background: var(--color-accent-dark);
    border-color: var(--color-accent-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-hero-secondary {
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid rgba(255, 255, 255, 0.4);
    color: #fff !important;
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.16);
    border-color: rgba(255, 255, 255, 0.7);
    transform: translateY(-2px);
}

/* Hero Image with offset frame */
.service-hero .hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
    padding: 10px;
}

.service-hero .hero-image::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid var(--color-accent);
    top: 18px;
    left: 18px;
    z-index: -1;
    border-radius: var(--radius-sm);
    pointer-events: none;
    transition: transform var(--transition);
}

.service-hero:hover .hero-image::before {
    transform: translate(-5px, -5px);
}

.service-hero .hero-image img {
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-lg);
    width: 100%;
    max-width: 320px;
    height: auto;
    object-fit: cover;
    aspect-ratio: 4/3;
    border: 2px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.05);
}

.benefit-list {
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.benefit-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    font-weight: 500;
}

.benefit-list i {
    color: var(--color-accent-light);
    font-size: 1.1rem;
}


/* Service Intro */
.service-intro {
    padding: 80px 0;
    background: var(--color-bg-alt);
}

.service-intro .container {
    max-width: 800px;
}

.service-intro h2 {
    margin-bottom: 24px;
    color: var(--color-primary-dark);
}

.service-intro p {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    margin-bottom: 24px;
}

.scroll-link {
    display: inline-block;
    color: var(--color-primary);
    font-weight: 600;
    margin-top: 10px;
    transition: var(--transition);
}

.scroll-link:hover {
    color: var(--color-accent);
}

/* Service Details */
.service-details {
    padding: 80px 0;
    background: var(--color-bg);
}

.service-details h2 {
    margin-bottom: 40px;
    text-align: center;
}

/* Location Info Custom Background */
.location-info {
    position: relative;
    padding: 100px 0;
    background: url("../../assets/images/taunus_background.webp") center/cover no-repeat fixed;
}

.location-info::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(30, 45, 60, 0.5); /* 50% dunkles Overlay für perfekte Lesbarkeit */
    pointer-events: none;
}

.location-info h2 {
    color: #fff;
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.location-info > .container > p {
    color: #fff;
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
    font-weight: 500;
}

.location-info .process-step {
    border: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.details-content {
    max-width: 900px;
    margin: 0 auto;
    font-size: 1.05rem;
    color: var(--color-text);
}

.details-image.align-right {
    float: right;
    max-width: 400px;
    margin: 0 0 30px 40px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

.details-content ul {
    margin: 20px 0;
    padding-left: 20px;
}

.details-content ul li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 24px;
}

.details-content ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--color-accent);
    font-weight: bold;
}

/* Regional Services Background */
.regional-services-bg {
    position: relative;
    background-image: linear-gradient(135deg, rgba(74, 113, 150, 0.25) 0%, rgba(212, 160, 60, 0.15) 100%) !important;
    background-color: transparent !important;
    overflow: hidden;
    z-index: 1;
}

.regional-services-bg::before,
.regional-services-bg::after {
    content: "§";
    position: absolute;
    font-family: var(--font-heading);
    font-size: 22rem;
    color: rgba(74, 113, 150, 0.04);
    line-height: 1;
    z-index: -1;
    pointer-events: none;
}

.regional-services-bg::before {
    top: -5%;
    left: 2%;
    transform: rotate(-15deg);
}

.regional-services-bg::after {
    bottom: -10%;
    right: 2%;
    transform: rotate(15deg);
}

/* Service Process */
.service-process {
    padding: 80px 0;
    background: var(--color-bg-alt);
}

.service-process h2 {
    text-align: center;
    margin-bottom: 50px;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
}

.process-grid::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 50px;
    right: 50px;
    height: 2px;
    background: dashed 2px var(--color-accent-light);
    z-index: 1;
}

.process-step {
    background: #fff;
    padding: 40px 30px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    text-align: center;
    position: relative;
    z-index: 2;
    transition: transform var(--transition);
    border: 1px solid var(--color-border);
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.process-step .step-icon {
    width: 60px;
    height: 60px;
    background: var(--color-accent);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 20px;
    border: 4px solid #fff;
    box-shadow: 0 0 0 2px var(--color-accent-light);
}

.process-step h3 {
    margin-bottom: 16px;
    color: var(--color-primary);
}

.process-step p {
    font-size: 0.95rem;
    color: var(--color-text-muted);
}

.process-step p a {
    color: var(--color-primary);
    font-weight: 500;
    transition: color var(--transition);
}

.process-step p a:hover {
    color: var(--color-accent);
    text-decoration: underline;
}

/* Case Study */
.service-case-study {
    padding: 80px 0;
    background: var(--color-bg);
}

.case-study-box {
    background: #fff;
    padding: 50px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    border-left: 6px solid var(--color-accent);
}

.case-study-box::before {
    content: '\f10d'; /* FontAwesome quote-left */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 4rem;
    color: var(--color-bg);
    opacity: 0.8;
}

.case-study-box h3 {
    font-size: 1.6rem;
    margin-bottom: 24px;
    position: relative;
    z-index: 2;
}

.case-study-box p {
    font-size: 1.05rem;
    color: var(--color-text-muted);
    position: relative;
    z-index: 2;
}

/* Service FAQ */
.service-faq {
    padding: 80px 0;
    background: var(--color-bg-alt);
}

.service-faq h2 {
    text-align: center;
    margin-bottom: 50px;
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-accordion details {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
}

.faq-accordion summary {
    padding: 20px;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--color-primary-dark);
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.faq-accordion summary::after {
    content: '\f078';
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: var(--color-accent);
    transition: transform var(--transition);
}

.faq-accordion details[open] summary::after {
    transform: rotate(180deg);
}

.faq-accordion details p {
    padding: 0 20px 20px;
    margin: 0;
    color: var(--color-text-muted);
}

/* Service CTA */
.service-cta {
    padding: 100px 0;
    background: var(--color-primary-dark);
    color: #fff;
}

.service-cta h2 {
    color: #fff;
    margin-bottom: 20px;
}

.service-cta p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.service-cta .btn {
    border: 2px solid var(--color-accent);
}

/* Responsive Overrides for Service Pages */
@media (max-width: 992px) {
    .service-hero {
        text-align: center;
        padding: 56px 0 0;
    }

    .service-hero .hero-inner {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .service-hero .hero-bullets {
        align-items: center;
    }

    .service-hero .hero-bullet-item {
        justify-content: center;
    }

    .service-hero .hero-cta-group {
        justify-content: center;
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }

    .service-hero .hero-cta-group .btn {
        width: 100%;
        justify-content: center;
    }

    .service-hero .hero-image {
        order: -1;
        max-width: 340px;
        margin: 0 auto;
    }

    .service-hero .hero-image::before {
        top: 10px;
        left: 10px;
    }
    
    .process-grid {
        grid-template-columns: 1fr;
    }

    .process-grid::before {
        display: none;
    }

    .details-image.align-right {
        float: none;
        max-width: 100%;
        margin: 0 0 30px 0;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .case-study-box {
        padding: 30px 20px;
    }
    
    .service-hero h1 {
        font-size: 2.0rem;
    }
    
    .service-details, .service-process, .service-case-study, .service-faq {
        padding: 50px 0;
    }
}

/* =========================================
   SERVICE SIDEBAR & LAYOUT SYSTEM
   ========================================= */
.service-page-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-top: 3rem;
    margin-bottom: 3rem;
}

@media (min-width: 992px) {
    .service-page-layout {
        grid-template-columns: 2.7fr 1.3fr;
        align-items: start;
    }
}

.service-main-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.service-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
    position: -webkit-sticky;
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    background: var(--color-bg-alt);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 24px;
    box-shadow: var(--shadow-sm);
}

.sidebar-widget h3 {
    font-size: 1.25rem;
    margin-bottom: 20px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--color-accent);
    color: var(--color-primary);
    font-family: var(--font-heading);
}

/* Silo Navigation Widget */
.silo-menu {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.silo-menu a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    color: var(--color-text);
    font-weight: 500;
    transition: var(--transition);
    border-left: 3px solid transparent;
}

.silo-menu a:hover {
    background: var(--color-bg);
    color: var(--color-primary);
    border-left-color: var(--color-accent-light);
}

.silo-menu a.active {
    background: var(--color-primary);
    color: white;
    font-weight: 600;
    border-left-color: var(--color-accent);
}

/* Sticky Mobile CTA Bar */
.sticky-mobile-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--color-bg-alt);
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.1);
    display: none;
    z-index: 1000;
    border-top: 1px solid var(--color-border);
}

.sticky-mobile-cta-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 12px 16px;
    max-width: 600px;
    margin: 0 auto;
}

.sticky-mobile-cta .btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    text-align: center;
}

.sticky-mobile-cta .btn-tel {
    background: var(--color-accent);
    color: white;
}

.sticky-mobile-cta .btn-email {
    background: var(--color-primary);
    color: white;
}

@media (max-width: 768px) {
    .sticky-mobile-cta {
        display: block;
    }
    
    /* Avoid content being covered by sticky footer */
    body {
        padding-bottom: 70px;
    }
}

/* =========================================
   TOPIC CARD GRID SYSTEM
   ========================================= */
.topic-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.topic-card {
    background: #fff;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-border);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    transition: transform var(--transition), box-shadow var(--transition);
}

.topic-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--color-primary);
}

.topic-card-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
    position: relative;
    border-bottom: 1px solid var(--color-border);
    background: #eaeaea;
}

.topic-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition);
}

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

.topic-card-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.topic-card-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 12px;
    line-height: 1.3;
}

.topic-card-content p {
    font-size: 0.925rem;
    color: var(--color-text-muted);
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.topic-card-link {
    color: var(--color-accent-dark);
    font-weight: 600;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color var(--transition);
    margin-top: auto;
}

.topic-card:hover .topic-card-link {
    color: var(--color-primary);
}

@media (max-width: 991px) {
    .topic-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .topic-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* =========================================
   GDPR CLICK-TO-LOAD MAP STYLES
   ========================================= */
.route-map-container {
    position: relative;
    width: 100%;
    height: 450px;
    background: #eaeaea;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--color-border);
}

.route-map-placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.route-map-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.78);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 30px;
    z-index: 10;
    transition: opacity 0.4s ease-in-out;
}

.route-map-overlay h3 {
    color: #fff;
    font-size: 1.4rem;
    margin-bottom: 12px;
    font-family: var(--font-heading);
}

.route-map-overlay p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    max-width: 500px;
    margin: 0 auto 24px auto;
    line-height: 1.6;
}

.route-map-overlay p a {
    color: var(--color-accent-light);
    text-decoration: underline;
    font-weight: 500;
}

.route-map-overlay p a:hover {
    color: #fff;
}

.route-map-overlay .btn-map-load {
    background: var(--color-accent);
    color: #fff !important;
    border: 2px solid var(--color-accent);
    padding: 12px 28px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.95rem;
    transition: transform 0.2s ease, background 0.2s ease;
    box-shadow: var(--shadow-sm);
}

.route-map-overlay .btn-map-load:hover {
    background: var(--color-accent-dark);
    border-color: var(--color-accent-dark);
    transform: translateY(-2px);
}

/* =========================================
   INTRO SPLIT GRID SYSTEM FOR INLINE FORMS
   ========================================= */
.intro-split-grid {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: 48px;
    align-items: start;
}

@media (max-width: 991px) {
    .intro-split-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

/* =========================================
   HERO SOCIAL PROOF BADGES
   ========================================= */
.hero-social-proof {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 12px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.9);
    flex-wrap: wrap;
}

.hero-social-proof a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.9);
    transition: color var(--transition);
    font-weight: 500;
}

.hero-social-proof a:hover {
    color: #fff;
    text-decoration: underline;
}

.hero-social-proof i {
    font-size: 0.95rem;
}

.hero-social-proof .divider-pipe {
    color: rgba(255, 255, 255, 0.35);
}

