/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Mobile/Desktop popup overlay (call-to-pay) */
.site-popup-overlay {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 20000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
}
.site-popup-overlay.open {
    opacity: 1;
    pointer-events: auto;
}

/* Card for desktop */
.site-popup-card {
    background: #fff;
    width: 94%;
    max-width: 540px;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.35);
    overflow: hidden;
    transform: translateY(20px);
    animation: popupFadeIn 400ms ease forwards, popupRise 400ms cubic-bezier(.2,.8,.2,1) forwards;
    display: flex;
    flex-direction: column;
}

/* Full-screen for mobile */
@media (max-width: 768px) {
    .site-popup-card {
        width: 100%;
        /* Use CSS variable --vh to avoid mobile 100vh issues */
        height: calc(var(--vh, 1vh) * 100);
        border-radius: 0;
        max-width: none;
        display: flex;
        flex-direction: column;
        justify-content: space-between; /* make header/body/footer fill vertical space */
    }
}

.site-popup-header {
    background: #d32f2f; /* red header */
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 16px;
    text-align: center;
}
.site-popup-header .phone {
    font-weight: 700;
}
/* close button removed — keep this rule commented out intentionally
.site-popup-header .close-btn {
    background: transparent;
    border: none;
    color: #fff;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
}
*/

.site-popup-body {
    padding: 18px;
    overflow: auto; /* only this area scrolls */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1 1 auto; /* allow body to expand and fill available space */
}
.site-popup-body .logo {
    max-width: 140px;
    margin: 0 auto 10px;
    display: block;
}

/* Make the header phone clickable and visible */
.site-popup-header .phone .popup-phone {
    color: #fff;
    font-weight: 800;
    text-decoration: none;
}

/* Brand/logo link styling */
.brand-link { display: block; text-align: center; }
.brand-link .logo { cursor: pointer; }
/* Textual brand shown in popup when image is replaced (e.g. "of Spectrum") */
.popup-brand {
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    color: #333;
    margin: 0 auto 12px;
}
/* Small reseller note shown beneath the logo */
.brand-note {
    font-size: 13px;
    color: #666;
    margin: 8px 0 12px;
    text-align: center;
}
.site-popup-body h4 {
    text-align: center;
    margin-bottom: 8px;
}
.site-popup-body p {
    text-align: center;
    color: #444;
    margin-bottom: 16px;
}
.site-popup-body .call-btn {
    display: inline-block;
    width: 220px;
    margin: 12px auto 0;
}

.site-popup-footer {
    border-top: 1px solid rgba(0,0,0,0.06);
    padding: 12px;
    background: #fff;
}
.site-popup-footer .sticky-call {
    display: block;
    width: 100%;
    background: #d32f2f;
    color: #fff;
    padding: 14px 16px;
    text-align: center;
    font-weight: 700;
    border-radius: 8px;
    text-decoration: none;
}

/* Mobile: ensure footer sits flush at bottom inside the full-height card */
@media (max-width: 768px) {
    .site-popup-footer { padding: 14px; }
    .site-popup-footer .sticky-call { border-radius: 0; }
}

/* Nudge the bottom CTA up slightly on small devices so it's not flush with the viewport edge */
@media (max-width: 480px) {
    .site-popup-footer { padding-bottom: calc(env(safe-area-inset-bottom, 0px) + 10px); }
    .site-popup-footer .sticky-call {
        transform: translateY(-8px);
        box-shadow: 0 6px 18px rgba(0,0,0,0.18);
    }
}

/* Prevent background scroll when popup is open */
.no-scroll {
    overflow: hidden !important;
    height: 100vh !important;
}

/* Animations */
@keyframes popupFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
@keyframes popupRise {
    from { transform: translateY(20px) scale(.99); }
    to { transform: translateY(0) scale(1); }
}


/* Font Awesome Icon Fixes */
.fas, .far, .fab, .fa {
    font-family: "Font Awesome 6 Free", "Font Awesome 6 Pro", "Font Awesome 6 Brands" !important;
    font-weight: 900;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Ensure icons are visible */
i[class*="fa-"] {
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
}

/* Force icon visibility with fallback */
.fas, .far, .fab, .fa, i[class*="fa-"] {
    font-family: "Font Awesome 6 Free", "Font Awesome 6 Pro", "Font Awesome 6 Brands", "FontAwesome" !important;
    font-weight: 900 !important;
    font-style: normal !important;
    display: inline-block !important;
    text-decoration: none !important;
    text-rendering: auto !important;
    -webkit-font-smoothing: antialiased !important;
    -moz-osx-font-smoothing: grayscale !important;
}

/* Specific icon fixes for common icons */
.fa-phone::before { content: "\f095"; }
.fa-envelope::before { content: "\f0e0"; }
.fa-wifi::before { content: "\f1eb"; }
.fa-tv::before { content: "\f26c"; }
.fa-check::before { content: "\f00c"; }
.fa-phone-alt::before { content: "\f879"; }
.fa-shield-alt::before { content: "\f3ed"; }
.fa-clock::before { content: "\f017"; }
.fa-cog::before { content: "\f013"; }
.fa-dollar-sign::before { content: "\f155"; }
.fa-mobile-alt::before { content: "\f3cd"; }
.fa-id-card::before { content: "\f2c2"; }
.fa-pause::before { content: "\f04c"; }
.fa-voicemail::before { content: "\f897"; }
.fa-phone-volume::before { content: "\f2a0"; }
.fa-forward::before { content: "\f04e"; }
.fa-ban::before { content: "\f05e"; }
.fa-check-circle::before { content: "\f058"; }
.fa-chevron-down::before { content: "\f078"; }
.fa-headset::before { content: "\f590"; }
.fa-project-diagram::before { content: "\f542"; }
.fa-broadcast-tower::before { content: "\f519"; }
.fa-users::before { content: "\f0c0"; }
.fa-smile::before { content: "\f118"; }

/* Mobile-First Responsive Design */
html {
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    /* Ensure smooth slide down animation */
    will-change: transform, opacity;
    /* Better touch scrolling on mobile */
    -webkit-overflow-scrolling: touch;
}

/* Ensure content is visible by default */
body {
    visibility: visible;
}

/* Mobile Touch Improvements */
.btn, .nav-link, .dropdown-item {
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Better touch targets */
    touch-action: manipulation;
}

/* Prevent zoom on input focus on iOS */
@media screen and (-webkit-min-device-pixel-ratio: 0) {
    select, textarea, input[type="text"], input[type="password"], 
    input[type="datetime"], input[type="datetime-local"], 
    input[type="date"], input[type="month"], input[type="time"], 
    input[type="week"], input[type="number"], input[type="email"], 
    input[type="url"], input[type="search"], input[type="tel"], 
    input[type="color"] {
        font-size: 16px;
    }
}

/* Animation Keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes rotateIn {
    from {
        opacity: 0;
        transform: rotate(-180deg);
    }
    to {
        opacity: 1;
        transform: rotate(0deg);
    }
}

/* Animation Classes */
.animate-on-scroll {
    opacity: 0;
    transition: all 0.6s ease-out;
}

.animate-on-scroll.animated {
    opacity: 1;
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

.fade-in-left {
    animation: fadeInLeft 0.8s ease-out forwards;
}

.fade-in-right {
    animation: fadeInRight 0.8s ease-out forwards;
}

.fade-in {
    animation: fadeIn 0.8s ease-out forwards;
}

.slide-in-down {
    animation: slideInDown 0.8s ease-out forwards;
}

.scale-in {
    animation: scaleIn 0.8s ease-out forwards;
}

.bounce-in {
    animation: bounceIn 0.8s ease-out forwards;
}

.slide-in-up {
    animation: slideInUp 0.8s ease-out forwards;
}

.rotate-in {
    animation: rotateIn 0.8s ease-out forwards;
}

/* Page Load Animations */
.page-load {
    opacity: 0;
    animation: fadeIn 1s ease-out forwards;
}

.hero-load {
    opacity: 0;
    animation: slideInDown 1.2s ease-out forwards;
}

.content-load {
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.3s forwards;
}

/* Staggered Animations */
.stagger-1 { animation-delay: 0.1s; }
.stagger-2 { animation-delay: 0.2s; }
.stagger-3 { animation-delay: 0.3s; }
.stagger-4 { animation-delay: 0.4s; }
.stagger-5 { animation-delay: 0.5s; }
.stagger-6 { animation-delay: 0.6s; }

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    /* Ensure smooth slide down animation */
    will-change: transform, opacity;
}

/* Ensure content is visible by default */
body {
    visibility: visible;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.header .container {
    max-width: 100%;
    padding: 0;
    margin: 0;
}

/* Bootstrap Overrides */
.navbar-brand h2 {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f39c12 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 32px;
    font-weight: bold;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: relative;
}

.navbar-brand h2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f39c12 100%);
    border-radius: 8px;
    padding: 5px 15px;
    z-index: -1;
    opacity: 0.1;
    transition: opacity 0.3s ease;
}

.navbar-brand h2:hover {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

.navbar-brand h2:hover::before {
    opacity: 0.2;
}

.navbar-nav .nav-link {
    color: #333 !important;
    font-weight: 500;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #3498db !important;
}

.dropdown-menu {
    border: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-radius: 5px;
}

.dropdown-item {
    padding: 10px 20px;
    border-bottom: 1px solid #f0f0f0;
}

.dropdown-item:hover {
    background: #f8f9fa;
}

.card {
    border: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-10px);
}

.btn {
    border-radius: 5px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-color: #667eea;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #5a6fd8 0%, #6a4190 100%);
    border-color: #5a6fd8;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #667eea;
    border-color: white;
}

.form-control:focus,
.form-select:focus {
    border-color: #3498db;
    box-shadow: 0 0 0 0.2rem rgba(52, 152, 219, 0.25);
}

.nav-tabs .nav-link {
    border: 2px solid #3498db;
    background: transparent;
    color: #3498db;
    border-radius: 5px;
    margin: 0 10px;
}

.nav-tabs .nav-link.active {
    background: #3498db;
    color: white;
    border-color: #3498db;
}

.progress {
    height: 20px;
    border-radius: 10px;
    background: #e0e0e0;
}

.progress-bar {
    background: linear-gradient(90deg, #3498db, #2ecc71);
    border-radius: 10px;
}

/* Price Highlight Styles */
.price-highlight {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 1.2rem;
    font-weight: bold;
    margin: 15px 0;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

/* Header Styles */
.header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    left: 0;
    right: 0;
}

.header-top {
    background: #2c3e50;
    color: white;
    padding: 10px 0;
    font-size: 14px;
    width: 100%;
    margin: 0;
}

.contact-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.contact-info a {
    color: #3498db;
    text-decoration: none;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-brand h2 {
    color: #2c3e50;
    font-size: 28px;
    font-weight: bold;
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
}

.nav-menu li {
    margin: 0 15px;
    position: relative;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #3498db;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-radius: 5px;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    list-style: none;
    padding: 10px 0;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    padding: 10px 20px;
    display: block;
    border-bottom: 1px solid #f0f0f0;
}

.dropdown-menu a:hover {
    background: #f8f9fa;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 150px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-text h1 span {
    color: #f39c12;
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn {
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #5a6fd8 0%, #6a4190 100%);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #667eea;
}

.hero-shapes {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
}

.shape-1 {
    width: 200px;
    height: 200px;
    top: 20%;
    right: 10%;
    animation: float 6s ease-in-out infinite;
}

.shape-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 30%;
    animation: float 4s ease-in-out infinite reverse;
}

.shape-3 {
    width: 100px;
    height: 100px;
    top: 40%;
    right: 50%;
    animation: float 5s ease-in-out infinite;
}

.shape-4 {
    width: 80px;
    height: 80px;
    top: 80%;
    right: 20%;
    animation: float 3s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* About Section */
.about-section {
    padding: 100px 0;
    background: #f8f9fa;
}

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

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #2c3e50;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #666;
}

.features {
    display: flex;
    gap: 30px;
    margin: 30px 0;
}

.feature {
    text-align: center;
}

.feature i {
    font-size: 3rem;
    color: #3498db;
    margin-bottom: 15px;
}

.feature h3 {
    font-size: 1.2rem;
    color: #2c3e50;
}

.about-shapes {
    position: relative;
    height: 400px;
}

.about-shapes .shape {
    background: linear-gradient(45deg, #3498db, #2ecc71);
}

/* Stats Section */
.stats-section {
    padding: 80px 0;
    background: #2c3e50;
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-item i {
    font-size: 3rem;
    color: #3498db;
    margin-bottom: 20px;
}

.stat-item h3 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.stat-item p {
    font-size: 1.1rem;
    opacity: 0.8;
}

/* Services Section */
.services-section {
    padding: 100px 0;
    background: white;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 20px;
}

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

.service-card {
    text-align: center;
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-card i {
    font-size: 4rem;
    color: #3498db;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

.service-card p {
    color: #666;
    margin-bottom: 25px;
    line-height: 1.6;
}

/* Company Section */
.company-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.company-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.company-text h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 40px;
}

.company-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.tab-btn {
    padding: 15px 30px;
    border: 2px solid #3498db;
    background: transparent;
    color: #3498db;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: bold;
}

.tab-btn.active,
.tab-btn:hover {
    background: #3498db;
    color: white;
}

.tab-content {
    display: none;
    text-align: left;
}

.tab-content.active {
    display: block;
}

.tab-content p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.progress-bar {
    position: relative;
    background: #e0e0e0;
    height: 20px;
    border-radius: 10px;
    margin: 20px 0;
    overflow: hidden;
}

.progress-fill {
    background: linear-gradient(90deg, #3498db, #2ecc71);
    height: 100%;
    border-radius: 10px;
    transition: width 0.3s ease;
}

.progress-bar span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-weight: bold;
    font-size: 12px;
}

/* Case Studies Section */
.case-studies-section {
    padding: 100px 0;
    background: white;
}

.case-studies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.case-study-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.case-study-card:hover {
    transform: translateY(-5px);
}

.case-study-image {
    height: 200px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.case-study-overlay {
    position: absolute;
    top: 20px;
    left: 20px;
}

.category {
    background: rgba(255,255,255,0.9);
    color: #333;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
}

.case-study-content {
    padding: 30px;
}

.case-study-content h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 15px;
}

.case-study-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 60px 0 20px;
}

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 20px;
    color: #3498db;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #3498db;
}

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #3498db;
}

/* Enhanced Mobile Responsive Design */
@media (max-width: 768px) {
    /* Header and Navigation */
    .header-top {
        padding: 8px 0;
        font-size: 12px;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 8px;
        text-align: center;
        padding: 0 10px;
    }
    
    .contact-info span {
        display: block;
        margin: 2px 0;
    }
    
    .navbar-brand h2 {
        font-size: 24px;
    }
    
    .navbar-collapse {
        background: white;
        margin-top: 10px;
        padding: 20px;
        border-radius: 5px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }
    
    .navbar-nav {
        text-align: center;
    }
    
    .navbar-nav .nav-item {
        margin: 10px 0;
    }
    
    .dropdown-menu {
        position: static !important;
        transform: none !important;
        box-shadow: none;
        background: #f8f9fa;
        margin-top: 10px;
        border: none;
    }
    
    /* Hero Section */
    .hero {
        padding: 120px 0 80px;
    }
    
    .hero-text h1 {
        font-size: 2.2rem;
        line-height: 1.2;
        margin-bottom: 15px;
    }
    
    .hero-text p {
        font-size: 1rem;
        margin-bottom: 25px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
        padding: 12px 20px;
        font-size: 16px;
    }
    
    /* About Section */
    .about-section {
        padding: 60px 0;
    }
    
    .about-text h2 {
        font-size: 2rem;
        margin-bottom: 15px;
    }
    
    .about-text p {
        font-size: 1rem;
        margin-bottom: 20px;
    }
    
    .features {
        flex-direction: column;
        gap: 20px;
        margin: 20px 0;
    }
    
    .feature {
        text-align: center;
        padding: 20px;
        background: white;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }
    
    /* Stats Section */
    .stats-section {
        padding: 60px 0;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .stat-item {
        text-align: center;
        padding: 20px;
    }
    
    .stat-item h3 {
        font-size: 2.5rem;
    }
    
    /* Services Section */
    .services-section {
        padding: 60px 0;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .service-card {
        padding: 30px 20px;
    }
    
    .service-card h3 {
        font-size: 1.3rem;
    }
    
    .service-card p {
        font-size: 0.9rem;
    }
    
    /* Company Section */
    .company-section {
        padding: 60px 0;
    }
    
    .company-text h2 {
        font-size: 2rem;
        margin-bottom: 30px;
    }
    
    .company-tabs {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .tab-btn {
        width: 100%;
        max-width: 300px;
        padding: 12px 20px;
        font-size: 14px;
    }
    
    /* Case Studies Section */
    .case-studies-section {
        padding: 60px 0;
    }
    
    .case-studies-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .case-study-card {
        margin-bottom: 30px;
    }
    
    .case-study-content {
        padding: 25px 20px;
    }
    
    .case-study-content h3 {
        font-size: 1.3rem;
    }
    
    .case-study-content p {
        font-size: 0.9rem;
    }
    
    /* Footer */
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-section {
        margin-bottom: 30px;
        text-align: center;
    }
    
    .footer-section h3,
    .footer-section h4 {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }
    
    .footer-section p {
        font-size: 0.9rem;
        margin-bottom: 10px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .footer-links {
        justify-content: center;
        gap: 20px;
    }
    
    /* Form Elements */
    .form-group {
        margin-bottom: 20px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        width: 100%;
        padding: 12px;
        font-size: 16px;
    }
    
    /* Cards and Content */
    .card {
        margin-bottom: 20px;
    }
    
    .card-body {
        padding: 20px;
    }
    
    .card-title {
        font-size: 1.2rem;
    }
    
    .card-text {
        font-size: 0.9rem;
    }
    
    /* Tables */
    .table-responsive {
        font-size: 0.8rem;
    }
    
    /* Bundle Section Mobile */
    .bundle-section {
        padding: 40px 0;
    }
    
    .bundle-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .bundle-text h2 {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }
    
    .bundle-text p {
        font-size: 0.9rem;
        margin-bottom: 20px;
        line-height: 1.5;
    }
    
    .bundle-benefits {
        gap: 12px;
        margin-bottom: 25px;
        align-items: center;
    }
    
    .benefit {
        justify-content: center;
        gap: 10px;
        padding: 8px 0;
    }
    
    .benefit i {
        font-size: 1rem;
    }
    
    .benefit span {
        font-size: 0.9rem;
    }
    
    .bundle-visual {
        order: -1;
        margin-bottom: 20px;
    }
    
    .service-icon {
        padding: 20px 15px;
        margin-bottom: 15px;
    }
    
    .service-icon i {
        font-size: 2rem;
        margin-bottom: 10px;
    }
    
    .service-icon span {
        font-size: 0.9rem;
    }
    
    
    /* Utility Classes */
    .text-center-mobile {
        text-align: center;
    }
    
    .mb-mobile {
        margin-bottom: 20px;
    }
    
    .px-mobile {
        padding-left: 15px;
        padding-right: 15px;
    }
}

/* Extra Small Mobile Devices */
@media (max-width: 480px) {
    /* Header */
    .header-top {
        padding: 5px 0;
        font-size: 11px;
    }
    
    .contact-info {
        gap: 5px;
    }
    
    .navbar-brand h2 {
        font-size: 20px;
    }
    
    /* Hero Section */
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-text h1 {
        font-size: 1.8rem;
        line-height: 1.1;
        margin-bottom: 12px;
    }
    
    .hero-text p {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }
    
    .hero-buttons {
        gap: 12px;
    }
    
    .btn {
        padding: 10px 18px;
        font-size: 14px;
        width: 100%;
        max-width: 250px;
    }
    
    /* About Section */
    .about-section {
        padding: 40px 0;
    }
    
    .about-text h2 {
        font-size: 1.6rem;
        margin-bottom: 12px;
    }
    
    .about-text p {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }
    
    .feature {
        padding: 15px;
        margin-bottom: 15px;
    }
    
    .feature i {
        font-size: 2rem;
        margin-bottom: 10px;
    }
    
    .feature h3 {
        font-size: 1rem;
    }
    
    /* Stats Section */
    .stats-section {
        padding: 40px 0;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .stat-item {
        padding: 15px;
    }
    
    .stat-item i {
        font-size: 2rem;
        margin-bottom: 10px;
    }
    
    .stat-item h3 {
        font-size: 2rem;
        margin-bottom: 8px;
    }
    
    .stat-item p {
        font-size: 0.9rem;
    }
    
    /* Services Section */
    .services-section {
        padding: 40px 0;
    }
    
    .service-card {
        padding: 20px 15px;
        margin-bottom: 20px;
    }
    
    .service-card i {
        font-size: 2.5rem;
        margin-bottom: 15px;
    }
    
    .service-card h3 {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }
    
    .service-card p {
        font-size: 0.85rem;
        margin-bottom: 15px;
    }
    
    .price-highlight {
        font-size: 1rem;
        padding: 8px 15px;
        margin: 10px 0;
    }
    
    /* Company Section */
    .company-section {
        padding: 40px 0;
    }
    
    .company-text h2 {
        font-size: 1.6rem;
        margin-bottom: 20px;
    }
    
    .tab-btn {
        width: 100%;
        padding: 10px 15px;
        font-size: 13px;
        margin-bottom: 10px;
    }
    
    .tab-content p {
        font-size: 0.9rem;
    }
    
    /* Case Studies Section */
    .case-studies-section {
        padding: 40px 0;
    }
    
    .case-study-card {
        margin-bottom: 20px;
    }
    
    .case-study-content {
        padding: 20px 15px;
    }
    
    .case-study-content h3 {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }
    
    .case-study-content p {
        font-size: 0.85rem;
        margin-bottom: 15px;
    }
    
    /* Footer */
    .footer {
        padding: 30px 0 15px;
    }
    
    .footer-section {
        margin-bottom: 25px;
    }
    
    .footer-section h3,
    .footer-section h4 {
        font-size: 1.1rem;
        margin-bottom: 12px;
    }
    
    .footer-section p {
        font-size: 0.85rem;
        margin-bottom: 8px;
    }
    
    .footer-section ul {
        font-size: 0.85rem;
    }
    
    .footer-section li {
        margin-bottom: 8px;
    }
    
    .footer-bottom {
        gap: 10px;
    }
    
    .footer-bottom p {
        font-size: 0.8rem;
        line-height: 1.4;
    }
    
    .footer-links {
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .footer-links a {
        font-size: 0.8rem;
    }
    
    /* Form Elements */
    .form-group {
        margin-bottom: 15px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 10px;
        font-size: 14px;
    }
    
    .form-group label {
        font-size: 0.9rem;
        margin-bottom: 5px;
    }
    
    /* Cards and Content */
    .card {
        margin-bottom: 15px;
    }
    
    .card-body {
        padding: 15px;
    }
    
    .card-title {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }
    
    .card-text {
        font-size: 0.85rem;
        margin-bottom: 10px;
    }
    
    /* Tables */
    .table-responsive {
        font-size: 0.75rem;
    }
    
    .table th,
    .table td {
        padding: 8px 4px;
    }
    
    /* Utility Classes */
    .container {
        padding: 0 10px;
    }
    
    .section-header h2 {
        font-size: 1.6rem;
        margin-bottom: 15px;
    }
    
    .section-header p {
        font-size: 0.9rem;
    }
    
    /* Plan Pricing */
    .plan-price .amount {
        font-size: 2rem;
    }
    
    .plan-price .currency {
        font-size: 1.2rem;
    }
    
    .plan-price .period {
        font-size: 0.9rem;
    }
    
    /* FAQ Section */
    .faq-question h3 {
        font-size: 1rem;
    }
    
    .faq-answer p {
        font-size: 0.85rem;
    }
    
    /* Contact Info Cards */
    .contact-info-card {
        padding: 20px 15px;
    }
    
    .contact-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-bottom: 15px;
    }
    
    .contact-info-card h3 {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }
    
    .contact-info-card p {
        font-size: 0.85rem;
        margin-bottom: 8px;
    }
    
    /* Business Hours */
    .hours-card {
        padding: 20px 15px;
    }
    
    .hours-card h3 {
        font-size: 1.1rem;
        margin-bottom: 15px;
    }
    
    .hours-item {
        padding: 8px 0;
    }
    
    .day {
        font-size: 0.9rem;
    }
    
    .time {
        font-size: 0.85rem;
    }
    
    /* Bundle Section Extra Small Mobile */
    .bundle-section {
        padding: 30px 0;
    }
    
    .bundle-content {
        gap: 20px;
    }
    
    .bundle-text h2 {
        font-size: 1.5rem;
        margin-bottom: 12px;
    }
    
    .bundle-text p {
        font-size: 0.85rem;
        margin-bottom: 15px;
        line-height: 1.4;
    }
    
    .bundle-benefits {
        gap: 10px;
        margin-bottom: 20px;
    }
    
    .benefit {
        gap: 8px;
        padding: 6px 0;
    }
    
    .benefit i {
        font-size: 0.9rem;
    }
    
    .benefit span {
        font-size: 0.85rem;
    }
    
    .bundle-visual {
        margin-bottom: 15px;
    }
    
    .service-icon {
        padding: 15px 10px;
        margin-bottom: 10px;
    }
    
    .service-icon i {
        font-size: 1.5rem;
        margin-bottom: 8px;
    }
    
    .service-icon span {
        font-size: 0.8rem;
    }
}

/* Tablet and Medium Screen Support */
@media (min-width: 481px) and (max-width: 1024px) {
    /* Header */
    .header-top {
        padding: 10px 0;
        font-size: 13px;
    }
    
    .contact-info {
        gap: 15px;
    }
    
    .navbar-brand h2 {
        font-size: 26px;
    }
    
    /* Hero Section */
    .hero {
        padding: 130px 0 90px;
    }
    
    .hero-text h1 {
        font-size: 2.8rem;
        line-height: 1.2;
    }
    
    .hero-text p {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: row;
        justify-content: center;
        gap: 20px;
    }
    
    .btn {
        padding: 14px 25px;
        font-size: 16px;
        width: auto;
        max-width: 200px;
    }
    
    /* About Section */
    .about-section {
        padding: 80px 0;
    }
    
    .about-text h2 {
        font-size: 2.2rem;
    }
    
    .features {
        flex-direction: row;
        gap: 30px;
        justify-content: center;
    }
    
    .feature {
        flex: 1;
        max-width: 300px;
    }
    
    /* Stats Section */
    .stats-section {
        padding: 80px 0;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    /* Services Section */
    .services-section {
        padding: 80px 0;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    .service-card {
        padding: 35px 25px;
    }
    
    /* Company Section */
    .company-section {
        padding: 80px 0;
    }
    
    .company-text h2 {
        font-size: 2.2rem;
    }
    
    .company-tabs {
        flex-direction: row;
        justify-content: center;
        gap: 20px;
    }
    
    .tab-btn {
        width: auto;
        padding: 15px 25px;
        font-size: 15px;
    }
    
    /* Case Studies Section */
    .case-studies-section {
        padding: 80px 0;
    }
    
    .case-studies-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    /* Footer */
    .footer {
        padding: 60px 0 30px;
    }
    
    .footer-section {
        margin-bottom: 40px;
    }
    
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    
    /* Form Elements */
    .form-group {
        margin-bottom: 25px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 14px;
        font-size: 16px;
    }
    
    /* Cards and Content */
    .card {
        margin-bottom: 25px;
    }
    
    .card-body {
        padding: 25px;
    }
    
    /* Tables */
    .table-responsive {
        font-size: 0.9rem;
    }
    
    .table th,
    .table td {
        padding: 12px 8px;
    }
    
    /* Bundle Section Tablet */
    .bundle-section {
        padding: 60px 0;
    }
    
    .bundle-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        align-items: center;
    }
    
    .bundle-text h2 {
        font-size: 2rem;
        margin-bottom: 18px;
    }
    
    .bundle-text p {
        font-size: 1rem;
        margin-bottom: 25px;
    }
    
    .bundle-benefits {
        gap: 15px;
        margin-bottom: 25px;
    }
    
    .benefit {
        gap: 12px;
        padding: 10px 0;
    }
    
    .benefit i {
        font-size: 1.1rem;
    }
    
    .benefit span {
        font-size: 0.95rem;
    }
    
    .service-icon {
        padding: 25px 20px;
        margin-bottom: 20px;
    }
    
    .service-icon i {
        font-size: 2.5rem;
        margin-bottom: 12px;
    }
    
    .service-icon span {
        font-size: 0.95rem;
    }
}

/* Large Mobile and Small Tablet */
@media (min-width: 769px) and (max-width: 1024px) {
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .case-studies-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .features {
        flex-direction: row;
        gap: 40px;
    }
}

/* High DPI Mobile Devices */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .hero-text h1 {
        font-weight: 600;
    }
    
    .btn {
        font-weight: 600;
    }
    
    .navbar-brand h2 {
        font-weight: 700;
    }
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 150px 0 80px;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Plans Section */
.plans-section {
    padding: 100px 0;
    background: #f8f9fa;
}

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

.plan-card {
    background: white;
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    position: relative;
}

.plan-card:hover {
    transform: translateY(-10px);
}

.plan-card.featured {
    border: 3px solid #3498db;
    transform: scale(1.05);
}

.plan-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: bold;
}

.plan-header h3 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 20px;
}

.plan-price {
    margin-bottom: 30px;
}

.plan-price .currency {
    font-size: 1.5rem;
    color: #3498db;
    vertical-align: top;
}

.plan-price .amount {
    font-size: 3rem;
    font-weight: bold;
    color: #2c3e50;
}

.plan-price .period {
    font-size: 1rem;
    color: #666;
}

.plan-features ul {
    list-style: none;
    margin-bottom: 30px;
}

.plan-features li {
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.plan-features i {
    color: #27ae60;
    font-size: 1.2rem;
}

/* Internet Types Section */
.internet-types-section {
    padding: 100px 0;
    background: white;
}

.types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.type-card {
    text-align: center;
    padding: 40px 20px;
    border-radius: 10px;
    background: #f8f9fa;
    transition: transform 0.3s ease;
}

.type-card:hover {
    transform: translateY(-5px);
    background: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.type-card i {
    font-size: 3rem;
    color: #3498db;
    margin-bottom: 20px;
}

.type-card h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 15px;
}

.type-card p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.type-card ul {
    list-style: none;
    text-align: left;
}

.type-card li {
    padding: 5px 0;
    color: #666;
    position: relative;
    padding-left: 20px;
}

.type-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
}

/* Speed Test Section */
.speed-test-section {
    padding: 100px 0;
    background: #f8f9fa;
}

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

.speed-test-text h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 20px;
}

.speed-test-text p {
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.speed-test-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.speed-test-features .feature {
    display: flex;
    align-items: center;
    gap: 15px;
}

.speed-test-features i {
    color: #3498db;
    font-size: 1.5rem;
}

.speed-test-display {
    display: flex;
    justify-content: center;
    align-items: center;
}

.speed-meter {
    text-align: center;
}

.speed-circle {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: linear-gradient(45deg, #3498db, #2ecc71);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    margin-bottom: 20px;
    position: relative;
}

.speed-circle::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
}

.speed-value {
    font-size: 3rem;
    font-weight: bold;
    z-index: 1;
}

.speed-unit {
    font-size: 1rem;
    z-index: 1;
}

.speed-status {
    color: #666;
    font-size: 1.1rem;
}

/* Coverage Section */
.coverage-section {
    padding: 100px 0;
    background: white;
}

.coverage-form {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.form-group {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.form-group input {
    flex: 1;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    font-size: 1rem;
}

.form-group input:focus {
    outline: none;
    border-color: #3498db;
}

.coverage-results {
    margin-top: 30px;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 10px;
    text-align: left;
}

.coverage-available h3 {
    color: #27ae60;
    margin-bottom: 20px;
}

.available-services {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 20px 0;
}

.service-available {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: white;
    border-radius: 5px;
}

.service-available i {
    color: #3498db;
    font-size: 1.5rem;
}

/* Features Section */
.features-section {
    padding: 100px 0;
    background: #f8f9fa;
}

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

.feature-card {
    background: white;
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card i {
    font-size: 3rem;
    color: #3498db;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 15px;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}

/* Calling Features Section */
.calling-features-section {
    padding: 100px 0;
    background: white;
}

.calling-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.calling-feature {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.calling-feature:hover {
    transform: translateY(-5px);
    background: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.feature-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: #3498db;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.feature-content h3 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 10px;
}

.feature-content p {
    color: #666;
    line-height: 1.6;
}

/* Bundle Section */
.bundle-section {
    padding: 100px 0;
    background: #f8f9fa;
}

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

.bundle-text h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 20px;
}

.bundle-text p {
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.bundle-benefits {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.benefit {
    display: flex;
    align-items: center;
    gap: 15px;
}

.benefit i {
    color: #27ae60;
    font-size: 1.2rem;
}

.bundle-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.service-icon {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.service-icon:hover {
    transform: translateY(-10px);
}

.service-icon i {
    font-size: 3rem;
    color: #3498db;
    margin-bottom: 15px;
}

.service-icon span {
    display: block;
    font-weight: bold;
    color: #2c3e50;
}

/* About Hero Section */
.about-hero-section {
    padding: 100px 0;
    background: white;
}

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

.about-hero-text h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 20px;
}

.about-hero-text p {
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.about-stats {
    display: flex;
    gap: 40px;
}

.stat {
    text-align: center;
}

.stat h3 {
    font-size: 2.5rem;
    color: #3498db;
    margin-bottom: 10px;
}

.stat p {
    color: #666;
    font-weight: bold;
}

.about-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

/* Mission Section */
.mission-section {
    padding: 100px 0;
    background: #f8f9fa;
}

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

.mission-card {
    background: white;
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.mission-card:hover {
    transform: translateY(-5px);
}

.mission-icon {
    width: 80px;
    height: 80px;
    background: #3498db;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 2rem;
}

.mission-card h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 15px;
}

.mission-card p {
    color: #666;
    line-height: 1.6;
}

/* Why Choose Section */
.why-choose-section {
    padding: 100px 0;
    background: white;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.why-choose-item {
    text-align: center;
    padding: 30px;
}

.why-choose-icon {
    width: 80px;
    height: 80px;
    background: #3498db;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 2rem;
}

.why-choose-item h3 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 15px;
}

.why-choose-item p {
    color: #666;
    line-height: 1.6;
}

/* Team Section */
.team-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.team-member {
    background: white;
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

.member-photo {
    width: 100px;
    height: 100px;
    background: #3498db;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 2.5rem;
}

.team-member h3 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 15px;
}

.team-member p {
    color: #666;
    line-height: 1.6;
}

/* Process Section */
.process-section {
    padding: 100px 0;
    background: white;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.process-step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: #3498db;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
}

.step-content h3 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 15px;
}

.step-content p {
    color: #666;
    line-height: 1.6;
}

/* Testimonials Section */
.testimonials-section {
    padding: 100px 0;
    background: #f8f9fa;
}

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

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-content {
    margin-bottom: 20px;
}

.testimonial-content p {
    color: #666;
    line-height: 1.6;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.author-info h4 {
    color: #2c3e50;
    margin-bottom: 5px;
}

.author-info span {
    color: #666;
    font-size: 0.9rem;
}

.rating {
    color: #f39c12;
}

/* Contact Info Section */
.contact-info-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.contact-info-card {
    background: white;
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-5px);
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: #3498db;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 2rem;
}

.contact-info-card h3 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 15px;
}

.contact-info-card p {
    color: #666;
    margin-bottom: 10px;
}

.contact-info-card a {
    color: #3498db;
    text-decoration: none;
    font-weight: bold;
}

.contact-info-card span {
    color: #666;
    font-size: 0.9rem;
}

/* Contact Form Section */
.contact-form-section {
    padding: 100px 0;
    background: white;
}

.contact-form-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
}

.contact-form-text h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 20px;
}

.contact-form-text p {
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.contact-benefits {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form-container {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 10px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 8px;
    color: #2c3e50;
    font-weight: bold;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3498db;
}

.checkbox-group {
    flex-direction: row;
    align-items: flex-start;
    gap: 10px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 0.9rem;
    line-height: 1.4;
}

.checkbox-label input[type="checkbox"] {
    margin: 0;
    width: auto;
}

.checkbox-label a {
    color: #3498db;
    text-decoration: none;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

.btn-large {
    padding: 18px 40px;
    font-size: 1.1rem;
}

/* Business Hours Section */
.business-hours-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.business-hours-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.business-hours-text h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 20px;
}

.business-hours-text p {
    color: #666;
    margin-bottom: 40px;
}

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

.hours-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.hours-card h3 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 20px;
    text-align: center;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
}

.hours-item:last-child {
    border-bottom: none;
}

.day {
    font-weight: bold;
    color: #2c3e50;
}

.time {
    color: #666;
}

/* FAQ Styles */
.faq-section {
    padding: 100px 0;
    background: white;
}

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

.faq-item {
    border-bottom: 1px solid #e0e0e0;
    margin-bottom: 20px;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    cursor: pointer;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: #3498db;
}

.faq-question h3 {
    font-size: 1.2rem;
    color: #2c3e50;
}

.faq-question i {
    color: #3498db;
    transition: transform 0.3s ease;
}

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

.faq-answer p {
    color: #666;
    line-height: 1.6;
    padding-bottom: 20px;
}

.faq-item.active .faq-question {
    color: #3498db;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-section .btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
}

.cta-section .btn:hover {
    background: linear-gradient(135deg, #5a6fd8 0%, #6a4190 100%);
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-40 {
    margin-bottom: 40px;
}

.mt-20 {
    margin-top: 20px;
}

.mt-40 {
    margin-top: 40px;
}

/* ===========================================
   ENHANCED STYLING FOR POLICY & PROVIDER PAGES
   =========================================== */

/* Disclaimer Banner */
.disclaimer-banner {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    padding: 20px 0;
    margin: 0;
}

.disclaimer-banner .alert {
    background: transparent;
    border: none;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    padding: 0;
}

.disclaimer-banner .alert strong {
    font-size: 1.2rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

/* Disclaimer Section */
.disclaimer-section {
    background: #f8f9fa;
    padding: 60px 0;
    border-top: 1px solid #e9ecef;
}

.disclaimer-content {
    max-width: 1000px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.disclaimer-content h4 {
    color: #2c3e50;
    font-size: 1.8rem;
    margin-bottom: 25px;
    text-align: center;
    border-bottom: 3px solid #3498db;
    padding-bottom: 15px;
}

.disclaimer-content p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 1rem;
}

.disclaimer-content strong {
    color: #2c3e50;
    font-weight: 600;
}

/* Policy Pages Styling */
.privacy-content-section,
.terms-content-section,
.refund-content-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.privacy-card,
.terms-card,
.refund-card {
    background: white;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.privacy-intro,
.terms-intro,
.refund-intro {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 40px;
    text-align: center;
}

.privacy-intro .lead,
.terms-intro .lead,
.refund-intro .lead {
    font-size: 1.3rem;
    margin: 0;
    line-height: 1.6;
}

.privacy-section,
.terms-section,
.refund-section {
    margin-bottom: 40px;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 15px;
    border-left: 5px solid #3498db;
}

.privacy-section h2,
.terms-section h2,
.refund-section h2 {
    color: #2c3e50;
    font-size: 1.6rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.privacy-section h2 i,
.terms-section h2 i,
.refund-section h2 i {
    color: #3498db;
    font-size: 1.8rem;
}

.privacy-section h3,
.terms-section h3,
.refund-section h3 {
    color: #2c3e50;
    font-size: 1.3rem;
    margin-bottom: 15px;
    margin-top: 25px;
}

.privacy-section h4,
.terms-section h4,
.refund-section h4 {
    color: #34495e;
    font-size: 1.2rem;
    margin-bottom: 12px;
    margin-top: 20px;
}

.privacy-section p,
.terms-section p,
.refund-section p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 15px;
}

.privacy-section ul,
.terms-section ul,
.refund-section ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.privacy-section li,
.terms-section li,
.refund-section li {
    color: #555;
    line-height: 1.6;
    margin-bottom: 8px;
}

/* Privacy Policy Specific Styles */
.eligible-list li,
.not-eligible-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

.eligible-list li:last-child,
.not-eligible-list li:last-child {
    border-bottom: none;
}

.use-case {
    text-align: center;
    padding: 25px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.use-case:hover {
    transform: translateY(-5px);
}

.use-case i {
    font-size: 2.5rem;
    color: #3498db;
    margin-bottom: 15px;
}

.use-case h4 {
    color: #2c3e50;
    margin-bottom: 10px;
}

.use-case p {
    color: #666;
    font-size: 0.95rem;
}

/* Terms and Conditions Specific Styles */
.payment-term {
    text-align: center;
    padding: 25px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.payment-term:hover {
    transform: translateY(-5px);
}

.payment-term i {
    font-size: 2.5rem;
    color: #3498db;
    margin-bottom: 15px;
}

.payment-term h4 {
    color: #2c3e50;
    margin-bottom: 10px;
}

.payment-term p {
    color: #666;
    font-size: 0.95rem;
}

.terms-footer {
    background: #2c3e50;
    color: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    margin-top: 30px;
}

.terms-footer p {
    margin: 5px 0;
    color: #ecf0f1;
}

/* Refund Policy Specific Styles */
.timeframe-card {
    text-align: center;
    padding: 25px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    border-top: 4px solid #3498db;
}

.timeframe-card:hover {
    transform: translateY(-5px);
}

.timeframe-card i {
    font-size: 2.5rem;
    color: #3498db;
    margin-bottom: 15px;
}

.timeframe-card h4 {
    color: #2c3e50;
    margin-bottom: 10px;
}

.timeframe-card p {
    color: #666;
    font-size: 0.95rem;
}

.process-steps {
    margin-top: 30px;
}

.process-step {
    text-align: center;
    padding: 25px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    position: relative;
}

.process-step:hover {
    transform: translateY(-5px);
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: white;
    font-size: 1.3rem;
    font-weight: bold;
}

.process-step h4 {
    color: #2c3e50;
    margin-bottom: 10px;
}

.process-step p {
    color: #666;
    font-size: 0.95rem;
}

.refund-method {
    text-align: center;
    padding: 25px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.refund-method:hover {
    transform: translateY(-5px);
}

.refund-method i {
    font-size: 2.5rem;
    color: #3498db;
    margin-bottom: 15px;
}

.refund-method h4 {
    color: #2c3e50;
    margin-bottom: 10px;
}

.refund-method p {
    color: #666;
    font-size: 0.95rem;
}

.refund-footer {
    background: #2c3e50;
    color: white;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    margin-top: 30px;
}

.refund-footer p {
    margin: 5px 0;
    color: #ecf0f1;
}

.refund-footer .small {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Contact Items */
.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-3px);
}

.contact-item i {
    font-size: 1.5rem;
    color: #3498db;
    width: 40px;
    text-align: center;
}

.contact-item div {
    flex: 1;
}

.contact-item strong {
    color: #2c3e50;
    display: block;
    margin-bottom: 5px;
}

.contact-item p {
    color: #666;
    margin: 0;
    font-size: 0.95rem;
}

/* Provider Pages Styling */
.provider-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.provider-hero::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="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.05)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.05)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.provider-info {
    position: relative;
    z-index: 2;
}

.provider-logo {
    margin-bottom: 30px;
}

.provider-logo h2 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 10px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.provider-tag {
    background: rgba(255,255,255,0.2);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 2px solid rgba(255,255,255,0.3);
}

.provider-info h3 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    line-height: 1.3;
}

.provider-info p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
    line-height: 1.6;
}

.provider-features {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.1);
    padding: 12px 20px;
    border-radius: 25px;
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-2px);
}

.feature-item i {
    font-size: 1.2rem;
}

.feature-item span {
    font-weight: 500;
}

.provider-image {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
}

.service-icons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.service-icon {
    background: rgba(255,255,255,0.1);
    padding: 30px 25px;
    border-radius: 20px;
    text-align: center;
    border: 2px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.service-icon:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-5px);
    border-color: rgba(255,255,255,0.4);
}

.service-icon i {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 10px;
    display: block;
}

.service-icon span {
    color: white;
    font-weight: 600;
    font-size: 1rem;
}

/* TV Plans Section */
.tv-plans-section {
    padding: 80px 0;
    background: white;
}

.tv-plans-section .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.tv-plans-section .section-header h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 20px;
}

.tv-plans-section .section-header p {
    color: #666;
    font-size: 1.1rem;
}

/* Mobile Plans Section */
.mobile-plans-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.mobile-plans-section .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.mobile-plans-section .section-header h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 20px;
}

.mobile-plans-section .section-header p {
    color: #666;
    font-size: 1.1rem;
}

/* Enhanced Plan Cards */
.plan-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
}

.plan-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.plan-card.featured {
    border-color: #3498db;
    transform: scale(1.05);
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.plan-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.plan-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 10px 25px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: bold;
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.plan-header h3 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 700;
}

.plan-price {
    margin-bottom: 30px;
}

.plan-price .currency {
    font-size: 1.5rem;
    color: #3498db;
    vertical-align: top;
    font-weight: 600;
}

.plan-price .amount {
    font-size: 3.5rem;
    font-weight: bold;
    color: #2c3e50;
    line-height: 1;
}

.plan-price .period {
    font-size: 1.1rem;
    color: #666;
    font-weight: 500;
}

.plan-features ul {
    list-style: none;
    margin-bottom: 30px;
    padding: 0;
}

.plan-features li {
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    color: #555;
}

.plan-features li:last-child {
    border-bottom: none;
}

.plan-features i {
    color: #27ae60;
    font-size: 1.2rem;
    flex-shrink: 0;
}

/* Enhanced Features Section */
.features-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.features-section .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.features-section .section-header h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 20px;
}

.features-section .section-header p {
    color: #666;
    font-size: 1.1rem;
}

.feature-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.feature-card i {
    font-size: 3.5rem;
    color: #3498db;
    margin-bottom: 25px;
    display: block;
}

.feature-card h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 600;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
}

/* Enhanced CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::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="cta-grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23cta-grain)"/></svg>');
    opacity: 0.3;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.cta-content p {
    font-size: 1.3rem;
    margin-bottom: 35px;
    opacity: 0.9;
    line-height: 1.5;
}

.btn-large {
    padding: 20px 45px;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.btn-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}

/* ===========================================
   ENHANCED HERO SECTION STYLING
   =========================================== */

/* Hero Subtitle */
.hero-subtitle {
    color: #3498db;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Floating Shapes Animation */
.floating-shapes {
    position: relative;
    width: 100%;
    height: 400px;
    pointer-events: none;
}

/* Bootstrap Responsive Floating Shapes */
@media (max-width: 767.98px) {
    .floating-shapes {
        height: 300px;
    }
    
    .shape {
        opacity: 0.05;
    }
}

@media (max-width: 575.98px) {
    .floating-shapes {
        height: 250px;
    }
    
    .shape {
        opacity: 0.03;
    }
    
    .shape-1, .shape-2, .shape-3, .shape-4, .shape-5, .shape-6 {
        width: 30px;
        height: 30px;
    }
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 60px;
    height: 60px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.shape-3 {
    width: 100px;
    height: 100px;
    top: 40%;
    left: 60%;
    animation-delay: 4s;
}

.shape-4 {
    width: 40px;
    height: 40px;
    top: 10%;
    right: 30%;
    animation-delay: 1s;
}

.shape-5 {
    width: 70px;
    height: 70px;
    top: 70%;
    left: 20%;
    animation-delay: 3s;
}

.shape-6 {
    width: 50px;
    height: 50px;
    top: 30%;
    right: 50%;
    animation-delay: 5s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

/* Hero Icons - Bootstrap Responsive */
.hero-icons {
    position: absolute;
    top: 50%;
    right: 10%;
    transform: translateY(-50%);
    z-index: 2;
}

/* Mobile positioning using Bootstrap classes */
@media (max-width: 991.98px) {
    .hero-icons {
        position: static;
        transform: none;
        top: auto;
        right: auto;
        margin: 2rem 0;
        justify-content: center;
    }
}

.floating-icon {
    background: rgba(255,255,255,0.15);
    padding: 1.5rem;
    border-radius: 20px;
    border: 2px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    animation: floatIcon 4s ease-in-out infinite;
    transition: all 0.3s ease;
    width: 80px;
    height: 80px;
    flex-shrink: 0;
}

/* Bootstrap responsive sizing */
@media (max-width: 991.98px) {
    .floating-icon {
        width: 70px;
        height: 70px;
        padding: 1.25rem;
    }
}

@media (max-width: 767.98px) {
    .floating-icon {
        width: 60px;
        height: 60px;
        padding: 1rem;
    }
}

@media (max-width: 575.98px) {
    .floating-icon {
        width: 50px;
        height: 50px;
        padding: 0.75rem;
    }
}

.floating-icon:nth-child(1) {
    animation-delay: 0s;
}

.floating-icon:nth-child(2) {
    animation-delay: 1.5s;
}

.floating-icon:nth-child(3) {
    animation-delay: 3s;
}

.floating-icon:hover {
    background: rgba(255,255,255,0.25);
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.floating-icon i {
    font-size: 2.5rem;
    color: white;
    display: block;
}

/* Bootstrap responsive icon sizes */
@media (max-width: 991.98px) {
    .floating-icon i {
        font-size: 2.2rem;
    }
}

@media (max-width: 767.98px) {
    .floating-icon i {
        font-size: 1.8rem;
    }
}

@media (max-width: 575.98px) {
    .floating-icon i {
        font-size: 1.5rem;
    }
}

@keyframes floatIcon {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
}

/* Animated Image */
.animated-image {
    animation: imageFloat 3s ease-in-out infinite;
    transition: all 0.3s ease;
}

.animated-image:hover {
    animation-play-state: paused;
    transform: scale(1.02);
}

@keyframes imageFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Case Study Images */
.case-study-image {
    height: 250px;
    overflow: hidden;
    border-radius: 15px 15px 0 0;
}

.case-study-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.case-study-image:hover img {
    transform: scale(1.05);
}

/* ===========================================
   IMAGE STYLING
   =========================================== */

/* Hero Images */
.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-image img:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.2);
}

/* About Section Images */
.about-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    padding: 20px;
}

.about-image .about-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.about-image img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    object-fit: cover;
    position: relative;
    z-index: 2;
}

.about-image img:hover {
    transform: scale(1.02);
}

/* Page Header Images */
.page-header img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.page-header img:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* Provider Logo Images */
.provider-logo-img {
    max-width: 200px;
    height: auto;
    transition: all 0.3s ease;
    background: rgba(255,255,255,0.1);
    padding: 15px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.provider-logo-img:hover {
    transform: scale(1.05);
    background: rgba(255,255,255,0.2);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

/* Service Icons Enhancement */
.service-icon {
    background: rgba(255,255,255,0.1);
    padding: 30px 25px;
    border-radius: 20px;
    text-align: center;
    border: 2px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.service-icon:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-5px);
    border-color: rgba(255,255,255,0.4);
}

.service-icon i {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 10px;
    display: block;
}

.service-icon span {
    color: white;
    font-weight: 600;
    font-size: 1rem;
}

/* Bootstrap Responsive Image Adjustments */
@media (max-width: 767.98px) {
    .hero-image img,
    .about-hero-image img,
    .page-header img {
        margin-bottom: 1.25rem;
    }
    
    .provider-logo-img {
        max-width: 150px;
    }
    
    .service-icon {
        padding: 1.25rem 0.9375rem;
        margin-bottom: 0.9375rem;
    }
    
    .service-icon i {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }
    
    .service-icon span {
        font-size: 0.9rem;
    }
    
    /* About Section Mobile */
    .about-image {
        min-height: 300px;
        margin-top: 1.875rem;
    }
}

@media (max-width: 575.98px) {
    .provider-logo-img {
        max-width: 120px;
    }
    
    .service-icon {
        padding: 0.9375rem 0.625rem;
    }
    
    .service-icon i {
        font-size: 1.8rem;
        margin-bottom: 0.375rem;
    }
    
    .service-icon span {
        font-size: 0.85rem;
    }
}

/* Landscape Orientation - Bootstrap Compatible */
@media (max-height: 500px) and (orientation: landscape) {
    .hero-icons {
        flex-direction: row !important;
        gap: 0.9375rem !important;
    }
    
    .floating-icon {
        width: 45px;
        height: 45px;
        padding: 0.625rem;
    }
    
    .floating-icon i {
        font-size: 1.3rem;
    }
}

/* Mobile Responsive for Policy Pages */
@media (max-width: 768px) {
    .disclaimer-banner .alert {
        font-size: 1rem;
        padding: 0 15px;
    }
    
    .disclaimer-banner .alert strong {
        font-size: 1.1rem;
    }
    
    .disclaimer-content {
        padding: 25px 20px;
        margin: 0 15px;
    }
    
    .disclaimer-content h4 {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }
    
    .disclaimer-content p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .privacy-card,
    .terms-card,
    .refund-card {
        padding: 30px 20px;
        margin: 0 15px 20px;
    }
    
    .privacy-intro,
    .terms-intro,
    .refund-intro {
        padding: 25px 20px;
        margin-bottom: 30px;
    }
    
    .privacy-intro .lead,
    .terms-intro .lead,
    .refund-intro .lead {
        font-size: 1.1rem;
    }
    
    .privacy-section,
    .terms-section,
    .refund-section {
        padding: 20px 15px;
        margin-bottom: 25px;
    }
    
    .privacy-section h2,
    .terms-section h2,
    .refund-section h2 {
        font-size: 1.4rem;
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .privacy-section h2 i,
    .terms-section h2 i,
    .refund-section h2 i {
        font-size: 1.5rem;
    }
    
    .use-case,
    .payment-term,
    .timeframe-card,
    .process-step,
    .refund-method {
        padding: 20px 15px;
        margin-bottom: 20px;
    }
    
    .use-case i,
    .payment-term i,
    .timeframe-card i,
    .refund-method i {
        font-size: 2rem;
        margin-bottom: 12px;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
        margin-bottom: 12px;
    }
    
    .contact-item {
        padding: 15px;
        margin-bottom: 15px;
    }
    
    .contact-item i {
        font-size: 1.3rem;
        width: 35px;
    }
    
    .contact-item strong {
        font-size: 0.95rem;
    }
    
    .contact-item p {
        font-size: 0.9rem;
    }
    
    .terms-footer,
    .refund-footer {
        padding: 20px 15px;
        margin-top: 25px;
    }
    
    .terms-footer p,
    .refund-footer p {
        font-size: 0.9rem;
    }
}

/* Mobile Responsive for Provider Pages */
@media (max-width: 768px) {
    .provider-hero {
        padding: 100px 0 60px;
    }
    
    .provider-logo h2 {
        font-size: 2.2rem;
        margin-bottom: 8px;
    }
    
    .provider-tag {
        padding: 6px 15px;
        font-size: 0.8rem;
    }
    
    .provider-info h3 {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }
    
    .provider-info p {
        font-size: 1rem;
        margin-bottom: 25px;
    }
    
    .provider-features {
        flex-direction: column;
        gap: 15px;
        margin-bottom: 30px;
    }
    
    .feature-item {
        padding: 10px 15px;
        justify-content: center;
    }
    
    .service-icons {
        gap: 15px;
    }
    
    .service-icon {
        padding: 20px 15px;
    }
    
    .service-icon i {
        font-size: 2rem;
        margin-bottom: 8px;
    }
    
    .service-icon span {
        font-size: 0.9rem;
    }
    
    .plan-card {
        padding: 30px 20px;
        margin-bottom: 25px;
    }
    
    .plan-card.featured {
        transform: none;
    }
    
    .plan-card.featured:hover {
        transform: translateY(-10px);
    }
    
    .plan-header h3 {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }
    
    .plan-price .amount {
        font-size: 2.8rem;
    }
    
    .plan-price .currency {
        font-size: 1.3rem;
    }
    
    .plan-price .period {
        font-size: 1rem;
    }
    
    .plan-features li {
        padding: 10px 0;
        font-size: 0.95rem;
    }
    
    .plan-features i {
        font-size: 1.1rem;
    }
    
    .feature-card {
        padding: 30px 20px;
        margin-bottom: 25px;
    }
    
    .feature-card i {
        font-size: 2.8rem;
        margin-bottom: 20px;
    }
    
    .feature-card h3 {
        font-size: 1.3rem;
        margin-bottom: 12px;
    }
    
    .feature-card p {
        font-size: 0.95rem;
    }
    
    .cta-content h2 {
        font-size: 2.2rem;
        margin-bottom: 15px;
    }
    
    .cta-content p {
        font-size: 1.1rem;
        margin-bottom: 25px;
    }
    
    .btn-large {
        padding: 15px 35px;
        font-size: 1rem;
    }
}

/* Extra Small Mobile Devices */
@media (max-width: 480px) {
    .disclaimer-content {
        padding: 20px 15px;
        margin: 0 10px;
    }
    
    .disclaimer-content h4 {
        font-size: 1.3rem;
        margin-bottom: 15px;
    }
    
    .disclaimer-content p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .privacy-card,
    .terms-card,
    .refund-card {
        padding: 25px 15px;
        margin: 0 10px 15px;
    }
    
    .privacy-intro,
    .terms-intro,
    .refund-intro {
        padding: 20px 15px;
        margin-bottom: 25px;
    }
    
    .privacy-intro .lead,
    .terms-intro .lead,
    .refund-intro .lead {
        font-size: 1rem;
    }
    
    .privacy-section,
    .terms-section,
    .refund-section {
        padding: 15px 12px;
        margin-bottom: 20px;
    }
    
    .privacy-section h2,
    .terms-section h2,
    .refund-section h2 {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }
    
    .privacy-section h2 i,
    .terms-section h2 i,
    .refund-section h2 i {
        font-size: 1.3rem;
    }
    
    .use-case,
    .payment-term,
    .timeframe-card,
    .process-step,
    .refund-method {
        padding: 15px 12px;
        margin-bottom: 15px;
    }
    
    .use-case i,
    .payment-term i,
    .timeframe-card i,
    .refund-method i {
        font-size: 1.8rem;
        margin-bottom: 10px;
    }
    
    .step-number {
        width: 35px;
        height: 35px;
        font-size: 1rem;
        margin-bottom: 10px;
    }
    
    .contact-item {
        padding: 12px;
        margin-bottom: 12px;
    }
    
    .contact-item i {
        font-size: 1.2rem;
        width: 30px;
    }
    
    .contact-item strong {
        font-size: 0.9rem;
    }
    
    .contact-item p {
        font-size: 0.85rem;
    }
    
    .provider-logo h2 {
        font-size: 1.8rem;
        margin-bottom: 6px;
    }
    
    .provider-tag {
        padding: 5px 12px;
        font-size: 0.75rem;
    }
    
    .provider-info h3 {
        font-size: 1.5rem;
        margin-bottom: 12px;
    }
    
    .provider-info p {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }
    
    .feature-item {
        padding: 8px 12px;
        font-size: 0.9rem;
    }
    
    .service-icon {
        padding: 15px 12px;
    }
    
    .service-icon i {
        font-size: 1.8rem;
        margin-bottom: 6px;
    }
    
    .service-icon span {
        font-size: 0.8rem;
    }
    
    .plan-card {
        padding: 25px 15px;
        margin-bottom: 20px;
    }
    
    .plan-header h3 {
        font-size: 1.3rem;
        margin-bottom: 12px;
    }
    
    .plan-price .amount {
        font-size: 2.5rem;
    }
    
    .plan-price .currency {
        font-size: 1.2rem;
    }
    
    .plan-price .period {
        font-size: 0.9rem;
    }
    
    .plan-features li {
        padding: 8px 0;
        font-size: 0.9rem;
    }
    
    .plan-features i {
        font-size: 1rem;
    }
    
    .feature-card {
        padding: 25px 15px;
        margin-bottom: 20px;
    }
    
    .feature-card i {
        font-size: 2.5rem;
        margin-bottom: 15px;
    }
    
    .feature-card h3 {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }
    
    .feature-card p {
        font-size: 0.9rem;
    }
    
    .cta-content h2 {
        font-size: 1.8rem;
        margin-bottom: 12px;
    }
    
    .cta-content p {
        font-size: 1rem;
        margin-bottom: 20px;
    }
    
    .btn-large {
        padding: 12px 30px;
        font-size: 0.95rem;
    }
}

/* Tablet Responsive */
@media (min-width: 769px) and (max-width: 1024px) {
    .provider-logo h2 {
        font-size: 2.8rem;
    }
    
    .provider-info h3 {
        font-size: 2rem;
    }
    
    .provider-info p {
        font-size: 1.1rem;
    }
    
    .provider-features {
        gap: 25px;
    }
    
    .service-icons {
        gap: 18px;
    }
    
    .service-icon {
        padding: 25px 20px;
    }
    
    .service-icon i {
        font-size: 2.3rem;
    }
    
    .service-icon span {
        font-size: 0.95rem;
    }
    
    .plan-card {
        padding: 35px 25px;
    }
    
    .plan-header h3 {
        font-size: 1.6rem;
    }
    
    .plan-price .amount {
        font-size: 3.2rem;
    }
    
    .feature-card {
        padding: 35px 25px;
    }
    
    .feature-card i {
        font-size: 3.2rem;
    }
    
    .feature-card h3 {
        font-size: 1.4rem;
    }
    
    .cta-content h2 {
        font-size: 2.5rem;
    }
    
    .cta-content p {
        font-size: 1.2rem;
    }
    
    .btn-large {
        padding: 18px 40px;
        font-size: 1.1rem;
    }
}
