@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Outfit:wght@400;600;700;800&display=swap');

:root {
    --primary: #FFDA1F;
    --primary-hover: #E5C21B;
    --dark-bg: #121214;
    --dark-surface: #1A1B1E;
    --dark-surface-card: #222327;
    --dark-border: #2A2B30;
    --light-bg: #F8F9FA;
    --light-surface: #FFFFFF;
    --text-white: #FFFFFF;
    --text-dark: #1A1B1E;
    --text-muted: #8E8F94;
    --accent-red: #FF3B30;
    --accent-green: #34C759;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition-fast: 0.2s ease;
    --transition-smooth: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;
    --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    --glass-bg: rgba(26, 27, 30, 0.85);
    --glass-border: rgba(255, 255, 255, 0.08);
}

/* Reset & Base Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

body {
    font-family: var(--font-body);
    background-color: var(--dark-bg);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--text-white);
    line-height: 1.2;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

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

/* Common Components & Utilities */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.text-primary { color: var(--primary); }
.text-muted { color: var(--text-muted); }
.bg-dark-surface { background-color: var(--dark-surface); }
.bg-dark-card { background-color: var(--dark-surface-card); }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: var(--border-radius-sm);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
    outline: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--text-dark);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 218, 31, 0.3);
}

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

.btn-outline:hover {
    background-color: var(--text-white);
    color: var(--text-dark);
    transform: translateY(-2px);
}

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

.btn-primary-outline:hover {
    background-color: var(--primary);
    color: var(--text-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 218, 31, 0.2);
}

/* Header & Navigation */
/* Header & Navigation (Redesigned to Match Wix Layout) */
.main-header {
    width: 100%;
    z-index: 1000;
    position: relative;
    background-color: #ffffff;
}

.header-top {
    background-color: #ffffff;
    padding: 15px 0;
    border-bottom: 1px solid #eef0f2;
}

.header-top-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-logo img {
    height: 75px;
    width: auto;
    object-fit: contain;
}

.header-top-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
}

.header-phone {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: #1e1f21;
    letter-spacing: 0.5px;
}

.header-phone strong {
    font-family: var(--font-heading);
    font-weight: 700;
}

.phone-separator {
    color: #a0a0a0;
    margin: 0 4px;
}

.header-banner {
    background-color: #1c1d1f;
    padding: 6px 12px;
    border-radius: 0px;
    overflow: hidden;
    width: 760px;
    max-width: 100%;
    position: relative;
    display: flex;
    align-items: center;
}

.banner-text {
    font-family: var(--font-heading);
    color: #FFDA1F;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    white-space: nowrap;
    display: inline-block;
    animation: banner-marquee 15s linear infinite;
    will-change: transform;
}

.header-banner:hover .banner-text {
    animation-play-state: paused;
}

@keyframes banner-marquee {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* Yellow Bottom Header (Nav Bar) */
.header-bottom {
    background-color: #FFDA1F;
    height: 48px;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 99;
}

.header-bottom-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100%;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-link {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: #1c1d1f !important;
    padding: 10px 0;
    position: relative;
    transition: var(--transition-fast);
}

.nav-link:hover {
    color: #ffffff !important;
}

.nav-link.active {
    color: #ffffff !important;
}

.nav-link::after {
    display: none !important;
}

.nav-separator {
    color: #1c1d1f;
    opacity: 0.4;
    margin: 0 15px;
    font-size: 0.95rem;
    font-weight: 300;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1100;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 2.5px;
    background-color: #1c1d1f;
    transition: var(--transition-smooth);
}

/* Mobile Nav Styles for Redesigned Header */
@media (max-width: 992px) {
    .header-top-container {
        padding: 10px 24px;
    }
    
    .header-logo img {
        height: 55px;
    }
    
    .header-top-right {
        align-items: flex-end;
    }
    
    .header-phone {
        font-size: 11px;
    }
    
    .banner-text {
        font-size: 10px;
    }
    
    .header-banner {
        padding: 4px 8px;
        width: 560px;
    }

    .menu-toggle {
        display: flex;
        position: absolute;
        right: 24px;
        top: 50%;
        transform: translateY(-50%);
    }

    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background-color: #ffffff;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 80px 30px;
        gap: 20px;
        z-index: 1050;
        transition: var(--transition-smooth);
        box-shadow: -5px 0 20px rgba(0,0,0,0.1);
    }
    
    .nav.open {
        right: 0;
    }

    .nav-link {
        color: #1c1d1f !important;
        font-size: 1.1rem;
        width: 100%;
        border-bottom: 1px solid #f0f0f0;
        padding-bottom: 10px;
    }

    .nav-link.active {
        color: #e5c21b !important;
    }

    .nav-separator {
        display: none !important;
    }

    .menu-toggle.open span:nth-child(1) {
        transform: translateY(8.5px) rotate(45deg);
    }
    
    .menu-toggle.open span:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle.open span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
}

@media (max-width: 600px) {
    .header-top-container {
        flex-direction: column;
        gap: 12px;
        text-align: center;
        align-items: center;
    }
    .header-top-right {
        align-items: center;
    }
    .header-banner {
        width: 440px;
    }
}

/* License Class Circles */
.class-circles-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 50px 24px;
    background-color: #ffffff;
    flex-wrap: wrap;
    border-bottom: 1px solid #f0f0f0;
}

.class-circle {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    border: 5px solid #808080;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: #808080;
    background-color: transparent;
    transition: var(--transition-smooth);
    user-select: none;
}

.class-circle:hover {
    border-color: #FFDA1F;
    color: #FFDA1F;
    transform: scale(1.08);
}

/* Redesigned Split Showcase */
.split-showcase {
    display: flex;
    width: 100%;
}

.showcase-col {
    flex: 1;
    padding: 80px 8%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.showcase-dark {
    background-color: #2E2E2E;
    color: #e0e0e0;
}

.showcase-yellow {
    background-color: #FFDA1F;
    color: #1e1f21;
}

.showcase-title {
    font-family: var(--font-heading);
    font-size: 4.25rem;
    font-weight: 800;
    line-height: 0.95;
    text-transform: uppercase;
    margin-bottom: 25px;
    letter-spacing: -2px;
}

.showcase-title span {
    display: block;
}

.showcase-subtitle {
    font-family: var(--font-body);
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 40px;
    letter-spacing: 0.5px;
}

.showcase-dark .showcase-subtitle {
    color: #ffffff;
}

.showcase-yellow .showcase-subtitle {
    color: #1e1f21;
}

.showcase-list {
    list-style: none;
    padding-left: 0;
}

.showcase-list > li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 24px;
    font-size: 1rem;
    line-height: 1.6;
    color: #cccccc;
}

.showcase-list > li::before {
    content: "•";
    color: #ffffff;
    font-size: 1.8rem;
    position: absolute;
    left: 0;
    top: -4px;
}

.showcase-list strong {
    color: #ffffff;
    font-weight: 600;
}

.showcase-sublist {
    list-style: none;
    padding-left: 20px;
    margin-top: 10px;
}

.showcase-sublist li {
    position: relative;
    padding-left: 18px;
    font-size: 0.95rem;
    color: #bbbbbb;
    margin-bottom: 6px;
}

.showcase-sublist li::before {
    content: "o";
    color: #ffffff;
    font-size: 0.8rem;
    position: absolute;
    left: 0;
    top: 2px;
}

.showcase-text p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #1e1f21;
    margin-bottom: 20px;
}

@media (max-width: 992px) {
    .split-showcase {
        flex-direction: column;
    }
    .showcase-col {
        padding: 60px 8%;
    }
    .showcase-title {
        font-size: 3.25rem;
    }
}

/* Floating Cookie tab on the right */
.cookie-tab {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%) rotate(-90deg);
    transform-origin: right bottom;
    background-color: #ffffff;
    border: 1px solid #dcdcdc;
    border-bottom: none;
    padding: 10px 20px;
    z-index: 999;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    color: #333333;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
}

.cookie-tab:hover {
    background-color: #f7f7f7;
}

.cookie-tab-close {
    font-weight: bold;
    font-size: 13px;
    color: #999999;
}

/* Floating WhatsApp Button */
.whatsapp-btn {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background-color: #25D366;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    cursor: pointer;
    transition: var(--transition-smooth);
    z-index: 999;
    animation: whatsapp-pulse 2s infinite;
}

.whatsapp-btn:hover {
    transform: scale(1.08);
    background-color: #20ba5a;
}

.whatsapp-btn svg {
    width: 32px;
    height: 32px;
    fill: #ffffff;
}

@keyframes whatsapp-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Giant Wix Title for Start Page Hero */
.hero-title-wix {
    font-family: var(--font-heading);
    font-size: 5.5rem;
    font-weight: 800;
    line-height: 0.95;
    text-transform: uppercase;
    color: #ffffff;
    letter-spacing: -2px;
    text-shadow: 0 4px 12px rgba(0,0,0,0.6);
    margin-bottom: 20px;
}

.hero-title-wix span {
    display: block;
}

@media (max-width: 768px) {
    .hero-title-wix {
        font-size: 3.5rem;
    }
}

/* Hero Section */
.hero {
    position: relative;
    padding: 120px 0 100px;
    min-height: 80vh;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(18, 18, 20, 0.95) 40%, rgba(18, 18, 20, 0.4) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 650px;
}

.hero-subtitle {
    font-family: var(--font-heading);
    color: var(--primary);
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero-desc {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.hero-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    .hero {
        padding: 80px 0;
    }
}

/* Page Section Base */
.section {
    padding: 100px 0;
    position: relative;
}

.section-alt {
    background-color: var(--dark-surface);
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

.section-subtitle {
    font-family: var(--font-heading);
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.section-title {
    font-size: 2.25rem;
    font-weight: 700;
}

/* Info Cards / Features */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

@media (max-width: 992px) {
    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

.card {
    background-color: var(--dark-surface-card);
    border: 1px solid var(--dark-border);
    border-radius: var(--border-radius-md);
    padding: 40px 32px;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 218, 31, 0.4);
    box-shadow: var(--box-shadow);
}

.card-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 24px;
}

.card-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.card-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.card-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Detail Section with Image & Text side by side */
.split-section {
    display: flex;
    align-items: center;
    gap: 60px;
}

.split-section.reverse {
    flex-direction: row-reverse;
}

.split-content {
    flex: 1;
}

.split-image {
    flex: 1;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    border: 1px solid var(--dark-border);
}

.split-image img {
    width: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

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

@media (max-width: 992px) {
    .split-section, .split-section.reverse {
        flex-direction: column;
        gap: 40px;
    }
}

/* Driving Classes Details */
.class-benefits-list {
    list-style: none;
    margin-top: 16px;
}

.class-benefits-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.class-benefits-list li::before {
    content: '✓';
    color: var(--primary);
    font-weight: bold;
}

/* Curriculum/Table styling for hours */
.table-container {
    background-color: var(--dark-surface-card);
    border: 1px solid var(--dark-border);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    margin: 30px 0;
}

.hours-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.hours-table th {
    background-color: rgba(255, 218, 31, 0.08);
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--primary);
    padding: 16px 24px;
    border-bottom: 1px solid var(--dark-border);
}

.hours-table td {
    padding: 16px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.95rem;
}

.hours-table tr:last-child td {
    border-bottom: none;
}

/* Forms */
.form-card {
    background-color: var(--dark-surface-card);
    border: 1px solid var(--dark-border);
    border-radius: var(--border-radius-md);
    padding: 48px;
    max-width: 700px;
    margin: 0 auto;
    box-shadow: var(--box-shadow);
}

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

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

@media (max-width: 600px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    font-family: var(--font-heading);
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-control {
    width: 100%;
    background-color: var(--dark-bg);
    border: 1px solid var(--dark-border);
    border-radius: var(--border-radius-sm);
    padding: 14px 18px;
    color: var(--text-white);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition-fast);
}

.form-control:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 218, 31, 0.15);
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

.form-checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin: 24px 0;
}

.form-checkbox-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 4px;
    accent-color: var(--primary);
    cursor: pointer;
}

.form-checkbox-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    cursor: pointer;
}

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

.form-status {
    padding: 16px;
    border-radius: var(--border-radius-sm);
    margin-bottom: 24px;
    display: none;
    font-size: 0.95rem;
    font-weight: 500;
}

.form-status.success {
    display: block;
    background-color: rgba(52, 199, 89, 0.15);
    border: 1px solid var(--accent-green);
    color: #5edb7d;
}

.form-status.error {
    display: block;
    background-color: rgba(255, 59, 48, 0.15);
    border: 1px solid var(--accent-red);
    color: #ff6961;
}

/* Call to Action Section */
.cta-section {
    position: relative;
    padding: 80px 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
    border-top: 1px solid var(--dark-border);
    border-bottom: 1px solid var(--dark-border);
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(18, 18, 20, 0.85);
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
}

.cta-title {
    font-size: 2.25rem;
    margin-bottom: 16px;
}

.cta-desc {
    color: var(--text-muted);
    margin-bottom: 32px;
}

/* Footer styling */
.footer {
    background-color: #0b0c0d;
    padding: 80px 0 30px;
    border-top: 1px solid var(--dark-border);
}

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

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

.footer-logo img {
    height: 48px;
    width: auto;
    margin-bottom: 24px;
}

.footer-text {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 24px;
    max-width: 320px;
}

.footer-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
    color: var(--primary);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 0.95rem;
}

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

.footer-contact {
    list-style: none;
}

.footer-contact li {
    margin-bottom: 16px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.footer-contact-icon {
    color: var(--primary);
    font-weight: bold;
}

.footer-bottom {
    border-top: 1px solid var(--dark-border);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.copyright {
    color: var(--text-muted);
    font-size: 0.9rem;
}

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

.footer-legal-links a {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-legal-links a:hover {
    color: var(--primary);
}

/* Inner Page Header */
.page-hero {
    position: relative;
    padding: 80px 0;
    text-align: center;
    background-size: cover;
    background-position: center;
    border-bottom: 1px solid var(--dark-border);
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(18, 18, 20, 0.85);
}

.page-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.page-hero-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.page-hero-desc {
    color: var(--text-muted);
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .page-hero-title {
        font-size: 2.25rem;
    }
}

/* List with checkmarks custom visual */
.check-list {
    list-style: none;
    margin: 20px 0;
}

.check-list li {
    position: relative;
    padding-left: 32px;
    margin-bottom: 16px;
    font-size: 1.05rem;
}

.check-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 4px;
    width: 20px;
    height: 20px;
    background-color: rgba(255, 218, 31, 0.1);
    border: 1px solid var(--primary);
    border-radius: 50%;
}

.check-list li::after {
    content: '✓';
    position: absolute;
    left: 5px;
    top: 2px;
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 900;
}

/* Semi-Transparent Section Panels */
.panel {
    background-color: var(--dark-surface-card);
    border: 1px solid var(--dark-border);
    border-radius: var(--border-radius-md);
    padding: 40px;
    margin-bottom: 40px;
}

.panel-title {
    font-size: 1.5rem;
    margin-bottom: 24px;
    border-left: 4px solid var(--primary);
    padding-left: 16px;
}

/* Text Content pages (Datenschutz/Impressum) styling */
.text-content-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.text-content-wrapper h3 {
    margin: 32px 0 16px;
    font-size: 1.5rem;
}

.text-content-wrapper h4 {
    margin: 24px 0 12px;
    font-size: 1.2rem;
}

.text-content-wrapper p {
    margin-bottom: 20px;
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.7;
}

.text-content-wrapper ul {
    margin: 0 0 24px 24px;
    color: var(--text-muted);
}

.text-content-wrapper li {
    margin-bottom: 8px;
}

/* Footer Map */
.footer-map {
    width: 100%;
    height: 250px;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    border: 1px solid var(--dark-border);
    margin: 30px 0;
}
.footer-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Testimonials / Google Reviews */
.testimonial-section {
    padding: 80px 0;
    background-color: var(--dark-bg);
}
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}
.testimonial-card {
    background-color: var(--dark-surface-card);
    border: 1px solid var(--dark-border);
    border-radius: var(--border-radius-md);
    padding: 30px;
    transition: transform var(--transition-smooth), border-color var(--transition-smooth), box-shadow var(--transition-smooth);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
    border-color: var(--primary);
}
.testimonial-content {
    font-style: italic;
    color: var(--text-muted);
    margin-bottom: 24px;
    line-height: 1.7;
    position: relative;
}
.testimonial-content::before {
    content: '"';
    font-family: var(--font-heading);
    font-size: 4rem;
    color: rgba(255, 218, 31, 0.15);
    position: absolute;
    top: -25px;
    left: -15px;
    line-height: 1;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}
.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--primary);
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    font-family: var(--font-heading);
}
.testimonial-meta h4 {
    margin: 0;
    font-size: 1rem;
    font-family: var(--font-heading);
    color: var(--text-white);
}
.testimonial-stars {
    color: var(--primary);
    font-size: 0.95rem;
    margin-top: 4px;
}

/* FAQ Accordion */
.faq-section {
    padding: 80px 0;
    background-color: var(--dark-bg);
}
.faq-accordion {
    max-width: 800px;
    margin: 40px auto 0;
}
.faq-item {
    background-color: var(--dark-surface-card);
    border: 1px solid var(--dark-border);
    border-radius: var(--border-radius-md);
    margin-bottom: 16px;
    overflow: hidden;
    transition: border-color var(--transition-smooth), box-shadow var(--transition-smooth);
}
.faq-item:hover {
    border-color: rgba(255, 218, 31, 0.4);
}
.faq-item.active {
    border-color: var(--primary);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}
.faq-question {
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.1rem;
    user-select: none;
    transition: color var(--transition-fast);
}
.faq-question:hover {
    color: var(--primary);
}
.faq-icon {
    font-size: 1.2rem;
    transition: transform var(--transition-smooth);
    color: var(--primary);
    display: inline-block;
    line-height: 1;
}
.faq-item.active .faq-icon {
    transform: rotate(45deg);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-smooth), padding var(--transition-smooth);
    padding: 0 24px;
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 0.975rem;
}
.faq-item.active .faq-answer {
    max-height: 500px; /* high enough to contain content */
    padding-bottom: 20px;
}

/* GDPR Cookie Consent Banner */
.cookie-consent-banner {
    position: fixed;
    bottom: -300px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 48px);
    max-width: 600px;
    background-color: var(--dark-surface-card);
    border: 1px solid var(--dark-border);
    border-radius: var(--border-radius-md);
    padding: 24px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
    z-index: 1000;
    opacity: 0;
    transition: bottom var(--transition-smooth), opacity var(--transition-smooth);
}
.cookie-consent-banner.show {
    bottom: 24px;
    opacity: 1;
}
.cookie-consent-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-white);
    display: flex;
    align-items: center;
    gap: 8px;
}
.cookie-consent-text {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.6;
}
.cookie-consent-text a {
    color: var(--primary);
    text-decoration: underline;
}
.cookie-consent-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.cookie-consent-buttons button {
    flex: 1;
    min-width: 150px;
    padding: 12px 20px;
    border-radius: var(--border-radius-sm);
    font-weight: 600;
    cursor: pointer;
    font-size: 0.9rem;
    transition: var(--transition-fast);
    text-align: center;
    border: none;
}
.cookie-accept-btn {
    background-color: var(--primary);
    color: var(--text-dark);
}
.cookie-accept-btn:hover {
    background-color: var(--primary-hover);
}
.cookie-reject-btn {
    background-color: transparent;
    color: var(--text-white);
    border: 1px solid var(--dark-border) !important;
}
.cookie-reject-btn:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

@media (max-width: 480px) {
    .cookie-consent-buttons {
        flex-direction: column;
    }
    .cookie-consent-banner {
        padding: 20px;
    }
}

