/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colors */
    --background: hsl(0, 0%, 100%);
    --foreground: hsl(270, 50%, 15%);
    --primary: hsl(270, 70%, 35%);
    --primary-foreground: hsl(0, 0%, 100%);
    --secondary: hsl(30, 100%, 50%);
    --secondary-foreground: hsl(0, 0%, 100%);
    --muted: hsl(270, 20%, 96%);
    --muted-foreground: hsl(270, 10%, 45%);
    --card: hsl(0, 0%, 100%);
    --card-foreground: hsl(270, 50%, 15%);
    --border: hsl(270, 20%, 90%);

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, hsl(230, 80%, 45%), hsl(270, 70%, 50%), hsl(330, 80%, 45%));
    --gradient-secondary: linear-gradient(135deg, hsl(30, 100%, 50%), hsl(20, 100%, 60%));
    --gradient-hero: linear-gradient(135deg, hsl(230, 80%, 45%) 0%, hsl(270, 70%, 50%) 50%, hsl(330, 80%, 45%) 100%);
    --gradient-overlay: linear-gradient(180deg, transparent 0%, hsla(270, 70%, 35%, 0.7) 100%);

    /* Shadows */
    --shadow-elevated: 0 10px 40px -10px hsla(270, 70%, 35%, 0.3);
    --shadow-glow: 0 0 40px hsla(30, 100%, 50%, 0.4);

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;

    /* Border Radius */
    --radius: 0.75rem;
    --radius-sm: 0.5rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--background);
    color: var(--foreground);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Animations */
@keyframes fade-in {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slide-in {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scale-in {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.animate-fade-in {
    animation: fade-in 0.6s ease-out;
}

.animate-slide-in {
    animation: slide-in 0.6s ease-out;
}

.animate-scale-in {
    animation: scale-in 0.6s ease-out;
}

/* Notification Banner */
.notification-banner {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    color: white;
    padding: 12px 0;
    font-size: 0.95rem;
    font-weight: 500;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.notification-banner marquee {
    color: white;
}

/* Top Bar */
.top-bar {
    background: var(--gradient-primary);
    color: var(--primary-foreground);
    padding: 0.25rem 0;
    /* Reduced from 0.35rem */
    font-size: 0.85rem;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.contact-info {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-foreground);
    text-decoration: none;
    transition: opacity 0.3s;
}

.contact-link:hover {
    opacity: 0.8;
}

.contact-link .icon {
    width: 1rem;
    height: 1rem;
}

.top-bar-buttons {
    display: flex;
    gap: 0.5rem;
}

/* Main Navigation */
.main-nav {
    position: sticky;
    top: 0;
    background: var(--background);
    z-index: 1000;
    transition: all 0.3s;
}

.main-nav.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 4rem;
    /* Reduced from 4.5rem */
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-circle {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: var(--primary-foreground);
    font-size: 1.25rem;
}

.logo-text h2 {
    font-size: 1.125rem;
    color: var(--foreground);
    margin: 0;
}

.logo-text p {
    font-size: 0.75rem;
    color: var(--muted-foreground);
    margin: 0;
}

.desktop-nav {
    display: none;
    gap: 2rem;
}

.nav-link {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--foreground);
    text-decoration: none;
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--primary);
}



.desktop-only {
    display: none;
}

.mobile-menu-btn {
    padding: 0.5rem;
    border: none;
    background: none;
    cursor: pointer;
    border-radius: var(--radius-sm);
    transition: background 0.3s;
}

.mobile-menu-btn:hover {
    background: var(--muted);
}

.mobile-menu-btn svg {
    width: 1.5rem;
    height: 1.5rem;
    stroke: var(--foreground);
}

.menu-icon,
.close-icon {
    display: block;
}

.mobile-menu-btn.active .menu-icon {
    display: none;
}

.mobile-menu-btn.active .close-icon {
    display: block;
}

.mobile-menu-btn:not(.active) .close-icon {
    display: none;
}

.mobile-menu {
    display: none;
    padding: 1rem 0;
    border-top: 1px solid var(--border);
    animation: fade-in 0.3s ease-out;
}

.mobile-menu.active {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-nav-link {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--foreground);
    text-decoration: none;
    padding: 0.5rem 0;
    transition: color 0.3s;
}

.mobile-nav-link:hover {
    color: var(--primary);
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: var(--gradient-overlay);
}

.hero-content {
    position: relative;
    z-index: 10;
    padding: 3rem 1rem;
}

.hero-text {
    max-width: 48rem;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary-foreground);
    margin-bottom: 1.5rem;
}

.text-secondary {
    color: var(--secondary);
}

.hero-description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-xl);
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s;
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.2);
}

.stat-icon {
    width: 2rem;
    height: 2rem;
    stroke: var(--secondary);
    margin-bottom: 0.75rem;
}

.stat-value {
    font-size: 1.875rem;
    font-weight: bold;
    color: var(--primary-foreground);
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
}

.hero-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 8rem;
    background: linear-gradient(to top, var(--background), transparent);
    z-index: 10;
}

/* About Section */
.about-section {
    padding: 3rem 0;
    background: var(--muted);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

.about-image {
    position: relative;
}

.image-glow {
    position: absolute;
    inset: -1rem;
    background: var(--gradient-primary);
    border-radius: 1.5rem;
    opacity: 0.2;
    filter: blur(2rem);
}

.image-wrapper {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-elevated);
}

.image-wrapper img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, hsla(270, 70%, 35%, 0.6), transparent);
}

.image-badge {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    right: 1.5rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-xl);
    padding: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.badge-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.25rem;
}

.badge-value {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--foreground);
}

.about-content {
    animation-delay: 0.2s;
}

.section-badge {
    display: inline-block;
    background: hsla(30, 100%, 50%, 0.1);
    color: var(--secondary);
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.25rem;
    font-weight: bold;
    color: var(--foreground);
    margin-bottom: 1.5rem;
}

.about-text {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.highlights {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.check-icon {
    width: 1.5rem;
    height: 1.5rem;
    stroke: var(--secondary);
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.highlight-item p {
    color: var(--foreground);
    font-weight: 500;
}

.info-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.info-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 1rem;
    transition: all 0.3s;
}

.info-card:hover {
    box-shadow: var(--shadow-elevated);
}

.info-value {
    font-size: 1.875rem;
    font-weight: bold;
    color: var(--primary);
    margin-bottom: 0.25rem;
}

.info-label {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

/* Courses Section */
.courses-section {
    padding: 3rem 0;
    background: var(--background);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-description {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    max-width: 42rem;
    margin: 0 auto;
}

.courses-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.course-card {
    position: relative;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.3s;
    overflow: hidden;
}

.course-card:hover {
    box-shadow: var(--shadow-elevated);
}

.card-bg {
    position: absolute;
    right: -2rem;
    top: -2rem;
    width: 8rem;
    height: 8rem;
    border-radius: 50%;
    background: var(--gradient-primary);
    opacity: 0.05;
    transition: opacity 0.3s;
}

.course-card:hover .card-bg {
    opacity: 0.1;
}

.course-icon {
    width: 4rem;
    height: 4rem;
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: transform 0.3s;
}

.course-card:hover .course-icon {
    transform: scale(1.1);
}

.course-icon svg {
    width: 2rem;
    height: 2rem;
    stroke: white;
}

.bg-purple {
    background: hsl(270, 70%, 60%);
}

.bg-blue {
    background: hsl(220, 80%, 55%);
}

.bg-green {
    background: hsl(142, 71%, 45%);
}

.bg-pink {
    background: hsl(330, 80%, 60%);
}

.bg-indigo {
    background: hsl(260, 80%, 60%);
}

.bg-orange {
    background: hsl(30, 100%, 50%);
}

.bg-cyan {
    background: hsl(190, 90%, 50%);
}

.bg-lime {
    background: hsl(80, 70%, 50%);
}

.course-name {
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--foreground);
    margin-bottom: 0.5rem;
    transition: color 0.3s;
}

.course-card:hover .course-name {
    color: var(--primary);
}

.course-desc {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.card-border {
    position: absolute;
    inset: 0;
    border: 2px solid transparent;
    border-radius: var(--radius-xl);
    transition: border-color 0.3s;
    pointer-events: none;
}

.course-card:hover .card-border {
    border-color: hsla(270, 70%, 35%, 0.2);
}

/* Contact Section */
.contact-section {
    padding: 3rem 0;
    background: var(--background);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    transition: all 0.3s;
}

.contact-card:hover {
    box-shadow: var(--shadow-elevated);
}

.contact-icon {
    width: 3rem;
    height: 3rem;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    stroke: var(--primary-foreground);
}

.contact-card h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 0.25rem;
}

.contact-card p {
    color: var(--muted-foreground);
}

.contact-form-wrapper {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 2rem;
    box-shadow: var(--shadow-elevated);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--foreground);
}

.form-group input,
.form-group textarea {
    padding: 0.75rem 1rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 1rem;
    color: var(--foreground);
    background: var(--background);
    transition: all 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px hsla(270, 70%, 35%, 0.1);
}

.form-group textarea {
    resize: vertical;
}

.footer {
    padding: 3rem 0;
    background: var(--gradient-primary);
    color: var(--primary-foreground);
}

.footer-content {
    padding: 3rem 1rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-logo .logo-circle {
    background: var(--secondary);
}

.footer-about h3 {
    font-size: 1.125rem;
    margin: 0;
}

.footer-about p {
    font-size: 0.75rem;
    margin: 0;
}

.footer-desc {
    font-size: 0.875rem;
    opacity: 0.9;
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    gap: 0.75rem;
}

.social-link {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.2);
}

.social-link svg {
    width: 1rem;
    height: 1rem;
    stroke: var(--primary-foreground);
}

.footer-links h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a {
    font-size: 0.875rem;
    color: var(--primary-foreground);
    text-decoration: none;
    opacity: 0.9;
    transition: opacity 0.3s, color 0.3s;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--secondary);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.footer-bottom p {
    font-size: 0.875rem;
    opacity: 0.9;
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
}

.footer-bottom-links a {
    font-size: 0.875rem;
    color: var(--primary-foreground);
    text-decoration: none;
    opacity: 0.9;
    transition: opacity 0.3s, color 0.3s;
}

.footer-bottom-links a:hover {
    opacity: 1;
    color: var(--secondary);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--primary-foreground);
}

.btn-primary:hover {
    opacity: 0.9;
}

.btn-secondary {
    background: var(--secondary);
    color: var(--secondary-foreground);
    box-shadow: var(--shadow-glow);
}

.btn-secondary:hover {
    background: hsl(30, 100%, 45%);
}

.btn-outline {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--primary-foreground);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
}

.btn-glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--primary-foreground);
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.2);
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1rem;
}

.btn-full {
    width: 100%;
}

.icon-right {
    width: 1.25rem;
    height: 1.25rem;
    margin-left: 0.5rem;
}

/* Utilities */
.icon {
    width: 1rem;
    height: 1rem;
    flex-shrink: 0;
}

/* Responsive Design */
@media (min-width: 640px) {
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .form-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .courses-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) {
    .desktop-nav {
        display: flex;
    }

    .mobile-menu-btn {
        display: none;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

@media (min-width: 1024px) {
    .hero-section {
        min-height: 700px;
    }

    .hero-title {
        font-size: 3.75rem;
    }

    .about-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .courses-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .desktop-only {
        display: block;
    }
}

/* Features Section */
.features-section {
    padding: 5rem 0;
    background: var(--muted);
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.feature-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 2rem;
    text-align: center;
    transition: all 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-elevated);
}

.feature-icon {
    width: 4rem;
    height: 4rem;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.feature-icon svg {
    width: 2rem;
    height: 2rem;
    stroke: white;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 1rem;
}

.feature-desc {
    color: var(--muted-foreground);
    line-height: 1.6;
}

/* News Section */
.news-section {
    padding: 5rem 0;
    background: var(--background);
}

.news-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.news-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: all 0.3s;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-elevated);
}

.news-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.news-card:hover .news-image img {
    transform: scale(1.05);
}

.news-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.3));
}

.news-content {
    padding: 1.5rem;
}

.news-date {
    font-size: 0.875rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.news-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 1rem;
    line-height: 1.4;
}

.news-excerpt {
    color: var(--muted-foreground);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.news-link {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s;
}

.news-link:hover {
    color: var(--secondary);
}

.no-news,
.no-feedback {
    text-align: center;
    color: var(--muted-foreground);
    font-style: italic;
    grid-column: 1 / -1;
}

/* Testimonials Section */
.testimonials-section {
    padding: 5rem 0;
    background: var(--muted);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.testimonial-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 2rem;
    transition: all 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-elevated);
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.testimonial-content p {
    color: var(--foreground);
    font-style: italic;
    line-height: 1.6;
    position: relative;
}

.testimonial-content p::before {
    content: '"';
    font-size: 3rem;
    color: var(--primary);
    opacity: 0.3;
    position: absolute;
    top: -1rem;
    left: -1rem;
}

.testimonial-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.author-info h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 0.25rem;
}

.author-info p {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.rating {
    color: var(--secondary);
    font-size: 1.125rem;
}

/* Login Forms */
.login-section {
    padding: 5rem 0;
    background: var(--muted);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.login-container {
    max-width: 400px;
    margin: 0 auto;
}

.login-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 2rem;
    box-shadow: var(--shadow-elevated);
}

.login-header {
    text-align: center;
    margin-bottom: 2rem;
}

.login-tabs {
    display: flex;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid var(--border);
}

.login-tab {
    flex: 1;
    padding: 1rem;
    background: none;
    border: none;
    font-family: inherit;
    font-weight: 500;
    color: var(--muted-foreground);
    cursor: pointer;
    transition: all 0.3s;
    border-bottom: 2px solid transparent;
}

.login-tab.active {
    color: var(--primary);
    border-bottom-color: var(--primary);
}

.login-form {
    display: none;
}

.login-form.active {
    display: block;
}

/* Responsive Design Updates */
@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .news-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}