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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Cairo', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
    line-height: 1.6;
    color: #1f2937;
    background-color: #ffffff;
    direction: rtl;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

.faq-container {
    max-width: 900px;
}

/* ===================================
   Section Styles
   =================================== */
.section {
    padding: 80px 0;
}

.section-gray {
    background: linear-gradient(to bottom, #f9fafb, #ffffff);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 15px;
}

.section-header p {
    font-size: 1.1rem;
    color: #6b7280;
    max-width: 700px;
    margin: 0 auto;
}

/* ===================================
   Badge
   =================================== */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #dbeafe;
    color: #1e40af;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.badge i {
    width: 20px;
    height: 20px;
}

/* ===================================
   Hero Section
   =================================== */
.hero-section {
    position: relative;
    background: linear-gradient(135deg, #eff6ff 0%, #ffffff 50%, #eff6ff 100%);
    padding: 100px 0 150px;
    overflow: hidden;
}

.math-symbols {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    opacity: 0.05;
}

.symbol {
    position: absolute;
    font-size: 8rem;
    color: #2563eb;
    font-weight: bold;
}

.symbol-1 { top: 80px; right: 80px; }
.symbol-2 { top: 160px; left: 80px; }
.symbol-3 { bottom: 160px; right: 160px; }
.symbol-4 { bottom: 80px; left: 160px; }

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    text-align: center;
}

.hero-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 20px;
    line-height: 1.3;
}

.hero-description {
    font-size: 1.1rem;
    color: #4b5563;
    margin-bottom: 30px;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto 30px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin: 30px 0;
}

.stat-card {
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    text-align: center;
}

.stat-card i {
    width: 28px;
    height: 28px;
    color: #2563eb;
    margin: 0 auto 10px;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: #6b7280;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #2563eb, #1e40af);
    color: white;
    padding: 16px 32px;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
    transition: all 0.3s ease;
    margin-top: 20px;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(37, 99, 235, 0.4);
}

.cta-button i {
    width: 22px;
    height: 22px;
}

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

.image-wrapper {
    position: relative;
    background: white;
    padding: 10px;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
    transform: rotate(-2deg);
    transition: transform 0.3s ease;
}

.image-wrapper:hover {
    transform: rotate(0deg);
}

.image-wrapper::before {
    content: '';
    position: absolute;
    inset: -10px;
    background: linear-gradient(135deg, #60a5fa, #2563eb);
    border-radius: 35px;
    z-index: -1;
    transform: rotate(3deg);
}

.image-wrapper img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
}

.floating-icon {
    position: absolute;
    background: #f97316;
    padding: 15px;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    font-size: 1.8rem;
    animation: bounce 2s infinite;
}

.icon-1 {
    top: -20px;
    left: -20px;
    transform: rotate(12deg);
}

.icon-2 {
    bottom: -20px;
    right: -20px;
    background: #10b981;
    transform: rotate(-12deg);
    animation-delay: 0.5s;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0) rotate(12deg); }
    50% { transform: translateY(-10px) rotate(12deg); }
}

.wave-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

.wave-divider svg {
    width: 100%;
    display: block;
}

/* ===================================
   About Section
   =================================== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
}

.image-container {
    background: linear-gradient(135deg, #dbeafe, #eff6ff);
    border-radius: 20px;
    padding: 30px;
}

.image-container img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.floating-card {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border-top: 4px solid #f97316;
    display: flex;
    align-items: center;
    gap: 15px;
    max-width: 250px;
}

.floating-card i {
    width: 28px;
    height: 28px;
    color: #f97316;
    background: #fed7aa;
    padding: 10px;
    border-radius: 10px;
}

.card-title {
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 3px;
}

.floating-card p {
    font-size: 0.9rem;
    color: #6b7280;
    margin: 0;
}

.intro-card {
    background: linear-gradient(135deg, #dbeafe, transparent);
    padding: 30px;
    border-radius: 15px;
    border-right: 4px solid #2563eb;
    margin-bottom: 30px;
}

.intro-card h3 {
    color: #1e3a8a;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.intro-card p {
    color: #374151;
    line-height: 1.8;
}

.highlight {
    color: #2563eb;
    font-weight: 600;
}

.features-list {
    display: grid;
    gap: 20px;
}

.feature-item {
    display: flex;
    gap: 15px;
    background: white;
    padding: 20px;
    border-radius: 12px;
    border: 2px solid #f3f4f6;
    transition: all 0.3s ease;
}

.feature-item:hover {
    border-color: #bfdbfe;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.feature-item i {
    width: 24px;
    height: 24px;
    color: #2563eb;
    background: #dbeafe;
    padding: 10px;
    border-radius: 10px;
    flex-shrink: 0;
}

.feature-title {
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 5px;
}

.feature-item p {
    font-size: 0.95rem;
    color: #6b7280;
    margin: 0;
}

/* ===================================
   Grades Section
   =================================== */
.grades-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.grade-card {
    border-radius: 20px;
    padding: 35px;
    border: 2px solid;
    transition: all 0.3s ease;
}

.grade-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.grade-card.blue {
    background: #eff6ff;
    border-color: #bfdbfe;
}

.grade-card.green {
    background: #f0fdf4;
    border-color: #bbf7d0;
}

.grade-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.grade-header i {
    width: 35px;
    height: 35px;
    padding: 15px;
    border-radius: 15px;
}

.grade-card.blue .grade-header i {
    background: #dbeafe;
    color: #2563eb;
}

.grade-card.green .grade-header i {
    background: #d1fae5;
    color: #10b981;
}

.grade-header h3 {
    font-size: 1.4rem;
    margin-bottom: 5px;
}

.grade-card.blue h3 {
    color: #1e3a8a;
}

.grade-card.green h3 {
    color: #065f46;
}

.grade-header p {
    font-size: 0.95rem;
    color: #6b7280;
    margin: 0;
}

.grade-list {
    display: grid;
    gap: 12px;
}

.grade-item {
    background: white;
    padding: 15px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #374151;
}

.grade-item::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.grade-card.blue .grade-item::before {
    background: #2563eb;
}

.grade-card.green .grade-item::before {
    background: #10b981;
}

.curriculum-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.curriculum-card {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 15px;
    padding: 25px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: all 0.3s ease;
}

.curriculum-card:hover {
    border-color: #fcd34d;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.curriculum-card i {
    width: 28px;
    height: 28px;
    color: #f97316;
    background: #fed7aa;
    padding: 12px;
    border-radius: 10px;
    flex-shrink: 0;
}

.curriculum-card h4 {
    color: #1f2937;
    margin-bottom: 8px;
}

.curriculum-card p {
    font-size: 0.95rem;
    color: #6b7280;
    margin: 0;
}

/* ===================================
   Features Section
   =================================== */
.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
}

.feature-card {
    border-radius: 15px;
    padding: 30px;
    border: 2px solid;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.feature-card i {
    width: 32px;
    height: 32px;
    padding: 15px;
    border-radius: 15px;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.feature-card:hover i {
    transform: scale(1.1);
}

.feature-card h3 {
    font-size: 1.15rem;
    margin-bottom: 12px;
    color: #1f2937;
    line-height: 1.5;
}

.feature-card p {
    font-size: 0.95rem;
    color: #6b7280;
    line-height: 1.7;
}

.feature-card.yellow {
    background: #fef3c7;
    border-color: #fde68a;
}

.feature-card.yellow i {
    background: #fde68a;
    color: #d97706;
}

.feature-card.blue {
    background: #dbeafe;
    border-color: #bfdbfe;
}

.feature-card.blue i {
    background: #bfdbfe;
    color: #2563eb;
}

.feature-card.green {
    background: #d1fae5;
    border-color: #a7f3d0;
}

.feature-card.green i {
    background: #a7f3d0;
    color: #059669;
}

.feature-card.purple {
    background: #e9d5ff;
    border-color: #d8b4fe;
}

.feature-card.purple i {
    background: #d8b4fe;
    color: #9333ea;
}

.feature-card.orange {
    background: #fed7aa;
    border-color: #fdba74;
}

.feature-card.orange i {
    background: #fdba74;
    color: #ea580c;
}

.feature-card.pink {
    background: #fce7f3;
    border-color: #fbcfe8;
}

.feature-card.pink i {
    background: #fbcfe8;
    color: #ec4899;
}

.cta-box {
    text-align: center;
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
    border-radius: 20px;
    padding: 50px 30px;
    border: 2px solid #93c5fd;
    margin-top: 60px;
}

.cta-box h3 {
    color: #1e3a8a;
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.cta-box p {
    color: #374151;
    font-size: 1.1rem;
    margin-bottom: 25px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* ===================================
   Pricing Section
   =================================== */
.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.pricing-card {
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.pricing-card.blue {
    background: #eff6ff;
    border-color: #bfdbfe;
}

.pricing-card.green {
    background: #f0fdf4;
    border-color: #bbf7d0;
}

.pricing-header {
    padding: 30px;
    color: white;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.pricing-card.blue .pricing-header {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
}

.pricing-card.green .pricing-header {
    background: linear-gradient(135deg, #10b981, #059669);
}

.pricing-header i {
    width: 35px;
    height: 35px;
    background: rgba(255,255,255,0.2);
    padding: 15px;
    border-radius: 15px;
}

.pricing-header h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.pricing-header p {
    font-size: 0.95rem;
    opacity: 0.9;
    margin: 0;
}

.pricing-features {
    padding: 30px;
    list-style: none;
}

.pricing-features li {
    padding: 12px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #374151;
}

.check {
    color: #10b981;
    font-weight: bold;
    font-size: 1.2rem;
}

.details-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 40px;
}

.detail-card {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
}

.detail-card:hover {
    border-color: #fcd34d;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.detail-card i {
    width: 32px;
    height: 32px;
    color: #f97316;
    background: #fed7aa;
    padding: 15px;
    border-radius: 15px;
    margin: 0 auto 15px;
}

.detail-label {
    font-size: 0.9rem;
    color: #6b7280;
    margin-bottom: 8px;
}

.detail-value {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 8px;
}

.detail-card p {
    font-size: 0.85rem;
    color: #9ca3af;
    margin: 0;
}

.price-info {
    background: linear-gradient(135deg, #fed7aa, #fef3c7);
    border: 2px solid #fde68a;
    border-radius: 20px;
    padding: 40px;
    text-align: center;
}

.price-info i {
    width: 40px;
    height: 40px;
    color: #f97316;
    background: #fed7aa;
    padding: 15px;
    border-radius: 50%;
    margin: 0 auto 20px;
}

.price-info h3 {
    color: #92400e;
    font-size: 1.6rem;
    margin-bottom: 15px;
}

.price-info p {
    color: #374151;
    font-size: 1.05rem;
    margin-bottom: 25px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.whatsapp-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #f97316;
    color: white;
    padding: 15px 30px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 8px 20px rgba(249, 115, 22, 0.3);
    transition: all 0.3s ease;
}

.whatsapp-link:hover {
    background: #ea580c;
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(249, 115, 22, 0.4);
}

.whatsapp-link i {
    width: 22px;
    height: 22px;
}

/* ===================================
   Testimonials Section
   =================================== */
.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    margin-bottom: 50px;
}

.testimonial-card {
    border-radius: 20px;
    padding: 35px;
    border: 2px solid;
    position: relative;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.testimonial-card.blue {
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    border-color: #bfdbfe;
}

.testimonial-card.green {
    background: linear-gradient(135deg, #f0fdf4, #d1fae5);
    border-color: #a7f3d0;
}

.testimonial-card.orange {
    background: linear-gradient(135deg, #fff7ed, #fed7aa);
    border-color: #fdba74;
}

.testimonial-card.purple {
    background: linear-gradient(135deg, #faf5ff, #e9d5ff);
    border-color: #d8b4fe;
}

.quote-icon {
    position: absolute;
    top: 30px;
    left: 30px;
    font-size: 4rem;
    opacity: 0.1;
    font-family: Georgia, serif;
}

.stars {
    color: #fbbf24;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.testimonial-card p {
    color: #374151;
    line-height: 1.8;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
    z-index: 1;
}

.testimonial-author i {
    width: 24px;
    height: 24px;
    background: white;
    padding: 12px;
    border-radius: 50%;
    color: #6b7280;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.author-name {
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 3px;
}

.author-role {
    font-size: 0.9rem;
    color: #6b7280;
}

.testimonial-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.stat-box {
    text-align: center;
    padding: 25px;
    border-radius: 15px;
    border: 2px solid;
}

.stat-box.blue {
    background: #eff6ff;
    border-color: #bfdbfe;
}

.stat-box.green {
    background: #f0fdf4;
    border-color: #bbf7d0;
}

.stat-box.orange {
    background: #fff7ed;
    border-color: #fed7aa;
}

.stat-box.purple {
    background: #faf5ff;
    border-color: #e9d5ff;
}

.stat-num {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.stat-box.blue .stat-num {
    color: #1e3a8a;
}

.stat-box.green .stat-num {
    color: #065f46;
}

.stat-box.orange .stat-num {
    color: #9a3412;
}

.stat-box.purple .stat-num {
    color: #6b21a8;
}

.stat-box p {
    font-size: 0.95rem;
    color: #6b7280;
    margin: 0;
}

/* ===================================
   FAQ Section
   =================================== */
.faq-list {
    margin-bottom: 50px;
}

.faq-item {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 15px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active {
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
    border-color: #93c5fd;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px;
    cursor: pointer;
    gap: 20px;
    user-select: none;
}

.faq-question span {
    font-weight: 600;
    color: #1f2937;
    flex: 1;
}

.faq-item.active .faq-question span {
    color: #1e40af;
}

.faq-question i {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 25px 25px;
    color: #374151;
    line-height: 1.8;
    border-top: 2px solid rgba(255,255,255,0.5);
    padding-top: 20px;
    margin: 0 25px 25px;
}

.faq-cta {
    text-align: center;
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
    border-radius: 20px;
    padding: 50px 30px;
    border: 2px solid #93c5fd;
}

.faq-cta i {
    width: 50px;
    height: 50px;
    color: #2563eb;
    margin: 0 auto 20px;
}

.faq-cta h3 {
    color: #1e3a8a;
    font-size: 1.6rem;
    margin-bottom: 12px;
}

.faq-cta p {
    color: #374151;
    margin-bottom: 25px;
}

/* ===================================
   Contact Section
   =================================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
}

.contact-form {
    background: white;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    color: #374151;
    margin-bottom: 10px;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-size: 1rem;
    font-family: 'Cairo', sans-serif;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3b82f6;
}

.form-group textarea {
    resize: vertical;
}

.submit-button {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, #2563eb, #1e40af);
    color: white;
    padding: 16px;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
    transition: all 0.3s ease;
}

.submit-button:hover {
    background: linear-gradient(135deg, #1e40af, #1e3a8a);
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(37, 99, 235, 0.4);
}

.submit-button i {
    width: 22px;
    height: 22px;
}

.contact-info-wrapper {
    display: grid;
    gap: 25px;
}

.contact-info {
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
    border-radius: 20px;
    padding: 35px;
    border: 2px solid #93c5fd;
}

.contact-info h3 {
    color: #1e3a8a;
    margin-bottom: 25px;
    font-size: 1.4rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 18px;
    background: white;
    padding: 18px;
    border-radius: 12px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
}

.contact-item:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.contact-item.whatsapp:hover {
    background: #f0fdf4;
}

.contact-item i {
    width: 28px;
    height: 28px;
    padding: 12px;
    border-radius: 10px;
    flex-shrink: 0;
}

.contact-item:nth-child(1) i {
    background: #d1fae5;
    color: #10b981;
}

.contact-item:nth-child(2) i {
    background: #dbeafe;
    color: #2563eb;
}

.contact-item:nth-child(3) i {
    background: #e9d5ff;
    color: #9333ea;
}

.contact-item:nth-child(4) i {
    background: #fed7aa;
    color: #f97316;
}

.contact-label {
    font-size: 0.9rem;
    color: #6b7280;
    margin-bottom: 3px;
}

.contact-value {
    font-weight: 600;
    color: #1f2937;
}

.working-hours {
    background: linear-gradient(135deg, #fed7aa, #fef3c7);
    border-radius: 20px;
    padding: 35px;
    border: 2px solid #fde68a;
}

.working-hours h3 {
    color: #92400e;
    margin-bottom: 20px;
    font-size: 1.4rem;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    color: #374151;
}

.hours-row:not(:last-child) {
    border-bottom: 1px solid rgba(146, 64, 14, 0.1);
}

.hours-note {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 2px solid rgba(146, 64, 14, 0.2);
    font-size: 0.95rem;
    color: #6b7280;
}

/* ===================================
   Footer
   =================================== */
.footer {
    margin-top: 60px;
    padding-top: 35px;
    border-top: 2px solid #e5e7eb;
    text-align: center;
}

.footer p {
    color: #6b7280;
    margin-bottom: 15px;
}

.footer-copy {
    font-size: 0.9rem;
    color: #9ca3af;
}

/* ===================================
   WhatsApp Float Button
   =================================== */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    left: 25px;
    z-index: 1000;
}

.whatsapp-tooltip {
    position: absolute;
    bottom: 80px;
    left: 0;
    background: white;
    padding: 18px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    border: 2px solid #d1fae5;
    max-width: 250px;
    animation: bounce 2s infinite;
}

.whatsapp-tooltip.hidden {
    display: none;
}

.tooltip-close {
    position: absolute;
    top: 8px;
    left: 8px;
    background: none;
    border: none;
    font-size: 1.2rem;
    color: #9ca3af;
    cursor: pointer;
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tooltip-close:hover {
    color: #374151;
}

.whatsapp-tooltip p {
    margin: 0;
    padding-right: 25px;
    color: #1f2937;
    font-size: 0.95rem;
    line-height: 1.5;
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 35px;
    width: 18px;
    height: 18px;
    background: white;
    border-left: 2px solid #d1fae5;
    border-bottom: 2px solid #d1fae5;
    transform: rotate(-45deg);
}

.whatsapp-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 50%;
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
    color: white;
    text-decoration: none;
    position: relative;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-button:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(16, 185, 129, 0.5);
}

.whatsapp-button i {
    width: 32px;
    height: 32px;
}

.badge-dot {
    position: absolute;
    top: -3px;
    right: -3px;
    background: #ef4444;
    color: white;
    font-size: 0.7rem;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: ping 1.5s infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4), 0 0 0 0 rgba(16, 185, 129, 0.7);
    }
    50% {
        box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4), 0 0 0 15px rgba(16, 185, 129, 0);
    }
}

@keyframes ping {
    75%, 100% {
        transform: scale(2);
        opacity: 0;
    }
}

/* ===================================
   Responsive Design
   =================================== */
@media (min-width: 768px) {
    .hero-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .hero-content {
        text-align: right;
    }
    
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .grades-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .curriculum-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .details-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonial-stats {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 767px) {
    .section {
        padding: 50px 0;
    }
    
    .section-header h2 {
        font-size: 1.6rem;
    }
    
    .hero-section {
        padding: 60px 0 100px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .image-wrapper img {
        height: 300px;
    }
    
    .floating-card {
        position: static;
        margin-top: 20px;
    }
}
