/* ================================================
   AUTOHAUS KRÜGER - APPLE STYLE REDESIGN
   Premium Automotive Website Styles
   ================================================ */

/* ================================================
   CSS VARIABLES
   ================================================ */
:root {
    /* Primary Colors - Gold Theme */
    --primary-gold: #C9A962;
    --primary-gold-light: #D4BC7E;
    --primary-gold-dark: #B8933D;
    
    /* Neutral Colors */
    --black: #1d1d1f;
    --dark-gray: #424245;
    --medium-gray: #6e6e73;
    --light-gray: #f5f5f7;
    --white: #ffffff;
    
    /* Transitions */
    --transition-smooth: cubic-bezier(0.25, 0.1, 0.25, 1);
    --transition-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 40px 80px rgba(0, 0, 0, 0.15);
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--black);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

/* ================================================
   TYPOGRAPHY
   ================================================ */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

/* ================================================
   NAVIGATION
   ================================================ */
.nav-container {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.5s var(--transition-smooth);
}

.nav-blur {
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
}

.nav-solid {
    background: var(--white);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.1);
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--black);
}

.logo-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-gold-dark) 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: white;
    font-size: 14px;
}

.logo-text {
    font-weight: 600;
    font-size: 18px;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    color: var(--dark-gray);
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    transition: color 0.3s var(--transition-smooth);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--primary-gold);
    transition: width 0.3s var(--transition-smooth);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--black);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-cta {
    background: var(--black);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s var(--transition-smooth);
}

.nav-cta:hover {
    background: var(--primary-gold);
    transform: scale(1.02);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--black);
    transition: all 0.3s var(--transition-smooth);
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 52px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    z-index: 999;
    padding: 40px 24px;
    transform: translateY(-100%);
    opacity: 0;
    transition: all 0.4s var(--transition-smooth);
}

.mobile-menu.active {
    transform: translateY(0);
    opacity: 1;
}

.mobile-menu ul {
    list-style: none;
}

.mobile-menu li {
    margin-bottom: 24px;
}

.mobile-menu a {
    font-size: 28px;
    font-weight: 600;
    color: var(--black);
    text-decoration: none;
    display: block;
    transition: color 0.3s var(--transition-smooth);
}

.mobile-menu a:hover {
    color: var(--primary-gold);
}

/* ================================================
   PAGE HERO
   ================================================ */
.page-hero {
    padding: 140px 24px 80px;
    background: linear-gradient(180deg, var(--light-gray) 0%, var(--white) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero-small {
    padding: 120px 24px 60px;
}

.page-hero-dark {
    background: var(--black);
    color: var(--white);
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-hero-dark .page-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.page-hero-dark .page-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
}

.page-hero-dark .page-hero-content {
    position: relative;
    z-index: 1;
}

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

.page-hero h1 {
    font-size: clamp(40px, 6vw, 64px);
    font-weight: 700;
    letter-spacing: -0.03em;
    margin-bottom: 16px;
}

.highlight {
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-gold-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(16px, 2vw, 20px);
    color: var(--medium-gray);
    font-weight: 400;
}

.page-hero-dark .hero-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

/* ================================================
   SECTION STYLES
   ================================================ */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-label {
    font-size: 13px;
    color: var(--primary-gold-dark);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 12px;
}

.section-title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 17px;
    color: var(--medium-gray);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ================================================
   BUTTONS
   ================================================ */
.btn-primary {
    background: var(--black);
    color: var(--white);
    padding: 14px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: var(--primary-gold);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(201, 169, 98, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--black);
    padding: 14px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    border: 1.5px solid var(--black);
    transition: all 0.3s var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.btn-secondary:hover {
    background: var(--black);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.btn-large {
    padding: 18px 36px;
    font-size: 16px;
}

.btn-small {
    padding: 10px 20px;
    font-size: 13px;
}

/* ================================================
   ANIMATIONS
   ================================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s var(--transition-smooth);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: all 0.8s var(--transition-smooth);
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: all 0.8s var(--transition-smooth);
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

.page-transition {
    animation: fadeIn 0.6s var(--transition-smooth);
}

/* ================================================
   VEHICLE CARDS
   ================================================ */
.filter-section {
    padding: 40px 24px;
    background: var(--white);
}

.filter-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.filter-tab {
    padding: 10px 24px;
    border-radius: 24px;
    border: 1.5px solid rgba(0, 0, 0, 0.1);
    background: var(--white);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s var(--transition-smooth);
}

.filter-tab:hover {
    border-color: var(--primary-gold);
    color: var(--primary-gold-dark);
}

.filter-tab.active {
    background: var(--black);
    color: var(--white);
    border-color: var(--black);
}

.vehicles-section {
    padding: 40px 24px 80px;
    background: var(--light-gray);
}

.vehicles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 24px;
}

.vehicle-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.4s var(--transition-smooth);
}

.vehicle-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.vehicle-image {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
}

.vehicle-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--transition-smooth);
}

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

.vehicle-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-new {
    background: var(--primary-gold);
    color: var(--white);
}

.badge-used {
    background: var(--black);
    color: var(--white);
}

.badge-sale {
    background: #e63946;
    color: var(--white);
    left: auto;
    right: 16px;
}

.vehicle-quick-actions {
    position: absolute;
    top: 16px;
    right: 16px;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s var(--transition-smooth);
}

.vehicle-card:hover .vehicle-quick-actions {
    opacity: 1;
    transform: translateY(0);
}

.quick-action {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--white);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    transition: all 0.3s var(--transition-smooth);
}

.quick-action:hover {
    transform: scale(1.1);
    color: var(--primary-gold);
}

.vehicle-content {
    padding: 24px;
}

.vehicle-brand {
    font-size: 12px;
    color: var(--medium-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.vehicle-content h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
}

.vehicle-specs {
    display: flex;
    gap: 8px;
    font-size: 13px;
    color: var(--medium-gray);
    margin-bottom: 16px;
}

.vehicle-features {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.feature-tag {
    padding: 4px 10px;
    background: var(--light-gray);
    border-radius: 12px;
    font-size: 12px;
    color: var(--dark-gray);
}

.vehicle-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid var(--light-gray);
}

.vehicle-price .price-label {
    font-size: 12px;
    color: var(--medium-gray);
}

.vehicle-price .price-value {
    font-size: 22px;
    font-weight: 700;
    color: var(--black);
}

.vehicle-cta {
    padding: 10px 20px;
    background: var(--black);
    color: var(--white);
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s var(--transition-smooth);
}

.vehicle-cta:hover {
    background: var(--primary-gold);
}

.load-more {
    text-align: center;
    margin-top: 48px;
}

/* ================================================
   SERVICE DETAIL SECTIONS
   ================================================ */
.services-detail-section {
    padding: 80px 24px;
}

.service-detail-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 120px;
}

.service-detail-row:last-child {
    margin-bottom: 0;
}

.service-detail-row.reverse {
    direction: rtl;
}

.service-detail-row.reverse > * {
    direction: ltr;
}

.service-number {
    font-size: 72px;
    font-weight: 700;
    color: var(--light-gray);
    line-height: 1;
    margin-bottom: 16px;
}

.service-detail-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.service-detail-content p {
    font-size: 17px;
    color: var(--medium-gray);
    line-height: 1.8;
    margin-bottom: 24px;
}

.service-features-list {
    list-style: none;
    margin-bottom: 32px;
}

.service-features-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 15px;
    color: var(--dark-gray);
}

.service-features-list svg {
    color: var(--primary-gold);
    flex-shrink: 0;
}

.service-detail-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

/* ================================================
   WORKSHOP STYLES
   ================================================ */
.workshop-services-section {
    padding: 80px 24px;
    background: var(--light-gray);
}

.workshop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.workshop-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: all 0.4s var(--transition-smooth);
}

.workshop-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.workshop-card-icon {
    font-size: 40px;
    margin-bottom: 20px;
}

.workshop-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

.workshop-card p {
    font-size: 15px;
    color: var(--medium-gray);
    margin-bottom: 20px;
    line-height: 1.7;
}

.workshop-card ul {
    list-style: none;
}

.workshop-card li {
    padding: 6px 0;
    font-size: 14px;
    color: var(--dark-gray);
    position: relative;
    padding-left: 20px;
}

.workshop-card li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-gold);
}

.workshop-why-section {
    padding: 100px 24px;
    background: var(--white);
}

.workshop-why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.workshop-why-content h2 {
    font-size: 40px;
    margin-bottom: 20px;
}

.workshop-why-content > p {
    font-size: 17px;
    color: var(--medium-gray);
    line-height: 1.8;
    margin-bottom: 40px;
}

.workshop-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.workshop-feature {
    display: flex;
    gap: 16px;
}

.feature-icon {
    width: 32px;
    height: 32px;
    background: var(--primary-gold);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    flex-shrink: 0;
}

.feature-content h4 {
    font-size: 16px;
    margin-bottom: 4px;
}

.feature-content p {
    font-size: 14px;
    color: var(--medium-gray);
}

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

.workshop-why-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.image-stats {
    position: absolute;
    bottom: -30px;
    left: 30px;
    right: 30px;
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 24px;
    display: flex;
    justify-content: space-around;
    box-shadow: var(--shadow-lg);
}

.image-stats .stat {
    text-align: center;
}

.image-stats .stat-number {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-gold-dark);
    line-height: 1;
}

.image-stats .stat-text {
    font-size: 13px;
    color: var(--medium-gray);
}

.appointment-cta-section {
    padding: 80px 24px;
    background: var(--light-gray);
}

.appointment-card {
    background: linear-gradient(135deg, var(--black) 0%, #2d2d2f 100%);
    border-radius: var(--radius-xl);
    padding: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    color: var(--white);
}

.appointment-content h2 {
    font-size: 32px;
    margin-bottom: 12px;
}

.appointment-content p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

.appointment-benefits {
    display: flex;
    gap: 24px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

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

.appointment-phone {
    margin-top: 16px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.appointment-phone strong {
    color: var(--white);
}

/* ================================================
   ABOUT STYLES
   ================================================ */
.about-story-section {
    padding: 100px 24px;
}

.about-story-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-story-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
}

.about-story-content h2 {
    font-size: 40px;
    margin-bottom: 24px;
}

.about-story-content p {
    font-size: 17px;
    color: var(--medium-gray);
    line-height: 1.8;
    margin-bottom: 20px;
}

.values-section {
    padding: 100px 24px;
    background: var(--light-gray);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.value-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    text-align: center;
    transition: all 0.4s var(--transition-smooth);
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.value-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.value-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

.value-card p {
    font-size: 15px;
    color: var(--medium-gray);
    line-height: 1.7;
}

.showroom-section {
    padding: 100px 24px;
}

.showroom-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.showroom-content h2 {
    font-size: 40px;
    margin-bottom: 20px;
}

.showroom-content p {
    font-size: 17px;
    color: var(--medium-gray);
    line-height: 1.8;
    margin-bottom: 20px;
}

.showroom-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 32px;
}

.showroom-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: var(--dark-gray);
}

.showroom-feature svg {
    color: var(--primary-gold);
}

.showroom-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.stats-section {
    padding: 80px 24px;
    background: var(--black);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.stat-card {
    text-align: center;
    color: var(--white);
}

.stat-card .stat-number {
    font-size: 56px;
    font-weight: 700;
    color: var(--primary-gold);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-card .stat-label {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
}

.team-preview-section {
    padding: 100px 24px;
    background: var(--light-gray);
}

.team-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.team-info-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
}

.team-info-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
}

.team-info-card p {
    font-size: 15px;
    color: var(--medium-gray);
    line-height: 1.7;
}

/* ================================================
   CONTACT STYLES
   ================================================ */
.contact-section {
    padding: 80px 24px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
}

.contact-info h2 {
    font-size: 32px;
    margin-bottom: 16px;
}

.contact-info > p {
    font-size: 17px;
    color: var(--medium-gray);
    margin-bottom: 40px;
}

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

.contact-card {
    display: flex;
    gap: 20px;
    padding: 24px;
    background: var(--light-gray);
    border-radius: var(--radius-md);
    transition: all 0.3s var(--transition-smooth);
}

.contact-card:hover {
    background: var(--white);
    box-shadow: var(--shadow-md);
}

.contact-card-icon {
    width: 48px;
    height: 48px;
    background: var(--primary-gold);
    color: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-card-content h3 {
    font-size: 16px;
    margin-bottom: 8px;
}

.contact-card-content p {
    font-size: 15px;
    color: var(--dark-gray);
    line-height: 1.6;
}

.contact-card-content a {
    color: var(--primary-gold-dark);
}

.contact-card-content a:hover {
    color: var(--primary-gold);
}

.opening-hours {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
}

.hours-row span:first-child {
    color: var(--medium-gray);
}

.contact-form-container {
    position: relative;
}

.contact-form-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 48px;
    box-shadow: var(--shadow-lg);
}

.contact-form-card h2 {
    font-size: 28px;
    margin-bottom: 8px;
}

.contact-form-card > p {
    font-size: 15px;
    color: var(--medium-gray);
    margin-bottom: 32px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 14px;
    font-weight: 500;
    color: var(--dark-gray);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 18px;
    border: 1.5px solid rgba(0, 0, 0, 0.1);
    border-radius: var(--radius-sm);
    font-size: 15px;
    font-family: inherit;
    transition: all 0.3s var(--transition-smooth);
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-gold);
    box-shadow: 0 0 0 3px rgba(201, 169, 98, 0.1);
}

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

.form-checkbox {
    flex-direction: row;
    align-items: flex-start;
    gap: 12px;
}

.form-checkbox input {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    accent-color: var(--primary-gold);
}

.form-checkbox label {
    font-size: 13px;
    color: var(--medium-gray);
    line-height: 1.5;
}

.form-checkbox label a {
    color: var(--primary-gold-dark);
}

/* Map Section */
.map-section {
    position: relative;
}

.map-container {
    width: 100%;
    height: 450px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    filter: grayscale(1) contrast(1.1);
    transition: filter 0.4s var(--transition-smooth);
}

.map-container iframe:hover {
    filter: grayscale(0);
}

.map-overlay {
    position: absolute;
    bottom: 40px;
    left: 40px;
}

.map-info-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 24px 32px;
    box-shadow: var(--shadow-lg);
}

.map-info-card h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.map-info-card p {
    font-size: 14px;
    color: var(--medium-gray);
    margin-bottom: 16px;
}

/* ================================================
   LEGAL PAGES
   ================================================ */
.legal-section {
    padding: 60px 24px 100px;
}

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

.legal-content {
    font-size: 15px;
    line-height: 1.8;
    color: var(--dark-gray);
}

.legal-intro {
    font-size: 17px;
    color: var(--medium-gray);
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.legal-content h2 {
    font-size: 24px;
    color: var(--black);
    margin-top: 48px;
    margin-bottom: 20px;
    padding-top: 24px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.legal-content h2:first-of-type {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

.legal-content h3 {
    font-size: 18px;
    color: var(--black);
    margin-top: 28px;
    margin-bottom: 12px;
}

.legal-content h4 {
    font-size: 15px;
    color: var(--dark-gray);
    margin-top: 20px;
    margin-bottom: 8px;
}

.legal-block {
    margin-bottom: 24px;
}

.legal-block p {
    margin-bottom: 12px;
}

.legal-block ul {
    margin: 12px 0;
    padding-left: 24px;
}

.legal-block li {
    margin-bottom: 8px;
}

.legal-content a {
    color: var(--primary-gold-dark);
}

.legal-content a:hover {
    color: var(--primary-gold);
}

.legal-divider {
    border: none;
    height: 1px;
    background: rgba(0, 0, 0, 0.08);
    margin: 48px 0;
}

.legal-footer {
    margin-top: 48px;
    padding-top: 24px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

/* ================================================
   CTA SECTION
   ================================================ */
.cta-section {
    padding: 100px 24px;
    background: linear-gradient(135deg, var(--light-gray) 0%, var(--white) 100%);
    text-align: center;
}

.cta-container {
    max-width: 700px;
    margin: 0 auto;
}

.cta-container h2 {
    font-size: clamp(32px, 4vw, 48px);
    margin-bottom: 16px;
}

.cta-container > p {
    font-size: 18px;
    color: var(--medium-gray);
    margin-bottom: 32px;
}

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

/* Info Banner */
.info-banner {
    padding: 60px 24px;
    background: var(--white);
}

.info-banner-content {
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-gold-dark) 100%);
    border-radius: var(--radius-xl);
    padding: 48px 60px;
    display: flex;
    align-items: center;
    gap: 32px;
    color: var(--white);
}

.info-icon {
    font-size: 48px;
}

.info-text {
    flex: 1;
}

.info-text h3 {
    font-size: 24px;
    margin-bottom: 8px;
}

.info-text p {
    font-size: 16px;
    opacity: 0.9;
}

.info-banner-content .btn-primary {
    background: var(--white);
    color: var(--black);
    flex-shrink: 0;
}

.info-banner-content .btn-primary:hover {
    background: var(--black);
    color: var(--white);
}

/* ================================================
   FOOTER
   ================================================ */
footer {
    background: var(--black);
    color: var(--white);
    padding: 80px 24px 40px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

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

.footer-brand .logo {
    color: var(--white);
    margin-bottom: 20px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 24px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    margin-bottom: 12px;
}

.footer-contact-item svg {
    opacity: 0.6;
}

.footer-column h4 {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
    color: rgba(255, 255, 255, 0.5);
}

.footer-column ul {
    list-style: none;
}

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

.footer-column a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s var(--transition-smooth);
}

.footer-column a:hover {
    color: var(--primary-gold);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
    gap: 20px;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
}

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

.footer-legal a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s var(--transition-smooth);
}

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

/* ================================================
   SCROLLBAR
   ================================================ */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--light-gray);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-gold);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-gold-dark);
}

/* ================================================
   RESPONSIVE
   ================================================ */
@media (max-width: 1024px) {
    .service-detail-row,
    .about-story-grid,
    .workshop-why-grid,
    .showroom-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .service-detail-row.reverse {
        direction: ltr;
    }

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

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

    .appointment-card {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .nav-links, .nav-cta {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .mobile-menu {
        display: block;
    }

    .page-hero {
        padding: 120px 20px 60px;
    }

    .page-hero h1 {
        font-size: 36px;
    }

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

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

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

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

    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }

    .stat-card .stat-number {
        font-size: 40px;
    }

    .info-banner-content {
        flex-direction: column;
        text-align: center;
        padding: 40px 24px;
    }

    .showroom-features {
        grid-template-columns: 1fr;
    }

    .map-overlay {
        position: relative;
        bottom: auto;
        left: auto;
        padding: 24px;
    }

    .contact-form-card {
        padding: 32px 24px;
    }

    .appointment-card {
        padding: 40px 24px;
    }

    .appointment-benefits {
        flex-direction: column;
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .filter-tabs {
        flex-direction: column;
        align-items: stretch;
    }

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