* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    background-color: #fafafa;
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* ==================== NAVBAR ==================== */
.navbar {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #1a3a52;
    display: flex;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    height: 50px;
}

.logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 800;
    background: linear-gradient(135deg, #1a3a52, #2c5aa0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    color: #1a3a52;
}

.nav-menu {
    display: flex;
    gap: 35px;
    align-items: center;
}

.nav-menu a {
    color: #666;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #2c5aa0;
}

.cta-btn {
    background: #2c5aa0;
    color: white;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: background 0.3s;
}

.cta-btn:hover {
    background: #1e3f70;
}

.menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: #333;
}

/* ==================== HERO SECTION ==================== */
.hero {
    background: linear-gradient(135deg, #1a3a52 0%, #2c5aa0 100%);
    color: white;
    padding: 100px 20px;
}

.hero-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.hero-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-left h1 {
    font-family: 'Playfair Display', serif;
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-left h1 span {
    color: #ffc107;
}

.hero-left p {
    font-size: 16px;
    margin-bottom: 30px;
    opacity: 0.95;
    line-height: 1.8;
    max-width: 500px;
}

.hero-btn {
    display: inline-block;
    background: #ffc107;
    color: #1a3a52;
    padding: 14px 40px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: transform 0.3s, box-shadow 0.3s;
    width: fit-content;
}

.hero-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255,193,7,0.3);
}

/* HERO RIGHT - IMAGES */
.hero-right {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    height: 350px;
}

.hero-images {
    display: flex;
    gap: 20px;
    width: 100%;
    animation: scrollGallery 8s linear infinite;
    flex-direction: row;
}

.hero-images:hover {
    animation-play-state: paused;
}

@keyframes scrollGallery {
    0% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(-100%);
    }
    50.1% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(0);
    }
}

.hero-image-card {
    border: 3px solid #ffc107;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    flex: 0 0 auto;
    width: 280px;
    height: 320px;
    min-width: 280px;
}

.hero-image-card:hover {
    box-shadow: 0 25px 50px rgba(255,193,7,0.4);
    transform: scale(1.05);
}

.hero-image-card img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

/* ==================== PAGE TITLE ==================== */
.page-title {
    background: linear-gradient(135deg, #1a3a52 0%, #2c5aa0 100%);
    color: white;
    padding: 60px 20px;
    text-align: center;
}

.page-title h1 {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 10px;
}

.page-title p {
    font-size: 16px;
    opacity: 0.9;
}

/* ==================== PAGE CONTENT ==================== */
.page-content {
    padding: 80px 20px;
    background: white;
    min-height: calc(100vh - 300px);
}

/* ==================== ABOUT SECTION ==================== */
.about-section-main {
    margin-bottom: 50px;
}

.about-section-main h2 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    color: #1a3a52;
    margin-bottom: 20px;
}

.about-section-main p {
    color: #666;
    font-size: 15px;
    line-height: 1.9;
    margin-bottom: 15px;
}

/* ==================== STATS SECTION ==================== */
.stats-grid-large {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin: 60px 0;
    background: #f5f5f5;
    padding: 40px;
    border-radius: 10px;
}

.stat-box {
    text-align: center;
}

.stat-box h3 {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    color: #2c5aa0;
    margin-bottom: 10px;
    font-weight: 700;
}

.stat-box p {
    color: #666;
    font-size: 15px;
    font-weight: 500;
}

/* ==================== VALUES GRID ==================== */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 50px 0;
}

.value-card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.value-card h3 {
    font-size: 18px;
    color: #1a3a52;
    margin-bottom: 15px;
    font-weight: 600;
}

.value-card p {
    color: #666;
    font-size: 14px;
    line-height: 1.7;
}

/* ==================== COURSES GRID ==================== */
.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.course-card-full {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.course-header {
    background: linear-gradient(135deg, #1a3a52, #2c5aa0);
    color: white;
    padding: 30px;
}

.course-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    margin-bottom: 5px;
}

.course-subtitle {
    font-size: 14px;
    opacity: 0.9;
}

.course-details {
    padding: 30px;
}

.course-details h3 {
    font-size: 16px;
    color: #1a3a52;
    margin-bottom: 15px;
    margin-top: 0;
}

.course-details h3:first-child {
    margin-top: 0;
}

.course-details ul {
    list-style: none;
    margin-bottom: 25px;
}

.course-details ul li {
    padding: 8px 0;
    color: #666;
    font-size: 14px;
    padding-left: 20px;
    position: relative;
}

.course-details ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2c5aa0;
    font-weight: bold;
}

.btn-enroll {
    display: inline-block;
    background: #2c5aa0;
    color: white;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: background 0.3s;
}

.btn-enroll:hover {
    background: #1e3f70;
}

/* ==================== FEATURES GRID ==================== */
.features-grid-large {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.feature-box {
    background: white;
    padding: 35px 25px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.feature-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #2c5aa0, #1a3a52);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 15px;
}

.feature-box h3 {
    font-size: 18px;
    color: #1a3a52;
    margin-bottom: 12px;
    font-weight: 600;
}

.feature-box p {
    color: #666;
    font-size: 14px;
    line-height: 1.7;
}

/* ==================== COMPARISON TABLE ==================== */
.comparison-section {
    margin: 60px 0;
}

.comparison-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    color: #1a3a52;
    margin-bottom: 30px;
    text-align: center;
}

.comparison-table {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
}

.table-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    border-bottom: 1px solid #e0e0e0;
}

.table-row.header {
    background: #f5f5f5;
    font-weight: 600;
    color: #1a3a52;
}

.table-cell {
    padding: 20px;
    font-size: 14px;
}

.table-row.header .table-cell {
    font-weight: 600;
    text-align: center;
}

/* ==================== TESTIMONIALS ==================== */
.testimonials-large-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.testimonial-large-card {
    background: #f9f9f9;
    padding: 35px 25px;
    border-radius: 8px;
    border-left: 4px solid #2c5aa0;
    transition: transform 0.3s;
    position: relative;
}

.testimonial-large-card:hover {
    transform: translateY(-5px);
}

.testimonial-percentage {
    display: inline-block;
    background: linear-gradient(135deg, #2c5aa0, #1a3a52);
    color: #ffc107;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.testimonial-rating {
    color: #ffc107;
    font-size: 16px;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.testimonial-quote {
    color: #555;
    font-size: 15px;
    font-style: italic;
    margin-bottom: 25px;
    line-height: 1.8;
}

.testimonial-author-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-initial {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #2c5aa0, #1a3a52);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    flex-shrink: 0;
}

/* Support for author-avatar with image backgrounds */
.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #2c5aa0, #1a3a52);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    flex-shrink: 0;
}

.testimonial-author-info strong {
    display: block;
    color: #1a3a52;
    font-size: 16px;
    margin-bottom: 3px;
}

.testimonial-author-info p {
    color: #999;
    font-size: 13px;
    margin: 0;
}

/* ==================== STATS BOX TESTIMONIAL ==================== */
.stats-box-testimonial {
    background: linear-gradient(135deg, #1a3a52, #2c5aa0);
    color: white;
    padding: 60px 40px;
    border-radius: 10px;
    margin: 60px 0;
}

.stats-box-testimonial h2 {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    margin-bottom: 40px;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    text-align: center;
}

.impact-item h3 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    color: #ffc107;
    margin-bottom: 10px;
}

.impact-item p {
    font-size: 14px;
    opacity: 0.9;
}

/* QUICK CONTACT GRID */
.quick-contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 60px;
}

.quick-contact-card {
    background: linear-gradient(135deg, #1a3a52, #2c5aa0);
    color: white;
    padding: 35px 25px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 5px 15px rgba(44, 90, 160, 0.2);
}

.quick-contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(44, 90, 160, 0.3);
}

.contact-icon {
    font-size: 40px;
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50px;
}

.contact-icon svg {
    color: #ffc107;
    width: 40px;
    height: 40px;
}

.contact-icon-link {
    display: inline-flex;
    text-decoration: none;
    transition: transform 0.3s;
}

.contact-icon-link:hover .contact-icon svg {
    transform: scale(1.1);
}

.follow-us-icons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 15px;
}

.quick-contact-card h3 {
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: 600;
}

.quick-contact-card p {
    margin: 8px 0;
    font-size: 14px;
}

.quick-contact-card a {
    color: #ffc107;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.quick-contact-card a:hover {
    color: white;
    text-decoration: underline;
}

.small-text {
    font-size: 12px;
    color: #bbb;
}

.social-contact-links {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.social-contact-links a {
    display: inline-block;
    padding: 8px 12px;
    background: rgba(255,193,7,0.2);
    border-radius: 5px;
    font-size: 13px;
}

/* LOCATIONS TITLE */
.locations-title {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    color: #1a3a52;
    margin-bottom: 40px;
    text-align: center;
}

/* LOCATIONS DETAILED GRID */
.locations-detailed-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.location-detailed-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    height: auto;
}

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

.location-header {
    background: #0f4c81;
    color: #fff;
    padding: 18px 20px;
}

.location-header h3 {
    margin: 0;
    font-size: 1.2rem;
}

.location-content {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.location-address {
    flex: 1;
}

.location-address p {
    margin-bottom: 10px;
    line-height: 1.6;
}

.location-address strong {
    color: #1a3a52;
    font-weight: 600;
}

.location-contact {
    flex: 1;
}

.location-contact p {
    margin-bottom: 10px;
    line-height: 1.6;
}

.location-contact strong {
    color: #1a3a52;
    font-weight: 600;
}

.location-contact a {
    color: #0f4c81;
    text-decoration: none;
}

.location-contact a:hover {
    text-decoration: underline;
}

.location-body p {
    margin: 12px 0;
    color: #666;
    font-size: 13px;
    line-height: 1.8;
}

.location-body strong {
    color: #1a3a52;
    font-weight: 600;
}

.location-body a {
    color: #2c5aa0;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.location-body a:hover {
    color: #ffc107;
}

.map-link {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 20px;
    background: #f0f0f0;
    border-radius: 5px;
    font-weight: 600;
    font-size: 13px;
}

.location-map-iframe {
    width: 100%;
    height: 260px; /* Same map height */
    border: none;
    display: block;
    margin: -5px 0 0 0;
}

/* CONTACT INTRO */
.contact-intro {
    text-align: center;
    color: #666;
    font-size: 16px;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* FAQ SECTION UPDATE */
.faq-section {
    margin-bottom: 60px;
}

.faq-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    color: #1a3a52;
    margin-bottom: 40px;
    text-align: center;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.faq-item {
    background: #f9f9f9;
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid #2c5aa0;
    transition: transform 0.3s;
}

.faq-item:hover {
    transform: translateY(-3px);
}

.faq-item h4 {
    color: #1a3a52;
    font-size: 15px;
    margin-bottom: 12px;
    font-weight: 600;
}

.faq-item p {
    color: #666;
    font-size: 13px;
    line-height: 1.7;
    margin: 0;
}

/* CONTACT CTA BOX */
.contact-cta-box {
    background: linear-gradient(135deg, #1a3a52, #2c5aa0);
    color: white;
    padding: 60px 40px;
    border-radius: 10px;
    text-align: center;
}

.contact-cta-box h2 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    margin-bottom: 15px;
}

.contact-cta-box p {
    font-size: 16px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.contact-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-cta-buttons .btn-primary {
    background: #ffc107;
    color: #1a3a52;
}

.contact-cta-buttons .btn-primary:hover {
    background: white;
}

.contact-cta-buttons .btn-secondary {
    background: white;
    color: #1a3a52;
}

.contact-cta-buttons .btn-secondary:hover {
    background: #ffc107;
}

/* ==================== CONTACT INFO ==================== */
.contact-info-section {
    margin-bottom: 60px;
}

.contact-info-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    color: #1a3a52;
    margin-bottom: 40px;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.location-card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.location-card h3 {
    color: #1a3a52;
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 600;
}

.location-details p {
    color: #666;
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 15px;
}

.location-details a {
    color: #2c5aa0;
    text-decoration: none;
    transition: color 0.3s;
}

.location-details a:hover {
    color: #1e3f70;
}

/* ==================== FAQ SECTION ==================== */
.faq-section {
    background: #f9f9f9;
    padding: 40px;
    border-radius: 8px;
}

.faq-section h3 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    color: #1a3a52;
    margin-bottom: 30px;
}

.faq-item {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e0e0e0;
}

.faq-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.faq-item p:first-child {
    color: #1a3a52;
    font-weight: 600;
    margin-bottom: 8px;
}

.faq-item p:last-child {
    color: #666;
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
}

/* ==================== CTA BOX ==================== */
.cta-box {
    background: linear-gradient(135deg, #1a3a52, #2c5aa0);
    color: white;
    padding: 60px 40px;
    border-radius: 10px;
    text-align: center;
    margin-top: 60px;
}

.cta-box h2 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    margin-bottom: 15px;
}

.cta-box p {
    font-size: 16px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.btn-primary {
    display: inline-block;
    background: #ffc107;
    color: #1a3a52;
    padding: 14px 40px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255,193,7,0.3);
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: white;
    padding: 14px 40px;
    border: 2px solid white;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    margin-left: 15px;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: white;
    color: #1a3a52;
}

/* ==================== FEATURES PREVIEW ==================== */
.features-preview {
    padding: 80px 20px;
    background: white;
}

.features-preview h2 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    text-align: center;
    color: #1a3a52;
    margin-bottom: 60px;
}

.preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.preview-card {
    background: white;
    padding: 35px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.preview-card .icon {
    font-size: 45px;
    margin-bottom: 15px;
}

.preview-card h3 {
    font-size: 18px;
    color: #1a3a52;
    margin-bottom: 10px;
    font-weight: 600;
}

.preview-card p {
    color: #666;
    font-size: 14px;
    line-height: 1.7;
}

/* ==================== CTA SECTION HOME ==================== */
.cta-section {
    background: linear-gradient(135deg, #1a3a52, #2c5aa0);
    color: white;
    padding: 80px 20px;
    text-align: center;
}

.cta-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 16px;
    margin-bottom: 35px;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ==================== WHATSAPP SECTION ==================== */
.whatsapp-section {
    padding: 80px 20px;
    background: white;
}

.whatsapp-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    text-align: center;
    color: #1a3a52;
    margin-bottom: 15px;
}

.whatsapp-section p {
    text-align: center;
    color: #666;
    font-size: 15px;
    margin-bottom: 50px;
}

.whatsapp-gallery {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
    overflow-x: auto;
    padding-bottom: 20px;
}

.whatsapp-card {
    flex: 0 0 calc(50% - 15px);
    max-width: 500px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.whatsapp-card img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.whatsapp-cta {
    text-align: center;
}

.btn-whatsapp {
    display: inline-block;
    background: #25D366;
    color: white;
    padding: 16px 45px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s;
    box-shadow: 0 8px 20px rgba(37,211,102,0.3);
}

.btn-whatsapp:hover {
    background: #1fa857;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(37,211,102,0.4);
}

/* ==================== FOOTER ==================== */
footer {
    background: #1a3a52;
    color: white;
    padding: 60px 20px 20px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-content h4 {
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: 600;
}

.footer-content p {
    color: #bbb;
    font-size: 15px;
    line-height: 1.8;
}

.footer-content ul {
    list-style: none;
}

.footer-content ul li {
    margin-bottom: 10px;
}

.footer-content ul li a {
    color: #bbb;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s;
}

.footer-content ul li a:hover {
    color: #ffc107;
}

/* FOLLOW US SECTION */
.follow-us {
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.follow-us h5 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 15px;
    color: white;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    color: white;
    text-decoration: none;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.social-icon:hover {
    transform: translateY(-3px);
    background: rgba(255,255,255,0.2);
}

.social-icon svg {
    width: 20px;
    height: 20px;
}

.social-icon.whatsapp:hover {
    background: #25D366;
    color: white;
}

.social-icon.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
}

.social-icon.facebook:hover {
    background: #1877f2;
    color: white;
}

/* MAP SECTION */
.map-container {
    max-width: 1200px;
    margin: 0 auto 40px;
    padding: 30px 20px;
    background: rgba(255,255,255,0.05);
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.1);
}

.map-wrapper {
    text-align: center;
}

.map-wrapper h3 {
    color: white;
    font-size: 20px;
    margin-bottom: 12px;
    font-weight: 600;
}

.map-address {
    color: #ddd;
    font-size: 13px;
    margin-bottom: 20px;
    line-height: 1.6;
}

.map-iframe {
    width: 100%;
    height: 300px;
    border: none;
    border-radius: 8px;
    margin-bottom: 12px;
}

.map-note {
    color: #999;
    font-size: 11px;
    margin: 0;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 20px;
    border-top: 1px solid #333;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom-left {
    flex: 1;
}

.footer-bottom-left p {
    color: #999;
    font-size: 12px;
    margin: 5px 0;
}

.copyright-large {
    color: white;
    font-size: 16px !important;
    font-weight: 500;
    margin: 0 !important;
    text-align: center;
    flex: 1 1 100%;
}

.copyright-large a {
    color: #ffc107;
    text-decoration: none;
    font-weight: 700;
    transition: color 0.3s;
}

.copyright-large a:hover {
    color: white;
    text-decoration: underline;
}

.footer-bottom-right {
    text-align: right;
}

.footer-bottom-right p {
    color: #999;
    font-size: 12px;
}

.designer-link {
    color: #ffc107;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: color 0.3s;
}

.designer-link:hover {
    color: white;
    text-decoration: underline;
}

/* FOOTER MAP IFRAME */
.footer-map-iframe {
    width: 100%;
    height: 300px;
    border: none;
    border-radius: 8px;
    margin-top: 15px;
    display: block;
}

/* FOOTER MAP SECTION */
.footer-map-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 20px;
}

.footer-map-box {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid #ffc107;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
}

.footer-map-box h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    color: #ffc107;
    margin-bottom: 15px;
    font-weight: 700;
}

.footer-map-box p {
    color: white;
    font-size: 14px;
    line-height: 1.8;
    margin: 0;
}

/* ==================== RESPONSIVE DESIGN ==================== */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        flex-direction: column;
        background: white;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        padding: 20px;
        gap: 15px;
        z-index: 999;
    }

    .nav-menu.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }

    .cta-btn {
        display: none;
    }

    .navbar-container {
        padding: 10px 15px;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .hero-right {
        height: 250px;
    }

    .hero-image-card {
        width: 220px;
        height: 240px;
        min-width: 220px;
    }

    .hero-images {
        animation: scrollGallery 8s linear infinite;
    }

    .page-title h1 {
        font-size: 32px;
    }

    .courses-grid,
    .features-grid-large,
    .testimonials-large-grid,
    .preview-grid {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .btn-secondary {
        margin-left: 0;
    }

    .comparison-table {
        overflow-x: auto;
    }

    .table-row {
        grid-template-columns: 1fr;
    }

    .locations-grid {
        grid-template-columns: 1fr;
    }

    .locations-detailed-grid {
        grid-template-columns: 1fr;
    }

    .location-detailed-card {
        height: auto;
        min-height: 650px;
    }

    .location-content {
        flex-direction: column;
        gap: 15px;
    }

    .location-map-iframe {
        height: 220px;
    }

    .impact-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-form-large {
        padding: 20px;
    }

    .whatsapp-gallery {
        flex-direction: column;
    }

    .whatsapp-card {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-bottom-right {
        text-align: center;
    }

    .map-iframe {
        height: 250px;
    }

    .map-wrapper h3 {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 28px;
    }

    .page-title h1 {
        font-size: 24px;
    }

    .logo-text {
        font-size: 20px;
    }

    .logo-img {
        height: 40px;
    }

    .nav-menu {
        gap: 10px;
    }

    .nav-menu a {
        font-size: 13px;
        padding: 10px;
    }

    .hero-right {
        height: 200px;
    }

    .hero-image-card {
        width: 180px;
        height: 200px;
        min-width: 180px;
    }

    .impact-grid {
        grid-template-columns: 1fr;
    }

    .stat-box h3 {
        font-size: 32px;
    }

    .cta-box {
        padding: 40px 20px;
    }

    .cta-box h2 {
        font-size: 26px;
    }

    .page-content {
        padding: 40px 15px;
    }
}
