@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700;900&display=swap');

:root {
    --color-background: #0D0C1D; /* Dark Blue/Purple */
    --color-surface: #17162B;
    --color-text: #F0F0F0;
    --color-text-muted: #A0A0B0;
    --gradient-primary: linear-gradient(135deg, #00F0FF, #C300FF);
    --gradient-secondary: linear-gradient(135deg, #FF6B00, #FF007A);
    --gradient-animated: linear-gradient(270deg, #00F0FF, #C300FF, #FF6B00, #FF007A);
    --font-primary: 'Poppins', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    background-color: var(--color-background);
    color: var(--color-text);
    line-height: 1.7;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Background Blobs */
.background-blobs {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.2;
}

.blob1 { 
    width: 400px; height: 400px; 
    top: -150px; left: -150px; 
    background: #00F0FF; 
    animation: moveBlob1 20s infinite alternate;
}
.blob2 { 
    width: 500px; height: 500px; 
    bottom: -200px; right: -200px; 
    background: #C300FF; 
    animation: moveBlob2 25s infinite alternate-reverse;
}
.blob3 { 
    width: 300px; height: 300px; 
    top: 50%; left: 50%; 
    transform: translate(-50%, -50%);
    background: #FF007A;
    animation: moveBlob3 15s infinite alternate;
}

@keyframes moveBlob1 { from { transform: translate(0, 0) scale(1); } to { transform: translate(100px, 150px) scale(1.2); } }
@keyframes moveBlob2 { from { transform: translate(0, 0) scale(1); } to { transform: translate(-150px, -100px) scale(0.8); } }
@keyframes moveBlob3 { from { transform: rotate(0deg) scale(1.1); } to { transform: rotate(360deg) scale(0.9); } }

/* --- Header --- */
.site-header {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1200px;
    z-index: 1000;
    padding: 10px 0;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.glass-effect {
    background: rgba(23, 22, 43, 0.6);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 30px;
}

.logo {
    text-decoration: none;
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 35px;
}

.main-nav a {
    color: var(--color-text);
    text-decoration: none;
    font-weight: 400;
    position: relative;
    padding: 5px 0;
    transition: color 0.3s ease;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.main-nav a:hover, .main-nav a.active {
    color: #fff;
    text-shadow: 0 0 10px rgba(0, 240, 255, 0.7);
}

.main-nav a:hover::after, .main-nav a.active::after {
    width: 100%;
}

/* --- General Components --- */
main { padding-top: 120px; }
.section-padding { padding: 100px 0; }
h1, h2, h3, h4 { font-weight: 600; }
h1 { font-size: 3.5rem; line-height: 1.2; margin-bottom: 20px; }
h2 { font-size: 2.8rem; margin-bottom: 20px; text-align: center; }
.section-title { font-size: 2.8rem; margin-bottom: 15px; text-align: center; }
.section-subtitle { font-size: 1.1rem; color: var(--color-text-muted); text-align: center; max-width: 600px; margin: 0 auto 50px; }

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    font-weight: 900;
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--gradient-primary);
    color: #fff;
    box-shadow: 0 5px 20px rgba(195, 0, 255, 0.3);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 8px 25px rgba(0, 240, 255, 0.4); }

.btn-secondary {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
}
.btn-secondary:hover { background-color: #fff; color: var(--color-background); }

.btn-light {
    background-color: #fff;
    color: var(--color-background);
}
.btn-light:hover { background-color: #eee; transform: translateY(-2px); }

/* --- Hero Section --- */
.hero-section { min-height: calc(100vh - 120px); display: flex; align-items: center; }
.diagonal-split { display: flex; align-items: center; gap: 40px; }
.hero-text { flex: 1; }
.hero-text p { font-size: 1.2rem; color: var(--color-text-muted); margin-bottom: 30px; }
.hero-image-container { 
    flex: 1;
    clip-path: polygon(25% 0%, 100% 0%, 100% 100%, 0% 100%);
    position: relative;
}
.hero-image { width: 100%; border-radius: 20px; }

/* --- Features Quick Section --- */
.features-quick-section { padding: 50px 0; }
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.feature-pill {
    background: var(--color-surface);
    padding: 25px;
    border-radius: 50px;
    border: 1px solid transparent;
    background-clip: padding-box;
    border-image: var(--gradient-primary) 1;
    text-align: center;
    transition: all 0.3s ease;
}
.feature-pill:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0,0,0,0.2); }
.feature-pill h3 { font-size: 1.1rem; margin-bottom: 5px; }
.feature-pill p { font-size: 0.9rem; color: var(--color-text-muted); }

/* --- Services Preview Section --- */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; }
.service-card {
    position: relative;
    background: var(--color-surface);
    padding: 2px;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.4s ease;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    background: var(--gradient-primary);
    z-index: 0;
    transition: opacity 0.4s ease;
    opacity: 0;
}
.service-card:hover::before { opacity: 1; }
.service-card:hover { transform: translateY(-10px); }
.service-card-content { 
    background: var(--color-surface);
    padding: 30px;
    border-radius: 14px;
    position: relative;
    z-index: 1;
    height: 100%;
}
.service-card h4 { font-size: 1.4rem; margin-bottom: 15px; }
.service-card p { color: var(--color-text-muted); margin-bottom: 20px; }
.service-card a { color: #00F0FF; text-decoration: none; font-weight: 600; }

/* --- About Preview Section --- */
.diagonal-gradient-bg { 
    background: var(--gradient-secondary);
    padding: 100px 0;
    clip-path: polygon(0 10%, 100% 0, 100% 90%, 0 100%);
}
.about-preview-content { display: flex; align-items: center; gap: 50px; }
.about-preview-text { flex: 1.2; }
.about-preview-images { 
    flex: 1;
    position: relative;
    min-height: 400px;
}
.about-preview-images img { 
    position: absolute;
    border-radius: 15px;
    border: 5px solid var(--color-background);
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}
.about-img-1 { width: 90%; top: 0; left: 0; }

/* --- Process Section --- */
.process-timeline { 
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding: 40px 0;
}
.process-timeline::before {
    content: '';
    position: absolute;
    top: 0; left: 40px;
    width: 4px;
    height: 100%;
    background: var(--gradient-primary);
    transform: skewX(-15deg);
}
.timeline-item { display: flex; align-items: flex-start; gap: 30px; position: relative; }
.timeline-step { 
    width: 80px; height: 80px; 
    background: var(--color-surface);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.8rem; font-weight: 700;
    border: 3px solid #00F0FF;
    flex-shrink: 0;
    z-index: 2;
}
.timeline-content h3 { font-size: 1.5rem; }
.timeline-content p { color: var(--color-text-muted); }

/* --- Stats Section --- */
.stats-section { background-color: var(--color-surface); padding: 80px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; text-align: center; }
.stat-number { font-size: 4rem; font-weight: 900; display: block; margin-bottom: 10px; }
.stat-item p { color: var(--color-text-muted); }

/* --- Testimonials Section --- */
.testimonials-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.testimonial-card { padding: 30px; border-radius: 15px; border: 1px solid rgba(255, 255, 255, 0.1); }
.testimonial-card p { font-size: 1.1rem; margin-bottom: 25px; font-style: italic; }
.testimonial-author { display: flex; justify-content: space-between; align-items: center; }
.author-info strong { display: block; }
.author-info span { font-size: 0.9rem; color: var(--color-text-muted); }
.author-rating .star { font-size: 1.2rem; background: var(--gradient-primary); -webkit-background-clip: text; -webkit-text-fill-color: transparent;}

/* --- FAQ Section --- */
.faq-accordion { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid rgba(255, 255, 255, 0.1); }
.faq-question { 
    width: 100%; 
    background: none; border: none; 
    color: var(--color-text); 
    text-align: left; font-size: 1.2rem; 
    padding: 25px 0;
    cursor: pointer;
    display: flex; justify-content: space-between; align-items: center;
}
.faq-indicator { 
    width: 20px; height: 20px; 
    position: relative;
    transition: transform 0.3s ease;
}
.faq-indicator::before, .faq-indicator::after {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    width: 100%; height: 2px;
    background: var(--gradient-primary);
    transform: translate(-50%, -50%);
}
.faq-indicator::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-item.active .faq-indicator { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.5s ease; }
.faq-answer p { padding: 0 0 25px 0; color: var(--color-text-muted); }
.faq-item.active .faq-answer { max-height: 300px; }

/* --- CTA Section --- */
.animated-gradient-bg {
    padding: 100px 0;
    background: var(--gradient-animated);
    background-size: 400% 400%;
    animation: gradientAnimation 15s ease infinite;
}
@keyframes gradientAnimation {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
.cta-content { display: flex; align-items: center; gap: 50px; }
.cta-image { flex: 1; }
.cta-image img { width: 100%; border-radius: 15px; }
.cta-text { flex: 1.5; }
.cta-text h2 { text-align: left; font-size: 2.5rem; }
.cta-text p { margin-bottom: 30px; }
.cta-text-only { text-align: center; }
.cta-text-only h2 { text-align: center; color: var(--color-background); font-size: 2.8rem;}
.cta-text-only p { color: var(--color-background); max-width: 600px; margin: 0 auto 30px; font-size: 1.1rem; }

/* --- Footer --- */
.site-footer { 
    background-color: #080712;
    padding: 80px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1.5fr 1.5fr; gap: 40px; margin-bottom: 50px; }
.footer-column h4 { font-size: 1.2rem; margin-bottom: 20px; background: var(--gradient-primary); -webkit-background-clip: text; -webkit-text-fill-color: transparent;}
.footer-column p, .footer-column a { color: var(--color-text-muted); text-decoration: none; }
.footer-column a:hover { color: #fff; }
.footer-column ul { list-style: none; }
.footer-column ul li { margin-bottom: 10px; }
.footer-about .logo { margin-bottom: 20px; }
.footer-bottom { 
    padding-top: 30px; margin-top: 30px; 
    display: flex; justify-content: space-between; align-items: center; 
}
.glass-divider { border-top: 1px solid rgba(255, 255, 255, 0.1); }
.social-links a { margin-left: 20px; color: var(--color-text-muted); text-decoration: none; }
.social-links a:hover { color: #fff; }

/* --- Page Specific Styles --- */
.page-hero { text-align: center; padding: 60px 0; }
.page-hero p { max-width: 800px; margin: 0 auto; font-size: 1.2rem; color: var(--color-text-muted); }

.legal-page { padding: 120px 0; }
.legal-page .container { max-width: 800px; }
.legal-page h1 { margin-bottom: 30px; }
.legal-page h2 { text-align: left; margin-top: 40px; font-size: 1.8rem; }
.legal-page p { margin-bottom: 15px; }
.legal-page ul { margin-left: 20px; margin-bottom: 15px; }
.legal-page a { color: #00F0FF; }

/* Services page */
.service-detail-section { overflow: hidden; }
.service-detail-content { display: flex; align-items: center; gap: 50px; }
.service-detail-content.reverse { flex-direction: row-reverse; }
.service-detail-text { flex: 1.2; }
.service-detail-image { flex: 1; }
.service-detail-image img { width: 100%; border-radius: 15px; }
.service-detail-text h2 { text-align: left; font-size: 2.5rem; }
.service-detail-text ul { list-style: none; margin-top: 20px; }
.service-detail-text ul li { position: relative; padding-left: 30px; margin-bottom: 10px; }
.service-detail-text ul li::before { content: '✓'; position: absolute; left: 0; font-weight: bold; color: #00F0FF; }

/* About page */
.about-section-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.about-section-image img { width: 100%; border-radius: 15px; }
.about-section-image figcaption { text-align: center; margin-top: 10px; color: var(--color-text-muted); font-style: italic; }
.mission-vision-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.mission-card, .vision-card { background: rgba(0,0,0,0.2); padding: 30px; border-radius: 15px; }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.team-member-card { background: var(--color-surface); padding: 30px; border-radius: 15px; text-align: center; transition: transform 0.3s; }
.team-member-card:hover { transform: translateY(-10px); }
.team-member-card img { width: 120px; height: 120px; border-radius: 50%; object-fit: cover; margin-bottom: 20px; border: 3px solid #00F0FF; }
.team-member-card h4 { font-size: 1.3rem; margin-bottom: 5px; }
.team-member-card span { color: var(--color-text-muted); display: block; margin-bottom: 15px; }
.why-us-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.why-us-item { display: flex; gap: 20px; align-items: flex-start; }
.why-us-icon { font-size: 1.5rem; color: #00F0FF; font-weight: bold; }

/* Contact page */
.contact-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 50px; }
.contact-form .form-group { margin-bottom: 20px; }
.contact-form label { display: block; margin-bottom: 8px; color: var(--color-text-muted); }
.contact-form input, .contact-form textarea, .contact-form select {
    width: 100%;
    padding: 12px;
    background-color: var(--color-surface);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    color: var(--color-text);
    font-family: var(--font-primary);
}
.contact-image { width: 100%; border-radius: 15px; margin-bottom: 30px; }
.contact-info-item { margin-bottom: 20px; }
.contact-info-item h4 { font-size: 1.1rem; color: #00F0FF; margin-bottom: 5px; }
.map-section { padding-bottom: 100px; }
.map-placeholder { height: 400px; background-color: var(--color-surface); border-radius: 15px; display: flex; align-items: center; justify-content: center; color: var(--color-text-muted); border: 1px solid rgba(255,255,255,0.1); }

/* 404 page */
.error-404-section { min-height: 60vh; display: flex; align-items: center; justify-content: center; text-align: center; }
.error-content h1 { font-size: 10rem; line-height: 1; }
.error-content h2 { font-size: 3rem; margin-bottom: 20px; }
.error-content p { color: var(--color-text-muted); margin-bottom: 30px; }

/* --- Responsive --- */
.mobile-nav-toggle { display: none; }

@media (max-width: 992px) {
    h1 {font-size: 2.8rem;}
    h2, .section-title { font-size: 2.2rem; }
    .diagonal-split, .about-preview-content { flex-direction: column; }
    .hero-image-container { clip-path: none; }
    .features-grid { grid-template-columns: 1fr 1fr; }
    .stats-grid, .testimonials-grid, .why-us-grid { grid-template-columns: 1fr; }
    .cta-content { flex-direction: column; text-align: center; }
    .cta-text h2 { text-align: center; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .service-detail-content, .service-detail-content.reverse { flex-direction: column; }
    .about-section-grid, .team-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .main-nav { 
        display: none; 
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--color-surface);
    }
    .main-nav ul { flex-direction: column; gap: 0; padding: 20px; }
    .main-nav ul li { width: 100%; text-align: center; }
    .main-nav ul a { padding: 15px; display: block; }
    .main-nav.active { display: block; }

    .mobile-nav-toggle {
        display: block;
        background: none; border: none; cursor: pointer;
        width: 30px; height: 22px; position: relative;
    }
    .mobile-nav-toggle span {
        display: block; width: 100%; height: 3px;
        background-color: #fff;
        border-radius: 3px;
        position: absolute; left: 0;
        transition: all 0.3s ease;
    }
    .mobile-nav-toggle span:nth-child(1) { top: 0; }
    .mobile-nav-toggle span:nth-child(2) { top: 50%; transform: translateY(-50%); }
    .mobile-nav-toggle span:nth-child(3) { bottom: 0; }

    .mobile-nav-toggle.open span:nth-child(1) { top: 50%; transform: translateY(-50%) rotate(45deg); }
    .mobile-nav-toggle.open span:nth-child(2) { opacity: 0; }
    .mobile-nav-toggle.open span:nth-child(3) { bottom: auto; top: 50%; transform: translateY(-50%) rotate(-45deg); }

    .features-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 15px; }
}

.map-container {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 240, 255, 0.1);
}
.map-container iframe {
    display: block;
}

/* Disclaimer */
.footer-disclaimer {
    font-size: 0.75rem;
    opacity: 0.7;
    margin-bottom: 1rem;
    line-height: 1.4;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: -100%;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    border-top: 1px solid #e0e0e0;
    padding: 1.5rem;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    transition: bottom 0.5s ease;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.1);
}
.cookie-banner.show { bottom: 0; }
.cookie-banner__content { text-align: center; max-width: 600px; font-size: 0.9rem; color: #333; }
.cookie-banner__content a { color: var(--color-primary, #007bff); }
.cookie-banner__actions { display: flex; gap: 1rem; }
.cookie-banner__actions button { 
    padding: 0.75rem 1.5rem; 
    border: none; 
    border-radius: 4px; 
    cursor: pointer; 
    font-size: 0.9rem; 
    transition: all 0.3s ease; 
}
.cookie-banner__actions button:first-child { background: var(--color-primary, #007bff); color: white; }
.cookie-banner__actions button:last-child { background: #f0f0f0; color: #333; }
@media (max-width: 768px) { .cookie-banner { flex-direction: column; text-align: center; } }
