:root {
    /* Car Detailing Color Palette - 5 Primary Colors */
    --primary-navy: #1a2332;
    --primary-blue: #2c5aa0;
    --primary-silver: #8c9ba8;
    --primary-orange: #ff6b35;
    --primary-white: #ffffff;
    
    /* Light and Dark Shades */
    --navy-light: #2a3542;
    --navy-dark: #0a1322;
    --blue-light: #4c7ac0;
    --blue-dark: #1c4a90;
    --silver-light: #acbbc8;
    --silver-dark: #6c8b98;
    --orange-light: #ff8b65;
    --orange-dark: #ef4b15;
    
    /* Conservative Font Sizes */
    --font-size-small: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 1.75rem;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--primary-navy) 0%, var(--primary-blue) 100%);
    --gradient-secondary: linear-gradient(135deg, var(--primary-silver) 0%, var(--primary-white) 100%);
    --gradient-accent: linear-gradient(135deg, var(--primary-orange) 0%, var(--orange-light) 100%);
}

/* Global Styles */
* {
    box-sizing: border-box;
}

body {
  overflow-x: hidden;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: var(--font-size-base);
    line-height: 1.6;
    color: var(--primary-navy);
}

/* Typography - Conservative Sizes */
h1, .display-1, .display-2, .display-3, .display-4 {
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 1rem;
}

.display-4 {
    font-size: var(--font-size-3xl) !important;
}

h2 {
    font-size: var(--font-size-2xl);
    font-weight: 600;
    margin-bottom: 0.75rem;
}

h3, h4, h5 {
    font-size: var(--font-size-xl);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

h6 {
    font-size: var(--font-size-lg);
    font-weight: 500;
}

.lead {
    font-size: var(--font-size-lg);
    font-weight: 400;
}

/* Conservative navbar-brand size */
.navbar-brand {
    font-size: var(--font-size-xl) !important;
    font-weight: 600;
    color: var(--primary-white) !important;
}

/* Header */
.navbar {
    background: var(--gradient-primary) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(26, 35, 50, 0.1);
}

.navbar-nav .nav-link {
    color: var(--primary-white) !important;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-orange) !important;
    transform: translateY(-2px);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background: var(--primary-orange);
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover::after {
    width: 100%;
    left: 0;
}

/* Hero Section */
.hero-section {
    background: var(--gradient-primary);
    color: var(--primary-white);
    position: relative;
    overflow: hidden;
    padding-top: 80px; /* Account for fixed header */
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../FLA_images/hero-pattern.webp') center/cover;
    opacity: 0.1;
    z-index: 0;
}

.hero-section .container {
    position: relative;
    z-index: 1;
}

.hero-section h1 {
    color: var(--primary-white);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

/* Cards */
.card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(26, 35, 50, 0.1);
    transition: all 0.3s ease;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(26, 35, 50, 0.15);
}

.card-img-top {
    border-radius: 15px 15px 0 0;
    transition: transform 0.3s ease;
}

.card:hover .card-img-top {
    transform: scale(1.05);
}

/* Buttons */
.btn-primary {
    background: var(--gradient-accent);
    border: none;
    border-radius: 50px;
    padding: 12px 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: var(--gradient-accent);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.3);
}

.btn-lg {
    padding: 15px 40px;
    font-size: var(--font-size-lg);
}

/* Services Section */
.services-section .card {
    height: 100%;
}

.services-section .card-title {
    color: var(--primary-navy);
    font-weight: 600;
}

.services-section .card-text {
    color: var(--silver-dark);
}

/* Process Steps */
.process-step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-accent);
    color: var(--primary-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-size-xl);
    font-weight: 700;
    margin: 0 auto 1rem;
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

/* Team Section */
.team-section img {
    border: 4px solid var(--primary-white);
    box-shadow: 0 10px 30px rgba(26, 35, 50, 0.2);
    transition: all 0.3s ease;
}

.team-section img:hover {
    transform: scale(1.05);
    border-color: var(--primary-orange);
}

/* Reviews Slider */
.reviews-slider .swiper-slide {
    height: auto;
}

.reviews-slider .card {
    background: var(--gradient-secondary);
    border: 1px solid var(--silver-light);
}

.swiper-pagination-bullet {
    background: var(--primary-orange);
}

.swiper-pagination-bullet-active {
    background: var(--orange-dark);
}

/* FAQ Section */
.accordion-button {
    background: var(--primary-white);
    color: var(--primary-navy);
    border: none;
    font-weight: 600;
}

.accordion-button:not(.collapsed) {
    background: var(--gradient-primary);
    color: var(--primary-white);
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(44, 90, 160, 0.25);
}

.accordion-item {
    border: 1px solid var(--silver-light);
    border-radius: 10px !important;
    margin-bottom: 10px;
}

/* Gallery */
.gallery-section img {
    border-radius: 10px;
    transition: all 0.3s ease;
}

.gallery-section img:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(26, 35, 50, 0.2);
}

/* Contact Form */
.form-control {
    border: 2px solid var(--silver-light);
    border-radius: 10px;
    padding: 12px 15px;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 0.2rem rgba(44, 90, 160, 0.25);
}

/* Footer */
footer {
    background: var(--gradient-primary) !important;
    color: var(--primary-white);
}

footer h5 {
    color: var(--primary-white);
    font-weight: 600;
    margin-bottom: 1rem;
}

footer a {
    color: var(--silver-light) !important;
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: var(--primary-orange) !important;
}

/* Breadcrumbs */
.breadcrumb-image {
    filter: brightness(0.8);
    transition: filter 0.3s ease;
}

.breadcrumb-image:hover {
    filter: brightness(1);
}

/* Price Plans */
.border-primary {
    border: 3px solid var(--primary-orange) !important;
    position: relative;
}

.border-primary::before {
    content: 'POPULAR';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-accent);
    color: var(--primary-white);
    padding: 5px 20px;
    border-radius: 20px;
    font-size: var(--font-size-small);
    font-weight: 700;
    text-align: center;
}

/* Text Colors */
.text-primary {
    color: var(--primary-blue) !important;
}

/* Background Classes */
.bg-light {
    background: var(--gradient-secondary) !important;
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Custom Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Utility Classes */
.text-shadow {
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.gradient-text {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
} 