/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #f8f9fa;
    color: #333;
}

body.no-scroll {
    overflow: hidden !important;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

a {
    text-decoration: none;
}

.section-padding {
    padding: 80px 0;
}

.bg-light {
    background-color: #f9f9f9;
}

:root {
    --primary-blue: #2698d3; /* KEH Blue */
    --brand-teal: #2bb3a5;   /* New KEH Teal from Logo */
    --brand-dark-teal: #004b49; /* Deep Teal for Top Bar/Dark themes */
    --brand-orange: #f39221; /* KEH Orange */
    --brand-green: #6dbd45;  /* KEH Green */
    --brand-red: var(--brand-teal); 
}

/* --- TOP BAR STYLES --- */
.top-bar {
    background-color: var(--brand-dark-teal);
    color: rgba(255, 255, 255, 0.9);
    padding: 8px 0;
    font-size: 13.5px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-bar .container {
    display: flex;
    align-items: center;
    gap: 30px;
}

.top-clock-part, .top-info-part, .top-contact-links, .top-location-socials {
    display: flex;
    align-items: center;
    gap: 20px;
}

.top-info-part {
    flex-grow: 1;
}

.top-location-socials {
    margin-left: auto;
    gap: 25px;
}

.top-location {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Force links and icons in top bar to be legible on dark background */
.top-bar a, .top-bar span {
    color: white !important;
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.top-bar a:hover {
    color: var(--brand-teal) !important;
}

.top-bar i {
    color: var(--brand-teal) !important;
    margin-right: 8px;
    font-size: 14px;
}

.social-icons a {
    color: white !important;
    font-size: 16px;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    color: var(--brand-teal) !important;
    transform: translateY(-2px);
}

.contact-info span {
    margin-right: 20px;
    display: inline-flex;
    align-items: center;
}

.contact-info i {
    color: var(--brand-teal);
    margin-right: 8px;
    font-size: 14px;
}

/* --- MAIN HEADER STYLES --- */
.main-header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-area img {
    height: 55px;
    width: auto;
}

.logo-text h1 {
    color: var(--brand-red);
    font-size: 26px;
    font-weight: 800;
    line-height: 1;
}



.kite-orange {
    color: var(--brand-orange);
}

.kite-teal {
    color: var(--brand-teal);
}

.kite-blue {
    color: var(--primary-blue);
}

.kite-green {
    color: var(--brand-green);
}

/* Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.menu-toggle .bar {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
    transition: 0.4s;
}

/* Navigation Links */
.nav-links {
    list-style: none;
    display: flex;
}

.nav-links li {
    margin: 0 15px;
}

.nav-links a {
    color: #333;
    font-weight: 600;
    font-size: 15px;
    transition: 0.3s;
}

.nav-links a:hover {
    color: var(--brand-red);
}

.nav-links li.active a {
    color: var(--brand-red);
}

/* Hide mobile-specific menu button on desktop */
@media (min-width: 769px) {
    .mobile-cta-li {
        display: none !important;
    }
}

/* Dropdown Menu */
.nav-links li.dropdown {
    position: relative;
    padding-bottom: 10px;
    /* Bridge the gap */
    margin-bottom: -10px;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #fff;
    min-width: 200px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    top: 100%;
    left: 0;
    border-top: 3px solid var(--brand-red);
    padding: 0;
    border-radius: 0 0 5px 5px;
}

.dropdown-content li {
    margin: 0;
    display: block;
}

.dropdown-content li a {
    color: #333;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    border-bottom: 1px solid #eee;
    font-size: 14px;
    transition: all 0.3s ease;
    text-align: left;
}

.dropdown-content li:last-child a {
    border-bottom: none;
}

.dropdown-content li a:hover {
    background-color: #f8f9fa;
    color: var(--brand-red);
    padding-left: 20px;
    /* Slight movement effect */
}

/* Show the dropdown menu on hover (Desktop only) */
@media (min-width: 769px) {
    .nav-links li.dropdown:hover .dropdown-content {
        display: block;
        animation: fadeIn 0.3s ease;
    }
}

/* Mobile Dropdown Active State */
.dropdown-content.active {
    display: block !important;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* CTA Button Styling */
.btn {
    background-color: var(--brand-red);
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
    transition: 0.3s;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background-color: #c92a35;
}

/* --- HERO SECTION --- */
.hero {
    background: linear-gradient(rgba(0, 51, 102, 0.8), rgba(0, 51, 102, 0.8)), url('images/hero-bg.png');
    background-size: cover;
    background-position: center;
    height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 800;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 30px;
    max-width: 600px;
    margin: 0 auto 30px;
}

.hero-btns .btn-secondary {
    background: transparent;
    border: 2px solid white;
    margin-left: 10px;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
}

.hero-btns .btn-secondary:hover {
    background: white;
    color: var(--primary-blue);
}

/* --- PAGE HEADER (For Inner Pages) --- */
.page-header {
    background: linear-gradient(rgba(0, 51, 102, 0.9), rgba(0, 51, 102, 0.9)), url('images/page-header.png');
    background-size: cover;
    background-position: center;
    height: 140px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
}

.page-header h1 {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 10px;
}

.breadcrumb {
    font-size: 16px;
    color: #ccc;
}

.breadcrumb a {
    color: white;
    font-weight: bold;
}

/* --- STATS SECTION --- */
.stats-section {
    background-color: var(--brand-red);
    padding: 40px 0;
    color: white;
}

.stats-grid {
    display: flex;
    justify-content: space-around;
    text-align: center;
}

.stat-box i {
    font-size: 30px;
    margin-bottom: 10px;
}

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

/* --- SECTION TITLE --- */
.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 36px;
    color: var(--primary-blue);
    margin-bottom: 10px;
}

.section-title p {
    color: #666;
}

/* --- DESTINATIONS GRID --- */
.destination-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.dest-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
}

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

.dest-img {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.dest-info {
    padding: 20px;
    text-align: center;
}

.dest-info h3 {
    color: var(--primary-blue);
    margin-bottom: 10px;
}

.dest-info a {
    color: var(--brand-red);
    font-weight: bold;
}

/* --- SERVICES SECTION --- */
.services-grid {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.service-box {
    background: white;
    flex-basis: 30%;
    padding: 30px;
    text-align: center;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
    border-bottom: 3px solid transparent;
}

.service-box:hover {
    border-bottom: 3px solid var(--brand-red);
}

.service-box i {
    font-size: 40px;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.service-box h3 {
    margin-bottom: 15px;
    color: #333;
}

/* --- ABOUT PAGE STYLES --- */
.about-grid {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    color: var(--primary-blue);
    font-size: 32px;
    margin-bottom: 20px;
}

.about-text p {
    margin-bottom: 15px;
    line-height: 1.6;
    color: #555;
}

.about-image {
    flex: 1;
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100px;
    height: 100px;
    background-color: var(--brand-red);
    z-index: -1;
    border-radius: 5px;
}

/* --- MISSION & VISION CARDS --- */
.mv-grid {
    display: flex;
    gap: 30px;
    margin-top: 50px;
}

.mv-card {
    background: white;
    padding: 40px 30px;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    flex: 1;
    transition: 0.3s;
    border-top: 4px solid var(--primary-blue);
}

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

.mv-card i {
    font-size: 40px;
    color: var(--brand-red);
    margin-bottom: 20px;
}

.mv-card h3 {
    color: var(--primary-blue);
    margin-bottom: 15px;
}

/* --- DIRECTOR MESSAGE --- */
.director-msg {
    background-color: #f0f4f8;
}

.director-grid {
    display: flex;
    align-items: center;
    gap: 40px;
}

.director-img img {
    width: 300px;
    height: 350px;
    object-fit: cover;
    border-radius: 10px;
    border: 5px solid white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.director-text h2 {
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.director-text blockquote {
    font-style: italic;
    font-size: 18px;
    color: #555;
    border-left: 4px solid var(--brand-red);
    padding-left: 20px;
    margin-bottom: 20px;
}

.director-name {
    font-weight: bold;
    color: var(--primary-blue);
    font-size: 20px;
}

.director-role {
    color: var(--brand-red);
    font-size: 14px;
}

/* --- TEAM SECTION --- */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, 280px);
    gap: 30px;
    justify-content: center;
}

.team-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.team-img {
    height: 280px;
    /* Square ratio with 280px width */
    background-color: #ddd;
    overflow: hidden;
}

.team-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: 0.5s;
}

.team-card:hover .team-img img {
    transform: scale(1.05);
    /* Reduced scale to be subtle */
}

.team-info {
    padding: 20px;
}

.team-info h3 {
    color: var(--primary-blue);
    margin-bottom: 5px;
}

.team-info p {
    color: #777;
    font-size: 14px;
}

/* --- SERVICES PAGE SPECIFIC STYLES --- */
.visa-service {
    display: flex;
    align-items: center;
    gap: 50px;
}

.visa-text h2 {
    color: var(--primary-blue);
    font-size: 32px;
    margin-bottom: 20px;
}

.visa-text p {
    margin-bottom: 15px;
    line-height: 1.6;
    color: #555;
}

.visa-features {
    list-style: none;
    margin-top: 20px;
}

.visa-features li {
    margin-bottom: 10px;
    font-weight: 600;
    color: #444;
}

.visa-features li i {
    color: var(--brand-red);
    margin-right: 10px;
}

.visa-img img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* --- LANGUAGE CLASSES GRID --- */
.classes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.class-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    border-bottom: 4px solid transparent;
    transition: 0.3s;
}

.class-card:hover {
    border-bottom: 4px solid var(--brand-red);
    transform: translateY(-5px);
}

.class-icon {
    height: 70px;
    width: 70px;
    background: #f0f4f8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.class-icon i {
    font-size: 30px;
    color: var(--primary-blue);
}

.class-card h3 {
    color: var(--primary-blue);
    margin-bottom: 10px;
}

.class-card p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}

.class-btn {
    color: var(--brand-red);
    font-weight: bold;
    font-size: 14px;
}

/* --- PROCESS STEPS --- */
.process-steps {
    display: flex;
    justify-content: space-between;
    text-align: center;
    margin-top: 50px;
    flex-wrap: wrap;
    gap: 20px;
}

.step-item {
    flex: 1;
    position: relative;
    min-width: 200px;
}

.step-icon {
    height: 60px;
    width: 60px;
    background: var(--brand-red);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin: 0 auto 15px;
}

.step-item h4 {
    color: var(--primary-blue);
    margin-bottom: 10px;
}

/* Connecting Line (Desktop Only) */
@media(min-width: 768px) {
    .step-item::after {
        content: '';
        position: absolute;
        top: 30px;
        right: -50%;
        width: 100%;
        height: 2px;
        background: #ddd;
        z-index: -1;
    }

    .step-item:last-child::after {
        display: none;
    }
}

/* --- DESTINATIONS PAGE STYLES --- */
.destinations-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.country-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
    position: relative;
}

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

.country-img {
    height: 220px;
    overflow: hidden;
}

.country-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.country-card:hover .country-img img {
    transform: scale(1.1);
}

.country-info {
    padding: 25px;
    text-align: center;
}

.country-info h3 {
    color: var(--primary-blue);
    font-size: 22px;
    margin-bottom: 10px;
}

.country-info p {
    color: #666;
    font-size: 14px;
    margin-bottom: 20px;
}

.country-btn {
    display: inline-block;
    padding: 8px 20px;
    border: 2px solid var(--primary-blue);
    color: var(--primary-blue);
    border-radius: 50px;
    font-weight: 600;
    transition: 0.3s;
}

.country-btn:hover {
    background-color: var(--primary-blue);
    color: white;
}

.flag-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    background: white;
    padding: 5px;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    font-size: 20px;
}

/* --- CONTACT PAGE STYLES --- */
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.info-card {
    background: white;
    padding: 40px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border-bottom: 3px solid transparent;
    transition: 0.3s;
}

.info-card:hover {
    border-bottom: 3px solid var(--brand-red);
    transform: translateY(-5px);
}

.info-card i {
    font-size: 40px;
    color: var(--brand-red);
    margin-bottom: 20px;
}

.info-card h3 {
    color: var(--primary-blue);
    margin-bottom: 10px;
}

.info-card p {
    color: #666;
}

/* --- FORM & MAP CONTAINER --- */
.contact-wrapper {
    display: flex;
    gap: 40px;
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

/* Form Styling */
.contact-form {
    flex: 1;
}

.contact-form h2 {
    color: var(--primary-blue);
    margin-bottom: 25px;
    font-size: 28px;
}

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

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

.form-control {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 15px;
    transition: 0.3s;
}

.form-control:focus {
    border-color: var(--primary-blue);
    outline: none;
}

textarea.form-control {
    resize: none;
    height: 120px;
}

/* Map Styling */
.map-container {
    flex: 1;
    min-height: 400px;
    border-radius: 10px;
    overflow: hidden;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* --- FOOTER STYLES --- */
.footer {
    background-color: #002244;
    color: #ffffff;
    padding-top: 60px;
    margin-top: 0;
}

.footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.footer-col {
    width: 23%;
    margin-bottom: 30px;
}

.footer-col h3 {
    color: var(--brand-red);
    margin-bottom: 20px;
    font-size: 22px;
}

.footer-col h4 {
    margin-bottom: 20px;
    font-size: 18px;
    border-bottom: 2px solid var(--brand-red);
    display: inline-block;
    padding-bottom: 5px;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.6;
    color: #dcdcdc;
}

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

.footer-col ul li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    /* Centered alignment based on user request */
    gap: 10px;
}

.footer-col ul li a {
    color: #ccc;
    transition: 0.3s;
}

.footer-col ul li a:hover {
    color: var(--brand-red);
    padding-left: 5px;
}

.footer-col ul li i {
    width: 20px;
    color: var(--brand-red);
    flex-shrink: 0;
    /* margin-top removed for center alignment */
    text-align: center;
}

.footer-contact-list {
    padding: 0;
    list-style: none;
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    /* Align icon to top */
    gap: 15px;
    margin-bottom: 15px;
    color: #dcdcdc;
    text-align: left;
}

.footer-contact-list li i {
    width: 20px;
    color: var(--brand-red);
    flex-shrink: 0;
    text-align: center;
    font-size: 16px;
    margin-top: 5px;
    /* Push icon down to match first line of text */
}

.footer-contact-list li span {
    flex: 1;
    line-height: 1.5;
    text-align: left;
}

.social-links {
    margin-top: 20px;
}

.social-links a {
    display: inline-block;
    height: 35px;
    width: 35px;
    background: rgba(255, 255, 255, 0.1);
    text-align: center;
    line-height: 35px;
    border-radius: 50%;
    color: white;
    margin-right: 10px;
}

.social-links a:hover {
    background: var(--brand-red);
}

/* Associate Members */
.associate-members {
    background-color: #001a33;
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.associate-members h4 {
    color: white;
    margin-bottom: 25px;
    font-size: 20px;
}

.member-logos {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.member-logo {
    background-color: white;
    border-radius: 4px;
    height: 80px;
    /* Increased height for better visibility */
    width: 150px;
    /* Slightly wider */
    display: flex;
    justify-content: center;
    align-items: center;
    color: #888;
    font-weight: bold;
    border: 1px solid #ddd;
    padding: 5px;
}

.member-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.footer-bottom {
    background-color: #001122;

    text-align: center;
    padding: 20px 0;
    border-top: 1px solid #002b55;
}

.footer-bottom p {
    font-size: 13px;
    color: #8899a6;
}

/* --- MOBILE RESPONSIVE --- */
/* --- MOBILE RESPONSIVE --- */
@media (max-width: 768px) {
    .top-bar {
        padding: 10px 0;
    }
    .top-bar {
        overflow: hidden;
    }
    .top-bar-content {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
        gap: 10px !important;
        padding: 5px 15px !important;
        width: 100%;
        align-items: center !important;
    }
    /* Dissolve all containers to allow direct reordering of items */
    .top-clock-part, .top-info-part, .top-contact-links, .top-location-socials {
        display: contents !important;
    }
    
    /* Row 1 Items (Clock & Socials) */
    .top-clock-part {
        order: 1 !important;
        flex: 0 0 auto !important;
        justify-content: center !important;
        font-weight: 600;
        color: var(--brand-teal);
        padding-right: 10px;
    }
    .social-icons {
        order: 2 !important;
        flex: 0 0 auto !important;
        display: flex !important;
        justify-content: center !important;
        gap: 12px !important;
        border-left: 1px solid rgba(255,255,255,0.1);
        padding-left: 15px;
    }
    
    /* Divider for Row 2 */
    .top-bar-content::after {
        content: "";
        flex-basis: 100%;
        height: 1px;
        background: rgba(255,255,255,0.08);
        order: 2;
        margin: 4px 0;
    }
    
    /* Row 2 Items (Phone & Location) */
    .top-contact-links {
        order: 3 !important;
        display: flex !important;
        justify-content: center !important;
        padding-right: 5px;
    }
    .top-location {
        order: 4 !important;
        display: flex !important;
        justify-content: center !important;
        padding-left: 5px;
        border-left: 1px solid rgba(255,255,255,0.1);
    }
    
    .top-hide-mobile-email {
        display: none !important;
    }
    .top-bar-content a, .top-bar-content div {
        white-space: nowrap !important;
        font-size: 12.5px !important;
        display: inline-flex;
        align-items: center;
    }
    .top-bar i {
        margin-right: 6px !important;
    }
    .top-bar a, .top-bar span {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
    .top-bar i {
        margin-right: 6px;
    }
    .top-hide-mobile {
        display: none;
    }
    .social-icons {
        margin-top: 0;
        display: flex;
        gap: 15px;
    }
    .social-icons a {
        margin: 0;
    }

    .navbar {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        justify-content: space-between !important;
        align-items: center !important;
        padding: 10px 0 !important;
        width: 100% !important;
    }

    .logo-area {
        gap: 10px !important;
        max-width: 75% !important;
        flex: 0 0 auto !important;
    }

    .logo-area img {
        height: 42px !important;
    }

    .logo-text h1 {
        font-size: 17px !important;
        white-space: nowrap;
    }

    .logo-text p {
        font-size: 11px !important;
    }

    .menu-toggle {
        display: flex !important;
        margin-left: auto !important; /* Pushes to far right */
        padding: 5px !important;
        z-index: 1001;
        flex-shrink: 0 !important;
    }

    nav {
        width: 100%;
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        background: white;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        margin-top: 0 !important;
    }

    nav.active {
        display: block;
        max-height: calc(100vh - 80px); /* Leave room for header */
        overflow-y: auto; /* Enable vertical scrolling */
        animation: slideDown 0.3s ease-out;
        -webkit-overflow-scrolling: touch;
    }

    .nav-links {
        flex-direction: column;
        text-align: center;
        gap: 0;
        width: 100%;
        background-color: #fff;
        padding-bottom: 20px; /* Extra room at bottom */
    }

    .nav-links li {
        margin: 0;
        width: 100%;
        border-bottom: 1px solid #f0f0f0;
    }

    .nav-links li a {
        display: block;
        padding: 15px;
        color: #333;
        font-weight: 500;
    }

    /* Mobile CTA Button inside Menu */
    .mobile-cta-li {
        padding: 20px 15px;
        border-bottom: none !important;
    }

    .mobile-cta-btn {
        background-color: var(--brand-teal) !important;
        color: white !important;
        width: 100%;
        display: block !important;
        padding: 12px !important;
        border-radius: 8px !important;
        text-align: center !important;
        font-weight: 700 !important;
        line-height: 1.3 !important;
        box-shadow: 0 4px 12px rgba(0, 150, 136, 0.2);
    }

    .hide-on-mobile {
        display: none !important;
    }

    .nav-links li.dropdown .dropdown-content {
        position: static;
        box-shadow: none;
        display: none;
        border-top: none;
        background-color: #f9f9f9;
        width: 100%;
        padding-left: 0;
        animation: none;
    }

    .dropdown-content li a {
        padding-left: 30px;
        text-align: left;
    }

    .cta-btn {
        width: 100%;
        text-align: center;
        margin-top: 15px;
        display: none;
        /* Also hide, show with menu */
    }

    .cta-btn.active {
        display: block;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .stats-grid {
        flex-direction: column;
        gap: 30px;
    }

    .about-grid,
    .director-grid,
    .mv-grid,
    .visa-service {
        flex-direction: column;
    }

    .contact-wrapper {
        flex-direction: column;
    }

    .footer-col {
        width: 48%;
    }

    .service-box {
        flex-basis: 100%;
    }

    .about-image::before {
        display: none;
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 576px) {
    .footer-col {
        width: 100%;
    }
}

/* --- BACK TO TOP BUTTON --- */
#backToTop {
    display: none;
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 99;
    font-size: 18px;
    border: none;
    outline: none;
    background-color: var(--brand-red);
    color: white;
    cursor: pointer;
    padding: 0;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    text-align: center;
}

#backToTop:hover {
    background-color: var(--primary-blue);
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

#backToTop i {
    line-height: 50px;
}