/* ========================================
   MODERN QURAN ACADEMY - BLUE THEME
   ======================================== */

:root {
    --primary-orange: #2E5BFF;
    --dark-orange: #0B1C3D;
    --light-orange: #4FA3FF;
    --accent-orange: #E6F0FF;
    --dark-bg: #1A1A2E;
    --light-bg: #F8F9FA;
    --white: #FFFFFF;
    --black: #0F0F0F;
    --gray: #6C757D;
    --light-gray: #E9ECEF;
    --success: #28A745;
    --gradient-1: linear-gradient(135deg, #2E5BFF 0%, #4FA3FF 100%);
    --gradient-2: linear-gradient(135deg, #1A1A2E 0%, #16213E 100%);
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.16);
    --shadow-xl: 0 16px 48px rgba(0,0,0,0.2);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', 'Poppins', sans-serif;
    line-height: 1.7;
    color: var(--black);
    overflow-x: hidden;
    background: #ffffff;
    min-height: 100vh;
}

section {
    border-bottom: 1px solid #eee;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto 50px;
    line-height: 1.8;
}

/* ========================================
   HEADER & NAVIGATION
   ======================================== */

.header {
    background: #ffffff;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1px 3px;
    transition: all 0.3s ease;
    border-bottom: 2px solid #2E5BFF;
}

.header .container {
    padding-left: 0;
    padding-right: 0;
}

.header.scrolled {
    box-shadow: var(--shadow-md);
    padding: 1px 3px;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    height: 90px;
    width: auto;
    object-fit: contain;
}



.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
    align-items: center;
}

.mobile-cta {
    display: none;
}

.mobile-menu-btn {
    display: none;
}

.nav-menu a {
    text-decoration: none;
    color: var(--black);
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #2E5BFF;
    transition: width 0.3s;
}

.nav-menu a:hover {
    color: #2E5BFF;
}

.nav-menu a:hover::after {
    width: 100%;
}

/* ========================================
   BUTTONS
   ======================================== */

.btn {
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn i {
    font-size: 18px;
}

.btn-primary {
    background: #0B1C3D;
    color: var(--white);
    box-shadow: 0 4px 15px rgba(46, 91, 255, 0.3);
    border: 1px solid #2E5BFF;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(79, 163, 255, 0.4);
    border-color: #4FA3FF;
    background: #102a5c;
}

.btn-secondary {
    background: transparent;
    color: #4FA3FF;
    border: 1px solid #2E5BFF;
}

.btn-secondary:hover {
    background: #2E5BFF;
    color: var(--white);
    border-color: #2E5BFF;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--black);
    border: 2px solid #2E5BFF;
    padding: 10px 24px;
    font-size: 14px;
}

.btn-outline:hover {
    background: var(--primary-orange);
    color: var(--white);
}

.btn-sm {
    padding: 8px 20px;
    font-size: 12px;
}

.btn-large {
    padding: 18px 48px;
    font-size: 17px;
}

/* ========================================
   HERO SECTION
   ======================================== */

.hero {
    min-height: 85vh;
    background: linear-gradient(135deg, rgba(11, 28, 61, 0.95) 0%, rgba(11, 28, 61, 0.7) 50%, rgba(11, 28, 61, 0.4) 100%), url('Uploads/hero section background photo.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
    padding: 120px 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(46, 91, 255, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    max-width: 900px;
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-text h1 {
    font-size: clamp(36px, 5vw, 64px);
    margin-bottom: 24px;
    line-height: 1.1;
    font-weight: 800;
    color: var(--white);
    text-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.hero-text p {
    font-size: clamp(18px, 2vw, 22px);
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    max-width: 700px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

/* Updated button colors for hero consistency */
.hero .btn-primary {
    background: var(--primary-orange);
    border-color: var(--primary-orange);
}

.hero .btn-primary:hover {
    background: #1e4bd6;
    border-color: #1e4bd6;
}

.hero .btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero .btn-secondary:hover {
    background: var(--white);
    color: #0B1C3D;
    border-color: var(--white);
}

/* ========================================
   WHY CHOOSE SECTION
   ======================================== */

.why-choose {
    padding: 30px 0;
    background: transparent;
}

.why-choose h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 50px;
    color: var(--black);
    font-weight: 800;
    position: relative;
    display: inline-block;
    width: 100%;
}

.why-choose h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: #4FA3FF;
    border-radius: 2px;
}

.why-choose-content p {
    font-size: 17px;
    line-height: 1.9;
    margin-bottom: 25px;
    text-align: justify;
    color: var(--black);
    opacity: 0.8;
}

/* ========================================
   FEATURES SECTION
   ======================================== */

.features {
    padding: 30px 0;
    background: transparent;
    position: relative;
    overflow: hidden;
}

/* Background Pattern for Features */
.features::before {
    display: none;
}

.features h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 70px;
    color: var(--black);
    font-weight: 800;
    position: relative;
    display: inline-block;
    width: 100%;
    z-index: 1;
}

.features h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: #2E5BFF;
    border-radius: 2px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    position: relative;
    z-index: 1;
}

.feature-card {
    padding: 40px 30px;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid #eee;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(46, 91, 255, 0.1);
    border-color: #2E5BFF;
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    color: #1F4ED8;
    transition: all 0.4s;
    box-shadow: 0 0 20px rgba(46, 91, 255, 0.3);
}

.feature-card:hover .feature-icon {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 0 30px rgba(79, 163, 255, 0.6);
}

.feature-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #4FA3FF;
}

.feature-card p {
    color: var(--gray);
    line-height: 1.7;
    font-size: 15px;
}

/* ========================================
   COURSES SECTION
   ======================================== */

.courses {
    padding: 30px 0;
    background: transparent;
    position: relative;
    overflow: hidden;
}

/* Background Pattern for Courses */
.courses::before {
    display: none;
}

.courses h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 20px;
    color: var(--black);
    font-weight: 800;
    position: relative;
    display: inline-block;
    width: 100%;
    z-index: 1;
}

.courses h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: #2E5BFF;
    border-radius: 2px;
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    margin-top: 60px;
    position: relative;
    z-index: 1;
}

.course-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: all 0.4s ease;
    border: 1px solid #eee;
}

.course-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(46, 91, 255, 0.1);
    border-color: #2E5BFF;
}

.course-image {
    position: relative;
    overflow: hidden;
    height: 220px;
}

.course-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.course-card:hover .course-image img {
    transform: scale(1.1);
}

.course-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--gradient-1);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.course-content {
    padding: 25px;
}

.course-content h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #4FA3FF;
    font-weight: 700;
    line-height: 1.3;
}

.course-content p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--gray);
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.course-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    font-size: 13px;
    color: var(--gray);
}

.course-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.course-meta i {
    color: #4FA3FF;
}

.course-buttons {
    display: flex;
    gap: 12px;
}

/* ========================================
   TEACHERS SECTION
   ======================================== */

.teachers {
    padding: 30px 0;
    background: transparent;
}

.teachers h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 20px;
    color: var(--black);
    font-weight: 800;
    position: relative;
    display: inline-block;
    width: 100%;
}

.teachers h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: #4FA3FF;
    border-radius: 2px;
}

.teachers-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 35px;
    margin: 60px 0;
}

.teacher-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: all 0.4s;
    border: 1px solid #eee;
    width: 350px;
    max-width: 100%;
}

.teacher-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(46, 91, 255, 0.1);
    border-color: #2E5BFF;
}

.teacher-image {
    position: relative;
    overflow: hidden;
    height: 280px;
    background: transparent;
}

.teacher-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.9;
    transition: all 0.4s;
}

.teacher-card:hover .teacher-image img {
    transform: scale(1.1);
    opacity: 1;
}

.teacher-info {
    padding: 25px;
    text-align: center;
}

.teacher-info h3 {
    font-size: 22px;
    margin-bottom: 8px;
    color: #4FA3FF;
}

.teacher-title {
    color: var(--gray);
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 15px;
}

.teacher-languages {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

.teacher-languages span {
    background: var(--light-gray);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    color: var(--black);
}

.teacher-specialties {
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.teacher-specialties span {
    background: rgba(79, 163, 255, 0.1);
    color: #4FA3FF;
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 11px;
    font-weight: 600;
}





/* ========================================
   REVIEWS SECTION
   ======================================== */
.reviews {
    padding: 30px 0;
    background: transparent;
    position: relative;
    overflow: hidden;
}

.reviews::before {
    display: none;
}

.reviews h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 70px;
    color: var(--black);
    font-weight: 800;
    position: relative;
    z-index: 1;
}

.reviews h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: #2E5BFF;
    border-radius: 2px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
    position: relative;
    z-index: 1;
}

.review-card {
    padding: 25px;
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    text-align: left;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: var(--black);
    position: relative;
    overflow: hidden;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(46, 91, 255, 0.1);
    border-color: #2E5BFF;
    background: #fbfbff;
}

.review-header {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    gap: 15px;
}

.reviewer-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 2px solid rgba(0, 0, 0, 0.1);
}

.header-content {
    flex: 1;
    min-width: 0; /* Prevent overflow */
}

.name-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4px;
}

.name-row h4 {
    color: #4FA3FF;
    font-size: 16px;
    font-weight: 600;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding-right: 10px;
}

.google-logo {
    width: 20px;
    height: 20px;
    object-fit: contain;
    flex-shrink: 0;
}

.google-logo-btn {
    width: 18px;
    height: 18px;
    object-fit: contain;
    margin-right: 8px;
    vertical-align: middle;
}

.rating-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.review-stars {
    color: #F4B400;
    font-size: 13px;
    margin: 0;
    letter-spacing: 0.5px;
}

.review-date {
    color: var(--gray);
    font-size: 13px;
}

.review-body {
    position: relative;
    padding-right: 12px;
    flex: 1;
}

.review-text {
    color: var(--black);
    line-height: 1.6;
    font-size: 14px;
    margin: 0;
    font-style: normal;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    opacity: 0.8;
}

.review-indicator {
    position: absolute;
    right: 0;
    top: 5px;
    bottom: 5px;
    width: 3px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
}

/* Hide original reviewer-info block if it exists */
.reviewer-info {
    display: none;
}

/* ========================================
   FEE STRUCTURE SECTION
   ======================================== */

.fee-structure {
    padding: 30px 0;
    background: transparent;
}

.fee-structure h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 20px;
    color: var(--black);
    font-weight: 800;
    position: relative;
    display: inline-block;
    width: 100%;
}

.fee-structure h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--gradient-1);
    border-radius: 2px;
}

.fee-tabs-container {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
}

.fee-tab {
    padding: 12px 30px;
    border-radius: 30px;
    border: 2px solid #2E5BFF;
    background: transparent;
    color: #2E5BFF;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 16px;
}

.fee-tab.active, .fee-tab:hover {
    background: #2E5BFF;
    color: var(--white);
    box-shadow: 0 4px 15px rgba(46, 91, 255, 0.3);
}

.fee-content {
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.fee-table-wrapper {
    overflow-x: auto;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    background: #ffffff;
    border: 1px solid #2E5BFF;
}

.fee-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

.fee-table th {
    background: rgba(46, 91, 255, 0.1);
    color: #0B1C3D;
    padding: 20px;
    text-align: center;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 0.5px;
}

.fee-table td {
    padding: 18px;
    text-align: center;
    border-bottom: 1px solid #eee;
    color: var(--black);
    font-weight: 500;
}

.fee-table tr:last-child td {
    border-bottom: none;
}

.fee-table tr:hover td {
    background: rgba(46, 91, 255, 0.03);
}

/* ========================================
   FREE TRIAL SECTION & FORM
   ======================================== */

.trial-section {
    padding: 60px 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
    text-align: center;
    border-radius: 30px;
    margin: 50px 0;
    border: 1px solid #eee;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.trial-content h2 {
    font-size: 42px;
    margin-bottom: 20px;
    font-weight: 800;
    color: var(--black);
}

.trial-content p {
    font-size: 18px;
    margin-bottom: 40px;
    color: var(--gray);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.trial-content-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    justify-content: center;
    align-items: flex-start;
}

.trial-text {
    flex: 1;
    min-width: 300px;
    text-align: left;
    color: var(--black);
}

.trial-text h2 {
    font-size: 42px;
    margin-bottom: 20px;
    font-weight: 800;
}

.trial-text p {
    font-size: 18px;
    color: var(--gray);
    margin-bottom: 30px;
}

.trial-form-container {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
}

.trial-form-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    text-align: left;
    border: 1px solid #eee;
}

.trial-form-card h3 {
    text-align: center;
    margin-bottom: 25px;
    color: #0B1C3D;
    font-weight: 700;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--black);
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    background: #fdfdfd;
    border-radius: 10px;
    font-size: 15px;
    transition: all 0.3s;
    font-family: inherit;
    color: var(--black);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #2E5BFF;
    outline: none;
    box-shadow: 0 0 0 4px rgba(46, 91, 255, 0.1);
    background: rgba(255, 255, 255, 0.1);
}

.form-group select option {
    background: #ffffff;
    color: var(--black);
}

.phone-input-group {
    display: flex;
    gap: 10px;
}

.phone-code {
    background: #f5f5f5;
    padding: 12px 15px;
    border-radius: 10px;
    font-weight: 600;
    color: var(--black);
    display: flex;
    align-items: center;
    min-width: 60px;
    justify-content: center;
    border: 1px solid #ddd;
}

.btn-block {
    width: 100%;
    justify-content: center;
    margin-top: 10px;
}

/* ========================================
   FOOTER
   ======================================== */

.footer {
    background: #0B1C3D;
    padding: 80px 0 30px;
    color: var(--white);
    border-top: 5px solid #2E5BFF;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
}

.footer-logo-text {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 20px;
}

.footer-logo-text span {
    color: #4FA3FF;
}

.footer-section p {
    color: #a0a0a0;
    line-height: 1.8;
    margin-bottom: 25px;
    font-size: 14px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s;
}

.social-links a:hover {
    background: #4FA3FF;
    transform: translateY(-3px);
}

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 25px;
    color: var(--white);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: #a0a0a0;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-section ul li a:hover {
    color: #4FA3FF;
    padding-left: 5px;
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #a0a0a0;
    font-size: 14px;
}

.contact-info i {
    color: #4FA3FF;
    font-size: 16px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #888;
    font-size: 13px;
}

.footer-bottom i {
    color: #e74c3c;
    animation: pulse 2s infinite;
}

/* ========================================
   WHATSAPP FLOAT
   ======================================== */

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 1024px) {
    .features-grid, .courses-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .navbar {
        justify-content: space-between;
        padding: 5px 0;
    }

    .mobile-menu-btn {
        display: block;
        background: none;
        border: none;
        color: var(--black);
        font-size: 24px;
        cursor: pointer;
        z-index: 1001;
        margin-right: 15px;
        transition: transform 0.3s;
    }

    .mobile-menu-btn.active {
        transform: rotate(90deg);
        color: var(--primary-orange);
    }

    .logo-img {
        height: 60px;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: #ffffff;
        padding: 100px 40px;
        flex-direction: column;
        align-items: flex-start;
        gap: 25px;
        box-shadow: -10px 0 30px rgba(0,0,0,0.1);
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1000;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-menu li a {
        color: var(--black) !important;
        font-size: 18px;
        display: block;
        padding: 10px 0;
        border-bottom: 1px solid #f0f0f0;
    }

    .nav-cta {
        display: none;
    }

    .mobile-cta {
        display: block;
        width: 100%;
        margin-top: 20px;
    }

    .mobile-cta .btn {
        width: 100%;
        justify-content: center;
    }

    /* Hero Responsive */
    .hero {
        padding: 80px 0;
        text-align: center;
        min-height: auto;
    }

    .hero-content {
        margin: 0 auto;
    }

    .hero-text h1 {
        font-size: 32px;
        margin-bottom: 15px;
    }

    .hero-text p {
        font-size: 16px;
        margin-bottom: 30px;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
        flex-direction: column;
        gap: 15px;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
    }

    /* Grid layouts */
    .features-grid, .courses-grid, .teachers-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .trial-content-wrapper {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }
    
    .trial-text {
        text-align: center;
    }

    .trial-text ul li {
        justify-content: center;
    }

    .trial-form-card {
        padding: 25px 20px;
    }

    .whatsapp-float {
        bottom: 30px;
        right: 20px;
        width: 55px;
        height: 55px;
        font-size: 26px;
    }

    section {
        padding: 50px 0;
    }

    h2 {
        font-size: 32px !important;
    }
}
