/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

/* Color Variables - Logo Inspired Theme */
:root {
    --primary-orange: #ff6b35;
    --primary-blue: #1e40af;
    --secondary-blue: #3b82f6;
    --accent-orange: #fb923c;
    --dark-blue: #1e3a8a;
    --light-blue: #dbeafe;
    --light-orange: #fed7aa;
    --gradient-primary: linear-gradient(135deg, #ff6b35 0%, #1e40af 100%);
    --gradient-secondary: linear-gradient(135deg, #fb923c 0%, #3b82f6 100%);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 0.8rem 0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    height: 70px;
    min-height: 70px; /* Ensure minimum height */
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    min-height: 54px; /* Ensure minimum height for content */
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-logo .logo {
    width: 45px;
    height: 45px;
    border-radius: 8px;
}

.company-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-blue);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--primary-orange);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--primary-orange);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem; /* Further reduced gap for mobile fit */
    flex-shrink: 0; /* Prevent shrinking */
    min-width: fit-content; /* Ensure minimum width */
}

.btn-sm {
    padding: 8px 20px;
    font-size: 0.9rem;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 3px;
    margin-left: 0.25rem;
    flex-shrink: 0;
}

.bar {
    width: 20px;
    height: 2px;
    background-color: #333;
    margin: 2px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: var(--gradient-primary);
    color: white;
    padding: 120px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* Add overlay for better text readability */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    color: white;
}

.hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    line-height: 1.6;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
    color: white;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.btn {
    padding: 10px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    display: inline-block;
    text-align: center;
    font-size: 0.9rem;
}

.btn-primary {
    background: var(--primary-orange);
    color: white;
    border-color: var(--primary-orange);
}

.btn-primary:hover {
    background: var(--accent-orange);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.3);
}

.btn-secondary {
    background: transparent;
    color: white;
    border-color: white;
}

.btn-secondary:hover {
    background: white;
    color: var(--primary-blue);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--primary-blue);
    border-color: var(--primary-blue);
}

.btn-outline:hover {
    background: var(--primary-blue);
    color: white;
    transform: translateY(-2px);
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.hero-img:hover {
    transform: scale(1.05);
}

/* Hero Slideshow Styles */
.hero-slideshow {
    position: relative;
    width: 100%;
    max-width: 450px;
    height: 350px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.hero-slideshow:hover .slide.active img {
    transform: scale(1.05);
}

.slideshow-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.indicator.active {
    background: var(--primary-orange);
    border-color: white;
    transform: scale(1.2);
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.8);
}

/* Welcome Section */
.welcome {
    padding: 80px 0;
    background: white;
}

.welcome-content {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.welcome-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
}

.welcome-text {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 4rem;
    line-height: 1.7;
}

.welcome-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.welcome-feature {
    text-align: center;
    padding: 2rem;
    border-radius: 15px;
    background: #f8fafc;
    transition: transform 0.3s ease;
}

.welcome-feature:hover {
    transform: translateY(-10px);
}

.feature-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1.5rem;
}

.welcome-feature h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.welcome-feature p {
    color: #666;
    line-height: 1.6;
}

/* Features Call-to-Action Section */
.features-cta {
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 50%, #3b82f6 100%);
    color: white;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.features-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.features-cta-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.features-left {
    max-width: 600px;
}

.features-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

.features-right .cta-header {
    text-align: center;
    margin-bottom: 1rem;
}

.features-right .cta-header h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: white;
}

.features-right .cta-header h3 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 0;
    color: var(--accent-orange);
}

.cta-header h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: white;
}

.cta-header h3 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 3rem;
    color: var(--accent-orange);
}

.feature-cards {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.feature-cta-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 2rem;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    transition: all 0.3s ease;
}

.feature-cta-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(10px);
}

.feature-cta-card .feature-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-cta-card .feature-icon i {
    font-size: 1.5rem;
    color: white;
}

.feature-cta-card h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: white;
}

.feature-cta-card p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin: 0;
}

/* Map Container - Replace Network Visualization */
.map-container {
    position: relative;
    width: 100%;
    max-width: 500px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.coverage-map {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.coverage-map:hover {
    transform: scale(1.02);
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.coverage-indicator {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.coverage-indicator.active .indicator-dot {
    width: 20px;
    height: 20px;
    background: var(--primary-orange);
    border: 3px solid white;
    border-radius: 50%;
    box-shadow: 0 0 0 3px var(--primary-orange), 0 0 20px rgba(255, 107, 53, 0.5);
    animation: mapPulse 2s infinite;
}

.indicator-label {
    background: var(--primary-orange);
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

@keyframes mapPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 3px var(--primary-orange), 0 0 20px rgba(255, 107, 53, 0.5);
    }
    50% {
        transform: scale(1.1);
        box-shadow: 0 0 0 6px var(--primary-orange), 0 0 25px rgba(255, 107, 53, 0.7);
    }
}

/* Remove old network visualization styles */
.network-visualization,
.network-node,
.connection-line {
    display: none;
}

/* Location Options with Status Badges */
.location-option {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
}

.location-option:hover {
    border-color: var(--primary-orange);
    transform: translateY(-2px);
}

.location-option.active {
    border-color: var(--primary-orange);
    background: var(--light-orange);
}

.location-option.coming-soon {
    opacity: 0.7;
    cursor: not-allowed;
    background: #f8f9fa;
}

.location-option.coming-soon:hover {
    border-color: #ddd;
    transform: none;
}

.location-option i {
    font-size: 1.2rem;
    color: var(--primary-orange);
}

.location-option.coming-soon i {
    color: #999;
}

.location-option span {
    flex: 1;
    font-weight: 600;
    color: var(--primary-blue);
}

.location-option.coming-soon span {
    color: #666;
}

.status-badge {
    font-size: 0.75rem;
    padding: 4px 8px;
    border-radius: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-badge.available {
    background: #10b981;
    color: white;
}

.status-badge.coming-soon {
    background: #f59e0b;
    color: white;
}

/* Coverage Section */
.coverage {
    display: none;
}

.coverage-grid {
    display: none;
}

.coverage-card {
    display: none;
}

/* Pricing Section */
.pricing {
    background: white;
    padding: 80px 0;
}

.pricing-selector {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.selector-card {
    background: var(--light-blue);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
}

.selector-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 2rem;
}

.location-options, .plan-type-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.location-option, .plan-type-option {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.location-option:hover, .plan-type-option:hover {
    border-color: var(--primary-orange);
    transform: translateY(-2px);
}

.location-option.active, .plan-type-option.active {
    border-color: var(--primary-orange);
    background: var(--light-orange);
}

.location-option i, .plan-type-option i {
    font-size: 1.2rem;
    color: var(--primary-orange);
}

.plan-type-option {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
}

.plan-type-option span {
    font-weight: 600;
    color: var(--primary-blue);
}

.plan-type-option small {
    color: #666;
    font-size: 0.9rem;
}

.plans-display {
    max-width: 1200px;
    margin: 0 auto;
}

.plan-section {
    margin-bottom: 4rem;
}

.section-header-small {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header-small h3 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.section-header-small p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Plan Grid Variations - Convert to Sliding Carousel */
.plans-grid {
    display: none;
    position: relative;
    overflow: hidden;
    margin-bottom: 3rem;
    padding: 0 60px; /* Space for navigation arrows */
}

.plans-grid.active {
    display: block;
}

.plans-carousel {
    display: flex;
    transition: transform 0.5s ease;
    gap: 2rem;
    padding: 1rem 0;
}

.plans-carousel .plan-card {
    flex: 0 0 320px; /* Fixed width for consistent sizing */
    max-width: 320px;
    margin: 0;
}

/* Carousel Navigation */
.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary-orange);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.carousel-nav:hover {
    background: var(--accent-orange);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.carousel-nav.prev {
    left: 10px;
}

.carousel-nav.next {
    right: 10px;
}

.carousel-nav:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: translateY(-50%) scale(0.9);
}

.carousel-nav:disabled:hover {
    background: var(--primary-orange);
    transform: translateY(-50%) scale(0.9);
}

/* Carousel Indicators */
.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.carousel-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-indicator.active {
    background: var(--primary-orange);
    transform: scale(1.2);
}

.carousel-indicator:hover {
    background: var(--accent-orange);
}

/* Mobile Carousel Adjustments - Consolidated in Enhanced Mobile Responsive Design section */

/* Remove old grid styles that might conflict */
.plans-grid {
    /* Remove these conflicting styles */
    /* grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); */
    /* gap: 2rem; */
    /* justify-items: center; */
}

.plan-card {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    width: 100%;
    max-width: 350px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.plan-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-orange);
}

.plan-card.popular {
    border-color: var(--primary-orange);
    transform: scale(1.02);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.2);
}

.plan-card.popular:hover {
    transform: scale(1.02) translateY(-8px);
}

.plan-card.enterprise-premium {
    border-color: var(--primary-blue);
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.popular-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-orange);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
}

.plan-image {
    position: relative;
    height: 200px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.plan-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.plan-card:hover .plan-img {
    transform: scale(1.1);
}

.plan-content {
    padding: 2rem;
}

.plan-content h4 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary-blue);
}

.plan-price {
    margin-bottom: 1rem;
    text-align: center;
}

.currency {
    font-size: 1.1rem;
    color: #666;
    vertical-align: top;
}

.amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin: 0 2px;
}

.period {
    font-size: 1rem;
    color: #666;
}

.speed-badge {
    display: inline-block;
    background: var(--primary-orange);
    color: white;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.speed-badge.premium {
    background: var(--primary-blue);
}

.plan-features {
    list-style: none;
    margin-bottom: 2rem;
}

.plan-features li {
    padding: 0.5rem 0;
    color: #555;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
}

.plan-features i {
    color: #10b981;
    font-size: 1rem;
    flex-shrink: 0;
}

.plan-btn {
    width: 100%;
    padding: 12px 20px;
    font-weight: 600;
    font-size: 1rem;
}

/* Why Us Section */
.why-us {
    background: var(--light-orange);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.feature-card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.feature-content {
    padding: 2rem;
    text-align: center;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.feature-icon i {
    font-size: 1.5rem;
    color: white;
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary-blue);
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}

/* About Section */
.about {
    background: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--primary-blue);
}

.lead {
    font-size: 1.25rem;
    color: var(--primary-orange);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.about-text p {
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* About Section Updates */
.about-actions {
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
    align-items: center;
}

/* Contact Section */
.contact {
    background: var(--light-blue);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-branches {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.branch-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.branch-card h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary-blue);
}

.branch-card p {
    color: #666;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.branch-card i {
    color: var(--primary-orange);
    width: 16px;
}

.contact-form {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-orange);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* FAQ Section */
.faq {
    background: white;
}

.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.faq-item:hover {
    border-color: var(--primary-orange);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.1);
}

.faq-question {
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: #f8fafc;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: var(--light-orange);
}

.faq-question h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin: 0;
    line-height: 1.4;
}

.faq-answer {
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
}

.faq-item.active .faq-answer {
    padding: 1.5rem 2rem;
    max-height: 300px;
}

.faq-answer p {
    color: #666;
    line-height: 1.7;
    margin: 0;
    font-size: 1rem;
}

/* FAQ Question Icon Styling */
.faq-question i {
    color: var(--primary-orange);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

/* Enhanced FAQ Section Mobile Responsive */
@media (max-width: 768px) {
    /* Navigation Mobile Styles */
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px; /* Match navbar height */
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 1rem 0; /* Reduced padding */
        z-index: 999;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 0.5rem 0; /* Reduced margin */
    }

    /* Mobile menu actions inside dropdown */
    .nav-menu .nav-actions {
        flex-direction: column;
        gap: 0.5rem;
        margin-top: 1rem;
        padding: 0 1rem;
    }

    .nav-menu .nav-actions .btn-sm {
        padding: 8px 16px; /* Larger padding in dropdown menu */
        font-size: 0.9rem; /* Larger font in dropdown */
        width: auto;
        margin: 0;
    }

    /* Mobile Navigation Layout Fixes */
    .nav-actions {
        gap: 0.25rem; /* Very tight spacing for mobile */
        margin-right: 0; /* Remove any right margin */
    }

    .nav-actions .btn-sm {
        padding: 5px 10px; /* Compact padding */
        font-size: 0.75rem; /* Smaller font */
        white-space: nowrap; /* Prevent text wrapping */
        min-width: auto; /* Remove minimum width */
        margin-right: 0; /* Remove any margin */
        flex-shrink: 1; /* Allow slight shrinking if needed */
    }

    /* Hamburger menu mobile adjustments */
    .hamburger {
        padding: 2px; /* Even smaller padding */
        margin-left: 0.15rem; /* Minimal margin */
        width: 24px; /* Fixed width */
        height: 20px; /* Fixed height */
        justify-content: center;
    }

    .bar {
        width: 18px; /* Even smaller bars */
        height: 2px;
        margin: 1.5px 0; /* Tighter spacing */
    }

    /* Company name and logo adjustments */
    .company-name {
        font-size: 1rem; /* Slightly smaller */
    }

    .nav-logo .logo {
        width: 38px; /* Slightly smaller logo */
        height: 38px;
    }

    /* Nav container adjustments */
    .nav-container {
        padding: 0 12px; /* Reduced padding */
        gap: 0.25rem; /* Minimal gap */
    }

    /* Hero Section Mobile - Critical Fixes */
    .hero {
        padding: 90px 0 60px; /* Adjusted top padding to account for smaller navbar */
        min-height: 100vh;
        display: flex;
        align-items: center;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
        padding: 0 15px; /* Ensure proper padding */
        max-width: 100%;
    }

    .hero-content {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }

    .hero-title,
    .hero-subtitle {
        color: white !important;
        text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.9) !important;
        opacity: 1 !important;
    }

    .hero-title {
        font-size: 2rem; /* Smaller for mobile */
        line-height: 1.2;
        margin-bottom: 1rem;
        word-wrap: break-word;
        hyphens: auto;
    }

    .hero-subtitle {
        font-size: 0.95rem; /* Smaller for mobile */
        line-height: 1.5;
        margin-bottom: 1.5rem;
        word-wrap: break-word;
    }

    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
        gap: 1rem;
        margin-top: 1.5rem;
    }

    .hero-buttons .btn {
        min-width: 160px;
        padding: 12px 20px;
        font-size: 0.9rem;
    }

    .hero-slideshow {
        max-width: 300px;
        height: 250px;
        margin: 0 auto;
    }

    .hero-features {
        flex-direction: column;
        gap: 1rem;
        margin-top: 2rem;
    }
    
    .hero-feature {
        justify-content: center;
        text-align: center;
        padding: 0.75rem 1rem;
    }

    /* Welcome Section Mobile */
    .welcome {
        padding: 50px 0;
    }

    .welcome-content h2 {
        font-size: 1.8rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }

    .welcome-text {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .welcome-features {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    /* Installation Card Mobile */
    .installation-card {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
        gap: 1.5rem;
    }
    
    .installation-icon {
        margin: 0 auto;
    }

    /* Features CTA Mobile Styles */
    .features-cta {
        padding: 50px 0;
    }

    .features-cta-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .cta-header h2 {
        font-size: 2rem;
        line-height: 1.3;
    }

    .cta-header h3 {
        font-size: 1.3rem;
        line-height: 1.4;
    }

    .feature-cta-card {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding: 1.5rem;
    }

    .feature-cta-card h4 {
        font-size: 1.1rem;
    }

    .feature-cta-card p {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .map-container {
        max-width: 300px;
        margin: 0 auto;
    }

    /* Pricing Section Mobile */
    .pricing {
        padding: 50px 0;
    }

    .pricing-selector {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 2rem;
    }

    .selector-card {
        padding: 1.5rem;
    }

    .selector-card h3 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }

    .location-option, .plan-type-option {
        padding: 1rem;
        font-size: 0.9rem;
    }

    .plan-filters {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .plan-filters h3 {
        font-size: 1.4rem;
        margin-bottom: 1rem;
    }
    
    .filter-tabs {
        gap: 0.5rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .filter-tab {
        min-width: 100px;
        padding: 1rem 0.75rem;
        font-size: 0.85rem;
    }
    
    .filter-tab i {
        font-size: 1.2rem;
    }
    
    .filter-tab span {
        font-size: 0.85rem;
        font-weight: 600;
    }
    
    .filter-tab small {
        font-size: 0.7rem;
    }

    /* Plan Cards Mobile */
    .plans-grid {
        padding: 0 20px;
    }
    
    .plans-carousel .plan-card {
        flex: 0 0 280px;
        max-width: 280px;
    }

    .carousel-nav {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .carousel-nav.prev {
        left: 5px;
    }
    
    .carousel-nav.next {
        right: 5px;
    }

    .plan-image::before {
        font-size: 2.2rem;
    }

    .plan-content {
        padding: 1.5rem;
    }

    .plan-content h4 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }

    .amount {
        font-size: 1.8rem;
    }

    .speed-badge {
        font-size: 1rem;
        padding: 6px 12px;
    }

    .plan-features {
        margin-bottom: 1.5rem;
    }

    .plan-features li {
        font-size: 0.9rem;
        padding: 0.4rem 0;
    }

    /* Why Us Section Mobile */
    .why-us {
        padding: 60px 0;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .feature-card {
        margin: 0 auto;
        max-width: 400px;
    }

    /* About Section Mobile */
    .about {
        padding: 60px 0;
    }

    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .about-text h2 {
        font-size: 2rem;
    }

    .lead {
        font-size: 1.1rem;
    }

    .about-actions {
        justify-content: center;
        flex-wrap: wrap;
        gap: 1rem;
    }

    .about-actions .btn {
        width: 100%;
    }

    /* Contact Section Mobile */
    .contact {
        padding: 60px 0;
    }

    .contact-content {
        grid-template-columns: 1fr; /* Stack vertically on mobile */
        gap: 2rem; /* Reduce gap for mobile */
    }

    .contact-form {
        padding: 1.5rem;
        order: 2; /* Put form after branch info on mobile */
    }

    .contact-branches {
        order: 1; /* Put branch info first on mobile */
        gap: 1.5rem; /* Reduce gap between branch cards */
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px 14px;
        font-size: 0.95rem;
    }

    .branch-card {
        padding: 1.25rem;
    }

    .branch-card h4 {
        font-size: 1.1rem;
    }

    .branch-card p {
        font-size: 0.9rem;
    }

    /* FAQ Section Mobile */
    .faq {
        padding: 60px 0;
    }

    .faq-question {
        padding: 1rem;
    }
    
    .faq-question h4 {
        font-size: 0.95rem;
        line-height: 1.3;
    }
    
    .faq-answer {
        padding: 0 1rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 1rem;
    }

    .faq-answer p {
        font-size: 0.9rem;
    }

    /* Footer Mobile */
    .footer {
        padding: 3rem 0 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .footer-section h4 {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .footer-section p,
    .footer-section a {
        font-size: 0.9rem;
    }

    /* Section Headers Mobile */
    .section-header {
        margin-bottom: 3rem;
    }

    .section-header h2 {
        font-size: 1.8rem;
        line-height: 1.2;
        margin-bottom: 0.75rem;
    }

    .section-header p {
        font-size: 0.95rem;
        line-height: 1.5;
    }

    /* Button Adjustments */
    .btn-sm {
        padding: 8px 16px;
        font-size: 0.85rem;
    }

    /* Modal Adjustments */
    .login-modal .modal-content {
        margin: 15px;
        max-width: none;
    }

    .login-modal .modal-body {
        padding: 1rem;
    }

    .login-modal .modal-header {
        padding: 1rem;
    }

    .login-modal .modal-header h3 {
        font-size: 1.1rem;
    }

    .form-options {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }

    .login-actions {
        gap: 0.75rem;
    }

    /* Status Badge Adjustments */
    .status-badge {
        font-size: 0.7rem;
        padding: 3px 6px;
    }

    /* Time Badge Adjustments */
    .time-badge {
        font-size: 0.75rem;
        padding: 4px 8px;
    }
}

@media (max-width: 480px) {
    /* Container and Navigation */
    .container {
        padding: 0 15px;
    }
    
    .nav-container {
        padding: 0 8px; /* Even tighter padding for very small screens */
        gap: 0.15rem; /* Minimal gap */
    }

    /* Ultra-compact navigation elements for very small screens */
    .nav-actions {
        gap: 0.15rem; /* Ultra-tight spacing */
    }

    .nav-actions .btn-sm {
        padding: 4px 8px; /* Ultra-compact padding */
        font-size: 0.7rem; /* Even smaller font */
        border-radius: 12px; /* Smaller border radius */
    }

    /* Ultra-compact hamburger for very small screens */
    .hamburger {
        padding: 1px;
        margin-left: 0.1rem;
        width: 22px;
        height: 18px;
    }

    .bar {
        width: 16px; /* Ultra-small bars */
        height: 1.5px;
        margin: 1px 0;
    }

    .company-name {
        font-size: 0.9rem; /* Even smaller company name */
    }

    .nav-logo .logo {
        width: 32px;
        height: 32px;
    }

    /* Hero Section - Extra Small Mobile */
    .hero {
        padding: 80px 0 50px;
        min-height: 100vh;
    }

    .hero-container {
        padding: 0 10px;
    }

    .hero-title,
    .hero-subtitle {
        color: white !important;
        text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.9) !important;
        opacity: 1 !important;
    }

    .hero-title {
        font-size: 1.7rem; /* Even smaller for very small screens */
        line-height: 1.2;
        margin-bottom: 1rem;
        word-wrap: break-word;
        hyphens: auto;
    }

    .hero-subtitle {
        font-size: 0.9rem; /* Smaller for very small screens */
        line-height: 1.5;
        margin-bottom: 1.5rem;
        word-wrap: break-word;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 280px;
        padding: 12px 16px;
        font-size: 0.9rem;
    }

    .hero-feature {
        padding: 0.5rem;
    }

    .hero-feature span {
        font-size: 0.85rem;
    }

    /* Welcome Section */
    .welcome {
        padding: 40px 0;
    }

    .welcome-content h2 {
        font-size: 1.6rem;
        line-height: 1.3;
    }

    .welcome-text {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    /* Installation Card */
    .installation-card {
        padding: 1.5rem;
        margin: 1rem 0;
    }
    
    .installation-icon {
        width: 60px;
        height: 60px;
    }
    
    .installation-icon i {
        font-size: 1.8rem;
    }
    
    .installation-content h3 {
        font-size: 1.2rem;
    }
    
    .installation-price {
        font-size: 1.1rem;
    }

    /* Features CTA */
    .features-cta {
        padding: 40px 0;
    }

    .cta-header h2 {
        font-size: 1.7rem;
        line-height: 1.3;
    }

    .cta-header h3 {
        font-size: 1.2rem;
        line-height: 1.4;
    }

    .feature-cta-card {
        padding: 1.25rem;
    }

    .feature-cta-card h4 {
        font-size: 1rem;
    }

    .map-container {
        max-width: 280px;
    }

    /* Pricing Section */
    .pricing {
        padding: 40px 0;
    }

    .pricing-selector {
        gap: 1rem;
        margin-bottom: 2rem;
    }

    .selector-card {
        padding: 1.25rem;
    }

    .selector-card h3 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }

    .location-option, .plan-type-option {
        padding: 0.9rem;
        font-size: 0.85rem;
    }

    .plan-filters {
        padding: 1.25rem;
        margin-bottom: 2rem;
    }
    
    .plan-filters h3 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }
    
    .filter-tabs {
        gap: 0.4rem;
        justify-content: center;
    }
    
    .filter-tab {
        min-width: 90px;
        padding: 0.9rem 0.6rem;
        font-size: 0.8rem;
    }
    
    .filter-tab i {
        font-size: 1.1rem;
        margin-bottom: 0.3rem;
    }

    /* Plan Cards */
    .plans-grid {
        padding: 0 15px;
    }
    
    .plans-carousel .plan-card {
        flex: 0 0 260px;
        max-width: 260px;
    }

    .carousel-nav {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }

    .plan-image::before {
        font-size: 2rem;
    }

    .plan-content {
        padding: 1.25rem;
    }

    .plan-content h4 {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }

    .amount {
        font-size: 1.6rem;
    }

    .speed-badge {
        font-size: 0.9rem;
        padding: 5px 10px;
    }

    .plan-features {
        margin-bottom: 1.25rem;
    }

    .plan-features li {
        font-size: 0.85rem;
        padding: 0.3rem 0;
    }

    /* Why Us Extra Small */
    .why-us {
        padding: 50px 0;
    }

    .feature-content {
        padding: 1.5rem;
    }

    .feature-card h3 {
        font-size: 1.1rem;
    }

    /* About Extra Small */
    .about {
        padding: 50px 0;
    }

    .about-text h2 {
        font-size: 1.8rem;
        line-height: 1.2;
    }

    .lead {
        font-size: 1.1rem;
    }

    .about-actions {
        flex-direction: column;
        width: 100%;
        gap: 0.75rem;
    }

    .about-actions .btn {
        width: 100%;
    }

    /* Contact Extra Small */
    .contact {
        padding: 50px 0;
    }

    .contact-content {
        grid-template-columns: 1fr; /* Stack vertically on very small screens */
        gap: 1.5rem; /* Smaller gap for very small screens */
    }

    .contact-form {
        padding: 1.5rem;
        order: 2; /* Put form after branch info on mobile */
    }

    .contact-branches {
        order: 1; /* Put branch info first on mobile */
        gap: 1rem; /* Smaller gap between branch cards */
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px 14px; /* Smaller padding for very small screens */
        font-size: 0.95rem;
    }

    .branch-card {
        padding: 1.25rem;
    }

    .branch-card h4 {
        font-size: 1.1rem;
    }

    .branch-card p {
        font-size: 0.9rem;
    }

    /* FAQ Extra Small */
    .faq {
        padding: 50px 0;
    }

    .faq-question {
        padding: 1rem;
    }
    
    .faq-question h4 {
        font-size: 0.95rem;
        line-height: 1.3;
    }
    
    .faq-answer {
        padding: 0 1rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 1rem;
    }

    .faq-answer p {
        font-size: 0.9rem;
    }

    /* Footer Extra Small */
    .footer {
        padding: 2.5rem 0 1rem;
    }

    .footer-content {
        gap: 1.5rem;
    }

    .footer-section h4 {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .footer-section p,
    .footer-section a {
        font-size: 0.9rem;
    }

    .social-links a {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }

    /* Section Headers Extra Small */
    .section-header {
        margin-bottom: 3rem;
    }

    .section-header h2 {
        font-size: 1.8rem;
        line-height: 1.2;
        margin-bottom: 0.75rem;
    }

    .section-header p {
        font-size: 0.95rem;
        line-height: 1.5;
    }

    /* Button Adjustments */
    .btn-sm {
        padding: 8px 16px;
        font-size: 0.85rem;
    }

    /* Modal Adjustments */
    .login-modal .modal-content {
        margin: 15px;
        max-width: none;
    }

    .login-modal .modal-body {
        padding: 1rem;
    }

    .login-modal .modal-header {
        padding: 1rem;
    }

    .login-modal .modal-header h3 {
        font-size: 1.1rem;
    }

    .form-options {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }

    .login-actions {
        gap: 0.75rem;
    }

    /* Status Badge Adjustments */
    .status-badge {
        font-size: 0.7rem;
        padding: 3px 6px;
    }

    /* Time Badge Adjustments */
    .time-badge {
        font-size: 0.75rem;
        padding: 4px 8px;
    }
}

/* Landscape Orientation for Mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        padding: 80px 0 40px;
        min-height: auto;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .features-cta {
        padding: 50px 0;
    }

    .section {
        padding: 50px 0;
    }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
    .plan-card:hover,
    .feature-card:hover,
    .btn:hover {
        transform: none;
    }

    .plan-card:active,
    .feature-card:active {
        transform: scale(0.98);
    }

    .btn:active {
        transform: scale(0.95);
    }

    /* Increase touch targets */
    .nav-link {
        padding: 0.75rem 0;
    }

    .filter-tab {
        min-height: 60px;
    }

    .carousel-nav {
        min-width: 44px;
        min-height: 44px;
    }

    .faq-question {
        min-height: 60px;
    }
}

/* Footer */
.footer {
    background: var(--dark-blue);
    color: white;
    padding: 3.5rem 0 2rem; /* Reduced from 4rem */
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem; /* Reduced from 3rem */
    margin-bottom: 2.5rem; /* Reduced from 3rem */
}

.footer-section h4 {
    font-size: 1.1rem; /* Reduced from 1.25rem */
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: white;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 8px; /* Reduced from 10px */
    margin-bottom: 1rem;
}

.footer-logo .logo {
    width: 45px; /* Reduced from 50px */
    height: 45px;
    border-radius: 8px;
}

.footer .company-name {
    color: white;
    font-weight: 600;
}

.footer-section p {
    color: #a0aec0;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem; /* Added smaller font size */
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.75rem;
}

.footer-section a {
    color: #a0aec0;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem; /* Added smaller font size */
}

.footer-section a:hover {
    color: var(--primary-orange);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 38px; /* Reduced from 40px */
    height: 38px;
    background: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary-orange);
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid #2d3748;
    padding-top: 2rem;
    text-align: center;
    color: #a0aec0;
    font-size: 0.9rem; /* Added smaller font size */
}

.footer-bottom a {
    color: var(--primary-orange);
    text-decoration: none;
}

/* Section Styles */
section {
    padding: 70px 0; /* Reduced from 80px */
}

.section-header {
    text-align: center;
    margin-bottom: 3.5rem; /* Reduced from 4rem */
    position: relative;
}

.section-header h2 {
    font-size: 2.2rem; /* Reduced from 2.5rem */
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1rem; /* Reduced from 1.1rem */
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.header-actions {
    margin-top: 1.5rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
}

/* Plan Duration Filters */
.plan-filters {
    text-align: center;
    margin-bottom: 3.5rem; /* Reduced from 4rem */
    padding: 1.8rem; /* Reduced from 2rem */
    background: var(--light-blue);
    border-radius: 20px;
}

.plan-filters h3 {
    font-size: 1.6rem; /* Reduced from 1.8rem */
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 1.8rem; /* Reduced from 2rem */
}

.filter-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-tab {
    background: white;
    border: 2px solid transparent;
    border-radius: 15px;
    padding: 1.3rem 0.9rem; /* Reduced from 1.5rem 1rem */
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    min-width: 110px; /* Reduced from 120px */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.filter-tab:hover {
    border-color: var(--primary-orange);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.filter-tab.active {
    border-color: var(--primary-orange);
    background: var(--light-orange);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.2);
}

.filter-tab i {
    font-size: 1.4rem; /* Reduced from 1.5rem */
    color: var(--primary-orange);
    margin-bottom: 0.5rem;
}

.filter-tab span {
    font-weight: 600;
    color: var(--primary-blue);
    font-size: 0.95rem; /* Reduced from 1rem */
}

.filter-tab small {
    color: #666;
    font-size: 0.75rem; /* Reduced from 0.8rem */
    font-weight: 400;
}

.filter-tab.active span {
    color: var(--primary-blue);
}

.filter-tab.active small {
    color: #555;
}

/* Time Badges for Day/Night Plans */
.time-badge {
    display: inline-block;
    padding: 5px 10px; /* Reduced from 6px 12px */
    border-radius: 20px;
    font-size: 0.75rem; /* Reduced from 0.8rem */
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.time-badge.day {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: white;
}

.time-badge.night {
    background: linear-gradient(135deg, #6366f1, #4f46e5);
    color: white;
}

.time-badge.full {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
}

/* Enhanced Plan Cards for Different Durations */
.duration-daily .plan-card {
    border-left: 4px solid #fbbf24;
}

.duration-night .plan-card {
    border-left: 4px solid #6366f1;
}

.duration-24hours .plan-card {
    border-left: 4px solid #10b981;
}

.duration-weekly .plan-card {
    border-left: 4px solid #8b5cf6;
}

.duration-monthly .plan-card {
    border-left: 4px solid var(--primary-orange);
}

/* Plan Card Hover Effects for Different Durations */
.duration-daily .plan-card:hover {
    box-shadow: 0 15px 35px rgba(251, 191, 36, 0.2);
}

.duration-night .plan-card:hover {
    box-shadow: 0 15px 35px rgba(99, 102, 241, 0.2);
}

.duration-24hours .plan-card:hover {
    box-shadow: 0 15px 35px rgba(16, 185, 129, 0.2);
}

.duration-weekly .plan-card:hover {
    box-shadow: 0 15px 35px rgba(139, 92, 246, 0.2);
}

.duration-monthly .plan-card:hover {
    box-shadow: 0 15px 35px rgba(255, 107, 53, 0.2);
}

/* Special Styling for Popular Badges in Different Durations */
.duration-night .popular-badge {
    background: #6366f1;
}

.duration-24hours .popular-badge {
    background: #10b981;
}

.duration-weekly .popular-badge {
    background: #8b5cf6;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.coverage-card,
.plan-card,
.feature-card {
    animation: fadeInUp 0.6s ease forwards;
}

/* Smooth scrolling for all browsers */
html {
    scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-orange);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-orange);
}

/* Custom Gradient Backgrounds with Wireless Icons for Plan Cards */
.plan-image {
    position: relative;
    height: 180px; /* Reduced from 200px */
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Gradient backgrounds for different plan types */
.duration-24hours .plan-card .plan-image {
    background: linear-gradient(135deg, #10b981 0%, #059669 50%, #047857 100%);
}

.duration-weekly .plan-card .plan-image {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 50%, #6d28d9 100%);
}

.duration-daily .plan-card .plan-image {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 50%, #d97706 100%);
}

.duration-night .plan-card .plan-image {
    background: linear-gradient(135deg, #6366f1 0%, #4f46e5 50%, #4338ca 100%);
}

.duration-enterprise-24hours .plan-card .plan-image,
.duration-enterprise-weekly .plan-card .plan-image {
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--accent-orange) 50%, #ea580c 100%);
}

/* White wireless icons overlay */
.plan-image::before {
    content: '\f1eb'; /* WiFi icon */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 3.5rem; /* Reduced from 4rem */
    color: rgba(255, 255, 255, 0.9);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Different icons for different plan types */
.duration-24hours .plan-card .plan-image::before {
    content: '\f1eb'; /* WiFi icon */
}

.duration-weekly .plan-card .plan-image::before {
    content: '\f0c2'; /* Cloud icon */
}

.duration-daily .plan-card .plan-image::before {
    content: '\f0ac'; /* Globe icon */
}

.duration-night .plan-card .plan-image::before {
    content: '\f186'; /* Moon icon */
}

.duration-enterprise-24hours .plan-card .plan-image::before,
.duration-enterprise-weekly .plan-card .plan-image::before {
    content: '\f0e8'; /* Sitemap/Network icon */
}

/* Hide the original images */
.plan-img {
    display: none;
}

/* Add subtle animation to icons */
.plan-image::before {
    animation: iconPulse 3s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.9;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.05);
        opacity: 1;
    }
}

/* Enhanced Mobile Responsive Design */
@media (max-width: 1024px) {
    .hero-container {
        gap: 3rem;
    }
    
    .hero-title {
        font-size: 2.8rem; /* Reduced from 3rem */
    }
    
    .features-cta-content {
        gap: 3rem;
    }
    
    .pricing-selector {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Critical Mobile Text Visibility */
@media (max-width: 768px) {
    .hero::before {
        background: rgba(0, 0, 0, 0.6); /* Darker overlay for mobile */
    }
    
    .hero-title,
    .hero-subtitle {
        color: white !important;
        text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.9) !important;
        opacity: 1 !important;
    }
}

@media (max-width: 480px) {
    .hero::before {
        background: rgba(0, 0, 0, 0.7); /* Even darker for very small screens */
    }
}

/* WhatsApp Chat Button */
.whatsapp-chat {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    background: #25d366;
    color: white;
    border-radius: 50px;
    padding: 15px 20px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    animation: whatsappPulse 2s infinite;
}

.whatsapp-chat:hover {
    background: #128c7e;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
    color: white;
    text-decoration: none;
}

.whatsapp-chat i {
    font-size: 1.5rem;
    color: white;
}

.whatsapp-text {
    white-space: nowrap;
}

@keyframes whatsappPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
    }
}

/* WhatsApp Chat Mobile Responsive */
@media (max-width: 768px) {
    .whatsapp-chat {
        bottom: 15px;
        right: 15px;
        padding: 12px 16px;
        font-size: 0.85rem;
    }
    
    .whatsapp-chat i {
        font-size: 1.3rem;
    }
    
    .whatsapp-text {
        display: none; /* Hide text on mobile, show only icon */
    }
}

@media (max-width: 480px) {
    .whatsapp-chat {
        bottom: 10px;
        right: 10px;
        padding: 10px;
        border-radius: 50%;
        width: 50px;
        height: 50px;
        justify-content: center;
    }
    
    .whatsapp-chat i {
        font-size: 1.2rem;
    }
} 

/* Contact Section - Ultra Small Mobile */
.contact {
    padding: 50px 0;
}

.contact-content {
    grid-template-columns: 1fr; /* Ensure single column on very small screens */
    gap: 1.5rem; /* Even smaller gap for very small screens */
}

.contact-form {
    padding: 1.25rem; /* Smaller padding for very small screens */
    order: 2;
}

.contact-branches {
    order: 1;
    gap: 1rem; /* Smaller gap between branch cards */
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 10px 12px; /* Smaller padding for very small screens */
    font-size: 0.9rem;
}

.branch-card {
    padding: 1rem; /* Smaller padding for very small screens */
}

.branch-card h4 {
    font-size: 1rem;
}

.branch-card p {
    font-size: 0.85rem;
} 