/*
 * CSS Stylesheet for Kidzee Preschool Kharadi
 * Version: 1.0
 * Date: 30-05-2025
 * Updated: 11-06-2025 (for consistent footer, social icons, mobile menu, and branding)
*/

/* --- 1. Global Styles & Variables --- */
:root {
    --primary-color: #7A288A; /* Kidzee Purple */
    --secondary-color: #FFD700; /* Kidzee Yellow/Gold */
    --dark-color: #333333; /* Dark Grey for Text */
    --light-color: #f8f9fa; /* Light Grey for Backgrounds */
    --white-color: #ffffff;
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Lato', sans-serif;
    --box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    line-height: 1.7;
    color: var(--dark-color);
    background-color: var(--white-color);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.3;
}

h1 { font-size: 3rem; margin-bottom: 1rem; }
h2 { font-size: 2.5rem; margin-bottom: 1.5rem; text-align: center; }
h3 { font-size: 1.8rem; margin-bottom: 1rem; }
h4 { font-size: 1.2rem; color: var(--dark-color); font-weight: 600; }

p {
    margin-bottom: 1rem;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--secondary-color);
}

.section-padding {
    padding: 80px 0;
}

.section-description {
    max-width: 700px;
    margin: 0 auto 2rem auto;
    text-align: center;
    font-size: 1.1rem;
}

.bg-light {
    background-color: var(--light-color);
}

.text-center {
    text-align: center;
}

.text-white {
    color: var(--white-color);
}
.text-white h2, .text-white p {
    color: var(--white-color);
}

/* --- 2. Buttons --- */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    border-color: var(--secondary-color);
}

.btn-primary:hover {
    background-color: #ffc700;
    color: var(--primary-color);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
}

.btn-light {
    background-color: var(--white-color);
    color: var(--primary-color);
}
.btn-light:hover {
    background-color: var(--light-color);
    transform: scale(1.05);
}

/* --- 3. Header & Navigation --- */
.main-header {
    background: var(--white-color);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.07);
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.main-header .logo img {
    height: 50px;
}

.header-contact-info {
    font-weight: 600;
    font-size: 1.1rem;
}

.header-contact-info a {
    color: var(--dark-color);
}

.main-nav ul {
    list-style: none;
    display: flex;
}

.main-nav li {
    margin-left: 25px;
}

.main-nav a {
    font-weight: 600;
    padding-bottom: 5px;
    position: relative;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary-color);
    transition: width 0.3s ease;
}

.main-nav a:hover::after {
    width: 100%;
}

/* Added active class style for navigation */
.main-nav a.active {
    font-weight: 700;
    color: var(--primary-color);
}
.main-nav a.active::after {
    width: 100%;
}

.menu-toggle {
    display: none; /* Controlled by media query for mobile */
    font-size: 2rem;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--primary-color); /* Color for the hamburger icon */
}

/* --- 4. Hero Section --- */
.hero-banner {
    background: url('https://via.placeholder.com/1920x1080/E9D8FD/7A288A?text=Happy+Kids+at+Kidzee') no-repeat center center/cover;
    /* Replace placeholder URL above with your actual hero image path, e.g., 'images/hero-background.jpg' */
    position: relative;
    color: var(--white-color);
    min-height: 85vh;
    display: flex;
    align-items: center;
    text-align: center;
}

.hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(68, 23, 79, 0.7); /* Dark purple overlay */
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.hero-content h1 {
    color: var(--white-color);
    font-size: 3.5rem;
    font-weight: 700;
}

.hero-content .sub-heading {
    font-size: 1.3rem;
    margin-bottom: 2rem;
}

.hero-content .sub-heading strong {
    color: var(--secondary-color);
}

.hero-buttons .btn {
    margin: 0 10px;
}

/* --- 5. Features Section (Why Choose Us) --- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-item {
    background: var(--white-color);
    padding: 2rem;
    text-align: center;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.feature-item .feature-icon {
    height: 60px;
    margin-bottom: 1rem;
    width: auto; /* Ensure aspect ratio is maintained */
}

/* --- 6. Programs Highlight Section --- */
.programs-highlight-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.program-highlight-item {
    border: 1px solid #ddd;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    background-color: var(--white-color);
    transition: all 0.3s ease;
}

.program-highlight-item:hover {
    border-color: var(--primary-color);
    transform: scale(1.05);
}

/* --- 7. Admissions CTA Section --- */
.cta-section {
    background-color: var(--primary-color);
    padding: 60px 0;
}

.cta-section h2 {
    color: var(--white-color);
}

.cta-section p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 2rem auto;
    color: var(--light-color);
}

/* --- 8. Testimonials Section --- */
.testimonial-item {
    max-width: 700px;
    margin: 0 auto 2rem auto;
    padding: 2rem;
    background: var(--light-color);
    border-left: 5px solid var(--secondary-color);
    border-radius: 5px;
}

.testimonial-item p:first-of-type {
    font-style: italic;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.testimonial-item .author {
    font-weight: 700;
    text-align: right;
    color: var(--primary-color);
    margin-bottom: 0;
}

/* --- 9. Footer --- */
.main-footer {
    background-color: var(--dark-color);
    color: #ccc;
    padding: 60px 0 20px 0;
}

.footer-grid {
    display: grid;
    /* Adjusted to handle the new social column more flexibly on larger screens */
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); 
    gap: 3rem;
    margin-bottom: 2rem;
}

.main-footer h4 {
    color: var(--white-color);
    margin-bottom: 1rem;
}

.main-footer a {
    color: #ccc;
}

.main-footer a:hover {
    color: var(--secondary-color);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #444;
    font-size: 0.9rem;
    color: #ccc; /* Ensure the text color is consistent here */
}

/* --- ADDED: Footer Social Icons Styles --- */
.footer-social {
    /* If you want the "Follow Us" heading centered on mobile when it stacks */
    text-align: center; 
}
.footer-social .social-icons {
    display: flex;
    gap: 15px; /* Space between icons */
    margin-top: 10px;
    justify-content: center; /* Center icons horizontally in their column */
}

.footer-social .social-icons img {
    width: 30px; /* Adjust size as needed, e.g., 24px, 32px */
    height: 30px; /* Keep same as width for square icons */
    transition: transform 0.3s ease; /* Smooth hover effect */
}

.footer-social .social-icons a:hover img {
    transform: scale(1.1); /* Subtle zoom effect on hover */
    /* You could also add a filter for color change on hover, e.g., */
    /* filter: brightness(1.2); */
}

/* --- ADDED: Skyjenic Branding Credit Styles --- */
.footer-bottom .branding-credit {
    font-size: 0.75rem; /* Slightly smaller text */
    color: rgba(255, 255, 255, 0.7); /* A bit lighter/more subtle than main text */
    margin-top: 10px; /* Some space from the copyright */
}

.footer-bottom .branding-credit a {
    color: inherit; /* Inherit the text color from its parent */
    text-decoration: none; /* Remove underline by default */
    transition: color 0.3s ease;
}

.footer-bottom .branding-credit a:hover {
    color: var(--secondary-color); /* Your brand accent color on hover */
    text-decoration: underline; /* Add underline on hover */
}


/* --- 10. Responsive Design (Media Queries) --- */
@media (max-width: 992px) {
    .header-contact-info, .header-admissions-btn {
        display: none;
    }

    /* Adjust main nav positioning for smaller header */
    .main-nav {
        top: 60px; /* Adjusted based on header height, verify this */
    }
}

@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }

    /* Mobile Menu - Hamburger Toggle & Nav Display */
    .main-header .container {
        flex-wrap: wrap; /* Allow items to wrap */
        justify-content: space-between;
    }
    .main-nav {
        display: none; /* Hide by default on small screens */
        position: absolute;
        top: 80px; /* Adjust based on actual header height on mobile */
        left: 0;
        width: 100%;
        background-color: var(--white-color);
        flex-direction: column;
        text-align: center;
        box-shadow: var(--box-shadow);
        z-index: 999; /* Ensure it's above other content but below sticky header */
    }
    .main-nav.active {
        display: flex; /* Show when active */
    }

    .main-nav ul {
        flex-direction: column;
        width: 100%;
    }

    .main-nav li {
        margin: 0;
        border-bottom: 1px solid #f0f0f0; /* Separator for menu items */
    }
    .main-nav li:last-child {
        border-bottom: none; /* No border on the last item */
    }

    .main-nav a {
        display: block;
        padding: 1rem;
        color: var(--dark-color); /* Ensure menu links are readable */
    }
    .main-nav a.active {
        background-color: var(--light-color); /* Highlight active menu item */
    }
    
    .menu-toggle {
        display: block; /* Show hamburger icon */
    }
    
    .programs-highlight-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    /* Specific adjustments for contact page on smaller screens */
    .contact-page-grid {
        grid-template-columns: 1fr; /* Stack contact details and form */
    }
    .map-section {
        margin-top: 0; /* Remove negative margin on small screens */
    }
}

/* --- Styles for About Us Page --- */

/* Page Header */
.page-header {
    background-color: var(--primary-color);
    color: var(--white-color);
    padding: 40px 0;
    text-align: center;
}
.page-header h1 {
    color: var(--white-color);
    font-size: 2.8rem;
}
.page-header p {
    font-size: 1.2rem;
    color: #eee;
    margin-bottom: 0;
}

/* About Content Grid */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}
.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    display: block; /* ensure no extra space below image */
}
.about-text h3 {
    margin-top: 2rem;
    color: var(--dark-color);
    font-size: 1.5rem;
}

/* Legacy & Stats Section */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}
.stat-item {
    background: var(--white-color);
    padding: 2rem 1rem;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
}
.stat-item .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
}
.stat-item .stat-label {
    font-size: 1rem;
    color: #555;
}

/* Responsive adjustments for about page */
@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
    }
    .about-image {
        margin-top: 2rem;
        order: -1; /* Puts image on top on mobile */
    }
}

/* --- Styles for Why Kidzee / Pedagogy Page --- */

.pedagogy-logo {
    max-height: 80px; /* Use max-height for SVGs to scale */
    width: auto; /* Maintain aspect ratio */
    margin-bottom: 1.5rem;
}

.pedagogy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.pedagogy-item {
    text-align: center;
    padding: 1.5rem;
}

.pedagogy-icon {
    max-height: 70px; /* Use max-height for SVGs to scale */
    width: auto; /* Maintain aspect ratio */
    margin-bottom: 1rem;
}

/* Pedagogy in Action List */
.action-list {
    max-width: 800px;
    margin: 2rem auto 0 auto;
    list-style: none;
    padding-left: 0;
}

.action-list li {
    font-size: 1.1rem;
    padding: 1rem;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
}

.action-list li::before {
    content: '✔';
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-right: 1rem;
}

/* Override feature item style for Golden Edges to be more impactful */
#golden-edges .feature-item {
    background: var(--white-color);
    border: 2px solid var(--secondary-color);
}
#golden-edges .feature-item h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
}


/* --- Styles for Programs Page --- */

/* Tab Navigation Bar */
.program-tabs {
    display: flex;
    flex-wrap: wrap;
    border-bottom: 2px solid var(--primary-color);
    margin-bottom: 2rem;
    justify-content: center; /* Center tabs horizontally */
}

.tab-link {
    background-color: var(--light-color);
    border: 1px solid #ddd;
    border-bottom: none;
    padding: 14px 25px;
    cursor: pointer;
    font-size: 1.1rem;
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--primary-color);
    transition: background-color 0.3s ease;
    border-radius: 5px 5px 0 0;
    margin-right: 5px;
}

.tab-link:hover {
    background-color: #e2e6ea;
}

.tab-link.active {
    background-color: var(--primary-color);
    color: var(--white-color);
    border-color: var(--primary-color);
}

/* Tab Content Panes */
.tab-content {
    display: none;
    animation: fadeIn 0.5s;
}
.tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.program-card {
    background-color: var(--white-color);
    padding: 2.5rem;
    border: 1px solid #e9ecef;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
}
.program-card h3 {
    margin-bottom: 0.5rem;
    color: var(--primary-color); /* Ensure program card heading color is consistent */
}

.program-meta {
    display: flex;
    flex-wrap: wrap; /* Allow meta items to wrap */
    gap: 1rem; /* Adjust gap for responsiveness */
    font-weight: 600;
    color: #555;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eee;
}

.program-details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.program-key-areas h4, .program-activities h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}
.program-key-areas ul {
    list-style-position: inside;
    padding-left: 0;
}
.program-key-areas li {
    margin-bottom: 0.5rem;
}
.program-key-areas ul li::before { /* Added for consistent checkmarks */
    content: "\2713"; /* Checkmark unicode */
    color: #28a745; /* Green checkmark */
    font-weight: bold;
    position: absolute; /* Needs position relative on parent li for positioning */
    left: 0;
    top: 0;
}
.program-key-areas ul li {
    position: relative; /* Added for checkmark positioning */
    padding-left: 25px; /* Space for the checkmark */
}


.daycare-routine-list {
    list-style-type: '✔ ';
    padding-left: 1rem;
}
.daycare-routine-list li {
    margin-bottom: 0.5rem;
    padding-left: 0.5rem;
}

.program-cta {
    margin-top: 2rem;
    display: inline-block;
}

/* Responsive adjustments for programs page */
@media (max-width: 768px) {
    .program-details-grid {
        grid-template-columns: 1fr;
    }
}

/* --- Styles for Gallery Page --- */

/* Filter Buttons */
.gallery-filters {
    text-align: center;
    margin-bottom: 2.5rem;
    display: flex; /* Ensure flex for wrapping */
    justify-content: center; /* Center filter buttons */
    flex-wrap: wrap; /* Allow buttons to wrap */
    gap: 10px; /* Space between buttons */
}

.filter-btn {
    background: none;
    border: 1px solid #ddd;
    color: var(--dark-color);
    padding: 10px 20px;
    /* margin: 5px; - replaced by gap in flexbox */
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap; /* Prevent text breaking on buttons */
}

.filter-btn:hover {
    background-color: var(--light-color);
    border-color: var(--primary-color);
}

.filter-btn.active {
    background-color: var(--primary-color);
    color: var(--white-color);
    border-color: var(--primary-color);
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    cursor: pointer;
    position: relative;
    /* Added for consistent height regardless of content */
    display: flex;
    flex-direction: column; 
}

.gallery-item img {
    width: 100%;
    height: 250px; /* Standardized height for gallery items */
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item::after {
    content: '🔍 View';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(122, 40, 138, 0.7); /* primary color overlay */
    color: var(--white-color);
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-item:hover::after {
    opacity: 1;
}


/* Lightbox Modal */
.lightbox-modal {
    display: none; /* Controlled by JS, but flex for centering */
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
    animation: fadeIn 0.3s;
    /* Added for centering content */
    display: flex; 
    align-items: center;
    justify-content: center;
}

.lightbox-content {
    /* Removed absolute positioning that conflicted with flex centering */
    margin: auto; /* Still useful with flex for margin override if needed */
    display: block;
    max-width: 85%;
    max-height: 85%;
    /* Removed position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); - now handled by flex */
}

.lightbox-close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
    z-index: 2001; /* Ensure close button is above content */
}

.lightbox-close:hover,
.lightbox-close:focus {
    color: #bbb;
    text-decoration: none;
}

/* Responsive adjustments for gallery */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

/* --- Styles for Contact Page --- */

.contact-page-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    background: var(--white-color);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
}

.contact-details h3, .contact-form-container h3 {
    margin-bottom: 1.5rem;
}

.contact-detail-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}
.contact-detail-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-right: 1.5rem;
    margin-top: 5px;
    width: 25px; /* Fixed width for consistent alignment */
    text-align: center;
}
.contact-detail-item div {
    flex: 1;
}
.contact-detail-item strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}
.contact-detail-item p {
    margin-bottom: 0;
    line-height: 1.5;
}
.contact-detail-item a {
    word-break: break-all;
}


/* Form Styles */
.form-group {
    margin-bottom: 1.5rem;
}
.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color 0.3s ease;
}
.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}
.contact-form button {
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
}


/* Map Section */
.map-section {
    width: 100%;
    margin-top: -80px; /* Pulls the map up to reduce space, adjust if needed */
    position: relative;
    z-index: 1;
}

/* --- Styles for Google Ads Landing Page (admissions.html) --- */

.landing-page {
    background: #fdfcff; /* A very light off-white background */
}

/* Simplified Header */
.lp-header {
    background: var(--white-color);
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}
.lp-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.lp-header-contact {
    font-weight: 600;
}

/* Hero Section */
.lp-hero {
    background-color: var(--primary-color);
    color: var(--white-color);
    padding: 60px 0;
}
.lp-hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    align-items: center;
}
.lp-hero-text h1 {
    color: var(--white-color);
    font-size: 3rem;
    line-height: 1.2;
}
.lp-hero-text .sub-heading {
    font-size: 1.2rem;
    color: #eee;
    margin-bottom: 2rem;
}
.lp-hero-text ul {
    list-style: none;
    padding-left: 0;
}
.lp-hero-text li {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}
.lp-hero-text li i {
    color: var(--secondary-color);
    margin-right: 10px;
    font-size: 1.5rem;
}

/* Form Container */
.lp-form-container {
    background: var(--white-color);
    color: var(--dark-color);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}
.lp-form-container h3 {
    text-align: center;
}
.lp-form-container p {
    text-align: center;
    margin-bottom: 1.5rem;
}
.lp-form-container .form-group input, .lp-form-container .form-group select {
    padding: 15px;
    font-size: 1.1rem;
}
.lp-form-container button {
    width: 100%;
    padding: 15px;
    font-size: 1.2rem;
}
.form-footer-text {
    text-align: center;
    margin-top: 1rem;
    margin-bottom: 0 !important;
    font-size: 0.9rem;
}

/* Trust Bar */
.trust-bar {
    background: var(--light-color);
    padding: 20px 0;
}
.trust-bar .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    text-align: center;
}
.trust-bar-item {
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.trust-bar-item i {
    color: var(--primary-color);
}

/* Why Us Section */
.why-us-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}
.why-us-item {
    padding: 1rem;
}
.why-us-item i {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

/* Testimonial Section */
.testimonial-lp {
    padding: 60px 0;
    text-align: center;
}
.testimonial-text {
    font-size: 1.5rem;
    font-style: italic;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}
.testimonial-author {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-top: 1.5rem;
}

/* Final CTA */
.final-cta h2 {
    color: var(--primary-color);
}
.btn-lg {
    padding: 18px 40px;
    font-size: 1.3rem;
}

/* Simplified Footer */
.lp-footer {
    background: var(--dark-color);
    color: #ccc;
    text-align: center;
    padding: 20px 0;
    font-size: 0.9rem;
}

/* --- Responsive Design (Media Queries) --- */
@media (max-width: 992px) {
    .header-contact-info, .header-admissions-btn {
        display: none;
    }

    /* Adjust main nav positioning for smaller header */
    .main-nav {
        top: 60px; /* Adjusted based on header height, verify this */
    }

    .lp-hero-grid {
        grid-template-columns: 1fr;
    }
    .lp-hero-text {
        text-align: center;
        margin-bottom: 3rem;
    }
     .lp-hero-text ul {
        display: inline-block;
        text-align: left;
    }
}

@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }

    /* Mobile Menu - Hamburger Toggle & Nav Display */
    .main-header .container {
        flex-wrap: wrap; /* Allow items to wrap */
        justify-content: space-between;
    }
    .main-nav {
        display: none; /* Hide by default on small screens */
        position: absolute;
        top: 80px; /* Adjust based on actual header height on mobile */
        left: 0;
        width: 100%;
        background-color: var(--white-color);
        flex-direction: column;
        text-align: center;
        box-shadow: var(--box-shadow);
        z-index: 999; /* Ensure it's above other content but below sticky header */
    }
    .main-nav.active {
        display: flex; /* Show when active */
    }

    .main-nav ul {
        flex-direction: column;
        width: 100%;
    }

    .main-nav li {
        margin: 0;
        border-bottom: 1px solid #f0f0f0; /* Separator for menu items */
    }
    .main-nav li:last-child {
        border-bottom: none; /* No border on the last item */
    }

    .main-nav a {
        display: block;
        padding: 1rem;
        color: var(--dark-color); /* Ensure menu links are readable */
    }
    .main-nav a.active {
        background-color: var(--light-color); /* Highlight active menu item */
    }
    
    .menu-toggle {
        display: block; /* Show hamburger icon */
    }
    
    .programs-highlight-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    /* Specific adjustments for contact page on smaller screens */
    .contact-page-grid {
        grid-template-columns: 1fr; /* Stack contact details and form */
    }
    .map-section {
        margin-top: 0; /* Remove negative margin on small screens */
    }
    
    .why-us-grid {
        grid-template-columns: 1fr;
    }
    .testimonial-text {
        font-size: 1.2rem;
    }
}