/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2563eb;
    --primary-dark: #1e40af;
    --secondary-color: #f59e0b;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    --success-color: #10b981;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    position: relative;
}

/* Animated Background with Learning Icons */
.animated-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
    background: transparent;
}

/* Background Icons with Parallax Effect */
.background-icon {
    position: absolute;
    color: rgba(37, 99, 235, 0.25);
    font-size: 1.2rem;
    opacity: 0.6;
    transition: transform 0.1s ease-out, opacity 0.3s ease;
    animation: float 20s infinite ease-in-out;
    /* Performance optimizations for smooth parallax */
    will-change: transform, top, left;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transform-style: preserve-3d;
    /* Use GPU acceleration for smoother animations */
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    z-index: 0;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
}

.background-icon:hover {
    opacity: 0.8;
}

/* Different colors and animation speeds for visual variety */
.background-icon:nth-child(odd) {
    animation-duration: 25s;
    animation-direction: reverse;
    color: rgba(5, 150, 105, 0.25);
}

.background-icon:nth-child(3n) {
    animation-duration: 30s;
    color: rgba(37, 99, 235, 0.22);
}

.background-icon:nth-child(4n) {
    animation-duration: 22s;
    animation-direction: reverse;
    color: rgba(245, 158, 11, 0.22);
}

.background-icon:nth-child(5n) {
    color: rgba(139, 92, 246, 0.22);
}

/* Floating animation - subtle movement for natural feel */
@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(12px, -12px) rotate(2deg);
    }
    50% {
        transform: translate(-8px, 8px) rotate(-2deg);
    }
    75% {
        transform: translate(6px, 12px) rotate(1.5deg);
    }
}

/* Ensure content is above background */
.hero,
.features,
.why-choose,
.testimonials,
.blog,
.cta,
.newsletter-section,
.footer {
    position: relative;
    z-index: 1;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .animated-background {
        opacity: 0.5;
    }
    
    .background-icon {
        font-size: 0.8rem;
        opacity: 0.3;
    }
}

@media (max-width: 480px) {
    .animated-background {
        opacity: 0.4;
    }
    
    .background-icon {
        font-size: 0.7rem;
        opacity: 0.25;
    }
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    .background-icon {
        animation: none;
    }
    
    .animated-background {
        opacity: 0.3;
    }
}

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

/* Navigation - Modern Glassmorphism Effect */
.navbar {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 
        0 8px 32px 0 rgba(31, 38, 135, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.3) inset,
        0 1px 0 0 rgba(255, 255, 255, 0.5) inset;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: visible;
}

/* Light reflection effect */
.navbar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.8) 20%,
        rgba(255, 255, 255, 0.8) 80%,
        transparent
    );
    pointer-events: none;
    z-index: 1;
}

/* Subtle glow effect */
.navbar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.1) 0%,
        transparent 50%,
        rgba(0, 0, 0, 0.02) 100%
    );
    pointer-events: none;
    z-index: 0;
}

/* Enhanced shadow on scroll */
.navbar.scrolled {
    background: rgba(255, 255, 255, 0.85);
    box-shadow: 
        0 8px 32px 0 rgba(31, 38, 135, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.4) inset,
        0 1px 0 0 rgba(255, 255, 255, 0.6) inset;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: nowrap;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo:hover {
    transform: translateY(-1px);
}

.logo img {
    width: 130px;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
    max-height: 80px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: 0.5rem 0;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
}

.nav-menu a:hover {
    color: var(--primary-color);
    text-shadow: 0 1px 3px rgba(37, 99, 235, 0.3);
}

.nav-menu a:hover::after {
    width: 100%;
}

/* Active Menu Item */
.nav-menu a.active {
    color: var(--primary-color);
    font-weight: 600;
    text-shadow: 0 1px 3px rgba(37, 99, 235, 0.3);
}

.nav-menu a.active::after {
    width: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    height: 3px;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.4);
}

.nav-menu a.active::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -0.75rem;
    transform: translateY(-50%);
    width: 4px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(37, 99, 235, 0.6);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: translateY(-50%) scale(1);
    }
    50% {
        opacity: 0.6;
        transform: translateY(-50%) scale(1.2);
    }
}

.nav-menu .btn-primary {
    color: white !important;
    background: var(--primary-color);
    box-shadow: 
        0 4px 14px 0 rgba(37, 99, 235, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.1) inset;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    padding: 0.75rem 2rem;
    min-width: 160px;
    white-space: nowrap;
    text-align: center;
    font-weight: 600;
    border-radius: 8px;
    display: inline-block;
}

.nav-menu .btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.nav-menu .btn-primary:hover {
    color: white !important;
    background: var(--primary-dark);
    box-shadow: 
        0 6px 20px 0 rgba(37, 99, 235, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.2) inset;
    transform: translateY(-2px);
}

.nav-menu .btn-primary:hover::before {
    left: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    position: relative;
    z-index: 10001;
    padding: 0.5rem 0.75rem;
    margin: 0;
    border-radius: 8px;
    transition: background 0.3s ease;
    -webkit-tap-highlight-color: transparent;
    background: transparent;
    border: none;
    outline: none;
    -webkit-user-select: none;
    user-select: none;
    touch-action: manipulation;
    align-items: center;
    justify-content: center;
}

.hamburger:hover {
    background: rgba(0, 0, 0, 0.05);
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    display: block;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Buttons */
.btn-primary {
    background: var(--primary-color);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

/* Hero Section */
/* Welcome Notification */
.welcome-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
    opacity: 0;
    transform: translateY(-20px) scale(0.95);
    pointer-events: none;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    max-width: 400px;
    width: calc(100% - 40px);
}

.welcome-notification.show {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: all;
}

.welcome-notification.hide {
    opacity: 0;
    transform: translateY(-20px) scale(0.95);
    pointer-events: none;
}

.notification-content {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: 16px;
    padding: 1.25rem 1.5rem;
    box-shadow: 
        0 20px 25px -5px rgba(0, 0, 0, 0.1),
        0 10px 10px -5px rgba(0, 0, 0, 0.04),
        0 0 0 1px rgba(255, 255, 255, 0.5) inset,
        0 1px 0 0 rgba(255, 255, 255, 0.6) inset;
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.notification-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #f59e0b, #fbbf24, #f59e0b);
    background-size: 200% 100%;
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.notification-logo {
    width: 56px;
    height: 56px;
    min-width: 56px;
    background: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
    animation: pulse 2s ease-in-out infinite;
    border: 2px solid rgba(245, 158, 11, 0.2);
}

.notification-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 8px;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
        border-color: rgba(245, 158, 11, 0.2);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 20px rgba(245, 158, 11, 0.4);
        border-color: rgba(245, 158, 11, 0.4);
    }
}

.notification-text {
    flex: 1;
}

.notification-text h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
    line-height: 1.3;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.notification-text h3::before {
    content: '⚠️';
    font-size: 1.2rem;
    animation: shake 2s ease-in-out infinite;
}

@keyframes shake {
    0%, 100% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(-10deg);
    }
    75% {
        transform: rotate(10deg);
    }
}

.notification-text p {
    font-size: 0.875rem;
    color: var(--text-light);
    margin: 0;
    line-height: 1.4;
}

.notification-close {
    background: transparent;
    border: none;
    color: var(--text-light);
    font-size: 1.1rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    min-width: 32px;
    flex-shrink: 0;
}

.notification-close:hover {
    background: rgba(0, 0, 0, 0.05);
    color: var(--text-dark);
    transform: rotate(90deg);
}

.notification-close:active {
    transform: rotate(90deg) scale(0.9);
}

/* Responsive adjustments for notification */
@media (max-width: 768px) {
    .welcome-notification {
        top: 15px;
        right: 15px;
        left: 15px;
        width: auto;
        max-width: none;
    }
    
    .notification-content {
        padding: 1rem 1.25rem;
    }
    
    .notification-logo {
        width: 48px;
        height: 48px;
        min-width: 48px;
        padding: 5px;
    }
    
    .notification-text h3 {
        font-size: 1rem;
    }
    
    .notification-text p {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .welcome-notification {
        top: 10px;
        right: 10px;
        left: 10px;
    }
    
    .notification-content {
        padding: 0.875rem 1rem;
        gap: 0.75rem;
    }
    
    .notification-logo {
        width: 40px;
        height: 40px;
        min-width: 40px;
        padding: 4px;
    }
}

.hero {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    min-height: 600px;
    display: flex;
    align-items: center;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

/* Hero Text Highlighting with GSAP */
.highlight-word {
    position: relative;
    display: inline-block;
    font-weight: 800;
    transition: transform 0.3s ease;
}

.highlight-word[data-word="farsi"],
.highlight-word[data-word="dari"] {
    color: #059669;
    background: linear-gradient(135deg, #059669 0%, #10b981 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
    padding: 0 4px;
    position: relative;
}

.highlight-word[data-word="farsi"]::before,
.highlight-word[data-word="dari"]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(5, 150, 105, 0.1) 0%, rgba(16, 185, 129, 0.1) 100%);
    border-radius: 6px;
    z-index: -1;
    padding: 2px 4px;
    margin: -2px -4px;
}

.highlight-word[data-word="academy"] {
    color: #2563eb;
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.5px;
}

@supports not (-webkit-background-clip: text) {
    .highlight-word[data-word="dari"] {
        color: #059669;
        -webkit-text-fill-color: #059669;
    }
    
    .highlight-word[data-word="academy"] {
        color: #2563eb;
        -webkit-text-fill-color: #2563eb;
    }
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.hero-note {
    color: var(--text-light);
    font-size: 0.9rem;
}

.hero-image {
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 50%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.hero-image:hover img {
    transform: scale(1.02);
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
}

/* Mother Tongue Banner - Badge Style */
.mother-tongue-banner {
    padding: 2rem 0;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 50%, #dbeafe 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.mother-tongue-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(37, 99, 235, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(245, 158, 11, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(5, 150, 105, 0.08) 0%, transparent 50%);
    animation: gradientShift 15s ease infinite;
    pointer-events: none;
}

@keyframes gradientShift {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.8;
    }
}

.banner-content {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.875rem 2.25rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.98) 100%);
    border: 2px solid rgba(37, 99, 235, 0.2);
    border-radius: 50px;
    box-shadow: 
        0 4px 20px rgba(37, 99, 235, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.5) inset,
        0 2px 10px rgba(0, 0, 0, 0.05);
    position: relative;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.banner-content::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color), var(--primary-color));
    border-radius: 50px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.banner-content:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 8px 30px rgba(37, 99, 235, 0.25),
        0 0 0 1px rgba(255, 255, 255, 0.6) inset,
        0 4px 15px rgba(0, 0, 0, 0.08);
    border-color: rgba(37, 99, 235, 0.4);
}

.banner-content:hover::before {
    opacity: 0.3;
}

.banner-content i {
    font-size: 1.25rem;
    color: var(--primary-color);
    animation: heartbeat 1.5s ease-in-out infinite;
    filter: drop-shadow(0 2px 4px rgba(37, 99, 235, 0.3));
}

.banner-content h2 {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.3px;
}

@keyframes heartbeat {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

/* Programs Section */
.programs-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.program-card {
    background: var(--bg-white);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid var(--border-color);
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.program-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.program-card:hover::before {
    transform: scaleX(1);
}

.program-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.program-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    display: flex;
    justify-content: center;
    align-items: center;
}

.program-icon i {
    font-size: 3.5rem;
}

.program-card h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 700;
}

.program-card p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1rem;
}

/* Features Section */
.features {
    padding: 5rem 0;
    background: var(--bg-white);
}

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

.feature-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.feature-card.feature-link {
    text-decoration: none;
    color: inherit;
    display: block;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 252, 0.98) 100%);
}

.feature-card.feature-link::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(37, 99, 235, 0.12), transparent 55%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.feature-card.feature-link:hover::after {
    opacity: 1;
}

.feature-card.feature-link .feature-icon,
.feature-card.feature-link h3,
.feature-card.feature-link p {
    position: relative;
    z-index: 1;
}

.feature-card.feature-link .feature-icon {
    transition: transform 0.3s ease, color 0.3s ease;
}

.feature-card.feature-link:hover .feature-icon {
    transform: translateY(-4px) scale(1.05);
    color: var(--primary-dark);
}

.feature-card.feature-link:hover h3 {
    color: var(--primary-dark);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.feature-icon i {
    font-size: 3rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Why Choose Section */
.why-choose {
    padding: 5rem 0;
    background: var(--bg-light);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.why-item {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.why-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.why-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.why-icon i {
    font-size: 3rem;
}

.why-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.why-item p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Testimonials Section */
.testimonials {
    padding: 5rem 0;
    background: var(--bg-white);
}

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

.testimonial-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.stars {
    color: var(--secondary-color);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    color: var(--text-dark);
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-size: 1rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author h4 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
    color: var(--text-dark);
}

.testimonial-author p {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Blog Section */
.blog {
    padding: 5rem 0;
    background: var(--bg-light);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.blog-card {
    background: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.blog-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-content {
    padding: 1.5rem;
}

.blog-category {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.blog-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
    line-height: 1.4;
}

.blog-content p {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.blog-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.blog-link:hover {
    color: var(--primary-dark);
}

/* CTA Section */
.cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    text-align: center;
}

/* Newsletter Section */
.newsletter-section {
    padding: 4rem 0;
    background: var(--bg-light);
    border-top: 1px solid var(--border-color);
}

.newsletter-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.newsletter-content h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.newsletter-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta .btn-primary {
    background: white;
    color: var(--primary-color);
}

.cta .btn-primary:hover {
    background: var(--bg-light);
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: #111827;
    color: white;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: white;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1rem;
}

.footer-logo img {
    width: 130px;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
    max-height: 80px;
}

.footer-section p {
    color: #9ca3af;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section ul li a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: white;
}

.social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-links a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: white;
}

/* Newsletter Section */
.newsletter {
    grid-column: span 2;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.newsletter-form input {
    flex: 1;
    min-width: 250px;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    border: 1px solid #374151;
    background: #1f2937;
    color: white;
    font-size: 1rem;
}

.newsletter-form input::placeholder {
    color: #9ca3af;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.newsletter-form button {
    padding: 0.75rem 1.5rem;
    white-space: nowrap;
}

.newsletter-note {
    font-size: 0.85rem;
    color: #6b7280;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 2rem;
    text-align: center;
    color: #9ca3af;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .logo img {
        width: 120px;
        max-height: 70px;
    }
    
    .footer-logo img {
        width: 120px;
        max-height: 70px;
    }
    
    .programs-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .logo img {
        width: 100px;
        max-height: 60px;
    }
    
    .footer-logo img {
        width: 100px;
        max-height: 60px;
    }
    
    .nav-menu {
        position: fixed !important;
        left: -100% !important;
        top: 80px !important;
        flex-direction: column !important;
        background: rgba(255, 255, 255, 0.98) !important;
        backdrop-filter: blur(20px) saturate(180%) !important;
        -webkit-backdrop-filter: blur(20px) saturate(180%) !important;
        width: 100% !important;
        max-width: 100% !important;
        text-align: center !important;
        transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
        box-shadow: 
            0 8px 32px 0 rgba(31, 38, 135, 0.2),
            0 0 0 1px rgba(255, 255, 255, 0.3) inset !important;
        padding: 2rem 0 !important;
        border-top: 1px solid rgba(255, 255, 255, 0.18) !important;
        z-index: 9999 !important;
        height: calc(100vh - 80px) !important;
        overflow-y: auto !important;
        margin: 0 !important;
        list-style: none !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    .nav-menu.active {
        left: 0 !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .nav-menu li {
        width: 100%;
        margin: 0;
    }
    
    .nav-menu li a {
        display: block;
        width: 100%;
        text-align: center;
        padding: 0.75rem 1rem;
    }
    
    .nav-menu li a.active {
        background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(37, 99, 235, 0.05) 100%);
        border-left: 4px solid var(--primary-color);
        padding-left: calc(1rem - 4px);
        font-weight: 600;
        color: var(--primary-color);
    }
    
    .nav-menu li a.active::before {
        display: none;
    }
    
    .nav-menu li a.active::after {
        display: none;
    }
    
    .nav-menu .btn-primary {
        width: 100%;
        max-width: 300px;
        margin: 0.5rem auto 0;
        padding: 0.875rem 2rem;
        min-width: auto;
    }

    .hamburger {
        display: flex !important;
        cursor: pointer !important;
        pointer-events: auto !important;
        z-index: 10001 !important;
        position: relative !important;
        visibility: visible !important;
        opacity: 1 !important;
        width: auto !important;
        height: auto !important;
        min-width: 44px !important;
        min-height: 44px !important;
        padding: 0.4rem 0.6rem !important;
        margin: 0 !important;
    }
    
    .hamburger:active {
        background: rgba(0, 0, 0, 0.1) !important;
    }
    
    .nav-wrapper {
        flex-wrap: wrap;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .highlight-learn::after {
        height: 3px;
    }
    
    .highlight-language::before {
        padding: 1px 2px;
        margin: -1px -2px;
    }
    
    .highlight-academy::before,
    .highlight-academy::after {
        width: 2px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons a {
        width: 100%;
        text-align: center;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .mother-tongue-banner {
        padding: 1.5rem 1rem;
    }
    
    .banner-content {
        padding: 0.625rem 1.5rem;
        gap: 0.5rem;
    }
    
    .banner-content h2 {
        font-size: 1.1rem;
    }
    
    .banner-content i {
        font-size: 1.1rem;
    }
    
    .programs-section {
        padding: 3rem 0;
    }
    
    .programs-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .program-card {
        padding: 2rem 1.5rem;
    }
    
    .program-icon {
        font-size: 2.5rem;
    }
    
    .program-icon i {
        font-size: 2.5rem;
    }
    
    .program-card h3 {
        font-size: 1.5rem;
    }
    
    .program-card {
        padding: 2rem 1.5rem;
    }
    
    .features-grid,
    .why-grid,
    .testimonials-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .newsletter {
        grid-column: span 1;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form input,
    .newsletter-form button {
        width: 100%;
    }
    
    .newsletter-content h2 {
        font-size: 1.75rem;
    }
    
    .newsletter-content p {
        font-size: 1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .mother-tongue-banner {
        padding: 1rem 0.5rem;
    }
    
    .banner-content {
        padding: 0.5rem 1rem;
        flex-wrap: wrap;
        gap: 0.4rem;
    }
    
    .banner-content h2 {
        font-size: 0.95rem;
    }
    
    .banner-content i {
        font-size: 0.95rem;
    }
    
    .programs-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .program-card {
        padding: 1.5rem 1rem;
    }
    
    .program-icon {
        font-size: 2rem;
    }
    
    .program-icon i {
        font-size: 2rem;
    }
    
    .program-card h3 {
        font-size: 1.3rem;
    }
    
    .share-section {
        padding: 1.5rem 1rem;
        border-radius: 12px;
    }
    
    .share-section-header {
        margin-bottom: 1rem;
    }
    
    .share-section-header i {
        font-size: 1.25rem;
    }
    
    .share-section-header h3 {
        font-size: 1rem;
    }
    
    .share-buttons {
        flex-wrap: nowrap;
        gap: 0.625rem;
    }
    
    .share-btn {
        padding: 0.875rem;
        width: 45px;
        height: 45px;
        flex: 0 0 auto;
        min-width: 45px;
        justify-content: center;
    }
    
    .share-btn span {
        display: none !important;
    }
    
    .share-btn i {
        font-size: 1.1rem;
    }
    
    .logo img {
        width: 90px;
        max-height: 50px;
    }
    
    .footer-logo img {
        width: 90px;
        max-height: 50px;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .highlight-learn::after {
        height: 2px;
    }
    
    .highlight-language::before {
        padding: 1px 2px;
        margin: -1px -2px;
    }
    
    .highlight-academy::before,
    .highlight-academy::after {
        width: 2px;
        height: 70%;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-header h2 {
        font-size: 1.75rem;
    }
    
    .navbar {
        padding: 0.75rem 0;
    }
    
    .nav-wrapper {
        gap: 0.5rem;
    }
    
    .hamburger {
        margin-left: auto;
        margin-top: 0 !important;
        margin-bottom: 0 !important;
        padding: 0.35rem 0.5rem !important;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-card,
.why-item,
.testimonial-card,
.blog-card {
    animation: fadeIn 0.6s ease-out;
}

/* Page Header Styles */
.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.page-header h1 i {
    margin-right: 1rem;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Page Content Styles */
.page-content {
    padding: 4rem 0;
    background: var(--bg-white);
}

.content-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.content-section {
    margin-bottom: 3rem;
}

.content-section h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.content-section h2 i {
    color: var(--primary-color);
}

.content-section h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.content-section p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.feature-list {
    list-style: none;
    margin: 1.5rem 0;
}

.feature-list li {
    padding: 0.75rem 0;
    color: var(--text-light);
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.feature-list li i {
    color: var(--success-color);
    margin-top: 0.25rem;
}

.contact-info-list {
    list-style: none;
    margin: 1.5rem 0;
}

.contact-info-list li {
    padding: 0.75rem 0;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.contact-info-list li i {
    color: var(--primary-color);
    width: 20px;
}

.contact-info-list a {
    color: var(--primary-color);
    text-decoration: none;
}

.contact-info-list a:hover {
    text-decoration: underline;
}

/* Legal Content Styles */
.legal-content {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.stat-card {
    text-align: center;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.stat-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-light);
    font-size: 1rem;
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin: 2rem 0;
}

.value-card {
    text-align: left;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.value-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.value-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.value-card p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Contact Page Styles */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 2rem;
}

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.contact-methods {
    margin: 2rem 0;
}

.contact-method {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 12px;
}

.method-icon {
    font-size: 2rem;
    color: var(--primary-color);
    min-width: 50px;
    text-align: center;
}

.method-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.method-content p {
    color: var(--text-light);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.method-content a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.method-content a:hover {
    text-decoration: underline;
}

.method-content address {
    font-style: normal;
    color: var(--text-light);
    line-height: 1.6;
}

.social-contact {
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 12px;
}

.social-contact h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.contact-form-wrapper {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
}

.contact-form-wrapper h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.faq-preview {
    padding: 4rem 0;
    background: var(--bg-light);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.faq-item {
    background: var(--bg-white);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.faq-item h3 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.faq-item h3 i {
    color: var(--primary-color);
}

.faq-item p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Help Page Styles */
.help-search {
    margin-bottom: 3rem;
}

.search-box {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
}

.search-box i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-light);
}

.search-box input {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.search-box input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.quick-links {
    margin-bottom: 4rem;
}

.quick-links h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.quick-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.quick-link-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 12px;
    text-decoration: none;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.quick-link-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.quick-link-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.quick-link-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.quick-link-card p {
    color: var(--text-light);
    font-size: 0.9rem;
}

.faq-sections {
    margin-bottom: 4rem;
}

.faq-section {
    margin-bottom: 3rem;
}

.faq-section h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item-expandable {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item-expandable:hover {
    box-shadow: var(--shadow-md);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--bg-light);
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #f3f4f6;
}

.faq-question h3 {
    font-size: 1.1rem;
    margin: 0;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.faq-question h3 i {
    color: var(--primary-color);
}

.faq-question .fa-chevron-down {
    color: var(--text-light);
    transition: transform 0.3s ease;
}

.faq-answer {
    display: none;
    padding: 1.5rem;
    color: var(--text-light);
    line-height: 1.7;
    border-top: 1px solid var(--border-color);
}

.faq-item-expandable.active .faq-answer {
    display: block;
}

.contact-support {
    margin-top: 4rem;
    text-align: center;
}

.support-card {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 3rem;
    border-radius: 12px;
    max-width: 600px;
    margin: 0 auto;
}

.support-card i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.support-card h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: white;
}

.support-card p {
    margin-bottom: 2rem;
    opacity: 0.9;
}

.support-options {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.support-hours {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-top: 1rem;
}

.support-hours i {
    margin-right: 0.5rem;
}

/* Social Links Styles */
.social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer .social-links a {
    background: rgba(156, 163, 175, 0.2);
    color: #9ca3af;
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
    color: white;
}

.footer .social-links a:hover {
    background: white;
    color: var(--primary-color);
}

/* Responsive Styles for New Pages */
@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2rem;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .quick-links-grid {
        grid-template-columns: 1fr;
    }

    .support-options {
        flex-direction: column;
    }

    .support-options a {
        width: 100%;
    }
}

@media (max-width: 1024px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }

    .page-header h1 {
        font-size: 1.75rem;
    }

    .content-section h2 {
        font-size: 1.5rem;
    }
}

/* Blog Detail Page Styles */
/* Blog Page Header */
.blog-page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    padding: 4rem 0;
    margin-top: 80px;
    text-align: center;
    color: white;
}

.blog-header-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.blog-header-content p {
    font-size: 1.25rem;
    opacity: 0.95;
}

.blog-detail-header {
    background: var(--bg-light);
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--border-color);
}

.blog-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-light);
}

.blog-breadcrumb a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-breadcrumb a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.blog-breadcrumb span {
    color: var(--text-light);
}

.blog-detail {
    padding: 4rem 0;
    background: var(--bg-white);
}

.blog-detail-wrapper {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.blog-detail-main {
    max-width: 800px;
}

.blog-detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    align-items: center;
}

.blog-detail-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-light);
}

.blog-detail-meta .blog-category {
    color: white;
}

.blog-detail-meta i {
    color: var(--primary-color);
}

.blog-detail h1 {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.blog-detail-image {
    width: 100%;
    margin-bottom: 2.5rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.blog-detail-image img {
    width: 100%;
    height: auto;
    display: block;
}

.blog-detail-content {
    line-height: 1.8;
    color: var(--text-dark);
}

.blog-detail-content .lead {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.blog-detail-content h2 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    line-height: 1.3;
}

.blog-detail-content h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.blog-detail-content p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
    font-size: 1.05rem;
}

.blog-detail-content ul,
.blog-detail-content ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
    color: var(--text-light);
}

.blog-detail-content li {
    margin-bottom: 0.75rem;
    line-height: 1.7;
}

.blog-detail-content li strong {
    color: var(--text-dark);
    font-weight: 600;
}

.blog-tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.tag-label {
    font-weight: 600;
    color: var(--text-dark);
}

.tag {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: var(--bg-light);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 20px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.tag:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.blog-share {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.blog-share h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

/* Social Share Section - Modern Design */
.share-section {
    margin: 3rem 0;
    padding: 2.5rem;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 20px;
    border: 1px solid rgba(37, 99, 235, 0.1);
    position: relative;
    overflow: hidden;
}

.share-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--primary-color));
    background-size: 200% 100%;
    animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.share-section-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.share-section-header i {
    font-size: 1.5rem;
    color: var(--primary-color);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.share-section-header h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.share-buttons {
    display: flex;
    flex-wrap: nowrap;
    gap: 0.875rem;
    margin-top: 1rem;
}

.share-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding: 1rem;
    border-radius: 12px;
    text-decoration: none;
    color: white;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    flex: 1 1 0;
    min-width: 0;
    width: 50px;
    height: 50px;
    aspect-ratio: 1 / 1;
}

.share-btn span {
    display: none !important;
}

.share-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.share-btn:hover::before {
    left: 100%;
}

.share-btn i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.share-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.share-btn:hover i {
    transform: scale(1.2) rotate(5deg);
}

.share-btn.facebook {
    background: linear-gradient(135deg, #1877f2 0%, #166fe5 100%);
}

.share-btn.facebook:hover {
    background: linear-gradient(135deg, #166fe5 0%, #1877f2 100%);
    box-shadow: 0 8px 20px rgba(24, 119, 242, 0.4);
}

.share-btn.twitter {
    background: linear-gradient(135deg, #1da1f2 0%, #1a91da 100%);
}

.share-btn.twitter:hover {
    background: linear-gradient(135deg, #1a91da 0%, #1da1f2 100%);
    box-shadow: 0 8px 20px rgba(29, 161, 242, 0.4);
}

.share-btn.linkedin {
    background: linear-gradient(135deg, #0077b5 0%, #006399 100%);
}

.share-btn.linkedin:hover {
    background: linear-gradient(135deg, #006399 0%, #0077b5 100%);
    box-shadow: 0 8px 20px rgba(0, 119, 181, 0.4);
}

.share-btn.email {
    background: linear-gradient(135deg, #6b7280 0%, #4b5563 100%);
}

.share-btn.email:hover {
    background: linear-gradient(135deg, #4b5563 0%, #6b7280 100%);
    box-shadow: 0 8px 20px rgba(107, 114, 128, 0.4);
}

.share-btn.whatsapp {
    background: linear-gradient(135deg, #25d366 0%, #20ba5a 100%);
}

.share-btn.whatsapp:hover {
    background: linear-gradient(135deg, #20ba5a 0%, #25d366 100%);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
}

.share-btn.telegram {
    background: linear-gradient(135deg, #0088cc 0%, #006ba3 100%);
}

.share-btn.telegram:hover {
    background: linear-gradient(135deg, #006ba3 0%, #0088cc 100%);
    box-shadow: 0 8px 20px rgba(0, 136, 204, 0.4);
}

/* Blog Sidebar */
.blog-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.sidebar-widget {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.sidebar-widget h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.related-post {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.related-post:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.related-post img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 14px;
    flex-shrink: 0;
    display: block;
}

.related-post h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    margin-top: 0;
    line-height: 1.4;
}

.related-post h4 a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.related-post h4 a:hover {
    color: var(--primary-color);
}

.related-post p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

.post-date {
    font-size: 0.85rem;
    color: var(--text-light);
}

.category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-list li {
    margin-bottom: 0.75rem;
}

.category-list a {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    color: var(--text-light);
    text-decoration: none;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}

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

.category-list i {
    font-size: 0.75rem;
    color: var(--primary-color);
    margin-right: 0.5rem;
}

.category-list span {
    background: var(--bg-white);
    padding: 0.2rem 0.6rem;
    border-radius: 12px;
    font-size: 0.85rem;
    color: var(--text-light);
}

.cta-widget {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    text-align: center;
}

.cta-widget h3 {
    color: white;
}

.cta-widget p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

.cta-widget .btn-primary {
    background: white;
    color: var(--primary-color);
}

.cta-widget .btn-primary:hover {
    background: var(--bg-light);
}

/* Responsive Blog Detail */
@media (max-width: 1024px) {
    .blog-detail-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .blog-sidebar {
        order: -1;
        display: flex;
        flex-direction: column;
    }
    
    .sidebar-widget:first-child {
        order: 2;
    }
    
    .sidebar-widget:nth-child(2) {
        order: 1;
    }
    
    .sidebar-widget:last-child {
        order: 3;
    }
    
    .blog-detail h1 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .blog-detail {
        padding: 2rem 0;
    }
    
    .blog-detail-wrapper {
        display: flex;
        flex-direction: column;
    }
    
    .blog-sidebar {
        order: 2;
        display: flex;
        flex-direction: column;
    }
    
    .sidebar-widget:first-child {
        order: 3;
    }
    
    .sidebar-widget:nth-child(2) {
        order: 2;
    }
    
    .sidebar-widget:last-child {
        order: 1;
    }
    
    .blog-detail-main {
        order: 1;
    }
    
    .blog-detail h1 {
        font-size: 1.75rem;
    }
    
    .blog-detail-content h2 {
        font-size: 1.5rem;
    }
    
    .blog-detail-content h3 {
        font-size: 1.2rem;
    }
    
    .blog-detail-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
    
    .share-buttons {
        flex-wrap: nowrap;
        gap: 0.5rem;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .share-btn {
        width: 40px;
        height: 40px;
        flex: 0 0 auto;
        min-width: 40px;
        padding: 0.75rem;
        font-size: 0.75rem;
    }
    
    .blog-page-header {
        padding: 3rem 0;
        margin-top: 70px;
    }
    
    .blog-header-content h1 {
        font-size: 2rem;
    }
    
    .blog-header-content p {
        font-size: 1rem;
    }
    
    .share-btn span {
        display: none !important;
    }
    
    .share-btn i {
        font-size: 1rem;
    }
    
    .related-post {
        flex-direction: column;
    }
    
    .related-post img {
        width: 100%;
        height: 180px;
        border-radius: 14px;
    }
    
    .category-list {
        text-align: left;
    }
}
