/* ========================================
   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(--white);
    overflow-x: hidden;
    background: #0B1C3D;
    min-height: 100vh;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 700px;
    margin: 0 auto 50px;
    line-height: 1.8;
}

/* ========================================
   HEADER & NAVIGATION
   ======================================== */

.header {
    background: #0B1C3D;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 4px 3px;
    transition: all 0.3s ease;
    border-bottom: 1px solid #2E5BFF;
}

.header .container {
    padding-left: 0;
    padding-right: 0;
}

.header.scrolled {
    box-shadow: var(--shadow-md);
    padding: 4px 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(--white);
    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: #4FA3FF;
    transition: width 0.3s;
}

.nav-menu a:hover {
    color: #4FA3FF;
}

.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: rgba(46, 91, 255, 0.1);
    color: var(--white);
    border-color: #4FA3FF;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: #4FA3FF;
    border: 1px 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 {
    background: transparent;
    padding: 30px 0 40px;
    color: var(--white);
    position: relative;
    overflow: visible;
}

.hero::before {
    display: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-image {
    overflow: visible;
}

.hero-text h1 {
    font-size: 48px;
    margin-bottom: 24px;
    line-height: 1.2;
    font-weight: 800;
    background: linear-gradient(135deg, #fff 0%, #4FA3FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text p {
    font-size: 19px;
    margin-bottom: 35px;
    opacity: 0.95;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.stat-item {
    padding: 20px;
    background: transparent;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(46, 91, 255, 0.2);
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid #2E5BFF;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(79, 163, 255, 0.4);
    border-color: #4FA3FF;
}

.stat-item h3 {
    font-size: 32px;
    color: #4FA3FF;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.stat-item p {
    font-size: 14px;
    opacity: 0.9;
    color: #ffffff;
}

.hero-image img {
    width: 100%;
    max-width: 100%;
    display: block;
    margin: 0 auto;
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* ========================================
   WHY CHOOSE SECTION
   ======================================== */

.why-choose {
    padding: 30px 0;
    background: transparent;
}

.why-choose h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 50px;
    color: var(--white);
    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: #ffffff;
    opacity: 0.9;
}

/* ========================================
   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(--white);
    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: transparent;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(46, 91, 255, 0.2);
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid #2E5BFF;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(79, 163, 255, 0.4);
    border-color: #4FA3FF;
}

.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: #ffffff;
    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(--white);
    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: transparent;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(46, 91, 255, 0.2);
    transition: all 0.4s ease;
    border: 1px solid #2E5BFF;
}

.course-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(79, 163, 255, 0.4);
    border-color: #4FA3FF;
}

.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: #ffffff;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    opacity: 0.9;
}

.course-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    font-size: 13px;
    color: #ffffff;
    opacity: 0.8;
}

.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(--white);
    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: transparent;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    transition: all 0.4s;
    border: 1px solid #2E5BFF;
    width: 350px;
    max-width: 100%;
}

.teacher-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.4);
    border-color: #4FA3FF;
}

.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: #ffffff;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 15px;
    opacity: 0.9;
}

.teacher-languages {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

.teacher-languages span {
    background: rgba(255, 255, 255, 0.1);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    color: #ffffff;
    opacity: 0.8;
}

.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(--white);
    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: rgba(255, 255, 255, 0.02);
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    text-align: left;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    position: relative;
    overflow: hidden;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(46, 91, 255, 0.15);
    border-color: #2E5BFF;
    background: rgba(255, 255, 255, 0.04);
}

.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(255, 255, 255, 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: rgba(255, 255, 255, 0.5);
    font-size: 13px;
}

.review-body {
    position: relative;
    padding-right: 12px;
    flex: 1;
}

.review-text {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    font-size: 14px;
    margin: 0;
    font-style: normal;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.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(--white);
    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: var(--shadow-md);
    background: transparent;
    border: 1px solid #2E5BFF;
}

.fee-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

.fee-table th {
    background: rgba(46, 91, 255, 0.15);
    color: var(--white);
    padding: 20px;
    text-align: center;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 0.5px;
}

.fee-table td {
    padding: 18px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
    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: 30px 0;
    background: transparent;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.trial-content h2 {
    font-size: 42px;
    margin-bottom: 20px;
    font-weight: 800;
    color: var(--white);
}

.trial-content p {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.95;
    color: var(--white);
    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: white;
}

.trial-text h2 {
    font-size: 42px;
    margin-bottom: 20px;
    font-weight: 800;
}

.trial-text p {
    font-size: 18px;
    opacity: 0.95;
    margin-bottom: 30px;
}

.trial-form-container {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
}

.trial-form-card {
    background: transparent;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    text-align: left;
    border: 1px solid #2E5BFF;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--white);
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    font-size: 15px;
    transition: all 0.3s;
    font-family: inherit;
    color: var(--white);
}

.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: #0B1C3D;
    color: var(--white);
}

.phone-input-group {
    display: flex;
    gap: 10px;
}

.phone-code {
    background: rgba(255, 255, 255, 0.05);
    padding: 12px 15px;
    border-radius: 10px;
    font-weight: 600;
    color: var(--white);
    display: flex;
    align-items: center;
    min-width: 60px;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-block {
    width: 100%;
    justify-content: center;
    margin-top: 10px;
}

/* ========================================
   FOOTER
   ======================================== */

.footer {
    background: transparent;
    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) {
    .hero-content {
        gap: 30px;
    }
    
    .hero-text h1 {
        font-size: 40px;
    }
    
    .features-grid, .courses-grid, .teachers-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .navbar {
        justify-content: space-between;
    }

    .mobile-menu-btn {
        display: block;
        background: none;
        border: none;
        color: white;
        font-size: 24px;
        cursor: pointer;
        z-index: 1001;
        margin-right: 15px;
    }

    .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100vh;
    background: #0B1C3D;
    flex-direction: column;
    justify-content: center;
    transition: 0.4s;
    box-shadow: -5px 0 15px rgba(0,0,0,0.3);
    z-index: 1000;
}

    .nav-menu.active {
        right: 0;
    }

    .nav-cta {
        display: none;
    }

    .mobile-cta {
        display: block;
        margin-top: 20px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 20px;
    }

    .hero .container {
        padding-left: 0;
        padding-right: 0;
    }

    .hero {
        padding: 60px 0 80px;
    }

    .hero-text {
        display: contents;
    }

    .hero-text h1 {
        order: 1;
        font-size: 26px;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
        margin-bottom: 10px;
    }

    .hero-text p {
        order: 3;
        font-size: 16px;
        padding: 0 10px;
        margin-bottom: 30px;
    }

    .hero-image {
        order: 2;
        max-width: 100%;
        margin: 0 auto 20px;
        padding: 0;
        overflow: visible;
    }

    .hero-image img {
        width: 100%;
        height: auto;
        max-height: none;
        object-fit: contain;
    }

    .hero-buttons {
        order: 4;
        flex-direction: column;
        align-items: center;
        gap: 15px;
        margin-bottom: 40px;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 350px;
        justify-content: center;
    }

    .hero-stats {
        order: 5;
        grid-template-columns: 1fr;
        gap: 15px;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .features-grid, .courses-grid, .teachers-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .trial-content-wrapper {
        flex-direction: column;
        align-items: center;
    }
    
    .trial-text {
        text-align: center;
    }

    .whatsapp-float {
        bottom: 90px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 28px;
    }
}
