/* 
 * PACKING SERVICES PAGE - LAKE FOREST STYLE
 * Matches styling from location pages
 */

/* ==================== ROOT VARIABLES ==================== */
:root {
    /* Colors */
    --primary: #667eea;
    --primary-dark: #5568d3;
    --primary-light: #9f7aea;
    --orange: #FF8A50;
    --orange-dark: #e67640;
    --dark: #1a1a1a;
    --gray: #666666;
    --light-gray: #f5f5f5;
    --white: #ffffff;
    --border: #e0e0e0;
    
    /* Spacing */
    --container-width: 1200px;
    --section-padding: 80px;
    --gap: 24px;
    
    /* Effects */
    --shadow: 0 2px 8px rgba(0,0,0,0.1);
    --shadow-lg: 0 4px 20px rgba(0,0,0,0.15);
    --shadow-xl: 0 8px 30px rgba(0,0,0,0.2);
    --transition: all 0.3s ease;
    --radius: 12px;
    --radius-lg: 16px;
}

/* ==================== RESET & BASE ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

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

/* ==================== TYPOGRAPHY ==================== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 800;
    line-height: 1.2;
    color: var(--dark);
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--gray);
}

/* ==================== BREADCRUMB ==================== */
.breadcrumb {
    padding: 20px 0;
    background: var(--white);
}

.breadcrumb ol {
    list-style: none;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    font-size: 0.9rem;
}

.breadcrumb li:not(:last-child)::after {
    content: "›";
    margin-left: 8px;
    color: var(--gray);
}

.breadcrumb a {
    color: var(--gray);
    text-decoration: none;
    transition: var(--transition);
}

.breadcrumb a:hover {
    color: var(--primary);
}

.breadcrumb li:last-child {
    color: var(--dark);
    font-weight: 600;
}

/* ==================== HERO SECTION ==================== */
.hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--white);
    padding: 80px 0;
}

.hero-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

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

.hero-text h1 {
    color: var(--white);
    margin-bottom: 24px;
}

.highlight {
    color: var(--orange);
    position: relative;
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.8;
    margin-bottom: 32px;
    opacity: 0.95;
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 32px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
}

.feature-icon {
    color: var(--orange);
    font-weight: 700;
    font-size: 1.25rem;
}

.hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.cta-primary,
.cta-secondary {
    padding: 16px 32px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 8px;
    text-decoration: none;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    border: 2px solid transparent;
}

.cta-primary {
    background: var(--orange);
    color: var(--white);
}

.cta-primary:hover {
    background: var(--orange-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.cta-secondary {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.cta-secondary:hover {
    background: var(--white);
    color: var(--primary);
}

.hero-image {
    position: relative;
}

.hero-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
}

/* ==================== SERVICE OVERVIEW ==================== */
.service-overview {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.overview-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 40px;
}

.overview-text h3 {
    font-size: 2rem;
    margin-bottom: 24px;
    color: var(--primary);
}

.overview-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--gray);
}

.overview-benefits {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 32px;
}

.benefit-item {
    background: var(--light-gray);
    padding: 24px;
    border-radius: var(--radius);
    transition: var(--transition);
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.benefit-item h4 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: var(--primary);
}

.benefit-item p {
    font-size: 1rem;
    color: var(--gray);
}

.overview-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

/* ==================== PACKING OPTIONS ==================== */
.packing-options {
    padding: var(--section-padding) 0;
    background: var(--light-gray);
}

.options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.option-card {
    background: var(--white);
    padding: 40px 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    text-align: center;
    position: relative;
    transition: var(--transition);
}

.option-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.option-card.featured {
    border: 3px solid var(--primary);
}

.option-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: var(--white);
    padding: 8px 24px;
    border-radius: 24px;
    font-weight: 700;
    font-size: 0.9rem;
}

.option-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.option-card h3 {
    font-size: 1.75rem;
    margin-bottom: 12px;
}

.option-price {
    font-size: 1.1rem;
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 24px;
}

.option-features {
    list-style: none;
    text-align: left;
    margin: 24px 0;
}

.option-features li {
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.option-features li::before {
    content: "✓";
    color: var(--orange);
    font-weight: 700;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.option-description {
    font-size: 0.95rem;
    color: var(--gray);
    line-height: 1.6;
}

/* ==================== WHAT WE PACK ==================== */
.what-we-pack {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.pack-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.pack-category {
    background: var(--light-gray);
    padding: 32px;
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.pack-category:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.category-icon {
    font-size: 3rem;
    margin-bottom: 16px;
}

.pack-category h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--primary);
}

.category-items {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.category-items span {
    background: var(--white);
    color: var(--gray);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    transition: var(--transition);
}

.category-items span:hover {
    background: var(--primary);
    color: var(--white);
}

/* ==================== PACKING PROCESS ==================== */
.packing-process {
    padding: var(--section-padding) 0;
    background: var(--light-gray);
}

.process-steps {
    display: grid;
    gap: 32px;
}

.process-step {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 24px;
    align-items: flex-start;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    font-weight: 800;
    flex-shrink: 0;
    box-shadow: var(--shadow-lg);
}

.step-content h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: var(--primary);
}

.step-content p {
    font-size: 1rem;
    color: var(--gray);
    line-height: 1.8;
}

/* ==================== WHY CHOOSE US ==================== */
.why-choose {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.reason-card {
    background: var(--light-gray);
    padding: 32px;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition);
}

.reason-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    background: var(--white);
}

.reason-icon {
    font-size: 3rem;
    margin-bottom: 16px;
}

.reason-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: var(--primary);
}

.reason-card p {
    font-size: 0.95rem;
    color: var(--gray);
    line-height: 1.6;
}

/* ==================== REVIEWS ==================== */
.reviews {
    padding: var(--section-padding) 0;
    background: var(--light-gray);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-bottom: 40px;
}

.review-card {
    background: var(--white);
    padding: 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.review-stars {
    color: var(--orange);
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.review-text {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: 16px;
    font-style: italic;
}

.review-author {
    font-weight: 700;
    color: var(--primary);
    font-size: 0.95rem;
}

.review-summary {
    text-align: center;
    font-size: 1.1rem;
    color: var(--gray);
    padding: 24px;
    background: var(--white);
    border-radius: var(--radius);
}

.review-summary strong {
    color: var(--primary);
}

/* ==================== FAQ ==================== */
.faq {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 16px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: var(--shadow);
}

.faq-question {
    font-size: 1.1rem;
    padding: 24px;
    cursor: pointer;
    position: relative;
    font-weight: 700;
    color: var(--primary);
    user-select: none;
}

.faq-question::after {
    content: "+";
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    color: var(--primary);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
    transform: translateY(-50%) rotate(45deg);
}

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

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

.faq-answer p {
    padding: 0 24px 24px;
    color: var(--gray);
    line-height: 1.8;
}

/* ==================== CTA SECTION ==================== */
.cta-section {
    padding: var(--section-padding) 0;
    background: linear-gradient(135deg, var(--dark) 0%, #2d2d2d 100%);
    color: var(--white);
    text-align: center;
}

.cta-content h2 {
    color: var(--white);
    margin-bottom: 16px;
}

.cta-content p {
    color: var(--white);
    font-size: 1.25rem;
    margin-bottom: 32px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.cta-note {
    font-size: 0.95rem;
    opacity: 0.8;
}

/* ==================== FOOTER ==================== */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: 40px 0;
    text-align: center;
}

.footer p {
    opacity: 0.8;
    line-height: 1.8;
}

.footer a {
    color: var(--orange);
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
    .hero-content,
    .overview-content,
    .process-step {
        grid-template-columns: 1fr;
    }
    
    .overview-benefits {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px;
    }
    
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.5rem; }
    
    .section-title { font-size: 2rem; }
    .section-subtitle { font-size: 1.1rem; }
    
    .hero {
        padding: 60px 0;
    }
    
    .hero-content {
        gap: 40px;
    }
    
    .hero-features {
        display: none;
    }
    
    /* .hero-image {
        order: -1;
    } */
    
    .options-grid,
    .pack-categories,
    .reasons-grid,
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-primary,
    .cta-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
}

/* ==================== ACCESSIBILITY ==================== */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ==================== UTILITIES ==================== */
.text-center { text-align: center; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }