/* ==========================================================================
   STONEY'S MOTORRADWERKSTATT - PREMIUM STYLESHEET
   ========================================================================== */

/* Design Tokens & Variables */
:root {
    /* Color Palette */
    --color-bg-primary: #0C0C0E;
    --color-bg-secondary: #16161A;
    --color-bg-tertiary: #1E1E24;
    --color-card-bg: #1B1B1F;
    --color-card-border: #2B2B32;
    
    --color-accent-orange: #FF5A09;
    --color-accent-orange-hover: #E04E07;
    --color-accent-orange-rgb: 255, 90, 9;
    
    --color-accent-cream: #F4EFE6;
    --color-accent-cream-dark: #D4CFC6;
    --color-accent-cream-rgb: 244, 239, 230;

    --color-text-main: #ECEFF4;
    --color-text-muted: #9BA3B0;
    --color-text-dark: #121214;
    
    /* Typography */
    --font-heading: 'Syne', sans-serif;
    --font-body: 'Outfit', sans-serif;
    
    /* Layout */
    --container-max-width: 1240px;
    --header-height: 80px;
    
    /* Transitions & Shadow */
    --transition-smooth: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    --shadow-glow: 0 10px 30px rgba(255, 90, 9, 0.15);
    --shadow-card: 0 15px 35px rgba(0, 0, 0, 0.4);
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 12px;
    --radius-lg: 24px;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-height) + 40px);
}

body {
    background-color: var(--color-bg-primary);
    color: var(--color-text-main);
    font-family: var(--font-body);
    font-size: 1.05rem;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

body.no-scroll {
    overflow: hidden;
}

/* Layout Container */
.container {
    width: 100%;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 2rem;
}

/* Typography elements */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 800;
    line-height: 1.2;
    color: var(--color-accent-cream);
    overflow-wrap: break-word;
    word-break: normal;
}

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

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

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

/* Section Common Styling */
section {
    padding: 8rem 0;
    position: relative;
}

.section-tag {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-accent-orange);
    margin-bottom: 1rem;
    position: relative;
    padding-left: 1.5rem;
}

.section-tag::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 2px;
    background-color: var(--color-accent-orange);
}

.section-tag.tag-light {
    color: var(--color-accent-cream);
}

.section-tag.tag-light::before {
    background-color: var(--color-accent-cream);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
    color: var(--color-accent-cream);
}

.section-subtitle {
    font-size: 1.15rem;
    max-width: 650px;
    margin-bottom: 3rem;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--color-bg-primary);
}

::-webkit-scrollbar-thumb {
    background: var(--color-card-border);
    border-radius: var(--radius-sm);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-accent-orange);
}

/* ==========================================================================
   0. ANNOUNCEMENT BANNER
   ========================================================================== */
.announcement-banner {
    background: linear-gradient(90deg, var(--color-accent-orange) 0%, #FF7A39 100%);
    color: var(--color-text-dark);
    padding: 1.2rem 0;
    font-size: 1.1rem;
    font-weight: 600;
    position: relative;
    z-index: 102;
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), opacity 0.4s ease, margin-bottom 0.4s ease;
    box-shadow: 0 4px 15px rgba(255, 90, 9, 0.2);
}

.announcement-banner.hidden {
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    margin-bottom: -70px;
}

.banner-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    position: relative;
    padding-right: 3.5rem;
}

.banner-badge {
    background-color: var(--color-bg-primary);
    color: var(--color-accent-orange);
    padding: 0.15rem 0.6rem;
    font-size: 0.75rem;
    font-weight: 800;
    border-radius: 4px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.banner-text {
    text-align: center;
    color: var(--color-bg-primary);
}

.banner-close {
    position: absolute;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    cursor: pointer;
    color: var(--color-bg-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.2rem;
    opacity: 0.7;
    transition: var(--transition-smooth);
}

.banner-close:hover {
    opacity: 1;
    transform: translateY(-50%) scale(1.1);
}

.banner-close .close-icon {
    width: 16px;
    height: 16px;
}

/* ==========================================================================
   1. TOP CONTACT BAR
   ========================================================================== */
.top-contact-bar {
    background-color: #060608;
    border-bottom: 1px solid rgba(244, 239, 230, 0.05);
    padding: 0.6rem 0;
    font-size: 0.9rem;
    color: var(--color-accent-cream-dark);
}

.contact-container {
    display: flex;
    justify-content: flex-end;
    gap: 2.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.contact-item .icon {
    width: 15px;
    height: 15px;
    color: var(--color-accent-orange);
    flex-shrink: 0;
}

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

/* ==========================================================================
   2. MAIN HEADER & NAVIGATION
   ========================================================================== */
.main-header {
    height: var(--header-height);
    display: flex;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 100;
    background-color: rgba(12, 12, 14, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 90, 9, 0.05);
    transition: var(--transition-smooth);
}

.main-header.scrolled {
    background-color: rgba(12, 12, 14, 0.98);
    height: 70px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

/* Logo Design */
.logo-link {
    display: flex;
    align-items: center;
}

.logo-image {
    height: 52px;
    width: auto;
    display: block;
    filter: brightness(0) invert(1);
    transition: var(--transition-smooth);
}

.main-header.scrolled .logo-image {
    height: 42px;
}

/* Nav Menu */
.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-accent-cream-dark);
    padding: 0.5rem 0;
    position: relative;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: var(--color-accent-orange);
    bottom: -2px;
    left: 0;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-link.active {
    color: var(--color-accent-orange);
}

/* Mobile Toggle Hamburger */
.mobile-nav-toggle {
    display: none;
    background: transparent;
    border: 0;
    outline: none;
    box-shadow: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 101;
    -webkit-tap-highlight-color: transparent;
}

.mobile-nav-toggle:focus,
.mobile-nav-toggle:active,
.mobile-nav-toggle:hover {
    outline: none;
    border: 0;
    box-shadow: none;
}

.hamburger {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--color-accent-cream);
    position: relative;
    transition: var(--transition-smooth);
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background-color: var(--color-accent-cream);
    transition: var(--transition-smooth);
}

.hamburger::before { top: -8px; }
.hamburger::after { bottom: -8px; }

/* ==========================================================================
   3. HERO SECTION
   ========================================================================== */
.hero-section {
    height: calc(90vh - var(--header-height));
    min-height: 550px;
    display: flex;
    align-items: center;
    background-image: url('assets/hero_bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(12, 12, 14, 0.4) 0%, rgba(12, 12, 14, 0.95) 100%),
                linear-gradient(90deg, rgba(12, 12, 14, 0.8) 0%, rgba(12, 12, 14, 0.3) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-title {
    font-size: 4.2rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    color: var(--color-accent-cream);
    max-width: 850px;
}

.hero-subtitle {
    font-size: 1.4rem;
    color: var(--color-accent-cream-dark);
    margin-bottom: 3rem;
    max-width: 650px;
    font-weight: 400;
    border-left: 3px solid var(--color-accent-orange);
    padding-left: 1.2rem;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: var(--radius-sm);
    transition: var(--transition-smooth);
    cursor: pointer;
    gap: 0.8rem;
    border: none;
}

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

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

.btn-primary .btn-arrow {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.btn-primary:hover .btn-arrow {
    transform: translateX(4px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-accent-cream);
    border: 1px solid rgba(244, 239, 230, 0.2);
}

.btn-secondary:hover {
    background-color: rgba(244, 239, 230, 0.05);
    border-color: var(--color-accent-cream);
    transform: translateY(-2px);
}

.btn-block {
    width: 100%;
}

.btn-sm {
    padding: 0.6rem 1.2rem;
    font-size: 0.85rem;
}

/* ==========================================================================
   4. VALUE PROPOSITIONS
   ========================================================================== */
.values-section {
    padding: 0;
    margin-top: -5rem;
    position: relative;
    z-index: 10;
}

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

.value-card {
    background-color: var(--color-card-bg);
    border: 1px solid var(--color-card-border);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
    transition: var(--transition-smooth);
}

.value-card:hover {
    border-color: var(--color-accent-orange);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 15px rgba(255, 90, 9, 0.1);
}

.value-icon-container {
    width: 60px;
    height: 60px;
    background-color: rgba(255, 90, 9, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--color-accent-orange);
    transition: var(--transition-smooth);
}

.value-card:hover .value-icon-container {
    background-color: var(--color-accent-orange);
    color: var(--color-bg-primary);
}

.value-icon {
    width: 28px;
    height: 28px;
}

.value-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 0.8rem;
    color: var(--color-accent-cream);
}

.value-description {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    line-height: 1.5;
}

/* ==========================================================================
   5. ABOUT US / AUTHENTICITY
   ========================================================================== */
.about-section {
    background-color: var(--color-bg-primary);
}

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

.about-text-container {
    padding-right: 0;
    max-width: 750px;
}

.about-paragraph {
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.about-paragraph.highlight-text {
    font-size: 1.25rem;
    color: var(--color-accent-cream);
    font-weight: 600;
    border-left: 2px solid var(--color-accent-orange);
    padding-left: 1rem;
    margin: 2rem 0;
}

.about-stats {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--color-accent-orange);
    line-height: 1;
    margin-bottom: 0.4rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Image Container styling */
.about-image-container {
    position: relative;
}

.about-image-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--color-card-border);
    box-shadow: var(--shadow-card);
    transition: var(--transition-smooth);
}

.about-image {
    width: 100%;
    height: 480px;
    object-fit: cover;
    transition: var(--transition-smooth);
}

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

.about-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(12, 12, 14, 0.9) 0%, rgba(12, 12, 14, 0) 100%);
    padding: 2.5rem 2rem 1.5rem;
    color: var(--color-accent-cream);
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
}

.about-image-overlay::before {
    content: '';
    width: 8px;
    height: 8px;
    background-color: var(--color-accent-orange);
    border-radius: 50%;
    margin-right: 0.8rem;
    box-shadow: 0 0 10px var(--color-accent-orange);
}

/* ==========================================================================
   6. SERVICES GRID
   ========================================================================== */
.services-section {
    background-color: var(--color-bg-secondary);
}

.section-header {
    margin-bottom: 4rem;
}

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

.service-card {
    background-color: var(--color-card-bg);
    border: 1px solid var(--color-card-border);
    padding: 3rem 2rem;
    border-radius: var(--radius-md);
    transition: var(--transition-smooth);
}

.service-card:hover {
    border-color: rgba(255, 90, 9, 0.3);
    transform: translateY(-5px);
    box-shadow: var(--shadow-card);
}

.service-icon-wrapper {
    width: 50px;
    height: 50px;
    color: var(--color-accent-orange);
    margin-bottom: 2rem;
}

.service-icon {
    width: 100%;
    height: 100%;
}

.service-card-title {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--color-accent-cream);
}

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

/* ==========================================================================
   7. BRANDS MARQUEE
   ========================================================================== */
.brands-section {
    background-color: var(--color-bg-primary);
    padding: 4rem 0;
    border-top: 1px solid rgba(244, 239, 230, 0.03);
    border-bottom: 1px solid rgba(244, 239, 230, 0.03);
    overflow: hidden;
}

.brands-title-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 2.5rem;
}

.brands-heading {
    font-size: 0.95rem;
    font-family: var(--font-body);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--color-text-muted);
    text-align: center;
    position: relative;
    padding: 0 1.5rem;
}

.brands-marquee {
    width: 100%;
    overflow: hidden;
    position: relative;
    mask-image: linear-gradient(to right, transparent 0%, black 15%, black 85%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 15%, black 85%, transparent 100%);
}

.brands-track {
    display: flex;
    width: max-content;
    gap: 4rem;
    animation: scrollBrandMarquee 30s linear infinite;
}

.brand-item {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 2.5rem;
    color: rgba(244, 239, 230, 0.08);
    letter-spacing: 0.05em;
    white-space: nowrap;
    user-select: none;
    transition: var(--transition-smooth);
}

.brand-item:hover {
    color: rgba(255, 90, 9, 0.8);
    text-shadow: 0 0 15px rgba(255, 90, 9, 0.3);
}

@keyframes scrollBrandMarquee {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(calc(-50% - 2rem), 0, 0); }
}

/* ==========================================================================
   8. APPOINTMENT FORM SECTION
   ========================================================================== */
.appointment-section {
    background-color: var(--color-bg-secondary);
}

.appointment-card {
    background-color: var(--color-card-bg);
    border: 1px solid var(--color-card-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    width: 100%;
    max-width: 100%;
}

.appointment-content {
    display: grid;
    grid-template-columns: 1fr 1.25fr;
    width: 100%;
    max-width: 100%;
}

.appointment-text {
    padding: 4.5rem 3.5rem;
    background-color: #121215;
    border-right: 1px solid var(--color-card-border);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.appointment-description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 3rem;
}

/* Info List */
.info-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-list-item {
    display: flex;
    gap: 1.2rem;
    align-items: flex-start;
}

.info-icon {
    width: 44px;
    height: 44px;
    background-color: rgba(255, 90, 9, 0.08);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent-orange);
    flex-shrink: 0;
}

.info-icon .icon {
    width: 22px;
    height: 22px;
}

.info-list-item h4 {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-accent-cream);
    margin-bottom: 0.2rem;
}

.info-list-item p {
    font-size: 0.95rem;
    color: var(--color-text-muted);
}

/* Form Container & Elements */
.appointment-form-container {
    padding: 4.5rem 3.5rem;
    position: relative;
}

.appointment-form {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.form-group label {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-accent-cream-dark);
}

.required {
    color: var(--color-accent-orange);
    font-weight: 700;
    margin-left: 0.15rem;
    white-space: nowrap;
}

.form-group input,
.form-group textarea {
    background-color: rgba(12, 12, 14, 0.6);
    border: 1px solid var(--color-card-border);
    color: var(--color-text-main);
    padding: 0.9rem 1.2rem;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition-smooth);
    width: 100%;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(244, 239, 230, 0.25);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-accent-orange);
    box-shadow: 0 0 10px rgba(255, 90, 9, 0.15);
    background-color: rgba(12, 12, 14, 0.9);
}

/* Form Date Picker Custom Styling styling */
.form-group input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(1) brightness(0.85);
    cursor: pointer;
}

/* Form Success Overlay */
.form-success-overlay {
    position: absolute;
    inset: 0;
    background-color: var(--color-card-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3.5rem;
    opacity: 0;
    pointer-events: none;
    z-index: 5;
    transition: opacity 0.4s ease;
}

.form-success-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.success-message {
    text-align: center;
    max-width: 450px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.success-icon-wrapper {
    width: 70px;
    height: 70px;
    background-color: rgba(255, 90, 9, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent-orange);
    margin-bottom: 2rem;
    box-shadow: 0 0 20px rgba(255, 90, 9, 0.1);
}

.success-icon {
    width: 30px;
    height: 30px;
}

.success-message h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.success-message p {
    font-size: 1rem;
    color: var(--color-text-muted);
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* ==========================================================================
   9. FOOTER SECTION
   ========================================================================== */
.main-footer {
    background-color: var(--color-bg-primary);
    border-top: 1px solid rgba(255, 90, 9, 0.05);
    padding: 6rem 0 0;
}

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

/* Footer Cols */
.footer-logo-image {
    height: 72px;
    width: auto;
    display: block;
    filter: brightness(0) invert(1);
    margin-bottom: 1.5rem;
}

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

.footer-title {
    font-size: 1.2rem;
    margin-bottom: 1.8rem;
    position: relative;
    padding-bottom: 0.6rem;
}

.footer-title::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 2px;
    background-color: var(--color-accent-orange);
    left: 0;
    bottom: 0;
}

/* Links Col */
.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    font-size: 0.95rem;
}

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

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

/* Hours Col */
.hours-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    font-size: 0.95rem;
}

.hours-list li {
    display: flex;
    flex-direction: column;
    border-bottom: 1px solid rgba(244, 239, 230, 0.03);
    padding-bottom: 0.4rem;
}

.hours-list .day {
    color: var(--color-accent-cream);
    font-weight: 500;
}

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

.hours-note {
    margin-top: 1.2rem;
    font-size: 0.85rem;
    color: var(--color-accent-orange);
    font-weight: 600;
    line-height: 1.45;
    border-left: 2px solid var(--color-accent-orange);
    padding-left: 0.8rem;
}

/* Map & Address Col */
.footer-address {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    margin-bottom: 1.5rem;
}

.footer-phone-link:hover {
    color: var(--color-accent-orange);
}

.map-container {
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--color-card-border);
    line-height: 0;
}

.map-container iframe {
    /* Grayscale modern filter to match dark theme */
    filter: grayscale(1) invert(0.9) contrast(1.1) brightness(0.95);
    transition: var(--transition-smooth);
}

.map-container:hover iframe {
    filter: grayscale(0.2) invert(0) contrast(1) brightness(1);
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(244, 239, 230, 0.03);
    padding: 2rem 0;
    font-size: 0.9rem;
    color: rgba(244, 239, 230, 0.4);
}

.footer-bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

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

/* ==========================================================================
   10. RESPONSIVE DESIGN (MEDIA QUERIES)
   ========================================================================== */

/* Tablet & Smaller Desktops */
@media (max-width: 1024px) {
    section {
        padding: 6rem 0;
    }
    
    .hero-title {
        font-size: 3.2rem;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .values-section {
        margin-top: -3rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-text-container {
        padding-right: 0;
    }
    
    .about-image {
        height: 380px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .appointment-content {
        grid-template-columns: minmax(0, 1fr);
    }
    
    .appointment-text {
        border-right: none;
        border-bottom: 1px solid var(--color-card-border);
        padding: 3.5rem;
    }
    
    .appointment-form-container {
        padding: 3.5rem;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
}

/* Mobile Devices */
@media (max-width: 768px) {
    :root {
        --header-height: 70px;
    }

    .container {
        padding: 0 1.25rem;
    }

    .top-contact-bar {
        display: none; /* Hide top bar on mobile to save vertical space */
    }
    
    .main-header,
    .main-header.scrolled {
        height: var(--header-height);
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        background-color: var(--color-bg-primary);
    }
    
    /* Announcement Banner Mobile Adjustments */
    .announcement-banner {
        padding: 1.2rem 0;
        font-size: 0.95rem;
    }
    
    .banner-container {
        flex-direction: column;
        gap: 0.4rem;
        padding-right: 2.5rem;
        align-items: flex-start;
    }
    
    .banner-badge {
        font-size: 0.7rem;
    }
    
    .banner-text {
        text-align: left;
    }
    
    .banner-close {
        right: 1rem;
    }

    /* Section Typography on Mobile */
    .section-title {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    /* Navigation Toggle mobile */
    .mobile-nav-toggle {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: var(--header-height);
        left: 0;
        width: 100%;
        height: calc(100vh - var(--header-height));
        background-color: var(--color-bg-primary);
        padding: 3rem 2rem;
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
        border-top: 1px solid var(--color-card-border);
        z-index: 99;
        overflow-y: auto;
    }
    
    .nav-menu.open {
        transform: translateX(0);
    }
    
    .nav-menu ul {
        flex-direction: column;
        gap: 2.5rem;
        align-items: center;
    }
    
    .nav-link {
        font-size: 1.4rem;
        font-weight: 600;
    }
    
    /* Mobile hamburger anim */
    .mobile-nav-toggle[aria-expanded="true"] .hamburger {
        background-color: transparent;
    }
    
    .mobile-nav-toggle[aria-expanded="true"] .hamburger::before {
        transform: translateY(8px) rotate(45deg);
    }
    
    .mobile-nav-toggle[aria-expanded="true"] .hamburger::after {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    /* Hero mobile adjusting */
    .hero-section {
        min-height: 480px;
        height: auto;
        padding: 6rem 0 4rem;
    }
    
    .hero-title {
        font-size: clamp(1.6rem, 7.5vw, 2.3rem);
        line-height: 1.25;
    }
    
    .hero-subtitle {
        font-size: 1.15rem;
        margin-bottom: 2rem;
    }
    
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-actions .btn {
        width: 100%;
    }
    
    /* Values mobile adjusting */
    .values-section {
        margin-top: 2rem;
        padding-top: 2rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .value-card {
        padding: 2rem;
    }
    
    /* About mobile adjusting */
    .about-image {
        height: 280px;
    }
    
    .about-stats {
        gap: 1.5rem;
        flex-wrap: wrap;
    }
    
    /* Services mobile adjusting */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-card {
        padding: 2rem;
    }
    
    /* Brands mobile */
    .brand-item {
        font-size: 1.8rem;
    }
    
    /* Form mobile adjusting */
    .appointment-card {
        border-radius: var(--radius-md);
    }

    .appointment-text,
    .appointment-form-container {
        padding: 2.5rem 1.25rem;
    }
    
    .appointment-form {
        gap: 1.2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

    .form-group {
        gap: 0.4rem;
    }

    .form-group label {
        font-size: 0.8rem;
    }

    .form-group input,
    .form-group textarea {
        padding: 0.8rem 1rem;
        font-size: 0.95rem;
    }
    
    .appointment-description {
        margin-bottom: 2rem;
    }
    
    .form-success-overlay {
        padding: 2rem 1.25rem;
    }
    
    /* Footer mobile adjusting */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .footer-bottom-flex {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .footer-legal {
        gap: 1.5rem;
    }
}

/* ==========================================================================
   11. LEGAL PAGES STYLING (IMPRESSUM & DATENSCHUTZ)
   ========================================================================= */
.legal-section {
    padding: 10rem 0 8rem;
    background-color: var(--color-bg-primary);
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-title {
    font-size: 3rem;
    margin-bottom: 3rem;
    border-bottom: 2px solid var(--color-accent-orange);
    padding-bottom: 1.5rem;
}

.legal-body h3 {
    font-size: 1.5rem;
    margin: 2.5rem 0 1rem;
    color: var(--color-accent-cream);
}

.legal-body p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.2rem;
    color: var(--color-text-muted);
}

.legal-body ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.legal-body li {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 0.6rem;
    color: var(--color-text-muted);
}

@media (max-width: 768px) {
    .legal-section {
        padding: 7rem 0 5rem;
    }
    
    .legal-title {
        font-size: 2rem;
        margin-bottom: 2rem;
        padding-bottom: 1rem;
    }
    
    .legal-body h3 {
        font-size: 1.25rem;
        margin: 2rem 0 0.8rem;
    }
}

/* Form Checkbox Styling */
.form-checkbox-group {
    display: flex;
    gap: 0.8rem;
    align-items: flex-start;
    margin: 0.2rem 0;
}

.form-checkbox-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 0.2rem;
    cursor: pointer;
    accent-color: var(--color-accent-orange);
    flex-shrink: 0;
}

.checkbox-label {
    font-size: 0.9rem !important;
    color: var(--color-text-muted) !important;
    line-height: 1.4;
    cursor: pointer;
    font-family: var(--font-body);
    font-weight: 400 !important;
    text-transform: none !important;
    letter-spacing: normal !important;
}

.checkbox-link {
    color: var(--color-accent-orange);
    text-decoration: underline;
}

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