@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700&display=swap');

:root {
    --primary-bg: #05070a;
    --secondary-bg: #0d1117;
    --accent-color: #64b5f6;
    --accent-glow: rgba(100, 181, 246, 0.4);
    --moonlight: #e0e0e0;
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --transition-smooth: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
    cursor: auto !important; /* Revert custom cursor */
}

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

/* Custom Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--primary-bg); }
::-webkit-scrollbar-thumb { background: #222; border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: var(--accent-color); }

/* Glassmorphism */
.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
}

/* Navigation */
nav {
    position: fixed;
    top: 0; width: 100%;
    padding: 20px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: var(--transition-smooth);
}

nav.scrolled {
    padding: 15px 5%;
    background: rgba(5, 7, 10, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 10px;
}

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

.nav-links { display: flex; gap: 30px; list-style: none; }
.nav-links a {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    transition: var(--transition-smooth);
}

.nav-links a:hover { color: var(--accent-color); }

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 0 5%;
}

.hero-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: -1;
}

.hero-bg img {
    width: 100%; height: 100%; object-fit: cover;
    filter: brightness(0.4);
}

.hero-content { max-width: 800px; text-align: center; z-index: 1; }

.hero h1 {
    font-size: clamp(3rem, 8vw, 5rem);
    margin-bottom: 20px;
    background: linear-gradient(to bottom, #fff, #888);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-group { display: flex; gap: 20px; justify-content: center; }

.btn {
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-smooth);
    display: inline-block;
}

.btn-primary { background: var(--accent-color); color: #000; }
.btn-primary:hover { box-shadow: 0 0 25px var(--accent-glow); transform: translateY(-2px); }

.btn-secondary { border: 1px solid var(--glass-border); color: var(--text-primary); }
.btn-secondary:hover { background: var(--glass-bg); transform: translateY(-2px); }

/* Services */
.section-padding { padding: 100px 5%; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-header h2 { font-size: 2.5rem; margin-bottom: 10px; }
.section-header p { color: var(--text-secondary); }

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

.service-card {
    transition: var(--transition-smooth);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    cursor: default;
}

.service-img-wrapper {
    position: relative;
    width: 100%;
    height: 220px;
}

.service-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.service-tag-icon {
    position: absolute;
    top: 15px;
    left: 15px;
    width: 45px;
    height: 45px;
    background: #fff;
    color: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    z-index: 2;
}

.service-body {
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-body h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #fff;
}

.service-body p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-color);
}

.service-card:hover .service-img-wrapper img {
    transform: scale(1.05);
}

/* WhatsApp Floating */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    z-index: 1000;
    text-decoration: none;
    transition: var(--transition-smooth);
}

/* Footer */
footer {
    padding: 60px 5%;
    border-top: 1px solid var(--glass-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

/* Before/After Slider */
.comparison-container {
    width: 100%; max-width: 900px; margin: 40px auto;
    position: relative; aspect-ratio: 16/9;
    overflow: hidden; border-radius: 20px;
    border: 1px solid var(--glass-border);
    cursor: ew-resize !important;
}

.comparison-image { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; pointer-events: none; }
.image-after { clip-path: inset(0 0 0 50%); }
.slider-handle {
    position: absolute; top: 0; left: 50%; width: 4px; height: 100%;
    background: var(--accent-color); transform: translateX(-50%);
}

.slider-handle::after {
    content: "↔"; position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -50%); width: 40px; height: 40px;
    background: var(--accent-color); color: #000; border-radius: 50%;
    display: flex; align-items: center; justify-content: center; font-weight: bold;
}

/* Gallery Luxury */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative; height: 350px; overflow: hidden;
    border-radius: 15px; border: 1px solid var(--glass-border);
}

.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition-smooth); }
.gallery-item:hover img { transform: scale(1.1); filter: brightness(0.6); }

.gallery-overlay {
    position: absolute; bottom: -100%; left: 0; width: 100%; padding: 20px;
    background: linear-gradient(transparent, rgba(0,0,0,0.8)); transition: var(--transition-smooth);
}

.gallery-item:hover .gallery-overlay { bottom: 0; }

/* Testimonial Section Enhanced */
.testimonial-profile {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-bottom: 15px;
    border: 2px solid var(--accent-color);
    padding: 2px;
}

.testimonial-card-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.star-rating {
    color: #f1c40f;
    margin-bottom: 10px;
    font-size: 1rem;
}

/* About Us Value Cards */
.about-values {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.value-item {
    background: rgba(255, 255, 255, 0.03);
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid var(--glass-border);
    transition: var(--transition-smooth);
}

.value-item:hover {
    border-color: var(--accent-color);
    background: rgba(100, 181, 246, 0.05);
}

.value-item i {
    font-size: 1.5rem;
    color: var(--accent-color);
    margin-bottom: 10px;
}

.value-item h4 {
    font-size: 0.9rem;
    font-weight: 600;
}

/* FAQ High-Fidelity Design Overhaul */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.faq-category {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
    padding: 35px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    transition: var(--transition-smooth);
}

.faq-category:hover {
    border-color: rgba(100, 181, 246, 0.2);
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
}

.faq-category h3 {
    font-size: 1.1rem;
    color: var(--accent-color);
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.faq-category h3 i {
    width: 35px;
    height: 35px;
    background: rgba(100, 181, 246, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.faq-item {
    margin-bottom: 12px;
    border: 1px solid transparent;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.02);
    transition: all 0.5s var(--transition-smooth);
}

.faq-item.active {
    background: rgba(100, 181, 246, 0.08);
    border-color: var(--accent-color);
    box-shadow: 0 0 20px rgba(100, 181, 246, 0.1);
}

.faq-question {
    padding: 18px 20px;
    font-size: 0.92rem;
    font-weight: 500;
    color: #efefef;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.faq-question i {
    font-size: 0.8rem;
    transition: transform 0.4s var(--transition-smooth);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
    color: var(--accent-color);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.6s var(--transition-smooth);
    font-size: 0.85rem;
    line-height: 1.6;
    color: #bbb;
    padding: 0 20px;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding-bottom: 20px;
}

/* Preloader */
#preloader { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: var(--primary-bg); display: flex; justify-content: center; align-items: center; z-index: 9999; }
.loader-moon { width: 80px; height: 80px; border-radius: 50%; box-shadow: inset 15px 0 0 #fff; animation: moon-rotate 2s infinite linear; }
@keyframes moon-rotate { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }

/* Background Particles */
#particle-canvas { position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: -1; }
