/* ==========================================
   MODERN HOMEPAGE STYLES - MOBILE FIRST
   ========================================== */

/* CSS Variables for Modern Design */
:root {
    --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --secondary-gradient: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --blue-gradient: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --purple-gradient: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
    --orange-gradient: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
    --green-gradient: linear-gradient(135deg, #30cfd0 0%, #330867 100%);
    --pink-gradient: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
    --red-gradient: linear-gradient(135deg, #ff9a9e 0%, #fecfef 100%);
    
    --text-dark: #1a202c;
    --text-light: #718096;
    --white: #ffffff;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.25);
    
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    overflow: hidden;
    padding: 80px 20px 60px;
}

/* Animated Background Particles */
.hero-animated-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.4;
    animation: float-particles 20s infinite ease-in-out;
}

.particle:nth-child(1) {
    background: rgba(255, 255, 255, 0.3);
    top: -100px;
    left: -100px;
    animation-delay: 0s;
}

.particle:nth-child(2) {
    background: rgba(102, 126, 234, 0.4);
    top: 50%;
    right: -150px;
    animation-delay: -5s;
}

.particle:nth-child(3) {
    background: rgba(244, 107, 166, 0.3);
    bottom: -100px;
    left: 20%;
    animation-delay: -10s;
}

.particle:nth-child(4) {
    background: rgba(255, 255, 255, 0.2);
    top: 20%;
    right: 30%;
    width: 200px;
    height: 200px;
    animation-delay: -15s;
}

.particle:nth-child(5) {
    background: rgba(118, 75, 162, 0.3);
    bottom: 20%;
    left: 40%;
    width: 250px;
    height: 250px;
    animation-delay: -7s;
}

@keyframes float-particles {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }
    33% {
        transform: translate(50px, -50px) rotate(120deg) scale(1.1);
    }
    66% {
        transform: translate(-30px, 40px) rotate(240deg) scale(0.9);
    }
}

/* Gradient Mesh Overlay */
.hero-gradient-mesh {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(102, 126, 234, 0.2) 0%, transparent 50%);
    z-index: 2;
}

/* Hero Container */
.hero-container {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-content-wrapper {
    text-align: center;
    color: var(--white);
}

/* Floating Badge */
.hero-floating-badge {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 30px;
    animation: float-badge 3s ease-in-out infinite;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.badge-glow {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    border-radius: 50px;
    animation: rotate-glow 3s linear infinite;
    z-index: -1;
}

@keyframes float-badge {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes rotate-glow {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.hero-floating-badge i {
    color: #ffd700;
    font-size: 18px;
    animation: pulse-star 2s ease-in-out infinite;
}

@keyframes pulse-star {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
}

/* Main Title */
.hero-main-title {
    font-size: clamp(32px, 8vw, 64px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease-out;
}

.text-gradient-animated {
    background: linear-gradient(90deg, #fff, #ffd700, #fff);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 3s ease-in-out infinite;
}

@keyframes gradient-shift {
    0%, 100% {
        background-position: 0% center;
    }
    50% {
        background-position: 100% center;
    }
}

/* Subtitle */
.hero-subtitle {
    font-size: clamp(16px, 4vw, 22px);
    line-height: 1.6;
    margin-bottom: 40px;
    opacity: 0.95;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.highlight-text {
    position: relative;
    font-weight: 700;
    color: #ffd700;
}

.highlight-text::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 3px;
    background: #ffd700;
    animation: underline-expand 1s ease-out 0.5s both;
}

@keyframes underline-expand {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

/* Trust Badges */
.hero-trust-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 40px;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    font-size: 14px;
    transition: var(--transition-base);
}

.trust-badge:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.trust-badge i {
    color: #ffd700;
    font-size: 18px;
}

/* CTA Buttons */
.hero-cta-group {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.btn-hero {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all var(--transition-base);
    overflow: hidden;
    border: 2px solid transparent;
}

.btn-primary-glow {
    background: rgba(255, 255, 255, 0.95);
    color: #667eea;
    box-shadow: 0 10px 40px rgba(255, 255, 255, 0.3);
}

.btn-primary-glow:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 50px rgba(255, 255, 255, 0.5);
    background: #fff;
}

.btn-shine {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: rotate-shine 3s linear infinite;
    opacity: 0;
    transition: opacity var(--transition-base);
}

.btn-primary-glow:hover .btn-shine {
    opacity: 1;
}

@keyframes rotate-shine {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.btn-glass-modern {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
}

.btn-glass-modern:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: -70px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: bounce-slow 2s ease-in-out infinite;
}

.scroll-mouse {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    position: relative;
}

.scroll-wheel {
    width: 4px;
    height: 8px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-wheel 2s ease-in-out infinite;
}

@keyframes scroll-wheel {
    0%, 100% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    50% {
        opacity: 0;
        transform: translateX(-50%) translateY(10px);
    }
}

@keyframes bounce-slow {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(10px);
    }
}

/* ==========================================
   FEATURES SECTION
   ========================================== */
.features-modern-section {
    padding: 80px 20px;
    background: linear-gradient(180deg, #f7fafc 0%, #ffffff 100%);
}

.container-fluid {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header-modern {
    text-align: center;
    margin-bottom: 60px;
}

.section-label {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    margin-bottom: 16px;
}

.section-label.light {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.section-title-modern {
    font-size: clamp(28px, 6vw, 48px);
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-title-modern.light {
    color: var(--white);
}

.section-description-modern {
    font-size: clamp(16px, 3vw, 18px);
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Features Cards Grid */
.features-card-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.feature-card-3d {
    position: relative;
    perspective: 1000px;
    transition: var(--transition-base);
}

.card-3d-inner {
    position: relative;
    padding: 40px 30px;
    background: var(--white);
    border-radius: 24px;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    overflow: hidden;
}

.feature-card-3d:hover .card-3d-inner {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.card-shine {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    transform: rotate(45deg);
    transition: var(--transition-slow);
    opacity: 0;
}

.feature-card-3d:hover .card-shine {
    opacity: 1;
    animation: shine-sweep 1.5s ease-in-out;
}

@keyframes shine-sweep {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

.feature-icon-circle {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 24px;
    position: relative;
    animation: float-icon 3s ease-in-out infinite;
}

@keyframes float-icon {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.gradient-purple {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.gradient-blue {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.gradient-pink {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.gradient-orange {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

.gradient-green {
    background: linear-gradient(135deg, #30cfd0 0%, #330867 100%);
}

.gradient-red {
    background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 100%);
}

.feature-icon-circle i {
    font-size: 36px;
    color: var(--white);
    z-index: 2;
}

.feature-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
    text-align: center;
}

.feature-description {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.6;
    text-align: center;
    margin-bottom: 20px;
}

.feature-metric {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: #667eea;
}

.metric-icon i {
    color: #667eea;
}

/* ==========================================
   SERVICES SECTION
   ========================================== */
.services-interactive-section {
    padding: 80px 20px;
    background: var(--white);
}

.services-showcase-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.service-card-interactive {
    position: relative;
    padding: 40px 30px;
    background: var(--white);
    border: 2px solid #f0f0f0;
    border-radius: 24px;
    transition: all var(--transition-base);
    overflow: hidden;
}

.service-card-interactive::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-base);
}

.service-card-interactive:hover::before {
    transform: scaleX(1);
}

.service-card-interactive:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: #667eea;
}

.service-icon-wrapper {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto 24px;
}

.icon-pulse-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid #667eea;
    animation: pulse-ring 2s ease-out infinite;
    opacity: 0;
}

@keyframes pulse-ring {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

.service-icon-large {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: var(--shadow-lg);
}

.service-icon-large i {
    font-size: 40px;
    color: var(--white);
}

.service-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
    text-align: center;
}

.service-text {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.6;
    text-align: center;
    margin-bottom: 24px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #667eea;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-base);
    margin: 0 auto;
    width: fit-content;
    display: flex;
    justify-content: center;
}

.service-link:hover {
    gap: 12px;
    color: #764ba2;
}

.service-link i {
    transition: var(--transition-base);
}

.service-link:hover i {
    transform: translateX(4px);
}

/* ==========================================
   STATS SECTION
   ========================================== */
.stats-showcase-section {
    position: relative;
    padding: 80px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    overflow: hidden;
}

.stats-background-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.5;
}

.stats-content-wrapper {
    position: relative;
    z-index: 2;
}

.stats-header {
    text-align: center;
    margin-bottom: 60px;
    color: var(--white);
}

.stats-description {
    font-size: 16px;
    line-height: 1.6;
    opacity: 0.95;
    max-width: 700px;
    margin: 20px auto 0;
}

.stats-cards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.stat-card-modern {
    padding: 40px 30px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    text-align: center;
    transition: all var(--transition-base);
}

.stat-card-modern:hover {
    transform: translateY(-10px) scale(1.05);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.stat-icon-bg {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 24px;
}

.stat-icon-bg i {
    font-size: 36px;
    color: var(--white);
}

.stat-number {
    font-size: clamp(40px, 8vw, 56px);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.stat-label {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 16px;
}

.stat-progress {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: var(--white);
    border-radius: 10px;
    animation: fill-progress 2s ease-out;
}

@keyframes fill-progress {
    from {
        width: 0;
    }
}

/* ==========================================
   WHY CHOOSE TIMELINE SECTION
   ========================================== */
.why-choose-timeline-section {
    padding: 80px 20px;
    background: linear-gradient(180deg, #ffffff 0%, #f7fafc 100%);
}

.timeline-wrapper {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 0;
}

.timeline-line {
    position: absolute;
    left: 20px;
    top: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #667eea 0%, #764ba2 100%);
    border-radius: 4px;
}

.timeline-item {
    position: relative;
    padding-left: 60px;
    margin-bottom: 60px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-number {
    position: absolute;
    left: 0;
    top: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--white);
    font-size: 18px;
    font-weight: 800;
    border-radius: 50%;
    box-shadow: 0 0 0 8px rgba(102, 126, 234, 0.1);
    z-index: 2;
}

.timeline-card {
    padding: 32px;
    background: var(--white);
    border-radius: 24px;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
}

.timeline-card:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-xl);
}

.timeline-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    margin-bottom: 20px;
}

.timeline-icon i {
    font-size: 28px;
    color: var(--white);
}

.timeline-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.timeline-description {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 20px;
}

.timeline-benefits {
    list-style: none;
    padding: 0;
    margin: 0;
}

.timeline-benefits li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    font-size: 14px;
    color: var(--text-light);
}

.timeline-benefits i {
    color: #667eea;
    font-size: 16px;
}

.timeline-item-reverse .timeline-card {
    margin-left: 20px;
}

/* ==========================================
   TESTIMONIALS SECTION
   ========================================== */

.rating-badge-modern,
.students-badge-modern {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    border: 1px solid #667eea;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: #667eea;
}

.rating-badge-modern i,
.students-badge-modern i {
    color: #ffd700;
}

.testimonials-slider {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card-premium {
    position: relative;
    padding: 40px 30px;
    background: var(--white);
    border: 2px solid #f0f0f0;
    border-radius: 24px;
    transition: all var(--transition-base);
    overflow: hidden;
}

.testimonial-card-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.testimonial-card-premium:hover::before {
    opacity: 1;
}

.testimonial-card-premium:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: #667eea;
}

.testimonial-quote-mark {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    opacity: 0.1;
}

.testimonial-quote-mark i {
    font-size: 24px;
    color: var(--white);
}

.testimonial-rating-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
}

.testimonial-rating-stars i {
    color: #ffd700;
    font-size: 18px;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 24px;
    font-style: italic;
    position: relative;
    z-index: 2;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
    position: relative;
    z-index: 2;
}

.author-avatar {
    position: relative;
    width: 60px;
    height: 60px;
    flex-shrink: 0;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--white);
}

.avatar-ring {
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border: 2px solid #667eea;
    border-radius: 50%;
    animation: rotate-ring 3s linear infinite;
}

@keyframes rotate-ring {
    0% {
        transform: rotate(0deg);
        border-color: #667eea;
    }
    50% {
        border-color: #764ba2;
    }
    100% {
        transform: rotate(360deg);
        border-color: #667eea;
    }
}

.author-info {
    flex: 1;
}

.author-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.author-role {
    font-size: 14px;
    color: var(--text-light);
}

/* ==========================================
   FINAL CTA SECTION
   ========================================== */
.final-cta-premium-section {
    position: relative;
    padding: 100px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    overflow: hidden;
}

.cta-animated-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.cta-particle {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    filter: blur(40px);
    animation: float-cta-particle 15s infinite ease-in-out;
}

.cta-particle:nth-child(1) {
    top: -100px;
    left: -100px;
    animation-delay: 0s;
}

.cta-particle:nth-child(2) {
    top: 50%;
    right: -100px;
    animation-delay: -5s;
}

.cta-particle:nth-child(3) {
    bottom: -100px;
    left: 30%;
    animation-delay: -10s;
}

@keyframes float-cta-particle {
    0%, 100% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(30px, -30px);
    }
}

.cta-content-premium {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    color: var(--white);
}

.cta-icon-large-animated {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-orbit {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 140%;
    height: 140%;
    border: 2px dashed rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: rotate-orbit 20s linear infinite;
}

.icon-orbit::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    width: 12px;
    height: 12px;
    background: var(--white);
    border-radius: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.8);
}

@keyframes rotate-orbit {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.cta-icon-large-animated i {
    font-size: 60px;
    color: var(--white);
    animation: pulse-icon 2s ease-in-out infinite;
}

@keyframes pulse-icon {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.cta-title {
    font-size: clamp(28px, 6vw, 48px);
    font-weight: 800;
    margin-bottom: 16px;
    line-height: 1.2;
}

.cta-subtitle {
    font-size: clamp(16px, 3vw, 20px);
    line-height: 1.6;
    opacity: 0.95;
    margin-bottom: 40px;
}

.cta-action-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-cta-primary,
.btn-cta-secondary {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 36px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all var(--transition-base);
    overflow: hidden;
}

.btn-cta-primary {
    background: var(--white);
    color: #667eea;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.btn-cta-primary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 60px rgba(0, 0, 0, 0.4);
}

.btn-ripple {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(102, 126, 234, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-cta-primary:hover .btn-ripple {
    width: 300px;
    height: 300px;
}

.btn-cta-secondary {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
}

.btn-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

/* ==========================================
   ANIMATIONS
   ========================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ==========================================
   RESPONSIVE - TABLET
   ========================================== */
@media (min-width: 768px) {
    .hero-section {
        padding: 120px 40px 80px;
    }

    .hero-floating-badge {
        font-size: 15px;
        padding: 14px 28px;
    }

    .trust-badge {
        font-size: 15px;
        padding: 14px 24px;
    }

    .btn-hero {
        padding: 18px 36px;
        font-size: 17px;
    }

    .features-card-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .services-showcase-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .stats-cards-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }

    .testimonials-slider {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .timeline-line {
        left: 50%;
        transform: translateX(-50%);
    }

    .timeline-item {
        width: 50%;
        padding-left: 0;
        padding-right: 60px;
    }

    .timeline-item-reverse {
        margin-left: 50%;
        padding-right: 0;
        padding-left: 60px;
    }

    .timeline-number {
        left: auto;
        right: -22px;
    }

    .timeline-item-reverse .timeline-number {
        right: auto;
        left: -22px;
    }

    .cta-action-buttons {
        gap: 20px;
    }
}

/* ==========================================
   RESPONSIVE - DESKTOP
   ========================================== */
@media (min-width: 1024px) {
    .hero-section {
        padding: 140px 60px 100px;
    }

    .features-card-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .services-showcase-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .features-modern-section,
    .services-interactive-section,
    .stats-showcase-section,
    .why-choose-timeline-section,
    .testimonials-carousel-section {
        padding: 100px 60px;
    }

    .section-header-modern {
        margin-bottom: 80px;
    }

    .hero-trust-badges {
        gap: 24px;
    }

    .hero-cta-group {
        gap: 20px;
    }
}

/* ==========================================
   ACCESSIBILITY
   ========================================== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus Styles for Accessibility */
.btn-hero:focus,
.btn-cta-primary:focus,
.btn-cta-secondary:focus,
.service-link:focus {
    outline: 3px solid #ffd700;
    outline-offset: 4px;
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    .hero-section,
    .stats-showcase-section,
    .final-cta-premium-section {
        background: #000;
        color: #fff;
    }

    .feature-card-3d,
    .service-card-interactive,
    .testimonial-card-premium,
    .timeline-card {
        border: 2px solid #fff;
    }
}

/* Print Styles */
@media print {
    .hero-animated-bg,
    .hero-particles,
    .cta-animated-bg,
    .scroll-indicator {
        display: none;
    }

    .hero-section,
    .stats-showcase-section,
    .final-cta-premium-section {
        background: #fff;
        color: #000;
    }
}

/* ==========================================
   UTILITY CLASSES
   ========================================== */
.text-center {
    text-align: center;
}

.mb-0 {
    margin-bottom: 0;
}

.mt-4 {
    margin-top: 24px;
}

.hidden {
    display: none;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}