/* ============================================
   EDUWELL PAGES - ADDITIONAL STYLESHEET
   ============================================ */

/* ===== PAGE HERO ===== */
.page-hero {
    background: linear-gradient(135deg, var(--blue) 0%, var(--yellow) 100%);
    padding: 100px 0 80px;
    text-align: center;
    color: var(--white);
}

.breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
}

.breadcrumb a {
    color: #F0C227;
    text-decoration: none;
    transition: all 0.3s ease;
}

.breadcrumb a:hover {
    color: #ffffff;
}

.breadcrumb i {
    font-size: 0.8rem;
}

/* ===== ABOUT PAGE STYLES ===== */
.about-story {
    padding: 80px 0;
    background: #ffffff;
}

.about-story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-story-text h6 {
    color: #F0C227;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.about-story-text h2 {
    font-size: 2.5rem;
    color: #1A2658;
    margin-bottom: 1.5rem;
}

.about-story-text p {
    color: #666666;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-highlights {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.highlight-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.highlight-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #F0C227, #1A2658);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.highlight-item h4 {
    color: #1A2658;
    margin-bottom: 0.5rem;
}

.highlight-item p {
    color: #666666;
    margin: 0;
}

.about-story-image {
    position: relative;
}

.about-story-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.experience-badge {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: #F0C227;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.experience-badge h3 {
    font-size: 3rem;
    color: #1A2658;
    margin-bottom: 0.5rem;
}

.experience-badge p {
    color: #1A2658;
    font-weight: 600;
    margin: 0;
}

/* ===== MISSION & VISION ===== */
.mission-vision {
    padding: 80px 0;
    background: #f8f9fa;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

.mv-card {
    background: #ffffff;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.mv-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.mv-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #F0C227, #1A2658);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 2rem;
}

.mv-card h3 {
    font-size: 2rem;
    color: #1A2658;
    margin-bottom: 1.5rem;
}

.mv-card p {
    color: #666666;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.mv-list {
    list-style: none;
}

.mv-list li {
    padding: 0.5rem 0;
    color: #333333;
    display: flex;
    align-items: center;
    gap: 10px;
}

.mv-list li i {
    color: #F0C227;
}

/* ===== CORE VALUES ===== */
.core-values {
    padding: 80px 0;
    background: #ffffff;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    background: #f8f9fa;
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
}

.value-card:hover {
    background: #ffffff;
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #F0C227, #1A2658);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: #ffffff;
    transition: all 0.3s ease;
}

.value-card:hover .value-icon {
    transform: scale(1.1) rotateY(360deg);
}

.value-card h3 {
    color: #1A2658;
    margin-bottom: 1rem;
}

.value-card p {
    color: #666666;
    line-height: 1.6;
}

/* ===== SERVICES PAGE ===== */
.services-overview {
    padding: 80px 0;
    background: #ffffff;
}

.services-detailed-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-detail-card {
    background: #f8f9fa;
    padding: 2.5rem 2rem;
    border-radius: 15px;
    transition: all 0.3s ease;
    border-top: 4px solid #F0C227;
}

.service-detail-card:hover {
    background: #ffffff;
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.service-detail-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #F0C227, #1A2658);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.service-detail-card h3 {
    color: #1A2658;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.service-detail-card > p {
    color: #666666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-detail-features {
    list-style: none;
}

.service-detail-features li {
    padding: 0.5rem 0;
    color: #333333;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
}

.service-detail-features i {
    color: #F0C227;
    font-size: 0.9rem;
}

/* ===== HOW IT WORKS ===== */
.how-it-works {
    padding: 80px 0;
    background: #f8f9fa;
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
}

.process-step {
    background: #ffffff;
    padding: 2rem 1.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    position: relative;
    transition: all 0.3s ease;
}

.process-step:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.process-number {
    position: absolute;
    top: -15px;
    right: 20px;
    background: #F0C227;
    color: #1A2658;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
}

.process-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #1A2658, #2a3f7a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
    color: #F0C227;
}

.process-step h3 {
    color: #1A2658;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.process-step p {
    color: #666666;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ===== WHY CHOOSE US ===== */
.why-choose {
    padding: 80px 0;
    background: #ffffff;
}

.why-choose-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.why-choose-image {
    position: relative;
}

.why-choose-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.why-badge {
    position: absolute;
    top: 30px;
    right: 30px;
    background: #F0C227;
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.why-badge i {
    font-size: 2rem;
    color: #1A2658;
    margin-bottom: 0.5rem;
}

.why-badge p {
    color: #1A2658;
    font-weight: 600;
    margin: 0;
}

.why-choose-text h6 {
    color: #F0C227;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.why-choose-text h2 {
    font-size: 2.5rem;
    color: #1A2658;
    margin-bottom: 1.5rem;
}

.why-choose-text > p {
    color: #666666;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.advantage-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.advantage-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.advantage-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #F0C227, #1A2658);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.advantage-item h4 {
    color: #1A2658;
    margin-bottom: 0.5rem;
}

.advantage-item p {
    color: #666666;
    margin: 0;
    line-height: 1.6;
}

/* ===== PRICING PAGE ===== */
.pricing-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.pricing-toggle {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin: 2rem 0 3rem;
}

.toggle-label {
    color: #333333;
    font-weight: 500;
}

.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 30px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 30px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: #F0C227;
}

input:checked + .slider:before {
    transform: translateX(30px);
}

.save-badge {
    background: #F0C227;
    color: #1A2658;
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-left: 5px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.pricing-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pricing-card.popular {
    transform: scale(1.05);
    border: 3px solid #F0C227;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.pricing-card.popular:hover {
    transform: translateY(-10px) scale(1.05);
}

.pricing-badge {
    background: linear-gradient(135deg, #F0C227, #1A2658);
    color: #ffffff;
    text-align: center;
    padding: 0.5rem;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-header {
    padding: 2rem;
    text-align: center;
    background: #f8f9fa;
}

.plan-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #ffffff;
}

.bronze-plan .plan-icon {
    background: linear-gradient(135deg, #CD7F32, #8B4513);
}

.silver-plan .plan-icon {
    background: linear-gradient(135deg, #C0C0C0, #808080);
}

.gold-plan .plan-icon {
    background: linear-gradient(135deg, #FFD700, #FFA500);
}

.pricing-header h3 {
    font-size: 2rem;
    color: #1A2658;
    margin-bottom: 0.5rem;
}

.plan-subtitle {
    color: #666666;
    font-size: 0.95rem;
}

.pricing-price {
    padding: 2rem;
    text-align: center;
    background: linear-gradient(135deg, #1A2658, #2a3f7a);
    color: #ffffff;
}

.currency {
    font-size: 1.5rem;
    vertical-align: top;
}

.amount {
    font-size: 3rem;
    font-weight: bold;
}

.period {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

.pricing-features {
    list-style: none;
    padding: 2rem;
}

.pricing-features li {
    padding: 0.75rem 0;
    color: #333333;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid #f0f0f0;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li i {
    color: #F0C227;
}

.pricing-features li.disabled {
    color: #999999;
    opacity: 0.5;
}

.pricing-features li.disabled i {
    color: #999999;
}

.pricing-btn {
    width: calc(100% - 4rem);
    margin: 0 2rem 2rem;
    padding: 15px;
    background: #F0C227;
    color: #1A2658;
    border: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pricing-btn:hover {
    background: #1A2658;
    color: #ffffff;
    transform: scale(1.05);
}

/* ===== COMPARISON TABLE ===== */
.comparison-section {
    padding: 80px 0;
    background: #ffffff;
}

.comparison-table-wrapper {
    overflow-x: auto;
    margin-top: 3rem;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-radius: 15px;
    overflow: hidden;
}

.comparison-table thead {
    background: linear-gradient(135deg, #1A2658, #2a3f7a);
    color: #ffffff;
}

.comparison-table th {
    padding: 1.5rem 1rem;
    text-align: left;
    font-size: 1.1rem;
}

.comparison-table th:first-child {
    text-align: left;
}

.comparison-table th:not(:first-child) {
    text-align: center;
}

.comparison-table tbody tr {
    border-bottom: 1px solid #f0f0f0;
}

.comparison-table tbody tr:hover {
    background: #f8f9fa;
}

.comparison-table td {
    padding: 1.25rem 1rem;
    text-align: center;
}

.comparison-table td:first-child {
    text-align: left;
}

.highlight {
    background: #F0C227;
    color: #1A2658;
    padding: 5px 10px;
    border-radius: 5px;
    font-weight: 600;
}

.text-success {
    color: #28a745;
    font-size: 1.2rem;
}

.text-muted {
    color: #999999;
    font-size: 1.2rem;
}

/* ===== FAQ SECTION ===== */
.faq-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 3rem;
}

.faq-item {
    background: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.faq-question {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-question h4 {
    color: #1A2658;
    margin: 0;
    font-size: 1.1rem;
}

.faq-question i {
    color: #F0C227;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: #666666;
    line-height: 1.8;
    margin: 0;
}

.faq-cta {
    text-align: center;
    margin-top: 3rem;
}

.faq-cta p {
    font-size: 1.2rem;
    color: #333333;
    margin-bottom: 1rem;
}

/* ===== TESTIMONIALS PAGE ===== */
.testimonials-section {
    padding: 80px 0;
    background: #ffffff;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    background: #ffffff;
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.testimonial-rating {
    margin-bottom: 1.5rem;
}

.testimonial-rating i {
    color: #F0C227;
    font-size: 1.2rem;
}

.testimonial-text {
    color: #333333;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    color: #1A2658;
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
}

.author-info p {
    color: #666666;
    font-size: 0.9rem;
    margin: 0;
}

/* ===== TESTIMONIAL STATS ===== */
.testimonial-stats {
    padding: 80px 0;
    background: linear-gradient(135deg, #1A2658, #2a3f7a);
}

.testimonial-stats .stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-item .stat-icon {
    width: 70px;
    height: 70px;
    background: rgba(240, 194, 39, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 2rem;
    color: #F0C227;
}

.stat-item h3 {
    font-size: 3rem;
    color: #F0C227;
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    margin-top: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-social {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.contact-social a {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #F0C227, #1A2658);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    transition: all 0.3s ease;
}

.contact-social a:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.contact-form-wrapper h3 {
    color: #1A2658;
    margin-bottom: 0.5rem;
}

.contact-form-wrapper > p {
    color: #666666;
    margin-bottom: 2rem;
}

.contact-form label {
    display: block;
    color: #333333;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.contact-form select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.contact-form select:focus {
    outline: none;
    border-color: #F0C227;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 4px;
}

.checkbox-group label {
    margin: 0;
    font-weight: normal;
}

.contact-form button i {
    margin-left: 10px;
}

/* ===== MAP SECTION ===== */
.map-section {
    padding: 0;
    background: #ffffff;
}

.map-wrapper {
    width: 100%;
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* ===== ACTIVE NAV LINK ===== */
.nav-links a.active {
    color: #F0C227 !important;
    position: relative;
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #F0C227;
}

/* header.scrolled .nav-links a.active:: */