/* ================================
   SameDayDetailers - Main Stylesheet
   Color Palette: Black, White, Blue
   ================================ */

:root {
    --primary-blue: #2563EB;
    --dark-blue: #1E40AF;
    --black: #000000;
    --white: #FFFFFF;
    --gray-50: #F9FAFB;
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    --gray-600: #4B5563;
    --gray-700: #374151;
    --gray-900: #111827;
    --success: #10B981;
}

/* ================================
   Reset & Base Styles
   ================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--gray-900);
    background: var(--white);
}

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

/* ================================
   Navigation
   ================================ */

.navbar {
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--black);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--gray-700);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: var(--primary-blue);
}

/* ================================
   Buttons
   ================================ */

.btn-primary,
.btn-primary-large {
    background: var(--primary-blue);
    color: var(--white);
    padding: 0.875rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary-large {
    padding: 1.125rem 2.5rem;
    font-size: 1.125rem;
}

.btn-primary:hover,
.btn-primary-large:hover {
    background: var(--dark-blue);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.btn-secondary-small {
    background: var(--gray-100);
    color: var(--gray-900);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.875rem;
    transition: all 0.3s;
}

.btn-secondary-small:hover {
    background: var(--gray-200);
}

/* ================================
   Hero Section
   ================================ */

.hero {
    background: linear-gradient(135deg, var(--gray-900) 0%, var(--gray-700) 100%);
    color: var(--white);
    padding: 6rem 0;
    text-align: center;
}

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

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: var(--gray-200);
    line-height: 1.8;
}

.trust-badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 3rem;
}

.badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
}

.check {
    font-size: 1rem;
}

/* ================================
   Section Styles
   ================================ */

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--black);
}

.section-subtitle {
    text-align: center;
    font-size: 1.125rem;
    color: var(--gray-600);
    margin-bottom: 3rem;
}

/* ================================
   Packages Section
   ================================ */

.packages {
    padding: 5rem 0;
    background: var(--gray-50);
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.package-card {
    background: var(--white);
    border-radius: 12px;
    padding: 2rem;
    border: 2px solid var(--gray-200);
    transition: all 0.3s;
    position: relative;
}

.package-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-blue);
}

.package-card.featured {
    border-color: var(--primary-blue);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.15);
}

.badge-popular {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--primary-blue);
    color: var(--white);
    padding: 0.25rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.package-header h3 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
    color: var(--black);
}

.package-desc {
    color: var(--gray-600);
    margin-bottom: 1.5rem;
}

.package-price {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--gray-200);
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--black);
}

.duration {
    display: block;
    color: var(--gray-600);
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.package-features {
    list-style: none;
    margin-bottom: 2rem;
}

.package-features li {
    padding: 0.5rem 0;
    color: var(--gray-700);
    border-bottom: 1px solid var(--gray-100);
}

.package-features li:last-child {
    border-bottom: none;
}

.package-card .btn-primary {
    width: 100%;
    text-align: center;
}

/* Add-ons */
.addons {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid var(--gray-200);
}

.addons h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.addon-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.addon-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: var(--gray-50);
    border-radius: 8px;
}

.addon-name {
    font-weight: 500;
}

.addon-price {
    color: var(--primary-blue);
    font-weight: 600;
}

/* ================================
   How It Works Section
   ================================ */

.how-it-works {
    padding: 5rem 0;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.step {
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-blue);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.step h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--black);
}

.step p {
    color: var(--gray-600);
    line-height: 1.8;
}

.how-it-works-note {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    padding: 1.5rem;
    background: var(--gray-50);
    border-radius: 8px;
    color: var(--gray-700);
    font-style: italic;
}

/* ================================
   About Section
   ================================ */

.about {
    padding: 5rem 0;
    background: var(--gray-50);
}

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

.about-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--gray-700);
    margin-bottom: 1.5rem;
}

.about-tagline {
    font-size: 1.25rem;
    color: var(--black);
    margin-top: 2rem;
}

/* ================================
   CTA Section
   ================================ */

.cta {
    padding: 5rem 0;
    background: var(--primary-blue);
    color: var(--white);
    text-align: center;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.cta .btn-primary-large {
    background: var(--white);
    color: var(--primary-blue);
}

.cta .btn-primary-large:hover {
    background: var(--gray-100);
    transform: translateY(-2px);
}

/* ================================
   Footer
   ================================ */

.footer {
    background: var(--gray-900);
    color: var(--gray-200);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    color: var(--white);
    margin-bottom: 1rem;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--gray-200);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--primary-blue);
}

.footer-legal {
    border-top: 1px solid var(--gray-700);
    padding-top: 2rem;
    margin-top: 2rem;
    font-size: 0.875rem;
    color: var(--gray-600);
    line-height: 1.8;
}

.copyright {
    text-align: center;
    margin-top: 1rem;
}

/* ================================
   Responsive Design
   ================================ */

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .nav-menu {
        flex-direction: column;
        gap: 1rem;
    }

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

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .trust-badges {
        flex-direction: column;
        align-items: center;
    }
}
