/* =====================================================
   VS Progress - Premium Landing Page Styles
   ===================================================== */

/* CSS Variables */
:root {
    --primary: #000000;
    --primary-dark: #000000;
    --primary-light: #333333;
    --secondary: #000000;
    --secondary-dark: #000000;
    --accent: #ffffff;
    --dark: #ffffff;
    --dark-100: #fafafa;
    --dark-200: #f5f5f5;
    --dark-300: #eeeeee;
    --dark-400: #e0e0e0;
    --dark-500: #d6d6d6;
    --gray: #666666;
    --gray-light: #999999;
    --white: #000000;
    --white-90: rgba(0, 0, 0, 0.9);
    --white-70: rgba(0, 0, 0, 0.7);
    --white-50: rgba(0, 0, 0, 0.5);
    --white-20: rgba(0, 0, 0, 0.1);
    --white-10: rgba(0, 0, 0, 0.05);
    --white-05: rgba(0, 0, 0, 0.02);
    --gradient-primary: linear-gradient(135deg, #000000 0%, #333333 100%);
    --gradient-dark: linear-gradient(180deg, #ffffff 0%, #f5f5f5 100%);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.12);
    --shadow-glow: 0 0 40px rgba(0, 0, 0, 0.15);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Space Grotesk', sans-serif;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

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

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

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

ul {
    list-style: none;
}

/* Container */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Preloader */
.preloader {
    position: fixed;
    inset: 0;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader {
    position: relative;
}

.loader-svg {
    width: 100px;
    height: 100px;
    animation: pulse 1.5s ease-in-out infinite;
}

.loader-text {
    font-family: var(--font-display);
    font-size: 40px;
    font-weight: 700;
    fill: var(--primary);
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.7; }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding: 12px 0;
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-svg {
    width: 50px;
    height: 40px;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    fill: var(--white);
}

.logo-name {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--white);
}

.logo-img {
    height: 50px;
    width: auto;
}

.footer-logo-img {
    height: 60px;
    width: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-size: 14px;
    font-weight: 500;
    color: var(--white-70);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #000000;
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--white);
}

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

.nav-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.nav-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--white-10);
    border-radius: var(--radius-lg);
    font-size: 14px;
    font-weight: 500;
    color: var(--white);
}

.nav-phone:hover {
    background: #000000;
    color: #ffffff;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
}

.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);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 120px 0 80px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 50% at 50% -20%, rgba(0, 0, 0, 0.03), transparent),
        radial-gradient(ellipse 60% 50% at 100% 50%, rgba(0, 0, 0, 0.02), transparent),
        #ffffff;
}

.hero-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    padding: 0 24px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--white-05);
    border: 1px solid var(--white-10);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 500;
    color: var(--white-70);
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease forwards;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: #000000;
    border-radius: 50%;
    animation: blink 2s ease-in-out infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(48px, 8vw, 80px);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease 0.1s forwards;
    opacity: 0;
}

.title-line {
    display: block;
}

.gradient-text {
    background: linear-gradient(135deg, #000000 0%, #444444 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--white-70);
    margin-bottom: 40px;
    max-width: 500px;
    animation: fadeInUp 0.8s ease 0.2s forwards;
    opacity: 0;
}

.hero-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 60px;
    animation: fadeInUp 0.8s ease 0.3s forwards;
    opacity: 0;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: var(--transition);
    border: none;
    outline: none;
}

.btn-primary {
    background: #000000;
    color: #ffffff;
}

.btn-primary:hover {
    background: #333333;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    background: transparent;
    color: #000000;
    border: 2px solid #000000;
}

.btn-secondary:hover {
    background: #000000;
    color: #ffffff;
    border-color: #000000;
}

.btn-white {
    background: #ffffff;
    color: #000000;
}

.btn-white:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

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

.btn-full {
    width: 100%;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 40px;
    animation: fadeInUp 0.8s ease 0.4s forwards;
    opacity: 0;
}

.stat-item {
    text-align: left;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 40px;
    font-weight: 700;
    color: var(--white);
}

.stat-plus {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 700;
    color: #000000;
}

.stat-label {
    display: block;
    font-size: 13px;
    color: var(--white-50);
    margin-top: 4px;
}

.stat-divider {
    width: 1px;
    height: 50px;
    background: var(--white-20);
}

.hero-visual {
    position: absolute;
    right: -100px;
    top: 50%;
    transform: translateY(-50%);
    width: 55%;
    z-index: 1;
}

.car-showcase {
    position: relative;
}

.car-card {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.car-glow {
    display: none;
}

@keyframes glow {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.1); }
}

.car-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: var(--radius-xl);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: fit-content;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.mouse {
    width: 24px;
    height: 40px;
    border: 2px solid var(--white-30);
    border-radius: 12px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--white-50);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s ease-in-out infinite;
}

@keyframes scroll {
    0%, 100% { top: 8px; opacity: 1; }
    50% { top: 20px; opacity: 0; }
}

.scroll-indicator span {
    font-size: 12px;
    color: var(--white-50);
    letter-spacing: 1px;
}

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

/* Brands Section */
.brands {
    padding: 40px 0;
    border-top: 1px solid var(--white-10);
    border-bottom: 1px solid var(--white-10);
    background: var(--dark-100);
}

.brands-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.brand-item {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    color: rgba(0, 0, 0, 0.3);
    letter-spacing: 4px;
    transition: var(--transition);
}

.brand-item:hover {
    color: rgba(0, 0, 0, 0.7);
}

.brand-logo {
    height: 40px;
    width: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.5;
    transition: var(--transition);
}

.brand-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    padding: 6px 16px;
    background: #000000;
    border: 1px solid #000000;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--white-70);
    max-width: 600px;
    margin: 0 auto;
}

/* Services Section */
.services {
    padding: 120px 0;
    background: var(--dark);
}

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

.service-card {
    background: var(--dark-200);
    border: 1px solid var(--white-10);
    border-radius: var(--radius-xl);
    padding: 40px 32px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: var(--white-20);
    box-shadow: var(--shadow-lg);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card.featured {
    background: #fafafa;
    border-color: #000000;
}

.service-card.featured::before {
    opacity: 1;
}

.service-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white-10);
    border-radius: var(--radius-md);
    margin-bottom: 24px;
}

.service-icon svg {
    width: 32px;
    height: 32px;
    stroke: #000000;
}

.service-title {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 12px;
}

.service-desc {
    font-size: 15px;
    color: var(--white-70);
    margin-bottom: 24px;
    line-height: 1.7;
}

.service-features {
    margin-bottom: 24px;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--white-70);
    margin-bottom: 10px;
}

.service-features li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: #000000;
    border-radius: 50%;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #000000;
}

.service-link:hover {
    gap: 12px;
}

/* Fleet Section */
.fleet {
    padding: 120px 0;
    background: var(--dark-100);
}

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

.car-card-item {
    background: var(--dark-200);
    border: 1px solid var(--white-10);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: var(--transition);
    position: relative;
}

.car-card-item:hover {
    transform: translateY(-8px);
    border-color: var(--white-20);
    box-shadow: var(--shadow-lg);
}

.car-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 6px 12px;
    background: #000000;
    color: #ffffff;
    font-size: 12px;
    font-weight: 600;
    border-radius: 100px;
    z-index: 2;
}

.car-badge.best-value {
    background: #333333;
    color: #ffffff;
}

.car-image-wrapper {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.car-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.car-card-item:hover .car-image-wrapper img {
    transform: scale(1.1);
}

.car-info {
    padding: 24px;
}

.car-name {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
}

.car-specs {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
}

.car-specs span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--white-50);
}

.car-specs svg {
    stroke: var(--white-50);
}

.car-pricing {
    display: flex;
    justify-content: space-between;
    padding: 16px 0;
    border-top: 1px solid var(--white-10);
    border-bottom: 1px solid var(--white-10);
    margin-bottom: 20px;
}

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

.price-label {
    display: block;
    font-size: 12px;
    color: var(--white-50);
    margin-bottom: 4px;
}

.price-value {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 600;
    color: #000000;
}

.btn-car {
    width: 100%;
    background: transparent;
    color: #000000;
    border: 2px solid #000000;
}

.btn-car:hover {
    background: #000000;
    color: #ffffff;
    border-color: #000000;
}

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

/* Garage Section */
.garage {
    padding: 120px 0;
    background: var(--dark);
}

.garage-header {
    margin-bottom: 60px;
}

.garage-text {
    max-width: 800px;
}

.garage-desc {
    font-size: 18px;
    color: var(--white-70);
    line-height: 1.8;
    margin-top: 20px;
}

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

.garage-card {
    background: var(--dark-200);
    border: 1px solid var(--white-10);
    border-radius: var(--radius-xl);
    padding: 32px;
    transition: var(--transition);
}

.garage-card:hover {
    transform: translateY(-4px);
    border-color: #000000;
    background: #fafafa;
}

.garage-card-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white-10);
    border-radius: var(--radius-md);
    margin-bottom: 20px;
}

.garage-card-icon svg {
    width: 26px;
    height: 26px;
    stroke: #000000;
}

.garage-card h4 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
}

.garage-card p {
    font-size: 14px;
    color: var(--white-70);
    line-height: 1.7;
}

/* Why Us Section */
.why-us {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--dark-100) 0%, var(--dark) 100%);
}

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

.why-card {
    text-align: center;
    padding: 40px 24px;
    background: var(--dark-200);
    border: 1px solid var(--white-10);
    border-radius: var(--radius-xl);
    transition: var(--transition);
}

.why-card:hover {
    border-color: #000000;
    transform: translateY(-4px);
}

.why-number {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 700;
    color: #000000;
    opacity: 0.2;
    margin-bottom: 16px;
}

.why-card h4 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
}

.why-card p {
    font-size: 14px;
    color: var(--white-70);
}

/* About Section */
.about {
    padding: 120px 0;
    background: var(--dark);
}

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

.about-text p {
    font-size: 16px;
    color: var(--white-70);
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-features {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 32px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: var(--white-05);
    border: 1px solid var(--white-10);
    border-radius: var(--radius-lg);
    font-size: 14px;
    font-weight: 500;
}

.about-feature svg {
    width: 20px;
    height: 20px;
    stroke: #000000;
}

.about-image {
    position: relative;
}

.image-wrapper {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.image-wrapper img {
    width: 100%;
    height: auto;
}

.image-overlay {
    display: none;
}

/* FAQ Section */
.faq {
    padding: 120px 0;
    background: #fafafa;
}

.faq .section-tag {
    background: #000000;
    color: #ffffff;
}

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

.faq-item {
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid #e5e5e5;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #d0d0d0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.faq-item.active {
    border-color: #000000;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 24px 28px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
}

.faq-question span {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    flex: 1;
}

.faq-icon {
    width: 28px;
    height: 28px;
    position: relative;
    flex-shrink: 0;
    border-radius: 50%;
    background: #f0f0f0;
    transition: all 0.3s ease;
}

.faq-item:hover .faq-icon {
    background: #e5e5e5;
}

.faq-item.active .faq-icon {
    background: #000000;
}

.icon-line {
    position: absolute;
    background: #666666;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.icon-line.horizontal {
    width: 12px;
    height: 2px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.icon-line.vertical {
    width: 2px;
    height: 12px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.faq-item.active .icon-line {
    background: #ffffff;
}

.faq-item.active .icon-line.vertical {
    transform: translate(-50%, -50%) rotate(90deg);
    opacity: 0;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 28px 24px;
    font-size: 15px;
    color: #666666;
    line-height: 1.8;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: #000000;
}

.cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h2 {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 32px;
}

/* Contact Section */
.contact {
    padding: 120px 0;
    background: var(--dark);
}

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

.contact-info p {
    font-size: 16px;
    color: var(--white-70);
    margin-bottom: 40px;
}

.contact-details {
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

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

.contact-icon svg {
    width: 22px;
    height: 22px;
    stroke: #000000;
}

.contact-item h5 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;
}

.contact-item a,
.contact-item p {
    font-size: 14px;
    color: var(--white-70);
    display: block;
}

.contact-item a:hover {
    color: #000000;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white-10);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.social-link svg {
    width: 20px;
    height: 20px;
    stroke: var(--white-70);
    fill: none;
}

.social-link:last-child svg {
    fill: var(--white-70);
    stroke: none;
}

.social-link:hover {
    background: #000000;
}

.social-link:hover svg {
    stroke: #ffffff;
}

.social-link:last-child:hover svg {
    fill: #ffffff;
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--dark-200);
    border: 1px solid var(--white-10);
    border-radius: var(--radius-xl);
    padding: 40px;
}

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

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

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--white-70);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    background: var(--dark-300);
    border: 1px solid var(--white-10);
    border-radius: var(--radius-md);
    font-family: inherit;
    font-size: 15px;
    color: var(--white);
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #000000;
    background: #ffffff;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%23737373' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
}

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

/* Footer */
.footer {
    padding: 80px 0 0;
    background: #000000;
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
    max-width: 320px;
}

.footer-brand .footer-logo-img {
    height: 50px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-brand p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 20px;
    line-height: 1.8;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 28px;
}

.footer-social a {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: #ffffff;
    transform: translateY(-3px);
}

.footer-social svg {
    width: 20px;
    height: 20px;
    color: #ffffff;
    transition: all 0.3s ease;
}

.footer-social a:hover svg {
    color: #000000;
}

.footer-nav {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-links h5 {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
    color: #ffffff;
}

.footer-links a {
    display: block;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 14px;
    transition: all 0.2s ease;
}

.footer-links a:hover {
    color: #ffffff;
    padding-left: 6px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-contact-item svg {
    width: 18px;
    height: 18px;
    stroke: rgba(255, 255, 255, 0.4);
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-contact-item span,
.footer-contact-item a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    transition: color 0.2s ease;
}

.footer-contact-item a:hover {
    color: #ffffff;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 28px 0;
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
}

.footer-bottom-links {
    display: flex;
    gap: 32px;
}

.footer-bottom-links a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
    transition: color 0.2s ease;
}

.footer-bottom-links a:hover {
    color: #ffffff;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .hero-visual {
        width: 50%;
        right: -50px;
    }

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

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

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

    .footer-brand {
        max-width: 100%;
    }

    .footer-nav {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--dark-200);
        padding: 20px;
        flex-direction: column;
        gap: 0;
        border-bottom: 1px solid var(--white-10);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-link {
        padding: 12px 0;
        border-bottom: 1px solid var(--white-10);
        width: 100%;
    }

    .nav-link:last-child {
        border-bottom: none;
    }

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

    .nav-phone span {
        display: none;
    }

    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 140px;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-subtitle {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-cta {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-visual {
        display: none;
    }

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

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

@media (max-width: 768px) {
    .services-grid,
    .fleet-grid,
    .garage-grid,
    .why-grid {
        grid-template-columns: 1fr;
    }

    .hero-stats {
        flex-direction: column;
        gap: 24px;
    }

    .stat-divider {
        width: 50px;
        height: 1px;
    }

    .brands-wrapper {
        justify-content: center;
    }

    .brand-item {
        font-size: 16px;
        letter-spacing: 2px;
    }

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

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

    .footer-nav .footer-links:last-child {
        grid-column: span 2;
    }

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

    .footer-bottom-links {
        gap: 24px;
    }

    .section-title {
        font-size: 32px;
    }

    .hero-title {
        font-size: 40px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero {
        padding-top: 120px;
    }

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

    .btn {
        width: 100%;
    }

    .contact-form-wrapper {
        padding: 24px;
    }
}

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

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Scroll Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* =====================================================
   Floating Buttons & Modal
   ===================================================== */

/* Scroll to Top Button */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #000000;
    color: #ffffff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    z-index: 1000;
    box-shadow: var(--shadow-lg);
}

.scroll-top:hover {
    background: #333333;
    transform: translateY(-3px);
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top svg {
    width: 24px;
    height: 24px;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 100px;
    right: 30px;
    display: flex;
    align-items: center;
    gap: 12px;
    background: #25D366;
    color: #ffffff;
    padding: 14px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
}

.whatsapp-float:hover {
    background: #1ebe5d;
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
    width: 24px;
    height: 24px;
}

.whatsapp-float span {
    display: none;
}

@media (min-width: 768px) {
    .whatsapp-float span {
        display: inline;
    }
}

/* Book Now Floating Button */
.book-now-float {
    position: fixed;
    bottom: 170px;
    right: 30px;
    display: flex;
    align-items: center;
    gap: 12px;
    background: #000000;
    color: #ffffff;
    padding: 14px 20px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    z-index: 1000;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    font-family: var(--font-primary);
}

.book-now-float:hover {
    background: #333333;
    transform: translateY(-3px);
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.3);
}

.book-now-float svg {
    width: 20px;
    height: 20px;
}

.book-now-float span {
    display: none;
}

@media (min-width: 768px) {
    .book-now-float span {
        display: inline;
    }
}

/* Modal Overlay */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    padding: 20px;
}

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

/* Modal */
.modal {
    background: #ffffff;
    border-radius: var(--radius-xl);
    max-width: 520px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: scale(0.9) translateY(20px);
    transition: var(--transition);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

.modal.service-modal {
    max-width: 680px;
}

.modal-overlay.active .modal {
    transform: scale(1) translateY(0);
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    background: #f5f5f5;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 10;
}

.modal-close:hover {
    background: #e0e0e0;
    transform: rotate(90deg);
}

.modal-close svg {
    width: 20px;
    height: 20px;
    stroke: #333333;
}

.modal-header {
    padding: 32px 32px 24px;
    border-bottom: 1px solid #e0e0e0;
}

.modal-header h3 {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #000000;
}

.modal-header p {
    color: #666666;
    font-size: 14px;
}

/* Booking Form - Base styles handled by .modal-content .booking-form */

.form-step {
    display: none;
}

.form-step.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

.form-step h4 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #000000;
}

.booking-form .form-group {
    margin-bottom: 16px;
}

.booking-form .form-group label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 6px;
    color: #333333;
}

.booking-form .form-group input,
.booking-form .form-group select,
.booking-form .form-group textarea {
    width: 100%;
    padding: 12px 14px;
    background: #f8f8f8;
    border: 2px solid #e0e0e0;
    border-radius: var(--radius-md);
    font-family: inherit;
    font-size: 14px;
    color: #000000;
    transition: var(--transition);
}

.booking-form .form-group input:focus,
.booking-form .form-group select:focus,
.booking-form .form-group textarea:focus {
    outline: none;
    border-color: #000000;
    background: #ffffff;
}

.booking-form .form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%23666666' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
}

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

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

.form-buttons {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.form-buttons .btn {
    flex: 1;
}

.btn-secondary {
    background: #f5f5f5;
    color: #333333;
    border: 2px solid #e0e0e0;
}

.btn-secondary:hover {
    background: #e0e0e0;
    border-color: #d0d0d0;
}


/* Booking Success */
.booking-success {
    text-align: center;
    padding: 20px 0;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    animation: successPop 0.5s ease;
}

.success-icon svg {
    stroke: #ffffff;
}

@keyframes successPop {
    0% { transform: scale(0); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

.booking-success h4 {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #000000;
}

.booking-success p {
    color: #666666;
    margin-bottom: 24px;
}

.booking-summary {
    background: #f8f8f8;
    border-radius: var(--radius-md);
    padding: 20px;
    text-align: left;
    margin-bottom: 24px;
}

.booking-summary p {
    margin-bottom: 8px;
    font-size: 14px;
    color: #333333;
}

.booking-summary p:last-child {
    margin-bottom: 0;
}

.booking-summary strong {
    color: #000000;
}

/* =====================================================
   Premium Service Booking Modal Styles
   ===================================================== */

/* Modal Layout - Split View */
.modal.service-modal {
    max-width: 960px;
    padding: 0;
    overflow: hidden;
}

.modal-layout {
    display: flex;
    min-height: 600px;
    max-height: 85vh;
}

/* Sidebar */
.modal-sidebar {
    width: 280px;
    background: #000000;
    color: #ffffff;
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
}

.sidebar-header {
    margin-bottom: 40px;
}

.sidebar-logo {
    width: 48px;
    height: 48px;
    object-fit: contain;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}

.sidebar-header h2 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
}

.sidebar-header p {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    line-height: 1.5;
}

/* Vertical Progress Steps */
.booking-progress-vertical {
    flex: 1;
}

.progress-step-v {
    display: flex;
    gap: 16px;
    margin-bottom: 0;
}

.step-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.step-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    border: 2px solid rgba(255,255,255,0.3);
    transition: all 0.3s ease;
    position: relative;
}

.step-line {
    width: 2px;
    height: 40px;
    background: rgba(255,255,255,0.15);
    margin: 8px 0;
}

.progress-step-v:last-child .step-line {
    display: none;
}

.progress-step-v.active .step-dot {
    background: #ffffff;
    border-color: #ffffff;
    box-shadow: 0 0 0 4px rgba(255,255,255,0.2);
}

.progress-step-v.completed .step-dot {
    background: #22c55e;
    border-color: #22c55e;
}

.progress-step-v.completed .step-line {
    background: #22c55e;
}

.step-content {
    padding-bottom: 24px;
}

.step-label {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: rgba(255,255,255,0.4);
    margin-bottom: 4px;
}

.step-content h4 {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255,255,255,0.5);
    transition: color 0.3s ease;
}

.progress-step-v.active .step-content h4 {
    color: #ffffff;
    font-weight: 600;
}

.progress-step-v.completed .step-content h4 {
    color: rgba(255,255,255,0.7);
}

/* Sidebar Footer */
.sidebar-footer {
    margin-top: auto;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.contact-mini {
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-mini svg {
    width: 20px;
    height: 20px;
    stroke: rgba(255,255,255,0.5);
}

.contact-mini span {
    display: block;
    font-size: 11px;
    color: rgba(255,255,255,0.4);
}

.contact-mini a {
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
}

/* Modal Content Area */
.modal-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: #ffffff;
}

.modal-content .booking-form {
    flex: 1;
    overflow-y: auto;
    padding: 32px 40px 24px;
}

/* Step Header */
.step-header {
    margin-bottom: 28px;
}

.step-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #666666;
    margin-bottom: 8px;
}

.step-header h3 {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 700;
    color: #000000;
    margin: 0;
}

/* NEW Service Grid */
.service-grid-new {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 32px;
}

.service-option-new {
    cursor: pointer;
}

.service-option-new input {
    display: none;
}

.service-card-new {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fafafa;
    border: 2px solid #e8e8e8;
    border-radius: 12px;
    padding: 16px 20px;
    transition: all 0.2s ease;
}

.service-card-new:hover {
    border-color: #d0d0d0;
    background: #f5f5f5;
}

.service-option-new input:checked + .service-card-new {
    border-color: #000000;
    background: #ffffff;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.service-card-inner {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 1;
}

.service-icon-new {
    width: 44px;
    height: 44px;
    background: #e8e8e8;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.service-icon-new svg {
    width: 22px;
    height: 22px;
    stroke: #555555;
}

.service-option-new input:checked + .service-card-new .service-icon-new {
    background: #000000;
}

.service-option-new input:checked + .service-card-new .service-icon-new svg {
    stroke: #ffffff;
}

.service-info h4 {
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 2px;
}

.service-info p {
    font-size: 13px;
    color: #777777;
    margin: 0;
}

.service-meta {
    margin-left: auto;
    padding-left: 16px;
}

.service-time {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    font-weight: 500;
    color: #888888;
    white-space: nowrap;
}

.service-time svg {
    width: 14px;
    height: 14px;
}

.service-check {
    width: 24px;
    height: 24px;
    border: 2px solid #e0e0e0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 16px;
    flex-shrink: 0;
    transition: all 0.2s ease;
}

.service-check svg {
    width: 14px;
    height: 14px;
    stroke: #ffffff;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.service-option-new input:checked + .service-card-new .service-check {
    background: #000000;
    border-color: #000000;
}

.service-option-new input:checked + .service-card-new .service-check svg {
    opacity: 1;
}

/* DateTime Layout */
.datetime-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 32px;
}

/* Calendar Wrapper */
.calendar-wrapper {
    background: #fafafa;
    border-radius: 16px;
    padding: 20px;
}

.calendar-nav-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.calendar-nav-header h4 {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 600;
    color: #000000;
}

.cal-nav-btn {
    width: 32px;
    height: 32px;
    border: none;
    background: #ffffff;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.cal-nav-btn:hover {
    background: #e8e8e8;
}

.cal-nav-btn svg {
    width: 18px;
    height: 18px;
    stroke: #333333;
}

.calendar-grid {
    margin-bottom: 16px;
}

.calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    margin-bottom: 8px;
}

.calendar-weekdays span {
    text-align: center;
    font-size: 11px;
    font-weight: 600;
    color: #999999;
    padding: 8px 0;
}

.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
}

.calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: #ffffff;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    color: #333333;
    cursor: pointer;
    transition: all 0.15s ease;
}

.calendar-day:hover:not(.disabled):not(.selected) {
    background: #e8e8e8;
}

.calendar-day.today {
    background: #f0f0f0;
    font-weight: 700;
}

.calendar-day.selected {
    background: #000000;
    color: #ffffff;
}

.calendar-day.disabled {
    color: #d0d0d0;
    cursor: not-allowed;
    background: transparent;
}

.calendar-day.other-month {
    color: #d0d0d0;
}

.calendar-legend {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    color: #888888;
}

.legend-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.legend-dot.available {
    background: #ffffff;
    border: 1px solid #d0d0d0;
}

.legend-dot.today {
    background: #f0f0f0;
}

.legend-dot.unavailable {
    background: #e8e8e8;
}

/* Time Slots Wrapper */
.timeslots-wrapper {
    background: #fafafa;
    border-radius: 16px;
    padding: 20px;
    display: flex;
    flex-direction: column;
}

.timeslots-header {
    margin-bottom: 16px;
}

.timeslots-header h4 {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 4px;
}

.timeslots-header p {
    font-size: 13px;
    color: #888888;
}

.timeslots-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    flex: 1;
}

.timeslots-empty {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    color: #aaaaaa;
    text-align: center;
}

.timeslots-empty svg {
    width: 40px;
    height: 40px;
    stroke: #d0d0d0;
    margin-bottom: 12px;
}

.timeslots-empty span {
    font-size: 13px;
}

.time-slot {
    padding: 14px 12px;
    border: 2px solid #e0e0e0;
    background: #ffffff;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    color: #333333;
    cursor: pointer;
    transition: all 0.15s ease;
    text-align: center;
}

.time-slot:hover:not(.booked):not(.selected) {
    border-color: #000000;
}

.time-slot.selected {
    border-color: #000000;
    background: #000000;
    color: #ffffff;
}

.time-slot.booked {
    background: #f5f5f5;
    border-color: #e8e8e8;
    color: #bbbbbb;
    cursor: not-allowed;
}

.time-slot-status {
    display: block;
    font-size: 10px;
    margin-top: 2px;
    font-weight: 500;
    opacity: 0.7;
}

/* Form Grid */
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 24px;
}

.form-block {
    display: flex;
    flex-direction: column;
}

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

.form-label {
    font-size: 13px;
    font-weight: 500;
    color: #333333;
    margin-bottom: 6px;
}

.form-input,
.form-textarea {
    padding: 12px 14px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 14px;
    font-family: inherit;
    color: #000000;
    background: #fafafa;
    transition: all 0.2s ease;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: #000000;
    background: #ffffff;
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: #aaaaaa;
}

.form-textarea {
    resize: none;
    min-height: 80px;
}

.form-divider {
    height: 1px;
    background: #e8e8e8;
    margin: 24px 0;
}

/* Review Cards */
.review-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 24px;
}

.review-card {
    background: #fafafa;
    border-radius: 12px;
    padding: 16px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.review-card-icon {
    width: 40px;
    height: 40px;
    background: #e8e8e8;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.review-card-icon svg {
    width: 20px;
    height: 20px;
    stroke: #555555;
}

.review-card-content {
    flex: 1;
    min-width: 0;
}

.review-card-label {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    color: #888888;
    margin-bottom: 4px;
}

.review-card-content strong {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #000000;
    word-break: break-word;
}

.review-card-sub {
    display: block;
    font-size: 12px;
    color: #777777;
    margin-top: 2px;
}

/* Confirm Notice */
.confirm-notice {
    display: flex;
    gap: 12px;
    padding: 16px;
    background: #f8f8f8;
    border-radius: 12px;
    margin-bottom: 24px;
}

.confirm-notice svg {
    width: 20px;
    height: 20px;
    stroke: #888888;
    flex-shrink: 0;
    margin-top: 2px;
}

.confirm-notice p {
    font-size: 12px;
    color: #666666;
    line-height: 1.5;
    margin: 0;
}

/* Form Actions - Sticky Bottom */
.form-actions {
    position: sticky;
    bottom: 0;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px 40px;
    margin: 24px -40px 0 -40px;
    background: #ffffff;
    border-top: 1px solid #e5e5e5;
    z-index: 10;
}

.form-actions button {
    flex: 1;
    min-width: 0;
    height: 52px !important;
    padding: 0 24px !important;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
}

.btn-back {
    display: flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    line-height: 1;
    color: #555555;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: inherit;
    box-sizing: border-box;
}

.btn-back:hover {
    border-color: #c0c0c0;
    background: #f5f5f5;
}

.btn-back svg {
    width: 18px;
    height: 18px;
}

.btn-next {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #000000;
    border: 2px solid #000000;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    line-height: 1;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: inherit;
    box-sizing: border-box;
}

.btn-next:hover:not(:disabled) {
    background: #222222;
    border-color: #222222;
}

.btn-next:disabled {
    background: #d0d0d0;
    border-color: #d0d0d0;
    cursor: not-allowed;
}

.btn-next svg {
    width: 18px;
    height: 18px;
}

.btn-confirm {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #000000;
    border: 2px solid #000000;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    line-height: 1;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: inherit;
    box-sizing: border-box;
}

.btn-confirm:hover {
    background: #222222;
    border-color: #222222;
}

.btn-confirm svg {
    width: 18px;
    height: 18px;
}

/* Success Screen */
.success-screen {
    text-align: center;
    padding: 40px 20px;
}

.success-animation {
    margin-bottom: 24px;
}

.success-circle {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    animation: successBounce 0.6s ease;
}

.success-circle svg {
    width: 40px;
    height: 40px;
    stroke: #ffffff;
}

@keyframes successBounce {
    0% { transform: scale(0); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.success-screen h2 {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 8px;
}

.success-screen > p {
    font-size: 14px;
    color: #666666;
    margin-bottom: 24px;
}

.success-summary {
    background: #fafafa;
    border-radius: 12px;
    padding: 20px;
    text-align: left;
    margin-bottom: 24px;
}

.success-summary p {
    font-size: 14px;
    color: #333333;
    margin-bottom: 8px;
}

.success-summary p:last-child {
    margin-bottom: 0;
}

.success-summary strong {
    color: #000000;
}

.success-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.btn-whatsapp {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 24px;
    background: #25D366;
    border: none;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
}

.btn-whatsapp:hover {
    background: #1ebe5d;
}

.btn-whatsapp svg {
    width: 20px;
    height: 20px;
}

.btn-done {
    padding: 14px 32px;
    background: #000000;
    border: none;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: inherit;
}

.btn-done:hover {
    background: #222222;
}

/* Mobile adjustments for floating buttons */
@media (max-width: 768px) {
    .scroll-top {
        bottom: 20px;
        right: 20px;
        width: 44px;
        height: 44px;
    }

    .whatsapp-float {
        bottom: 80px;
        right: 20px;
        padding: 12px;
        border-radius: 50%;
    }

    .whatsapp-float svg {
        width: 22px;
        height: 22px;
    }

    .book-now-float {
        bottom: 140px;
        right: 20px;
        padding: 12px;
        border-radius: 50%;
    }

    .book-now-float svg {
        width: 20px;
        height: 20px;
    }

    /* Service Modal Mobile */
    .modal.service-modal {
        max-width: 100%;
        margin: 0;
        border-radius: 0;
        height: 100vh;
        max-height: 100vh;
    }

    .modal-layout {
        flex-direction: column;
        min-height: 100vh;
        max-height: 100vh;
    }

    .modal-sidebar {
        width: 100%;
        padding: 20px;
        flex-shrink: 0;
    }

    .sidebar-header {
        display: flex;
        align-items: center;
        gap: 16px;
        margin-bottom: 0;
    }

    .sidebar-logo {
        width: 36px;
        height: 36px;
        margin-bottom: 0;
    }

    .sidebar-header h2 {
        font-size: 18px;
        margin-bottom: 0;
    }

    .sidebar-header p,
    .booking-progress-vertical,
    .sidebar-footer {
        display: none;
    }

    .modal-content {
        flex: 1;
        overflow: hidden;
    }

    .modal-content .booking-form {
        padding: 24px 20px 20px;
    }

    .step-header h3 {
        font-size: 22px;
    }

    .service-card-inner {
        flex-wrap: wrap;
        gap: 12px;
    }

    .service-meta {
        display: none;
    }

    .datetime-layout {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .timeslots-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

    .review-cards {
        grid-template-columns: 1fr;
    }

    .form-actions {
        gap: 10px;
        padding: 16px 20px;
        margin: 24px -20px 0 -20px;
    }

    .form-actions button {
        height: 48px;
        font-size: 14px;
    }

    .success-buttons {
        flex-direction: column;
    }

    .success-buttons a,
    .success-buttons button {
        width: 100%;
        justify-content: center;
    }
}

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

    .calendar-legend {
        flex-wrap: wrap;
        gap: 10px;
    }
}
