/* Global Vars */
:root {
    --primary: #030054;
    /* Navy Blue */
    --accent: #C29C76;
    /* Gold/Champagne */
    --action: #EC0000;
    /* Action Red */
    --text: #1a1a1a;
    --text-light: #666;
    --white: #ffffff;
    --off-white: #F8F8F8;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    --glass: rgba(255, 255, 255, 0.8);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
.font-heading {
    font-family: 'Playfair Display', serif;
}

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

.highlight {
    color: var(--accent);
    position: relative;
    display: inline-block;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(194, 156, 118, 0.2);
    z-index: -1;
}

.highlight-alt {
    color: var(--primary);
    font-weight: 900;
}

/* Header */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
}

.main-header.scrolled {
    background: rgba(3, 0, 84, 0.85);
    /* Blue Glass effect */
    backdrop-filter: blur(15px);
    padding: 10px 0;
    box-shadow: var(--shadow);
    border-bottom: 2px solid var(--accent);
}

.container-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-logo {
    height: 140px;
    transition: var(--transition);
}

.scrolled .header-logo {
    height: 104px;
    filter: none;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.main-nav a {
    text-decoration: none;
    color: var(--white);
    /* White for the blue hero background */
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.scrolled .main-nav a {
    color: var(--white);
    /* Stays white since background is now blue glass */
}

.main-nav a:hover {
    color: var(--accent);
}

/* Mobile Menu Toggle Styling */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 1100;
}

.mobile-menu-toggle span {
    width: 100%;
    height: 3px;
    background: var(--white);
    /* White for hero */
    border-radius: 10px;
    transition: var(--transition);
}

.scrolled .mobile-menu-toggle span {
    background: var(--primary);
    /* Blue for scroll */
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    border: none;
}

.btn-primary {
    background: var(--accent);
    /* Changed to Gold for visibility */
    color: var(--white);
    box-shadow: 0 4px 15px rgba(194, 156, 118, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: 0.6s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    background: #d4ae83;
    /* Slightly lighter gold */
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(194, 156, 118, 0.4);
}

.btn-header {
    padding: 10px 24px;
    background: var(--accent);
    color: var(--white) !important;
}

.btn-header:hover {
    background: var(--white);
    color: var(--primary) !important;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--primary);
    transform: translateY(-3px);
}

.btn-lg {
    padding: 18px 40px;
    font-size: 1rem;
}

/* Hero Section */
/* Culture Section */
.culture-section {
    padding: 120px 0;
    background: var(--white);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    /* Added for separation */
}

.recognition-badge {
    color: var(--accent);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 0.8rem;
    margin-bottom: 10px;
}

.culture-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.culture-card {
    background: var(--primary);
    color: var(--white);
    padding: 50px 40px;
    border-radius: 20px;
    transition: var(--transition);
}

.culture-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(3, 0, 84, 0.2);
}

.culture-icon {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 20px;
}

.culture-card h4 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.culture-card p {
    opacity: 0.8;
    font-size: 1rem;
}

.info-highlight-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 20px;
    background: var(--off-white);
    padding: 30px;
    border-radius: 15px;
    transition: var(--transition);
}

.info-item:hover {
    background: var(--white);
    box-shadow: var(--shadow);
}

.info-icon-circle {
    min-width: 60px;
    height: 60px;
    background: var(--action);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 5px 15px rgba(236, 0, 0, 0.3);
}

.info-text h4 {
    font-size: 1.1rem;
    color: var(--primary);
    margin-bottom: 5px;
}

.info-text p {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Testimonials */
.testimonials {
    padding: 120px 0;
    background: var(--off-white);
}

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

.testimonial-card {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    position: relative;
    transition: var(--transition);
}

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

.quote-icon {
    color: var(--accent);
    font-size: 2rem;
    margin-bottom: 20px;
    opacity: 0.3;
}

.testimonial-card p {
    font-style: italic;
    color: var(--text);
    margin-bottom: 25px;
    line-height: 1.8;
}

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

.parent-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-size: cover;
    background-repeat: no-repeat;
    border: 3px solid var(--accent);
}

.parent-info strong {
    display: block;
    color: var(--primary);
    font-size: 1.1rem;
}

.parent-info span {
    font-size: 0.85rem;
    color: var(--accent);
    font-weight: 600;
}

/* Why Choose Timeline */
.why-choose-timeline {
    padding: 120px 0;
    background: #02003c;
    /* Very Dark Navy from screenshot */
    color: var(--white);
    position: relative;
    overflow: hidden;
}

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

.white-text {
    color: var(--white) !important;
}

.timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.timeline-line {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    z-index: 1;
}

.timeline-item {
    display: grid;
    grid-template-columns: 1fr 100px 1fr;
    grid-template-areas: "left icon right";
    align-items: center;
    margin-bottom: 100px;
    position: relative;
    z-index: 2;
}

.timeline-item.reversed {
    direction: ltr;
    /* Ensure standard flow for grid mapping */
}

/* timeline-content padding moved to areas */

.timeline-content h3 {
    font-size: 2.2rem;
    color: var(--accent);
    margin-bottom: 15px;
}

.timeline-content p {
    font-size: 0.95rem;
    opacity: 0.8;
    line-height: 1.8;
    margin-bottom: 20px;
}

.timeline-list {
    list-style: none;
    padding: 0;
}

.timeline-list li {
    margin-bottom: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.timeline-list i {
    color: var(--accent);
}

.timeline-icon {
    grid-area: icon;
    display: flex;
    justify-content: center;
    z-index: 3;
}

.icon-circle-red {
    width: 60px;
    height: 60px;
    background: var(--action);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    border: 4px solid #02003c;
    box-shadow: 0 0 0 2px rgba(236, 0, 0, 0.5);
}

.timeline-image img {
    width: 100%;
    max-width: 400px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    transition: var(--transition);
}

.timeline-image img:hover {
    transform: scale(1.05);
}

/* Timeline Layout mapping */
.content-left {
    grid-area: left;
    text-align: right;
    padding: 30px;
}

.image-right {
    grid-area: right;
}

.content-right {
    grid-area: right;
    text-align: left;
    padding: 30px;
}

.image-left {
    grid-area: left;
}

.timeline-icon {
    grid-area: icon;
    display: flex;
    justify-content: center;
    z-index: 3;
}

.timeline-item:not(.reversed) .timeline-list li {
    flex-direction: row-reverse;
    /* Icon stays on the right, near the center line */
    justify-content: flex-start;
    /* Aligns toward the center */
}

.timeline-item.reversed .timeline-list li {
    flex-direction: row;
    /* Icon stays on the left, near the center line */
    justify-content: flex-start;
}

.hero {
    height: 100vh;
    min-height: 700px;
    background: url('assets/images/hero-bg.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 80px;
    color: var(--white);
    overflow: visible;
    /* Prevent clipping */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(3, 0, 84, 0.9) 30%, rgba(3, 0, 84, 0.4) 100%);
    z-index: 1;
}

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

.hero-badge {
    display: inline-block;
    background: rgba(194, 156, 118, 0.15);
    /* Tinted Gold */
    backdrop-filter: blur(8px);
    padding: 7px 18px;
    /* Reduced by ~25% */
    border-radius: 40px;
    font-size: 0.65rem;
    /* Reduced from 0.85rem */
    font-weight: 700;
    margin-bottom: 25px;
    border: 1px solid rgba(194, 156, 118, 0.4);
    /* Gold border */
    color: #f1d5b3;
    /* Light gold text */
    text-transform: uppercase;
    letter-spacing: 1.1px;
    /* Reduced from 1.5px */
    box-shadow: 0 4px 15px rgba(194, 156, 118, 0.2);
}

.hero-title {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 25px;
}

.hero-title .highlight {
    background: linear-gradient(90deg, var(--accent) 0%, #ecd0a9 50%, var(--accent) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
    to {
        background-position: 200% center;
    }
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 90%;
}

.hero-ctas {
    display: flex;
    gap: 20px;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: visible;
    /* Ensure head is not cut */
}

.hero-image-wrapper {
    position: relative;
    width: 450px;
    height: 650px;
    /* Increased to avoid head clipping */
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: visible;
    border-radius: 250px 250px 40px 40px;
    /* Matching the frame shape */
}

.hero-image-frame {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 85%;
    /* Slightly higher frame */
    background: linear-gradient(180deg, rgba(194, 156, 118, 0.1) 0%, rgba(3, 3, 84, 0.3) 100%);
    border: 3px solid var(--accent);
    border-radius: 250px 250px 40px 40px;
    z-index: 1;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5), inset 0 0 20px rgba(194, 156, 118, 0.2);
    overflow: hidden;
    /* Added to clip any internal stray elements */
}

/* Removed pseudo-element mask */

.main-student-img {
    position: relative;
    z-index: 2;
    width: 135%;
    /* Increased as requested */
    height: auto;
    max-width: none;
    margin-bottom: -15px;
    /* Adjust as needed after scaling */
    filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.4));
    left: 90%;
    bottom: 18px;
    /* Moved up as requested */
    transform: translateX(-50%);
    transform-origin: bottom center;
}

/* About Institutional Section */
.about-institutional {
    padding: 120px 0;
    background: var(--off-white);
    position: relative;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-text p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 25px;
}

.about-video {
    display: flex;
    justify-content: center;
}

.custom-video-player {
    position: relative;
    width: 100%;
    max-width: 380px;
    background: #000;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(3, 0, 84, 0.3);
    border: 8px solid #fff;
    aspect-ratio: 9 / 16;
    cursor: pointer;
}

.custom-video-player video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(3, 0, 84, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 2;
}

.custom-video-player:hover .video-overlay {
    background: rgba(3, 0, 84, 0.1);
}

.play-button-elegant {
    width: 80px;
    height: 80px;
    background: var(--white);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
    padding-left: 5px;
    /* Adjusting for play icon triangle alignment */
}

.custom-video-player:hover .play-button-elegant {
    transform: scale(1.1);
    background: var(--accent);
    color: var(--white);
}

.video-overlay.playing {
    opacity: 0;
    pointer-events: none;
}

/* Section Common */
.section-badge {
    text-transform: uppercase;
    color: var(--accent);
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 0.8rem;
    margin-bottom: 10px;
    display: block;
}

.section-title {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 25px;
}

.section-desc {
    max-width: 700px;
    color: var(--text-light);
    margin-bottom: 50px;
    font-size: 1.1rem;
}

/* Intro Section */
.intro-section {
    padding: 120px 0;
    background: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.feature-card {
    background: var(--off-white);
    padding: 40px 30px;
    border-radius: 20px;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.03);
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-10px);
    background: var(--white);
    box-shadow: var(--shadow);
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon img {
    max-width: 100%;
    max-height: 100%;
}

.feature-card h3 {
    color: var(--primary);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.feature-card p {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Why Choose */
.why-choose {
    padding: 120px 0;
    background: var(--off-white);
}

.flex-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.why-items {
    margin-top: 40px;
}

.why-item {
    display: flex;
    gap: 20px;
    margin-bottom: 35px;
}

.why-icon-box {
    min-width: 50px;
    height: 50px;
    background: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.why-text h4 {
    color: var(--primary);
    margin-bottom: 5px;
    font-size: 1.2rem;
}

.why-text p {
    font-size: 0.95rem;
    color: var(--text-light);
}

.why-images {
    position: relative;
}

.image-stack {
    position: relative;
    height: 500px;
}

.img-1 {
    width: 70%;
    height: auto;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.img-2 {
    position: absolute;
    bottom: -30px;
    right: 0;
    width: 60%;
    height: auto;
    border-radius: 20px;
    box-shadow: var(--shadow);
    border: 10px solid var(--white);
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: var(--primary);
    text-align: center;
    color: var(--white);
}

.cta-inner {
    max-width: 800px;
    margin: 0 auto;
}

.cta-inner h2 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.cta-inner p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 40px;
}

.btn-cta {
    font-size: 1.2rem;
    padding: 20px 50px;
    background: var(--white);
    color: var(--primary);
}

.btn-cta:hover {
    background: var(--accent);
    color: var(--white);
}

.cta-note {
    display: block;
    margin-top: 20px;
    font-size: 0.8rem;
    opacity: 0.7;
}

/* Footer */
.main-footer {
    background: #02003c;
    color: var(--white);
    padding: 100px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 80px;
    padding-bottom: 80px;
}

.footer-logo {
    height: 70px;
    margin-bottom: 25px;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--accent);
    transform: translateY(-3px);
}

.footer-links h4,
.footer-contact h4 {
    margin-bottom: 25px;
    font-size: 1.2rem;
}

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

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 5px;
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 15px;
}

.footer-contact i {
    color: var(--accent);
    margin-right: 10px;
}

.footer-bottom {
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
}

.footer-bottom-flex {
    flex-direction: column;
    gap: 20px;
}

.footer-partner {
    height: 35px;
    opacity: 0.9;
    filter: brightness(0) invert(1);
    /* Ensure it's white/visible if needed */
    transition: var(--transition);
}

.footer-partner:hover {
    opacity: 1;
    transform: scale(1.05);
    /* Premium hover */
}

.developed-by {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

/* WhatsApp Float Modernized */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 10px 25px rgba(18, 140, 126, 0.4);
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: whatsapp-pulse 2s infinite;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 30px rgba(18, 140, 126, 0.6);
    color: white;
}

.whatsapp-tooltip {
    position: absolute;
    right: 80px;
    background: white;
    color: #333;
    padding: 8px 15px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: all 0.3s ease;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

@keyframes whatsapp-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Mobile Responsive */
@media (max-width: 991px) {
    .container {
        padding: 0 20px;
    }

    .main-nav {
        display: none !important;
        /* Remove menu on tablet/mobile */
    }

    .hero {
        height: 100vh;
        min-height: 600px;
        padding-top: 80px;
        /* Space for the logo */
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 60px;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .hero-image-wrapper {
        width: 300px;
        height: 420px;
        margin: 0 auto;
    }

    .hero-image-frame {
        height: 85%;
    }

    .main-student-img {
        width: 135%;
        left: 50%;
        bottom: 10px;
        transform: translateX(-50%);
    }

    .hero-image {
        display: none;
        /* Hide student and frame on mobile/tablet */
    }

    .hero-ctas {
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }

    .hero-ctas .btn {
        width: 100%;
        max-width: 300px;
    }

    .hero-badge {
        font-size: 0.6rem;
        padding: 6px 15px;
    }

    .hero-subtitle {
        max-width: 100%;
        margin: 0 auto 30px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .about-video {
        max-width: 100%;
    }

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

    .culture-card {
        padding: 30px 20px;
    }

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

    .info-highlight-grid {
        grid-template-columns: 1fr;
    }

    .timeline-item,
    .timeline-item.reversed {
        display: flex;
        flex-direction: column;
        text-align: center;
        gap: 30px;
        margin-bottom: 80px;
        position: relative;
    }

    .timeline-item:last-child {
        margin-bottom: 0;
    }

    /* Connecting line for mobile */
    .timeline-item:not(:last-child)::after {
        content: '';
        position: absolute;
        bottom: -80px;
        left: 50%;
        transform: translateX(-50%);
        width: 2px;
        height: 80px;
        background: repeating-linear-gradient(to bottom, var(--accent), var(--accent) 5px, transparent 5px, transparent 10px);
        z-index: 1;
    }

    .timeline-line {
        display: none;
    }

    .timeline-icon {
        display: flex;
        justify-content: center;
        order: 4;
        margin-top: 10px;
        position: relative;
        z-index: 2;
    }

    .timeline-item:last-child .timeline-icon {
        display: none;
    }

    .icon-circle-red {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        background: var(--action);
        /* Restored Red */
        border: 3px solid var(--primary);
    }

    .timeline-content {
        padding: 0 !important;
        text-align: center !important;
        width: 100%;
        order: 2;
    }

    .timeline-content h3 {
        font-size: 1.8rem;
        text-align: center;
    }

    .timeline-image {
        width: 100%;
        display: flex;
        justify-content: center;
        order: 1;
    }

    .timeline-image img {
        max-width: 100%;
        width: 280px;
    }

    .timeline-list {
        display: inline-block;
        text-align: left;
        margin: 0 auto;
        order: 3;
    }

    .timeline-list li,
    .timeline-item.reversed .timeline-list li {
        justify-content: flex-start;
        flex-direction: row !important;
        text-align: left;
        margin-bottom: 12px;
    }

    .info-item {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .info-icon-circle {
        margin: 0 auto 15px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .mobile-menu-toggle {
        display: none !important;
        /* Guaranteed removal */
    }

    .hero-badge {
        margin-bottom: 15px;
    }

    .hero-subtitle {
        font-size: 1rem;
        max-width: 100%;
        margin-bottom: 30px;
    }

    .section-title {
        font-size: 2rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand,
    .footer-links,
    .footer-contact {
        align-items: center;
        display: flex;
        flex-direction: column;
    }

    .container-header {
        justify-content: center;
    }

    .header-logo {
        height: 100px;
    }

    .scrolled .header-logo {
        height: 80px;
    }

    .btn-header {
        display: none !important;
    }
}