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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #f8fafc;
    background: #0f172a;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(30, 41, 59, 0.9) 50%, rgba(14, 165, 233, 0.8) 100%);
    backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 2px solid rgba(14, 165, 233, 0.3);
    box-shadow: 0 4px 30px rgba(14, 165, 233, 0.3);
}

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

.logo-text {
    font-family: 'Orbitron', monospace;
    font-size: 1.8rem;
    font-weight: 900;
    background: linear-gradient(45deg, #ffffff, #0ea5e9, #06b6d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    color: #0ea5e9;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(45deg, #0ea5e9, #14b8a6);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #ffffff;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

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

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

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

/* Hero Section */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 30%, #0f172a 70%, #0f172a 100%);
    overflow: hidden;
    scroll-behavior: smooth;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.cosmic-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(14, 165, 233, 0.2) 0%, transparent 60%),
        radial-gradient(circle at 80% 80%, rgba(6, 182, 212, 0.2) 0%, transparent 60%),
        radial-gradient(circle at 40% 60%, rgba(20, 184, 166, 0.15) 0%, transparent 60%),
        radial-gradient(circle at 60% 20%, rgba(14, 165, 233, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 10% 70%, rgba(6, 182, 212, 0.1) 0%, transparent 50%);
    animation: cosmicFloat 20s ease-in-out infinite;
}

@keyframes cosmicFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(1deg); }
}

.gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 30%, rgba(14, 165, 233, 0.25) 0%, transparent 60%),
        radial-gradient(circle at 70% 70%, rgba(6, 182, 212, 0.2) 0%, transparent 60%),
        radial-gradient(circle at 50% 50%, rgba(20, 184, 166, 0.15) 0%, transparent 70%);
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
}

.element {
    position: absolute;
    background: linear-gradient(45deg, #0ea5e9, #14b8a6);
    border-radius: 50%;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.element-1 {
    width: 100px;
    height: 100px;
    top: 20%;
    left: 5%;
    animation-delay: 0s;
}

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

.element-3 {
    width: 80px;
    height: 80px;
    top: 40%;
    right: 10%;
    animation-delay: 4s;
}

.element-4 {
    width: 120px;
    height: 120px;
    bottom: 20%;
    left: 5%;
    animation-delay: 1s;
}

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

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.hero-text {
    animation: slideInLeft 1s ease-out;
    text-align: left;
}

.hero-title {
    font-family: 'Orbitron', monospace;
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1rem;
    line-height: 1.1;
    text-align: left;
}

.highlight {
    background: linear-gradient(45deg, #0ea5e9, #06b6d4, #14b8a6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Typing Animation */
.typing-text {
    display: inline-block;
    position: relative;
    white-space: nowrap;
    border-right: 3px solid #0ea5e9;
    animation: blink 1s infinite;
}

.typing-text.typing {
    animation: blink 1s infinite;
}

.typing-text.completed {
    border-right: none;
    animation: none;
}

@keyframes blink {
    0%, 50% { border-color: #0ea5e9; }
    51%, 100% { border-color: transparent; }
}

/* Service Sentence */
.service-sentence {
    color: #a1a1aa;
    font-size: 1rem;
    margin-top: 1.5rem;
    text-align: left;
    font-style: italic;
    animation: slideInUp 1s ease-out 2.5s both;
}

/* Perks Section */
.perks-section {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin: 3rem 0;
    animation: slideInUp 1s ease-out 0.5s both;
}

    .perk-item {
        display: flex;
        align-items: center;
        gap: 0.8rem;
        padding: 1rem 1.5rem;
        background: rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(14, 165, 233, 0.3);
        border-radius: 15px;
        color: #e5e7eb;
        font-weight: 500;
        transition: all 0.3s ease;
        flex: 1;
        min-width: 150px;
        max-width: 100%;
        justify-content: center;
        position: relative;
        overflow: hidden;
    }

.perk-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(14, 165, 233, 0.1), transparent);
    transition: left 0.5s ease;
}

.perk-item:hover::before {
    left: 100%;
}

.perk-item:hover {
    background: rgba(14, 165, 233, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(14, 165, 233, 0.2);
    border-color: #0ea5e9;
}

.perk-item i {
    color: #0ea5e9;
    font-size: 1.3rem;
}

/* Footer Location */
.footer-location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.8rem;
    color: #a1a1aa;
    font-size: 0.9rem;
    font-weight: 400;
}

.footer-location i {
    color: #0ea5e9;
    font-size: 0.9rem;
}

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


.hero-description {
    font-size: 1.3rem;
    color: #14b8a6;
    margin-bottom: 2rem;
    font-style: italic;
    font-weight: 600;
    text-shadow: 0 0 10px rgba(20, 184, 166, 0.3);
    animation: pulse 2s infinite;
    text-align: left;
}

.free-installation {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(45deg, #14b8a6, #0ea5e9);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    color: #ffffff;
    box-shadow: 0 10px 30px rgba(20, 184, 166, 0.3);
    animation: pulse 2s infinite, slideInUp 1s ease-out 2s both;
    margin-top: 1rem;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.hero-image {
    position: relative;
    animation: slideInRight 1s ease-out;
}

.connectivity-visual {
    position: relative;
    width: 100%;
    max-width: 300px;
    height: 300px;
    margin: 0 auto;
}

.circular-network {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    animation: rotate 20s linear infinite;
}

.network-node {
    position: absolute;
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #0ea5e9, #14b8a6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #ffffff;
    box-shadow: 0 8px 25px rgba(14, 165, 233, 0.3);
    animation: pulse 2s infinite;
    z-index: 2;
}

.node-1 {
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(45deg, #06b6d4, #0891b2);
    animation-delay: 0s;
}

.node-2 {
    bottom: 20px;
    left: 20px;
    background: linear-gradient(45deg, #0ea5e9, #14b8a6);
    animation-delay: 0.5s;
}

.node-3 {
    bottom: 20px;
    right: 20px;
    background: linear-gradient(45deg, #06b6d4, #0891b2);
    animation-delay: 1s;
}


@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* New Hero Design Styles */
.hero-logo {
    margin-bottom: 1rem;
}

.logo-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #0ea5e9, #06b6d4, #14b8a6);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: #ffffff;
    box-shadow: 0 10px 40px rgba(6, 182, 212, 0.4), 0 0 20px rgba(14, 165, 233, 0.3);
    animation: logoFloat 3s ease-in-out infinite;
    border: 2px solid rgba(6, 182, 212, 0.3);
}

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

.hero-title {
    font-family: 'Orbitron', monospace;
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    color: #ffffff;
    text-align: center;
    animation: slideInUp 1s ease-out;
}

.hero-achievements {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    animation: slideInUp 1s ease-out 0.3s both;
}

.achievement-item {
    display: flex;
    align-items: center;
}

.achievement-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: #e5e7eb;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.achievement-divider {
    color: #6b7280;
    font-size: 1.2rem;
    font-weight: 300;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: slideInUp 1s ease-out 0.6s both;
}

.cta-button {
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    min-width: 160px;
    position: relative;
    overflow: hidden;
}

.cta-button.primary {
    background: #ffffff;
    color: #0a0a0a;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

.cta-button.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.cta-button.secondary {
    background: transparent;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cta-button.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-2px);
}


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


.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.3s ease;
}

.scroll-indicator:hover {
    transform: translateX(-50%) translateY(-3px);
}

.scroll-arrow {
    width: 40px;
    height: 40px;
    background: rgba(14, 165, 233, 0.1);
    border: 2px solid #0ea5e9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: scrollDown 2s infinite;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.scroll-arrow::before {
    content: '';
    width: 8px;
    height: 8px;
    border-right: 2px solid #0ea5e9;
    border-bottom: 2px solid #0ea5e9;
    transform: rotate(45deg);
    margin-top: 3px;
}

.scroll-indicator:hover .scroll-arrow {
    background: rgba(20, 184, 166, 0.2);
    border-color: #14b8a6;
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(14, 165, 233, 0.3);
}

.scroll-indicator:hover .scroll-arrow::before {
    border-color: #14b8a6;
}

.scroll-text {
    color: #e5e7eb;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
    opacity: 0.8;
}

.scroll-indicator:hover .scroll-text {
    color: #0ea5e9;
    opacity: 1;
}

@keyframes scrollDown {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(8px); }
}

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

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

/* Benefits Section */
.benefits {
    padding: 6rem 0;
    background: linear-gradient(180deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    position: relative;
}

.benefits::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 30%, rgba(14, 165, 233, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(20, 184, 166, 0.1) 0%, transparent 50%);
    opacity: 0.5;
}

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

.benefit-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(14, 165, 233, 0.3);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
}

.benefit-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(14, 165, 233, 0.1), transparent);
    transition: left 0.5s ease;
}

.benefit-item:hover::before {
    left: 100%;
}

.benefit-item:hover {
    transform: translateY(-10px);
    border-color: #0ea5e9;
    box-shadow: 0 20px 40px rgba(14, 165, 233, 0.2);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #0ea5e9, #06b6d4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: #ffffff;
    box-shadow: 0 10px 30px rgba(6, 182, 212, 0.3);
    transition: all 0.3s ease;
}

.benefit-item:hover .benefit-icon {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(6, 182, 212, 0.4);
}

.benefit-item h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    font-family: 'Orbitron', monospace;
}

.benefit-item p {
    color: #a1a1aa;
    line-height: 1.6;
    font-size: 1rem;
}

/* Packages Section */
.packages {
    padding: 6rem 0;
    background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
    position: relative;
}

.packages::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%230ea5e9" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.section-title {
    font-family: 'Orbitron', monospace;
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #0ea5e9, #06b6d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #a1a1aa;
    margin-bottom: 4rem;
}

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

.package-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(14, 165, 233, 0.3);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
}

.package-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(14, 165, 233, 0.1), transparent);
    transition: left 0.5s ease;
}

.package-card:hover::before {
    left: 100%;
}

.package-card:hover {
    transform: translateY(-10px);
    border-color: #0ea5e9;
    box-shadow: 0 20px 40px rgba(14, 165, 233, 0.2);
}

.package-card.featured {
    border: 2px solid #14b8a6;
    transform: scale(1.05);
}

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

.package-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: linear-gradient(45deg, #14b8a6, #0ea5e9);
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.package-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #0ea5e9;
}

.package-speed {
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.package-price {
    margin-bottom: 2rem;
}

.currency {
    font-size: 1.2rem;
    color: #a1a1aa;
    vertical-align: top;
}

.amount {
    font-size: 3rem;
    font-weight: 700;
    color: #14b8a6;
}

.period {
    font-size: 1rem;
    color: #a1a1aa;
}

.package-features {
    list-style: none;
    margin-bottom: 2rem;
}

.package-features li {
    padding: 0.5rem 0;
    color: #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.package-features i {
    color: #14b8a6;
    font-size: 0.9rem;
}

.package-btn {
    background: linear-gradient(45deg, #0ea5e9, #06b6d4);
    color: #ffffff;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.package-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(6, 182, 212, 0.4);
}

/* Coming Soon Section */
.coming-soon {
    padding: 6rem 0;
    background: linear-gradient(180deg, #1e293b 0%, #334155 50%, #0f172a 100%);
    position: relative;
}

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

.coming-soon-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(14, 165, 233, 0.3);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
}

.coming-soon-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(14, 165, 233, 0.1), transparent);
    transition: left 0.5s ease;
}

.coming-soon-item:hover::before {
    left: 100%;
}

.coming-soon-item:hover {
    transform: translateY(-10px);
    border-color: #0ea5e9;
    box-shadow: 0 20px 40px rgba(14, 165, 233, 0.2);
}

.coming-soon-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #0ea5e9;
}

.coming-soon-item h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.coming-soon-item p {
    color: #a1a1aa;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.coming-soon-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(45deg, #0ea5e9, #14b8a6);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    color: #ffffff;
    font-weight: 600;
    font-size: 0.9rem;
    animation: pulse 2s infinite;
}

.coming-soon-badge i {
    font-size: 0.8rem;
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1e293b 0%, #334155 50%, #0f172a 100%);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 20%, rgba(14, 165, 233, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(20, 184, 166, 0.1) 0%, transparent 50%);
    opacity: 0.4;
}

.contact-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.contact-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(14, 165, 233, 0.3);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(14, 165, 233, 0.1), transparent);
    transition: left 0.5s ease;
}

.contact-card:hover::before {
    left: 100%;
}

.contact-card:hover {
    transform: translateY(-10px);
    border-color: #0ea5e9;
    box-shadow: 0 20px 40px rgba(14, 165, 233, 0.2);
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #0ea5e9, #14b8a6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: #ffffff;
    box-shadow: 0 10px 30px rgba(14, 165, 233, 0.3);
    transition: all 0.3s ease;
}

.contact-card:hover .contact-icon {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(14, 165, 233, 0.4);
}

.phone-card .contact-icon {
    background: linear-gradient(45deg, #06b6d4, #0891b2);
}

.whatsapp-card .contact-icon {
    background: linear-gradient(45deg, #25d366, #128c7e);
}

.info-card .contact-icon {
    background: linear-gradient(45deg, #0ea5e9, #06b6d4);
}

.contact-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    font-family: 'Orbitron', monospace;
}

.contact-card p {
    color: #a1a1aa;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.contact-info {
    margin-bottom: 2rem;
}

.phone-number, .whatsapp-status, .service-hours {
    font-size: 1.1rem;
    font-weight: 600;
    color: #e5e7eb;
    padding: 0.5rem 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: 10px;
    display: inline-block;
    word-break: break-all;
    text-align: center;
    min-width: 0;
    max-width: 100%;
}

.whatsapp-status {
    color: #25d366;
    background: rgba(37, 211, 102, 0.1);
}

.service-hours {
    color: #0ea5e9;
    background: rgba(14, 165, 233, 0.1);
}

.contact-action-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    background: linear-gradient(45deg, #0ea5e9, #06b6d4);
    color: #ffffff;
    text-decoration: none;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(6, 182, 212, 0.3);
    width: 100%;
    justify-content: center;
}

.contact-action-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(6, 182, 212, 0.4);
}

.contact-action-btn.whatsapp-btn {
    background: linear-gradient(45deg, #25d366, #128c7e);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
}

.contact-action-btn.whatsapp-btn:hover {
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.4);
}

.contact-features {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: #a1a1aa;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.feature-item:hover {
    color: #0ea5e9;
    transform: translateY(-2px);
}

.feature-item i {
    color: #0ea5e9;
    font-size: 1.2rem;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    padding: 4rem 0 2rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 20%, rgba(14, 165, 233, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(20, 184, 166, 0.1) 0%, transparent 50%);
    opacity: 0.3;
}

.footer-main {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.footer-logo .logo-text {
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
    font-weight: 900;
    background: linear-gradient(45deg, #0ea5e9, #06b6d4, #14b8a6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.footer-tagline {
    color: #e5e7eb;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.5;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: #a1a1aa;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.contact-item:hover {
    color: #0ea5e9;
    transform: translateX(5px);
}

.contact-item i {
    color: #0ea5e9;
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

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

.footer-section h4 {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-family: 'Orbitron', monospace;
    position: relative;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(45deg, #0ea5e9, #14b8a6);
    border-radius: 2px;
}

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

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul li a {
    color: #a1a1aa;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 0;
}

.footer-section ul li a::before {
    content: '→';
    position: absolute;
    left: -15px;
    opacity: 0;
    transition: all 0.3s ease;
    color: #0ea5e9;
}

.footer-section ul li a:hover {
    color: #0ea5e9;
    padding-left: 15px;
}

.footer-section ul li a:hover::before {
    opacity: 1;
    left: 0;
}

.footer-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(14, 165, 233, 0.2);
    position: relative;
    z-index: 2;
}

.footer-copyright p {
    color: #6b7280;
    font-size: 0.9rem;
    margin: 0;
}


/* Responsive Design */
@media (max-width: 768px) {
    * {
        max-width: 100%;
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: linear-gradient(135deg, rgba(15, 23, 42, 0.98) 0%, rgba(30, 41, 59, 0.95) 50%, rgba(14, 165, 233, 0.9) 100%);
        backdrop-filter: blur(15px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
        transition: left 0.3s ease;
        z-index: 999;
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .nav-links a {
        font-size: 1.2rem;
        margin: 1rem 0;
        padding: 0.5rem 1rem;
        border-radius: 10px;
        transition: all 0.3s ease;
    }
    
    .nav-links a:hover {
        background: rgba(14, 165, 233, 0.1);
    }
    
    .hero-content {
        text-align: center;
        gap: 1.5rem;
        padding: 0 20px;
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-achievements {
        gap: 1rem;
        flex-direction: column;
    }
    
    .achievement-divider {
        display: none;
    }
    
    .service-sentence {
        font-size: 0.9rem;
        margin-top: 1rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .benefit-item {
        padding: 2rem;
    }
    
    .benefit-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .benefit-item h3 {
        font-size: 1.3rem;
    }
    
    .benefit-item p {
        font-size: 0.9rem;
    }
    
    .coming-soon-grid {
        grid-template-columns: 1fr;
    }
    
    .free-installation {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
    
    
    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 1rem;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
        line-height: 1.2;
    }
    
    
    .hero-description {
        font-size: 1.2rem;
        margin-bottom: 1.5rem;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
    }
    
    .hero-image {
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .packages-grid {
        grid-template-columns: 1fr;
    }
    
    .package-card.featured {
        transform: none;
    }
    
    .package-card.featured:hover {
        transform: translateY(-10px);
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-card {
        padding: 2rem;
    }
    
    .phone-number {
        font-size: 1rem;
        padding: 0.4rem 0.8rem;
        word-break: break-word;
        white-space: normal;
        line-height: 1.4;
    }
    
    .contact-features {
        gap: 2rem;
        flex-direction: column;
        align-items: center;
    }
    
    .feature-item {
        font-size: 0.9rem;
    }
    
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .footer-sections {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-section {
        margin-bottom: 2rem;
    }
    
    .footer-section h4 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
        color: #ffffff;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
    }
    
    .footer-section ul li a {
        font-size: 1rem;
        padding: 0.5rem 0;
        display: block;
        color: #e5e7eb;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.6);
    }
    
    .footer-contact {
        margin-top: 2rem;
    }
    
    .contact-item {
        font-size: 1rem;
        padding: 0.8rem 0;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.6);
    }
    
    .footer-bottom {
        text-align: center;
        margin-top: 2rem;
    }
    
    .footer-copyright p {
        font-size: 1rem;
        color: #a1a1aa;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.6);
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
        margin-bottom: 0.6rem;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.9);
    }
    
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: 0.8rem;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.9);
    }
    
    .service-sentence {
        font-size: 0.85rem;
        margin-top: 0.8rem;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
        color: #d1d5db;
    }
    
    .connectivity-visual {
        width: 100%;
        max-width: 250px;
        height: 250px;
        margin: 0 auto;
    }
    
    .network-node {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .node-1 {
        top: 15px;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .node-2, .node-3 {
        bottom: 15px;
    }
    
    .benefit-item {
        padding: 1.5rem;
    }
    
    .benefit-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .benefit-item h3 {
        font-size: 1.1rem;
    }
    
    .benefit-item p {
        font-size: 0.85rem;
    }
    
    .free-installation {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
    
    
    .package-card {
        padding: 1.5rem;
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(147, 51, 234, 0.4);
    }
    
    .package-card h3, .package-card .package-speed {
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
    }
    
    .package-features li {
        color: #f3f4f6;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.6);
    }
    
    .whatsapp-btn {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .contact-action-btn {
        padding: 1.2rem 2rem;
        font-size: 1.1rem;
        min-height: 50px;
    }
    
    .package-btn {
        padding: 1.2rem 2rem;
        font-size: 1.1rem;
        min-height: 50px;
    }
    
    .benefit-item {
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(147, 51, 234, 0.4);
    }
    
    .benefit-item h3 {
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
    }
    
    .benefit-item p {
        color: #e5e7eb;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.6);
    }
}

@media (max-width: 360px) {
    .container {
        padding: 0 10px;
    }
    
    .nav-container {
        padding: 0 10px;
    }
    
    .hero-content {
        padding: 0 15px;
        text-align: center;
        gap: 1rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .logo-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }
    
    .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
        min-width: 140px;
    }
    
    .phone-number {
        font-size: 0.9rem;
        padding: 0.3rem 0.6rem;
        word-break: break-word;
        white-space: normal;
        line-height: 1.3;
        max-width: 200px;
        margin: 0 auto;
    }
    
    .connectivity-visual {
        max-width: 200px;
        height: 200px;
    }
    
    .network-node {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .node-1 {
        top: 10px;
    }
    
    .node-2, .node-3 {
        bottom: 10px;
    }
    
    .perk-item {
        min-width: 120px;
        padding: 0.8rem 1rem;
    }
}

