:root {
    --primary: #2c003e;
    --secondary: #6a0dad;
    --accent: #d4af37;
    --text-light: #ffffff;
    --text-muted: #e0e0e0;
    --bg-dark: #12001a;
    --glass: rgba(255, 255, 255, 0.05);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Utils */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.btn-primary {
    background: linear-gradient(45deg, #25d366, #128c7e);
    color: white;
}

.btn-secondary {
    background: linear-gradient(45deg, var(--accent), #b8860b);
    color: #000;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* Top Bar */
.top-bar {
    background: #000;
    padding: 8px 0;
    border-bottom: 1px solid var(--glass);
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.marquee-text {
    flex: 1;
    font-size: 0.85rem;
    color: var(--accent);
    white-space: nowrap;
    overflow: hidden;
    position: relative;
    animation: marquee 20s linear infinite;
}

@keyframes marquee {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(-100%);
    }
}

.top-cta {
    color: white;
    text-decoration: none;
    font-weight: 600;
    background: #ff0000;
    padding: 4px 15px;
    border-radius: 4px;
    font-size: 0.85rem;
    margin-left: 20px;
}

/* Header */
header {
    background: rgba(44, 0, 62, 0.95);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 1.5rem;
    font-weight: 700;
}

.logo h1 span {
    color: var(--accent);
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

nav ul li a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

nav ul li a:hover {
    color: var(--accent);
}

.nav-btn {
    background: var(--accent);
    color: #000 !important;
    padding: 8px 20px;
    border-radius: 5px;
    font-weight: 600;
}

/* Hero */
.hero {
    height: 100vh;
    height: 100dvh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    color: white;
}

.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    object-fit: cover;
    background-color: var(--bg-dark);
    /* Fallback */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(18, 0, 26, 0.8), rgba(18, 0, 26, 0.5));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
}

.hero-badge {
    background: var(--accent);
    color: #000;
    padding: 5px 15px;
    display: inline-block;
    border-radius: 4px;
    margin-bottom: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.hero h2 {
    font-size: 1.5rem;
    color: var(--accent);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: var(--text-muted);
}

.hero-actions {
    display: flex;
    gap: 20px;
}

/* Rapid Solution */
.rapid-solution {
    background: var(--secondary);
    padding: 15px 0;
    text-align: center;
    font-weight: 600;
    font-size: 1.2rem;
}

/* Services */
.services {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title span {
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-top: 10px;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--glass);
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
    overflow: hidden;
    padding: 0;
}

.service-img {
    height: 200px;
    overflow: hidden;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.service-card:hover .service-img img {
    transform: scale(1.1);
}

.service-info {
    padding: 30px;
}

.service-info h3 {
    margin-bottom: 15px;
    font-size: 1.4rem;
    color: var(--accent);
}

.service-info p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.read-more {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* About */
.about {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.02);
}

.about-flex {
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-image {
    flex: 1;
    position: relative;
    border-radius: 20px;
    box-shadow: 20px 20px 0 var(--accent);
}

.media-crop {
    overflow: hidden;
    border-radius: 20px;
    position: relative;
}

.media-crop img,
.media-crop video {
    width: 100%;
    display: block;
    margin-bottom: -45px;
    /* Hides the Meta AI watermark at the bottom */
}

.about-image img {
    width: 100%;
}

.exp-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--accent);
    color: #000;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}

.exp-badge .num {
    display: block;
    font-size: 2rem;
    font-weight: 700;
}

.about-text {
    flex: 1;
}

.about-text .section-title.left {
    text-align: left;
}

.about-text p {
    margin-bottom: 20px;
    color: var(--text-muted);
}

/* Stats */
.stats {
    padding: 80px 0;
    background: linear-gradient(rgba(44, 0, 62, 0.9), rgba(44, 0, 62, 0.9)), url('hero-bg.png') center/cover fixed;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-item h3 {
    font-size: 3.5rem;
    color: var(--accent);
    margin-bottom: 10px;
    font-weight: 700;
}

.stat-item p {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Testimonials */
.testimonials {
    padding: 100px 0;
    position: relative;
    background: var(--bg-dark);
}

.testimonial-slider {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    height: 350px;
}

.testimonial-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out, transform 0.8s ease-in-out;
    transform: translateY(20px);
    text-align: center;
}

.testimonial-item.active {
    opacity: 1;
    transform: translateY(0);
}

.quote-icon {
    font-size: 3rem;
    color: var(--accent);
    margin-bottom: 30px;
    opacity: 0.3;
}

.testimonial-text {
    font-size: 1.5rem;
    font-style: italic;
    margin-bottom: 30px;
    color: var(--text-light);
    line-height: 1.5;
}

.testimonial-author {
    font-weight: 700;
    color: var(--accent);
    font-size: 1.2rem;
}

.testimonial-lang {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-top: 5px;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.dot {
    width: 10px;
    height: 10px;
    background: var(--glass);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--accent);
    transform: scale(1.3);
}

/* Icon Highlights Section */
.icon-highlights {
    padding: 80px 0;
    background: #fdf5e6;
    text-align: center;
}

.highlight-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-bottom: 50px;
}

.highlight-card {
    background: white;
    padding: 30px 20px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.highlight-card:hover {
    transform: translateY(-5px);
}

.highlight-card i {
    font-size: 2.5rem;
    color: #ff7f50;
    margin-bottom: 20px;
}

.highlight-card h3 {
    color: #2c003e;
    font-size: 1.2rem;
    line-height: 1.4;
}

.capture-moments {
    color: #ff7f50;
    font-size: 1.5rem;
    font-weight: 600;
}

/* Our Top Services List Section */
.top-services-list {
    padding: 100px 0;
    background: #f8f9fa;
}

.list-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.list-card {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: left;
    position: relative;
    border-top: 5px solid var(--secondary);
}

.list-card ul {
    list-style: none;
    margin-bottom: 30px;
}

.list-card ul li {
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 15px;
    color: #333;
    font-weight: 500;
    border-bottom: 1px solid #eee;
}

.list-card ul li i {
    color: var(--secondary);
    font-size: 1.1rem;
}

.list-card .btn-wa {
    display: block;
    width: 100%;
    text-align: center;
    background: var(--secondary);
    color: white;
    padding: 12px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.list-card .btn-wa:hover {
    background: var(--primary);
}

/* Video Section */
.video-section {
    padding: 100px 0;
    background: #1a0026;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.video-card {
    background: var(--glass);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.video-card video {
    width: 100%;
    display: block;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.video-card .media-crop {
    border-radius: 20px 20px 0 0;
}

.video-info {
    padding: 25px;
    text-align: center;
}

.video-info h3 {
    color: var(--accent);
    font-size: 1.3rem;
}

@media (max-width: 500px) {
    .video-grid {
        grid-template-columns: 1fr;
    }
}

/* Footer Updated */
footer {
    padding: 80px 0 0;
    background: #2c003e;
    border-top: none;
}

.footer-main {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-col h3 {
    margin-bottom: 25px;
    font-size: 1.5rem;
    color: white;
    position: relative;
}

.footer-col p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #ccc;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #ccc;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-col ul li a:hover {
    color: var(--accent);
}

.disclaimer-text {
    font-style: italic;
    font-size: 0.85rem !important;
    margin-bottom: 20px !important;
}

.footer-copyright {
    background: #8b008b;
    padding: 20px 0;
    text-align: center;
}

.footer-copyright p {
    color: white;
    margin: 0;
    font-size: 0.9rem;
}

/* Sticky Buttons Blinking */
.sticky-buttons {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10000;
    pointer-events: none;
}

.sticky-buttons a {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: var(--transition);
    pointer-events: auto;
    animation: blink 2s infinite;
}

@keyframes blink {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6);
    }

    50% {
        transform: scale(1.1);
        box-shadow: 0 0 0 15px rgba(255, 255, 255, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

.call-btn {
    background: #ff0000;
}

.whatsapp-btn {
    background: #25d366;
}

@media (max-width: 768px) {
    .hero {
        height: 100vh;
        height: 100dvh;
        padding-top: 80px;
    }

    .testimonial-slider {
        height: 450px;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-actions {
        flex-direction: column;
    }

    .about-flex {
        flex-direction: column;
    }

    .footer-main {
        grid-template-columns: 1fr;
    }

    nav ul {
        display: none;
    }

    nav.active ul {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: var(--primary);
        padding: 20px;
    }

    .top-bar-content {
        flex-direction: column;
        gap: 5px;
        text-align: center;
    }

    .marquee-text {
        white-space: normal;
        animation: none;
        font-size: 0.75rem;
        margin: 0;
    }

    .top-cta {
        margin-left: 0;
        width: 100%;
        font-size: 0.8rem;
    }

    .sticky-buttons {
        bottom: 15px;
        left: 15px;
        right: 15px;
    }

    .sticky-buttons a {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
}