/* ===================================
   HERO SECTION - MODERN MOBILE DESIGN
   =================================== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 100px 0 60px;
    background: url('images/hero-bg.jpg') center/cover no-repeat;
}

/* Add overlay on top of background image */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(15, 42, 68, 0.92) 0%, rgba(47, 93, 138, 0) 100%);
    z-index: 1;
}

.hero-carousel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 42, 68, 0.92) 0%, rgba(47, 93, 138, 0.90) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
}

.hero-text {
    color: var(--text-inverse);
}

.hero-title {
    font-size: clamp(1.5rem, 5vw, 2.85rem);
    font-weight: 700;
    color: var(--text-inverse);
    margin-bottom: 1.25rem;
    line-height: 1.2;
    text-shadow: 0 3px 8px rgba(0, 0, 0, 0.6);
}

/* Mobile - Hide form inside hero, show only text and CTA */
@media (max-width: 991px) {
    .hero-section {
        padding: 80px 0 50px;
        min-height: auto;
    }
    
    /* Hide form column on mobile */
    .hero-section .col-lg-6:last-child {
        display: none;
    }
    
    /* Make hero text full width on mobile */
    .hero-section .col-lg-6:first-child {
        max-width: 100%;
        flex: 0 0 100%;
    }
}

@media (max-width: 767px) {
    .hero-section {
        padding: 40px 0 40px;
    }
    
    .hero-title {
        font-size: 1.5rem;
        margin-bottom: 1rem;
        line-height: 1.25;
    }
}

@media (max-width: 575px) {
    .hero-section {
        padding: 65px 0 35px;
    }
    
    .hero-title {
        font-size: 1.4rem;
        margin-bottom: 0.875rem;
    }
}

@media (max-width: 374px) {
    .hero-section {
        padding: 60px 0 30px;
    }
    
    .hero-title {
        font-size: 1.35rem;
        margin-bottom: 0.75rem;
    }
}

.hero-tagline {
    font-size: clamp(0.9rem, 2vw, 1.25rem);
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 1.25rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.tagline-item {
    font-weight: 500;
    font-size: 0.95rem;
}

.tagline-separator {
    font-size: 1rem;
    color: var(--accent-gold);
    font-weight: 300;
}

/* Mobile tagline - hide completely, make it visual */
@media (max-width: 767px) {
    .hero-tagline {
        display: none; /* Remove text-heavy tagline on mobile */
    }
}

/* Trust Signals - Card Style Mobile */
.trust-signals {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 1.25rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.98);
    font-size: clamp(0.8rem, 1.5vw, 0.95rem);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.3;
}

.trust-item i {
    color: var(--accent-gold);
    font-size: 0.95rem;
    filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.4));
    flex-shrink: 0;
}
/* Make last item span 2 columns */
.trust-item:last-child {
    grid-column: span 2;
}

/* Mobile trust signals - visual cards */
@media (max-width: 767px) {
    .trust-signals {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
        margin-bottom: 1.25rem;
    }
    
    .trust-item {
        flex-direction: column;
        gap: 5px;
        padding: 10px 6px;
        background: rgba(255, 255, 255, 0.08);
        border-radius: 8px;
        border: 1px solid rgba(255, 255, 255, 0.12);
        font-size: 0.7rem;
        text-align: center;
        backdrop-filter: blur(10px);
    }
    
    .trust-item i {
        font-size: 1.3rem;
        margin-bottom: 2px;
    }
    
    .trust-item span {
        line-height: 1.2;
    }
}

@media (max-width: 575px) {
    .trust-signals {
        gap: 6px;
    }
    
    .trust-item {
        padding: 8px 4px;
        font-size: 0.65rem;
    }
    
    .trust-item i {
        font-size: 1.2rem;
    }
}

@media (max-width: 374px) {
    .trust-item {
        padding: 7px 3px;
        font-size: 0.6rem;
    }
    
    .trust-item i {
        font-size: 1.1rem;
    }
}

/* Hero Counters - HORIZONTAL ROW ALWAYS */
.hero-counters {
    display: flex;
    justify-content: space-between;
    gap: clamp(12px, 3vw, 40px);
    margin-bottom: 1.5rem;
}

.counter-item {
    text-align: center;
    flex: 1;
    min-width: 0;
}

.counter-number {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 2px;
    font-size: clamp(1.8rem, 6vw, 2.5rem);
    font-weight: 700;
    color: var(--text-inverse);
    line-height: 1;
    margin-bottom: 0.4rem;
    position: relative;
    text-shadow: 0 3px 8px rgba(0, 0, 0, 0.6);
}

.counter-number::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: clamp(30px, 8vw, 45px);
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
}

.counter-number .count {
    font-size: inherit;
    font-weight: inherit;
}

.counter-number .counter-plus {
    font-size: clamp(1.2rem, 4vw, 1.5rem);
    font-weight: 600;
    color: var(--accent-gold);
    position: relative;
    top: -3px;
}

.counter-label {
    margin-top: 0.4rem;
    font-size: clamp(0.7rem, 2.2vw, 0.95rem);
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

/* Mobile counters - ALWAYS HORIZONTAL */
@media (max-width: 767px) {
    .hero-counters {
        gap: 10px;
        margin-bottom: 1.25rem;
        background: rgba(255, 255, 255, 0.06);
        padding: 12px 8px;
        border-radius: 12px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
    }
    
    .counter-number {
        font-size: 1.8rem;
        margin-bottom: 0.3rem;
    }
    
    .counter-number::after {
        width: 35px;
        bottom: -4px;
        height: 2px;
    }
    
    .counter-plus {
        font-size: 1.2rem !important;
    }
    
    .counter-label {
        font-size: 0.7rem;
        margin-top: 0.3rem;
    }
}

@media (max-width: 575px) {
    .hero-counters {
        gap: 8px;
        padding: 10px 6px;
    }
    
    .counter-number {
        font-size: 1.6rem;
        gap: 1px;
    }
    
    .counter-number::after {
        width: 30px;
    }
    
    .counter-label {
        font-size: 0.65rem;
    }
}

@media (max-width: 374px) {
    .hero-counters {
        gap: 6px;
        padding: 10px 4px;
    }
    
    .counter-number {
        font-size: 1.5rem;
    }
    
    .counter-label {
        font-size: 0.6rem;
    }
}

/* CTA Buttons - Modern Style */
.hero-cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.hero-cta-buttons .btn {
    min-width: 160px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

@media (max-width: 767px) {
    .hero-cta-buttons {
        gap: 10px;
        width: 100%;
    }
    
    .hero-cta-buttons .btn {
        flex: 1;
        min-width: 0;
        padding: 13px 18px;
        font-size: 0.9rem;
        font-weight: 600;
    }
}

@media (max-width: 575px) {
    .hero-cta-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .hero-cta-buttons .btn {
        width: 100%;
        justify-content: center;
        padding: 14px 20px;
        font-size: 0.95rem;
    }
}

@media (max-width: 374px) {
    .hero-cta-buttons .btn {
        padding: 13px 18px;
        font-size: 0.9rem;
    }
}

/* Mobile Form Section - OUTSIDE HERO */
.mobile-form-section {
    display: none;
}

@media (max-width: 991px) {
    .mobile-form-section {
        display: block;
        padding: 40px 0;
        background: #f9fafb;
    }
    
    .mobile-form-section .lead-form-card {
        max-width: 500px;
        margin: 0 auto;
    }
}

/* ===================================
   LEAD FORM CARD - COMPACT VERSION
   =================================== */
.lead-form-card {
    background: var(--bg-white);
    border-radius: 16px;
    padding: clamp(1.75rem, 3vw, 2.25rem);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
    max-width: 500px;
}

.form-title {
    font-size: clamp(1.4rem, 3vw, 1.7rem);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    text-align: center;
}

.form-subtitle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: clamp(0.9rem, 1.5vw, 0.95rem);
    color: var(--text-muted);
    margin-bottom: 1.75rem;
    flex-wrap: wrap;
}

.form-subtitle i {
    color: var(--whatsapp-green);
    font-size: 1.05rem;
}

/* Form Groups - Improved Spacing */
.form-group {
    margin-bottom: 1rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-control {
    width: 100%;
    padding: 13px 16px;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    font-size: 16px; /* CRITICAL: Prevents iOS zoom on focus */
    font-family: inherit;
    transition: var(--transition);
    background-color: var(--bg-white);
    -webkit-appearance: none; /* Remove iOS default styling */
    appearance: none;
}



.form-control::placeholder {
    color: #9ca3af;
}

.form-control.is-valid {
    border-color: #10b981;
}

.form-control.is-invalid {
    border-color: #ef4444;
}

/* iOS Specific Fixes */
@supports (-webkit-touch-callout: none) {
    .form-control {
        font-size: 16px !important; /* Force 16px on iOS */
    }
}

/* Form Note - Enhanced */
.form-note {
    margin-top: 1.25rem;
    text-align: center;
    font-size: 0.9rem;
    color: #4B5563;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 500;
}

.form-note i {
    color: var(--whatsapp-green);
    font-size: 1.1rem;
}

/* Enhanced Submit Button with Animation */
.btn-submit {
    width: 100%;
    position: relative;
    overflow: hidden;
    padding: 14px 32px;
    background-color: var(--primary-navy);
    color: var(--text-inverse);
    font-weight: 600;
    transition: all 0.4s ease;
    min-height: 50px;
    -webkit-tap-highlight-color: transparent;
}

.btn-submit:hover:not(:disabled) {
    background-color: #0B2238;
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-submit:active:not(:disabled) {
    transform: translateY(0);
}

.btn-submit:disabled {
    cursor: not-allowed;
    opacity: 0.8;
}

.btn-content {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn-loader {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.loader-dot {
    width: 8px;
    height: 8px;
    background-color: var(--text-inverse);
    border-radius: 50%;
    animation: dotPulse 1.4s infinite ease-in-out;
}

.loader-dot:nth-child(2) {
    animation-delay: 0.2s;
}

.loader-dot:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes dotPulse {
    0%, 60%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    30% {
        transform: scale(1.3);
        opacity: 0.7;
    }
}

/* Button States */
.btn-submit.submitting .btn-content {
    display: none;
}

.btn-submit.submitting .btn-loader {
    display: flex;
}

.btn-submit.submitted {
    background-color: #10b981 !important;
}

.btn-submit.submitted .btn-content i::before {
    content: "\f00c"; /* Check icon */
}

/* Mobile Button Optimization */
@media (max-width: 767px) {
    .btn-submit {
        min-height: 48px;
        font-size: 1rem;
        padding: 13px 28px;
    }
}

@media (max-width: 479px) {
    .btn-submit {
        min-height: 46px;
        font-size: 0.95rem;
        padding: 12px 24px;
    }
}

@media (max-width: 374px) {
    .btn-submit {
        min-height: 44px;
        font-size: 0.9rem;
        padding: 11px 20px;
    }
}

/* ===================================
   ABOUT SECTION
   =================================== */
.about-section {
    background-color: var(--bg-white);
}

.about-content {
    padding-right: 2rem;
}

.about-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.about-feature-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.about-feature-item i {
    font-size: 2rem;
    color: var(--accent-gold);
    min-width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(200, 162, 77, 0.1);
    border-radius: 50%;
}

.about-feature-item h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.about-feature-item p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.6;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.stat-card {
    background: var(--bg-soft);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-gold);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.stat-icon i {
    font-size: 1.75rem;
    color: var(--text-inverse);
}

.stat-info h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 0.25rem;
}

.stat-info p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0;
}

/* ===================================
   SERVICES SECTION - SIMPLIFIED
   =================================== */
.service-card {
    background: var(--bg-white);
    border-radius: 12px;
    padding: 2rem;
    transition: var(--transition);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: var(--accent-gold);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-navy), var(--secondary-steel));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}

.service-icon i {
    font-size: 2rem;
    color: var(--text-inverse);
}

.service-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.service-description {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 1.25rem;
    font-size: 0.95rem;
    flex-grow: 1;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-features li {
    padding: 0.5rem 0;
    color: var(--text-muted);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-features i {
    color: var(--whatsapp-green);
    font-size: 0.9rem;
}

/* ===================================
   PROCESS SECTION
   =================================== */
.process-timeline {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
}

.process-step {
    flex: 1;
    text-align: center;
    position: relative;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--accent-gold);
    color: var(--text-inverse);
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    position: relative;
    z-index: 2;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: var(--bg-soft);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.process-step:hover .step-icon {
    border-color: var(--accent-gold);
    background: var(--bg-white);
}

.step-icon i {
    font-size: 2rem;
    color: var(--primary-navy);
    transition: var(--transition);
}

.process-step:hover .step-icon i {
    color: var(--secondary-steel);
    transform: scale(1.1);
}

.step-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.step-text {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.process-connector {
    position: absolute;
    top: 25px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, var(--accent-gold), var(--border-color));
    z-index: 1;
}

/* ===================================
   LOCATION CARDS
   =================================== */
.location-card {
    background: var(--bg-white);
    border-radius: var(--border-radius);
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    height: 100%;
}

.location-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
    border-color: var(--accent-gold);
}

.location-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    transition: var(--transition);
}

.location-card:hover .location-icon {
    background: var(--secondary-steel);
    transform: scale(1.1);
}

.location-icon i {
    font-size: 1.75rem;
    color: var(--text-inverse);
}

.location-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.location-text {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* ===================================
   FINAL CTA SECTION
   =================================== */
.final-cta-section {
    background: var(--primary-navy);
    color: var(--text-inverse);
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--text-inverse);
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.cta-phone {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    color: var(--text-inverse);
    flex-wrap: wrap;
}

.cta-phone i {
    color: var(--accent-gold);
    transform: scaleX(-1);
}

.cta-phone a {
    color: var(--text-inverse);
}

.cta-phone a:hover {
    color: var(--accent-gold);
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.cta-buttons .btn {
    background-color: var(--text-inverse);
    color: var(--primary-navy);
    font-weight: 600;
}

.cta-buttons .btn:hover {
    background-color: var(--accent-gold);
    color: var(--text-inverse);
}

.cta-buttons .btn-success {
    background-color: var(--whatsapp-green);
    color: var(--text-inverse);
}

.cta-buttons .btn-success:hover {
    background-color: #20ba5a;
    color: var(--text-inverse);
}

/* ===================================
   MOBILE RESPONSIVE - EXPERT LEVEL
   =================================== */

/* Large Tablet: 992px - 1199px */
@media (max-width: 1199px) {
    .hero-section {
        padding: 110px 0 70px;
    }
    
    .hero-title {
        font-size: clamp(1.75rem, 4.5vw, 2.5rem);
    }
}

/* Tablet Portrait: 768px - 991px */
@media (max-width: 991px) {
    .hero-section {
        min-height: auto;
        padding: 100px 0 60px;
    }
    
    .hero-title {
        font-size: 2rem;
        margin-bottom: 1.25rem;
    }
    
    .hero-tagline {
        font-size: 1.1rem;
        margin-bottom: 1.75rem;
    }
    
    .lead-form-card {
        margin-top: 40px;
        max-width: 100%;
    }
    
    .about-content {
        padding-right: 0;
        margin-bottom: 2rem;
    }
    
    .process-timeline {
        flex-wrap: wrap;
        gap: 30px;
    }
    
    .process-step {
        width: calc(50% - 15px);
    }
    
    .process-connector {
        display: none;
    }
    
    .hero-counters {
        gap: 30px;
    }
}

/* Mobile Landscape / Small Tablet: 576px - 767px */
@media (max-width: 767px) {
    .hero-section {
        padding: 90px 0 50px;
        min-height: auto;
    }
    
    .hero-title {
        font-size: 1.75rem;
        line-height: 1.25;
        margin-bottom: 1rem;
    }
    
    .hero-tagline {
        font-size: 1rem;
        gap: 10px;
        margin-bottom: 1.5rem;
    }
    
    .tagline-separator {
        font-size: 1rem;
    }
    
    .trust-signals {
        gap: 15px;
        margin-bottom: 1.5rem;
    }
    
    .trust-item {
        font-size: 0.9rem;
    }
    
    .hero-counters {
        justify-content: space-between;
        gap: 20px;
        margin-bottom: 1.75rem;
        padding: 0 10px;
    }
    
    .counter-item {
        flex: 1;
        min-width: 100px;
        max-width: 120px;
    }
    
    .counter-number {
        font-size: 2rem;
    }
    
    .counter-label {
        font-size: 0.8rem;
    }
    
    .hero-cta-buttons {
        gap: 15px;
        width: 100%;
    }
    
    .hero-cta-buttons .btn {
        flex: 1;
        min-width: 140px;
        padding: 12px 20px;
        font-size: 0.95rem;
    }
    
    .lead-form-card {
        margin-top: 30px;
        padding: 1.75rem 1.5rem;
    }
    
    .form-title {
        font-size: 1.5rem;
    }
    
    .form-subtitle {
        font-size: 0.9rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .form-control {
        padding: 12px 14px;
        font-size: 16px; /* Prevents iOS zoom */
    }
    
    .process-step {
        width: 100%;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .cta-phone {
        flex-direction: column;
        gap: 10px;
    }
}

/* Mobile Portrait: 480px - 575px */
@media (max-width: 575px) {
    .hero-section {
        padding: 80px 0 40px;
    }
    
    .hero-title {
        font-size: 1.65rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }
    
    .hero-tagline {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
        margin-bottom: 1.25rem;
    }
    
    .tagline-separator {
        display: none;
    }
    
    .trust-signals {
        flex-direction: column;
        gap: 12px;
        margin-bottom: 1.25rem;
    }
    
    .trust-item {
        font-size: 0.9rem;
    }
    
    .hero-counters {
        gap: 15px;
        margin-bottom: 1.5rem;
        justify-content: space-around;
        padding: 0 5px;
    }
    
    .counter-item {
        min-width: 90px;
        max-width: 110px;
    }
    
    .counter-number {
        font-size: 1.85rem;
    }
    
    .counter-number::after {
        width: 35px;
        height: 2px;
    }
    
    .counter-label {
        font-size: 0.75rem;
        line-height: 1.3;
    }
    
    .hero-cta-buttons {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }
    
    .hero-cta-buttons .btn {
        width: 100%;
        justify-content: center;
        min-width: auto;
        padding: 13px 24px;
    }
    
    .lead-form-card {
        padding: 1.5rem 1.25rem;
        border-radius: 12px;
    }
    
    .form-title {
        font-size: 1.4rem;
        margin-bottom: 0.5rem;
    }
    
    .form-subtitle {
        font-size: 0.85rem;
        margin-bottom: 1.25rem;
    }
    
    .form-group {
        margin-bottom: 0.875rem;
    }
    
    .form-control {
        padding: 12px 14px;
        font-size: 16px; /* Critical: Prevents iOS zoom on focus */
    }
    
    .btn-submit {
        padding: 13px 24px;
        font-size: 1rem;
    }
    
    .form-note {
        font-size: 0.85rem;
        margin-top: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }
    
    .cta-buttons .btn {
        width: 100%;
        justify-content: center;
    }
    
    /* Services */
    .service-card {
        padding: 1.25rem;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
    }
    
    .service-icon i {
        font-size: 1.75rem;
    }
    
    .service-title {
        font-size: 1.15rem;
    }
}

/* Small Mobile: 375px - 479px (iPhone SE, iPhone 12 mini) */
@media (max-width: 479px) {
    .hero-section {
        padding: 75px 0 35px;
    }
    
    .hero-title {
        font-size: 1.55rem;
        line-height: 1.3;
    }
    
    .hero-tagline {
        font-size: 0.95rem;
        gap: 5px;
    }
    
    .trust-item {
        font-size: 0.85rem;
    }
    
    .trust-item i {
        font-size: 1.1rem;
    }
    
    .hero-counters {
        gap: 12px;
        margin-bottom: 1.25rem;
    }
    
    .counter-item {
        min-width: 85px;
        max-width: 100px;
    }
    
    .counter-number {
        font-size: 1.75rem;
    }
    
    .counter-plus {
        font-size: 1.2rem;
    }
    
    .counter-label {
        font-size: 0.7rem;
    }
    
    .hero-cta-buttons .btn {
        padding: 12px 20px;
        font-size: 0.95rem;
    }
    
    .lead-form-card {
        padding: 1.25rem 1rem;
    }
    
    .form-title {
        font-size: 1.3rem;
    }
    
    .form-control {
        padding: 11px 12px;
    }
    
    .btn-submit {
        padding: 12px 20px;
        font-size: 0.95rem;
    }
}

/* Ultra Small Mobile: 360px - 374px (Galaxy S8, Moto G4) */
@media (max-width: 374px) {
    .container {
        padding: 0 12px;
    }
    
    .hero-section {
        padding: 30px 0 30px;
    }
    
    .hero-title {
        font-size: 1.45rem;
        line-height: 1.35;
        margin-bottom: 0.875rem;
    }
    
    .hero-tagline {
        font-size: 0.9rem;
        gap: 5px;
        margin-bottom: 1rem;
    }
    
    .trust-signals {
        gap: 10px;
        margin-bottom: 1rem;
    }
    
    .trust-item {
        font-size: 0.8rem;
    }
    
    .trust-item i {
        font-size: 1rem;
        min-width: 18px;
    }
    
    /* Stack counters vertically on ultra small screens */
    .hero-counters {
        flex-direction: row;
        align-items: center;
        gap: 15px;
        margin-bottom: 1.25rem;
        padding: 10px;
    }
    
    .counter-item {
        width: 100%;
        max-width: 200px;
        min-width: auto;
    }
    
    .counter-number {
        font-size: 2rem;
    }
    
    .counter-label {
        font-size: 0.8rem;
    }
    
    .hero-cta-buttons {
        gap: 10px;
    }
    
    .hero-cta-buttons .btn {
        padding: 11px 18px;
        font-size: 0.9rem;
    }
    
    .hero-cta-buttons .btn i {
        font-size: 0.95rem;
    }
    
    .lead-form-card {
        padding: 1.25rem 0.875rem;
        border-radius: 10px;
    }
    
    .form-title {
        font-size: 1.25rem;
        line-height: 1.3;
    }
    
    .form-subtitle {
        font-size: 0.8rem;
        margin-bottom: 1rem;
    }
    
    .form-group {
        margin-bottom: 0.75rem;
    }
    
    .form-control {
        padding: 11px 12px;
        font-size: 16px; /* Still 16px to prevent zoom */
        border-radius: 6px;
    }
    
    .btn-submit {
        padding: 12px 18px;
        font-size: 0.9rem;
        border-radius: 6px;
    }
    
    .btn-submit i {
        font-size: 0.9rem;
    }
    
    .form-note {
        font-size: 0.8rem;
        margin-top: 0.875rem;
    }
    
    .form-note i {
        font-size: 1rem;
    }
    
    /* About Section */
    .about-feature-item {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
    
    .about-feature-item i {
        font-size: 1.75rem;
        width: 45px;
        height: 45px;
    }
    
    .about-feature-item h3 {
        font-size: 1rem;
    }
    
    .about-feature-item p {
        font-size: 0.85rem;
    }
    
    /* Services */
    .service-card {
        padding: 1rem;
    }
    
    .service-icon {
        width: 55px;
        height: 55px;
    }
    
    .service-icon i {
        font-size: 1.5rem;
    }
    
    .service-title {
        font-size: 1.05rem;
    }
    
    .service-description {
        font-size: 0.85rem;
    }
    
    .service-features li {
        font-size: 0.8rem;
    }
    
    /* Location Cards */
    .location-card {
        padding: 1.25rem;
    }
    
    .location-icon {
        width: 60px;
        height: 60px;
    }
    
    .location-icon i {
        font-size: 1.5rem;
    }
    
    .location-title {
        font-size: 1rem;
    }
    
    /* CTA Section */
    .cta-title {
        font-size: 1.5rem;
    }
    
    .cta-subtitle {
        font-size: 0.95rem;
    }
    
    .cta-phone {
        font-size: 1.4rem;
    }
}

/* Extra Small: 320px - 359px (iPhone 5, older Android) */
@media (max-width: 359px) {
    .container {
        padding: 0 10px;
    }
    
    .hero-section {
        padding: 65px 0 25px;
    }
    
    .hero-title {
        font-size: 1.35rem;
        line-height: 1.35;
    }
    
    .hero-tagline {
        font-size: 0.85rem;
    }
    
    .trust-item {
        font-size: 0.75rem;
    }
    
    .counter-number {
        font-size: 1.85rem;
    }
    
    .counter-label {
        font-size: 0.75rem;
    }
    
    .hero-cta-buttons .btn {
        padding: 10px 16px;
        font-size: 0.85rem;
    }
    
    .lead-form-card {
        padding: 1rem 0.75rem;
    }
    
    .form-title {
        font-size: 1.2rem;
    }
    
    .form-subtitle {
        font-size: 0.75rem;
    }
    
    .form-control {
        padding: 10px 11px;
        font-size: 16px;
    }
    
    .btn-submit {
        padding: 11px 16px;
        font-size: 0.85rem;
    }
    
    .form-note {
        font-size: 0.75rem;
    }
}

/* Landscape Orientation Optimizations */
@media (max-height: 500px) and (orientation: landscape) {
    .hero-section {
        min-height: auto;
        padding: 60px 0 40px;
    }
    
    .hero-title {
        margin-bottom: 0.75rem;
    }
    
    .hero-tagline {
        margin-bottom: 1rem;
    }
    
    .trust-signals {
        margin-bottom: 1rem;
    }
    
    .hero-counters {
        margin-bottom: 1rem;
    }
    
    .hero-cta-buttons {
        margin-bottom: 1rem;
    }
}

/* Touch Target Optimization for All Mobile */
@media (max-width: 767px) {
    /* Ensure all interactive elements are at least 44px */
    .btn,
    .nav-link,
    .form-control,
    .floating-btn {
        min-height: 44px;
    }
    
    /* Better tap feedback */
    .btn:active,
    .nav-link:active {
        opacity: 0.8;
        transform: scale(0.98);
    }
}

/* Prevent Horizontal Scroll */
@media (max-width: 767px) {
    body {
        overflow-x: hidden;
    }
    
    .row {
        margin-left: -10px;/* ===== FAQ Section ===== */}
.faq-section {
    background: #fff;
}

.faq-section .section-title {
    margin-bottom: 10px;
}
}
/* ===================================
   HYPERLOCAL SECTION
   Packers & Movers Across All Bangalore Areas
   =================================== */
.hyperlocal-section {
    background: var(--bg-white);
}

.area-service-card {
    background: var(--bg-white);
    border-radius: 12px;
    padding: 1.75rem;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}

.area-service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-color: var(--accent-gold);
}

.area-service-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1rem;
}

.area-service-header i {
    font-size: 1.5rem;
    color: var(--accent-gold);
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: rgba(200, 162, 77, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.area-service-header h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0;
    line-height: 1.35;
}

.area-service-card p {
    font-size: 0.9rem;
    line-height: 1.75;
    color: var(--text-muted);
    margin-bottom: 1.25rem;
    flex-grow: 1;
}

.area-service-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-navy);
    border-bottom: 2px solid transparent;
    padding-bottom: 2px;
    transition: var(--transition);
    align-self: flex-start;
    margin-top: auto;
}

.area-service-link:hover {
    color: var(--accent-gold);
    border-bottom-color: var(--accent-gold);
}

/* Other Areas Tag Cloud */
.other-areas-wrap {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--bg-soft);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    text-align: center;
}

.other-areas-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.25rem;
}

.areas-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.area-tag {
    background: var(--bg-white);
    padding: 8px 18px;
    border-radius: 25px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-dark);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    cursor: default;
}

.area-tag:hover {
    background: var(--primary-navy);
    color: var(--text-inverse);
    border-color: var(--primary-navy);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ===================================
   INTERCITY ROUTES SECTION
   Top Intercity Moving Routes We Serve
   =================================== */
.routes-section {
    background: var(--bg-soft);
}

.route-card {
    background: var(--bg-white);
    border-radius: 12px;
    padding: 1.75rem;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: var(--transition);
}

.route-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-color: var(--secondary-steel);
}

.route-cities {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.route-from,
.route-to {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-navy);
    line-height: 1;
}

.route-to {
    color: var(--secondary-steel);
}

.route-cities i {
    font-size: 1.1rem;
    color: var(--accent-gold);
    flex-shrink: 0;
}

.route-desc {
    font-size: 0.9rem;
    line-height: 1.75;
    color: var(--text-muted);
    margin: 0;
    flex-grow: 1;
}

.route-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: auto;
}

.route-tags span {
    background: rgba(15, 42, 68, 0.07);
    color: var(--primary-navy);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
    border: 1px solid rgba(15, 42, 68, 0.12);
    white-space: nowrap;
}

.route-card:hover .route-tags span {
    background: rgba(47, 93, 138, 0.1);
    border-color: rgba(47, 93, 138, 0.2);
    color: var(--secondary-steel);
}

/* ===================================
   RESPONSIVE — HYPERLOCAL + ROUTES
   =================================== */

/* Tablet: 768px - 991px */
@media (max-width: 991px) {
    .area-service-card,
    .route-card {
        padding: 1.5rem;
    }

    .area-service-header h3 {
        font-size: 1rem;
    }

    .other-areas-wrap {
        padding: 1.5rem;
    }
}

/* Mobile: ≤ 767px */
@media (max-width: 767px) {
    .area-service-card,
    .route-card {
        padding: 1.25rem;
    }

    .area-service-header {
        gap: 10px;
    }

    .area-service-header i {
        font-size: 1.25rem;
        width: 36px;
        height: 36px;
    }

    .area-service-header h3 {
        font-size: 0.95rem;
    }

    .area-service-card p,
    .route-desc {
        font-size: 0.875rem;
    }

    .route-from,
    .route-to {
        font-size: 1.1rem;
    }

    .other-areas-wrap {
        padding: 1.25rem;
        margin-top: 2rem;
    }

    .other-areas-title {
        font-size: 1rem;
    }

    .areas-grid {
        gap: 8px;
    }

    .area-tag {
        padding: 7px 14px;
        font-size: 0.825rem;
    }

    .route-tags {
        gap: 6px;
    }

    .route-tags span {
        font-size: 0.7rem;
        padding: 3px 10px;
    }
}

/* Small Mobile: ≤ 575px */
@media (max-width: 575px) {
    .area-service-card,
    .route-card {
        padding: 1rem;
    }

    .area-service-header h3 {
        font-size: 0.9rem;
    }

    .area-service-card p,
    .route-desc {
        font-size: 0.85rem;
        line-height: 1.65;
    }

    .area-service-link {
        font-size: 0.85rem;
    }

    .route-from,
    .route-to {
        font-size: 1rem;
    }

    .route-cities {
        gap: 8px;
    }

    .route-cities i {
        font-size: 1rem;
    }

    .other-areas-wrap {
        padding: 1rem;
        margin-top: 1.5rem;
        border-radius: 8px;
    }

    .area-tag {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
}

/* Ultra Small: ≤ 374px */
@media (max-width: 374px) {
    .area-service-card,
    .route-card {
        padding: 0.875rem;
    }

    .area-service-header i {
        width: 32px;
        height: 32px;
        font-size: 1.1rem;
    }

    .area-service-header h3 {
        font-size: 0.875rem;
    }

    .area-service-card p,
    .route-desc {
        font-size: 0.8rem;
    }

    .area-service-link {
        font-size: 0.8rem;
    }

    .route-from,
    .route-to {
        font-size: 0.95rem;
    }

    .area-tag {
        padding: 5px 10px;
        font-size: 0.775rem;
    }

    .route-tags span {
        font-size: 0.68rem;
        padding: 3px 8px;
    }
}

/* ===================================
   FIX: .cta-hours (used in home final CTA)
   Missing from home.css
   =================================== */
.cta-hours {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.75rem;
}

/* ===================================
   FIX: .mb-lg-0 utility
   Used in hero section col spacing
   =================================== */
@media (min-width: 992px) {
    .mb-lg-0 {
        margin-bottom: 0 !important;
    }
}
@media (max-width: 767px) {
    .process-timeline {
        display: flex;
        flex-direction: column;   /* 🔥 FORCE vertical */
        align-items: center;
        gap: 30px;
    }

    .process-step {
        width: 100%;
        max-width: 320px;
        text-align: center;
    }

    /* Remove horizontal line */
    .process-connector {
        display: none;
    }
}

@media (max-width: 767px) {

    /* Fix row behavior */
    .locations-section .row {
        display: block !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    /* Force full width columns */
    .locations-section [class*="col-"] {
        width: 100% !important;
        max-width: 100% !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        margin-bottom: 20px;
    }

    /* Make card full width */
    .location-card {
        width: 100%;
        margin: 0 auto;
    }
}