:root {
    --bg-dark: #050a14;
    --card-bg: rgba(13, 25, 41, 0.7);
    --accent: #00f2ff;
    --accent-glow: rgba(0, 242, 255, 0.3);
    --white: #ffffff;
    --text-muted: #a0aec0;
    --nav-bg: rgba(5, 10, 20, 0.85);
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-soft: 0 10px 40px rgba(0, 0, 0, 0.5);
    --border: rgba(0, 242, 255, 0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--white);
    overflow-x: hidden;
    line-height: 1.6;
}

body.no-scroll {
    overflow: hidden;
}

#canvas-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.4;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    backdrop-filter: blur(15px);
    background-color: var(--nav-bg);
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Language Toggle */
.lang-toggle {
    display: flex;
    gap: 0.25rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 0.2rem;
}

.lang-btn {
    background: transparent;
    border: none;
    color: var(--text-muted);
    padding: 0.4rem 0.6rem;
    font-size: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    border-radius: 6px;
    transition: var(--transition-smooth);
    letter-spacing: 0.5px;
}

.lang-btn:hover {
    color: var(--white);
}

.lang-btn.active {
    background: var(--accent);
    color: var(--bg-dark);
}

.mobile-menu-btn {
    display: none;
    background: transparent;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--white);
    letter-spacing: 1px;
}

.logo-icon {
    color: var(--accent);
    filter: drop-shadow(0 0 5px var(--accent-glow));
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

nav a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition-smooth);
}

nav a:hover {
    color: var(--accent);
}

/* Base Buttons */
.btn {
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary {
    background-color: var(--accent);
    color: var(--bg-dark);
    box-shadow: 0 4px 15px var(--accent-glow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px var(--accent-glow);
}

.btn-primary-outline {
    border: 1px solid var(--accent);
    color: var(--accent);
}

.btn-primary-outline:hover {
    background-color: var(--accent);
    color: var(--bg-dark);
}

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Hero Section */
.hero {
    min-height: 70vh; /* even more compact */
    display: flex;
    align-items: center;
    padding: 80px 0 40px;
    position: relative;
}

.hero-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.hero h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 2rem;
    font-weight: 800;
}

.hero p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
}

.accent-text {
    color: var(--accent);
    background: linear-gradient(90deg, #00f2ff, #009ceb);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-btns {
    display: flex;
    gap: 1.5rem;
}

.hero-info {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    border-left: 2px solid var(--accent); /* Minimalist accent instead of box */
}

.hero-info p {
    margin-bottom: 0;
    font-size: 0.95rem;
    line-height: 1.8;
}

/* Services */
.services {
    padding: 4rem 0;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 2.5rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem; 
}

.service-card {
    background: transparent; /* No box background */
    padding: 1rem;
    border: none; /* No borders */
    transition: var(--transition-smooth);
    position: relative;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent);
    box-shadow: 0 20px 40px rgba(0, 242, 255, 0.1);
}

.card-icon {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.features {
    list-style: none;
    margin-bottom: 2.5rem;
}

.features li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
    color: #e2e8f0;
}

.features i {
    color: var(--accent);
    font-size: 0.8rem;
}

.card-footer {
    display: flex;
    justify-content: center;
}

.btn-cta {
    background-color: #25D366; /* WhatsApp Green */
    color: white;
    width: 100%;
    justify-content: center;
}

.btn-cta:hover {
    background-color: #128C7E;
    transform: translateY(-3px);
}

/* Blog Carousel */
.blog {
    padding: 4rem 0;
    background: transparent;
}

.carousel-container {
    position: relative;
    padding: 0 50px;
}

.blog-carousel {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 2rem;
    padding: 1.5rem 0.5rem;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-behavior: smooth;
    max-width: 1100px;
    margin: 0 auto;
}

.blog-carousel::-webkit-scrollbar {
    display: none;
}

.blog-card {
    flex: 0 0 320px;
    scroll-snap-align: start;
    background: rgba(13, 25, 41, 0.4);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    text-align: left;
}

.blog-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
    box-shadow: 0 15px 35px rgba(0, 242, 255, 0.1);
    background: rgba(13, 25, 41, 0.6);
}

.blog-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.blog-header-icon {
    font-size: 2rem;
    color: var(--accent);
    filter: drop-shadow(0 0 8px var(--accent-glow));
}

.blog-tag {
    background: rgba(0, 242, 255, 0.1);
    color: var(--accent);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    border: 1px solid var(--border);
    text-transform: uppercase;
}

.blog-body {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.blog-date {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 500;
}

.blog-body h3 {
    font-size: 1.4rem;
    line-height: 1.3;
    margin: 0;
    color: var(--white);
}

.blog-body p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-link {
    margin: 1rem auto 0;
    color: var(--accent);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1.8rem;
    border: 1px solid var(--border);
    border-radius: 10px;
    width: fit-content;
    transition: var(--transition-smooth);
    background: rgba(0, 242, 255, 0.05);
}

.blog-link:hover {
    background: var(--accent);
    color: var(--bg-dark);
    box-shadow: 0 0 20px var(--accent-glow);
    transform: translateX(5px);
}

.blog-link i {
    transition: transform 0.3s ease;
}

.blog-link:hover i {
    transform: translateX(3px);
}

.carousel-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    color: var(--white);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

.carousel-btn.prev { left: -10px; }
.carousel-btn.next { right: -10px; }

.carousel-btn:hover {
    background: var(--accent);
    color: var(--bg-dark);
}

/* Newsletter Section */
.newsletter {
    padding: 6rem 0;
}

.newsletter-card {
    background: linear-gradient(135deg, rgba(0, 242, 255, 0.05) 0%, rgba(13, 25, 41, 0.8) 100%);
    border: 1px solid var(--border);
    border-radius: 30px;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2rem;
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.newsletter-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.newsletter-info p {
    color: var(--text-muted);
    max-width: 600px;
    font-size: 1.1rem;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    width: 100%;
    max-width: 500px;
}

.newsletter-form input {
    flex: 1;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1rem 1.5rem;
    color: white;
    outline: none;
    transition: var(--transition-smooth);
}

.newsletter-form input:focus {
    border-color: var(--accent);
    background: rgba(255, 255, 255, 0.07);
    box-shadow: 0 0 15px var(--accent-glow);
}

.newsletter-message {
    font-size: 0.9rem;
    font-weight: 600;
    min-height: 1.2rem;
}

/* Footer */
footer {
    padding: 3rem 0;
}

.disclaimer {
    color: #64748b;
    font-size: 0.75rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    text-align: justify;
    padding: 0 1rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.disclaimer p {
    margin-bottom: 1rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2rem;
    text-align: center;
}

.footer-links {
    margin-top: 1rem;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    margin: 0 0.5rem;
    transition: var(--transition-smooth);
}

.footer-links a:hover {
    color: var(--accent);
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }

@media (max-width: 968px) {
    .mobile-menu-btn { display: block; }

    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(5, 10, 20, 0.98);
        backdrop-filter: blur(20px);
        display: flex;
        align-items: center;
        justify-content: center;
        transition: var(--transition-smooth);
        z-index: 999;
    }

    nav.active {
        right: 0;
    }

    nav ul {
        flex-direction: column;
        text-align: center;
        gap: 3rem;
    }

    nav a {
        font-size: 1.5rem;
        font-weight: 700;
        color: var(--white);
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero h1 { font-size: 2.5rem; }
    .hero-btns { justify-content: center; flex-direction: column; width: 100%; }
    .hero-btns .btn { width: 100%; justify-content: center; }
    
    .hero-info {
        border-left: none;
        border-top: 2px solid var(--accent);
        padding-top: 2rem;
    }

    .hide-mobile { display: none; }
    
    .newsletter-card { padding: 2rem; }
    .newsletter-form { flex-direction: column; }
    .newsletter-form input, .newsletter-form button { width: 100%; }

    .section-title { font-size: 2rem; }
}

@media (max-width: 600px) {
    header { padding: 0.5rem 0; }
    .logo-text { font-size: 1.2rem; }
    .container { padding: 0 1.5rem; }
    
    .services-grid { gap: 2rem; }
    .service-card { padding: 0.5rem; }
}

/* Cookie Banner & Overlay */
.cookie-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    z-index: 9998;
    display: none;
}

.cookie-banner {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 650px;
    background: rgba(13, 25, 41, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 2.5rem;
    z-index: 9999;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), 0 0 20px rgba(0, 242, 255, 0.1);
    display: none; /* Controlled by JS */
    animation: slideUpFade 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes slideUpFade {
    from { transform: translate(-50%, 40px); opacity: 0; }
    to { transform: translate(-50%, 0); opacity: 1; }
}

.cookie-header {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin-bottom: 1.5rem;
}

.cookie-header h3 {
    font-size: 1.4rem;
    font-weight: 700;
}

.cookie-icon {
    color: var(--accent);
    font-size: 1.8rem;
    filter: drop-shadow(0 0 10px var(--accent-glow));
}

.cookie-content p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 1.2rem;
    line-height: 1.6;
}

.accent-link {
    color: var(--accent);
    text-decoration: underline;
    font-weight: 600;
}

.cookie-options {
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.option-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
}

.option-info strong {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 0.2rem;
}

.option-info p {
    font-size: 0.8rem !important;
    margin-bottom: 0 !important;
    opacity: 0.7;
}

/* Switch Styling */
.switch {
    position: relative;
    display: inline-block;
    width: 44px;
    height: 24px;
    flex-shrink: 0;
}

.switch input { opacity: 0; width: 0; height: 0; }

.slider {
    position: absolute;
    cursor: pointer;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: rgba(255, 255, 255, 0.1);
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: .4s;
}

input:checked + .slider { background-color: var(--accent); }
input:checked + .slider:before { transform: translateX(20px); }
input:disabled + .slider { opacity: 0.5; cursor: not-allowed; }

.slider.round { border-radius: 34px; }
.slider.round:before { border-radius: 50%; }

.cookie-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.actions-main {
    display: flex;
    gap: 1rem;
    width: 100%;
}

.actions-main .btn {
    flex: 1;
    justify-content: center;
}

.btn-danger-outline {
    border: 1px solid rgba(255, 75, 75, 0.4);
    color: #ff4b4b;
    background: transparent;
}

.btn-danger-outline:hover {
    background: rgba(255, 75, 75, 0.1);
    border-color: #ff4b4b;
}

@media (max-width: 600px) {
    .cookie-banner {
        bottom: 0;
        left: 0;
        right: 0;
        width: 100%;
        transform: none;
        border-radius: 24px 24px 0 0;
        padding: 2rem 1.5rem;
    }
    
    .actions-main {
        flex-direction: column;
    }

    @keyframes slideUpFade {
        from { transform: translateY(100%); opacity: 0; }
        to { transform: translateY(0); opacity: 1; }
    }
}

/* Privacy Modal */
.privacy-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.privacy-modal .modal-content {
    background: #0a1424;
    border: 1px solid var(--border);
    border-radius: 32px;
    max-width: 850px;
    width: 100%;
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
    padding: 4rem;
    box-shadow: 0 0 100px rgba(0, 0, 0, 0.6), 0 0 30px rgba(0, 242, 255, 0.05);
}

.close-modal {
    position: absolute;
    top: 2rem;
    right: 2rem;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.close-modal:hover {
    background: var(--accent);
    color: var(--bg-dark);
    transform: rotate(90deg);
}

.modal-body h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    font-weight: 800;
}

.legal-text h3 {
    color: var(--accent);
    margin: 2.5rem 0 0.8rem;
    font-size: 1.3rem;
    font-weight: 700;
}

.legal-text p, .legal-text ul {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

.legal-text ul { padding-left: 1.5rem; margin-bottom: 2rem; }
.legal-text li { margin-bottom: 0.8rem; }

.modal-footer-info {
    margin-top: 4rem;
    padding: 1.5rem;
    background: rgba(0, 242, 255, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(0, 242, 255, 0.1);
}

.modal-footer-info p {
    font-size: 0.9rem;
    margin-bottom: 0;
    color: var(--white);
    font-style: italic;
    display: flex;
    gap: 1rem;
    align-items: center;
}

.modal-footer-info i {
    color: var(--accent);
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .privacy-modal .modal-content {
        padding: 3rem 1.5rem;
        border-radius: 0;
        max-height: 100vh;
    }
    
    .modal-body h2 { font-size: 1.8rem; }
}
