/* ========================================
   Laatansa NET - Premium Modern Design
   ======================================== */

/* CSS Variables */
:root {
    --primary: #30A2D4;
    --primary-dark: #0D7FB0;
    --primary-light: #30A2D4;
    --primary-50: #E0F2FE;
    --primary-100: #E0F2FE;
    
    --accent: #06b6d4;
    --accent-dark: #0891b2;
    
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
    
    --dark: #1F2937;
    --dark-800: #1F2937;
    --dark-700: #334155;
    --dark-600: #475569;
    
    --gray-50: #F9FAFB;
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    --gray-300: #D1D5DB;
    --gray-400: #9CA3AF;
    --gray-500: #6B7280;
    --gray-600: #4B5563;
    --gray-700: #374151;
    
    --white: #ffffff;
    
    --gradient-1: linear-gradient(135deg, #30A2D4 0%, #0D7FB0 100%);
    --gradient-2: linear-gradient(135deg, #1F2937 0%, #374151 100%);
    --gradient-3: linear-gradient(135deg, #30A2D4 0%, #06b6d4 100%);
    
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1);
    --shadow-2xl: 0 25px 50px -12px rgba(0,0,0,0.25);
    
    --radius-sm: 0.375rem;
    --radius: 0.5rem;
    --radius-md: 0.75rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --radius-2xl: 2rem;
    --radius-full: 9999px;
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--dark);
    background: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Preloader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#preloader.loaded {
    opacity: 0;
    visibility: hidden;
}

.loader {
    width: 120px;
    height: 50px;
    position: relative;
}

.loader-inner {
    width: 50px;
    height: 50px;
    border: 3px solid var(--gray-200);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    position: absolute;
    left: 0;
    top: 0;
}

.loader-numbers {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    gap: 4px;
}

.loader-numbers span {
    font-size: 1rem;
    font-weight: 700;
    color: var(--gray-300);
    animation: numberPulse 2.5s infinite;
}

.loader-numbers span:nth-child(1) { animation-delay: 0s; }
.loader-numbers span:nth-child(2) { animation-delay: 0.5s; }
.loader-numbers span:nth-child(3) { animation-delay: 1s; }
.loader-numbers span:nth-child(4) { animation-delay: 1.5s; }
.loader-numbers span:nth-child(5) { animation-delay: 2s; }

@keyframes numberPulse {
    0%, 100% { color: var(--gray-300); transform: scale(1); }
    10% { color: var(--primary); transform: scale(1.3); }
    20% { color: var(--gray-300); transform: scale(1); }
}

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

/* Cursor Follower */
.cursor-follower {
    position: fixed;
    width: 20px;
    height: 20px;
    background: var(--primary);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99998;
    opacity: 0.5;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease;
    mix-blend-mode: difference;
}

/* ========================================
   Hero Section - New Design
   ======================================== */
.hero-section {
    position: relative;
    background: linear-gradient(160deg, #ffffff 0%, #f0f9ff 55%, #e0f2fe 100%);
    overflow: hidden;
    padding: 120px 24px 60px;
    min-height: 100vh;
}

.hero-bg-glow {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 10% 20%, rgba(48,162,212,0.08) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(139,92,246,0.06) 0%, transparent 50%);
    pointer-events: none;
}

.hero-container {
    position: relative;
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.hero-text {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(48,162,212,0.10);
    border: 0.5px solid rgba(48,162,212,0.35);
    padding: 7px 16px;
    border-radius: 999px;
    width: fit-content;
    color: #0D7FB0;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.hero-badge-dot {
    width: 8px;
    height: 8px;
    background: #30A2D4;
    border-radius: 50%;
    box-shadow: 0 0 8px #30A2D4;
    animation: heroPulse 1.5s ease-in-out infinite;
}

@keyframes heroPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.35); }
}

.hero-title {
    font-size: clamp(32px, 4.5vw, 54px);
    font-weight: 800;
    line-height: 1.1;
    color: #1F2937;
    margin: 0;
    letter-spacing: -0.02em;
}

.hero-title-highlight {
    background: linear-gradient(135deg, #30A2D4 0%, #0D7FB0 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    position: relative;
}

.hero-title-accent {
    background: linear-gradient(135deg, #30A2D4 0%, #0D7FB0 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 16px;
    line-height: 1.65;
    color: #4b5563;
    margin: 0;
    max-width: 480px;
}

.hero-subtitle strong { color: #1F2937; font-weight: 700; }

.hero-local-note {
    background: #f0fdf4;
    border-left: 4px solid #10b981;
    padding: 16px 20px;
    border-radius: 0 12px 12px 0;
    max-width: 500px;
}

.hero-local-title {
    font-size: 14px;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 4px;
}

.hero-local-desc {
    font-size: 13px;
    color: #4B5563;
    margin-bottom: 8px;
}

.hero-local-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hero-local-list li {
    font-size: 12px;
    color: #374151;
    margin-bottom: 4px;
    padding-left: 16px;
    position: relative;
}

.hero-local-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

.hero-cta-group {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 4px;
}

.hero-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #30A2D4 0%, #0D7FB0 100%);
    color: #fff;
    padding: 13px 28px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 18px rgba(48,162,212,0.30);
}

.hero-cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 26px rgba(48,162,212,0.42);
}

.hero-cta-arrow { transition: transform 0.2s; }
.hero-cta-primary:hover .hero-cta-arrow { transform: translateX(4px); }

.hero-cta-secondary {
    display: inline-flex;
    align-items: center;
    background: transparent;
    color: #374151;
    padding: 13px 28px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border: 1.5px solid #d1d5db;
    transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.hero-cta-secondary:hover {
    border-color: #30A2D4;
    color: #0D7FB0;
    background: rgba(48,162,212,0.05);
}

.hero-areas {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-top: 18px;
    border-top: 1px solid #e5e7eb;
}

.hero-areas-label {
    color: #9ca3af;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.2px;
}

.hero-areas-list { color: #6b7280; font-size: 13px; }

.hero-anim {
    width: 100%;
    max-width: 600px;
    min-width: 0;
    margin: 0 auto;
    overflow: hidden;
}

.hero-anim svg {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
}

/* Speedtest Panel */
.speedtest-panel {
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    background: #121427;
    border: 1px solid #242842;
    border-radius: 18px;
    color: #f8fafc;
    font-family: "Plus Jakarta Sans", system-ui, sans-serif;
    overflow: hidden;
    padding: 12px 34px 22px;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.22);
}

.speedtest-brand {
    text-align: center;
    color: #8b90a7;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.speedtest-metrics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 42px;
    align-items: start;
    max-width: 330px;
    margin: 0 auto;
}

.speedtest-label {
    white-space: nowrap;
    color: #f8fafc;
    font-size: 13px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: 0.2px;
}

.speedtest-label span:not(.speedtest-icon) { color: #9ca3af; font-weight: 600; }

.speedtest-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 15px;
    height: 15px;
    margin-right: 4px;
    border: 1.4px solid currentColor;
    border-radius: 50%;
    font-size: 11px;
    line-height: 1;
}

.speedtest-download { color: #49f3ef; }
.speedtest-upload { color: #b65cff; }

.speedtest-top-value {
    position: relative;
    height: 38px;
    margin-top: 8px;
    color: #fff;
    font: 300 29px/1 "Helvetica Neue", Arial, sans-serif;
}

.speedtest-top-value span { position: absolute; left: 20px; top: 0; }

.speedtest-dl-wait, .speedtest-ul-wait { color: #e5e7eb; font-size: 25px; }
.speedtest-dl-wait { animation: speedtestHideAfterDl 16s linear infinite; }
.speedtest-dl-final { opacity: 0; animation: speedtestShowAfterDl 16s linear infinite; }
.speedtest-ul-wait { animation: speedtestHideAfterUl 16s linear infinite; }
.speedtest-ul-final { opacity: 0; animation: speedtestShowAfterUl 16s linear infinite; }

.speedtest-active-line {
    width: 44px;
    height: 2px;
    margin: 4px 0 0 33px;
    background: currentColor;
}

.speedtest-download .speedtest-active-line { animation: speedtestDlLine 16s linear infinite; }
.speedtest-upload .speedtest-active-line { animation: speedtestUlLine 16s linear infinite; }

.speedtest-ping {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
    color: #f8fafc;
    font-size: 12px;
    font-weight: 700;
    margin: 8px 0 3px;
}

.speedtest-ping b { color: #9ca3af; font-weight: 600; }
.speedtest-ping-pill { color: #9ca3af; }
.speedtest-idle { color: #fef08a; }
.speedtest-dl-lat { color: #49f3ef; }
.speedtest-ul-lat { color: #b65cff; }

.speedtest-gauge {
    position: relative;
    width: 308px;
    max-width: 100%;
    height: 276px;
    margin: 0 auto;
    overflow: hidden;
}

.speedtest-arc-svg {
    position: absolute;
    left: 0;
    top: 0;
    width: 308px;
    height: 308px;
    overflow: visible;
}

.speedtest-arc-base {
    fill: none;
    stroke: #203154;
    stroke-width: 34;
    stroke-linecap: butt;
}

.speedtest-arc-run {
    fill: none;
    stroke: #35c7ff;
    stroke-width: 34;
    stroke-linecap: butt;
    stroke-dasharray: 0 610;
    stroke-dashoffset: 0;
    animation: speedtestArcSequence 16s linear infinite;
    animation-timing-function: cubic-bezier(.22, .61, .24, 1);
}

.speedtest-needle {
    position: absolute;
    left: 0;
    top: 0;
    width: 308px;
    height: 308px;
    transform-origin: 154px 154px;
    transform: rotateZ(-132deg);
    animation: speedtestNeedleSequence 16s linear infinite;
    animation-timing-function: cubic-bezier(.22, .61, .24, 1);
    z-index: 4;
}

.speedtest-needle::after {
    content: "";
    position: absolute;
    left: 151px;
    top: 52px;
    width: 6px;
    height: 118px;
    border-radius: 6px 6px 1px 1px;
    background: linear-gradient(180deg, rgba(255,255,255,.96) 0%, rgba(214,232,255,.82) 38%, rgba(90,126,178,.18) 100%);
    transform-origin: 50% 102px;
    box-shadow: 0 0 10px rgba(206,232,255,.2);
}

.speedtest-needle svg {
    width: 100%;
    height: 100%;
    display: block;
    overflow: visible;
    opacity: .45;
}

.speedtest-ticks span {
    position: absolute;
    color: #f8fafc;
    font-size: 13px;
    font-weight: 800;
}

.speedtest-ticks .t100, .speedtest-ticks .t250, .speedtest-ticks .t500, .speedtest-ticks .t750, .speedtest-ticks .t1000 { color: #8b90a7; }

.t0 { top: 178px; left: 20.1219512%; text-align: left; }
.t5 { top: 146px; left: 45px; text-align: left; }
.t10 { top: 99px; left: 53px; text-align: left; }
.t50 { top: 65px; left: 83px; text-align: left; }
.t100 { top: 50px; left: 0; width: 100%; text-align: center; }
.t250 { top: 65px; right: 83px; text-align: right; }
.t500 { top: 99px; right: 53px; text-align: right; }
.t750 { top: 146px; right: 45px; text-align: right; }
.t1000 { top: 178px; right: 20.1219512%; text-align: right; }

.speedtest-reading {
    position: absolute;
    left: 0;
    right: 0;
    top: 165px;
    height: 45px;
    text-align: center;
    font: 300 33px/1 "Helvetica Neue", Arial, sans-serif;
    color: #fff;
}

.speedtest-reading span { position: absolute; left: 0; right: 0; opacity: 0; }

.speedtest-connecting {
    top: 12px;
    color: #9ca3af;
    font: 800 13px/1 "Plus Jakarta Sans", system-ui, sans-serif;
    animation: speedtestConnect 16s linear infinite;
}

.speedtest-speed-a { animation: speedtestSpeedA 16s linear infinite; }
.speedtest-speed-b { animation: speedtestSpeedB 16s linear infinite; }
.speedtest-speed-c { animation: speedtestSpeedC 16s linear infinite; }
.speedtest-speed-u0 { animation: speedtestSpeedU0 16s linear infinite; }
.speedtest-speed-u1 { animation: speedtestSpeedU1 16s linear infinite; }
.speedtest-speed-u2 { animation: speedtestSpeedU2 16s linear infinite; }
.speedtest-speed-u3 { animation: speedtestSpeedU3 16s linear infinite; }

.speedtest-unit {
    position: absolute;
    top: 218px;
    left: 0;
    right: 0;
    color: #9ca3af;
    text-align: center;
    font-size: 13px;
}

.speedtest-unit > span { display: none; }

.speedtest-footer {
    display: grid;
    grid-template-columns: 1fr 36px 1fr;
    align-items: center;
    gap: 12px;
    margin: 4px auto 0;
    max-width: 350px;
    text-align: center;
    color: #fff;
    font-size: 12px;
    line-height: 1.25;
}

.speedtest-footer small {
    display: block;
    margin-top: 4px;
    color: #8b90a7;
    font-size: 10px;
}

.speedtest-globe {
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    border: 1px solid #4b526b;
    border-radius: 50%;
    color: #8b90a7;
    font-size: 26px;
    line-height: 1;
}

/* Speedtest Animations */
@keyframes speedtestConnect {
    0%, 10%, 96%, 100% { opacity: 1; }
    12%, 94% { opacity: 0; }
}

@keyframes speedtestSpeedA {
    0%, 11.9%, 28.1%, 100% { opacity: 0; }
    12%, 28% { opacity: 1; }
}

@keyframes speedtestSpeedB {
    0%, 28.1%, 39.1%, 100% { opacity: 0; }
    28.2%, 39% { opacity: 1; }
}

@keyframes speedtestSpeedC {
    0%, 39.1%, 46.1%, 100% { opacity: 0; }
    39.2%, 46% { opacity: 1; }
}

@keyframes speedtestSpeedU0 {
    0%, 51.9%, 58.1%, 100% { opacity: 0; }
    52%, 58% { opacity: 1; }
}

@keyframes speedtestSpeedU1 {
    0%, 58.1%, 69.1%, 100% { opacity: 0; }
    58.2%, 69% { opacity: 1; }
}

@keyframes speedtestSpeedU2 {
    0%, 69.1%, 81.1%, 100% { opacity: 0; }
    69.2%, 81% { opacity: 1; }
}

@keyframes speedtestSpeedU3 {
    0%, 81.1%, 94.1%, 100% { opacity: 0; }
    81.2%, 94% { opacity: 1; }
}

@keyframes speedtestArcSequence {
    0%, 10%, 46.1%, 51.9%, 96%, 100% { opacity: 0; stroke: #35c7ff; stroke-dasharray: 0 610; }
    12% { opacity: 1; stroke: #35c7ff; stroke-dasharray: 0 610; }
    20%, 28% { opacity: 1; stroke: #35c7ff; stroke-dasharray: 227 610; }
    32%, 39% { opacity: 1; stroke: #35e6ef; stroke-dasharray: 377 610; }
    42%, 46% { opacity: 1; stroke: #5ef5e6; stroke-dasharray: 441 610; }
    52%, 58% { opacity: 1; stroke: #b65cff; stroke-dasharray: 0 610; }
    60%, 69% { opacity: 1; stroke: #b65cff; stroke-dasharray: 227 610; }
    74%, 81% { opacity: 1; stroke: #ca5cff; stroke-dasharray: 377 610; }
    84%, 94% { opacity: 1; stroke: #e879f9; stroke-dasharray: 441 610; }
}

@keyframes speedtestNeedleSequence {
    0%, 10%, 46.1%, 51.9%, 96%, 100% { transform: rotateZ(-132deg); opacity: 0; }
    12% { transform: rotateZ(-132deg); opacity: 1; }
    20%, 28% { transform: rotateZ(-34.26deg); opacity: 1; }
    32%, 39% { transform: rotateZ(32.58deg); opacity: 1; }
    42%, 46% { transform: rotateZ(60.94deg); opacity: 1; }
    52%, 58% { transform: rotateZ(-132deg); opacity: 1; }
    60%, 69% { transform: rotateZ(-34.26deg); opacity: 1; }
    74%, 81% { transform: rotateZ(32.58deg); opacity: 1; }
    84%, 94% { transform: rotateZ(60.94deg); opacity: 1; }
}

@keyframes speedtestHideAfterDl {
    0%, 46% { opacity: 1; }
    48%, 100% { opacity: 0; }
}

@keyframes speedtestShowAfterDl {
    0%, 46% { opacity: 0; }
    48%, 100% { opacity: 1; }
}

@keyframes speedtestHideAfterUl {
    0%, 94% { opacity: 1; }
    96%, 100% { opacity: 0; }
}

@keyframes speedtestShowAfterUl {
    0%, 94% { opacity: 0; }
    96%, 100% { opacity: 1; }
}

@keyframes speedtestDlLine {
    0%, 10%, 48%, 100% { opacity: 0.25; }
    12%, 46% { opacity: 1; }
}

@keyframes speedtestUlLine {
    0%, 50%, 96%, 100% { opacity: 0.25; }
    52%, 94% { opacity: 1; }
}

@media (max-width: 900px) {
    .hero-section { padding: 100px 20px 40px; }
    .hero-container { grid-template-columns: 1fr; gap: 22px; }
    .hero-text { display: contents; }
    .hero-badge { order: 1; justify-self: center; }
    .hero-title { order: 2; text-align: center; justify-self: center; }
    .hero-anim { max-width: 460px; order: 3; }
    .hero-subtitle { order: 4; text-align: center; justify-self: center; }
    .hero-local-note { order: 5; justify-self: center; text-align: center; }
    .hero-cta-group { order: 6; }
    .hero-areas { order: 7; }
    .hero-cta-group { justify-content: center; }
    .hero-areas { align-items: center; }
}

@media (max-width: 480px) {
    .hero-section { padding-left: 16px; padding-right: 16px; }
    .hero-title { font-size: clamp(30px, 10vw, 42px); }
}

/* ========================================
   Navbar
   ======================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    display: flex;
    align-items: center;
    z-index: 1000;
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid #E5E7EB;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
    height: 70px;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.logo-icon {
    width: 44px;
    height: 44px;
    background: var(--gradient-1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.125rem;
}

.logo-img {
    height: 44px;
    width: auto;
    object-fit: contain;
}

.footer-logo .logo-img {
    height: 40px;
}

.footer-logo .logo-text {
    color: var(--white);
}

.footer-logo .logo-accent {
    color: var(--primary);
}

.logo-text {
    font-size: 1.375rem;
    font-weight: 800;
    color: var(--dark);
    transition: var(--transition);
}

.navbar.scrolled .logo-text {
    color: var(--dark);
}

.logo-accent {
    color: var(--primary-light);
}

.navbar.scrolled .logo-accent {
    color: var(--primary);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-link {
    padding: 0.5rem 1rem;
    font-size: 0.9375rem;
    font-weight: 500;
    color: #4B5563;
    text-decoration: none;
    border-radius: var(--radius);
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
    background: var(--primary-50);
}

.navbar.scrolled .nav-link {
    color: #4B5563;
}

.navbar.scrolled .nav-link:hover,
.navbar.scrolled .nav-link.active {
    color: var(--primary);
    background: var(--primary-50);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.btn-nav {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    background: var(--gradient-1);
    color: var(--white);
    text-decoration: none;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.875rem;
    transition: var(--transition);
}

.btn-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.3);
    color: var(--white);
}

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

.btn-portal:hover {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 10px 20px rgba(48, 162, 212, 0.3);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--dark);
    transition: var(--transition);
}

.navbar.scrolled .nav-toggle span {
    background: var(--dark);
}

/* Old Hero Section Removed - Using New Hero Section at top of file */

.hero-container {
    position: relative;
    z-index: 1;
    padding-top: 100px;
}

.hero-content {
    max-width: 640px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(37, 99, 235, 0.2);
    border: 1px solid rgba(37, 99, 235, 0.3);
    border-radius: var(--radius-full);
    color: var(--primary-light);
    font-size: 0.8125rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--success);
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

.hero-title {
    font-size: 3.75rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.text-gradient {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-desc {
    font-size: 1.125rem;
    color: var(--gray-400);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: var(--gradient-1);
    color: var(--white);
    text-decoration: none;
    border-radius: var(--radius-lg);
    font-weight: 600;
    transition: var(--transition);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.4);
    color: var(--white);
}

.btn-primary i {
    transition: var(--transition);
}

.btn-primary:hover i {
    transform: translateX(5px);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    text-decoration: none;
    border-radius: var(--radius-lg);
    font-weight: 600;
    transition: var(--transition);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    color: var(--white);
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item {
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
    flex-wrap: wrap;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--white);
}

.stat-plus {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-light);
}

.stat-label {
    width: 100%;
    font-size: 0.8125rem;
    color: var(--gray-400);
    margin-top: 0.25rem;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    width: 100%;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.visual-card {
    position: relative;
    width: 280px;
    height: 280px;
    background: var(--gradient-1);
    border-radius: var(--radius-2xl);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 30px 60px rgba(37, 99, 235, 0.4);
}

.card-glow {
    position: absolute;
    inset: -2px;
    background: var(--gradient-1);
    border-radius: inherit;
    z-index: -1;
    filter: blur(20px);
    opacity: 0.5;
}

.card-pulse {
    position: absolute;
    inset: 0;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: inherit;
    animation: card-pulse 2s infinite;
}

@keyframes card-pulse {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.1); opacity: 0; }
}

.speed-display {
    text-align: center;
    color: var(--white);
}

.speed-value {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
}

.speed-number {
    font-size: 5rem;
    font-weight: 800;
    line-height: 1;
}

.speed-unit {
    font-size: 1.5rem;
    font-weight: 600;
}

.speed-label {
    font-size: 0.875rem;
    opacity: 0.9;
    margin-top: 0.5rem;
}

.floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-lg);
    color: var(--white);
    font-size: 0.875rem;
    font-weight: 600;
    animation: float 6s ease-in-out infinite;
}

.floating-card i {
    font-size: 1rem;
}

.card-1 {
    top: 20%;
    left: 0;
    animation-delay: 0s;
}

.card-2 {
    bottom: 20%;
    left: 0;
    animation-delay: 2s;
}

.card-3 {
    top: 50%;
    right: 0;
    animation-delay: 4s;
}

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

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: var(--gray-400);
    font-size: 0.75rem;
    font-weight: 500;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--primary), transparent);
    animation: scroll-line 2s infinite;
}

@keyframes scroll-line {
    0% { opacity: 0; transform: scaleY(0); transform-origin: top; }
    50% { opacity: 1; transform: scaleY(1); transform-origin: top; }
    50.1% { transform-origin: bottom; }
    100% { opacity: 0; transform: scaleY(0); transform-origin: bottom; }
}

/* ========================================
   Marquee Section
   ======================================== */
.marquee-section {
    padding: 1rem 0;
    background: linear-gradient(135deg, #30A2D4 0%, #0D7FB0 100%);
    overflow: hidden;
}

.marquee-track {
    overflow: hidden;
}

.marquee-content {
    display: flex;
    animation: marquee 30s linear infinite;
    white-space: nowrap;
}

.marquee-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0 2rem;
    color: var(--white);
    font-weight: 600;
    font-size: 0.875rem;
}

.marquee-item i {
    font-size: 0.75rem;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ========================================
   Section Common
   ======================================== */
.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 4rem;
}

.section-tag {
    display: inline-block;
    padding: 0.375rem 1rem;
    background: var(--primary-50);
    color: var(--primary);
    border-radius: var(--radius-full);
    font-size: 0.8125rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark);
    line-height: 1.2;
    margin-bottom: 1rem;
}

.section-desc {
    font-size: 1.0625rem;
    color: var(--gray-500);
}

/* ========================================
   Packages Section
   ======================================== */
.packages-section {
    padding: 6rem 0;
    background: var(--gray-100);
}

/* Connection Type Info */
.connection-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.connection-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 2rem;
    border: 2px solid transparent;
    transition: var(--transition);
}

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

.connection-card.broadband-info {
    border-color: #64748b;
}

.connection-card.broadband-info:hover {
    border-color: #475569;
    box-shadow: 0 10px 30px rgba(100, 116, 139, 0.2);
}

.connection-card.dedicated-info {
    border-color: #8b5cf6;
}

.connection-card.dedicated-info:hover {
    border-color: #7c3aed;
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.2);
}

.connection-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #64748b, #475569);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.connection-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.connection-icon.dedicated-icon {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.connection-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.25rem;
}

.connection-subtitle {
    font-size: 0.875rem;
    color: var(--gray-500);
    margin-bottom: 1.5rem;
}

.connection-details {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.connection-pros h4,
.connection-cons h4 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.connection-pros h4 {
    color: #10b981;
}

.connection-cons h4 {
    color: #6366f1;
}

.connection-pros ul,
.connection-cons ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.connection-pros li,
.connection-cons li {
    position: relative;
    padding-left: 1rem;
    margin-bottom: 0.5rem;
    font-size: 0.8125rem;
    color: var(--gray-600);
    line-height: 1.5;
}

.connection-pros li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

.connection-cons li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #6366f1;
    font-weight: bold;
}

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

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

.package-card {
    position: relative;
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 1.25rem;
    transition: var(--transition);
    border: 1px solid transparent;
}

.package-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-2xl);
}

.package-card.featured {
    background: var(--dark);
    color: var(--white);
    border: none;
}

.package-card.featured .package-name,
.package-card.featured .package-price .amount,
.package-card.featured .package-price .thousand {
    color: var(--white);
}

.package-card.featured .package-features li {
    color: var(--gray-300);
}

.package-card.featured .package-features li i {
    color: var(--success);
}

.package-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.375rem 1rem;
    background: var(--gradient-1);
    color: var(--white);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
}

.package-badge:nth-child(2) {
    left: auto;
    right: -10px;
    transform: none;
}

.package-badge.broadband {
    background: linear-gradient(135deg, #64748b, #475569);
}

.package-badge.populer {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.package-badge.best-value {
    background: linear-gradient(135deg, #10b981, #059669);
}

.package-badge.dedicated-badge {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

/* Dedicated Package Styles */
.package-card.dedicated {
    background: linear-gradient(135deg, #faf5ff, #f3e8ff);
    border: 2px solid #c4b5fd;
}

.package-card.dedicated:hover {
    border-color: #8b5cf6;
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.2);
}

.package-card.dedicated .package-icon {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    color: var(--white);
}

.package-header {
    text-align: center;
    margin-bottom: 1rem;
}

.package-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 0.75rem;
    background: var(--primary-50);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--primary);
}

.package-card.featured .package-icon {
    background: var(--gradient-1);
    color: var(--white);
}

.package-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.375rem;
}

.package-speed {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: var(--primary-50);
    color: var(--primary);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
}

.package-card.featured .package-speed {
    background: rgba(255, 255, 255, 0.1);
    color: var(--primary-light);
}

.package-price {
    text-align: center;
    padding: 1rem 0;
    margin-bottom: 1rem;
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
}

.package-card.featured .package-price {
    border-color: var(--dark-700);
}

.package-price .currency {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-500);
    vertical-align: top;
}

.package-price .amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark);
    line-height: 1;
}

.package-price .thousand {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark);
}

.package-price .period {
    display: block;
    font-size: 0.75rem;
    color: var(--gray-500);
    margin-top: 0.25rem;
}

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

.package-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.25rem 0;
    color: var(--gray-600);
    font-size: 0.8125rem;
}

.package-features li i {
    color: var(--success);
    font-size: 0.75rem;
}

.btn-package {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.625rem 1rem;
    background: var(--gradient-1);
    color: var(--white);
    text-decoration: none;
    border-radius: var(--radius-lg);
    font-weight: 600;
    font-size: 0.875rem;
    transition: var(--transition);
}

.btn-package:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.3);
    color: var(--white);
}

.btn-package i {
    transition: var(--transition);
}

.btn-package:hover i {
    transform: translateX(5px);
}

/* ========================================
   Features Section
   ======================================== */
.features-section {
    padding: 6rem 0;
    background: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.feature-card {
    position: relative;
    padding: 2rem;
    background: var(--white);
    border-radius: var(--radius-xl);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: var(--shadow-xl);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-1);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 1.25rem;
}

.feature-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.75rem;
}

.feature-desc {
    font-size: 0.9375rem;
    color: var(--gray-500);
    line-height: 1.6;
}

.feature-number {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 3rem;
    font-weight: 800;
    color: var(--gray-100);
    line-height: 1;
}

/* ========================================
   Testimonials Section
   ======================================== */
.testimonials-section {
    position: relative;
    padding: 6rem 0;
    background: var(--white);
    overflow: hidden;
}

.testimonials-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.testimonials-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(48, 162, 212, 0.05);
}

.testimonials-shape.shape-1 {
    width: 500px;
    height: 500px;
    top: -250px;
    right: -150px;
}

.testimonials-shape.shape-2 {
    width: 400px;
    height: 400px;
    bottom: -200px;
    left: -100px;
}

.testimonials-section .tag-light {
    background: var(--primary-50);
    color: var(--primary);
}

.testimonials-section .title-light {
    color: var(--dark);
}

.testimonials-section .desc-light {
    color: var(--gray-500);
}

.text-gradient-light {
    background: linear-gradient(135deg, #60a5fa 0%, #06b6d4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.testimonials-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.testimonials-track {
    position: relative;
    min-height: 320px;
}

.testimonial-card {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.5s ease;
    pointer-events: none;
    box-shadow: var(--shadow-lg);
}

.testimonial-card.active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}

.testimonial-card.prev {
    opacity: 0;
    transform: translateX(-50px);
}

.testimonial-text {
    font-size: 1.125rem;
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--primary);
}

.author-avatar.initial-avatar {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #30A2D4 0%, #0D7FB0 100%);
    color: var(--white);
    font-size: 1.125rem;
    font-weight: 700;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.25rem;
}

.author-info span {
    font-size: 0.8125rem;
    color: var(--primary);
    font-weight: 500;
}

.testimonials-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

.test-btn {
    width: 44px;
    height: 44px;
    background: var(--dark-700);
    border: 1px solid var(--dark-600);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    cursor: pointer;
    transition: var(--transition);
}

.test-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.test-dots {
    display: flex;
    gap: 0.5rem;
}

.test-dot {
    width: 10px;
    height: 10px;
    background: var(--dark-600);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.test-dot.active {
    width: 30px;
    background: var(--primary);
}

.testimonials-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    padding-top: 3rem;
    border-top: 1px solid var(--dark-700);
}

.test-stat {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    background: var(--dark-800);
    border-radius: var(--radius-lg);
    border: 1px solid var(--dark-700);
}

.test-stat-icon {
    width: 48px;
    height: 48px;
    background: rgba(37, 99, 235, 0.2);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-light);
    font-size: 1.125rem;
    flex-shrink: 0;
}

.test-stat-info {
    display: flex;
    flex-direction: column;
}

.test-stat-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
}

.test-stat-label {
    font-size: 0.8125rem;
    color: var(--gray-400);
}

/* Testimonials Responsive */
@media (max-width: 1024px) {
    .testimonials-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .testimonials-track {
        min-height: 400px;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .testimonial-text {
        font-size: 1rem;
    }
    
    .testimonials-stats {
        grid-template-columns: 1fr;
    }
    
    .test-stat {
        justify-content: center;
    }
}

/* ========================================
   Gallery Section
   ======================================== */
.gallery-section {
    padding: 6rem 0;
    background: var(--gray-50);
}

.gallery-section .section-tag {
    background: var(--primary-50);
    color: var(--primary);
}

.gallery-section .section-title {
    color: var(--dark);
}

.gallery-section .section-desc {
    color: var(--gray-500);
}

.gallery-slider {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.slider-track {
    position: relative;
    height: 500px;
    border-radius: var(--radius-2xl);
    overflow: hidden;
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 5s ease;
}

.slide.active img {
    transform: scale(1.1);
}

.slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 3rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 100%);
    color: var(--white);
}

.slide-tag {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: var(--primary);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.slide-content h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.slide-content p {
    font-size: 1rem;
    opacity: 0.9;
}

.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.slider-btn {
    width: 48px;
    height: 48px;
    background: var(--dark-800);
    border: 1px solid var(--dark-700);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    cursor: pointer;
    transition: var(--transition);
}

.slider-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.slider-dots {
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 10px;
    height: 10px;
    background: var(--dark-700);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    width: 30px;
    background: var(--primary);
}

/* ========================================
   CTA Section
   ======================================== */
.cta-section {
    position: relative;
    padding: 6rem 0;
    background: var(--gradient-1);
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

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

.shape-1 {
    width: 400px;
    height: 400px;
    top: -200px;
    right: -100px;
}

.shape-2 {
    width: 300px;
    height: 300px;
    bottom: -150px;
    left: -100px;
}

.cta-content {
    position: relative;
    text-align: center;
    color: var(--white);
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.cta-desc {
    font-size: 1.125rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: var(--white);
    color: var(--primary);
    text-decoration: none;
    border-radius: var(--radius-lg);
    font-weight: 600;
    font-size: 1.0625rem;
    transition: var(--transition);
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    color: var(--primary);
}

/* ========================================
   Partners Section
   ======================================== */
.partners-section {
    padding: 5rem 0;
    background: var(--white);
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.partner-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--gray-100);
    border-radius: var(--radius-xl);
    transition: var(--transition);
    border: 2px solid transparent;
}

.partner-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
}

.partner-logo {
    width: 140px;
    height: 70px;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.partner-logo svg,
.partner-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
}

/* Main Partner Banner */
.main-partner {
    margin-bottom: 2.5rem;
}

.main-partner-card {
    position: relative;
    background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 50%, #0369a1 100%);
    border-radius: var(--radius-xl);
    padding: 2rem 2.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    overflow: hidden;
}

.main-partner-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.main-partner-card::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: 10%;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.main-partner-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.375rem 0.75rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    color: var(--white);
    font-size: 0.6875rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.main-partner-badge i {
    font-size: 0.75rem;
}

.main-partner-content {
    display: flex;
    align-items: center;
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.main-partner-logo {
    width: 180px;
    flex-shrink: 0;
}

.main-partner-logo svg {
    width: 100%;
    height: auto;
}

.partner-main-img {
    width: 100%;
    height: auto;
    max-height: 80px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.main-partner-info h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.main-partner-info p {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin: 0;
    max-width: 500px;
}

.main-partner-check {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--white);
    position: relative;
    z-index: 1;
}

.main-partner-check i {
    font-size: 2.5rem;
}

.main-partner-check span {
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
}

.partner-info h4 {
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.25rem;
}

.partner-info p {
    font-size: 0.75rem;
    color: var(--gray-500);
    margin: 0;
}

/* Trust Badges */
.trust-badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    padding-top: 2rem;
    border-top: 1px solid var(--gray-200);
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    background: var(--primary-50);
    border-radius: var(--radius-full);
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--primary);
}

.trust-badge i {
    font-size: 0.875rem;
}

/* Partners Responsive */
@media (max-width: 1024px) {
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .main-partner-content {
        flex-direction: column;
        text-align: center;
    }
    
    .main-partner-info p {
        max-width: 100%;
    }
    
    .main-partner-check {
        display: none;
    }
}

@media (max-width: 768px) {
    .partners-section {
        padding: 3rem 0;
    }
    
    .main-partner-card {
        flex-direction: column;
        padding: 1.5rem;
        text-align: center;
    }
    
    .main-partner-content {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .main-partner-logo {
        width: 150px;
    }
    
    .main-partner-info h3 {
        font-size: 1.25rem;
    }
    
    .main-partner-badge {
        position: relative;
        top: 0;
        right: 0;
        display: inline-flex;
        margin-bottom: 1rem;
    }
    
    .partners-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .partner-card {
        flex-direction: row;
        text-align: left;
        padding: 1.25rem;
        gap: 1rem;
    }
    
    .partner-logo {
        width: 100px;
        height: 50px;
        margin-bottom: 0;
        flex-shrink: 0;
    }
    
    .trust-badges {
        gap: 0.5rem;
    }
    
    .trust-badge {
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
    }
}

/* ========================================
   Contact Section
   ======================================== */
.contact-section {
    padding: 4rem 0;
    background: var(--gray-100);
}

.contact-section .container {
    max-width: 1200px;
}

.contact-section .section-header {
    margin-bottom: 2.5rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1.5rem;
}

.contact-map-wrapper {
    display: flex;
    flex-direction: column;
}

.contact-map {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow);
    height: 100%;
}

.contact-map h4 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.25rem;
}

.contact-map h4 i {
    color: var(--primary);
}

.contact-map > p {
    font-size: 0.8125rem;
    color: var(--gray-500);
    margin-bottom: 1rem;
}

.map-container {
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.map-areas {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.area-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.375rem 0.75rem;
    background: var(--primary-50);
    color: var(--primary);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
}

.area-tag i {
    font-size: 0.625rem;
}

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

.contact-form {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    box-shadow: var(--shadow);
}

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

.form-group label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.375rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 0.875rem;
    background: var(--gray-100);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    font-family: inherit;
    font-size: 0.875rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    background: var(--white);
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.btn-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.875rem;
    background: var(--gradient-1);
    color: var(--white);
    border: none;
    border-radius: var(--radius);
    font-family: inherit;
    font-size: 0.9375rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(37, 99, 235, 0.3);
}

.contact-info-card {
    background: var(--dark);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    color: var(--white);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.contact-info-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 0.875rem;
    margin-bottom: 1.125rem;
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-light);
    font-size: 0.875rem;
    flex-shrink: 0;
}

.info-content {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}

.info-label {
    font-size: 0.75rem;
    color: var(--gray-400);
}

.info-value {
    font-size: 0.875rem;
    font-weight: 600;
}

.info-sub {
    font-size: 0.8125rem;
    color: var(--gray-500);
    margin-top: 0.25rem;
    display: block;
}

/* ========================================
   Footer
   ======================================== */
.footer {
    background: #1F2937;
    padding: 4rem 0 0;
    color: var(--white);
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid #374151;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    margin-bottom: 1rem;
}

.footer-desc {
    font-size: 0.9375rem;
    color: #9CA3AF;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: #374151;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9CA3AF;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary);
    color: var(--white);
}

.footer-links h4,
.footer-contact h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    color: var(--white);
}

.footer-links ul,
.footer-contact ul {
    list-style: none;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #9CA3AF;
    text-decoration: none;
    font-size: 0.9375rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--white);
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #9CA3AF;
    font-size: 0.9375rem;
}

.footer-contact li i {
    color: var(--primary);
}

.footer-bottom {
    padding: 1.5rem 0;
    text-align: center;
    background: #111827;
}

.footer-bottom p {
    font-size: 0.875rem;
    color: #6B7280;
}

/* ========================================
   WhatsApp Float
   ======================================== */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.whatsapp-icon {
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.75rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
    animation: whatsapp-pulse 2s infinite;
}

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

@keyframes whatsapp-pulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6); }
}

.whatsapp-tooltip {
    padding: 0.5rem 1rem;
    background: var(--dark);
    color: var(--white);
    border-radius: var(--radius);
    font-size: 0.875rem;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: var(--transition);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* ========================================
   Back to Top
   ======================================== */
.back-to-top {
    position: fixed;
    bottom: 6rem;
    right: 2rem;
    width: 44px;
    height: 44px;
    background: var(--dark);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    z-index: 998;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--primary);
}

/* ========================================
   Animations
   ======================================== */
[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-animate="fade-left"] {
    transform: translateX(30px);
}

[data-animate].animated {
    opacity: 1;
    transform: translate(0);
}

/* ========================================
   Responsive
   ======================================== */
@media (max-width: 1024px) {
    .packages-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-top {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        align-items: flex-start;
        padding: 5rem 2rem;
        box-shadow: var(--shadow-2xl);
        transition: var(--transition);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .btn-nav span {
        display: none;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-visual {
        display: none;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
        align-items: flex-start;
    }
    
    .stat-divider {
        display: none;
    }
    
    .packages-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .slider-track {
        height: 350px;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .whatsapp-tooltip {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .cta-title {
        font-size: 1.75rem;
    }
}