/* ===== RESET & BASE STYLES ===== */
html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'Inter', sans-serif;
    min-height: 100vh;
    overflow-x: hidden;
    width: 100%;
    position: relative;
    color: #ffffff;
}

/* ===== CUSTOM SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #1a1a1a;
}

::-webkit-scrollbar-thumb {
    background: #333333;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #444444;
}

/* ===== VIDEO BACKGROUND ===== */
.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    overflow: hidden;
}

.video-background video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    object-fit: cover;
    filter: brightness(0.4) contrast(1.2);
}

/* ===== OVERLAY ===== */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 0%, rgba(0,0,0,0.7) 100%);
    z-index: -1;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes twinkle {
    0%, 100% { opacity: 0.2; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); }
}

@keyframes float-particle {
    from {
        transform: translateY(100vh) translateX(0);
        opacity: 0;
    }
    to {
        transform: translateY(-100vh) translateX(100px);
        opacity: 0.8;
    }
}

/* ===== SECTION HEADER ===== */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    background: linear-gradient(135deg, #ffffff 0%, #9c27b0 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #9c27b0, transparent);
    border-radius: 2px;
}

.section-header p {
    color: #b0b0b0;
    font-size: clamp(1rem, 2vw, 1.2rem);
    max-width: 600px;
    margin: 0 auto;
    padding: 0 1rem;
}

.section-header .highlight {
    color: #9c27b0;
    font-weight: 600;
}

/* ===== CONTAINER ===== */
.container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ===== HERO SECTION ===== */
.hero-section {
    position: relative;
    min-height: 100vh;
    width: 100%;
    overflow-x: hidden;
    display: flex;
    align-items: center;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    position: relative;
    overflow: visible;
    z-index: 1;
    width: 100%;
}

.hero-content {
    max-width: 1400px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 3;
    margin: 0 auto;
}

/* Hero Text */
.hero-text {
    color: #ffffff;
    animation: fadeInUp 1s ease-out;
    text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.hero-text h1 {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #a0a0a0 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 2px 20px rgba(0,0,0,0.5);
    position: relative;
}

.hero-text h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #ffffff, transparent);
    border-radius: 2px;
    box-shadow: 0 0 20px rgba(255,255,255,0.5);
}

.hero-text p {
    font-size: clamp(1rem, 2vw, 1.25rem);
    line-height: 1.6;
    margin-bottom: 2.5rem;
    color: #e0e0e0;
    max-width: 600px;
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    padding: 1rem 2.5rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(5px);
}

.btn-primary {
    background: rgba(255, 255, 255, 0.9);
    color: #000000;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255,255,255,0.2);
    background: #ffffff;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255,255,255,0.4);
    transform: translateY(-2px);
}

.btn-primary i, .btn-secondary i {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.btn-primary:hover i, .btn-secondary:hover i {
    transform: translateX(5px);
}

/* Stats Section (Reusable) */
.stats-container {
    margin-top: 3rem;
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.stat-item {
    text-align: center;
    position: relative;
    background: rgba(156, 39, 176, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(156, 39, 176, 0.3);
    border-radius: 15px;
    padding: 1.5rem 2rem;
    box-shadow: 0 10px 30px rgba(156, 39, 176, 0.2);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    border-color: rgba(156, 39, 176, 0.5);
    box-shadow: 0 15px 40px rgba(156, 39, 176, 0.4);
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -1.25rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 40px;
    background: rgba(156, 39, 176, 0.3);
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #9c27b0;
    margin-bottom: 0.25rem;
}

.stat-label {
    color: #9c27b0;
    font-size: 0.9rem;
    letter-spacing: 1px;
    opacity: 0.8;
}

/* Home Stats Section (above testimonials) */
.home-stats-section {
    padding: 4rem 0;
    background: rgba(0, 0, 0, 0.45);
    border-top: 1px solid rgba(156, 39, 176, 0.2);
    border-bottom: 1px solid rgba(156, 39, 176, 0.2);
    width: 100%;
}

/* 3D Model */
.hero-empty {
    position: relative;
    animation: fadeInRight 1s ease-out 0.3s both;
}

.hero-modal {
    background: rgba(156, 39, 176, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 30px;
    padding: 1.5rem;
    box-shadow: 0 20px 40px rgba(156, 39, 176, 0.3),
               0 0 0 1px rgba(156, 39, 176, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(156, 39, 176, 0.3);
}

.hero-modal:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 60px rgba(156, 39, 176, 0.5),
               0 0 0 1px rgba(156, 39, 176, 0.4);
}

model-viewer {
    width: 100%;
    height: 450px;
    border-radius: 20px;
    --progress-bar-color: #ffffff;
    --poster-color: transparent;
}

.hero-modal::before {
    content: 'Loading 3D Model...';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #b0b0b0;
    font-size: 0.9rem;
    opacity: 0.5;
    pointer-events: none;
    z-index: -1;
}

/* Floating badges */
.floating-badge {
    position: absolute;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    color: #ffffff;
    font-weight: 500;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid rgba(255,255,255,0.2);
    animation: float 3s ease-in-out infinite;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.badge-1 { top: 20%; right: -20px; }
.badge-2 { bottom: 20%; left: -20px; animation-delay: 1.5s; }
.badge-3 { top: 50%; right: -30px; animation-delay: 0.7s; }

.badge-icon {
    width: 30px;
    height: 30px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    border: 1px solid rgba(255,255,255,0.3);
}

/* Glow effect */
.glow-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 70%);
    filter: blur(40px);
    z-index: -1;
}

/* Animated stars */
.stars {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.star {
    position: absolute;
    background: white;
    border-radius: 50%;
    animation: twinkle 3s infinite;
}

/* Floating particles */
.particles {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: rgba(255,255,255,0.3);
    border-radius: 50%;
    animation: float-particle 15s linear infinite;
}

/* ===== PRICING SECTION ===== */
.pricing-section {
    padding: 5rem 0;
    background: rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 1;
    min-height: 100vh;
    width: 100%;
}

.pricing-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(156, 39, 176, 0.2);
    border-radius: 30px;
    padding: 2rem 1.5rem;
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(156, 39, 176, 0.2);
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.3s ease;
}

.pricing-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: rgba(156, 39, 176, 0.5);
    box-shadow: 0 20px 40px rgba(156, 39, 176, 0.4),
                0 0 0 1px rgba(156, 39, 176, 0.3);
}

.pricing-card.featured {
    background: rgba(156, 39, 176, 0.1);
    border: 1px solid rgba(156, 39, 176, 0.4);
    transform: scale(1.05);
    z-index: 3;
    box-shadow: 0 15px 40px rgba(156, 39, 176, 0.4);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
    box-shadow: 0 25px 50px rgba(156, 39, 176, 0.6);
}

.pricing-card.featured.visible {
    transform: scale(1.05);
}

.pricing-card.featured.visible:hover {
    transform: scale(1.05) translateY(-10px);
}

.featured-badge {
    position: absolute;
    top: 1.5rem;
    right: -2rem;
    background: linear-gradient(135deg, #9c27b0, #6a1b9a);
    color: #fff;
    padding: 0.5rem 3rem;
    font-size: 0.9rem;
    font-weight: 600;
    transform: rotate(45deg);
    box-shadow: 0 5px 15px rgba(156, 39, 176, 0.5);
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(156, 39, 176, 0.1), transparent);
    transition: left 0.7s ease;
}

.pricing-card:hover::before {
    left: 100%;
}

.card-header {
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
}

.card-icon {
    width: 70px;
    height: 70px;
    background: rgba(156, 39, 176, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    border: 1px solid rgba(156, 39, 176, 0.3);
    font-size: 2rem;
    color: #9c27b0;
    transition: all 0.3s ease;
}

.pricing-card:hover .card-icon {
    background: rgba(156, 39, 176, 0.2);
    transform: scale(1.1) rotate(360deg);
    box-shadow: 0 0 30px rgba(156, 39, 176, 0.5);
}

.card-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.card-header .subtitle {
    color: #b0b0b0;
    font-size: 0.9rem;
}

.price {
    text-align: center;
    margin-bottom: 2rem;
    padding: 1rem 0;
    border-top: 1px solid rgba(156, 39, 176, 0.2);
    border-bottom: 1px solid rgba(156, 39, 176, 0.2);
}

.price .amount {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ffffff 0%, #9c27b0 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}

.price .period {
    color: #b0b0b0;
    font-size: 1rem;
    display: block;
    margin-top: 0.5rem;
}

.features {
    list-style: none;
    margin-bottom: 2rem;
}

.features li {
    color: #e0e0e0;
    padding: 0.75rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border-bottom: 1px solid rgba(156, 39, 176, 0.1);
}

.features li:last-child {
    border-bottom: none;
}

.features li i {
    color: #9c27b0;
    font-size: 1.1rem;
    width: 20px;
    flex-shrink: 0;
}

.features li.disabled {
    color: #505050;
}

.features li.disabled i {
    color: #404040;
}

.btn-pricing {
    display: inline-block;
    width: 100%;
    padding: 1rem;
    background: transparent;
    border: 1px solid rgba(156, 39, 176, 0.4);
    color: #ffffff;
    text-decoration: none;
    text-align: center;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(5px);
}

.btn-pricing::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    background: rgba(156, 39, 176, 0.2);
    border-radius: 50%;
    transition: width 0.6s, height 0.6s;
}

.btn-pricing:hover::before {
    width: 300px;
    height: 300px;
}

.btn-pricing span {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-pricing:hover {
    border-color: #9c27b0;
    box-shadow: 0 0 30px rgba(156, 39, 176, 0.5);
    transform: translateY(-2px);
}

.btn-pricing.featured {
    background: linear-gradient(135deg, #9c27b0, #6a1b9a);
    border: none;
    color: #ffffff;
    font-weight: 700;
}

.btn-pricing.featured:hover {
    box-shadow: 0 0 40px rgba(156, 39, 176, 0.7);
}

/* ===== ABOUT SECTION ===== */
.about-section {
    padding: 5rem 0;
    background: rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
    min-height: 100vh;
    width: 100%;
}

/* Vision Mission Cards */
.vm-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.vm-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(156, 39, 176, 0.2);
    border-radius: 30px;
    padding: 2.5rem;
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(156, 39, 176, 0.2);
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.3s ease;
}

.vm-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.vm-card:hover {
    transform: translateY(-10px);
    border-color: rgba(156, 39, 176, 0.5);
    box-shadow: 0 20px 40px rgba(156, 39, 176, 0.4),
                0 0 0 1px rgba(156, 39, 176, 0.3);
}

.vm-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(156, 39, 176, 0.1), transparent);
    transition: left 0.7s ease;
}

.vm-card:hover::before {
    left: 100%;
}

.vm-icon {
    width: 100px;
    height: 100px;
    background: rgba(156, 39, 176, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    border: 2px solid rgba(156, 39, 176, 0.3);
    font-size: 3rem;
    color: #9c27b0;
    transition: all 0.3s ease;
}

.vm-card:hover .vm-icon {
    background: rgba(156, 39, 176, 0.2);
    transform: scale(1.1) rotate(360deg);
    box-shadow: 0 0 40px rgba(156, 39, 176, 0.6);
}

.vm-card h3 {
    font-size: 2.2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ffffff 0%, #9c27b0 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
}

.vm-card p {
    color: #e0e0e0;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.vm-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(156, 39, 176, 0.2);
}

/* Introduction Card */
.intro-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.intro-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(156, 39, 176, 0.2);
    border-radius: 30px;
    padding: 3rem;
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(156, 39, 176, 0.2);
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: center;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.3s ease;
}

.intro-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.intro-card:hover {
    transform: translateY(-10px);
    border-color: rgba(156, 39, 176, 0.5);
    box-shadow: 0 20px 40px rgba(156, 39, 176, 0.4),
                0 0 0 1px rgba(156, 39, 176, 0.3);
}

.intro-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(156, 39, 176, 0.1), transparent);
    transition: left 0.7s ease;
}

.intro-card:hover::before {
    left: 100%;
}

.intro-left {
    text-align: center;
}

.intro-icon {
    width: 150px;
    height: 150px;
    background: rgba(156, 39, 176, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    border: 2px solid rgba(156, 39, 176, 0.3);
    font-size: 4rem;
    color: #9c27b0;
    transition: all 0.3s ease;
}

.intro-card:hover .intro-icon {
    background: rgba(156, 39, 176, 0.2);
    transform: scale(1.1) rotate(360deg);
    box-shadow: 0 0 50px rgba(156, 39, 176, 0.7);
}

.intro-left h3 {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ffffff 0%, #9c27b0 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
}

.intro-left .badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(156, 39, 176, 0.2);
    border: 1px solid rgba(156, 39, 176, 0.3);
    border-radius: 50px;
    color: #9c27b0;
    font-weight: 600;
    font-size: 0.9rem;
}

.intro-right p {
    color: #e0e0e0;
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.features-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #ffffff;
}

.feature-item i {
    color: #9c27b0;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.intro-footer {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.intro-footer .btn-primary {
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #9c27b0, #6a1b9a);
    border: none;
    border-radius: 12px;
    color: #ffffff;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.intro-footer .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(156, 39, 176, 0.5);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(156, 39, 176, 0.1);
    border: 1px solid rgba(156, 39, 176, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9c27b0;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #9c27b0;
    color: #ffffff;
    transform: translateY(-3px);
}

/* ===== NEWS SECTION ===== */
.news-section {
    padding: 5rem 0;
    background: rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 1;
    min-height: 100vh;
    width: 100%;
}

.news-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.news-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(156, 39, 176, 0.2);
    border-radius: 30px;
    padding: 2rem;
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(156, 39, 176, 0.2);
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.3s ease;
}

.news-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.news-card:hover {
    transform: translateY(-10px);
    border-color: rgba(156, 39, 176, 0.5);
    box-shadow: 0 20px 40px rgba(156, 39, 176, 0.4),
                0 0 0 1px rgba(156, 39, 176, 0.3);
}

.news-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(156, 39, 176, 0.1), transparent);
    transition: left 0.7s ease;
}

.news-card:hover::before {
    left: 100%;
}

.news-card.featured {
    grid-column: span 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.news-date {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.date-badge {
    background: rgba(156, 39, 176, 0.2);
    border: 1px solid rgba(156, 39, 176, 0.3);
    border-radius: 50px;
    padding: 0.5rem 1rem;
    color: #9c27b0;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.date-badge i {
    font-size: 0.9rem;
}

.category-tag {
    background: rgba(156, 39, 176, 0.3);
    color: #ffffff;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.news-image {
    width: 100%;
    height: 200px;
    background: rgba(156, 39, 176, 0.1);
    border-radius: 20px;
    margin-bottom: 1.5rem;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(156, 39, 176, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.news-card.featured .news-image {
    height: 250px;
    margin-bottom: 0;
}

.news-image i {
    font-size: 4rem;
    color: rgba(156, 39, 176, 0.3);
    transition: all 0.3s ease;
}

.news-card:hover .news-image i {
    color: rgba(156, 39, 176, 0.6);
    transform: scale(1.1);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(156, 39, 176, 0.2), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.news-card:hover .image-overlay {
    opacity: 1;
}

.news-content {
    margin-bottom: 1.5rem;
}

.news-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.news-card.featured .news-title {
    font-size: 1.8rem;
}

.news-card:hover .news-title {
    background: linear-gradient(135deg, #ffffff 0%, #9c27b0 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.news-excerpt {
    color: #b0b0b0;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.news-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.author {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.author-avatar {
    width: 30px;
    height: 30px;
    background: rgba(156, 39, 176, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(156, 39, 176, 0.3);
}

.author-avatar i {
    color: #9c27b0;
    font-size: 0.9rem;
}

.author-name {
    color: #e0e0e0;
    font-size: 0.9rem;
}

.read-time {
    color: #808080;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.read-time i {
    color: #9c27b0;
    font-size: 0.8rem;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #9c27b0;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
}

.read-more i {
    transition: transform 0.3s ease;
}

.read-more:hover {
    gap: 1rem;
}

.read-more:hover i {
    transform: translateX(5px);
}

/* Newsletter Card */
.newsletter-card {
    grid-column: span 3;
    background: rgba(156, 39, 176, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(156, 39, 176, 0.3);
    border-radius: 30px;
    padding: 2.5rem;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: center;
    margin-top: 1rem;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.newsletter-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.newsletter-left {
    text-align: center;
}

.newsletter-icon {
    width: 100px;
    height: 100px;
    background: rgba(156, 39, 176, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    border: 2px solid rgba(156, 39, 176, 0.4);
    font-size: 3rem;
    color: #9c27b0;
}

.newsletter-left h4 {
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ffffff 0%, #9c27b0 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}

.newsletter-left p {
    color: #b0b0b0;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
}

.newsletter-input {
    flex: 1;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(156, 39, 176, 0.3);
    border-radius: 12px;
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.newsletter-input:focus {
    outline: none;
    border-color: #9c27b0;
    box-shadow: 0 0 20px rgba(156, 39, 176, 0.3);
}

.newsletter-input::placeholder {
    color: #505050;
}

.newsletter-btn {
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #9c27b0, #6a1b9a);
    border: none;
    border-radius: 12px;
    color: #ffffff;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.newsletter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(156, 39, 176, 0.5);
}

/* ===== استایل جدید اسلایدر تستیمونیال ===== */
.testimonials-section-home {
    padding: 5rem 0;
    background: rgba(156, 39, 176, 0.03);
    border-top: 1px solid rgba(156, 39, 176, 0.1);
    width: 100%;
    position: relative;
    overflow: hidden;
}

.testimonials-slider-container {
    position: relative;
    max-width: 1200px;
    margin: 3rem auto 0;
    padding: 0 60px;
}

.testimonials-slider-wrapper-home {
    overflow: hidden;
    position: relative;
    border-radius: 20px;
}

.testimonials-slider-home {
    display: flex;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.testimonial-slide-home {
    flex: 0 0 calc(33.333% - 1.33rem);
    margin-right: 2rem;
    box-sizing: border-box;
    transition: all 0.3s ease;
}

.testimonial-slide-home:last-child {
    margin-right: 0;
}

/* کارت تستیمونیال */
.testimonial-card-home {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(156, 39, 176, 0.2);
    border-radius: 30px;
    padding: 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

.testimonial-card-home::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(156, 39, 176, 0.2), transparent);
    transition: left 0.6s ease;
}

.testimonial-card-home:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(156, 39, 176, 0.6);
    box-shadow: 0 30px 60px rgba(156, 39, 176, 0.3);
}

.testimonial-card-home:hover::before {
    left: 100%;
}

/* افکت توقف با موس */
.testimonials-slider-container.paused .testimonial-card-home {
    animation-play-state: paused;
}

.testimonial-card-home.paused {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(156, 39, 176, 0.6);
    box-shadow: 0 30px 60px rgba(156, 39, 176, 0.4);
}

/* رتبه‌بندی */
.testimonial-rating-home {
    color: #ffc107;
    margin-bottom: 1.5rem;
    display: flex;
    gap: 0.25rem;
}

.testimonial-rating-home i {
    font-size: 1.1rem;
    filter: drop-shadow(0 0 5px rgba(255, 193, 7, 0.3));
}

.testimonial-rating-home .bi-star-fill.empty {
    opacity: 0.3;
    color: #666;
    filter: none;
}

/* متن نظر */
.testimonial-text-home {
    color: #e0e0e0;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    font-style: italic;
    flex-grow: 1;
    position: relative;
    padding-left: 1rem;
}

.testimonial-text-home::before {
    content: '"';
    position: absolute;
    left: -0.5rem;
    top: -0.5rem;
    font-size: 3rem;
    color: rgba(156, 39, 176, 0.3);
    font-family: serif;
}

/* نویسنده */
.testimonial-author-home {
    display: flex;
    align-items: center;
    gap: 1rem;
    border-top: 1px solid rgba(156, 39, 176, 0.2);
    padding-top: 1.5rem;
}

.author-avatar-home {
    width: 50px;
    height: 50px;
    background: rgba(156, 39, 176, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(156, 39, 176, 0.3);
    color: #9c27b0;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.testimonial-card-home:hover .author-avatar-home {
    transform: scale(1.1);
    background: rgba(156, 39, 176, 0.2);
    box-shadow: 0 0 30px rgba(156, 39, 176, 0.3);
}

.author-info-home {
    flex: 1;
}

.author-info-home h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.25rem;
}

.author-info-home p {
    color: #b0b0b0;
    font-size: 0.9rem;
}

/* دکمه‌های ناوبری */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    background: rgba(156, 39, 176, 0.2);
    border: 1px solid rgba(156, 39, 176, 0.4);
    border-radius: 50%;
    color: #ffffff;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.slider-nav:hover {
    background: rgba(156, 39, 176, 0.4);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 0 30px rgba(156, 39, 176, 0.3);
}

.slider-nav.prev {
    left: 0;
}

.slider-nav.next {
    right: 0;
}

.slider-nav i {
    transition: transform 0.3s ease;
}

.slider-nav.prev:hover i {
    transform: translateX(-3px);
}

.slider-nav.next:hover i {
    transform: translateX(3px);
}

.slider-nav:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.slider-nav:disabled:hover {
    background: rgba(156, 39, 176, 0.2);
    transform: translateY(-50%);
    box-shadow: none;
}

.slider-nav:disabled i {
    transform: none;
}

/* دایره‌های وضعیت */
.slider-dots {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    margin-top: 2rem;
}

.slider-dot {
    width: 10px;
    height: 10px;
    background: rgba(156, 39, 176, 0.3);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.slider-dot:hover {
    background: rgba(156, 39, 176, 0.5);
    transform: scale(1.2);
}

.slider-dot.active {
    background: #9c27b0;
    box-shadow: 0 0 20px rgba(156, 39, 176, 0.5);
    transform: scale(1.2);
}

/* دکمه اشتراک‌گذاری */
.testimonial-cta-wrapper-home {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
}

.btn-share-feedback-home {
    padding: 1rem 2.5rem;
    border-radius: 999px;
    border: 1px solid rgba(156, 39, 176, 0.6);
    background: rgba(156, 39, 176, 0.12);
    color: #ffffff;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.03em;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(156, 39, 176, 0.25);
}

.btn-share-feedback-home i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.btn-share-feedback-home:hover {
    background: rgba(156, 39, 176, 0.25);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(156, 39, 176, 0.35);
}

.btn-share-feedback-home:hover i {
    transform: translateX(5px);
}

/* ===== RESPONSIVE ===== */
@media screen and (max-width: 1024px) {
    .testimonial-slide-home {
        flex: 0 0 calc(50% - 1rem);
    }
}

@media screen and (max-width: 768px) {
    .testimonials-slider-container {
        padding: 0 50px;
    }

    .testimonial-slide-home {
        flex: 0 0 calc(100% - 0rem);
        margin-right: 0;
    }

    .testimonial-card-home {
        padding: 1.5rem;
    }

    .testimonial-text-home {
        font-size: 0.95rem;
    }

    .author-avatar-home {
        width: 45px;
        height: 45px;
    }

    .slider-nav {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

@media screen and (max-width: 480px) {
    .testimonials-slider-container {
        padding: 0 40px;
    }

    .testimonial-card-home {
        padding: 1.2rem;
    }

    .testimonial-rating-home i {
        font-size: 1rem;
    }

    .testimonial-text-home {
        font-size: 0.9rem;
        line-height: 1.6;
        padding-left: 0.5rem;
    }

    .author-avatar-home {
        width: 40px;
        height: 40px;
    }

    .author-info-home h4 {
        font-size: 1rem;
    }

    .author-info-home p {
        font-size: 0.85rem;
    }

    .btn-share-feedback-home {
        padding: 0.9rem 2rem;
        font-size: 0.9rem;
    }
}

.btn-share-feedback-home {
    padding: 0.9rem 2.4rem;
    border-radius: 999px;
    border: 1px solid rgba(156, 39, 176, 0.6);
    background: rgba(156, 39, 176, 0.12);
    color: #ffffff;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.03em;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 10px 25px rgba(156, 39, 176, 0.25);
}

.btn-share-feedback-home i {
    font-size: 1.1rem;
}

.btn-share-feedback-home:hover {
    background: rgba(156, 39, 176, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(156, 39, 176, 0.35);
}

/* Testimonial Modal */
.testimonial-modal-home {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.testimonial-modal-home.open {
    opacity: 1;
    visibility: visible;
}

.testimonial-modal-backdrop-home {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
}

.testimonial-modal-dialog-home {
    position: relative;
    max-width: 720px;
    width: 100%;
    padding: 1rem;
    z-index: 1;
}

.testimonial-form-container-home {
    background: rgba(0, 0, 0, 0.85);
    border-radius: 30px;
    border: 1px solid rgba(156, 39, 176, 0.4);
    padding: 2.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7);
}

.testimonial-form-title-home {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ffffff 0%, #9c27b0 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
    margin-bottom: 0.75rem;
}

.testimonial-form-subtitle-home {
    text-align: center;
    color: #b0b0b0;
    margin-bottom: 2rem;
}

.testimonial-modal-close-home {
    position: absolute;
    top: 1.2rem;
    right: 1.5rem;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: rgba(0, 0, 0, 0.6);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
    transition: all 0.2s ease;
}

.testimonial-modal-close-home:hover {
    background: rgba(0, 0, 0, 0.85);
    transform: rotate(5deg);
}

.testimonial-form-home {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row-home {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-input-home {
    width: 100%;
    padding: 1rem 1.25rem;
    border-radius: 14px;
    border: 1px solid rgba(156, 39, 176, 0.4);
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    outline: none;
    transition: all 0.25s ease;
}

.form-input-home::placeholder {
    color: #808080;
}

.form-input-home:focus {
    border-color: #9c27b0;
    box-shadow: 0 0 20px rgba(156, 39, 176, 0.5);
}

.rating-label-home {
    color: #e0e0e0;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.rating-input-home {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 0.4rem;
}

.rating-input-home input[type="radio"] {
    display: none;
}

.star-label-home {
    font-size: 1.8rem;
    color: #555;
    cursor: pointer;
    transition: color 0.2s ease;
}

.star-label-home:hover,
.star-label-home:hover ~ .star-label-home {
    color: #ffc107;
}

.rating-input-home input[type="radio"]:checked ~ .star-label-home,
.rating-input-home input[type="radio"]:checked + .star-label-home {
    color: #ffc107;
}

.btn-submit-home {
    padding: 1rem 2.4rem;
    border-radius: 999px;
    border: none;
    background: linear-gradient(135deg, #9c27b0, #6a1b9a);
    color: #ffffff;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.03em;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    cursor: pointer;
    transition: all 0.25s ease;
}

.btn-submit-home:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(156, 39, 176, 0.5);
}

/* ===== RESPONSIVE STYLES ===== */

/* Large Desktop */
@media screen and (max-width: 1400px) {
    .container {
        padding: 0 2rem;
    }
}

/* Desktop */
@media screen and (max-width: 1200px) {
    .pricing-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .pricing-card.featured:hover {
        transform: scale(1) translateY(-10px);
    }

    .pricing-card.featured.visible {
        transform: scale(1);
    }

    .pricing-card.featured.visible:hover {
        transform: scale(1) translateY(-10px);
    }
}

/* Tablet */
@media screen and (max-width: 1024px) {
    .hero-content {
        gap: 2rem;
    }
    
    model-viewer {
        height: 400px;
    }

    .intro-card {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .features-list {
        justify-content: center;
    }

    .intro-footer {
        flex-direction: column;
        align-items: center;
    }

    .news-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .news-card.featured {
        grid-column: span 2;
    }

    .newsletter-card {
        grid-column: span 2;
    }
}

/* Mobile Large */
@media screen and (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }

    .section-header {
        margin-bottom: 3rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .section-header p {
        font-size: 1rem;
    }

    /* Hero Mobile */
    .hero-section {
        min-height: auto;
        padding: 5rem 0 3rem;
    }

    .hero {
        min-height: auto;
        padding: 2rem 1rem;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        display: flex;
        flex-direction: column;
    }

    .hero-text {
        text-align: center;
        order: 1;
    }

    .hero-text h1::after {
        left: 50%;
        transform: translateX(-50%);
        width: 60px;
    }

    .hero-text p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
        flex-direction: column;
        align-items: center;
        max-width: 300px;
        margin: 0 auto;
    }

    .btn-primary, .btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .stats-container {
        order: 2;
        justify-content: center;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        margin-top: 2rem;
    }

    .stat-item {
        width: 100%;
        max-width: 280px;
    }

    .stat-item:not(:last-child)::after {
        display: none;
    }

    .hero-empty {
        order: 3;
        width: 100%;
        margin-top: 2rem;
    }

    .hero-modal {
        max-width: 400px;
        margin: 0 auto;
    }

    model-viewer {
        height: 300px;
    }

    .floating-badge {
        display: none;
    }

    /* Pricing Mobile */
    .pricing-section {
        padding: 3rem 0;
    }

    .pricing-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .pricing-card {
        padding: 1.5rem;
        max-width: 400px;
        margin: 0 auto;
        width: 100%;
    }

    .card-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .price .amount {
        font-size: 2.5rem;
    }

    .card-header h3 {
        font-size: 1.5rem;
    }

    /* About Mobile */
    .about-section {
        padding: 3rem 0;
    }

    .vm-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .vm-card {
        padding: 2rem 1.5rem;
        max-width: 400px;
        margin: 0 auto;
        width: 100%;
    }

    .vm-icon {
        width: 80px;
        height: 80px;
        font-size: 2.5rem;
    }

    .vm-card h3 {
        font-size: 1.8rem;
    }

    .vm-card p {
        font-size: 1rem;
    }

    .vm-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .intro-card {
        padding: 2rem 1.5rem;
        max-width: 400px;
        margin: 0 auto;
        width: 100%;
    }

    .intro-icon {
        width: 120px;
        height: 120px;
        font-size: 3rem;
    }

    .intro-left h3 {
        font-size: 2rem;
    }

    .intro-right p {
        font-size: 1rem;
    }

    .features-list {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .intro-footer {
        flex-direction: column;
        gap: 1.5rem;
    }

    .intro-footer .btn-primary {
        width: 100%;
        justify-content: center;
    }

    /* News Mobile */
    .news-section {
        padding: 3rem 0;
    }

    .news-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
        justify-items: center;
    }

    .news-card {
        max-width: 400px;
        margin: 0 auto;
        width: 100%;
    }

    .news-card.featured {
        grid-column: span 1;
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .news-card.featured .news-image {
        height: 200px;
    }

    .news-card.featured .news-title {
        font-size: 1.4rem;
    }

    .newsletter-card {
        grid-column: span 1;
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        max-width: 400px;
        margin: 1rem auto 0;
        width: 100%;
    }

    .newsletter-form {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .newsletter-input {
        width: 100%;
    }

    .newsletter-btn {
        width: 100%;
        justify-content: center;
    }

    .news-meta {
        flex-wrap: wrap;
    }

    /* Testimonials Mobile */
    .testimonials-section-home {
        padding: 3rem 0;
    }

    .testimonial-form-container-home {
        padding: 2rem 1.5rem;
    }

    .form-row-home {
        grid-template-columns: 1fr;
    }
}

/* Mobile Small */
@media screen and (max-width: 480px) {
    .container {
        padding: 0 0.75rem;
    }

    .section-header {
        margin-bottom: 2.5rem;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .section-header p {
        font-size: 0.95rem;
    }

    /* Hero Small */
    .hero-section {
        padding: 4rem 0 2rem;
    }

    .hero-text h1 {
        font-size: 1.8rem;
    }

    .hero-text p {
        font-size: 0.95rem;
    }

    .btn-primary, .btn-secondary {
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
    }

    .stat-item {
        padding: 1rem 1.2rem;
    }

    .stat-number {
        font-size: 1.6rem;
    }

    .stat-label {
        font-size: 0.85rem;
    }

    model-viewer {
        height: 250px;
    }

    .hero-modal {
        padding: 0.75rem;
    }

    /* Pricing Small */
    .pricing-card {
        padding: 1.25rem;
    }

    .card-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }

    .card-header h3 {
        font-size: 1.3rem;
    }

    .price .amount {
        font-size: 2rem;
    }

    .features li {
        font-size: 0.9rem;
    }

    .btn-pricing {
        padding: 0.875rem;
        font-size: 0.9rem;
    }

    /* About Small */
    .vm-card {
        padding: 1.5rem 1.25rem;
    }

    .vm-icon {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }

    .vm-card h3 {
        font-size: 1.5rem;
    }

    .vm-card p {
        font-size: 0.95rem;
    }

    .intro-card {
        padding: 1.5rem 1.25rem;
    }

    .intro-icon {
        width: 100px;
        height: 100px;
        font-size: 2.5rem;
    }

    .intro-left h3 {
        font-size: 1.75rem;
    }

    .feature-item {
        font-size: 0.9rem;
    }

    /* News Small */
    .news-card {
        padding: 1.5rem;
    }

    .news-image {
        height: 180px;
    }

    .news-title {
        font-size: 1.2rem;
    }

    .news-card.featured .news-title {
        font-size: 1.3rem;
    }

    .news-excerpt {
        font-size: 0.9rem;
    }

    .news-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .date-badge {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }

    .category-tag {
        font-size: 0.75rem;
        padding: 0.3rem 0.8rem;
    }

    /* Testimonials Small */
    .testimonial-card-home {
        padding: 1.5rem;
    }

    .testimonial-text-home {
        font-size: 0.95rem;
    }

    .author-avatar-home {
        width: 40px;
        height: 40px;
    }

    .btn-share-feedback-home {
        padding: 0.8rem 2rem;
        font-size: 0.9rem;
    }
}

/* Landscape Mode */
@media screen and (max-width: 896px) and (orientation: landscape) {
    .hero-section {
        min-height: auto;
        padding: 6rem 0 3rem;
    }

    .hero {
        min-height: auto;
    }

    .hero-content {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }

    .hero-text {
        text-align: left;
    }

    .hero-text h1::after {
        left: 0;
        transform: none;
    }

    .hero-buttons {
        justify-content: flex-start;
        flex-direction: row;
        max-width: 100%;
    }

    .btn-primary, .btn-secondary {
        width: auto;
    }

    .stats-container {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: flex-start;
    }

    .stat-item {
        width: auto;
        min-width: 120px;
    }

    model-viewer {
        height: 200px;
    }

    .floating-badge {
        display: none;
    }
}

/* ===== SCROLL ANIMATION SCRIPT ===== */
.fade-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}