/* ========================================
   ENTERPRISE LANDING PAGE - HIGH CONVERSION DESIGN
   Modern, Professional, Conversion-Optimized
   ======================================== */

:root {
    --primary: #00BFFF;
    --secondary: #FF1493;
    --accent: #FFD700;
    --black: #000000;
    --white: #ffffff;
    --gray-light: #f8f9fa;
    --gray-medium: #6c757d;
    --gray-dark: #343a40;
    --success: #28a745;
    --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-cta: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.2);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.3);
    --transition-fast: 0.2s ease;
    --transition-medium: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* ========================================
   NAVIGATION - STICKY, MODERN, CONVERSION-FOCUSED
   ======================================== */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-medium);
    padding: 1rem 0;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-md);
    padding: 0.5rem 0;
}

.navbar-brand img {
    height: 50px;
    width: auto;
    transition: transform var(--transition-medium);
}

.navbar-brand:hover img {
    transform: scale(1.05);
}

.navbar-nav .nav-link {
    font-weight: 600;
    color: var(--gray-dark) !important;
    margin: 0 0.5rem;
    padding: 0.5rem 1rem !important;
    border-radius: 8px;
    transition: all var(--transition-medium);
    position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary) !important;
    background: rgba(0, 191, 255, 0.1);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--gradient-cta);
    border-radius: 2px;
    transition: width var(--transition-medium), left var(--transition-medium);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: calc(100% - 2rem);
    left: 50%;
    transform: translateX(-50%);
}

/* CTA Button in Navbar */
.navbar-cta {
    margin-left: 1rem;
    padding: 0.6rem 1.5rem;
    background: var(--gradient-cta);
    color: var(--white) !important;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all var(--transition-medium);
    box-shadow: var(--shadow-md);
}

.navbar-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: var(--white) !important;
}

/* ========================================
   HERO SECTION - IMPACT & CONVERSION
   ======================================== */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    background: var(--gradient-primary);
    overflow: hidden;
    padding: 120px 20px 80px;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 1000px;
    animation: fadeInUp 1s ease-out;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-content .hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
    font-weight: 300;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-cta-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.hero-cta-primary {
    padding: 1rem 2.5rem;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 50px;
    background: var(--white);
    color: var(--primary);
    border: none;
    text-decoration: none;
    display: inline-block;
    transition: all var(--transition-medium);
    box-shadow: var(--shadow-lg);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
    background: var(--white);
    color: var(--secondary);
}

.hero-cta-secondary {
    padding: 1rem 2.5rem;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 50px;
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    text-decoration: none;
    display: inline-block;
    transition: all var(--transition-medium);
}

.hero-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    color: var(--white);
}

/* Trust Indicators */
.hero-trust {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.8s both;
}

.hero-trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.hero-trust-item i {
    font-size: 1.5rem;
    color: var(--accent);
}

.hero-trust-item span {
    font-weight: 600;
    font-size: 1.1rem;
}

/* ========================================
   FEATURES SECTION - BENEFIT-FOCUSED
   ======================================== */
.features {
    padding: 100px 0;
    background: var(--white);
}

.features-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.features-header h2 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1rem;
    color: var(--gray-dark);
    position: relative;
    display: inline-block;
}

.features-header h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 5px;
    background: var(--gradient-cta);
    border-radius: 3px;
}

.features-header p {
    font-size: 1.2rem;
    color: var(--gray-medium);
    margin-top: 2rem;
}

.feature-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all var(--transition-medium);
    height: 100%;
    border: 2px solid transparent;
    box-shadow: var(--shadow-sm);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.feature-card .feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--gradient-cta);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
    transition: all var(--transition-medium);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-card h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--gray-dark);
}

.feature-card p {
    font-size: 1rem;
    color: var(--gray-medium);
    line-height: 1.6;
}

.feature-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 1.5rem;
    transition: transform var(--transition-medium);
}

.feature-card:hover .feature-image {
    transform: scale(1.05);
}

/* ========================================
   PRODUCT SHOWCASE - INTERACTIVE & DYNAMIC
   ======================================== */
.products-showcase {
    padding: 100px 0;
    background: var(--gray-light);
}

.products-showcase-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.products-showcase-header h2 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1rem;
    color: var(--gray-dark);
    position: relative;
    display: inline-block;
}

.products-showcase-header h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 5px;
    background: var(--gradient-cta);
    border-radius: 3px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.product-card-modern {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    transition: all var(--transition-medium);
    box-shadow: var(--shadow-sm);
    position: relative;
    cursor: pointer;
}

.product-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-cta);
    opacity: 0;
    transition: opacity var(--transition-medium);
    z-index: 1;
}

.product-card-modern:hover::before {
    opacity: 0.1;
}

.product-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.product-card-image {
    position: relative;
    overflow: hidden;
    height: 300px;
    background: var(--gray-light);
}

.product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.product-card-modern:hover .product-card-image img {
    transform: scale(1.1);
}

.product-card-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--accent);
    color: var(--black);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    z-index: 2;
    box-shadow: var(--shadow-md);
}

.product-card-content {
    padding: 1.5rem;
    position: relative;
    z-index: 2;
}

.product-card-content h5 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--gray-dark);
}

.product-card-content p {
    font-size: 0.95rem;
    color: var(--gray-medium);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.product-card-cta {
    width: 100%;
    padding: 0.8rem 1.5rem;
    background: var(--gradient-cta);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all var(--transition-medium);
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.product-card-cta:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-md);
    color: var(--white);
}

/* ========================================
   THEMES SECTION - VISUAL SHOWCASE
   ======================================== */
.themes {
    padding: 100px 0;
    background: var(--white);
}

.themes-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.themes-header h2 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1rem;
    color: var(--gray-dark);
    position: relative;
    display: inline-block;
}

.themes-header h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 5px;
    background: var(--gradient-cta);
    border-radius: 3px;
}

.theme-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.theme-card-modern {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    height: 400px;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-medium);
}

.theme-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.theme-card-modern img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.theme-card-modern:hover img {
    transform: scale(1.15);
}

.theme-overlay-modern {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    padding: 2rem;
    color: var(--white);
    transform: translateY(100%);
    transition: transform var(--transition-medium);
}

.theme-card-modern:hover .theme-overlay-modern {
    transform: translateY(0);
}

.theme-overlay-modern h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.theme-overlay-modern p {
    font-size: 1rem;
    opacity: 0.9;
}

/* ========================================
   STATS SECTION - SOCIAL PROOF
   ======================================== */
.stats-section {
    padding: 80px 0;
    background: var(--gradient-primary);
    color: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    text-align: center;
}

.stat-item {
    padding: 2rem;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--accent);
    display: block;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.2rem;
    font-weight: 600;
    opacity: 0.95;
}

/* ========================================
   CTA SECTIONS - CONVERSION OPTIMIZED
   ======================================== */
.cta-section {
    padding: 100px 0;
    background: var(--gradient-cta);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.cta-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.cta-content p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.cta-button-large {
    padding: 1.2rem 3rem;
    font-size: 1.3rem;
    font-weight: 700;
    background: var(--white);
    color: var(--primary);
    border: none;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    transition: all var(--transition-medium);
    box-shadow: var(--shadow-xl);
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: pulseButton 2s ease-in-out infinite;
}

@keyframes pulseButton {
    0%, 100% {
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }
    50% {
        box-shadow: 0 15px 40px rgba(255, 255, 255, 0.5);
    }
}

.cta-button-large:hover {
    transform: translateY(-5px) scale(1.05);
    color: var(--secondary);
    box-shadow: var(--shadow-xl);
}

/* Floating CTA Button - Moved to left side */
.floating-cta {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 70px;
    height: 70px;
    background: var(--success);
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-xl);
    z-index: 1000;
    transition: all var(--transition-medium);
    cursor: pointer;
    animation: bounce 2s ease-in-out infinite;
    text-decoration: none;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.floating-cta:hover {
    background: #25d366;
    transform: scale(1.1);
    box-shadow: 0 15px 50px rgba(40, 167, 69, 0.5);
}

.floating-cta i {
    font-size: 2rem;
    color: var(--white);
}

/* ========================================
   CONTACT SECTION - CONVERSION FOCUSED
   ======================================== */
.contact {
    padding: 100px 0;
    background: var(--gray-light);
}

.contact-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.contact-header h2 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1rem;
    color: var(--gray-dark);
    position: relative;
    display: inline-block;
}

.contact-header h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 5px;
    background: var(--gradient-cta);
    border-radius: 3px;
}

.contact-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.contact-content p {
    font-size: 1.2rem;
    color: var(--gray-medium);
    margin-bottom: 2rem;
}

.whatsapp-cta {
    padding: 1.2rem 3rem;
    font-size: 1.3rem;
    font-weight: 700;
    background: var(--success);
    color: var(--white);
    border: none;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    transition: all var(--transition-medium);
    box-shadow: var(--shadow-lg);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.whatsapp-cta:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
    background: #25d366;
    color: var(--white);
}

.whatsapp-cta i {
    font-size: 1.8rem;
}

/* ========================================
   PROCESS SECTION - HOW IT WORKS
   ======================================== */
.process-section {
    padding: 100px 0;
    background: var(--white);
}

.process-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.process-header h2 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1rem;
    color: var(--gray-dark);
    position: relative;
    display: inline-block;
    white-space: nowrap;
}

.process-header h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 5px;
    background: var(--gradient-cta);
    border-radius: 3px;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 4rem;
    width: 100%;
}

.process-step {
    text-align: center;
    position: relative;
    padding: 2rem;
}

.process-step-number {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--gradient-cta);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.process-step h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--gray-dark);
}

.process-step p {
    font-size: 1rem;
    color: var(--gray-medium);
    line-height: 1.6;
}

.process-step::after {
    content: '←'; /* RTL: Reversed arrow for Arabic */
    position: absolute;
    top: 40px;
    left: -30px; /* RTL: Arrow on left side */
    font-size: 3rem;
    color: var(--primary);
    opacity: 0.5;
}

.process-step:last-child::after {
    display: none; /* RTL: Hide arrow before first step */
}

/* ========================================
   TESTIMONIALS SECTION - SOCIAL PROOF
   ======================================== */
.testimonials-section {
    padding: 100px 0;
    background: var(--gray-light);
}

.testimonials-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.testimonials-header h2 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1rem;
    color: var(--gray-dark);
    position: relative;
    display: inline-block;
}

.testimonials-header h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 5px;
    background: var(--gradient-cta);
    border-radius: 3px;
}

.testimonial-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-medium);
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.testimonial-rating {
    color: var(--accent);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--gray-medium);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient-cta);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 1.5rem;
}

.testimonial-author-info h5 {
    font-weight: 700;
    color: var(--gray-dark);
    margin-bottom: 0.25rem;
}

.testimonial-author-info small {
    color: var(--gray-medium);
}

/* ========================================
   ANIMATIONS
   ======================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out both;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .hero-cta-group {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-cta-primary,
    .hero-cta-secondary {
        width: 100%;
        max-width: 300px;
    }
    
    .process-step::after {
        display: none;
    }
    
    .navbar-cta {
        margin-left: 0;
        margin-top: 1rem;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: 70vh;
        padding: 100px 20px 60px;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .features-header h2,
    .products-showcase-header h2,
    .themes-header h2,
    .contact-header h2,
    .process-header h2,
    .testimonials-header h2 {
        font-size: 2.2rem;
        white-space: nowrap;
    }
    
    .product-grid,
    .theme-grid {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .cta-content h2 {
        font-size: 2.5rem;
    }
    
    .cta-button-large {
        padding: 1rem 2rem;
        font-size: 1.1rem;
    }
    
    .floating-cta {
        width: 60px;
        height: 60px;
        bottom: 20px;
        left: 20px;
    }
    
    .floating-cta i {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-cta-primary,
    .hero-cta-secondary {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
    
    .features-header h2,
    .products-showcase-header h2,
    .themes-header h2,
    .contact-header h2,
    .process-header h2,
    .testimonials-header h2 {
        font-size: 1.8rem;
        white-space: nowrap;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
}

/* ========================================
   PERFORMANCE OPTIMIZATIONS
   ======================================== */
.hero-content,
.feature-card,
.product-card-modern,
.theme-card-modern,
.testimonial-card {
    will-change: transform;
}

img {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

/* Lazy Loading Placeholder */
.lazy-load-placeholder {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s ease-in-out infinite;
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

