/* =====================================================
   RESPONSIVE IPTV WEBSITE - PROFESSIONAL STYLING
   Mobile First Approach
   ===================================================== */

/* =====================================================
   1. ROOT VARIABLES & RESET
   ===================================================== */

:root {
    /* Colors */
    --primary-color: #5a189a;
    --primary-dark: #3d0f6f;
    --primary-light: #7b2cbf;
    --white: #ffffff;
    --black: #000000;
    --light-gray: #f5f5f5;
    --medium-gray: #e0e0e0;
    --dark-gray: #333333;
    --text-color: #333333;
    --border-color: #e0e0e0;
    --shadow-light: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 4px 16px rgba(0, 0, 0, 0.15);
    --shadow-heavy: 0 8px 32px rgba(0, 0, 0, 0.2);

    /* Typography */
    --font-poppins: 'Lexend', sans-serif;
    --font-grotesk: 'Lexend', sans-serif;
    --font-rubik: 'Rubik', sans-serif;
    --font-bebas: 'Bebas Neue', sans-serif;

    /* Spacing */
    --spacing-xs: 8px;
    --spacing-sm: 16px;
    --spacing-md: 24px;
    --spacing-lg: 32px;
    --spacing-xl: 48px;
    --spacing-xxl: 64px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-smooth: 0.3s ease;
    --transition-smooth-long: 0.5s ease;

    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-grotesk);
    color: var(--text-color);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* =====================================================
   2. TYPOGRAPHY
   ===================================================== */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-poppins);
    line-height: 1.2;
    margin-bottom: var(--spacing-sm);
    font-weight: 700;
}

h1 {
    font-size: 2rem;
}

h2 {
    font-size: 2.8rem;
    color: #000000;
    margin-bottom: var(--spacing-lg);
}

h3 {
    font-size: 1.5rem;
    font-weight: 400;
}

p {
    font-family: var(--font-grotesk);
    margin-bottom: var(--spacing-sm);
    font-size: 1rem;
    font-weight: 400;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color var(--transition-smooth);
}

a:hover {
    color: var(--primary-dark);
}

/* =====================================================
   3. CONTAINER & LAYOUT
   ===================================================== */

.container {
    width: 100%;
    padding: 0 var(--spacing-sm);
    margin: 0 auto;
}

@media (min-width: 768px) {
    .container {
        padding: 0 var(--spacing-md);
        max-width: 750px;
    }
}

@media (min-width: 1025px) {
    .container {
        padding: 0 var(--spacing-lg);
        max-width: 1200px;
    }
}

/* =====================================================
   4. BUTTONS
   ===================================================== */

.btn {
    display: inline-block;
    padding: var(--spacing-xs) var(--spacing-md);
    font-family: var(--font-grotesk);
    font-size: 1rem;
    font-weight: 600;
    border: 2px solid transparent;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-smooth);
    text-align: center;
    white-space: nowrap;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xs);
}

.btn:hover,
.btn:focus {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.btn:active {
    transform: translateY(0);
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.btn-primary:hover,
.btn-primary:focus {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    color: var(--white);
}

.btn-secondary {
    background-color: var(--black);
    color: var(--white);
    border-color: var(--black);
    
}

.btn-secondary:hover,
.btn-secondary:focus {
    background-color: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.btn-large {
    padding: var(--spacing-sm) var(--spacing-lg);
    font-size: 1.1rem;
}

.btn-block {
    width: 100%;
}

.btn-free-trial {
    padding: var(--spacing-xs) var(--spacing-md);
    font-size: 0.9rem;
}

/* =====================================================
   5. HEADER & NAVIGATION
   ===================================================== */

.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: url('../images/hero.webp') center/cover no-repeat fixed;
    padding: var(--spacing-md) 0;
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.navbar {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.nav-brand {
    flex: 0 0 auto;
}

.logo {
    height: 60px;
    width: auto;
    display: block;
    transition: transform var(--transition-smooth);
}

.logo:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: var(--spacing-xl);
    margin: 0;
    padding: 0;
    flex: 1;
    justify-content: center;
}

.nav-menu li {
    margin: 0;
}

.mobile-only-nav-item {
    display: none;
}

.nav-link {
    font-family: var(--font-grotesk);
    font-weight: 500;
    font-size: 1.1rem;
    color: var(--white);
    transition: color var(--transition-smooth);
    text-decoration: none;
    display: block;
    padding: var(--spacing-xs) var(--spacing-sm);
}

.nav-link:hover {
    color: var(--primary-color);
}

.btn-free-trial {
    flex: 0 0 auto;
    padding: var(--spacing-sm) var(--spacing-xl);
    font-size: 1.1rem;
    white-space: nowrap;
    font-weight: 500;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--spacing-xs);
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background-color: var(--white);
    border-radius: var(--radius-sm);
    transition: all var(--transition-smooth);
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* Mobile Navigation */
@media (max-width: 767px) {
    .mobile-menu-btn {
        display: flex;
        transition: transform 0.3s ease;
        z-index: 1002; /* Ensure above menu */
        position: relative;
    }
    
    .mobile-menu-btn:active {
        transform: scale(0.9);
    }

    .nav-menu {
        display: flex;
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        width: 75%;
        max-width: 300px;
        background: var(--primary-color);
        flex-direction: column;
        padding: 70px var(--spacing-md) var(--spacing-md) var(--spacing-md);
        gap: 0;
        transform: translateX(100%);
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1001;
        box-shadow: -5px 0 15px rgba(0,0,0,0.3);
        opacity: 1;
        justify-content: flex-start;
    }

    .nav-menu.active {
        transform: translateX(0);
    }

    .nav-menu li {
        width: 100%;
        text-align: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-menu li:last-child {
        border-bottom: none;
        margin-top: var(--spacing-md);
    }

    .nav-link {
        padding: var(--spacing-sm) 0;
        display: block;
        font-size: 1.2rem;
    }

    .mobile-only-nav-item {
        display: block;
    }

    .mobile-only-nav-item .btn {
        background-color: #000000;
        color: #ffffff;
        border-color: #000000;
    }

    .mobile-only-nav-item .btn:hover {
        background-color: #333333;
        border-color: #333333;
    }

    .btn-free-trial {
        display: none;
    }
}

/* =====================================================
   6. HERO SECTION
   ===================================================== */

.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0;
    min-height: 90vh;
    position: relative;
    overflow: hidden;
    background: url('../images/hero.webp') center/cover no-repeat fixed;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    margin: -60px auto 0 auto;
    padding: 0 var(--spacing-sm);
    text-align: center;
}

.hero h1 {
    font-size: 2.5rem;
    font-weight: 800; /* Made bolder */
    margin-bottom: var(--spacing-md);
    color: var(--white);
    line-height: 1.4;
    text-shadow: 3px 3px 12px rgba(0, 0, 0, 0.7), 0px 0px 20px rgba(0, 0, 0, 0.5);
    letter-spacing: 0.5px;
    animation: fadeInUp 0.8s ease-out;
}

.hero p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: var(--spacing-lg);
    line-height: 1.8;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease-out 0.2s backwards;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    justify-content: center;
    position: relative;
    z-index: 2;
    animation: fadeInUp 1.2s ease-out 0.4s backwards;
}

.hero-image {
    display: none;
}

/* Tablet */
@media (min-width: 768px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 0;
        min-height: 90vh;
    }

    .hero-content {
        text-align: center;
        padding: 0 var(--spacing-lg);
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-buttons {
        flex-direction: row;
        gap: var(--spacing-md);
        justify-content: center;
    }
}

/* Desktop */
@media (min-width: 1025px) {
    .hero {
        padding: 0;
        min-height: 90vh;
    }

    .hero-content {
        padding: 0 var(--spacing-xl);
    }

    .hero h1 {
        font-size: 5.2rem;
        font-weight: 600;
    }
}

/* =====================================================
   6.5. LOGO SLIDER
   ===================================================== */

.logo-slider {
    padding: 60px 20px;
    background-color: var(--white);
    overflow: hidden;
}

.logo-slider-track {
    display: flex;
    gap: 20px;
    animation: logoScroll 65s linear infinite;
    width: fit-content;
}

.logo-slide {
    flex-shrink: 0;
    width: 200px;
    height: 120px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-sm);
}

.logo-slide:hover {
    transform: scale(1.05);
}

.logo-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

@keyframes logoScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* =====================================================
   7. HOW IT WORKS SECTION
   ===================================================== */

.how-it-works {
    background-color: var(--light-gray);
    padding: var(--spacing-xxl) var(--spacing-sm);
    margin: 0 0 var(--spacing-xxl) 0;
}

.how-it-works h2 {
    text-align: center;
    margin-bottom: var(--spacing-lg);
    color: #000000;
    font-size: 2.8rem;
}

.steps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
}

.step-card {
    background-color: var(--primary-color);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all var(--transition-smooth);
    box-shadow: var(--shadow-light);
}

.step-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
}

.step-icon {
    margin-bottom: var(--spacing-md);
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-icon .icon {
    max-width: 80px;
    height: auto;
}

.step-card h3 {
    margin-bottom: var(--spacing-sm);
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.step-card p {
    color: #ffffff;
    font-size: 0.95rem;
}

/* Tablet */
@media (min-width: 768px) {
    .how-it-works {
        padding: var(--spacing-xxl) var(--spacing-md);
    }

    .steps-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--spacing-md);
    }

    .step-card {
        padding: var(--spacing-lg) var(--spacing-md);
    }
}

/* Desktop */
@media (min-width: 1025px) {
    .how-it-works {
        padding: var(--spacing-xxl) var(--spacing-lg);
    }

    .steps-grid {
        gap: var(--spacing-lg);
    }
}

/* =====================================================
   8. PRICING SECTION
   ===================================================== */

.pricing {
    padding: var(--spacing-xl) var(--spacing-sm);
    max-width: 1400px;
    margin: 0 auto;
}

.pricing h2 {
    text-align: center;
    margin-bottom: var(--spacing-xxl);
    color: #000000;
    font-size: 2.8rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    background-color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: var(--radius-lg);
    padding: var(--spacing-md);
    transition: all var(--transition-smooth);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.6s ease-out backwards;
}

.pricing-card:nth-child(1) {
    animation-delay: 0.1s;
}

.pricing-card:nth-child(2) {
    animation-delay: 0.3s;
}

.pricing-card:nth-child(3) {
    animation-delay: 0.5s;
}

.pricing-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-medium);
    transform: translateY(-4px);
}

.pricing-card.featured {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-medium);
}

.pricing-card.premium-plus-card {
    background-color: #000000;
    border-color: #000000;
    transform: scale(1.05);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.pricing-card.premium-plus-card:hover {
    transform: scale(1.08);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5);
}

.pricing-card.premium-plus-card .pricing-header {
    background: rgba(255, 255, 255, 0.1);
}

.pricing-card.premium-plus-card .pricing-header h3,
.pricing-card.premium-plus-card .subscription-period,
.pricing-card.premium-plus-card .price,
.pricing-card.premium-plus-card .pricing-features li {
    color: #ffffff;
}

.pricing-card.premium-plus-card .btn-primary {
    background-color: #ffffff;
    border-color: #ffffff;
    color: #000000;
}

.pricing-card.premium-plus-card .btn-primary:hover {
    background-color: #f0f0f0;
    border-color: #f0f0f0;
    color: #000000;
}

.featured-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background-color: #ffffff;
    color: #000000;
    padding: var(--spacing-xs) var(--spacing-sm);
    font-weight: 600;
    transform: rotate(0deg);
    font-size: 0.8rem;
    width: auto;
    text-align: center;
    border-radius: var(--radius-md);
}

.pricing-header {
    margin-bottom: var(--spacing-sm);
    background: rgba(255, 255, 255, 0.1);
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    margin: -var(--spacing-md) -var(--spacing-md) var(--spacing-md) -var(--spacing-md);
    padding: var(--spacing-sm) var(--spacing-md);
    text-align: center;
}

.pricing-header h3 {
    color: #ffffff;
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
    font-weight: 600;
    letter-spacing: 0.3px;
}

.subscription-period {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
}

.pricing-price {
    margin-bottom: var(--spacing-sm);
    text-align: center;
    padding-top: var(--spacing-md);
}

.price {
    font-family: var(--font-rubik);
    font-size: 3.5rem;
    color: #ffffff;
    font-weight: 600;
    letter-spacing: 2px;
}

.pricing-features {
    list-style: none;
    margin-bottom: var(--spacing-md);
}

.pricing-features li {
    padding: var(--spacing-xs) 0;
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-size: 0.95rem;
    color: #ffffff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-card .btn-primary {
    background-color: #000000;
    border-color: #000000;
    color: #ffffff;
    width: 100%;
    margin-top: var(--spacing-sm);
    padding: var(--spacing-sm) var(--spacing-md);
    font-size: 1.05rem;
    font-weight: 600;
}

.pricing-card .btn-primary:hover {
    background-color: #1a1a1a;
    border-color: #1a1a1a;
    color: #ffffff;
}

/* Tablet */
@media (min-width: 768px) {
    .pricing {
        padding: var(--spacing-xxl) var(--spacing-md);
    }

    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--spacing-md);
    }

    .pricing-card {
        padding: var(--spacing-lg);
    }
}

/* Desktop */
@media (min-width: 1025px) {
    .pricing {
        padding: var(--spacing-xxl) var(--spacing-lg);
    }

    .pricing-grid {
        gap: var(--spacing-lg);
    }
}

/* =====================================================
   9. MOVIES SLIDER SECTION
   ===================================================== */

.movies-slider {
    padding: 60px 20px;
    background-color: var(--light-gray);
    overflow: hidden;
}

.movies-slider h2 {
    text-align: center;
    margin-bottom: 40px;
    color: #000000;
    font-size: 2.8rem;
}

.slider-container {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.slider-track {
    display: flex;
    gap: 20px;
    animation: scroll 65s linear infinite;
    width: fit-content;
}

.slide {
    flex-shrink: 0;
    width: 300px;
    height: 500px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.slide:hover {
    transform: scale(1.05);
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@media (min-width: 768px) {
    .slide {
        width: 300px;
        height: 500px;
    }
}

@media (min-width: 1024px) {
    .slide {
        width: 300px;
        height: 500px;
    }
}

/* =====================================================
   10. WHY CHOOSE US SECTION
   ===================================================== */

.why-choose-us {
    padding: var(--spacing-xl) var(--spacing-sm);
}

.why-choose-us h2 {
    text-align: center;
    margin-bottom: var(--spacing-md);
    color: #000000;
    font-size: 2.8rem;
}

.section-intro {
    text-align: center;
    font-size: 1.05rem;
    color: var(--black);
    margin-bottom: var(--spacing-lg);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
}

.feature-card {
    background-color: var(--primary-color);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all var(--transition-smooth);
    box-shadow: var(--shadow-light);
    border: 2px solid transparent;
}

.feature-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-medium);
    transform: translateY(-8px);
}

.feature-icon {
    margin-bottom: var(--spacing-md);
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon .icon {
    max-width: 80px;
    height: auto;
}

.feature-card h3 {
    color: #ffffff;
    margin-bottom: var(--spacing-sm);
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.feature-card p {
    color: #ffffff;
    font-size: 0.95rem;
}

/* Tablet */
@media (min-width: 768px) {
    .why-choose-us {
        padding: var(--spacing-xxl) var(--spacing-md);
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-md);
    }
}

/* Desktop */
@media (min-width: 1025px) {
    .why-choose-us {
        padding: var(--spacing-xxl) var(--spacing-lg);
    }

    .features-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--spacing-lg);
    }
}

/* =====================================================
   11. FAQ SECTION
   ===================================================== */

.faq-section {
    padding: 80px 20px;
    background-color: var(--light-gray);
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 50px;
    color: #000000;
    font-size: 2.8rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 100%;
    margin: 0 auto;
}

.faq-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-box {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-box:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.faq-box h3 {
    background: var(--primary-color);
    color: white;
    padding: 24px 28px;
    margin: 0;
    font-size: 1rem;
    font-weight: 500;
    position: relative;
}

.faq-box h3::after {
    content: '▼';
    position: absolute;
    right: 28px;
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.faq-box.active h3::after {
    transform: rotate(180deg);
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-box.active .faq-content {
    max-height: 400px;
}

.faq-content p {
    padding: 28px;
    margin: 0;
    color: #333;
    line-height: 1.7;
    font-weight: 400;
    font-size: 1.02rem;
}

@media (min-width: 768px) {
    .faq-section {
        padding: 100px 60px;
    }
    
    .faq-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 50px;
    }
}

@media (min-width: 1024px) {
    .faq-section {
        padding: 120px 80px;
    }
    
    .faq-grid {
        max-width: 100%;
    }
}

/* =====================================================
   12. CALL-TO-ACTION SECTION
   ===================================================== */

.cta {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: var(--spacing-xl) var(--spacing-sm);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(-45deg, var(--primary-dark), var(--primary-color), var(--primary-light), var(--primary-dark));
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    opacity: 0.8;
}

.cta::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    right: -50%;
    bottom: -50%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: floatingParticles 20s linear infinite;
    opacity: 0.4;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    margin: 0 auto;
    padding: var(--spacing-xl) 0;
    animation: fadeInUp 0.8s ease-out;
}

@keyframes textShine {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}

.cta h2 {
    margin-bottom: var(--spacing-lg);
    font-size: 4rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.1;
    
    /* Gradient Text Animation */
    background: linear-gradient(
        to right,
        #ffffff 20%,
        #e0aaff 50%,
        #ffffff 80%
    );
    background-size: 200% auto;
    color: #ffffff;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textShine 3s linear infinite;
    filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.3));
}

.cta p {
    font-size: 1.05rem;
    margin-bottom: var(--spacing-xl);
    line-height: 1.8;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.cta .btn-primary {
    background-color: var(--white);
    color: var(--primary-color);
    border-color: var(--white);
}

.cta .btn-primary:hover {
    background-color: var(--light-gray);
}

.cta .btn-secondary {
    color: var(--white);
    border-color: var(--white);
}

.cta .btn-secondary:hover {
    background-color: var(--white);
    color: var(--primary-color);
}

/* Tablet */
@media (min-width: 768px) {
    .cta {
        padding: var(--spacing-xxl) var(--spacing-md);
    }

    .cta h2 {
        font-size: 3.5rem;
    }

    .cta-buttons {
        flex-direction: row;
        gap: var(--spacing-md);
        justify-content: center;
    }
}

/* Desktop */
@media (min-width: 1025px) {
    .cta {
        padding: var(--spacing-xxl) var(--spacing-lg);
    }

    .cta h2 {
        font-size: 5rem;
        font-weight: 700;
    }
}

/* =====================================================
   13. FOOTER
   ===================================================== */

.footer {
    background-color: var(--black);
    color: var(--white);
    padding: var(--spacing-lg) var(--spacing-sm);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.footer-link {
    color: var(--white);
    font-size: 1.1rem;
    transition: color var(--transition-smooth);
    padding: var(--spacing-xs) var(--spacing-sm);
}

.footer-link:hover {
    color: var(--primary-light);
}

.footer-copyright {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* Tablet */
@media (min-width: 768px) {
    .footer {
        padding: var(--spacing-lg) var(--spacing-md);
    }

    .footer-nav {
        flex-direction: row;
        justify-content: center;
        gap: var(--spacing-lg);
    }
}

/* Desktop */
@media (min-width: 1025px) {
    .footer {
        padding: var(--spacing-lg) var(--spacing-lg);
    }
}

/* =====================================================
   14. ANIMATIONS & MICRO-INTERACTIONS
   ===================================================== */

/* Scroll-triggered entrance animation */
@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Animated gradient background for CTA */
@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Floating particles animation for CTA */
@keyframes floatingParticles {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }
    100% {
        transform: translate(50px, 50px) rotate(360deg);
    }
}



/* Pulse animation for buttons */
@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(90, 24, 154, 0.7);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(90, 24, 154, 0);
    }
}

/* Glow effect on hover */
@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 10px rgba(90, 24, 154, 0.5);
    }
    50% {
        box-shadow: 0 0 20px rgba(90, 24, 154, 0.8);
    }
}

/* =====================================================
   14. ENTRANCE ANIMATIONS
   ===================================================== */

.entrance-element {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), 
                transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: opacity, transform;
}

.entrance-element.entrance-animate {
    opacity: 1;
    transform: translateY(0);
}

.entrance-delay-100 { transition-delay: 0.1s; }
.entrance-delay-200 { transition-delay: 0.2s; }
.entrance-delay-300 { transition-delay: 0.3s; }

/* =====================================================
   15. UTILITY CLASSES
   ===================================================== */

.text-center {
    text-align: center;
}

.text-primary {
    color: var(--primary-color);
}

.text-white {
    color: var(--white);
}

.bg-light {
    background-color: var(--light-gray);
}

.bg-primary {
    background-color: var(--primary-color);
}

.mt-0 { margin-top: 0; }
.mt-sm { margin-top: var(--spacing-sm); }
.mt-md { margin-top: var(--spacing-md); }
.mt-lg { margin-top: var(--spacing-lg); }

.mb-0 { margin-bottom: 0; }
.mb-sm { margin-bottom: var(--spacing-sm); }
.mb-md { margin-bottom: var(--spacing-md); }
.mb-lg { margin-bottom: var(--spacing-lg); }

/* =====================================================
   16. ACCESSIBILITY
   ===================================================== */

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Focus styles for keyboard navigation */
button:focus,
a:focus {
    outline: 3px solid var(--primary-color);
    outline-offset: 2px;
}

/* =====================================================
   17. TESTIMONIALS SECTION (WhatsApp Slider)
   ===================================================== */

.testimonials {
    padding: var(--spacing-xxl) 0;
    background-color: #f0f2f5; /* WhatsApp background colorish */
    overflow: hidden;
}

.testimonials h2 {
    text-align: center;
    margin-bottom: var(--spacing-sm);
    font-size: 2.8rem !important;
}

.testimonials .section-intro {
    text-align: center;
    max-width: 600px;
    margin: 0 auto var(--spacing-xl);
    color: var(--black);
}

.testimonials-slider {
    width: 100%;
    overflow-x: auto;
    padding: var(--spacing-md) 0;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
    scroll-behavior: smooth;
}

.testimonials-slider::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

.testimonial-track {
    display: flex;
    gap: var(--spacing-md);
    padding: 0 var(--spacing-md);
    width: max-content;
}

.testimonial-slide {
    width: 320px; /* Slightly wider for phone realism */
    flex: 0 0 auto;
    scroll-snap-align: center;
    border-radius: 20px; /* More rounded like a phone */
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
    border: 8px solid #111; /* Phone bezel */
    background-color: #fff;
}

.testimonial-slide:hover {
    transform: translateY(-5px);
}

/* Realistic WhatsApp Mockup Styles */
.wa-mockup {
    display: flex;
    flex-direction: column;
    height: 550px; /* Fixed height for consistency */
    font-family: Helvetica, Arial, sans-serif;
}

.wa-status-bar {
    background-color: #054d44; /* Darker teal for status bar */
    height: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 10px;
    color: white;
    font-size: 10px;
}

.wa-header {
    background-color: #075e54;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    box-shadow: 0 1px 3px rgba(0,0,0,0.2);
    z-index: 10;
}

.wa-back-arrow {
    font-size: 20px;
    margin-right: 5px;
}

.wa-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #ccc;
    flex-shrink: 0;
    overflow: hidden;
}

.wa-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wa-info {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.wa-name {
    font-weight: 600;
    font-size: 16px;
    line-height: 1.2;
}

.wa-status {
    font-size: 12px;
    opacity: 0.8;
}

.wa-actions {
    display: flex;
    gap: 15px;
    font-size: 18px;
}

.wa-body {
    padding: 15px;
    background-image: url('https://user-images.githubusercontent.com/15075759/28719144-86dc0f70-73b1-11e7-911d-60d70fcded21.png'); /* WhatsApp BG pattern */
    background-color: #e5ddd5;
    flex: 1;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.wa-date-bubble {
    align-self: center;
    background-color: #dcf8c6;
    background-color: rgba(225, 245, 254, 0.9);
    padding: 5px 12px;
    border-radius: 8px;
    font-size: 11px;
    color: #555;
    margin-bottom: 10px;
    box-shadow: 0 1px 1px rgba(0,0,0,0.1);
}

.wa-message {
    padding: 8px 10px;
    border-radius: 8px;
    position: relative;
    box-shadow: 0 1px 1px rgba(0,0,0,0.1);
    max-width: 85%;
    font-size: 14px;
    line-height: 1.4;
}

.wa-message.received {
    background-color: #ffffff;
    align-self: flex-start;
    border-top-left-radius: 0;
}

.wa-message.received::before {
    content: '';
    position: absolute;
    top: 0;
    left: -8px;
    width: 0;
    height: 0;
    border: 8px solid transparent;
    border-top-color: #ffffff;
    border-right-color: #ffffff;
    border-bottom: 0;
}

.wa-message.sent {
    background-color: #dcf8c6;
    align-self: flex-end;
    border-top-right-radius: 0;
}

.wa-message.sent::before {
    content: '';
    position: absolute;
    top: 0;
    right: -8px;
    width: 0;
    height: 0;
    border: 8px solid transparent;
    border-top-color: #dcf8c6;
    border-left-color: #dcf8c6;
    border-bottom: 0;
}

.wa-message p {
    margin: 0;
    color: #111;
}

.wa-time {
    display: block;
    text-align: right;
    font-size: 10px;
    color: #999;
    margin-top: 4px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 3px;
}

.wa-checks {
    color: #34b7f1; /* Blue ticks */
    font-size: 10px;
}

.wa-footer {
    background-color: #f0f0f0;
    padding: 8px 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.wa-input-box {
    background-color: white;
    border-radius: 20px;
    padding: 8px 15px;
    flex: 1;
    color: #999;
    font-size: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.wa-mic {
    background-color: #075e54;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

/* Slider Navigation Arrows */
.slider-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background-color: white;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    border: none;
    cursor: pointer;
    z-index: 50; /* Increased z-index to ensure clickability */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.slider-nav-btn:hover {
    background-color: var(--primary-color);
    color: white;
}

.slider-prev { left: 10px; }
.slider-next { right: 10px; }

.testimonials-container {
    position: relative;
    max-width: 100%;
    padding: 0 var(--spacing-md);
}

.testimonials h2 {
    text-align: center;
    margin-bottom: var(--spacing-lg);
    font-size: 4rem; /* Matched with other section titles */
    font-weight: 700;
    color: #000000;
}

/* Force pure black for paragraphs on white backgrounds */
.policy-content p,
.faq-content p {
    color: #000000;
}

.policy-section {
    padding: var(--spacing-xl) 0;
    background-color: var(--white);
    border-top: 1px solid var(--border-color);
}

.policy-section.bg-light {
    background-color: #f9f9f9;
}

.policy-section h2 {
    text-align: center;
    margin-bottom: var(--spacing-lg);
    font-size: 2.5rem;
}

.policy-content {
    max-width: 900px;
    margin: 0 auto;
    color: var(--text-color);
}

.policy-content h3 {
    margin-top: var(--spacing-lg);
    margin-bottom: var(--spacing-sm);
    font-family: var(--font-poppins);
    font-size: 1.8rem;
    font-weight: 700;
    color: black !important;
}

.policy-content h4 {
    margin-top: var(--spacing-md);
    margin-bottom: var(--spacing-xs);
    font-size: 1.2rem;
    font-weight: 600;
    color: #000000;
}

.policy-content p {
    margin-bottom: var(--spacing-sm);
    line-height: 1.7;
    color: #000000;
}

.policy-content ul {
    margin-bottom: var(--spacing-md);
    padding-left: var(--spacing-lg);
    color: #000000;
}

.policy-content li {
    margin-bottom: 5px;
}

/* =====================================================
   19. FLOATING WHATSAPP BUTTON
   ===================================================== */

@keyframes pulse-green {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    left: 20px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    animation: pulse-green 2s infinite;
}

.whatsapp-float:hover {
    background-color: #00e676; /* Active Green */
    animation: none;
    transform: scale(1.1);
}

.whatsapp-icon-float {
    width: 35px;
    height: 35px;
    /* Removed fill: white because we are using an img now */
}

/* =====================================================
   20. PRINT STYLES
   ===================================================== */

@media print {
    .header,
    .footer,
    .cta-buttons,
    .whatsapp-float,
    .testimonials {
        display: none;
    }

    body {
        background-color: var(--white);
    }
}

/* =====================================================
   21. RESPONSIVE REFINEMENTS (Mobile Fixes)
   ===================================================== */

@media (max-width: 767px) {
    /* Typography Fixes */
    h1 { font-size: 2.2rem; }
    
    /* Logo Fix */
    .logo {
        height: 40px; /* Reduced from 60px */
    }
    
    .how-it-works h2,
    .pricing h2,
    .movies-slider h2,
    .why-choose-us h2,
    .faq-section h2,
    .cta h2,
    .testimonials h2 {
        font-size: 2.2rem;
        margin-bottom: var(--spacing-lg);
    }

    /* Hero Section */
    .hero {
        min-height: 70vh; /* Reduced height to remove excess space */
    }

    .hero-content {
        margin-top: 0;
        padding: 0 var(--spacing-md);
    }

    /* Pricing Cards */
    .pricing-card.premium-plus-card {
        transform: none;
        box-shadow: var(--shadow-medium);
        margin: var(--spacing-md) 0;
    }
    
    .pricing-card.premium-plus-card:hover {
        transform: translateY(-4px);
    }

    /* Testimonials */
    .testimonial-slide {
        width: 250px; /* Smaller width for mobile */
        transform: scale(0.95);
    }
    
    .wa-mockup {
        height: 450px; /* Shorter height */
    }

    /* FAQ */
    .faq-section {
        padding: var(--spacing-xl) var(--spacing-sm);
    }

    .faq-grid {
        gap: 20px;
    }

    /* CTA */
    .cta h2 {
        font-size: 2.5rem;
        word-wrap: break-word;
    }
    
    /* Movies Slider */
    .slide {
        width: 240px;
        height: 360px;
    }
    
    /* Logo Slider */
    .logo-slide {
        width: 140px;
        height: 80px;
    }
}

@media (min-width: 768px) and (max-width: 1024px) {
    /* Tablet Adjustments */
    .container {
        max-width: 95%;
        padding: 0 var(--spacing-md);
    }

    /* Hero Section Fixes */
    .hero {
        min-height: auto;
        padding: 140px 0 80px 0;
        background-attachment: scroll;
    }

    .hero-content {
        margin-top: 0;
        padding: 0 var(--spacing-lg);
    }

    .hero h1 {
        font-size: 3.2rem;
        line-height: 1.2;
        margin-bottom: var(--spacing-md);
    }

    .hero p {
        font-size: 1.2rem;
        max-width: 80%;
        margin: 0 auto var(--spacing-lg) auto;
    }

    .hero-buttons {
        flex-direction: row;
        gap: var(--spacing-md);
    }

    .how-it-works h2,
    .pricing h2,
    .movies-slider h2,
    .why-choose-us h2,
    .faq-section h2,
    .cta h2,
    .testimonials h2 {
        font-size: 2.8rem;
    }
    
    /* Navigation Tweak */
    .nav-menu {
        gap: var(--spacing-sm);
    }
    
    .nav-link {
        font-size: 1rem;
    }

    /* Grid Layouts for Tablet */
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .step-card:last-child {
        grid-column: span 2;
        width: 50%;
        margin: 0 auto;
    }

    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-md);
    }
    
    /* Make the 3rd pricing card (Premium) span full width or centered */
    .pricing-card:nth-child(3) {
        grid-column: span 2;
        width: 60%;
        margin: 0 auto;
    }

    .pricing-card.premium-plus-card {
        transform: scale(1.02);
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-section {
        padding: 60px 30px;
    }
}

/* =====================================================
   7. PAGE HEADER & CONTACT
   ===================================================== */

.page-header {
    background: linear-gradient(rgba(90, 24, 154, 0.8), rgba(61, 15, 111, 0.9)), url('../images/hero.webp') center/cover no-repeat;
    padding: 140px 0 80px;
    text-align: center;
    color: var(--white);
    margin-bottom: -50px;
    position: relative;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
    z-index: 10;
}

.page-header h1 {
    font-size: 3.5rem;
    margin-bottom: var(--spacing-sm);
    color: var(--white);
    text-shadow: 2px 2px 10px rgba(0,0,0,0.3);
    font-family: var(--font-poppins);
}

.page-header p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.9;
    font-weight: 300;
    color: var(--white);
}

/* Creative Contact Hero */
.contact-hero-creative {
    position: relative;
    padding: 180px 0 200px;
    background: radial-gradient(circle at 20% 50%, #4a0072 0%, #240046 100%);
    overflow: hidden;
    text-align: center;
    color: var(--white);
    z-index: 10;
}

.hero-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
    animation: floatShape 15s infinite alternate;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: #7b2cbf;
    top: -100px;
    left: -100px;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: #e0aaff;
    bottom: 50px;
    right: -50px;
    animation-duration: 12s;
    animation-delay: -5s;
}

.shape-3 {
    width: 200px;
    height: 200px;
    background: #ff006e;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.3;
    animation-duration: 20s;
}

@keyframes floatShape {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(30px, 50px) scale(1.1); }
}

.hero-content-wrapper {
    position: relative;
    z-index: 5;
    animation: fadeInUp 1s ease-out;
}

.hero-tag {
    display: inline-block;
    padding: 10px 24px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 25px;
    backdrop-filter: blur(10px);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.contact-hero-creative h1 {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    background: linear-gradient(to right, #ffffff, #e0e0e0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -1.5px;
    text-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.contact-hero-creative p {
    font-size: 1.35rem;
    max-width: 650px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 300;
    line-height: 1.6;
}

.header-waves {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: auto;
    line-height: 0;
    z-index: 2;
}

.waves {
    position: relative;
    width: 100%;
    height: 100px;
    margin-bottom: -7px;
    min-height: 100px;
    max-height: 150px;
}

.parallax > use {
    animation: move-forever 25s cubic-bezier(.55,.5,.45,.5) infinite;
}
.parallax > use:nth-child(1) {
    animation-delay: -2s;
    animation-duration: 7s;
}
.parallax > use:nth-child(2) {
    animation-delay: -3s;
    animation-duration: 10s;
}
.parallax > use:nth-child(3) {
    animation-delay: -4s;
    animation-duration: 13s;
}
.parallax > use:nth-child(4) {
    animation-delay: -5s;
    animation-duration: 20s;
}

@keyframes move-forever {
    0% {
        transform: translate3d(-90px, 0, 0);
    }
    100% {
        transform: translate3d(85px, 0, 0);
    }
}

/* Animation */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .waves {
        height: 60px;
        min-height: 60px;
    }
    .contact-hero-creative h1 {
        font-size: 3rem;
    }
}

.policy-section {
    padding-top: 100px;
    padding-bottom: 80px;
    background-color: #f8f9fa;
}

.policy-content {
    background: var(--white);
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    position: relative;
    z-index: 20;
    max-width: 900px;
    margin: 0 auto;
    border: 1px solid rgba(0,0,0,0.05);
}

.policy-content p {
    font-size: 1.05rem;
    color: #4a5568;
    margin-bottom: var(--spacing-md);
    line-height: 1.8;
}

.policy-content h3 {
    color: var(--primary-color);
    margin-top: var(--spacing-lg);
    font-size: 1.5rem;
    border-left: 4px solid var(--primary-color);
    padding-left: 15px;
}

.policy-content ul {
    margin-bottom: var(--spacing-md);
    padding-left: var(--spacing-lg);
}

.policy-content li {
    margin-bottom: 8px;
    color: #4a5568;
}

/* Contact Section - Redesigned (Purple Theme) */
.contact-section {
    padding: 100px 0;
    min-height: 60vh;
    display: flex;
    align-items: center;
    background-color: var(--white);
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-card {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 24px;
    padding: 50px 40px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(90, 24, 154, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(90, 24, 154, 0.4);
    border-color: rgba(255, 255, 255, 0.2);
}

.contact-icon-box {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--white);
    transition: all 0.4s ease;
    backdrop-filter: blur(5px);
}

.contact-card:hover .contact-icon-box {
    transform: scale(1.1) rotate(5deg);
    background: rgba(255, 255, 255, 0.25);
}

.contact-card h3 {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
    color: var(--white);
}

.contact-card p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

.btn-card {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    width: 100%;
    border: none;
    cursor: pointer;
    margin-top: auto;
}

.btn-whatsapp {
    background:var(--white);
    color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.btn-email {
    background: var(--white);
    color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-email:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.contact-icon-box i {
    font-size: 40px;
}

.error-page {
    min-height: 70vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: var(--spacing-xl);
    background: radial-gradient(circle at center, rgba(123, 44, 191, 0.1) 0%, rgba(255,255,255,0) 70%);
}

.error-page h1 {
    font-size: 8rem;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    margin-bottom: var(--spacing-xs);
    font-weight: 800;
}

.error-page h2 {
    font-size: 2rem;
    margin-bottom: var(--spacing-md);
    color: var(--text-color);
}

.error-page p {
    font-size: 1.2rem;
    color: var(--dark-gray);
    margin-bottom: var(--spacing-lg);
    max-width: 500px;
}

