/* =========================================
   VARIABLES & DESIGN TOKENS
   ========================================= */
:root {
    /* Colors */
    --bg-color: #050b14;
    --bg-surface: rgba(14, 25, 45, 0.6);
    --bg-surface-hover: rgba(20, 35, 60, 0.8);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-border-hover: rgba(0, 229, 255, 0.4);
    
    --text-main: #f8fafc;
    --text-dim: #94a3b8;
    
    --cyan: #00e5ff;
    --cyan-glow: rgba(0, 229, 255, 0.5);
    --cyan-dark: #008fa3;
    
    --card-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    
    /* Typography */
    --font-family: 'Outfit', sans-serif;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* =========================================
   RESET & BASE
   ========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

/* Background Pattern & Glows */
.bg-pattern {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-image: radial-gradient(rgba(255, 255, 255, 0.04) 2px, transparent 2px), 
                      radial-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px);
    background-size: 40px 40px, 20px 20px;
    background-position: 0 0, 10px 10px;
    z-index: -2;
    pointer-events: none;
}

.glow-orb {
    position: fixed;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(120px);
    z-index: -1;
    pointer-events: none;
    opacity: 0.4;
}

.glow-top-left {
    top: -200px;
    left: -200px;
    background: radial-gradient(circle, var(--cyan-dark), transparent 70%);
}

.glow-bottom-right {
    bottom: -100px;
    right: -200px;
    background: radial-gradient(circle, #0b3456, transparent 70%);
    opacity: 0.5;
}

/* Typography & Utilities */
h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 700;
    letter-spacing: -0.01em;
}

h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.highlight {
    position: relative;
    display: inline-block;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: var(--cyan);
    z-index: -1;
    opacity: 0.6;
    box-shadow: 0 0 15px var(--cyan);
}

.cyan-text { color: var(--cyan); }
.text-dim { color: var(--text-dim); }
.text-sm { font-size: 0.9rem; }
.text-center { text-align: center; }
.flex-center { display: flex; justify-content: center; align-items: center; }
.w-100 { width: 100%; }
.mt-auto { margin-top: auto; }
.mt-xl { margin-top: 80px; }

/* Layout */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

section {
    padding: 60px 0;
}

.section-title {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 40px;
    font-size: 1.8rem;
}

.section-divider {
    border-top: 1px solid var(--glass-border);
    padding-top: 80px;
    margin-top: 40px;
}

/* =========================================
   COMPONENTS
   ========================================= */

/* Glass Cards */
.glass-card {
    background: var(--bg-surface);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 32px 24px;
    box-shadow: var(--card-shadow);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.glass-card:hover {
    transform: translateY(-5px);
    background: var(--bg-surface-hover);
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(255,255,255,0.03) 0%, transparent 100%);
    pointer-events: none;
}

.neon-border-hover:hover {
    border-color: var(--glass-border-hover);
    box-shadow: 0 0 20px rgba(0, 229, 255, 0.15), var(--card-shadow);
}

.featured-card {
    background: linear-gradient(145deg, rgba(14, 25, 45, 0.8), rgba(0, 100, 120, 0.15));
    border-color: rgba(0, 229, 255, 0.3);
}

/* Grids */
.card-grid-4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.card-grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

/* Icons in cards */
.card-icon {
    font-size: 2rem;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 10px rgba(0, 229, 255, 0.5));
}

.card-large-icon {
    font-size: 3.5rem;
    margin-bottom: 24px;
    display: inline-block;
    filter: drop-shadow(0 0 15px rgba(0, 229, 255, 0.4));
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: var(--transition-fast);
    cursor: pointer;
    border: none;
    font-family: var(--font-family);
    letter-spacing: 0.5px;
    gap: 8px;
}

.primary-btn {
    background: var(--cyan);
    color: #030a11;
}

.primary-btn:hover {
    background: #5effff;
    transform: translateY(-2px);
}

.glow-btn {
    box-shadow: 0 0 20px var(--cyan-glow);
}

.glow-btn:hover {
    box-shadow: 0 0 30px var(--cyan-glow);
}

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

.outline-btn:hover {
    background: rgba(0, 229, 255, 0.1);
}

/* =========================================
   SECTIONS
   ========================================= */

/* Hero */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 80vh;
    padding: 80px 0;
    gap: 40px;
}

.hero-content {
    flex: 1;
    max-width: 500px;
}

.hero-content p {
    font-size: 1.1rem;
    color: var(--text-dim);
    margin-bottom: 40px;
}

.hero-media {
    flex: 1.3;
    width: 100%;
    max-width: 750px;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5), 0 0 40px rgba(0, 229, 255, 0.15);
}

/* Carousel */
.carousel {
    width: 100%;
    aspect-ratio: 16/10;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: #111;
}

.carousel::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.1);
    pointer-events: none;
}

.carousel-inner {
    width: 100%;
    height: 100%;
    position: relative;
}

.carousel-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
    background-color: #050b14;
}

.carousel-img.active {
    opacity: 1;
    transform: scale(1);
    z-index: 1;
}

/* Fullscreen mode */
.carousel.fullscreen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    z-index: 99999;
    background: rgba(0,0,0,0.98);
    border-radius: 0;
    margin: 0;
}

.carousel.fullscreen::after {
    display: none;
}

.carousel.fullscreen .carousel-img {
    border-radius: 0;
}

.carousel.fullscreen .nav-btn {
    background: rgba(0,0,0,0.6);
}

.carousel-controls {
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 16px;
    z-index: 10;
    pointer-events: none;
}

.nav-btn {
    pointer-events: auto;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(0,0,0,0.4);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-fast);
}

.nav-btn:hover {
    background: rgba(0, 229, 255, 0.4);
    border-color: var(--cyan);
}

.carousel-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    cursor: pointer;
    transition: var(--transition-fast);
}

.indicator.active {
    background: var(--cyan);
    box-shadow: 0 0 8px var(--cyan);
    width: 24px;
    border-radius: 4px;
}

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.pricing-card {
    padding: 40px 24px;
}

.pricing-tier {
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--text-dim);
    margin-bottom: 16px;
}

.pricing-amount {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    color: var(--cyan);
    margin-bottom: 24px;
}

.pricing-btn {
    margin-top: auto;
}

.best-value {
    border-color: var(--cyan);
    box-shadow: 0 0 30px rgba(0, 229, 255, 0.1), inset 0 0 20px rgba(0, 229, 255, 0.05);
    transform: scale(1.05);
    z-index: 2;
    background: linear-gradient(180deg, rgba(8, 25, 45, 0.9) 0%, rgba(14, 25, 45, 0.6) 100%);
}

.best-value:hover {
    transform: scale(1.05) translateY(-5px);
}

.best-value-badge {
    position: absolute;
    top: 0;
    right: 32px;
    background: var(--cyan);
    color: #000;
    padding: 4px 12px;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 0 0 8px 8px;
    letter-spacing: 0.5px;
}

.highlight-text {
    color: #fff;
    text-shadow: 0 0 15px rgba(255,255,255,0.5);
}

.pricing-sub {
    font-size: 0.9rem;
    color: var(--text-dim);
    margin-top: -16px;
    margin-bottom: 24px;
}

/* CTA */
.cta-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 30px;
}

/* Footer */
.site-footer {
    background-color: #171d24; /* deep dark grey/blue from screenshot */
    padding: 60px 0 20px;
    margin-top: 80px;
    color: #a0aec0;
    font-size: 0.95rem;
}

.site-footer .footer-content {
    display: grid;
    grid-template-columns: 3fr 2fr 3fr 3fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.25rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 20px;
}

.logo-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-weight: 700;
    font-size: 1rem;
}

.yellow-bg { background-color: #fce319; }
.yellow-text { color: #fce319; }
.text-dark { color: #1a202c; }

.brand-col p {
    margin-bottom: 24px;
    line-height: 1.5;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    color: #fff;
    text-decoration: none;
    transition: var(--transition-fast);
}

.social-icons a:hover {
    background: rgba(255,255,255,0.2);
}

.footer-col h4 {
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 16px;
    display: flex;
    gap: 12px;
}

.footer-col a {
    color: #a0aec0;
    text-decoration: none;
    transition: var(--transition-fast);
}

.footer-col a:hover {
    color: #fff;
}

.f-icon {
    margin-top: 2px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.85rem;
}

.privacy-link a {
    color: #a0aec0;
    text-decoration: none;
}

.privacy-link a:hover {
    color: #fff;
}

/* =========================================
   RESPONSIVE DESIGN
   ========================================= */
@media (max-width: 992px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 40px 0;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .hero-content p {
        margin: 0 auto 30px;
    }
    
    .best-value {
        transform: scale(1);
    }
    
    .best-value:hover {
        transform: translateY(-5px);
    }
    
    .site-footer .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 576px) {
    .site-footer .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================
   CONTACT PAGE (DARK PREMIUM)
   ========================================= */

.contact-hero {
    padding-bottom: 60px;
    background: transparent;
}

.contact-navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    color: var(--text-main);
    font-weight: 500;
    margin-bottom: 40px;
}

.contact-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    font-size: 1.25rem;
}

.contact-logo .logo-circle {
    background-color: var(--cyan);
    color: #030a11;
    font-weight: 700;
}

.contact-breadcrumb a {
    color: var(--text-dim);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-fast);
}

.contact-breadcrumb a:hover {
    color: var(--text-main);
}

.contact-lang {
    display: flex;
    gap: 10px;
    align-items: center;
}

.lang-opt {
    text-decoration: none;
    font-size: 0.85rem;
    padding: 6px 10px;
    border-radius: 4px;
    transition: var(--transition-fast);
}

.lang-opt.active, .lang-opt:hover {
    background-color: rgba(0, 229, 255, 0.1);
    color: var(--cyan);
    font-weight: 600;
}

.contact-hero-content {
    max-width: 600px;
    margin: 0 auto;
}

.back-home-link {
    text-decoration: none;
    font-weight: 500;
    margin-bottom: 16px;
    display: inline-block;
    transition: var(--transition-fast);
}

.back-home-link:hover {
    color: #fff;
    text-shadow: 0 0 10px var(--cyan-glow);
}

.contact-hero-content h1 {
    color: var(--text-main);
    margin-bottom: 16px;
}

.contact-main {
    margin-top: -10px;
    padding-bottom: 100px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

/* Form Styles */
.contact-form-card {
    padding: 40px 30px;
}

.form-group {
    margin-bottom: 24px;
}

.form-row {
    display: flex;
    gap: 16px;
}

.form-row .form-group {
    flex: 1;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-main);
}

.form-control {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    font-family: inherit;
    font-size: 0.95rem;
    background: rgba(14, 25, 45, 0.5);
    color: var(--text-main);
    transition: var(--transition-fast);
    backdrop-filter: blur(4px);
}

.form-control::placeholder {
    color: rgba(255,255,255,0.3);
}

.form-control:focus {
    outline: none;
    border-color: var(--cyan);
    background: rgba(14, 25, 45, 0.8);
    box-shadow: 0 0 10px rgba(0, 229, 255, 0.2);
}

select.form-control option {
    background-color: #0b1a2d;
    color: #fff;
}

/* Info Column Styles */
.contact-info-col {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.quick-response-box {
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.border-cyan {
    border-color: rgba(0, 229, 255, 0.3);
}

.quick-icon {
    width: 48px;
    height: 48px;
    background: rgba(0, 229, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.quick-text h4 {
    color: var(--text-main);
    margin-bottom: 4px;
    font-weight: 600;
}

.quick-text p {
    color: var(--text-dim);
    font-size: 0.9rem;
}

.contact-details-card.pt-0 {
    padding-top: 0 !important;
}
.contact-details-card.px-0 {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.map-container {
    height: 220px;
    border-bottom: 1px solid var(--glass-border);
}

.details-content {
    padding: 30px;
}

.details-content h3 {
    color: var(--text-main);
    margin-bottom: 24px;
}

.detail-item {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

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

.detail-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background-color: rgba(0, 229, 255, 0.1);
    color: var(--cyan);
}

.detail-text strong {
    display: block;
    color: var(--text-main);
    margin-bottom: 4px;
    font-weight: 500;
    font-size: 0.95rem;
}

.detail-text p {
    color: var(--text-dim);
    font-size: 0.9rem;
    line-height: 1.5;
}

.bg-cyan {
    background-color: var(--cyan);
}

/* Responsive for Contact Page */
@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        flex-direction: column;
        gap: 0;
    }
}
@media (max-width: 576px) {
    .contact-navbar {
        flex-direction: column;
        gap: 16px;
    }
}

/* =========================================
   WHATSAPP FLOATING BUTTON
   ========================================= */
.whatsapp-float {
    position: fixed;
    width: 70px;
    height: 70px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: pulse-green 2s infinite;
}

.whatsapp-float svg {
    width: 40px;
    height: 40px;
}

@keyframes pulse-green {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 20px rgba(37, 211, 102, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.whatsapp-float:hover {
    transform: scale(1.15) !important;
    animation: none;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.6);
}

@media (max-width: 576px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }
}
