:root {
    --bg-color: #050507;
    --text-color: #ffffff;
    --text-muted: #a0a0a0;
    --primary-color: #ffffff;
    --secondary-color: #333333;
    --accent-color: #1de9b6;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --font-main: 'Outfit', sans-serif;
    --transition: all 0.3s ease;
}

[data-theme="light"] {
    --bg-color: #f0f0f5;
    --text-color: #1a1a1a;
    --text-muted: #666666;
    --primary-color: #000000;
    --secondary-color: #cccccc;
    --accent-color: #444444;
    --glass-bg: rgba(255, 255, 255, 0.6);
    --glass-border: rgba(0, 0, 0, 0.05);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    transition: background-color 0.5s ease, color 0.5s ease;
    cursor: none;
}

/* ==================== NAVBAR ==================== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.5rem 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
    background: rgba(5, 5, 7, 0.8);
}

[data-theme="light"] .navbar {
    background: rgba(240, 240, 245, 0.8);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-color);
    text-decoration: none;
}

.logo span {
    color: var(--accent-color);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 400;
    transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--text-color);
}

.nav-links .btn-primary {
    color: #ffffff !important;
    /* Force white for nav button */
}

/* Buttons */
.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, #1de9b6, #00bfa5);
    color: #ffffff;
    /* User requested white text */
    box-shadow: 0 4px 15px rgba(29, 233, 182, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(29, 233, 182, 0.6);
}

.btn-secondary {
    background: transparent;
    border: 1px solid var(--glass-border);
    color: var(--text-color);
    margin-left: 1rem;
}

.btn-secondary:hover {
    background: rgba(29, 233, 182, 0.1);
    border-color: #1de9b6;
    color: #1de9b6;
}

/* Theme & Lang Toggles */
.theme-btn,
.lang-btn {
    background: transparent;
    border: 1px solid var(--glass-border);
    color: var(--text-color);
    padding: 0.5rem;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lang-btn {
    border-radius: 20px;
    width: auto;
    padding: 0.5rem 1rem;
}

.theme-btn:hover,
.lang-btn:hover {
    background: var(--glass-bg);
    border-color: var(--primary-color);
}

/* Section Scroll Animations */
.fade-in-section {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    will-change: opacity, transform;
}

.fade-in-section.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* ==================== CRITICAL: HERO SECTION STYLES ==================== */
.hero-section {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-carousel {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 10;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: translateX(100%);
    transition: opacity 0.8s ease, transform 0.8s ease;
    pointer-events: none;
    display: flex;
    align-items: center;
}

.hero-slide.active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: all;
}

.hero-slide.prev {
    transform: translateX(-100%);
}

.hero-content {
    position: relative;
    z-index: 20;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
    animation: floating-hero 6s ease-in-out infinite;
}

@keyframes floating-hero {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.gradient-text {
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

/* CTA Slide specific */
.cta-slide .hero-title {
    text-align: center;
}

.cta-slide .hero-subtitle {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.cta-slide .hero-buttons {
    justify-content: center;
}

.btn-large {
    padding: 1.5rem 3rem;
    font-size: 1.3rem;
    font-weight: 700;
}

.pulse-animation {
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(29, 233, 182, 0.7);
    }

    50% {
        box-shadow: 0 0 0 20px rgba(29, 233, 182, 0);
    }
}

/* Carousel Controls */
.carousel-controls {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
}

.carousel-dots {
    display: flex;
    gap: 1rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    width: 40px;
    border-radius: 10px;
    background: var(--accent-color);
}

/* Hero Background */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.lava-lamp {
    position: absolute;
    width: 100%;
    height: 100%;
    filter: blur(80px);
}

.blob {
    position: absolute;
    border-radius: 50%;
    opacity: 0.6;
    transition: transform 0.5s ease;
}

.blob-1 {
    width: 500px;
    height: 500px;
    background: var(--primary-color);
    top: -10%;
    left: 10%;
    animation: float 10s infinite ease-in-out;
}

.blob-2 {
    width: 400px;
    height: 400px;
    background: var(--secondary-color);
    bottom: 10%;
    right: 15%;
    animation: float 12s infinite ease-in-out reverse;
}

.blob-3 {
    width: 300px;
    height: 300px;
    background: var(--accent-color);
    top: 40%;
    left: 40%;
    animation: float 8s infinite ease-in-out;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(30px, -30px);
    }
}

.glass-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.01);
    backdrop-filter: blur(5px);
    z-index: 2;
}

/* ==================== SECTIONS ==================== */
.section {
    padding: 6rem 0;
    position: relative;
    z-index: 10;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-align: center;
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.glass-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 2rem;
}

/* ==================== TIMELINE SECTION ==================== */
.timeline-section {
    position: relative;
    overflow: hidden;
}

.timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.timeline-item {
    margin-bottom: 8rem;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.timeline-item.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.timeline-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.timeline-content.reverse {
    direction: rtl;
}

.timeline-content.reverse>* {
    direction: ltr;
}

.step-number {
    font-size: 4rem;
    font-weight: 900;
    color: var(--glass-border);
    display: block;
    margin-bottom: 0.5rem;
}

.benefits-list {
    list-style: none;
    margin-top: 1.5rem;
}

.benefits-list li {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

/* Timeline Visuals */
.product-showcase {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.product-image {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2rem;
    position: relative;
}

.product-image.floating {
    animation: floating 3s ease-in-out infinite;
}

.product-image.floating.delay-1 {
    animation-delay: 0.5s;
}

.product-image.floating.delay-2 {
    animation-delay: 1s;
}

.product-image.floating.delay-3 {
    animation-delay: 1.5s;
}

@keyframes floating {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

.image-placeholder {
    font-size: 3rem;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.image-label {
    display: block;
    text-align: center;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.arrow-icon {
    font-size: 2rem;
    color: var(--accent-color);
}

.contact-link {
    font-size: 1.5rem;
    color: var(--text-color);
    text-decoration: none;
    display: block;
    margin-top: 1rem;
}

.contact-phone {
    font-size: 1.2rem;
    color: var(--text-color);
    text-decoration: none;
    display: block;
    margin-top: 0.5rem;
    margin-bottom: 2rem;
}

.savings-display {
    display: flex;
    gap: 1rem;
}

.stat-card {
    background: var(--glass-bg);
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid var(--glass-border);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.variety-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.product-image.mini {
    padding: 1rem;
}

.product-image.mini .image-placeholder {
    width: 80px;
    height: 80px;
    font-size: 2.5rem;
}

/* Compact Services (Social Media Page) */
.compact-services {
    margin-top: 3rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.compact-services .service-item {
    padding: 1.5rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.compact-services .service-item:hover {
    transform: translateY(-5px) scale(1.02);
    border-color: var(--accent-color);
    box-shadow: 0 10px 30px rgba(29, 233, 182, 0.15);
    background: rgba(255, 255, 255, 0.05);
}

.compact-services .service-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.compact-services h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

/* Copyright Style */
.copyright {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--glass-border);
    color: var(--text-muted);
    font-size: 0.9rem;
    width: 100%;
}

/* ==================== OUR WORK (CAROUSEL) ==================== */
.carousel-container {
    width: 100%;
    overflow: hidden;
    padding: 2rem 0;
    position: relative;
}

.carousel-track {
    display: flex;
    gap: 2rem;
    width: max-content;
    animation: scroll-left 40s linear infinite;
}

.carousel-track:hover {
    animation-play-state: paused;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.carousel-item {
    width: 300px;
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.carousel-item:hover {
    transform: scale(1.05);
    z-index: 5;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.carousel-item:hover img {
    transform: scale(1.05);
}

.carousel-item::after {
    content: '🔍';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    font-size: 3rem;
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
}

.carousel-item:hover::after {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

/* ==================== PRICING ==================== */
.ai-video-pricing {
    margin-bottom: 4rem;
    text-align: center;
}

.ai-video-pricing h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

.video-price-card {
    max-width: 500px;
    margin: 0 auto;
    padding: 3rem;
    text-align: center;
}

.video-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.video-price-card h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.video-price-card .price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 1.5rem 0;
}

.pricing-subsection {
    font-size: 2rem;
    margin: 3rem 0 2rem 0;
    text-align: center;
}

.pricing-bundles {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.bundle-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease;
}

.bundle-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
}

.bundle-card.popular {
    background: linear-gradient(145deg, rgba(29, 233, 182, 0.2), rgba(0, 191, 165, 0.1));
    border-color: var(--accent-color);
    transform: scale(1.05);
}

.bundle-card.popular:hover {
    transform: scale(1.05) translateY(-10px);
}

.bundle-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.bundle-card .price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.bundle-card ul {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
}

.bundle-card ul li {
    margin-bottom: 0.5rem;
    color: var(--text-muted);
}

.bundle-card ul li::before {
    content: "✓";
    color: var(--accent-color);
    margin-right: 0.5rem;
}

/* Custom Pricing */
.custom-pricing-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
}

.calculator-controls {
    margin: 2rem 0;
}

input[type="range"] {
    width: 100%;
    max-width: 400px;
    height: 6px;
    background: var(--glass-border);
    border-radius: 5px;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
    /* Standard property */
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    background: var(--accent-color);
    border-radius: 50%;
    cursor: pointer;
    transition: transform 0.2s;
}

input[type="range"]::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}

.price-display {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--text-color);
}

.currency {
    font-size: 2rem;
    vertical-align: super;
}

.full-width {
    width: 100%;
    max-width: 300px;
}

/* ==================== TRUSTED BRANDS ==================== */
.trusted-brands-section {
    padding: 4rem 0;
    background: var(--glass-bg);
    overflow: hidden;
}

.brands-title {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--text-muted);
}

.brands-marquee {
    width: 100%;
    overflow: hidden;
    padding: 2rem 0;
}

.brands-track {
    display: flex;
    gap: 4rem;
    animation: scroll-brands 30s linear infinite;
}

.brand-logo {
    min-width: 150px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    padding: 1rem 2rem;
    font-weight: 700;
    color: var(--text-muted);
    font-size: 1.2rem;
    transition: var(--transition);
}

.brand-logo:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
}

@keyframes scroll-brands {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ==================== CONTACT ==================== */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    background: var(--glass-bg);
    padding: 4rem;
    border-radius: 30px;
    border: 1px solid var(--glass-border);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-form input,
.contact-form textarea {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--glass-border);
    padding: 1rem;
    border-radius: 10px;
    color: white;
    font-family: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--accent-color);
}

/* Form Notifications */
.form-notification {
    padding: 1rem 1.5rem;
    border-radius: 10px;
    text-align: center;
    font-weight: 500;
    margin-top: 0.5rem;
    animation: slideIn 0.3s ease;
}

.form-notification.success {
    background: rgba(29, 233, 182, 0.2);
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
}

.form-notification.error {
    background: rgba(255, 82, 82, 0.2);
    border: 1px solid #ff5252;
    color: #ff5252;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    text-align: center;
    margin-top: 4rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ==================== SOCIAL ICONS ==================== */
.social-nav {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.social-link,
.social-icon-large {
    color: var(--text-color);
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.social-link:hover,
.social-icon-large:hover {
    color: var(--accent-color);
    transform: translateY(-2px);
}

.contact-social,
.footer-social {
    display: flex;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.social-icon-large {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--glass-border);
    transition: all 0.3s ease;
}

.social-icon-large:hover {
    background: rgba(29, 233, 182, 0.1);
    border-color: var(--accent-color);
}

.footer-social {
    margin-top: 0;
}

/* ==================== PORTFOLIO PAGE ==================== */
.portfolio-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.75rem 2rem;
    border-radius: 30px;
    border: 1px solid var(--glass-border);
    background: transparent;
    color: var(--text-color);
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-main);
    font-size: 1rem;
}

.filter-btn:hover {
    border-color: var(--accent-color);
    background: rgba(29, 233, 182, 0.1);
    color: var(--accent-color);
}

.filter-btn.active {
    background: linear-gradient(135deg, #1de9b6, #00bfa5);
    border-color: var(--accent-color);
    color: #000;
    font-weight: 600;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    grid-auto-rows: 250px;
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.portfolio-item.show {
    opacity: 1;
    transform: scale(1);
}

.portfolio-item.tall {
    grid-row: span 2;
}

.portfolio-item.wide {
    grid-column: span 2;
}

.portfolio-content {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.portfolio-content img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.portfolio-content:hover img {
    transform: scale(1.1);
}

.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    padding: 2rem 1.5rem 1.5rem 1.5rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

/* .portfolio-content:hover .portfolio-overlay {
    transform: translateY(0);
} */

.portfolio-overlay h3 {
    margin: 0 0 0.5rem 0;
    font-size: 1.2rem;
    color: white;
}

.portfolio-overlay p {
    margin: 0;
    color: var(--accent-color);
    font-size: 0.9rem;
}

.video-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
}

.play-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.video-item:hover .play-icon {
    color: var(--accent-color);
    transform: scale(1.2);
    opacity: 1;
}

/* ==================== Lightbox ==================== */
.image-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    align-items: center;
    justify-content: center;
}

.modal-content {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}

.close-modal:hover {
    color: var(--accent-color);
}

/* ==================== CUSTOM CURSOR ==================== */
.custom-cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 10px;
    height: 10px;
    background-color: white;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease, opacity 0.2s ease;
    mix-blend-mode: difference;
}

/* ==================== RESPONSIVE ==================== */

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-color);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hamburger.toggle span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.toggle span:nth-child(2) {
    opacity: 0;
}

.hamburger.toggle span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Tablet Styles */
@media (max-width: 1024px) {
    .nav-links {
        gap: 1rem;
    }

    .hero-title {
        font-size: 3rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .pricing-bundles {
        grid-template-columns: 1fr 1fr;
    }

    .timeline-content {
        gap: 2rem;
    }
}

/* Mobile Styles */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 350px;
        height: 100vh;
        background: var(--bg-color);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        padding: 2rem;
        transition: right 0.4s ease;
        border-left: 1px solid var(--glass-border);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        width: 100%;
        text-align: center;
    }

    .nav-links a {
        font-size: 1.2rem;
        display: block;
        padding: 0.75rem;
    }

    .social-nav {
        display: none;
    }

    .hero-section {
        min-height: 100vh;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }

    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary {
        width: 100%;
        text-align: center;
    }

    .section {
        padding: 4rem 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 0.95rem;
    }

    .timeline-content {
        grid-template-columns: 1fr;
    }

    .timeline-content.reverse {
        direction: ltr;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .pricing-bundles {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .bundle-card.popular {
        transform: none;
    }

    .bundle-card.popular:hover {
        transform: translateY(-10px);
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        padding: 2rem;
        gap: 2rem;
    }

    .contact-info {
        text-align: center;
    }

    .contact-social {
        justify-content: center;
    }

    .footer {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .footer-social {
        justify-content: center;
    }

    .portfolio-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1rem;
    }

    .portfolio-item.wide,
    .portfolio-item.tall {
        grid-column: span 1;
        grid-row: span 1;
    }

    .carousel-item {
        width: 250px;
        height: 300px;
    }

    .custom-pricing-wrapper {
        padding: 2rem;
    }

    .container {
        padding: 0 1rem;
    }

    .btn-primary,
    .btn-secondary {
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
    }

    .compact-services {
        grid-template-columns: 1fr 1fr;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .hero-title {
        font-size: 1.75rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .nav-links {
        width: 100%;
        max-width: none;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .compact-services {
        grid-template-columns: 1fr;
    }

    .carousel-item {
        width: 200px;
        height: 250px;
    }

    .pricing-subsection {
        font-size: 1.5rem;
    }
}

/* Video pricing single card */
.video-pricing-single {
    max-width: 400px;
    margin: 0 auto 4rem auto;
}

.video-pricing-single .bundle-card {
    width: 100%;
}


/* ==================== CHECKOUT ==================== */
.checkout-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.summary-card {
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    background: rgba(255, 255, 255, 0.03);
}

.summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.summary-features {
    list-style: none;
    margin: 1.5rem 0;
    padding-left: 0;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.summary-features li {
    margin-bottom: 0.5rem;
}

.divider {
    height: 1px;
    background: var(--glass-border);
    margin: 1.5rem 0;
}

.summary-total {
    display: flex;
    justify-content: space-between;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-color);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-muted);
}

@media (max-width: 768px) {
    .checkout-grid {
        grid-template-columns: 1fr;
    }

    .summary-col {
        order: -1;
        /* Summary on top on mobile */
    }
}

/* ==================== WHATSAPP FLOATING BUTTON ==================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
    z-index: 9999;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.7);
}

.whatsapp-float:active {
    transform: scale(0.95);
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
    }
}