/* MSAuto - Professional Auto Service Website */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Autocentrum Leerdam Inspired Color Palette */
:root {
    /* Primary Colors - Dark Navy/Black */
    --primary-dark: #1a1a1a;
    --primary-dark-light: #2d2d2d;
    --primary-dark-darker: #0f0f0f;
    
    /* Secondary Colors - Professional Gray */
    --secondary-gray: #6b7280;
    --secondary-gray-light: #9ca3af;
    --secondary-gray-dark: #374151;
    
    /* Accent Colors - Orange/Red theme */
    --accent-orange: #ff6b35;
    --accent-orange-light: #ff8c69;
    --accent-orange-dark: #e55a2b;
    --accent-green: #10b981;
    --accent-red: #dc2626;
    
    /* Primary Blue for consistency */
    --primary-blue: #3b82f6;
    
    /* Neutral Colors */
    --white: #ffffff;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-heading: 'Inter', sans-serif;
    
    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    
    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}

/* Base Styles */
html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--gray-800);
    background-color: var(--white);
    font-size: 16px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--gray-900);
    margin-bottom: var(--space-md);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: var(--space-md);
    color: var(--gray-600);
}

/* Navigation */
.navbar {
    background: var(--primary-dark) !important;
    box-shadow: var(--shadow-lg);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: var(--space-md) 0;
    transition: all 0.3s ease;
    min-height: 70px;
}

.navbar.scrolled {
    background: var(--primary-dark) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

/* Bootstrap navbar overrides */
.navbar-dark {
    background-color: var(--primary-dark) !important;
}

.navbar-dark .navbar-nav .nav-link {
    color: var(--white) !important;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link:focus {
    color: var(--white) !important;
}

.navbar-dark .navbar-brand {
    color: var(--white) !important;
}

.navbar-dark .navbar-brand:hover,
.navbar-dark .navbar-brand:focus {
    color: var(--white) !important;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    transition: all 0.3s ease;
}

.navbar-brand:hover {
    color: var(--white);
    opacity: 0.9;
    transform: scale(1.02);
}

.navbar-logo {
    height: 40px;
    width: auto;
    transition: all 0.3s ease;
}

.navbar-brand:hover .navbar-logo {
    transform: scale(1.05);
}

.nav-link {
    color: var(--white);
    font-weight: 500;
    padding: var(--space-sm) var(--space-md);
    text-decoration: none;
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.nav-link:hover {
    color: var(--white);
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-1px);
}

.nav-link.active {
    color: var(--accent-orange);
    background-color: rgba(255, 107, 53, 0.1);
}

.nav-link i {
    font-size: 0.9rem;
    margin-right: 0.25rem;
}

/* Mobile Navigation */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background: rgba(0, 0, 0, 0.95);
        border-radius: var(--radius-lg);
        margin-top: var(--space-md);
        padding: var(--space-lg);
        backdrop-filter: blur(10px);
    }
    
    .navbar-nav {
        gap: var(--space-sm);
    }
    
    .nav-link {
        padding: var(--space-md);
        border-radius: var(--radius-md);
        margin-bottom: var(--space-xs);
    }
    
    .navbar-brand {
        font-size: 1.3rem;
    }
    
    .navbar-logo {
        height: 32px;
    }
    
    .hero-logo-img {
        height: 80px;
    }
}

/* Desktop Navigation */
@media (min-width: 992px) {
    .navbar-nav {
        gap: var(--space-xs);
    }
    
    .nav-link {
        padding: var(--space-sm) var(--space-lg);
    }
}

/* Language Switcher in Header */
.navbar .dropdown-menu {
    background: rgba(0, 0, 0, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
}

.navbar .dropdown-item {
    color: var(--white);
    padding: var(--space-sm) var(--space-md);
    transition: all 0.3s ease;
}

.navbar .dropdown-item:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

.navbar .dropdown-item.active {
    background-color: var(--primary-dark);
    color: var(--white);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-dark-light) 100%);
    color: var(--white);
    padding: 6rem 0 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-top: 90px;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><pattern id="grid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: var(--space-lg);
    color: var(--white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: var(--space-2xl);
    color: rgba(255, 255, 255, 0.95);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: var(--space-lg);
    justify-content: center;
    flex-wrap: wrap;
}

/* About Hero Section */
.about-hero-section {
    position: relative;
    overflow: hidden;
    padding: 6rem 0 4rem;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-dark-light) 100%);
    color: var(--white);
    margin-top: 90px;
}

.about-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.9) 0%, rgba(45, 45, 45, 0.9) 100%);
    z-index: 1;
}

.about-hero-section .container {
    position: relative;
    z-index: 2;
}

.about-hero-section h1 {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

.about-hero-section .lead {
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    opacity: 0.95;
    line-height: 1.6;
}

.about-hero-section p {
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    opacity: 0.9;
    line-height: 1.6;
}

/* Services Hero Section */
.services-hero-section {
    position: relative;
    overflow: hidden;
    padding: 6rem 0 4rem;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-dark-light) 100%);
    color: var(--white);
    margin-top: 90px;
}

.services-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.9) 0%, rgba(45, 45, 45, 0.9) 100%);
    z-index: 1;
}

.services-hero-section .container {
    position: relative;
    z-index: 2;
}

.services-hero-section h1 {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

.services-hero-section .lead {
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    opacity: 0.95;
    line-height: 1.6;
}

.services-hero-section p {
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    opacity: 0.9;
    line-height: 1.6;
}

/* Contact Hero Section */
.contact-hero-section {
    position: relative;
    overflow: hidden;
    padding: 6rem 0 4rem;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-dark-light) 100%);
    color: var(--white);
    margin-top: 90px;
}

.contact-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.9) 0%, rgba(45, 45, 45, 0.9) 100%);
    z-index: 1;
}

.contact-hero-section .container {
    position: relative;
    z-index: 2;
}

.contact-hero-section h1 {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

.contact-hero-section .lead {
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    opacity: 0.95;
    line-height: 1.6;
}

.contact-hero-section p {
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    opacity: 0.9;
    line-height: 1.6;
}

/* Booking Hero Section */
.booking-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-dark-light) 100%);
    color: var(--white);
    padding: 6rem 0 4rem;
    margin-top: 90px;
}

.booking-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.9) 0%, rgba(45, 45, 45, 0.9) 100%);
    z-index: 1;
}

.booking-section .container {
    position: relative;
    z-index: 2;
}

.booking-section h1 {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

.booking-section p {
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    opacity: 0.95;
    line-height: 1.6;
}

/* Responsive Hero Sections */
@media (max-width: 768px) {
    .hero-content h1,
    .about-hero-section h1,
    .services-hero-section h1,
    .contact-hero-section h1,
    .booking-section h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p,
    .about-hero-section .lead,
    .about-hero-section p,
    .services-hero-section .lead,
    .services-hero-section p,
    .contact-hero-section .lead,
    .contact-hero-section p,
    .booking-section p {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .hero-content h1,
    .about-hero-section h1,
    .services-hero-section h1,
    .contact-hero-section h1,
    .booking-section h1 {
        font-size: 2rem;
    }
    
    .hero-content p,
    .about-hero-section .lead,
    .about-hero-section p,
    .services-hero-section .lead,
    .services-hero-section p,
    .contact-hero-section .lead,
    .contact-hero-section p,
    .booking-section p {
        font-size: 1rem;
    }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-xl);
    border-radius: var(--radius-lg);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--accent-orange);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--accent-orange-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background-color: var(--white);
    color: var(--primary-dark);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-dark);
    border: 2px solid var(--primary-blue);
}

.btn-outline:hover {
    background-color: var(--primary-dark);
    color: var(--white);
}

/* Service Cards */
.services-section {
    padding: var(--space-3xl) 0;
    background-color: var(--gray-50);
}

.service-card {
    background-color: var(--white);
    padding: var(--space-2xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid var(--gray-200);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.service-icon {
    width: 80px;
    height: 80px;
    background-color: var(--accent-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-lg);
    color: var(--white);
    font-size: 2rem;
    transition: all 0.3s ease;
}

.service-card h4 {
    color: var(--gray-900);
    margin-bottom: var(--space-md);
}

.service-card p {
    color: var(--gray-600);
    margin-bottom: 0;
}

/* About Section */
.about-section {
    padding: var(--space-3xl) 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

.about-text h2 {
    color: var(--gray-900);
    margin-bottom: var(--space-lg);
}

.about-text p {
    color: var(--gray-600);
    margin-bottom: var(--space-lg);
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background-color: var(--accent-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.feature-text h5 {
    color: var(--gray-900);
    margin-bottom: var(--space-xs);
}

.feature-text p {
    color: var(--gray-600);
    margin-bottom: 0;
    font-size: 0.9rem;
}

/* Stats Section */
.stat-card {
    background-color: var(--white);
    padding: var(--space-xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid var(--gray-200);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.stat-icon {
    width: 80px;
    height: 80px;
    background-color: var(--accent-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-lg);
    color: var(--white);
    font-size: 2rem;
    transition: all 0.3s ease;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: var(--space-sm);
}

.stat-label {
    color: var(--gray-600);
    font-weight: 500;
    margin-bottom: 0;
}

/* Contact Section */
.contact-section {
    padding: var(--space-3xl) 0;
    background-color: var(--gray-50);
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-xl);
}

.contact-card {
    background-color: var(--white);
    padding: var(--space-xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background-color: var(--accent-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-lg);
    color: var(--white);
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.contact-card h5 {
    color: var(--gray-900);
    margin-bottom: var(--space-md);
}

.contact-card p {
    color: var(--gray-600);
    margin-bottom: 0;
}

/* Footer */
.footer {
    background-color: var(--gray-900);
    color: var(--white);
    padding: var(--space-3xl) 0 var(--space-xl);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--space-2xl);
    margin-bottom: var(--space-2xl);
}

.footer-brand h5 {
    color: var(--white);
    margin-bottom: var(--space-md);
    font-size: 1.25rem;
}

.footer-logo {
    height: 32px;
    width: auto;
    filter: brightness(0) invert(1); /* Logo'yu beyaz yapar */
}

.footer-brand p {
    color: var(--gray-400);
    margin-bottom: var(--space-lg);
}

.footer-links h6 {
    color: var(--white);
    margin-bottom: var(--space-md);
    font-size: 1rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: var(--space-sm);
}

.footer-links a {
    color: var(--gray-400);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid var(--gray-700);
    padding-top: var(--space-lg);
    text-align: center;
}

.footer-bottom p {
    color: var(--gray-400);
    margin-bottom: 0;
}

/* Multi-Step Booking Form */
.booking-section {
    padding: var(--space-3xl) 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-dark-light) 100%);
    color: var(--white);
}

.booking-container {
    max-width: 900px;
    margin: 0 auto;
    background-color: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
}

/* Progress Steps */
.booking-progress {
    background-color: var(--gray-50);
    padding: var(--space-xl);
    border-bottom: 1px solid var(--gray-200);
}

.progress-steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    flex-wrap: wrap;
    gap: var(--space-sm);
}

.progress-steps::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 40px;
    right: 40px;
    height: 2px;
    background-color: var(--gray-300);
    z-index: 1;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
    background-color: var(--white);
    padding: var(--space-sm);
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
    flex: 1;
    min-width: 0;
}

.step.active .step-number {
    background-color: var(--primary-dark);
    color: var(--white);
}

.step.completed .step-number {
    background-color: var(--accent-green);
    color: var(--white);
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--gray-300);
    color: var(--gray-600);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    margin-bottom: var(--space-sm);
    transition: all 0.3s ease;
}

.step-title {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-600);
    text-align: center;
    max-width: 100px;
    line-height: 1.2;
    word-wrap: break-word;
}

.step.active .step-title {
    color: var(--primary-dark);
    font-weight: 600;
}

/* Step Content */
.booking-content {
    padding: var(--space-2xl);
    min-height: 500px;
}

.step-content {
    display: none;
    animation: fadeIn 0.3s ease;
}

.step-content.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.step-header {
    text-align: center;
    margin-bottom: var(--space-2xl);
}

.step-header h3 {
    color: var(--gray-900);
    margin-bottom: var(--space-sm);
}

.step-header p {
    color: var(--gray-600);
    margin-bottom: 0;
}

/* Service Options */
.service-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
}

.service-option {
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.service-option:hover {
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.service-option.selected {
    border-color: var(--accent-green);
    background-color: var(--accent-green);
    color: var(--white);
    position: relative;
}

.service-option.selected::after {
    content: '✓';
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--white);
}

.service-option .service-icon {
    width: 50px;
    height: 50px;
    background-color: var(--accent-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.25rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.service-option.selected .service-icon {
    background-color: var(--white);
    color: var(--accent-orange);
}

.service-info h4 {
    margin-bottom: var(--space-xs);
    font-size: 1.125rem;
}

.service-info p {
    margin-bottom: var(--space-sm);
    font-size: 0.875rem;
    opacity: 0.8;
}

.service-option.selected .service-info p {
    color: rgba(255, 255, 255, 0.9);
}


/* Summary Card */
.summary-card {
    background-color: var(--gray-50);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    margin-bottom: var(--space-xl);
}

.summary-section {
    margin-bottom: var(--space-lg);
}

.summary-section:last-child {
    margin-bottom: 0;
}

.summary-section h4 {
    color: var(--gray-900);
    margin-bottom: var(--space-md);
    font-size: 1.125rem;
    border-bottom: 1px solid var(--gray-200);
    padding-bottom: var(--space-sm);
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-sm);
    padding: var(--space-sm) 0;
}

.summary-item:last-child {
    margin-bottom: 0;
}

.summary-item .label {
    font-weight: 500;
    color: var(--gray-700);
}

.summary-item .value {
    color: var(--gray-900);
    font-weight: 600;
}

/* Step Navigation */
.step-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--space-xl);
    border-top: 1px solid var(--gray-200);
}

.step-navigation .btn {
    min-width: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
}

/* Form Styles */
.form-group {
    margin-bottom: var(--space-lg);
}

.form-group label {
    display: block;
    margin-bottom: var(--space-sm);
    font-weight: 600;
    color: var(--gray-700);
}

.form-control {
    width: 100%;
    padding: var(--space-md);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-md);
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-dark);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

/* Phone Input Group Styles */
.phone-input-group {
    display: flex;
    gap: var(--space-sm);
    align-items: stretch;
}

.country-select {
    flex: 0 0 200px;
    min-width: 180px;
    font-size: 0.9rem;
}

.phone-input {
    flex: 1;
    min-width: 0;
}

/* Responsive phone input */
@media (max-width: 768px) {
    .phone-input-group {
        flex-direction: column;
        gap: var(--space-sm);
    }
    
    .country-select {
        flex: none;
        width: 100%;
    }
    
    .phone-input {
        flex: none;
        width: 100%;
    }
}

/* Available Dates Styles */
.available-dates-section {
    margin-bottom: var(--space-lg);
    padding: var(--space-lg);
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 2px solid var(--gray-200);
}

.available-dates-section h4 {
    margin-bottom: var(--space-md);
    color: var(--primary-dark);
    font-weight: 600;
}

.available-dates-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
}

.available-date-item {
    padding: var(--space-sm);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-md);
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: var(--white);
}

.available-date-item:hover {
    border-color: var(--primary-dark);
    background: var(--gray-50);
    transform: translateY(-2px);
}

.available-date-item.selected {
    border-color: var(--accent-green);
    background: var(--accent-green);
    color: var(--white);
}

.available-date-item.unavailable {
    opacity: 0.5;
    cursor: not-allowed;
    background: var(--gray-100);
}

.available-date-item.unavailable:hover {
    transform: none;
    border-color: var(--gray-200);
    background: var(--gray-100);
}

.available-date-item.booked {
    opacity: 0.6;
    cursor: not-allowed;
    background: var(--accent-red);
    color: var(--white);
    border-color: var(--accent-red);
}

.available-date-item.booked:hover {
    transform: none;
    border-color: var(--accent-red);
    background: var(--accent-red);
}

.available-date-item.empty {
    visibility: hidden;
    pointer-events: none;
}

/* Hide preferred date input since users select from grid */
.form-group {
    position: relative;
}

.form-group:has(#preferredDate) {
    display: none;
}

/* Fallback for browsers that don't support :has() */
#preferredDate {
    display: none !important;
}

#preferredDate + label,
label[for="preferredDate"] {
    display: none !important;
}

.available-date-item.booked .date-month,
.available-date-item.booked .date-day-name,
.available-date-item.booked .date-slots {
    color: var(--white);
}

.date-day {
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: var(--space-xs);
}

.date-month {
    font-size: 0.9rem;
    color: var(--gray-600);
}

.available-date-item.selected .date-month {
    color: var(--white);
}

.date-slots {
    font-size: 0.8rem;
    margin-top: var(--space-xs);
    color: var(--gray-500);
}

.available-date-item.selected .date-slots {
    color: var(--white);
}

/* Responsive available dates */
@media (max-width: 768px) {
    .available-dates-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: var(--space-xs);
    }
    
    .available-date-item {
        padding: var(--space-xs);
        min-height: 60px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    
    .date-day {
        font-size: 0.9rem;
    }
    
    .date-month {
        font-size: 0.7rem;
    }
    
    .date-slots {
        font-size: 0.7rem;
    }
}

/* Mobile step list improvements */
@media (max-width: 768px) {
    .booking-progress {
        padding: var(--space-lg);
    }
    
    .progress-steps {
        flex-direction: column;
        gap: var(--space-md);
    }
    
    .progress-steps::before {
        display: none;
    }
    
    .step {
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;
        padding: var(--space-md);
        background-color: var(--gray-50);
        border: 1px solid var(--gray-200);
        border-radius: var(--radius-md);
        width: 100%;
    }
    
    .step-number {
        margin-bottom: 0;
        margin-right: var(--space-md);
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }
    
    .step-title {
        text-align: left;
        max-width: none;
        font-size: 0.9rem;
    }
    
    .step.active {
        background-color: var(--primary-dark);
        color: var(--white);
        border-color: var(--primary-dark);
    }
    
    .step.active .step-title {
        color: var(--white);
    }
    
    .step.completed {
        background-color: var(--accent-green);
        color: var(--white);
        border-color: var(--accent-green);
    }
    
    .step.completed .step-title {
        color: var(--white);
    }
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
}

/* Mobile Responsive Design */
@media (max-width: 768px) {
    /* Navigation */
    .navbar {
        padding: var(--space-sm) 0;
    }
    
    .navbar-brand {
        font-size: 1.25rem;
    }
    
    /* Hero Section */
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: var(--space-md);
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
    
    /* Progress Steps */
    .progress-steps {
        flex-direction: column;
        gap: var(--space-md);
    }
    
    .progress-steps::before {
        display: none;
    }
    
    .step {
        flex-direction: row;
        width: 100%;
        text-align: left;
        padding: var(--space-md);
    }
    
    .step-number {
        margin-bottom: 0;
        margin-right: var(--space-md);
    }
    
    .step-title {
        text-align: left;
        max-width: none;
    }
    
    /* Booking Form */
    .booking-content {
        padding: var(--space-lg);
    }
    
    .step-header h3 {
        font-size: 1.5rem;
    }
    
    /* Service Options */
    .service-options {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }
    
    .service-option {
        flex-direction: column;
        text-align: center;
        padding: var(--space-lg);
    }
    
    .service-option .service-icon {
        margin-bottom: var(--space-md);
    }
    
    /* Form Layout */
    .form-row {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }
    
    /* Step Navigation */
    .step-navigation {
        flex-direction: column;
        gap: var(--space-md);
    }
    
    .step-navigation .btn {
        width: 100%;
    }
    
    /* Summary Card */
    .summary-item {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--space-xs);
    }
    
    /* About Section */
    .about-content {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .feature-item {
        flex-direction: column;
        text-align: center;
    }
    
    .feature-icon {
        margin-bottom: var(--space-md);
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }
    
    /* Contact Cards */
    .contact-cards {
        grid-template-columns: 1fr;
    }
    
    /* Service Cards */
    .service-card {
        padding: var(--space-lg);
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    /* Extra Small Mobile */
    .hero-content h1 {
        font-size: 1.75rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .booking-container {
        margin: var(--space-md);
        border-radius: var(--radius-lg);
    }
    
    .booking-progress {
        padding: var(--space-lg);
    }
    
    .booking-content {
        padding: var(--space-md);
    }
    
    .step-header h3 {
        font-size: 1.25rem;
    }
    
    .service-option {
        padding: var(--space-md);
    }
    
    .summary-card {
        padding: var(--space-lg);
    }
    
    .form-control {
        padding: var(--space-sm) var(--space-md);
    }
    
    .btn {
        padding: var(--space-sm) var(--space-lg);
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 1.75rem;
    }
    
    .service-card {
        padding: var(--space-lg);
    }
    
    .booking-form {
        padding: var(--space-lg);
    }
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: var(--space-xs); }
.mb-2 { margin-bottom: var(--space-sm); }
.mb-3 { margin-bottom: var(--space-md); }
.mb-4 { margin-bottom: var(--space-lg); }
.mb-5 { margin-bottom: var(--space-xl); }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: var(--space-xs); }
.mt-2 { margin-top: var(--space-sm); }
.mt-3 { margin-top: var(--space-md); }
.mt-4 { margin-top: var(--space-lg); }
.mt-5 { margin-top: var(--space-xl); }

.p-0 { padding: 0; }
.p-1 { padding: var(--space-xs); }
.p-2 { padding: var(--space-sm); }
.p-3 { padding: var(--space-md); }
.p-4 { padding: var(--space-lg); }
.p-5 { padding: var(--space-xl); }

.d-flex { display: flex; }
.d-grid { display: grid; }

/* MS Logo Background */
.ms-logo-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 15rem;
    color: rgba(255, 255, 255, 0.05);
    z-index: 1;
    pointer-events: none;
}

/* Hero Logo Styles */
.hero-logo {
    text-align: center;
    margin-bottom: 2rem;
}

.hero-logo-img {
    height: 120px;
    width: auto;
    filter: brightness(0) invert(1); /* Logo'yu beyaz yapar */
    animation: pulse 2s infinite;
    transition: all 0.3s ease;
}

.hero-logo-img:hover {
    transform: scale(1.05);
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* Hero Content Positioning */
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}
.d-block { display: block; }
.d-none { display: none; }

.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.align-center { align-items: center; }

.w-100 { width: 100%; }
.h-100 { height: 100%; }