* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #0066ff;
    --secondary-color: #00d4ff;
    --accent-color: #ff6b00;
    --dark-bg: #0a0e27;
    --darker-bg: #060920;
    --light-bg: #f8f9fa;
    --text-light: #ffffff;
    --text-dark: #333333;
    --text-gray: #6c757d;
    --success-color: #28a745;
    --gradient-1: linear-gradient(135deg, #0066ff 0%, #00d4ff 100%);
    --gradient-2: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.2);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 14, 39, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 0.8rem 0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 20px rgba(0, 102, 255, 0.1);
}

.navbar.scrolled {
    padding: 0.6rem 0;
    box-shadow: 0 2px 30px rgba(0, 102, 255, 0.2);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--text-light);
}

.logo i {
    color: var(--secondary-color);
    font-size: 1.8rem;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-1);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--secondary-color);
}

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-light);
    transition: all 0.3s ease;
    border-radius: 3px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(0,212,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(100px, 100px); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(10, 14, 39, 0.8) 100%);
}

.hero-content {
    position: relative;
    text-align: center;
    color: var(--text-light);
    z-index: 2;
    max-width: 900px;
    padding: 0 20px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.8);
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-primary {
    background: var(--gradient-1);
    color: var(--text-light);
    box-shadow: 0 5px 20px rgba(0, 102, 255, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 102, 255, 0.6);
}

.btn-secondary {
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--secondary-color);
}

.btn-secondary:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--text-light);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-indicator i {
    font-size: 2rem;
    color: var(--secondary-color);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeIn 1s ease forwards;
}

.animate-fade-in-delay {
    animation: fadeIn 1s ease 0.3s forwards;
    opacity: 0;
}

.animate-fade-in-delay-2 {
    animation: fadeIn 1s ease 0.6s forwards;
    opacity: 0;
}

.animate-fade-in-delay-3 {
    animation: fadeIn 1s ease 0.9s forwards;
    opacity: 0;
}

/* Services Section */
.services {
    padding: 100px 0;
    background: var(--light-bg);
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--dark-bg);
}

.section-subtitle {
    text-align: center;
    color: var(--text-gray);
    margin-bottom: 4rem;
    font-size: 1.1rem;
}

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

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

.service-card h3 {
    margin-bottom: 1rem;
    color: var(--dark-bg);
}

.service-card p {
    color: var(--text-gray);
}

/* Features Section */
.features {
    padding: 100px 0;
    background: var(--dark-bg);
    color: var(--text-light);
}

.features .section-title {
    color: var(--text-light);
}

.features .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
    border-color: var(--secondary-color);
}

.feature-content i {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.feature-content h3 {
    margin-bottom: 0.5rem;
}

.feature-content p {
    color: rgba(255, 255, 255, 0.7);
}

/* Plans Section */
.plans {
    padding: 100px 0;
    background: var(--light-bg);
}

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

.plan-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    position: relative;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.plan-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.plan-card.featured {
    border: 3px solid var(--primary-color);
    transform: scale(1.05);
}

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

.plan-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-1);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
}

.plan-badge.popular {
    background: var(--gradient-2);
}

.plan-card h3 {
    margin: 1.5rem 0 1rem;
    font-size: 1.8rem;
    color: var(--dark-bg);
}

.plan-price {
    margin: 2rem 0;
}

.currency {
    font-size: 1.2rem;
    color: var(--text-gray);
}

.amount {
    font-size: 3rem;
    font-weight: bold;
    color: var(--primary-color);
}

.period {
    color: var(--text-gray);
}

.plan-features {
    list-style: none;
    margin: 2rem 0;
    text-align: left;
}

.plan-features li {
    padding: 0.8rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.plan-features li i {
    margin-right: 10px;
    color: var(--success-color);
}

.plan-features li.disabled i {
    color: var(--text-gray);
}

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

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-content p {
    margin-bottom: 1.5rem;
    color: var(--text-gray);
    line-height: 1.8;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-item p {
    color: var(--text-gray);
    margin-top: 0.5rem;
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-placeholder {
    width: 400px;
    height: 400px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10rem;
    color: white;
    animation: float 3s ease-in-out infinite;
}

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

/* Contact Section */
.contact {
    padding: 100px 0;
    background: var(--dark-bg);
    color: var(--text-light);
}

.contact .section-title {
    color: var(--text-light);
}

.contact .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-top: 5px;
}

.contact-item h4 {
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: rgba(255, 255, 255, 0.7);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--gradient-1);
    transform: translateY(-5px);
}

.contact-form {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    color: var(--text-light);
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    background: rgba(255, 255, 255, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

/* Footer */
.footer {
    background: var(--darker-bg);
    color: var(--text-light);
    padding: 4rem 0 2rem;
}

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1.5rem;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
}

.footer-section a {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.footer-section a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.8rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    border-radius: 5px;
    color: var(--text-light);
}

.newsletter-form button {
    padding: 0.8rem 1.2rem;
    background: var(--gradient-1);
    border: none;
    border-radius: 5px;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    transform: scale(1.05);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background: rgba(10, 14, 39, 0.98);
        width: 100%;
        padding: 2rem;
        transition: all 0.3s ease;
        gap: 1rem;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .services-grid,
    .features-grid,
    .plans-grid {
        grid-template-columns: 1fr;
    }
    
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .image-placeholder {
        width: 300px;
        height: 300px;
        font-size: 8rem;
    }
    
    .plan-card.featured {
        transform: scale(1);
    }
}

/* Scroll Reveal Animation */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.6s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Flyer Showcase */
.flyer-showcase {
    text-align: center;
    margin: 3rem 0;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
}

.flyer-image {
    max-width: 400px;
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.flyer-image:hover {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .flyer-image {
        max-width: 300px;
    }
}

/* WhatsApp & Call Float Buttons */
.whatsapp-float {
    position: fixed;
    bottom: 80px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: white;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
    z-index: 999;
    animation: pulse 2s infinite;
    text-decoration: none;
}

.call-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #00A8E8 0%, #0077B6 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    box-shadow: 0 4px 20px rgba(0, 168, 232, 0.5);
    z-index: 999;
    animation: pulse 2s infinite;
    text-decoration: none;
}

.whatsapp-float:hover,
.call-float:hover {
    transform: scale(1.1);
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(0, 168, 232, 0.5);
    }
    50% {
        box-shadow: 0 4px 30px rgba(0, 168, 232, 0.8);
    }
}

/* CTA Button in Nav */
.cta-button {
    display: none;
}

.btn-small {
    padding: 0.6rem 1.5rem;
    background: linear-gradient(135deg, #00A8E8 0%, #0077B6 100%);
    color: white;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-small:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 168, 232, 0.4);
}

@media (min-width: 769px) {
    .cta-button {
        display: block;
    }
}

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 168, 232, 0.2);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    margin-bottom: 2rem;
    border: 2px solid rgba(0, 168, 232, 0.5);
}

.hero-badge i {
    color: #00A8E8;
}

/* Hero Features */
.hero-features {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.hero-feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.hero-feature-item i {
    color: #00A8E8;
    font-size: 1.2rem;
}

/* Hero Contact Info */
.hero-contact-info {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.contact-chip {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 168, 232, 0.2);
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    border: 1px solid rgba(0, 168, 232, 0.3);
}

.contact-chip i {
    color: #00A8E8;
}

/* Promo Banner */
.promo-banner {
    background: linear-gradient(135deg, #00A8E8 0%, #0077B6 100%);
    padding: 3rem 0;
    color: white;
}

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

.promo-item i {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.promo-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.promo-item p {
    opacity: 0.9;
}

/* Plan Badges */
.plan-badge.budget {
    background: linear-gradient(135deg, #48C9B0 0%, #16A085 100%);
}

.plan-badge.standard {
    background: linear-gradient(135deg, #5DADE2 0%, #3498DB 100%);
}

.plan-badge.classic {
    background: linear-gradient(135deg, #F39C12 0%, #E67E22 100%);
}

.plan-badge.premium {
    background: linear-gradient(135deg, #9B59B6 0%, #8E44AD 100%);
}

.popular-tag {
    position: absolute;
    top: -30px;
    right: 20px;
    background: #E74C3C;
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 5px;
    font-size: 0.8rem;
    font-weight: bold;
    box-shadow: 0 2px 10px rgba(231, 76, 60, 0.3);
}

.plan-speed {
    font-size: 2rem;
    font-weight: bold;
    color: #00A8E8;
    margin: 1rem 0;
}

.plan-note {
    text-align: center;
    margin-top: 3rem;
    padding: 1.5rem;
    background: rgba(0, 168, 232, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.plan-note i {
    font-size: 1.5rem;
    color: #00A8E8;
}

.plan-note p {
    margin: 0;
    color: var(--text-dark);
}

/* Contact Form Updates */
.contact-form h3 {
    margin-bottom: 1.5rem;
    color: white;
}

.contact-form select {
    width: 100%;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    color: var(--text-light);
    font-family: inherit;
    transition: all 0.3s ease;
}

.contact-form select:focus {
    outline: none;
    border-color: #00A8E8;
    background: rgba(255, 255, 255, 0.1);
}

.contact-form select option {
    background: var(--dark-bg);
    color: white;
}

.contact-info a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #00A8E8;
}

/* Footer Updates */
.footer-contact {
    margin-top: 1rem;
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.footer-contact i {
    color: #00A8E8;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-features {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-contact-info {
        flex-direction: column;
    }
    
    .promo-content {
        grid-template-columns: 1fr;
    }
    
    .whatsapp-float,
    .call-float {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
    
    .whatsapp-float {
        bottom: 70px;
    }
}
/* Plan Cards - Smaller & Optimized */
.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.plan-card {
    background: white;
    padding: 1.8rem 1.5rem;
    border-radius: 15px;
    text-align: center;
    position: relative;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.plan-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.plan-card.featured {
    border: 2px solid #00A8E8;
    transform: scale(1.02);
}

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

.plan-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

.popular-tag {
    position: absolute;
    top: -25px;
    right: 15px;
    background: #E74C3C;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 5px;
    font-size: 0.75rem;
    font-weight: bold;
}

.plan-card h3 {
    margin: 1.2rem 0 0.8rem;
    font-size: 1.4rem;
    color: var(--dark-bg);
}

.plan-speed {
    font-size: 1.5rem;
    font-weight: bold;
    color: #00A8E8;
    margin: 0.8rem 0;
}

.plan-price {
    margin: 1.2rem 0;
}

.currency {
    font-size: 1rem;
    color: var(--text-gray);
}

.amount {
    font-size: 2.2rem;
    font-weight: bold;
    color: #00A8E8;
}

.period {
    font-size: 0.9rem;
    color: var(--text-gray);
}

.plan-features {
    list-style: none;
    margin: 1.5rem 0;
    text-align: left;
}

.plan-features li {
    padding: 0.6rem 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 0.9rem;
}

.plan-features li i {
    margin-right: 8px;
    color: var(--success-color);
    font-size: 0.85rem;
}

.plan-card .btn {
    padding: 0.8rem 1.8rem;
    font-size: 0.95rem;
}

/* Service Cards - Optimized */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.service-card {
    background: white;
    padding: 2rem 1.5rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.service-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.2rem;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
}

.service-card h3 {
    margin-bottom: 0.8rem;
    color: var(--dark-bg);
    font-size: 1.2rem;
}

.service-card p {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Feature Cards - Optimized */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}

.feature-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.8rem 1.5rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.feature-content i {
    font-size: 2.5rem;
    color: #00A8E8;
    margin-bottom: 1rem;
}

.feature-content h3 {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.feature-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

/* Flyer Image - Smaller */
.flyer-showcase {
    text-align: center;
    margin: 2rem 0;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
}

.flyer-image {
    max-width: 350px;
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

/* Responsive Optimizations */
@media (max-width: 1200px) {
    .plans-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .plans-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
    
    .plan-card {
        padding: 1.5rem 1.2rem;
    }
    
    .plan-card.featured {
        transform: scale(1);
    }
    
    .plan-card.featured:hover {
        transform: scale(1) translateY(-5px);
    }
    
    .services-grid,
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
    
    .service-card,
    .feature-item {
        padding: 1.5rem;
    }
    
    .flyer-image {
        max-width: 280px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .plan-card h3 {
        font-size: 1.2rem;
    }
    
    .plan-speed {
        font-size: 1.3rem;
    }
    
    .amount {
        font-size: 2rem;
    }
    
    .plan-features li {
        font-size: 0.85rem;
        padding: 0.6rem 0;
    }
    
    .flyer-image {
        max-width: 240px;
    }
}

/* Tablet Optimization */
@media (min-width: 769px) and (max-width: 1024px) {
    .plans-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Large Desktop Optimization */
@media (min-width: 1400px) {
    .container {
        max-width: 1300px;
    }
    
    .plans-grid {
        max-width: 1200px;
    }
}

/* Hero Section - Mobile Optimization */
@media (max-width: 768px) {
    .hero {
        height: auto;
        min-height: 100vh;
        padding: 100px 0 50px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .hero-badge {
        font-size: 0.9rem;
        padding: 0.6rem 1.2rem;
    }
    
    .contact-chip {
        font-size: 0.85rem;
        padding: 0.6rem 1rem;
    }
}

/* Promo Banner - Mobile */
@media (max-width: 768px) {
    .promo-banner {
        padding: 2rem 0;
    }
    
    .promo-item {
        padding: 1rem;
    }
    
    .promo-item i {
        font-size: 2rem;
    }
    
    .promo-item h3 {
        font-size: 1rem;
    }
    
    .promo-item p {
        font-size: 0.9rem;
    }
}

/* About Section - Mobile */
@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-item p {
        font-size: 0.85rem;
    }
    
    .image-placeholder {
        width: 250px;
        height: 250px;
        font-size: 6rem;
    }
}

/* Contact Section - Mobile */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-form {
        padding: 2rem 1.5rem;
    }
    
    .contact-item {
        gap: 1rem;
    }
    
    .contact-item i {
        font-size: 1.2rem;
    }
    
    .social-links a {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
}

/* Footer - Mobile */
@media (max-width: 768px) {
    .footer {
        padding: 3rem 0 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-section {
        text-align: center;
    }
    
    .footer-section a {
        display: inline-block;
    }
    
    .social-links {
        justify-content: center;
    }
}

/* Navigation - Tablet */
@media (max-width: 1024px) {
    .nav-menu {
        gap: 1.5rem;
    }
}

/* Smooth Scrolling Enhancement */
html {
    scroll-padding-top: 90px;
}

/* Performance Optimization */
* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Accessibility Improvements */
.btn:focus,
input:focus,
textarea:focus,
select:focus {
    outline: 2px solid #00A8E8;
    outline-offset: 2px;
}

/* Loading State */
body {
    opacity: 0;
    animation: fadeInBody 0.5s ease forwards;
}

@keyframes fadeInBody {
    to {
        opacity: 1;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .hero-buttons,
    .whatsapp-float,
    .call-float,
    .scroll-indicator {
        display: none;
    }
}

/* Center Flyer - Updated */
.flyer-showcase {
    text-align: center;
    margin: 2rem auto;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    display: flex;
    justify-content: center;
    align-items: center;
}

.flyer-image {
    max-width: 350px;
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    display: block;
    margin: 0 auto;
}

/* Basic Plan Badge */
.plan-badge.basic {
    background: linear-gradient(135deg, #3498DB 0%, #2980B9 100%);
}

/* Update Plans Grid for 5 cards */
.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 1200px) {
    .plans-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .plans-grid {
        grid-template-columns: 1fr;
    }
}

/* Logo Styling */
.logo {
    display: flex;
    align-items: center;
    height: 50px;
}

.logo-img {
    height: 45px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.05);
}

/* Adjust navbar for logo */
.navbar {
    padding: 0.8rem 0;
}

.navbar.scrolled {
    padding: 0.6rem 0;
}

.navbar.scrolled .logo-img {
    height: 40px;
}

/* Footer Logo */
.footer-section h3 {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-logo {
    height: 35px;
    width: auto;
}

/* Mobile Logo Adjustment */
@media (max-width: 768px) {
    .logo-img {
        height: 40px;
    }
    
    .navbar.scrolled .logo-img {
        height: 35px;
    }
}

/* Logo Text Styling */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-text {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-light);
    letter-spacing: 1px;
}

/* Mobile Logo Text */
@media (max-width: 768px) {
    .logo-text {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .logo-text {
        display: none; /* Hide text on very small screens to save space */
    }
}

/* Logo Icon (Palm Tree + WiFi) */
.logo-icon {
    height: 60px;
    width: auto;
    max-width: 150px;
    transition: transform 0.3s ease;
}

.logo-icon:hover {
    transform: scale(1.1) rotate(5deg);
}

.navbar.scrolled .logo-icon {
    height: 50px;
    width: auto;
    max-width: 120px;
}

@media (max-width: 768px) {
    .logo-icon {
        height: 50px;
        width: auto;
        max-width: 120px;
    }

    .navbar.scrolled .logo-icon {
        height: 45px;
        width: auto;
        max-width: 110px;
    }
}

/* Logo Subtext - Networks Limited */
.logo-subtext {
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 2px;
    opacity: 0.9;
    display: block;
    margin-top: -5px;
}

/* Adjust logo text container */
.logo-text {
    line-height: 1.2;
}

/* Mobile adjustments for logo text */
@media (max-width: 768px) {
    .logo-subtext {
        font-size: 0.55rem;
        letter-spacing: 1px;
    }
}

@media (max-width: 480px) {
    .logo-text {
        display: none;
    }
}

/* Update logo icon to show just the palm+wifi part */
.logo-icon {
    height: 65px;
    width: auto;
    max-width: 160px;
    object-fit: contain;
    object-position: left;
}

.navbar.scrolled .logo-icon {
    height: 55px;
    max-width: 140px;
}

@media (max-width: 768px) {
    .logo-icon {
        height: 55px;
        max-width: 130px;
    }
}

/* Palm Breeze Icon - Just the palm+wifi symbol */
.logo .logo-icon {
    height: 70px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.logo .logo-icon:hover {
    transform: scale(1.1);
    filter: brightness(1.1);
}

.navbar.scrolled .logo .logo-icon {
    height: 60px;
    width: auto;
    max-width: 150px;
}

@media (max-width: 768px) {
    .logo .logo-icon {
        height: 60px;
        width: auto;
        max-width: 140px;
    }

    .navbar.scrolled .logo .logo-icon {
        height: 55px;
        width: auto;
        max-width: 130px;
    }
}

/* Fix mobile logo text visibility */
@media (max-width: 768px) {
    .logo-text {
        display: flex;
        flex-direction: column;
        font-size: 0.9rem;
    }
    
    .logo-subtext {
        font-size: 0.5rem;
        letter-spacing: 1px;
        margin-top: -3px;
    }
}

@media (max-width: 480px) {
    .logo-text {
        display: flex !important; /* Override previous hide */
        font-size: 0.85rem;
    }
    
    .logo-subtext {
        font-size: 0.45rem;
        letter-spacing: 0.5px;
    }
}

@media (max-width: 360px) {
    .logo-text {
        font-size: 0.75rem;
    }
    
    .logo-subtext {
        font-size: 0.4rem;
    }
}

/* Ensure logo displays properly on all devices */
.logo {
    display: flex !important;
    align-items: center;
    gap: 10px;
}

.logo-text {
    display: flex;
    flex-direction: column;
    white-space: nowrap;
}

/* Mobile logo adjustments */
@media (max-width: 768px) {
    .logo {
        gap: 8px;
    }
}

@media (max-width: 480px) {
    .logo {
        gap: 6px;
    }
    
    .nav-container {
        padding: 0 15px;
    }
}
