:root {
    --primary: #6d28d9;
    /* Violet 700 */
    --primary-dark: #4c1d95;
    /* Violet 900 */
    --accent: #10b981;
    /* Emerald 500 */
    --accent-glow: #34d399;
    /* Emerald 400 */
    --dark-bg: #1e1b4b;
    /* Indigo 950 - Deep Purple Black */
    --card-bg: #2e1065;
    /* Violet 950 */
    --text: #f8fafc;
    --text-muted: #94a3b8;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --radius: 16px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--text);
    background-color: var(--dark-bg);
    line-height: 1.7;
}

h1,
h2,
h3 {
    font-family: var(--font-heading);
    color: white;
    line-height: 1.25;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.bio-wrapper {
    display: flex;
    gap: 50px;
    align-items: center;
    justify-content: center;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    padding: 20px 0;
    position: absolute;
    width: 100%;
    z-index: 10;
    background: transparent;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 50px;
    filter: brightness(0) invert(1);
}

/* White logo */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 30px;
    background: var(--accent);
    color: #064e3b;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    transition: 0.3s;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn:hover {
    background: var(--accent-glow);
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.4);
    transform: scale(1.05);
}

.btn-outline {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.btn-outline:hover {
    background: white;
    color: var(--primary-dark);
}

/* Hero - Centered & Immersive */
.hero {
    padding-top: 140px;
    padding-bottom: 100px;
    background: radial-gradient(circle at center, #2e1065 0%, #0f172a 100%);
    text-align: center;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    text-shadow: 0 0 30px rgba(109, 40, 217, 0.5);
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 800px;
    margin: 0 auto 40px;
}

.hero-video-wrapper {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-buttons {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Grid Layout for Info */
.info-section {
    padding: 100px 0;
    background: var(--dark-bg);
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.card {
    background: rgba(255, 255, 255, 0.03);
    padding: 40px;
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: 0.3s;
}

.card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-10px);
    border-color: var(--accent);
}

.card-icon {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 20px;
}

.card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.card p {
    color: #cbd5e1;
}

/* Video Gallery */
.gallery-section {
    padding: 80px 0;
    background: #0f172a;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.small-video {
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 16/9;
}

.small-video iframe {
    width: 100%;
    height: 100%;
}

/* FAQ - Light on Dark */
.faq-section {
    padding: 100px 0;
    background: var(--dark-bg);
}

.faq-item {
    background: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 0;
}

.faq-question {
    padding: 25px 0;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    color: white;
    font-weight: 500;
}

.faq-answer {
    padding-bottom: 25px;
    color: var(--text-muted);
    display: none;
    line-height: 1.8;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .faq-question {
    color: var(--accent);
}

.faq-item.active i {
    transform: rotate(180deg);
}

/* Contact Specific */
.contact-section {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    padding: 100px 0;
    color: white;
}

.form-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    color: var(--dark-bg);
}

.form-card h3 {
    color: var(--primary-dark);
}

.form-input {
    width: 100%;
    padding: 15px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    margin-bottom: 15px;
    font-family: var(--font-body);
}

@media(max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .grid-3 {
        grid-template-columns: 1fr;
    }

    .video-grid {
        grid-template-columns: 1fr;
    }

    .bio-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
        margin: 0 !important;
    }
}

/* Reviews Section - Modern */
.reviews-section {
    padding: 100px 0;
    background: #f8fafc;
    font-family: 'Montserrat', sans-serif;
    position: relative;
    overflow: hidden;
}

.reviews-header {
    text-align: center;
    margin-bottom: 60px;
}

.reviews-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 20px;
}

.google-rating {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    padding: 12px 25px;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid #e2e8f0;
    color: #0f172a;
}

.reviews-btn-container {
    text-align: center;
    margin-top: 60px;
}

.reviews-btn-container .btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 45px !important;
    background: transparent;
    color: #1e293b;
    border: 2px solid #1e293b;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.reviews-btn-container .btn-outline:hover {
    background: #1e293b;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px -5px rgba(30, 58, 138, 0.15);
}

.carousel-wrapper {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.reviews-container {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 30px;
    padding-bottom: 40px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.reviews-container::-webkit-scrollbar {
    display: none;
}

.review-card {
    flex: 0 0 400px;
    scroll-snap-align: center;
    background: #ffffff;
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.08);
    border: 1px solid #f1f5f9;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: transform 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 15px;
}

.review-avatar img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #f8fafc;
}

.review-author h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 5px 0;
}

.review-stars {
    color: #fbbf24;
    font-size: 0.9rem;
}

.review-text {
    color: #475569;
    line-height: 1.7;
    font-size: 1rem;
    font-style: italic;
    opacity: 0.9;
}

.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #fff;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    color: #1e293b;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-btn:hover {
    background: #1e293b;
    color: #fff;
}

.prev-btn {
    left: 10px;
}

.next-btn {
    right: 10px;
}

@media (max-width: 768px) {
    .review-card {
        flex: 0 0 300px;
        padding: 25px;
    }

    .nav-btn {
        display: none;
    }
}