/* Car Detailing Template - Main Styles */

:root {
    /* Primary Color Palette - 5 colors + shades */
    --primary-color: #1a365d;
    --secondary-color: #2d89c7;
    --accent-color: #ffa500;
    --success-color: #28a745;
    --danger-color: #dc3545;
    
    /* Light shades */
    --primary-light: #2c5282;
    --secondary-light: #4299e1;
    --accent-light: #fbb040;
    --success-light: #68d391;
    --danger-light: #fc8181;
    
    /* Dark shades */
    --primary-dark: #1a202c;
    --secondary-dark: #2a69ac;
    --accent-dark: #e67e22;
    --success-dark: #1e7e34;
    --danger-dark: #c82333;
    
    /* Neutral colors */
    --gray-100: #f7fafc;
    --gray-200: #edf2f7;
    --gray-300: #e2e8f0;
    --gray-400: #cbd5e0;
    --gray-500: #a0aec0;
    --gray-600: #718096;
    --gray-700: #4a5568;
    --gray-800: #2d3748;
    --gray-900: #1a202c;
    
    /* Typography */
    --font-size-base: 1rem;
    --font-size-sm: 0.875rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 1.875rem;
    --font-size-4xl: 2.25rem;
    
    /* Spacing */
    --section-padding: 80px 0;
    --border-radius: 8px;
    --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

/* Respect prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Base Styles */
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(--gray-800);
    padding-top: 80px;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

/* Conservative font sizes */
h1 { font-size: var(--font-size-3xl); }
h2 { font-size: var(--font-size-2xl); }
h3 { font-size: var(--font-size-xl); }
h4 { font-size: var(--font-size-lg); }
h5 { font-size: var(--font-size-base); }
h6 { font-size: var(--font-size-sm); }

p {
    margin-bottom: 1rem;
    color: var(--gray-600);
}

/* Header Styles */
.header {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    box-shadow: var(--box-shadow);
    z-index: 1000;
}

.navbar-brand {
    font-size: var(--font-size-xl) !important; /* Conservative size */
    font-weight: 700;
    color: white !important;
}

.navbar-nav .nav-link {
  font-size: 10px !important;
    font-size: var(--font-size-base);
    font-weight: 500;
    color: white !important;
    margin: 0 10px;
    transition: var(--transition);
}

.navbar-nav .nav-link:hover {
    color: var(--accent-color) !important;
}

.navbar-toggler {
    border: none;
    color: white;
}

/* Section Spacing */
.section-padding {
    padding: var(--section-padding);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../BUD_images/hero-bg.webp') center/cover;
    opacity: 0.1;
    z-index: 0;
}

.hero-section .container {
    position: relative;
    z-index: 1;
}

.hero-section h1 {
    font-size: var(--font-size-4xl);
    font-weight: 700;
    margin-bottom: 1rem;
}

.hero-section h2 {
    font-size: var(--font-size-2xl);
    font-weight: 400;
    color: var(--accent-light);
    margin-bottom: 1.5rem;
}

/* Feature Cards */
.feature-card {
    text-align: center;
    padding: 2rem;
    border-radius: var(--border-radius);
    background: white;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.feature-card i {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.feature-card h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Service Cards */
.service-card {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    height: 100%;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-card h4 {
    padding: 1rem 1rem 0.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.service-card p {
    padding: 0 1rem;
    color: var(--gray-600);
    font-size: var(--font-size-sm);
}

.service-card ul {
    padding: 0 1rem;
    list-style: none;
    margin-bottom: 1rem;
}

.service-card ul li {
    padding: 0.25rem 0;
    color: var(--gray-600);
    font-size: var(--font-size-sm);
}

.service-card ul li::before {
    content: '✓';
    color: var(--success-color);
    font-weight: bold;
    margin-right: 0.5rem;
}

.service-card .price {
    background: var(--secondary-color);
    color: white;
    padding: 1rem;
    text-align: center;
    font-size: var(--font-size-xl);
    font-weight: 700;
}

/* Pricing Cards */
.pricing-card {
    background: white;
    border: 2px solid var(--gray-200);
    border-radius: var(--border-radius);
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
    height: 100%;
}

.pricing-card.featured {
    border-color: var(--secondary-color);
    transform: scale(1.05);
}

.pricing-card:hover {
    border-color: var(--secondary-color);
    box-shadow: var(--box-shadow);
}

.pricing-card h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.pricing-card ul {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.pricing-card ul li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--gray-200);
}

.pricing-card .price {
    font-size: var(--font-size-2xl);
    font-weight: 700;
    color: var(--secondary-color);
}

/* Team Members */
.team-member {
    text-align: center;
    margin-bottom: 2rem;
}

.team-member img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
    border: 4px solid var(--gray-200);
}

.team-member h5 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.team-member p {
    color: var(--secondary-color);
    font-size: var(--font-size-sm);
}

/* Reviews Slider */
.review-card {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
    margin: 1rem;
}

.review-card p {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: var(--gray-700);
}

.review-card h5 {
    color: var(--primary-color);
    font-weight: 600;
}

/* Timeline */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--secondary-color);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin: 2rem 0;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-right: 55%;
    text-align: right;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: 55%;
    text-align: left;
}

.timeline-content {
    background: white;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    position: relative;
}

.timeline-content h5 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

/* Process Steps */
.process-step {
    text-align: center;
    padding: 1.5rem;
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--secondary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-size-xl);
    font-weight: 700;
    margin: 0 auto 1rem;
}

.process-step h5 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Contact Form */
.contact-form {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.contact-form .form-control {
    border: 2px solid var(--gray-200);
    border-radius: var(--border-radius);
    padding: 0.75rem 1rem;
    font-size: var(--font-size-base);
    transition: var(--transition);
}

.contact-form .form-control:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 0.2rem rgba(45, 137, 199, 0.25);
}

.contact-form .btn-primary {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    padding: 0.75rem 2rem;
    font-weight: 600;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.contact-form .btn-primary:hover {
    background: var(--secondary-dark);
    border-color: var(--secondary-dark);
}

.contact-info {
    padding: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-right: 1rem;
    width: 30px;
}

/* Gallery */
.gallery-img {
    border-radius: var(--border-radius);
    transition: var(--transition);
    height: 250px;
    object-fit: cover;
    width: 100%;
}

.gallery-img:hover {
    transform: scale(1.05);
}

/* Blog Cards */
.blog-card {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-card h4 {
    padding: 1rem 1rem 0.5rem;
    color: var(--primary-color);
}

.blog-card p {
    padding: 0 1rem;
    color: var(--gray-600);
}

.blog-card a {
    display: inline-block;
    margin: 0 1rem 1rem;
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
}

.blog-card a:hover {
    color: var(--secondary-dark);
}

/* FAQ */
.accordion-button {
    background: var(--gray-100);
    color: var(--primary-color);
    font-weight: 600;
    border: none;
    box-shadow: none;
}

.accordion-button:not(.collapsed) {
    background: var(--secondary-color);
    color: white;
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(45, 137, 199, 0.25);
}

.accordion-body {
  overflow-x: hidden;
    background: white;
    color: var(--gray-600);
}

/* Footer */
.footer {
    background: var(--gray-900);
    color: var(--gray-300);
    padding: 3rem 0 1rem;
}

.footer h5, .footer h6 {
    color: white;
    margin-bottom: 1rem;
}

.footer ul li {
    margin-bottom: 0.5rem;
}

.footer ul li a {
    color: var(--gray-300);
    text-decoration: none;
    transition: var(--transition);
}

.footer ul li a:hover {
    color: var(--accent-color);
}

.footer #site-copyright {
    color: var(--gray-500);
    font-size: var(--font-size-sm);
}

/* Breadcrumbs */
.breadcrumbs-section {
    padding: 2rem 0;
    background: var(--gray-100);
    margin-top: 80px;
}

.breadcrumb-img {
    max-width: 40px;
    height: auto;
}

/* Utilities */
.bg-light {
    background-color: var(--gray-100) !important;
}

.section-spacer {
    height: 80px;
}

/* Swiper Overrides */
.swiper-pagination-bullet {
    background: var(--secondary-color);
}

.swiper-pagination-bullet-active {
    background: var(--primary-color);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: var(--font-size-3xl);
    }
    
    .hero-section h2 {
        font-size: var(--font-size-xl);
    }
    
    .timeline::before {
        left: 20px;
    }
    
    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        margin-left: 50px;
        margin-right: 0;
        text-align: left;
    }
    
    .pricing-card.featured {
        transform: none;
    }
} 