/* 1. RESET & VARIABLES */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Plus Jakarta Sans", "Poppins", sans-serif;
}

html {
    scroll-behavior: smooth;
}

:root {
    --primary: #c084fc;
    --primary-dark: #a855f7;
    --dark-bg: #05070a;
    --glass-bg: rgba(15, 23, 42, 0.6);
    --card-border: rgba(255, 255, 255, 0.1);

    --text-main: #ffffff;
    --text-muted: #94a3b8;

    --gold: #ffd700;
    --success: #22c55e;
    --danger: #ef4444;
}

body {
    background-color: var(--dark-bg);
    background-image:
        radial-gradient(circle at 10% 20%,
            rgba(168, 85, 247, 0.12) 0%,
            transparent 40%),
        radial-gradient(circle at 90% 80%,
            rgba(192, 132, 252, 0.08) 0%,
            transparent 40%);
    background-attachment: fixed;
    color: var(--text-main);
    overflow-x: hidden;
    position: relative;
}

.container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

/* Unified Section Titles */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 50px;

    /* Gradient Text Effect */
    background: linear-gradient(to bottom, #ffffff 50%, #94a3b8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* 2. BACKGROUND FLOATING ANIMATION */
.music-elements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

/* Ensure all other sections sit ON TOP of the notes */
header,
.hero,
.services-slider-section,
.preview-section,
.new-pricing-section,
.form-section,
footer {
    position: relative;
    z-index: 2;
}

.music-note {
    position: absolute;
    color: rgba(255, 255, 255, 0.07);
    bottom: -50px;
    animation: floatInfinite linear infinite;
}

/* Animation */
@keyframes floatInfinite {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 0;
    }

    10% {
        opacity: 0.15;
        /* Visible but subtle */
    }

    90% {
        opacity: 0.15;
    }

    100% {
        transform: translateY(-120vh) rotate(360deg);
        opacity: 0;
    }
}

/* Individual Note Positions & Timings (Randomized) */
.n1 {
    left: 5%;
    font-size: 1.5rem;
    animation-duration: 18s;
    animation-delay: 0s;
}

.n2 {
    left: 12%;
    font-size: 2.2rem;
    animation-duration: 25s;
    animation-delay: 2s;
}

.n3 {
    left: 22%;
    font-size: 1.2rem;
    animation-duration: 20s;
    animation-delay: 5s;
}

.n4 {
    left: 35%;
    font-size: 2.5rem;
    animation-duration: 16s;
    animation-delay: 1s;
}

.n5 {
    left: 45%;
    font-size: 1rem;
    animation-duration: 22s;
    animation-delay: 8s;
}

.n6 {
    left: 55%;
    font-size: 1.8rem;
    animation-duration: 19s;
    animation-delay: 3s;
}

.n7 {
    left: 68%;
    font-size: 1.4rem;
    animation-duration: 24s;
    animation-delay: 6s;
}

.n8 {
    left: 78%;
    font-size: 2.1rem;
    animation-duration: 15s;
    animation-delay: 4s;
}

.n9 {
    left: 90%;
    font-size: 1.6rem;
    animation-duration: 21s;
    animation-delay: 2s;
}

.n10 {
    left: 18%;
    font-size: 1.3rem;
    animation-duration: 17s;
    animation-delay: 9s;
}

.n11 {
    left: 28%;
    font-size: 1.9rem;
    animation-duration: 28s;
    animation-delay: 4s;
}

.n12 {
    left: 62%;
    font-size: 2rem;
    animation-duration: 14s;
    animation-delay: 7s;
}

.n13 {
    left: 85%;
    font-size: 1.5rem;
    animation-duration: 25s;
    animation-delay: 1s;
}

.n14 {
    left: 40%;
    font-size: 1.2rem;
    animation-duration: 16s;
    animation-delay: 11s;
}

.n15 {
    left: 72%;
    font-size: 1.8rem;
    animation-duration: 20s;
    animation-delay: 5s;
}

/* New Elements Styling */
.n16 {
    left: 3%;
    font-size: 1.4rem;
    animation-duration: 23s;
    animation-delay: 12s;
}

.n17 {
    left: 95%;
    font-size: 2.3rem;
    animation-duration: 27s;
    animation-delay: 3s;
}

.n18 {
    left: 50%;
    font-size: 0.9rem;
    animation-duration: 19s;
    animation-delay: 15s;
}

.n19 {
    left: 25%;
    font-size: 2.6rem;
    animation-duration: 22s;
    animation-delay: 10s;
}

.n20 {
    left: 82%;
    font-size: 1.1rem;
    animation-duration: 18s;
    animation-delay: 8s;
}

.n21 {
    left: 10%;
    font-size: 1.7rem;
    animation-duration: 26s;
    animation-delay: 14s;
}

.n22 {
    left: 65%;
    font-size: 2.1rem;
    animation-duration: 15s;
    animation-delay: 13s;
}

.n23 {
    left: 32%;
    font-size: 1.5rem;
    animation-duration: 21s;
    animation-delay: 6s;
}

.n24 {
    left: 88%;
    font-size: 1.3rem;
    animation-duration: 29s;
    animation-delay: 9s;
}

.n25 {
    left: 58%;
    font-size: 2.4rem;
    animation-duration: 17s;
    animation-delay: 1s;
}

.n26 {
    left: 15%;
    font-size: 1.6rem;
    animation-duration: 24s;
    animation-delay: 18s;
}

.n27 {
    left: 75%;
    font-size: 1.9rem;
    animation-duration: 20s;
    animation-delay: 16s;
}

.n28 {
    left: 92%;
    font-size: 1.2rem;
    animation-duration: 25s;
    animation-delay: 7s;
}

.n29 {
    left: 8%;
    font-size: 2rem;
    animation-duration: 22s;
    animation-delay: 5s;
}

.n30 {
    left: 48%;
    font-size: 1.4rem;
    animation-duration: 19s;
    animation-delay: 2s;
}

/* 3. HEADER & NAV */
header {
    height: 80px;
    display: flex;
    align-items: center;
    background: rgba(5, 7, 10, 0.7);
    backdrop-filter: blur(12px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--card-border);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    display: flex;
    width: 100px;
    height: 50px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 25px;
}

.nav-links li a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s;
}

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

/* Sticky WhatsApp */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 25px;
    right: 25px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50px;
    text-align: center;
    font-size: 35px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

.menu-toggle {
    display: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    background: rgba(5, 7, 10, 0.95);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: 0.3s ease;
    z-index: 1500;
    border-left: 1px solid var(--card-border);
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu a {
    color: white;
    font-size: 1.5rem;
    margin: 20px 0;
    text-decoration: none;
}

.close-menu {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 2rem;
    color: white;
    cursor: pointer;
}

/* 4. HERO SECTION */
.hero {
    padding: 100px 0 100px;
    background: transparent;
}

.hero-flex {
    display: flex;
    align-items: center;
    gap: 50px;
}

.hero-content {
    flex: 1;
}

.hero-content h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 800;
}

.highlight {
    color: var(--primary);
    text-shadow: 0 0 30px rgba(192, 132, 252, 0.3);
}

.hero-content p {
    font-size: 1rem;
    margin-bottom: 30px;
    color: var(--text-muted);
}

.cta-btn {
    background: white;
    color: black;
    padding: 16px 36px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    display: inline-block;
    transition:
        transform 0.3s,
        background 0.3s,
        box-shadow 0.3s;
}

.cta-btn:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(168, 85, 247, 0.3);
}

.hero-image {
    flex: 1;
}

.hero-image img {
    width: 100%;
    border-radius: 1rem;
    border: 1px solid var(--card-border);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    object-fit: cover;
}

.hero-image video {
    width: 100%;
    border-radius: 1rem;
    border: 1px solid var(--card-border);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    object-fit: cover;
}

/* 5. SERVICES SLIDER */
.services-slider-section {
    padding: 40px 0 40px;
    background: transparent;
}

.services-swiper {
    padding-bottom: 40px;
}

.service-card {
    position: relative;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--card-border);
}

.service-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, #05070a, transparent);
    padding: 40px 20px 30px;
    z-index: 2;
}

.card-overlay h3 {
    color: white;
    font-size: 1.8rem;
    font-weight: 700;
    text-align: center;
    letter-spacing: 1px;
}

.services-slider-section .swiper-pagination {
    bottom: 0 !important;
    margin-top: 30px;
}

.swiper-pagination-bullet {
    background: var(--text-muted);
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    background: var(--primary) !important;
    width: 25px;
    border-radius: 5px;
    opacity: 1;
    transition: width 0.3s ease;
}

/* 6. SAMPLES SECTION */
.preview-section {
    padding: 40px 0;
    background: transparent;
}

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

.audio-card {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    padding: 25px;
    border-radius: 20px;
    border: 1px solid var(--card-border);
    transition:
        transform 0.3s,
        border-color 0.3s;
}

.audio-card:hover {
    transform: translateY(-5px);
    border-color: rgba(168, 85, 247, 0.5);
}

.audio-info {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.audio-icon-box {
    width: 50px;
    height: 50px;
    background: rgba(168, 85, 247, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.2rem;
    border: 1px solid rgba(168, 85, 247, 0.2);
}

.audio-info h4 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 2px;
}

.audio-card audio {
    width: 100%;
    height: 40px;
    filter: invert(1) hue-rotate(180deg) saturate(0);
    opacity: 0.8;
    border-radius: 5px;
}

/* 7. PRICING SECTION */
.new-pricing-section {
    position: relative;
    padding: 60px 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    background: transparent;
}

/* Glass Card */
.premium-card {
    position: relative;
    width: 90%;
    max-width: 600px;
    background: rgba(15, 23, 42, 0.7);
    /* Darker */
    backdrop-filter: blur(25px);
    border-radius: 40px;
    padding: 50px;
    border: 1px solid var(--card-border);
    text-align: center;
    box-shadow: 0 40px 100px -20px rgba(0, 0, 0, 0.6);
    z-index: 10;
    transition: all 0.4s ease;
}

.premium-card:hover {
    border-color: rgba(168, 85, 247, 0.5);
    box-shadow: 0 50px 120px -20px rgba(168, 85, 247, 0.15);
}

.premium-card .badge {
    display: inline-block;
    background: rgba(168, 85, 247, 0.1);
    color: var(--primary);
    padding: 8px 20px;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 24px;
    border: 1px solid rgba(168, 85, 247, 0.2);
}

.pricing-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin: 0 0 10px 0;
    background: linear-gradient(to bottom, #fff 50%, #94a3b8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.desc {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.price-wrapper {
    margin-bottom: 40px;
    display: flex;
    justify-content: center;
    align-items: baseline;
}

.currency {
    font-size: 1.8rem;
    color: var(--primary);
    margin-right: 5px;
}

.amount {
    font-size: 4rem;
    font-weight: 700;
    letter-spacing: -3px;
    color: white;
    text-decoration-line: line-through;
    text-decoration-color: var(--primary);
    margin-left: 5px;
}

.amount-new {
    font-size: 2rem;
    font-weight: 500;
    letter-spacing: -2px;
    color: white;
    margin-left: 5px;
}

.duration {
    color: #64748b;
    font-size: 1.2rem;
    margin-left: 8px;
}

.offer-box {
    position: relative;
    background: rgba(239, 68, 68, 0.05);
    border: 1px solid rgba(239, 68, 68, 0.2);
    padding: 16px;
    border-radius: 20px;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-weight: 600;
    color: #fca5a5;
    animation: pulse-border 2s infinite;
}

@keyframes pulse-border {
    0% {
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.2);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(239, 68, 68, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0);
    }
}

.discount-badge {
    background: #ef4444;
    color: white;
    padding: 4px 12px;
    border-radius: 8px;
    font-size: 0.85rem;
    box-shadow: 0 0 15px rgba(239, 68, 68, 0.4);
    animation: bounce 2s infinite ease-in-out;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-4px);
    }
}

.feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    text-align: left;
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    color: #cbd5e1;
    font-size: 0.95rem;
}

.feature-item i {
    color: var(--success);
    margin-right: 10px;
}

.pricing-cta-btn {
    width: 100%;
    padding: 20px;
    background: white;
    color: black;
    border-radius: 20px;
    font-size: 1.1rem;
    font-weight: 800;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.pricing-cta-btn:hover {
    transform: scale(1.02);
    background: var(--primary);
    color: white;
    box-shadow: 0 20px 40px rgba(168, 85, 247, 0.3);
}

/* 8. FORM SECTION */
.form-section {
    padding: 40px 0;
    background: transparent;
}

.form-card {
    max-width: 700px;
    margin: auto;
    background: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(20px);
    padding: 40px;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 1px solid var(--card-border);
}

.form-description {
    text-align: center;
    margin-bottom: 30px;
    color: var(--text-muted);
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-row .form-group {
    flex: 1;
    margin-bottom: 0;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: white;
    font-size: 0.95rem;
    margin-left: 5px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid var(--card-border);
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s;
    background: rgba(0, 0, 0, 0.3);
    color: white;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--primary);
    background: rgba(0, 0, 0, 0.6);
    outline: none;
    box-shadow: 0 0 0 4px rgba(168, 85, 247, 0.1);
}

.submit-btn {
    width: 100%;
    background: var(--primary);
    color: white;
    padding: 16px;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition:
        transform 0.2s,
        box-shadow 0.2s;
}

.submit-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 10px #a855f7;
}

select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1em;
}

/* Ensure dropdown options are readable */
select option {
    background-color: var(--dark-bg);
    color: white;
}

/* --- RESPONSIVE PAYMENT MODAL --- */

/* 1. BASE STYLES (Mobile / Compact View by Default) */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(8px);
    padding: 15px;
}

.modal-container {
    background: rgba(15, 23, 42, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 20px;
    width: 100%;
    max-width: 380px;
    /* Small width for mobile */
    position: relative;
    box-shadow: 0 20px 60px rgba(168, 85, 247, 0.2);
    color: white;
    /* No overflow needed for compact view */
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 10px;
    line-height: 0;
    font-size: 28px;
    cursor: pointer;
    color: #aaa;
    z-index: 10;
}

.modal-title {
    text-align: center;
    margin-bottom: 15px;
    font-size: 1.3rem;
    color: #a855f7;
    font-weight: 700;
}

/* Mobile: Stack vertically */
.modal-body {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

/* QR Section */
.qr-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.qr-wrapper {
    background: white;
    padding: 8px;
    border-radius: 12px;
}

.qr-img {
    width: 100%;
    max-width: 140px;
    /* Smaller QR for mobile */
    display: block;
}

.scan-hint {
    margin-top: 8px;
    font-size: 0.85rem;
    color: #ccc;
}

/* Text Section */
.text-column {
    width: 100%;
    text-align: center;
}

.text-column h4 {
    margin-bottom: 8px;
    font-size: 1.1rem;
    color: white;
}

.text-column p {
    font-size: 0.9rem;
    color: #cbd5e1;
    line-height: 1.4;
    margin-bottom: 10px;
    display: none;
}

.payment-details {
    background: rgba(255, 255, 255, 0.05);
    padding: 10px 15px;
    border-radius: 10px;
    margin: 10px 0;
    text-align: left;
}

.payment-details li {
    list-style: none;
    margin-bottom: 5px;
    font-size: 0.9rem;
    color: #e2e8f0;
    display: flex;
    justify-content: space-between;
}

.note {
    font-size: 0.8rem !important;
    color: #94a3b8 !important;
    font-style: italic;
    display: block;
    margin-top: 5px;
}

#confirm-payment-btn {
    width: 100%;
    margin-top: 10px;
    padding: 12px;
}

/* --- 2. DESKTOP EXPANSION (Min-width: 768px) --- */
/* This block restores the wide layout ONLY for tablets and desktops */
@media (min-width: 768px) {
    .modal-container {
        max-width: 700px;
        /* Restore wider container */
        padding: 40px;
        /* More padding */
    }

    .modal-body {
        flex-direction: row;
        /* Switch to side-by-side */
        align-items: flex-start;
        /* Align top */
        gap: 40px;
        text-align: left;
    }

    .modal-title {
        font-size: 1.6rem;
        margin-bottom: 30px;
    }

    .qr-column {
        flex: 0 0 200px;
        /* Fixed width for QR side */
    }

    .qr-img {
        max-width: 180px;
        /* Larger QR */
    }

    .text-column {
        text-align: left;
        /* Align text left */
        flex: 1;
    }

    .text-column h4 {
        font-size: 1.3rem;
        margin-bottom: 15px;
    }

    .text-column p {
        font-size: 1rem;
        display: block;
    }

    .payment-details li {
        font-size: 1rem;
    }
}

/* 9. FOOTER */
footer {
    background: rgba(5, 7, 10, 0.95);
    border-top: 1px solid var(--card-border);
    color: white;
    padding: 80px 0 0;
    font-size: 0.95rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
    padding-bottom: 60px;
}

.footer-col h3 {
    color: white;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.footer-col h3::after {
    content: "";
    display: block;
    width: 40px;
    height: 3px;
    background: var(--primary);
    margin-top: 8px;
    border-radius: 2px;
}

.footer-logo img {
    height: 50px;
    width: auto;
    margin-bottom: 20px;
}

.brand-desc {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 25px;
}

.response-note {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(168, 85, 247, 0.1);
    border: 1px solid rgba(168, 85, 247, 0.2);
    padding: 12px;
    border-radius: 10px;
    color: #e2e8f0;
    font-size: 0.85rem;
}

.response-note i {
    color: var(--primary);
}

.contact-blurb {
    color: var(--text-muted);
    margin-bottom: 25px;
    line-height: 1.6;
}

.contact-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-list li {
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-list li i {
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--primary);
    font-size: 0.9rem;
    border: 1px solid var(--card-border);
}

.contact-list li a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-list li a:hover {
    color: var(--primary);
}

.legal-links {
    list-style: none;
    margin-bottom: 30px;
}

.legal-links li {
    margin-bottom: 12px;
}

.legal-links li a {
    color: var(--text-muted);
    text-decoration: none;
    transition: 0.3s;
    position: relative;
    padding-left: 0;
}

.legal-links li a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.social-title {
    margin-top: 10px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--card-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    transform: translateY(-3px);
    border-color: var(--primary);
}

.social-link.insta:hover {
    background: #e1306c;
    border-color: transparent;
}

.social-link.whatsapp:hover {
    background: #25d366;
    border-color: transparent;
}

.social-link.linkedin:hover {
    background: #0077b5;
    border-color: transparent;
}

.social-link.email:hover {
    background: var(--primary);
    border-color: transparent;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid var(--card-border);
    padding: 25px 0;
    background: rgba(0, 0, 0, 0.3);
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* TESTIMONIALS / REVIEWS */
.reviews-section {
    padding: 60px 0;
    background: transparent;
}

.reviews-swiper {
    padding-bottom: 50px;
    padding-top: 20px;
}

.review-card {
    background: var(--glass-bg);
    border: 1px solid var(--card-border);
    backdrop-filter: blur(15px);
    border-radius: 24px;
    overflow: hidden;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    will-change: transform;
}

.review-card:hover {
    transform: translateY(-10px);
    border-color: rgba(168, 85, 247, 0.4);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.video-wrapper {
    width: 100%;
    height: 450px;
    background: black;
    position: relative;
    border-bottom: 1px solid var(--card-border);
}

.video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.review-content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
}

.stars {
    color: var(--gold);
    margin-bottom: 12px;
    font-size: 0.9rem;
}

.review-text {
    font-size: 0.95rem;
    color: white;
    font-style: italic;
    margin-bottom: 15px;
    line-height: 1.5;
}

.client-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
}

@media (max-width: 500px) {
    .video-wrapper {
        height: 350px;
    }
}

/* 10. RESPONSIVE DESIGN */

@media (max-width: 900px) {
    .hero-flex {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .nav-links {
        display: none;
    }

    .menu-toggle {
        display: block;
    }
}

@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .form-row .form-group {
        margin-bottom: 20px;
    }

    .service-card {
        height: 350px;
    }

    .form-card {
        padding: 30px 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: left;
    }

    .footer-col h3::after {
        margin-left: 0;
    }
}

@media (max-width: 500px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        padding: 60px 0;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .premium-card {
        padding: 30px 20px;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .amount {
        font-size: 4rem;
    }

    .offer-box {
        flex-direction: column;
        gap: 5px;
    }

    .pricing-title {
        font-size: 2rem;
    }
}