/* FILE: assets/css/location-common.css */
/* Common styles for all city/location pages - Bootstrap 5 handles most styling */

/* ==================== GLOBAL COLOR VARIABLES ==================== */
:root {
    --primary-color: #ff6b35;
    --primary-hover: #e55a2b;
    --dark-blue: #1a3a5c;
    --darker-blue: #0f2438;
    --text-dark: #2c3e50;
    --text-muted: #6c757d;
    --border-light: #f0f0f0;
    --bg-light: #f8f9fa;
}

/* ==================== BREADCRUMB NAVIGATION ==================== */
.breadcrumb-nav {
    background: var(--bg-light);
    padding: 1rem 0;
}

.breadcrumb-item a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.2s ease;
}

.breadcrumb-item a:hover {
    color: var(--primary-hover);
    text-decoration: underline;
}

/* ==================== HERO SECTION ==================== */
.location-hero {
    background: linear-gradient(135deg, var(--dark-blue) 0%, var(--darker-blue) 100%);
    color: #ffffff;
    padding: 4rem 0;
}

.location-hero h1 {
    color: #ffffff;
}

.hero-subtitle {
    color: var(--primary-color);
}

.hero-description {
    color: rgba(255, 255, 255, 0.9);
}

/* ==================== INTRO HIGHLIGHTS ==================== */
.intro-highlights .text-primary {
    color: var(--primary-color) !important;
}

/* ==================== SERVICE CARDS ==================== */
.service-detail {
    transition: all 0.3s ease;
    height: 100%;
}

.service-detail:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.15) !important;
    border-color: var(--primary-color) !important;
}

.service-icon svg {
    color: var(--primary-color);
}

.service-detail ul li i {
    font-style: normal;
}

/* ==================== AREAS SERVED SECTION ==================== */
.areas-served {
    padding: 4rem 0;
    background: #ffffff;
}

.areas-served h2 {
    font-size: 2rem;
    color: var(--dark-blue);
    text-align: center;
    margin-bottom: 1rem;
}

.section-intro {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.area-column h3 {
    font-size: 1.25rem;
    color: var(--dark-blue);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-color);
}

.area-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.area-column ul li {
    padding: 0.5rem 0;
    color: var(--text-dark);
    font-size: 0.95rem;
    border-bottom: 1px solid var(--border-light);
}

.area-column ul li:last-child {
    border-bottom: none;
}

.areas-note {
    text-align: center;
    margin-top: 3rem;
    font-size: 1.05rem;
    color: var(--text-muted);
    font-style: italic;
}

/* ==================== WHY CHOOSE US SECTION ==================== */
.why-choose {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--bg-light) 0%, #e9ecef 100%);
}

.why-choose h2 {
    font-size: 2rem;
    color: var(--dark-blue);
    text-align: center;
    margin-bottom: 3rem;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.why-item {
    background: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s ease;
}

.why-item:hover {
    box-shadow: 0 6px 15px rgba(255, 107, 53, 0.15);
    transform: translateY(-5px);
}

.why-number {
    display: inline-block;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-hover) 100%);
    color: #ffffff;
    border-radius: 50%;
    text-align: center;
    line-height: 50px;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.why-item h3 {
    font-size: 1.25rem;
    color: var(--dark-blue);
    margin-bottom: 0.75rem;
}

.why-item p {
    font-size: 0.95rem;
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 0;
}

/* ==================== MOVING PROCESS SECTION ==================== */
.moving-process {
    padding: 4rem 0;
    background: #ffffff;
}

.moving-process h2 {
    font-size: 2rem;
    color: var(--dark-blue);
    text-align: center;
    margin-bottom: 1rem;
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.process-step {
    background: linear-gradient(135deg, var(--bg-light) 0%, #ffffff 100%);
    padding: 2rem;
    padding-top: 2.5rem;
    border-radius: 12px;
    border: 2px solid #e0e0e0;
    position: relative;
    transition: all 0.3s ease;
}

.process-step:hover {
    border-color: var(--primary-color);
    box-shadow: 0 6px 15px rgba(255, 107, 53, 0.15);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-hover) 100%);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
}

.process-step h3 {
    font-size: 1.15rem;
    color: var(--dark-blue);
    margin: 0 0 0.75rem;
    text-align: center;
}

.process-step p {
    font-size: 0.9rem;
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 0;
    text-align: center;
}

/* ==================== PRICING FACTORS SECTION ==================== */
.pricing-factors {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--bg-light) 0%, #e9ecef 100%);
}

.pricing-factors h2 {
    font-size: 2rem;
    color: var(--dark-blue);
    text-align: center;
    margin-bottom: 2rem;
}

.pricing-content {
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-content > p {
    font-size: 1.05rem;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.factors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.factor-card {
    background: #ffffff;
    padding: 1.75rem;
    border-radius: 10px;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}

.factor-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.12);
}

.factor-card h3 {
    font-size: 1.15rem;
    color: var(--dark-blue);
    margin-bottom: 0.75rem;
}

.factor-card p {
    font-size: 0.9rem;
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 0;
}

.price-range {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
    margin-bottom: 3rem;
}

.price-range h3 {
    font-size: 1.5rem;
    color: var(--dark-blue);
    margin-bottom: 1.5rem;
}

.price-range ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.price-range ul li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-light);
    font-size: 1rem;
    color: var(--text-dark);
}

.price-range ul li:last-child {
    border-bottom: none;
}

.price-range ul li strong {
    color: var(--dark-blue);
    font-weight: 600;
}

.price-note {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-style: italic;
    margin: 0;
}

.cta-pricing {
    background: linear-gradient(135deg, var(--dark-blue) 0%, var(--darker-blue) 100%);
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    color: #ffffff;
}

.cta-pricing h3 {
    font-size: 1.75rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.cta-pricing p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ==================== FAQ SECTION ==================== */
.faq-section {
    padding: 4rem 0;
    background: #ffffff;
}

.faq-section h2 {
    font-size: 2rem;
    color: var(--dark-blue);
    text-align: center;
    margin-bottom: 1rem;
}

.faq-list {
    max-width: 900px;
    margin: 3rem auto 0;
}

.faq-item {
    background: var(--bg-light);
    border-left: 4px solid var(--primary-color);
    border-radius: 8px;
    padding: 1.75rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.12);
}

.faq-question {
    font-size: 1.15rem;
    color: var(--dark-blue);
    margin-bottom: 1rem;
    font-weight: 600;
}

.faq-answer p {
    font-size: 0.95rem;
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 0;
}

/* ==================== FINAL CTA SECTION ==================== */
.final-cta {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--dark-blue) 0%, var(--darker-blue) 100%);
    color: #ffffff;
}

.final-cta .cta-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.final-cta h2 {
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 1.25rem;
}

.final-cta .cta-content > p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.cta-urgency {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.cta-urgency p {
    font-size: 1rem;
    color: #ffffff;
    margin: 0;
}

.cta-urgency strong {
    color: var(--primary-color);
}

/* ==================== RESPONSIVE DESIGN ==================== */
@media (max-width: 768px) {
    .location-hero {
        padding: 3rem 0 2rem;
    }
    
    .location-hero h1 {
        font-size: 1.85rem;
    }
    
    .hero-subtitle {
        font-size: 1.15rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .intro-highlights {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .why-grid,
    .process-timeline,
    .factors-grid {
        grid-template-columns: 1fr;
    }
    
    .areas-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .step-number {
        top: -15px;
        width: 35px;
        height: 35px;
        font-size: 1.1rem;
        line-height: 35px;
    }
    
    .cta-urgency {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 576px) {
    .location-hero h1 {
        font-size: 1.6rem;
    }
    
    .intro-highlights {
        grid-template-columns: 1fr;
    }
    
    .intro-highlights .display-4 {
        font-size: 2rem;
    }
    
    .service-detail,
    .why-item,
    .process-step,
    .factor-card {
        padding: 1.5rem;
    }
    
    .price-range {
        padding: 2rem 1.5rem;
    }
    
    .cta-pricing {
        padding: 2rem 1.5rem;
    }
    
    .faq-item {
        padding: 1.5rem;
    }
    
    .areas-served h2,
    .why-choose h2,
    .moving-process h2,
    .pricing-factors h2,
    .faq-section h2,
    .final-cta h2 {
        font-size: 1.75rem;
    }
}

/* ==================== UTILITY CLASSES ==================== */
.text-primary {
    color: var(--primary-color) !important;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

.border-primary {
    border-color: var(--primary-color) !important;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    border-color: var(--primary-hover);
}