﻿:root {
    --primary-color: #0066CC;
    --secondary-color: #FF6B35;
    --accent-color: #00D4AA;
    --dark-color: #1A1A1A;
    --light-color: #F8F9FA;
    --gradient-1: linear-gradient(135deg, #0066CC 0%, #004B99 100%);
    --gradient-2: linear-gradient(135deg, #FF6B35 0%, #E55A2B 100%);
    --gradient-3: linear-gradient(135deg, #00D4AA 0%, #00B894 100%);
    --shadow-light: 0 4px 15px rgba(0, 102, 204, 0.1);
    --shadow-medium: 0 8px 30px rgba(0, 102, 204, 0.15);
    --shadow-heavy: 0 15px 50px rgba(0, 102, 204, 0.2);
}

* {
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    overflow-x: hidden;
    scroll-behavior: smooth;
}

section {
    position: relative;
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-1);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    transition: opacity 0.5s ease-out;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 5px solid rgba(255,255,255,0.3);
    border-top: 5px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Header & Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    padding: 15px 0;
}

.navbar-toggler {
    border-color: rgba(0, 102, 204, 0.25);
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(0, 102, 204, 0.2);
}

.navbar-collapse {
    align-items: center;
}

.navbar.scrolled {
    padding: 10px 0;
    box-shadow: var(--shadow-medium);
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.8rem;
    color: var(--primary-color) !important;
    display: inline-flex;
    align-items: center;
    padding: 0;
}

.brand-logo {
    width: auto;
    height: 40px;
    max-width: 170px;
    object-fit: contain;
}

.navbar-nav .nav-link {
    font-weight: 500;
    color: var(--dark-color) !important;
    margin: 0 10px;
    position: relative;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color) !important;
    transform: translateY(-2px);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 50%;
    background: var(--primary-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after {
    width: 100%;
}

.btn-primary {
    background: var(--gradient-1);
    border: none;
    border-radius: 25px;
    padding: 10px 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-light);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
    background: var(--gradient-1);
}

.btn-outline-primary {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 25px;
    padding: 10px 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

.btn-accent {
    background: var(--gradient-3);
    border: none;
    color: white;
    border-radius: 25px;
    padding: 10px 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-light);
}

.btn-accent:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
    background: var(--gradient-3);
    color: white;
}

.nav-btn {
    margin-left: 8px !important;
    font-size: 0.95rem !important;
}

.nav-item .btn.nav-btn {
    margin-top: 0.5rem;
}

/* Hero Section */
.hero {
    background: var(--gradient-1);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 110px;
    padding-bottom: 80px;
}

.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 1000 1000"><defs><radialGradient id="a" cx="50%" cy="50%" r="50%"><stop offset="0%" stop-color="rgba(255,255,255,0.1)"/><stop offset="100%" stop-color="rgba(255,255,255,0)"/></radialGradient></defs><circle cx="200" cy="200" r="300" fill="url(%23a)"/><circle cx="800" cy="400" r="200" fill="url(%23a)"/><circle cx="400" cy="800" r="250" fill="url(%23a)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero .lead {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-buttons .btn {
    margin: 0 10px 10px 0;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.hero-buttons .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.2);
    transition: left 0.3s ease;
    z-index: -1;
}

.hero-buttons .btn:hover::before {
    left: 100%;
}

.btn-outline-light {
    border: 2px solid rgba(255,255,255,0.8);
    color: white;
}

.btn-outline-light:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

.hero-image {
    position: relative;
    z-index: 2;
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.floating-element {
    position: absolute;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.floating-element:nth-child(1) {
    width: 100px;
    height: 100px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-element:nth-child(2) {
    width: 60px;
    height: 60px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.floating-element:nth-child(3) {
    width: 80px;
    height: 80px;
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

/* Modern Animations */
@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(0, 102, 204, 0.5);
    }
    50% {
        box-shadow: 0 0 40px rgba(0, 102, 204, 0.8);
    }
}

.navbar {
    animation: slideInDown 0.6s ease-out;
}

/* Features Section */
.features {
    padding: 100px 0;
    background: var(--light-color);
}

.feature-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid rgba(0,102,204,0.1);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0,102,204,0.1), transparent);
    transition: left 0.5s ease;
    z-index: 1;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow: var(--shadow-heavy);
    border-color: var(--primary-color);
}

.feature-card > * {
    position: relative;
    z-index: 2;
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.3), transparent);
    transform: rotate(45deg);
    transition: all 0.5s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.15) rotate(-10deg);
    box-shadow: 0 8px 20px rgba(0,102,204,0.3);
}

.feature-card:hover .feature-icon::before {
    animation: shimmerIcon 0.6s ease-out;
}

@keyframes shimmerIcon {
    0% {
        left: -50%;
        top: -50%;
    }
    100% {
        left: 150%;
        top: 150%;
    }
}

.feature-card h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 600;
}

/* Packages Section */
.packages {
    padding: 100px 0;
    background: white;
}

.package-card {
    background: white;
    border-radius: 20px;
    padding: 45px 30px 30px 30px;
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
    height: 100%;
    margin-bottom: 20px;
    overflow: visible;
}

.package-card h4 {
    margin-top: 20px;
    margin-bottom: 15px;
    font-weight: 600;
    color: var(--dark-color);
}

.package-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.3), transparent);
    transform: rotate(45deg);
    transition: all 0.5s ease;
    z-index: 1;
    pointer-events: none;
}

.package-card:hover::after {
    animation: shimmer 0.6s ease-out;
}

.package-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: var(--shadow-heavy);
    border-color: var(--primary-color);
}

.package-card > * {
    position: relative;
    z-index: 2;
}

@keyframes shimmer {
    0% {
        left: -50%;
        top: -50%;
    }
    100% {
        left: 150%;
        top: 150%;
    }
}

.package-card.featured {
    border-color: var(--secondary-color);
    transform: scale(1.08);
    background: linear-gradient(145deg, #ffffff, #f0f7ff);
    box-shadow: 0 15px 50px rgba(255, 107, 53, 0.2);
    position: relative;
}

.package-card.featured::before {
    content: 'PALING POPULER';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-2);
    color: white;
    padding: 8px 25px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.package-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.package-period {
    color: #666;
    margin-bottom: 25px;
}

.package-features {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.package-features li {
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
}

.package-features li:last-child {
    border-bottom: none;
}

/* Testimonials */
.testimonials {
    padding: 100px 0;
    background: var(--light-color);
}

.testimonial-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow-light);
    margin: 20px;
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid rgba(0,102,204,0.1);
}

.testimonial-card:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow: var(--shadow-heavy);
    border-color: var(--primary-color);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 30px;
    font-size: 4rem;
    color: var(--primary-color);
    opacity: 0.3;
}

.testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 20px;
    background: var(--gradient-1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    font-weight: 600;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: var(--gradient-1);
    color: white;
}

/* Premium CTA Section */
.premium-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #FF6B35 0%, #E55A2B 50%, #0066CC 100%);
    position: relative;
    overflow: hidden;
    color: white;
}

.cta-background {
    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 1000 1000"><defs><radialGradient id="grad1" cx="50%" cy="50%" r="50%"><stop offset="0%" stop-color="rgba(255,255,255,0.15)"/><stop offset="100%" stop-color="rgba(255,255,255,0)"/></radialGradient></defs><circle cx="200" cy="200" r="300" fill="url(%23grad1)"/><circle cx="800" cy="800" r="400" fill="url(%23grad1)"/></svg>');
    opacity: 0.6;
    animation: float 8s ease-in-out infinite;
}

.premium-cta .container {
    position: relative;
    z-index: 2;
}

.cta-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.cta-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.cta-btn-primary {
    background: white;
    color: #FF6B35;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    font-weight: 600;
}

.cta-btn-primary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 30px rgba(0,0,0,0.3);
    background: #f0f0f0;
}

.cta-btn-secondary {
    background: transparent;
    border: 2px solid white;
    color: white;
    transition: all 0.3s ease;
}

.cta-btn-secondary:hover {
    background: white;
    color: #FF6B35;
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.cta-footer-text {
    font-size: 1rem;
    opacity: 0.9;
    margin-top: 1.5rem;
}

.cta-footer-text i {
    color: #00FF88;
    font-size: 0.9rem;
}

.contact {
    padding: 100px 0;
    background: var(--gradient-1);
    color: white;
}

.contact-form {
    background: rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(10px);
}

.form-control {
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.3);
    background: rgba(255,255,255,0.1);
    color: white;
    padding: 15px;
}

.form-control::placeholder {
    color: rgba(255,255,255,0.7);
}

.form-control:focus {
    background: rgba(255,255,255,0.2);
    border-color: white;
    color: white;
    box-shadow: 0 0 0 0.2rem rgba(255,255,255,0.25);
}

/* Footer */
.footer {
    background: var(--dark-color);
    color: white;
    padding: 60px 0 30px;
}

.footer-section h5 {
    color: var(--accent-color);
    margin-bottom: 20px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    padding: 5px 0;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--accent-color);
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: white;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    margin: 0 5px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
}

/* Popups */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.7);
    backdrop-filter: blur(3px);
    z-index: 9998;
    opacity: 0;
    display: none;
    transition: opacity 0.3s ease;
}

.popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    border-radius: 15px;
    padding: 30px;
    max-width: 90%;
    width: 450px;
    z-index: 9999;
    opacity: 0;
    display: none;
    transition: all 0.3s ease;
    animation: popupSlide 0.5s ease;
    text-align: center;
}

.popup-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #999;
    transition: color 0.2s;
}

.popup-close:hover {
    color: var(--primary-color);
}

.popup h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    text-align: center;
    color: var(--primary-color);
    font-weight: 700;
}

.popup p {
    margin-bottom: 0.8rem;
}

#countdown {
    font-weight: 700;
    background: var(--gradient-1);
    color: white;
    padding: 5px 12px;
    border-radius: 8px;
    display: inline-block;
    box-shadow: 0 2px 8px rgba(0, 102, 204, 0.3);
    animation: pulse 2s infinite ease-in-out;
}

.popup .btn {
    margin-top: 20px;
    padding: 12px 30px;
    border-radius: 25px;
    animation: pulse 2s infinite;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.popup .text-primary {
    font-size: 1.1rem;
}

.popup ul {
    margin-bottom: 1.5rem;
}

.popup ul li {
    padding: 5px 0;
}

@keyframes popupSlide {
    0% {
        opacity: 0;
        transform: translate(-50%, -60%) scale(0.8);
    }
    50% {
        transform: translate(-50%, -45%) scale(1.02);
    }
    100% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

@keyframes pulse {
    0% {transform: scale(1);}
    50% {transform: scale(1.05);}
    100% {transform: scale(1);}
}

/* WhatsApp Float Button & Scroll to Top Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 90px;
    right: 25px;
    background-color: #25d366;
    color: white;
    border-radius: 50px;
    text-align: center;
    font-size: 28px;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    color: white;
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.3);
}

.whatsapp-float:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #25d366;
    opacity: 0.5;
    animation: pulse-ring 1.5s ease-out infinite;
    z-index: -1;
}

@keyframes pulse-ring {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }
    80% {
        opacity: 0;
    }
    100% {
        transform: scale(1.8);
        opacity: 0;
    }
}

.scroll-top {
    position: fixed;
    width: 50px;
    height: 50px;
    bottom: 25px;
    right: 30px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: 18px;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 99;
    border: none;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.scroll-top:hover {
    background-color: #004B99;
    transform: translateY(-5px);
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.3);
}

/* Speed Test Component */
.speed-test {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 25px;
    box-shadow: var(--shadow-medium);
    text-align: center;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    max-width: 350px;
    margin: 0 auto;
    transform: translateY(20px);
}

.speed-test h5 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.9);
}

.speed-display {
    background: var(--gradient-3);
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.1);
}

.speed-display:before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(to bottom right, rgba(255, 255, 255, 0.2), transparent);
    transform: rotate(30deg);
    pointer-events: none;
}

#speedValue {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1;
    display: inline-block;
    margin-right: 5px;
    background: linear-gradient(to bottom, #ffffff, #e6e6e6);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.speed-unit {
    font-size: 1.2rem;
    font-weight: 600;
    opacity: 0.8;
    vertical-align: bottom;
}

.speed-test .btn {
    width: 100%;
    padding: 12px;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.speed-test .btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

@media (max-width: 991.98px) {
    .navbar {
        padding: 10px 0;
    }

    .navbar-nav {
        gap: 0.35rem;
        padding-top: 0.75rem;
    }

    .navbar-nav .nav-link {
        margin: 0;
        padding: 0.65rem 0;
    }

    .nav-btn {
        display: block;
        width: 100%;
        margin: 0.25rem 0 0 !important;
        text-align: center;
    }

    .hero {
        min-height: auto;
        padding-top: 120px;
        padding-bottom: 60px;
    }

    .hero-content {
        text-align: center;
        margin-bottom: 2rem;
    }

    .hero-buttons {
        display: flex;
        flex-direction: column;
        align-items: stretch;
    }

    .hero-buttons .btn {
        width: 100%;
        margin: 0 0 0.75rem 0 !important;
    }

    .speed-test {
        max-width: 420px;
    }
}


/* Responsive Design */
@media (max-width: 768px) {
    .brand-logo {
        height: 34px;
        max-width: 140px;
    }

    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero .lead {
        font-size: 1rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .nav-btn {
        width: 100%;
        margin: 5px 0 !important;
    }
    
    .navbar-collapse {
        padding-top: 1rem;
    }
    
    .package-card.featured {
        transform: scale(1.02);
    }
    
    .premium-cta {
        padding: 50px 0;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .cta-title {
        font-size: 1.6rem;
    }
    
    .cta-subtitle {
        font-size: 0.95rem;
    }
    
    .feature-card,
    .package-card {
        margin-bottom: 15px;
    }
    
    .hero-buttons {
        display: flex;
        flex-direction: column;
    }
    
    .hero-buttons .btn {
        margin: 10px 0 !important;
    }
}

/* Social Proof Section */
.social-proof {
    padding: 80px 0;
    background: linear-gradient(135deg, #F8F9FA 0%, #E8EAFF 100%);
}

.proof-item {
    padding: 30px 20px;
    background: white;
    border-radius: 15px;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
}

.proof-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}

.proof-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.proof-text {
    color: #666;
    font-weight: 500;
    font-size: 0.95rem;
}

/* Package Badge Labels */
.badge-label {
    position: absolute;
    top: 10px;
    right: 10px;
    background: linear-gradient(135deg, #FF6B35, #E55A2B);
    color: white;
    padding: 7px 13px;
    border-radius: 18px;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    animation: slideInDown 0.5s ease-out;
    width: 100px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 1.1;
    white-space: normal;
    word-break: break-word;
}

.badge-label.bestseller {
    background: linear-gradient(135deg, #00D4AA, #00B894);
    box-shadow: 0 4px 15px rgba(0, 212, 170, 0.3);
}

.badge-label.premium {
    background: linear-gradient(135deg, #FFB800, #FF9A00);
    box-shadow: 0 4px 15px rgba(255, 184, 0, 0.3);
}

/* Comparison Section */
.comparison-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #F8F9FA 0%, #E8F0FF 100%);
}

.comparison-card {
    padding: 40px 30px;
    border-radius: 15px;
    background: white;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
}

.comparison-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-heavy);
}

.comparison-card h5 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
}

.comparison-card.fiberplus h5 {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

.comparison-card.other-isp h5 {
    color: #999;
}

.comparison-list {
    list-style: none;
    padding: 0;
}

.comparison-list li {
    padding: 12px 0;
    font-weight: 500;
    display: flex;
    align-items: center;
    color: #555;
}

.comparison-list i {
    font-size: 1.2rem;
    min-width: 30px;
}

/* Urgency Badge & Benefits */
.urgency-badge {
    display: inline-block;
    background: linear-gradient(135deg, #FF6B35, #E55A2B);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 20px;
    animation: pulse 2s ease-in-out infinite;
}

.benefit-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.benefit-item {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    padding: 10px 20px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
}

.benefit-item i {
    font-size: 1.1rem;
}

/* Newsletter Section */
.newsletter-section {
    padding: 80px 0;
    background: var(--gradient-3);
    color: white;
}

.newsletter-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.newsletter-section .lead {
    font-size: 1.1rem;
    opacity: 0.95;
}

.newsletter-form {
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form .input-group {
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.newsletter-form .form-control {
    border: none;
    padding: 15px 25px;
    font-weight: 500;
}

.newsletter-form .form-control:focus {
    box-shadow: none;
    border: none;
}

.newsletter-form .btn {
    background: white;
    color: var(--primary-color);
    border: none;
    padding: 15px 35px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.newsletter-form .btn:hover {
    background: #f0f0f0;
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .social-proof {
        padding: 60px 0;
    }
    
    .proof-number {
        font-size: 2rem;
    }
    
    .comparison-section {
        padding: 60px 0;
    }
    
    .comparison-card {
        padding: 30px 20px;
    }
    
    .newsletter-section {
        padding: 60px 0;
    }
    
    .newsletter-section h2 {
        font-size: 1.8rem;
    }
    
    .benefit-list {
        flex-direction: column;
    }
}

/* Corporate Theme Polish */
:root {
    --primary-color: #0f4c81;
    --secondary-color: #00a6a6;
    --accent-color: #1db2ff;
    --dark-color: #12263a;
    --light-color: #f4f7fb;
    --gradient-1: linear-gradient(135deg, #0f4c81 0%, #0b395f 100%);
    --gradient-2: linear-gradient(135deg, #00a6a6 0%, #008d8d 100%);
    --gradient-3: linear-gradient(135deg, #1db2ff 0%, #1195dd 100%);
    --shadow-light: 0 6px 20px rgba(15, 76, 129, 0.12);
    --shadow-medium: 0 12px 35px rgba(15, 76, 129, 0.18);
    --shadow-heavy: 0 20px 50px rgba(15, 76, 129, 0.22);
}

body {
    background: #f4f7fb;
    color: #1e2f44;
}

.navbar {
    border-bottom: 1px solid rgba(15, 76, 129, 0.08);
}

.hero {
    background: linear-gradient(135deg, #0f4c81 0%, #0c426f 55%, #0b395f 100%);
}

.hero .lead {
    opacity: 0.95;
}

.feature-card,
.package-card,
.testimonial-card,
.proof-item,
.comparison-card {
    border-radius: 16px;
    border: 1px solid rgba(15, 76, 129, 0.08);
}

.feature-card:hover,
.package-card:hover,
.testimonial-card:hover {
    transform: translateY(-8px);
}

.package-card.featured {
    transform: scale(1.04);
    border-color: rgba(0, 166, 166, 0.4);
    box-shadow: 0 16px 45px rgba(0, 166, 166, 0.2);
}

.cta-btn-primary {
    color: #0f4c81;
}

.contact-form {
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.22);
}

.footer {
    background: #0f1f31;
}

@media (max-width: 768px) {
    .package-card.featured {
        transform: scale(1.01);
    }
}

