/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
}

:root {
    --bg-gradient: linear-gradient(135deg, #0f0c1b 0%, #1a103c 50%, #0b112c 100%);
    --purple-main: #8b5cf6;
    --purple-glow: #a855f7;
    --text-light: #f3f4f6;
    --card-bg: rgba(255, 255, 255, 0.06);
    --card-border: rgba(255, 255, 255, 0.1);
}

body {
    background: #0f0c1b;
    color: var(--text-light);
    overflow-x: hidden;
}

body.lock-scroll {
    overflow: hidden;
}

/* ============ INTRO VIDEO OVERLAY ============ */
#intro-screen {
    position: fixed;
    inset: 0;
    background: #000;
    z-index: 5000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.9s ease;
}

#intro-video {
    height: 100vh;
    width: auto;
    max-width: 100vw;
    object-fit: cover;
    transition: opacity 0.6s ease;
}

#intro-logo {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.9s ease;
}

#intro-logo h1 {
    font-size: 2.6rem;
    letter-spacing: 3px;
    color: #fff;
    font-weight: 700;
}

#intro-logo span {
    margin-top: 10px;
    font-size: 0.85rem;
    letter-spacing: 6px;
    color: var(--purple-glow);
}

#intro-screen.show-logo #intro-video {
    opacity: 0;
}

#intro-screen.show-logo #intro-logo {
    opacity: 1;
}

#intro-screen.intro-done {
    opacity: 0;
    pointer-events: none;
}

#skip-intro {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--card-border);
    color: #fff;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 0.85rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    backdrop-filter: blur(6px);
    transition: background 0.3s ease;
}

#skip-intro:hover {
    background: rgba(255, 255, 255, 0.2);
}

@media (max-width: 768px) {
    #intro-video {
        width: 100vw;
        height: auto;
        max-height: 100vh;
    }
}

/* Header & Navigation Styling */
header {
    background-color: rgba(15, 12, 27, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid var(--card-border);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1240px;
    margin: 0 auto;
    padding: 15px 40px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-text h1 {
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #fff;
    line-height: 1.2;
}

.logo-text span {
    font-size: 0.72rem;
    letter-spacing: 3px;
    color: #94a3b8;
    display: block;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--purple-glow);
}

#contact-us-link {
    border: 1px solid var(--purple-main);
    padding: 8px 16px;
    border-radius: 20px;
}

/* Hero Section Styling */
.hero {
    height: 75vh;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
    margin-top: 60px;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(15, 12, 27, 0.25), rgba(15, 12, 27, 0.4));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-content h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
}

.hero-content p {
    font-size: 1.2rem;
    color: #94a3b8;
    max-width: 700px;
    margin: 0 auto 30px auto;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
}

.btn-primary {
    display: inline-block;
    padding: 12px 32px;
    background: linear-gradient(90deg, #3b82f6, var(--purple-main));
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    border-radius: 30px;
    border: none;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.6);
}

/* ============ ABOUT SECTION ============ */
.about-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 90px 20px;
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-video-wrap {
    flex: 0 0 320px;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--card-border);
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.2);
}

.about-video-wrap video {
    width: 100%;
    display: block;
    max-height: 480px;
    object-fit: cover;
}

.about-text {
    flex: 1;
}

.eyebrow {
    color: var(--purple-glow);
    font-size: 0.8rem;
    letter-spacing: 3px;
    font-weight: 600;
    text-transform: uppercase;
}

.about-text h2 {
    font-size: 2.2rem;
    font-weight: 600;
    margin: 12px 0 20px 0;
    color: #fff;
}

.about-text p {
    color: #94a3b8;
    line-height: 1.8;
    font-size: 1.02rem;
}

@media screen and (max-width: 768px) {
    .about-section {
        flex-direction: column;
        padding: 70px 20px;
    }
    .about-video-wrap {
        flex: none;
        width: 100%;
        max-width: 320px;
    }
}

/* Services Grid Styling */
.services-section {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.2rem;
    font-weight: 600;
}


.underline {
    width: 70px;
    height: 4px;
    background: #3b82f6;
    margin: 10px auto 0 auto;
    border-radius: 2px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card-new {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    padding: 35px 25px;
    border-radius: 16px;
    text-align: center;
    cursor: pointer;
    transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
    backdrop-filter: blur(5px);
}

.service-card-new:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 25px rgba(168, 85, 247, 0.15);
    border-color: rgba(168, 85, 247, 0.4);
}

.service-card-new i.icon-purple {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.icon-purple {
    color: var(--purple-glow);
}

.service-card-new h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: #fff;
}

.service-card-new p {
    color: #94a3b8;
    font-size: 0.95rem;
    line-height: 1.6;
}

.view-packages {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 16px;
    font-size: 0.85rem;
    color: var(--purple-glow);
    font-weight: 600;
}

/* ============ SERVICE MODAL ============ */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(5, 4, 10, 0.85);
    backdrop-filter: blur(4px);
    z-index: 3000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 30px 20px;
}

.modal-overlay.active {
    display: flex;
}

.modal-box {
    background: #140f26;
    border: 1px solid var(--card-border);
    border-radius: 20px;
    max-width: 640px;
    width: 100%;
    max-height: 85vh;
    overflow-y: auto;
    padding: 40px 30px 30px 30px;
    position: relative;
}

.modal-box h3 {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 20px;
    text-align: center;
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(255, 255, 255, 0.08);
    border: none;
    color: #fff;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1rem;
}

.modal-close:hover {
    background: var(--purple-main);
}

#service-modal-body img {
    width: 100%;
    border-radius: 12px;
    display: block;
}

.modal-fallback {
    text-align: center;
    color: #94a3b8;
    padding: 20px 10px;
}

.modal-fallback a {
    display: inline-block;
    margin-top: 20px;
}

.modal-note {
    font-size: 0.78rem;
    color: #64748b;
    text-align: center;
    margin-top: 14px;
}

.type-package-card {
    margin-bottom: 26px;
    padding-bottom: 22px;
    border-bottom: 1px solid var(--card-border);
}

.type-package-card:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.type-package-card h4 {
    font-size: 1.25rem;
    color: #fff;
    min-height: 1.5em;
}

.type-package-note {
    color: #94a3b8;
    font-size: 0.85rem;
    margin: 4px 0 12px 0;
    min-height: 1.2em;
}

.type-package-card ul {
    list-style: none;
    margin-top: 12px;
}

.type-package-card ul li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #cbd5e1;
    font-size: 0.92rem;
    margin-bottom: 10px;
    min-height: 1.3em;
}

.type-package-card ul li i {
    color: var(--purple-glow);
    font-size: 0.8rem;
    margin-top: 4px;
}

.typing-cursor::after {
    content: '|';
    display: inline-block;
    margin-left: 2px;
    color: var(--purple-glow);
    animation: blink 0.8s steps(1) infinite;
}

@keyframes blink {
    50% { opacity: 0; }
}

/* Pricing Section Styling */
.pricing-section {
    background: var(--bg-gradient);
    padding: 90px 20px;
    border-top: 1px solid var(--card-border);
}

.pricing-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    align-items: center;
}

.price-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
}

.price-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(15, 12, 27, 0.6);
}

.price-card.popular {
    border: 2px solid var(--purple-main);
    transform: scale(1.03);
}

.price-card.popular:hover {
    transform: scale(1.03) translateY(-5px);
}

.badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--purple-main);
    color: #fff;
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.price-header {
    background: rgba(139, 92, 246, 0.15);
    padding: 30px;
    text-align: center;
    border-bottom: 1px solid var(--card-border);
}

.price-card.popular .price-header {
    background: rgba(139, 92, 246, 0.3);
}

.price-header h3 {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 10px;
}

.cost {
    font-size: 2.8rem;
    font-weight: 700;
    color: #fff;
}

.cost span {
    font-size: 1rem;
    color: #cbd5e1;
    font-weight: 400;
}

.price-body {
    padding: 30px;
}

.package-desc {
    text-align: center;
    color: #94a3b8;
    font-size: 0.9rem;
    margin-bottom: 25px;
}


.price-body ul {
    list-style: none;
    margin-bottom: 30px;
}

.price-body ul li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: #cbd5e1;
}

.price-body ul li i {
    color: var(--purple-glow);
    font-size: 0.85rem;
}

.price-btn {
    display: block;
    text-align: center;
    padding: 12px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--card-border);
    color: #fff;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 500;
    transition: background 0.3s, border-color 0.3s;
}

.price-card.popular .price-btn {
    background: var(--purple-main);
    border: none;
}

.price-card.popular .price-btn:hover {
    background: var(--purple-glow);
}

.price-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #fff;
}

/* ============ FEEDBACK SECTION ============ */
.feedback-section {
    padding: 90px 20px;
    max-width: 900px;
    margin: 0 auto;
}

.feedback-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 40px;
}

.feedback-form input,
.feedback-form textarea {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--card-border);
    border-radius: 10px;
    padding: 12px 16px;
    color: #fff;
    font-size: 0.95rem;
    resize: vertical;
}

.feedback-form textarea {
    min-height: 100px;
}

.feedback-form input::placeholder,
.feedback-form textarea::placeholder {
    color: #64748b;
}

.feedback-form .btn-primary {
    align-self: flex-start;
}

.star-rating {
    display: flex;
    gap: 8px;
    font-size: 1.4rem;
}

.star-rating i {
    color: #3f3a55;
    cursor: pointer;
    transition: color 0.2s ease;
}

.star-rating i.selected {
    color: #fbbf24;
}

.feedback-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.feedback-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 14px;
    padding: 20px 24px;
}

.feedback-card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.feedback-card-top strong {
    color: #fff;
}

.feedback-stars {
    color: #fbbf24;
    font-size: 0.85rem;
}

.feedback-card p {
    color: #94a3b8;
    font-size: 0.92rem;
    line-height: 1.6;
}

.feedback-empty {
    color: #64748b;
    text-align: center;
    font-size: 0.9rem;
}

/* ============ CONTACT DRAWER ============ */
#contact-drawer-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(5, 4, 10, 0.7);
    z-index: 3990;
    display: none;
}

#contact-drawer-backdrop.active {
    display: block;
}

.contact-drawer {
    position: fixed;
    top: 0;
    right: -400px;
    width: 340px;
    max-width: 85vw;
    height: 100vh;
    background: #140f26;
    border-left: 1px solid var(--card-border);
    z-index: 4000;
    transition: right 0.4s ease;
    padding: 40px 26px;
}

.contact-drawer.active {
    right: 0;
}

.contact-drawer-inner h3 {
    color: #fff;
    font-size: 1.4rem;
    margin-bottom: 30px;
}

.contact-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 0;
    color: #cbd5e1;
    text-decoration: none;
    border-bottom: 1px solid var(--card-border);
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.contact-row i {
    font-size: 1.2rem;
    color: var(--purple-glow);
    width: 24px;
}

.contact-row:hover {
    color: #fff;
}

.whatsapp-row i {
    color: #25D366;
}

/* Footer Styling */
footer {
    background: #090611;
    padding: 40px 20px;
    border-top: 1px solid var(--card-border);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
}

.footer-container p {
    color: #64748b;
    font-size: 0.9rem;
}

.contact-channels {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
}

.contact-channels a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s;
}

.contact-channels a:hover {
    color: #3b82f6;
}

/* Mobile Toggle Bar */
.burger {
    display: none;
    cursor: pointer;
}

.burger div {
    width: 25px;
    height: 3px;
    background-color: #fff;
    margin: 5px;
    transition: all 0.3s ease;
}

/* Animations */
@keyframes navLinkFade {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0px);
    }
}

.toggle .line1 {
    transform: rotate(-45deg) translate(-5px, 6px);
}
.toggle .line2 {
    opacity: 0;
}
.toggle .line3 {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Mobile Responsiveness */
@media screen and (max-width: 768px) {
    .nav-links {
        position: absolute;
        right: 0px;
        height: 92vh;
        top: 60px;
        background-color: #0f0c1b;
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        transform: translateX(100%);
        transition: transform 0.5s ease-in;
        padding-top: 50px;
        box-shadow: -10px 10px 20px rgba(0,0,0,0.3);
    }

    .nav-links li {
        opacity: 0;
        margin-bottom: 25px;
    }

    .burger {
        display: block;
    }

    .hero-content h2 {
        font-size: 2rem;
    }

    .price-card.popular {
        transform: scale(1);
    }
}

.nav-active {
    transform: translateX(0%);
}