/* ===============================================================
   BANGALORE-AREA-PAGES.CSS - Master styles for Bangalore locality pages
   Load on: Whitefield, Marathahalli, Electronic City, HSR Layout, etc.
   Version: 2.1 - Enhanced with Week 1 SEO Features
================================================================ */

/* Define colors for consistency */
:root {
    --primary-blue: #003399;
    --dark-blue: #001F54;
    --accent-green: #25D366;
    --highlight-yellow: #F4B400;
    --text-color: #ffffff;
    --white: #ffffff;
    --light-bg: rgba(255, 255, 255, 0.1);
    --shadow-light: 0 4px 15px rgba(0,0,0,0.1);
    --transition-fast: all 0.3s ease;
}

/* ========== AREA HERO SECTION ========== */
.area-hero {
    background: linear-gradient(135deg, rgba(0, 31, 84, 0.95), rgba(0, 51, 153, 0.92));
    padding: 100px 0 80px;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.area-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.2);
    z-index: 0;
}

.area-hero > * {
    position: relative;
    z-index: 1;
}

.area-hero h1 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--white);
    text-shadow: 3px 3px 10px rgba(0,0,0,0.8);
    line-height: 1.3;
}

.area-hero-intro {
    font-size: 18px;
    line-height: 1.7;
    max-width: 900px;
    margin: 0 auto 30px;
    color: var(--white);
    text-shadow: 2px 2px 6px rgba(0,0,0,0.7);
}

.area-hero-cta {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 25px;
}

/* Hero Badges - NEW */
.hero-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
    padding: 8px 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    transition: var(--transition-fast);
}

.badge-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.badge-item i {
    color: var(--accent-green);
    font-size: 16px;
}

/* ========== BREADCRUMB ========== */
.breadcrumb-section {
    background: var(--primary-blue);
    padding: 15px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.breadcrumb {
    display: flex;
    gap: 8px;
    align-items: center;
    flex-wrap: wrap;
    font-size: 14px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.breadcrumb a {
    color: var(--white);
    transition: var(--transition-fast);
    text-decoration: none;
    opacity: 0.8;
}

.breadcrumb a:hover {
    color: var(--accent-green);
    opacity: 1;
}

.breadcrumb .active {
    color: var(--white);
    font-weight: 600;
}

.breadcrumb-separator {
    color: rgba(255,255,255,0.5);
}

/* ========== PRICING SECTION - NEW ========== */
.pricing-section {
    background: var(--primary-blue);
    padding: 60px 0;
    color: var(--white);
}

.pricing-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.pricing-tab {
    padding: 12px 30px;
    border: 2px solid var(--accent-green);
    background: transparent;
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition-fast);
}

.pricing-tab:hover {
    background: var(--accent-green);
    transform: translateY(-2px);
}

.pricing-tab.active {
    background: var(--accent-green);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.pricing-content {
    margin-top: 40px;
}

.pricing-tab-content {
    display: none;
}

.pricing-tab-content.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 15px;
    padding: 30px 25px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition-fast);
    position: relative;
    overflow: hidden;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-color: var(--accent-green);
}

.pricing-card.featured {
    border: 2px solid var(--accent-green);
    background: rgba(37, 211, 102, 0.05);
}

.popular-badge {
    position: absolute;
    top: 15px;
    right: -35px;
    background: var(--highlight-yellow);
    color: var(--dark-blue);
    padding: 5px 40px;
    font-size: 12px;
    font-weight: 700;
    transform: rotate(45deg);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-header {
    text-align: center;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-header h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 15px;
}

.price-tag {
    font-size: 32px;
    font-weight: 800;
    color: var(--accent-green);
    line-height: 1;
}

.duration {
    display: block;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 8px;
    font-weight: 500;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.pricing-features li {
    padding: 10px 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.pricing-features li i {
    color: var(--accent-green);
    font-size: 16px;
    margin-top: 2px;
    flex-shrink: 0;
}

.btn-pricing {
    display: block;
    width: 100%;
    padding: 12px 20px;
    background: var(--accent-green);
    color: var(--white);
    text-align: center;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: var(--transition-fast);
    margin-top: 20px;
    border: 2px solid var(--accent-green);
}

.btn-pricing:hover {
    background: transparent;
    color: var(--accent-green);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.pricing-notes {
    max-width: 1000px;
    margin: 50px auto 0;
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border-left: 4px solid var(--highlight-yellow);
}

.pricing-notes h4 {
    font-size: 20px;
    color: var(--white);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-notes h4 i {
    color: var(--highlight-yellow);
    font-size: 22px;
}

.pricing-factors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 15px;
    margin-bottom: 20px;
}

.factor-item {
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.factor-item strong {
    color: var(--accent-green);
    display: block;
    margin-bottom: 5px;
}

/* ========== INSURANCE & SAFETY SECTION - NEW ========== */
.insurance-safety-section {
    background: var(--primary-blue);
    padding: 60px 0;
    color: var(--white);
}

.insurance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.insurance-card {
    background: rgba(255, 255, 255, 0.08);
    padding: 35px 30px;
    border-radius: 12px;
    border-top: 4px solid var(--accent-green);
    transition: var(--transition-fast);
}

.insurance-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.12);
}

.insurance-icon {
    width: 80px;
    height: 80px;
    background: rgba(37, 211, 102, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: var(--transition-fast);
}

.insurance-card:hover .insurance-icon {
    background: var(--accent-green);
    transform: scale(1.1);
}

.insurance-icon i {
    font-size: 40px;
    color: var(--accent-green);
    transition: var(--transition-fast);
}

.insurance-card:hover .insurance-icon i {
    color: var(--white);
}

.insurance-card h3 {
    font-size: 20px;
    color: var(--white);
    margin-bottom: 15px;
    text-align: center;
    font-weight: 700;
}

.insurance-card p {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 20px;
    text-align: center;
}

.insurance-features {
    list-style: none;
    padding: 0;
    margin: 20px 0 0;
}

.insurance-features li {
    padding: 10px 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: flex-start;
    gap: 12px;
    line-height: 1.6;
}

.insurance-features li i {
    color: var(--accent-green);
    font-size: 16px;
    margin-top: 3px;
    flex-shrink: 0;
}

.claim-process {
    max-width: 1100px;
    margin: 50px auto 0;
    padding: 40px 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
}

.claim-process h3 {
    font-size: 24px;
    color: var(--white);
    margin-bottom: 30px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.claim-process h3 i {
    color: var(--highlight-yellow);
}

.claim-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
}

.claim-step {
    text-align: center;
    padding: 25px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    transition: var(--transition-fast);
}

.claim-step:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--accent-green);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 15px;
}

.claim-step h4 {
    font-size: 16px;
    color: var(--white);
    margin-bottom: 10px;
    font-weight: 600;
}

.claim-step p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
    margin: 0;
}

.certifications {
    max-width: 900px;
    margin: 50px auto 0;
    text-align: center;
}

.certifications h3 {
    font-size: 24px;
    color: var(--white);
    margin-bottom: 30px;
    font-weight: 700;
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
}

.cert-badge {
    padding: 25px 20px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    transition: var(--transition-fast);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.cert-badge:hover {
    background: rgba(37, 211, 102, 0.1);
    border-color: var(--accent-green);
    transform: translateY(-5px);
}

.cert-badge i {
    font-size: 36px;
    color: var(--accent-green);
    margin-bottom: 12px;
    display: block;
}

.cert-badge span {
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
    display: block;
}

/* ========== TESTIMONIALS SECTION - NEW ========== */
.testimonials-section {
    background: var(--primary-blue);
    padding: 60px 0;
    color: var(--white);
}

.rating-summary {
    margin-top: 20px;
}

.stars {
    display: inline-flex;
    gap: 5px;
    margin-bottom: 10px;
}

.stars i {
    color: var(--highlight-yellow);
    font-size: 24px;
}

.rating-text {
    display: block;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.08);
    padding: 30px;
    border-radius: 12px;
    border-left: 4px solid var(--accent-green);
    transition: var(--transition-fast);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.12);
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
    gap: 15px;
}

.customer-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.customer-avatar {
    width: 50px;
    height: 50px;
    background: var(--accent-green);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    flex-shrink: 0;
}

.customer-info h4 {
    font-size: 16px;
    color: var(--white);
    margin: 0 0 5px;
    font-weight: 600;
}

.customer-location {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.testimonial-rating {
    display: flex;
    gap: 3px;
    flex-shrink: 0;
}

.testimonial-rating i {
    color: var(--highlight-yellow);
    font-size: 16px;
}

.testimonial-text {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 15px;
    font-style: italic;
}

.testimonial-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
    gap: 10px;
}

.verified-badge {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--accent-green);
    font-weight: 600;
}

.verified-badge i {
    font-size: 14px;
}

.google-reviews-cta {
    text-align: center;
    margin-top: 50px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
}

.google-reviews-cta p {
    font-size: 18px;
    color: var(--white);
    margin-bottom: 20px;
}

/* ========== AREA CONTENT SECTION ========== */
.area-content {
    background: var(--primary-blue);
    padding: 60px 0;
    color: var(--white);
}

.content-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.area-content h2 {
    font-size: 28px;
    color: var(--white);
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.3;
}

.area-content h3 {
    font-size: 22px;
    color: var(--white);
    margin: 30px 0 15px;
    font-weight: 700;
    line-height: 1.4;
}

.area-content p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--white);
    margin-bottom: 20px;
}

.area-content ul {
    font-size: 15px;
    line-height: 2;
    color: var(--white);
    margin-bottom: 25px;
    padding-left: 25px;
    list-style-type: disc;
}

.area-content ul li {
    margin-bottom: 10px;
}

.area-content a {
    color: var(--accent-green);
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition-fast);
}

.area-content a:hover {
    color: var(--highlight-yellow);
}

/* Why Choose List */
.area-features-list {
    list-style: none;
    margin: 30px 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.area-features-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: var(--light-bg);
    border-radius: 10px;
    transition: all 0.3s ease;
    color: var(--white);
}

.area-features-list li:hover {
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    transform: translateX(5px);
}

.area-features-list li::before {
    content: '\f058';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: var(--accent-green);
    font-size: 22px;
    flex-shrink: 0;
    transition: var(--transition-fast);
}

.area-features-list li:hover::before {
    color: var(--highlight-yellow);
    transform: scale(1.2);
}

.area-features-list li span {
    font-size: 15px;
    font-weight: 600;
    color: var(--white);
    line-height: 1.6;
}

/* ========== POPULAR ROUTES SECTION ========== */
.popular-routes {
    background: var(--primary-blue);
    padding: 60px 0;
    color: var(--white);
}

.routes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.route-card {
    background: var(--light-bg);
    padding: 20px 25px;
    border-radius: 10px;
    border-left: 4px solid var(--accent-green);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
}

.route-card:hover {
    transform: translateX(8px);
    border-left-color: var(--highlight-yellow);
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    background: rgba(255, 255, 255, 0.15);
}

.route-icon {
    font-size: 24px;
    color: var(--accent-green);
    transition: var(--transition-fast);
    flex-shrink: 0;
}

.route-card:hover .route-icon {
    color: var(--highlight-yellow);
    transform: rotate(90deg);
}

.route-text {
    font-size: 15px;
    font-weight: 600;
    color: var(--white);
    line-height: 1.4;
}

.route-arrow {
    color: var(--accent-green);
    font-weight: 700;
    margin: 0 5px;
}

/* ========== LOCALITIES COVERED ========== */
.localities-covered {
    background: var(--primary-blue);
    padding: 60px 0;
    color: var(--white);
}

.localities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 15px;
    margin-top: 30px;
}

.locality-badge {
    background: var(--light-bg);
    padding: 15px 20px;
    border-radius: 8px;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.locality-badge:hover {
    background: var(--accent-green);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.locality-icon {
    font-size: 16px;
    color: var(--accent-green);
    transition: var(--transition-fast);
}

.locality-badge:hover .locality-icon {
    color: var(--white);
}

/* ========== SERVICES GRID ========== */
.area-services {
    background: var(--primary-blue);
    padding: 60px 0;
    color: var(--white);
}

.area-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.area-service-card {
    background: var(--light-bg);
    padding: 30px 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 3px 12px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    border-top: 4px solid var(--accent-green);
}

.area-service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    border-top-color: var(--highlight-yellow);
    background: rgba(255, 255, 255, 0.15);
}

.area-service-icon {
    font-size: 48px;
    color: var(--accent-green);
    margin-bottom: 20px;
    transition: all 0.4s ease;
}

.area-service-card:hover .area-service-icon {
    color: var(--highlight-yellow);
    transform: scale(1.15) rotate(10deg);
}

.area-service-card h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: var(--white);
    transition: var(--transition-fast);
}

.area-service-card:hover h3 {
    color: var(--highlight-yellow);
}

.area-service-card p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin-bottom: 15px;
}

.service-learn-more {
    color: var(--accent-green);
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: var(--transition-fast);
    text-decoration: none;
}

.service-learn-more:hover {
    color: var(--highlight-yellow);
    transform: translateX(3px);
}

/* ========== FAQ SECTION ========== */
.area-faq {
    background: var(--primary-blue);
    padding: 60px 0;
    color: var(--white);
}

.faq-container {
    max-width: 900px;
    margin: 30px auto 0;
}

.faq-item {
    background: var(--light-bg);
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.faq-question {
    padding: 20px 25px;
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    transition: var(--transition-fast);
    background: rgba(255, 255, 255, 0.05);
    user-select: none;
}

.faq-question:hover {
    color: var(--accent-green);
}

.faq-icon {
    font-size: 20px;
    color: var(--accent-green);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    color: var(--highlight-yellow);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    background: rgba(255, 255, 255, 0.05);
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer-content {
    padding: 0 25px 20px;
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
}

/* ========== MAP SECTION ========== */
.map-section {
    background: var(--primary-blue);
    padding: 60px 0;
    color: var(--white);
}

.map-container {
    max-width: 1000px;
    margin: 30px auto 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.map-container iframe {
    width: 100%;
    height: 450px;
    border: 0;
    display: block;
}

.office-address {
    text-align: center;
    margin: 20px 0 30px;
    padding: 30px;
    background: var(--light-bg);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    color: var(--white);
}

.office-address:hover {
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.15);
}

.office-address h3 {
    color: var(--white);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
}

.office-address p {
    font-size: 17px;
    color: var(--white);
    line-height: 1.8;
    margin-bottom: 8px;
}

.office-address a {
    text-decoration: none;
    transition: var(--transition-fast);
    color: var(--accent-green);
    font-weight: 700;
    font-size: 20px;
    word-break: break-word;
}

.office-address a:hover {
    opacity: 0.85;
}

/* ========== AREA CTA SECTION ========== */
.area-cta {
    background: linear-gradient(135deg, rgba(0, 31, 84, 0.95), rgba(0, 51, 153, 0.92)),
                url('https://images.unsplash.com/photo-1600880292203-757bb62b4baf?w=1600&q=80') center/cover;
    padding: 70px 0;
    color: var(--white);
    text-align: center;
    position: relative;
}

.area-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.3);
    z-index: 0;
}

.area-cta > * {
    position: relative;
    z-index: 1;
}

.area-cta h2 {
    font-size: 36px;
    margin-bottom: 15px;
    font-weight: 800;
    text-shadow: 3px 3px 10px rgba(0,0,0,0.8);
}

.area-cta p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.95;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.7);
}

.area-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.cta-phone {
    color: var(--highlight-yellow);
    font-weight: 800;
    font-size: 20px;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.8);
}

/* ========== INTERNAL LINKING SECTION ========== */
.internal-links-section {
    background: var(--primary-blue);
    padding: 60px 0;
    color: var(--white);
}

.internal-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 15px;
    margin-top: 30px;
}

.internal-link-card {
    background: var(--light-bg);
    padding: 18px 20px;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
    border-left: 4px solid var(--accent-green);
}

.internal-link-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(5px);
    border-left-color: var(--highlight-yellow);
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.internal-link-card a {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.internal-link-card:hover a {
    color: var(--highlight-yellow);
}

.internal-link-icon {
    color: var(--accent-green);
    font-size: 18px;
    transition: var(--transition-fast);
}

.internal-link-card:hover .internal-link-icon {
    color: var(--highlight-yellow);
    transform: translateX(3px);
}

/* ========== SECTION HEADERS ========== */
.section-header {
    margin-bottom: 15px;
    text-align: center;
}

.section-subtitle {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: var(--accent-green);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--white);
    line-height: 1.3;
    margin: 0;
}

/* ========== UTILITY CLASSES ========== */
.text-center {
    text-align: center;
}

.mt-4 {
    margin-top: 30px;
}

.mb-4 {
    margin-bottom: 30px;
}

/* ========== RESPONSIVE DESIGN - ALL BREAKPOINTS ========== */

/* Large Desktop - 1400px and above */
@media (min-width: 1400px) {
    
    
    .pricing-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Desktop - 1200px to 1399px */
@media (min-width: 1200px) and (max-width: 1399px) {
   
}

/* Laptop/Tablet Landscape - 992px to 1199px */
@media (max-width: 1199px) {
    .area-hero h1 {
        font-size: 38px;
    }
    
    .pricing-grid {
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    }
}

@media (max-width: 992px) {
    .area-hero {
        padding: 80px 0 60px;
    }
    
    .area-hero h1 {
        font-size: 32px;
    }
    
    .area-hero-intro {
        font-size: 16px;
    }
    
    .hero-badges {
        gap: 12px;
    }
    
    .badge-item {
        font-size: 13px;
        padding: 6px 12px;
    }
    
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-factors-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .routes-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .localities-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
    
    .area-features-list {
        grid-template-columns: 1fr;
    }
    
    .area-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .insurance-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .claim-steps {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cert-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .internal-links-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Tablet Portrait - 768px to 991px */
@media (max-width: 768px) {
    .area-hero {
        padding: 70px 0 50px;
    }
    
    .area-hero h1 {
        font-size: 28px;
    }
    
    .area-hero-intro {
        font-size: 15px;
    }
    
    .area-hero-cta {
        flex-direction: column;
        gap: 12px;
    }
    
    .area-hero-cta .btn {
        width: 100%;
        justify-content: center;
    }
    
    .hero-badges {
        gap: 10px;
    }
    
    .badge-item {
        font-size: 12px;
        padding: 6px 10px;
    }
    
    .badge-item i {
        font-size: 14px;
    }
    
    .pricing-tabs {
        flex-direction: column;
        gap: 10px;
    }
    
    .pricing-tab {
        width: 100%;
        padding: 10px 20px;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-factors-grid {
        grid-template-columns: 1fr;
    }
    
    .insurance-grid {
        grid-template-columns: 1fr;
    }
    
    .insurance-icon {
        width: 70px;
        height: 70px;
    }
    
    .insurance-icon i {
        font-size: 35px;
    }
    
    .claim-steps {
        grid-template-columns: 1fr;
    }
    
    .cert-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .localities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .area-services-grid {
        grid-template-columns: 1fr;
    }
    
    .routes-grid {
        grid-template-columns: 1fr;
    }
    
    .map-container iframe {
        height: 350px;
    }
    
    .area-cta h2 {
        font-size: 26px;
    }
    
    .cta-phone {
        font-size: 18px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .area-content h2 {
        font-size: 24px;
    }
    
    .area-content h3 {
        font-size: 20px;
    }
    
    .internal-links-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile Landscape - 576px to 767px */
@media (max-width: 576px) {
    .area-hero {
        padding: 60px 0 40px;
    }
    
    .area-hero h1 {
        font-size: 24px;
    }
    
    .area-hero-intro {
        font-size: 14px;
    }
    
    .hero-badges {
        flex-direction: column;
        gap: 8px;
    }
    
    .badge-item {
        width: 100%;
        justify-content: center;
    }
    
    .pricing-tab {
        font-size: 14px;
        padding: 10px 15px;
    }
    
    .pricing-card {
        padding: 25px 20px;
    }
    
    .price-tag {
        font-size: 26px;
    }
    
    .pricing-header h3 {
        font-size: 18px;
    }
    
    .btn-pricing {
        padding: 10px 15px;
        font-size: 14px;
    }
    
    .pricing-notes {
        padding: 20px 15px;
    }
    
    .pricing-notes h4 {
        font-size: 18px;
    }
    
    .factor-item {
        padding: 12px;
        font-size: 13px;
    }
    
    .insurance-card {
        padding: 25px 20px;
    }
    
    .insurance-icon {
        width: 60px;
        height: 60px;
    }
    
    .insurance-icon i {
        font-size: 30px;
    }
    
    .insurance-card h3 {
        font-size: 18px;
    }
    
    .claim-process {
        padding: 30px 20px;
    }
    
    .claim-process h3 {
        font-size: 20px;
    }
    
    .step-number {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
    
    .claim-step h4 {
        font-size: 15px;
    }
    
    .claim-step p {
        font-size: 13px;
    }
    
    .cert-grid {
        grid-template-columns: 1fr;
    }
    
    .cert-badge {
        padding: 20px 15px;
    }
    
    .cert-badge i {
        font-size: 32px;
    }
    
    .testimonial-card {
        padding: 20px;
    }
    
    .customer-avatar {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .customer-info h4 {
        font-size: 15px;
    }
    
    .customer-location {
        font-size: 12px;
    }
    
    .testimonial-text {
        font-size: 14px;
    }
    
    .testimonial-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .testimonial-rating {
        margin-top: 10px;
    }
    
    .google-reviews-cta {
        padding: 20px 15px;
    }
    
    .google-reviews-cta p {
        font-size: 16px;
    }
    
    .route-card {
        padding: 15px 20px;
    }
    
    .route-text {
        font-size: 14px;
    }
    
    .localities-grid {
        grid-template-columns: 1fr;
    }
    
    .locality-badge {
        padding: 12px 15px;
        font-size: 13px;
    }
    
    .faq-question {
        padding: 15px 20px;
        font-size: 15px;
    }
    
    .faq-answer-content {
        padding: 0 20px 15px;
        font-size: 14px;
    }
    
    .map-container iframe {
        height: 300px;
    }
    
    .area-cta h2 {
        font-size: 22px;
    }
    
    .area-cta p {
        font-size: 16px;
    }
    
    .area-cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .area-cta-buttons .btn {
        width: 100%;
    }
    
    .cta-phone {
        font-size: 16px;
        display: block;
        margin: 5px 0;
    }
    
    .office-address {
        padding: 25px 20px;
    }
    
    .office-address h3 {
        font-size: 20px;
    }
    
    .office-address p {
        font-size: 15px;
    }
    
    .office-address a {
        font-size: 18px;
    }
    
    .section-title {
        font-size: 22px;
    }
    
    .section-subtitle {
        font-size: 12px;
    }
    
    .area-content h2 {
        font-size: 22px;
    }
    
    .area-content h3 {
        font-size: 18px;
    }
    
    .area-content p,
    .area-content ul {
        font-size: 15px;
    }
    
    .internal-links-grid {
        grid-template-columns: 1fr;
    }
    
    .internal-link-card {
        padding: 15px;
    }
}

/* Extra Small Mobile - 400px and below */
@media (max-width: 400px) {
    .area-hero h1 {
        font-size: 22px;
    }
    
    .area-hero-intro {
        font-size: 13px;
    }
    
    .pricing-card {
        padding: 20px 15px;
    }
    
    .price-tag {
        font-size: 24px;
    }
    
    .insurance-card {
        padding: 20px 15px;
    }
    
    .testimonial-card {
        padding: 15px;
    }
    
    .area-cta h2 {
        font-size: 20px;
    }
    
    .section-title {
        font-size: 20px;
    }
}

/* ========== PRINT STYLES ========== */
@media print {
    .area-hero,
    .area-cta,
    .breadcrumb-section,
    .hero-badges,
    .area-hero-cta,
    .area-cta-buttons {
        display: none;
    }
    
    .area-content,
    .popular-routes,
    .localities-covered,
    .area-services,
    .area-faq,
    .pricing-section,
    .insurance-safety-section,
    .testimonials-section {
        page-break-inside: avoid;
    }
    
    * {
        background: white !important;
        color: black !important;
    }
}
/* ========== NEW: LOCAL CONTEXT SECTION ========== */
.local-context-section {
    background: var(--primary-blue);
    padding: 60px 0;
    color: var(--white);
}

.local-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

.local-challenges-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
}

.challenge-card {
    background: rgba(255, 255, 255, 0.08);
    padding: 25px;
    border-radius: 12px;
    border-top: 4px solid var(--accent-green);
    transition: var(--transition-fast);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.challenge-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--accent-green);
}

.challenge-icon {
    font-size: 36px;
    color: var(--accent-green);
    margin-bottom: 15px;
    text-align: center;
}

.challenge-card h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--white);
    text-align: center;
    font-weight: 700;
}

.challenge-card p {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 10px;
}

.challenge-card .tip {
    background: rgba(244, 180, 0, 0.1);
    padding: 12px;
    border-radius: 6px;
    border-left: 3px solid var(--highlight-yellow);
    font-size: 13px;
    margin-top: 15px;
    color: rgba(255, 255, 255, 0.9);
}

.requirements-list {
    background: rgba(37, 211, 102, 0.1);
    padding: 15px;
    border-radius: 6px;
    font-size: 13px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

.local-landmarks {
    margin: 50px 0;
    text-align: center;
}

.local-landmarks h3 {
    margin-bottom: 30px;
    font-size: 24px;
    color: var(--white);
    font-weight: 700;
}

.landmarks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.landmark-item {
    background: rgba(255, 255, 255, 0.08);
    padding: 15px 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    font-size: 14px;
    color: var(--white);
    transition: var(--transition-fast);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.landmark-item:hover {
    background: rgba(37, 211, 102, 0.15);
    transform: translateY(-3px);
    border-color: var(--accent-green);
}

.landmark-item i {
    color: var(--accent-green);
    font-size: 18px;
    flex-shrink: 0;
}

.moving-preparation {
    background: rgba(255, 255, 255, 0.08);
    padding: 40px;
    border-radius: 12px;
    margin: 50px 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.moving-preparation h3 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 24px;
    color: var(--white);
    font-weight: 700;
}

.checklist-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.checklist-column h4 {
    background: var(--accent-green);
    color: var(--primary-blue);
    padding: 12px;
    border-radius: 6px;
    margin-bottom: 15px;
    text-align: center;
    font-weight: 700;
    font-size: 16px;
}

.checklist-column ul {
    list-style: none;
    padding: 0;
}

.checklist-column li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    padding-left: 25px;
    position: relative;
}

.checklist-column li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-green);
    font-weight: bold;
}

.checklist-column li:last-child {
    border-bottom: none;
}

.distance-timing {
    margin-top: 50px;
}

.distance-timing h3 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 24px;
    color: var(--white);
    font-weight: 700;
}

.timing-table {
    width: 100%;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.timing-table thead {
    background: rgba(37, 211, 102, 0.2);
    color: var(--white);
}

.timing-table th,
.timing-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
}

.timing-table th {
    font-weight: 700;
    font-size: 15px;
}

.timing-table td {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
}

.timing-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.05);
}

.timing-table tbody tr:last-child td {
    border-bottom: none;
}

.table-note {
    text-align: center;
    margin-top: 15px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
}

/* ========== RESPONSIVE DESIGN FOR NEW SECTIONS ========== */

@media (max-width: 992px) {
    .local-challenges-grid,
    .checklist-grid,
    .landmarks-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .local-challenges-grid,
    .checklist-grid,
    .landmarks-grid {
        grid-template-columns: 1fr;
    }
    
    .timing-table {
        font-size: 12px;
    }
    
    .timing-table th,
    .timing-table td {
        padding: 10px 8px;
    }
    
    .moving-preparation {
        padding: 25px 20px;
    }
    
    .challenge-card {
        padding: 20px;
    }
}

@media (max-width: 576px) {
    .local-intro {
        font-size: 14px;
    }
    
    .challenge-card h3 {
        font-size: 16px;
    }
    
    .challenge-card p {
        font-size: 13px;
    }
    
    .local-landmarks h3,
    .moving-preparation h3,
    .distance-timing h3 {
        font-size: 20px;
    }
    
    .checklist-column h4 {
        font-size: 15px;
        padding: 10px;
    }
    
    .checklist-column li {
        font-size: 13px;
        padding: 8px 0 8px 20px;
    }
    
    .timing-table {
        display: block;
        overflow-x: auto;
    }
}