/* ==== CSS Variables & Resets ==== */
:root {
    --bg-color: #0a0a0a;
    --bg-color-alt: #171717;
    --text-main: #fafafa;
    --text-muted: #a3a3a3;
    --primary: #22c55e;
    --primary-glow: rgba(34, 197, 94, 0.5);
    --secondary: #10b981;
    --accent: #eab308;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --wa-color: #25D366;
    --wa-color-dark: #128C7E;
    --font-main: 'Outfit', sans-serif;
}

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

body {
    font-family: var(--font-main);
    background-color: var(--bg-color);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s ease;
}

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

/* ==== Typography ==== */
h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
}

.highlight {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ==== Navigation ==== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 1000;
    transition: 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid transparent;
}

.navbar.scrolled {
    padding: 15px 0;
    background: rgba(10, 14, 23, 0.85);
    border-bottom: 1px solid var(--glass-border);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    gap: 10px;
}

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

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

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a:not(.btn-primary-small) {
    font-weight: 500;
    font-size: 15px;
    color: var(--text-main);
}

.nav-links a:not(.btn-primary-small):hover {
    color: var(--primary);
}

/* ==== Buttons ==== */
.btn-primary-small {
    padding: 8px 20px;
    background: var(--primary);
    color: #fff;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 4px 15px var(--primary-glow);
}

.btn-primary-small:hover {
    background: #2563eb;
    transform: translateY(-2px);
}

.btn-primary, .btn-secondary, .btn-whatsapp-large {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #fff;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(37, 211, 102, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    color: var(--text-main);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

.btn-whatsapp-large {
    background: var(--wa-color);
    color: #fff;
    font-size: 20px;
    padding: 20px 40px;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp-large:hover {
    background: var(--wa-color-dark);
    transform: scale(1.05);
}

.btn-yellow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 16px;
    background: linear-gradient(135deg, #FFD700, #FBBF24);
    color: #000;
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.4);
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid #FFF8DC;
    animation: pulse-yellow 2s infinite;
}

.btn-yellow:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 35px rgba(255, 215, 0, 0.6);
}

@keyframes pulse-yellow {
    0% { box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(255, 215, 0, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 215, 0, 0); }
}

/* ==== Hero Section ==== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
}

.hero-bg-img {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    object-fit: cover;
    opacity: 0.2;
    z-index: -2;
}

/* Dark gradient overlay on hero */
.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at center, transparent 0%, var(--bg-color) 80%);
    z-index: -1;
}

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

.hero-text .badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    color: var(--primary);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 25px;
}

.hero-text h1 {
    font-size: 3.2rem;
    margin-bottom: 25px;
    letter-spacing: -1px;
}

.hero-text p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 500px;
}

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

/* ==== Glassmorphism Server Card ==== */
.glass-card {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 30px 60px rgba(0,0,0, 0.4);
    position: relative;
    overflow: hidden;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 60%);
    z-index: -1;
}

.router-card {
    text-align: center;
    max-width: 400px;
    margin: 0 auto;
}

.status-indicator {
    position: absolute;
    top: 25px; right: 25px;
    width: 12px; height: 12px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 10px var(--accent);
    animation: pulse 2s infinite;
}

.router-icon {
    font-size: 80px;
    color: var(--primary);
    margin-bottom: 30px;
    filter: drop-shadow(0 0 20px var(--primary-glow));
}

.stats {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid var(--glass-border);
    padding-top: 25px;
    margin-top: 25px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.stat-item .label {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-item .value {
    font-size: 18px;
    font-weight: 700;
}
.value.success { color: var(--accent); }
.value.blue { color: var(--primary); }


/* ==== Services Section ==== */
.services {
    padding: 100px 0;
    background-color: var(--bg-color-alt);
    position: relative;
}

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

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

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

.glass-panel {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 40px 30px;
    transition: 0.4s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(59, 130, 246, 0.3);
}

.icon-wrapper {
    width: 60px;
    height: 60px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--primary);
    margin-bottom: 25px;
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* ==== CTA Section ==== */
.cta-section {
    padding: 100px 0;
}

.cta-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(139, 92, 246, 0.1));
    border: 1px solid rgba(139, 92, 246, 0.2);
}

.cta-text h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.cta-text p {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 500px;
}

/* ==== Map Section ==== */
.map-section, .seo-faq {
    padding: 60px 0 20px;
}

/* ==== SEO FAQ Section ==== */
.faq-container {
    padding: 20px 30px;
    border-radius: 20px;
}

.faq-item {
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 15px;
}

.faq-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.faq-item summary {
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--primary);
    transition: var(--transition);
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '\f078';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    transition: transform 0.3s ease;
}

.faq-item[open] summary::after {
    transform: rotate(180deg);
}

.faq-content {
    margin-top: 15px;
    color: var(--text-muted);
    line-height: 1.6;
    animation: fadeInDown 0.3s ease-out;
}

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

.info-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 30px;
}

.weather-widget {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 30px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15), rgba(139, 92, 246, 0.15));
}

.weather-loading {
    color: var(--text-muted);
    font-style: italic;
}

.weather-temp {
    font-size: 3.5rem;
    font-weight: 800;
    margin: 15px 0;
    color: var(--primary);
    text-shadow: 0 0 20px var(--primary-glow);
}

.weather-desc {
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: capitalize;
}

.weather-icon {
    font-size: 3rem;
    color: #FBBF24;
    margin-bottom: 10px;
}

/* ==== SEO Cities List ==== */
.seo-cities {
    padding: 60px 0;
    background-color: var(--bg-color-alt);
    border-top: 1px solid var(--glass-border);
}

.seo-cities h3 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 1.5rem;
    color: var(--text-muted);
}

.cities-list ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.cities-list li a {
    display: block;
    padding: 8px 20px;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    font-size: 14px;
    color: var(--text-muted);
}

.cities-list li a:hover {
    background: rgba(59, 130, 246, 0.1);
    color: var(--primary);
    border-color: rgba(59, 130, 246, 0.3);
}

/* ==== Footer ==== */
footer {
    padding: 40px 0;
    border-top: 1px solid var(--glass-border);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 14px;
    margin-top: 10px;
    max-width: 300px;
}

.footer-links p {
    color: var(--text-muted);
    font-size: 14px;
}

/* ==== Floating WA ==== */
.floating-wa {
    position: fixed;
    bottom: 90px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--wa-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: 0.3s;
    animation: bounce 2s infinite;
}

.floating-wa:hover {
    transform: scale(1.1);
    background: var(--wa-color-dark);
}

/* ==== Animations ==== */
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(16, 185, 129, 0); }
    100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

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

.float-animation {
    animation: float 6s ease-in-out infinite;
}

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

/* Initial hidden state for scroll animation */
.fade-in, .fade-in-up {
    opacity: 0;
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-in-up {
    transform: translateY(30px);
}
.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ==== Responsive ==== */
@media (max-width: 992px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 60px;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .hero-text p {
        margin: 0 auto 30px;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .cta-container {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .cta-text p {
        margin: 0 auto;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none; /* simple mobile nav */
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
}

/* ==== FOMO Notification ==== */
.fomo-notification {
    position: fixed;
    bottom: 20px;
    left: -400px;
    z-index: 9999;
    padding: 15px 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    border-left: 4px solid var(--primary);
    transition: left 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    max-width: 350px;
}

.fomo-notification.show {
    left: 20px;
}

.fomo-icon i {
    font-size: 24px;
    color: var(--primary);
}

.fomo-text p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.3;
}

.fomo-text small {
    font-size: 0.75rem;
    color: var(--text-muted);
}

@media (max-width: 768px) {
    .fomo-notification {
        max-width: calc(100% - 40px);
        bottom: 90px;
    }
}

/* ==== Fake Reviews Carousel ==== */
.review-carousel {
    display: flex;
    overflow-x: auto;
    gap: 20px;
    padding-bottom: 20px;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
    scrollbar-color: var(--primary) var(--bg-color);
}

.review-carousel::-webkit-scrollbar {
    height: 8px;
}
.review-carousel::-webkit-scrollbar-track {
    background: var(--bg-color);
    border-radius: 10px;
}
.review-carousel::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 10px;
}

.review-card {
    min-width: 300px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    padding: 20px;
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

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

.review-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: bold;
    color: #fff;
}

.review-info h4 {
    margin: 0;
    font-size: 1rem;
    color: var(--text-color);
}

.review-stars {
    color: #FBBF24;
    font-size: 0.8rem;
    margin-top: 5px;
}

.review-text {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
    font-style: italic;
}

/* ==== Freshness Widgets ==== */
.trending-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: linear-gradient(135deg, #FF3B30, #FF9500);
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 800;
    box-shadow: 0 4px 15px rgba(255, 59, 48, 0.4);
    animation: bounce 2s infinite;
    z-index: 10;
}

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

.service-card {
    position: relative;
}
