:root {
    /* Brand Colors */
    --deep-blue: #233987;
    --bright-orange: #F39200;
    --vibrant-green: #399548;
    --black: #000000;

    /* Primary Palette Mapping */
    --primary: var(--deep-blue);
    --primary-light: #344ca8;
    --secondary: var(--vibrant-green);
    --accent: var(--bright-orange);
    --bg-dark: #1a2b66;
    --bg-light: #F8FAFC;
    
    /* Text Colors */
    --text-main: var(--black);
    --text-muted: #4B5563;
    --text-white: #F8FAFC;
    
    /* Functional Colors */
    --success: var(--vibrant-green);
    --warning: var(--bright-orange);
    --danger: #EF4444;
    --accent-orange: var(--bright-orange);
    
    /* Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-blur: blur(12px);
    
    /* Utilities */
    --transition-fast: 0.2s ease;
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.bg-primary-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
}

.bg-gradient-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
}

.bg-image-section {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.bg-image-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(35, 57, 135, 0.9) 0%, rgba(57, 149, 72, 0.8) 100%);
    z-index: 1;
}

.bg-image-section > div {
    position: relative;
    z-index: 2;
}

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

html {
    width: 100%;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    width: 100%;
    font-family: 'Inter', 'Montserrat', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    position: relative;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: var(--primary);
    line-height: 1.2;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

/* Fluid Typography */
h1 { font-size: clamp(1.8rem, 6vw, 4rem); }
h2 { font-size: clamp(1.5rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 3vw, 2rem); }
p { font-size: clamp(1rem, 2vw, 1.15rem); }

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

p {
    overflow-wrap: break-word;
    word-wrap: break-word;
}

/* Utilities */
.container {
    width: min(90%, 1200px);
    margin: 0 auto;
    padding: 0 1rem;
}

.section-padding {
    padding: 5rem 0;
}

@media (max-width: 768px) {
    .section-padding {
        padding: 3rem 0;
    }
    .flex {
        flex-direction: column;
    }
    .align-center {
        align-items: flex-start;
    }
    .justify-between {
        justify-content: flex-start;
    }
}

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

@media (max-width: 768px) {
    [style*="min-width: 300px"] {
        min-width: 100% !important;
    }
    [style*="grid-template-columns: 1fr 1fr"] {
        grid-template-columns: 1fr !important;
    }
    [style*="gap: 4rem"] {
        gap: 2rem !important;
    }
}

.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-slow);
    border: none;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    box-shadow: 0 10px 20px rgba(35, 57, 135, 0.2);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(35, 57, 135, 0.3);
}

.btn-accent {
    background: var(--accent);
    color: var(--primary);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    padding: 1.2rem 0;
    transition: var(--transition-fast);
    background: rgba(251, 244, 231, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
}

.navbar.scrolled {
    padding: 0.9rem 0;
    box-shadow: 0 4px 30px rgba(0,0,0,0.1);
}

.navbar .btn-primary {
    white-space: nowrap;
    padding: 0.45rem 1.1rem;
    font-size: 0.75rem;
    letter-spacing: 0.5px;
    border-radius: 50px;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 100%;
    overflow-x: hidden;
}

.logo {
    display: flex;
    align-items: center;
    transition: var(--transition-fast);
}

.logo img {
    height: clamp(50px, 8vw, 75px);
    width: auto;
    transition: var(--transition-fast);
}

.navbar.scrolled .logo img {
    height: clamp(40px, 6vw, 65px);
}



.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    font-weight: 500;
    color: var(--text-main);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: var(--transition-fast);
}

.nav-links a:hover::after {
    width: 100%;
}

.mobile-nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1100;
    padding: 10px;
    flex-shrink: 0;
}

.mobile-nav-toggle span {
    width: 28px;
    height: 3px;
    background: var(--primary);
    border-radius: 3px;
    transition: var(--transition-fast);
}

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

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

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

.nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
}

.nav-overlay.active {
    display: block;
    opacity: 1;
    visibility: visible;
}

/* Layered Hero Section */
.hero {
    height: 92vh;
    min-height: 650px;
    display: flex;
    align-items: center;
    background: linear-gradient(rgba(251, 244, 231, 0.8), rgba(251, 244, 231, 0.8)), url('../img/bgslider.png') no-repeat center center/cover;
    color: var(--primary);
    padding-top: 5rem;
    padding-left: 3rem;
    padding-right: 3rem;
    position: relative;
    overflow: hidden;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    position: relative;
    z-index: 10;
    padding: 0 2rem;
}

.hero-content {
    max-width: 600px;
}

.hero h1 {
    font-size: clamp(1.8rem, 6vw, 3.5rem);
    color: var(--primary);
    margin-bottom: 1.5rem;
    animation: fadeInLeft 1s ease forwards;
    text-shadow: none;
}

.hero h1 span {
    color: var(--accent-orange);
}

.hero p {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    margin-bottom: 2.5rem;
    color: var(--primary-light);
    animation: fadeInLeft 1s ease 0.2s forwards;
    opacity: 0;
    text-shadow: none;
}

.hero-visual {
    position: relative;
    flex: 1;
    height: 580px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    overflow: hidden;
}

.layer-student {
    width: 68%;
    max-width: 380px;
    z-index: 5;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    animation: float 4s ease-in-out infinite;
    object-fit: contain;
}

.layer-circles {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 90%;
    max-width: 420px;
    z-index: 0;
    opacity: 0.6;
    animation: pulse 10s ease-in-out infinite;
    object-fit: contain;
}

.layer-rocket {
    position: absolute;
    top: 40px;
    right: 12%;
    width: 70px;
    z-index: 6;
    animation: rocketFloat 6s ease-in-out infinite;
    object-fit: contain;
}


@keyframes float {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50%       { transform: translateX(-50%) translateY(-18px); }
}

@keyframes rocketFloat {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50%       { transform: translate(-20px, -20px) rotate(-10deg); }
}

@keyframes pulse {
    0%, 100% { transform: translateY(-50%) scale(1);   opacity: 0.4; }
    50%       { transform: translateY(-50%) scale(1.08); opacity: 0.65; }
}

@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-50px); }
    to { opacity: 1; transform: translateX(0); }
}

@media (max-width: 992px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
        padding: 0 1rem;
    }
    .hero-visual {
        width: 100%;
        height: 340px;
        margin-top: 2rem;
    }
    }

.hero-btns {
    display: flex;
    gap: 1rem;
    animation: fadeInLeft 1s ease 0.4s forwards;
    opacity: 0;
}

/* Cards & Components */
.card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: var(--transition-slow);
    border: 1px solid #f1f5f9;
}

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

/* Destinations Grid */
.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
    gap: 1.5rem;
}

.dest-card {
    position: relative;
    height: 400px;
    border-radius: 24px;
    overflow: hidden;
}

.dest-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

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

.dest-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem;
    background: linear-gradient(transparent, rgba(0,0,0,0.9));
    color: white;
    z-index: 10;
}

.dest-info h3 {
    color: #ffffff !important;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.dest-info p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    text-shadow: 0 1px 5px rgba(0,0,0,0.3);
}

/* Footer */
footer {
    background: linear-gradient(135deg, var(--primary) 0%, #1a4d25 100%);
    color: white;
    padding: 5rem 0 2rem;
}


.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-about p {
    margin: 1.5rem 0;
    color: rgba(255, 255, 255, 0.7);
}

.footer-about .logo {
    background: white;
    padding: 10px 15px;
    border-radius: 12px;
    display: inline-flex;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.footer-about .logo img {
    height: 50px !important;
    width: auto !important;
    transition: var(--transition-fast);
}

.footer-about .logo:hover img {
    transform: scale(1.05);
}

.footer-links h4 {
    color: white;
    margin-bottom: 1.5rem;
}

.footer-links ul li {
    margin-bottom: 0.8rem;
}

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-links ul li a:hover {
    color: var(--accent);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* Responsiveness */
@media (max-width: 1100px) {
    .navbar {
        background: #fbf4e7 !important;
        box-shadow: 0 2px 15px rgba(0,0,0,0.1);
        padding: 15px 0;
    }
    .navbar .btn-primary {
        display: none;
    }
    .nav-content {
        padding: 0 15px;
    }
    .logo {
        flex-shrink: 0;
    }
    .logo img {
        height: 60px;
    }
    .nav-links {
        position: fixed;
        top: 0;
        right: 0;
        width: 85%;
        max-width: 320px;
        height: 100vh;
        background: #fbf4e7;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transform: translateX(105%);
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.4s, opacity 0.4s;
        z-index: 10000;
        box-shadow: -10px 0 30px rgba(0,0,0,0.1);
        visibility: hidden;
        opacity: 0;
        padding: 2rem;
    }

    .nav-links.active {
        transform: translateX(0);
        visibility: visible;
        opacity: 1;
    }

    .mobile-nav-toggle {
        display: flex;
        flex-shrink: 0;
        padding: 12px;
        gap: 8px;
    }

    .mobile-nav-toggle span {
        width: 32px;
        height: 3.5px;
    }

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

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

    /* Navbar Mobile Fix */
    .navbar {
        padding: 12px 0;
    }
    .nav-content {
        padding: 0 12px;
    }
    .logo img {
        height: 55px;
    }
    .mobile-nav-toggle {
        padding: 10px;
    }
    .mobile-nav-toggle span {
        width: 32px;
        height: 3.5px;
    }

    /* Hero Mobile Fix */
    .hero {
        height: auto;
        min-height: auto;
        padding-top: 7rem;
        padding-bottom: 2rem;
        padding-left: 1.2rem;
        padding-right: 1.2rem;
        display: block;
        overflow: hidden;
    }
    .hero-container {
        flex-direction: column;
        text-align: center;
        padding: 0;
    }
    .hero-content {
        margin-bottom: 2rem;
        width: 100%;
        overflow: hidden;
    }
    .hero h1 {
        word-wrap: break-word;
        overflow: hidden;
    }
    .hero p {
        padding: 0 0.5rem;
        word-wrap: break-word;
    }
    .hero-btns {
        justify-content: center;
        display: flex;
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    .hero-btns .btn {
        width: 100%;
        max-width: 280px;
        text-align: center;
        padding: 0.8rem 1.5rem;
    }

    /* Hero Visual — centered composition */
    .hero-visual {
        width: 100%;
        height: 300px;
        flex: none;
        overflow: visible;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto;
    }
    .layer-circles {
        position: absolute;
        width: 280px;
        height: 280px;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        opacity: 0.55;
        animation: pulse 10s ease-in-out infinite;
        object-fit: contain;
    }
    .layer-student {
        position: absolute;
        width: 72%;
        max-width: 260px;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        animation: float 4s ease-in-out infinite;
        object-fit: contain;
        z-index: 5;
    }
    .layer-rocket {
        position: absolute;
        width: 44px;
        top: 10px;
        right: calc(50% - 140px);
        z-index: 6;
        animation: rocketFloat 6s ease-in-out infinite;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
    .nav-content {
        padding: 0 10px;
    }
    .logo img {
        height: 50px;
    }
    .mobile-nav-toggle {
        padding: 8px;
    }
    .mobile-nav-toggle span {
        width: 30px;
        height: 3px;
    }
    /* Hero Images Mobile Fix */
    .hero-visual {
        height: 260px;
    }
    .layer-circles {
        width: 240px;
        height: 240px;
    }
    .layer-student {
        width: 68%;
        max-width: 220px;
    }
    .layer-rocket {
        width: 36px;
        right: calc(50% - 120px);
        top: 8px;
    }
}

/* Unique Testimonials Design */
.testimonials-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    position: relative;
    overflow: hidden;
    padding: 8rem 0;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: var(--accent);
    filter: blur(150px);
    opacity: 0.1;
    border-radius: 50%;
}

.testi-header {
    text-align: center;
    margin-bottom: 4rem;
    color: white;
}

.testi-header h2 {
    color: white;
    font-size: clamp(1.5rem, 5vw, 2.5rem);
    margin-bottom: 1rem;
}

.testi-header h2 span {
    color: var(--accent);
}

.testi-header p {
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
}

.testi-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3rem;
    border-radius: 40px;
    margin: 2rem 0;
    transition: var(--transition-slow);
    position: relative;
}

.testi-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--accent);
}

.quote-icon {
    position: absolute;
    top: 2rem;
    right: 3rem;
    font-size: 4rem;
    color: var(--accent);
    opacity: 0.1;
}

.stars {
    color: #FFB800;
    margin-bottom: 1.5rem;
    display: flex;
    gap: 5px;
}

.testi-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    font-style: italic;
}

.student-info {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.student-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
}

.student-details h4 {
    color: white;
    margin: 0;
    font-size: 1.1rem;
}

.student-details p {
    color: var(--accent);
    margin: 0;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Custom Swiper Navigation */
.testiSwiper .swiper-button-next,
.testiSwiper .swiper-button-prev {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white !important;
}

.testiSwiper .swiper-button-next::after,
.testiSwiper .swiper-button-prev::after {
    font-size: 1.2rem;
}


/* Key Activities Table */
.activities-section {
    padding: 3.5rem 0;
    margin-top: 0;
    position: relative;
    z-index: 10;
    background: #f8fafc;
}

.activities-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary), var(--accent), var(--primary));
}

.activities-table {
    background: white;
    box-shadow: 0 10px 40px rgba(0,0,0,0.07);
    border-radius: 20px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    overflow: hidden;
    border: 1px solid #eef2f7;
}

.activity-item {
    padding: 2.5rem 2rem;
    text-align: center;
    border-right: 1px solid #eef2f7;
    transition: var(--transition-fast);
    position: relative;
}

.activity-item::after {
    content: '';
    position: absolute;
    bottom: 0; left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 60%;
    height: 3px;
    background: var(--accent);
    border-radius: 2px;
    transition: transform 0.3s ease;
}

.activity-item:hover::after {
    transform: translateX(-50%) scaleX(1);
}

.activity-item:last-child {
    border-right: none;
}

.activity-item:hover {
    background: #fff8f5;
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(255,107,53,0.08);
}

.activity-item i {
    font-size: 2.2rem;
    color: var(--secondary);
    margin-bottom: 1.2rem;
    display: block;
    transition: transform 0.3s ease;
}

.activity-item:hover i {
    transform: scale(1.15);
    color: var(--accent);
}

.activity-item h4 {
    font-size: 0.95rem;
    color: var(--primary);
    line-height: 1.5;
    font-weight: 600;
}

@media (max-width: 992px) {
    .activities-table {
        grid-template-columns: repeat(2, 1fr);
    }
    .activity-item:nth-child(2) {
        border-right: none;
    }
    .activity-item:nth-child(1),
    .activity-item:nth-child(2) {
        border-bottom: 1px solid #eef2f7;
    }
}

@media (max-width: 576px) {
    .activities-section {
        padding: 2rem 0;
    }
    .activities-table {
        grid-template-columns: 1fr;
        border-radius: 16px;
    }
    .activity-item {
        padding: 1.8rem 1.2rem;
        border-right: none;
        border-bottom: 1px solid #eef2f7;
    }
    .activity-item:last-child {
        border-bottom: none;
    }
    .activity-item i {
        font-size: 1.8rem;
    }
    .activity-item h4 {
        font-size: 0.88rem;
        line-height: 1.4;
    }
}

/* Professional Form Styling */
.professional-form {
    background: #ffffff;
    padding: clamp(1.5rem, 5vw, 3.5rem);
    border-radius: clamp(20px, 4vw, 40px);
    box-shadow: 0 25px 80px rgba(0,0,0,0.06);
    border: 1px solid #f1f5f9;
}

.form-section {
    margin-bottom: clamp(2rem, 4vw, 3.5rem);
    padding-bottom: clamp(1.5rem, 3vw, 2.5rem);
    border-bottom: 1px solid #f1f5f9;
}

.form-section:last-child {
    border-bottom: none;
    margin-bottom: 1rem;
}

.form-section-header {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin-bottom: 1.8rem;
    color: var(--primary);
}

.form-section-header i {
    font-size: clamp(1.2rem, 2vw, 1.6rem);
    color: var(--secondary);
    background: #eef9f1;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}

.form-section-header h3 {
    margin: 0;
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    font-weight: 700;
    letter-spacing: -0.5px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(1rem, 3vw, 2.5rem);
}

.form-group label {
    display: block;
    margin-bottom: 0.7rem;
    font-weight: 600;
    color: #334155;
    font-size: 0.9rem;
}

.professional-form input,
.professional-form select {
    width: 100%;
    padding: 1.1rem 1.3rem;
    border: 2px solid #f1f5f9;
    border-radius: 14px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8fafc;
    color: var(--text-main);
}

.professional-form input:focus,
.professional-form select:focus {
    border-color: var(--secondary);
    background: white;
    box-shadow: 0 12px 25px rgba(57, 149, 72, 0.08);
    outline: none;
    transform: translateY(-2px);
}

/* Radio Styling */
.radio-group {
    display: flex;
    gap: 2.5rem;
    margin-top: 0.6rem;
}

.radio-container {
    display: flex;
    align-items: center;
    position: relative;
    padding-left: 32px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    color: #475569;
}

.radio-container input {
    position: absolute;
    opacity: 0;
}

.checkmark {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    height: 22px;
    width: 22px;
    background-color: #f1f5f9;
    border: 2px solid #e2e8f0;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.radio-container input:checked ~ .checkmark {
    background-color: var(--secondary);
    border-color: var(--secondary);
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: white;
}

.radio-container input:checked ~ .checkmark:after {
    display: block;
}

/* Checkbox */
.checkbox-group {
    margin-top: 0.6rem;
    display: flex;
    align-items: center;
    gap: 5px;
    width: fit-content;
    white-space: nowrap;
}

.checkbox-group input {
    width: 18px;
    height: 18px;
    margin: 0;
    accent-color: var(--secondary);
    cursor: pointer;
    flex-shrink: 0;
}

.checkbox-group label {
    margin: 0;
    padding-left: 2px;
    font-size: 0.8rem;
    color: #64748b;
    font-weight: 500;
    cursor: pointer;
    line-height: 1;
}

/* Submit */
.btn-large {
    padding: 1.3rem 3rem;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}

@media (max-width: 768px) {
    .form-grid {
        grid-template-columns: 1fr;
    }
    .contact-form-container {
        margin-top: 2rem;
    }
}

@media (max-width: 768px) {
    .container {
        width: 100%;
        padding: 0 15px;
    }
    .professional-form {
        padding: 1.5rem;
        border-radius: 15px;
        box-shadow: none;
        border: 1px solid #eee;
    }
    .form-section {
        margin-bottom: 2rem;
        padding-bottom: 1.5rem;
    }
    .form-section-header {
        margin-bottom: 1.2rem;
    }
}

@media (max-width: 576px) {
    .professional-form {
        padding: 1.2rem 1rem;
    }
    .form-section-header i {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    .form-section-header h3 {
        font-size: 1.1rem;
    }
    .btn-large {
        padding: 1rem;
        font-size: 1rem;
    }
    .professional-form input,
    .professional-form select,
    .professional-form textarea {
        font-size: 0.9rem !important;
        padding: 0.8rem 1rem !important;
    }
    .form-group label {
        font-size: 0.85rem !important;
    }
    .checkbox-group {
        display: flex !important;
        align-items: center !important;
        gap: 8px !important;
        margin-top: 10px !important;
    }
    .checkbox-group label {
        font-size: 0.8rem !important;
        white-space: nowrap !important;
        margin: 0 !important;
    }
    .checkbox-group input {
        margin: 0 !important;
    }
}

.contact-form-container {
    max-width: 1100px;
    width: 100%;
    margin: 4rem auto 0;
}

/* Floating Contact Buttons */
.floating-contact {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 9999;
}

.float-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    text-decoration: none;
}

.call-float {
    background: var(--primary);
}

.whatsapp-float {
    background: #25D366;
}

.float-btn:hover {
    transform: scale(1.1) translateY(-5px);
}

/* WhatsApp Chat Box */
.whatsapp-chat-box {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 350px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    display: none;
    flex-direction: column;
    overflow: hidden;
    animation: chatSlideUp 0.3s ease;
}

.whatsapp-chat-box.active {
    display: flex;
}

.chat-header {
    background: #075E54;
    color: white;
    padding: 1.2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-info {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.header-info h4 { color: white; margin: 0; font-size: 0.95rem; }
.header-info span { font-size: 0.75rem; opacity: 0.8; display: block; }

#closeChat { background: transparent; border: none; color: white; cursor: pointer; font-size: 1.2rem; }

.chat-body {
    padding: 1.5rem;
    background: #e5ddd5;
    height: auto;
    min-height: 120px;
}

.chat-msg {
    background: white;
    padding: 0.8rem 1rem;
    border-radius: 0 15px 15px 15px;
    font-size: 0.85rem;
    max-width: 90%;
    position: relative;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    color: #333;
}

.chat-footer {
    padding: 1rem;
    background: white;
}

.chat-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: #25D366;
    color: white;
    padding: 0.7rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: background 0.3s ease;
}

.chat-btn:hover {
    background: #128C7E;
}

@keyframes chatSlideUp {
    from { transform: translateY(20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

@media (max-width: 768px) {
    .floating-contact {
        bottom: 1.5rem;
        right: 1.5rem;
        gap: 0.8rem;
    }
    .float-btn {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    .whatsapp-chat-box {
        width: 280px;
        bottom: 65px;
        right: -10px;
    }
}

/* Statistics Section */
.stats-section {
    padding: 6rem 0;
    background: #ffffff;
    position: relative;
    z-index: 5;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

@media (max-width: 992px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

.stat-item {
    padding: 2.5rem;
    border-radius: 24px;
    background: #fbf4e7;
    transition: var(--transition-slow);
    border: 1px solid rgba(35, 57, 135, 0.05);
}

.stat-item:hover {
    transform: translateY(-10px);
    background: white;
    box-shadow: 0 20px 40px rgba(35, 57, 135, 0.08);
}

.stat-icon {
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 1.5rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 0.5rem;
    font-family: 'Montserrat', sans-serif;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .stats-section {
        padding: 4rem 0;
    }
    .stat-number {
        font-size: 2.5rem;
    }
}

/* Destinations Grid Styles */
.dest-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr)); gap: 2.5rem; margin-top: 3rem; }
.dest-page-card { background: white; border-radius: 30px; overflow: hidden; box-shadow: 0 15px 40px rgba(0,0,0,0.05); transition: var(--transition-slow); border: 1px solid #f1f5f9; }
.dest-page-card:hover { transform: translateY(-10px); box-shadow: 0 25px 60px rgba(0,0,0,0.1); }
.dest-img { height: 250px; overflow: hidden; }
.dest-img img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition-slow); }
.dest-page-card:hover .dest-img img { transform: scale(1.1); }
.dest-content { padding: 2.5rem; }
.dest-content h3 { margin-bottom: 1rem; }
.dest-content ul { margin: 1.5rem 0; }
.dest-content ul li { margin-bottom: 0.5rem; display: flex; align-items: center; gap: 0.8rem; }
.dest-content ul li i { color: var(--secondary); }


/* =============================================
   ADMISSION OPEN MARQUEE BANNER
   ============================================= */
.marquee-banner {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    background: linear-gradient(90deg, #ff6b35, #f7c59f, #ff6b35);
    background-size: 200% auto;
    animation: marquee-bg-shift 4s linear infinite;
    box-shadow: 0 3px 12px rgba(255, 107, 53, 0.4);
    overflow: hidden;
    height: 42px;
}

@keyframes marquee-bg-shift {
    0%   { background-position: 0% center; }
    100% { background-position: 200% center; }
}

.marquee-label {
    flex-shrink: 0;
    background: #c0392b;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0 18px;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    z-index: 2;
}

.marquee-label i {
    animation: bell-ring 1.2s ease-in-out infinite;
}

@keyframes bell-ring {
    0%, 100% { transform: rotate(0deg); }
    20%       { transform: rotate(15deg); }
    40%       { transform: rotate(-15deg); }
    60%       { transform: rotate(10deg); }
    80%       { transform: rotate(-10deg); }
}

.marquee-track-wrapper {
    flex: 1;
    overflow: hidden;
    height: 100%;
    display: flex;
    align-items: center;
}

.marquee-track {
    display: flex;
    align-items: center;
    gap: 0;
    white-space: nowrap;
    animation: marquee-scroll 28s linear infinite;
}

.marquee-track:hover {
    animation-play-state: paused;
}

.marquee-track span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0 40px;
    font-size: 0.82rem;
    font-weight: 600;
    color: #1a1a2e;
    letter-spacing: 0.02em;
}

.marquee-track span i {
    color: #c0392b;
    font-size: 0.55rem;
}

.marquee-track span strong {
    color: #1a1a2e;
    font-weight: 800;
}

@keyframes marquee-scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ── Marquee Mobile ── */
@media (max-width: 600px) {
    .marquee-banner {
        height: 36px;
        flex-shrink: 0;
    }
    .marquee-label {
        min-width: 34px;
        width: 34px;
        padding: 0;
        justify-content: center;
        font-size: 0;
        letter-spacing: 0;
        gap: 0;
    }
    .marquee-label i {
        font-size: 0.9rem;
    }
    .marquee-track-wrapper {
        overflow: hidden;
        width: 0;          /* let flex: 1 do the work */
        flex: 1;
    }
    .marquee-track {
        animation-duration: 20s;
        will-change: transform;
    }
    .marquee-track span {
        font-size: 0.76rem;
        padding: 0 16px;
        gap: 5px;
        white-space: nowrap;
    }
    .marquee-track span i {
        font-size: 0.4rem;
    }
}

/* =============================================
   DESTINATIONS NAME GRID (Home Page)
   ============================================= */
.dest-names-section {
    background: #f8fafc;
}

.dest-names-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.dest-name-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: #fff;
    border: 1px solid #eef2f7;
    border-radius: 14px;
    padding: 1.2rem 1.4rem;
    text-decoration: none;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.25s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.04);
    position: relative;
    overflow: hidden;
}

.dest-name-card::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 4px;
    background: var(--accent);
    transform: scaleY(0);
    transition: transform 0.25s ease;
    border-radius: 4px 0 0 4px;
}

.dest-name-card:hover::before {
    transform: scaleY(1);
}

.dest-name-card:hover {
    border-color: var(--accent);
    box-shadow: 0 6px 24px rgba(255,107,53,0.12);
    transform: translateY(-3px);
    color: var(--accent);
}

.dest-name-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: linear-gradient(135deg, #fff3ee, #ffe8dc);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.25s ease;
}

.dest-name-icon i {
    font-size: 1.1rem;
    color: var(--accent);
}

.dest-name-card:hover .dest-name-icon {
    background: linear-gradient(135deg, var(--accent), #ff8c5a);
}

.dest-name-card:hover .dest-name-icon i {
    color: #fff;
}

.dest-name-card span {
    flex: 1;
    line-height: 1.3;
}

.dest-arrow {
    font-size: 0.75rem;
    color: #ccc;
    flex-shrink: 0;
    transition: color 0.25s ease, transform 0.25s ease;
}

.dest-name-card:hover .dest-arrow {
    color: var(--accent);
    transform: translateX(4px);
}

@media (max-width: 1100px) {
    .dest-names-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ── Tablet ── */
@media (max-width: 768px) {
    .dest-names-section {
        padding: 3rem 0 2.5rem;
    }
    .dest-names-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    .dest-name-card {
        padding: 0.9rem 1rem;
        font-size: 0.85rem;
        border-radius: 12px;
        gap: 0.7rem;
    }
    .dest-name-icon {
        width: 34px;
        height: 34px;
        border-radius: 8px;
        flex-shrink: 0;
    }
    .dest-name-icon i {
        font-size: 0.9rem;
    }
    .dest-arrow {
        display: none;
    }
}

/* ── Mobile ── */
@media (max-width: 480px) {
    .dest-names-section {
        padding: 2.5rem 0 2rem;
    }
    .dest-names-section .text-center {
        margin-bottom: 1.5rem !important;
    }
    .dest-names-section .text-center h4 {
        font-size: 0.75rem;
        margin-bottom: 0.4rem !important;
    }
    .dest-names-section .text-center h2 {
        font-size: 1.25rem;
        line-height: 1.35;
    }
    .dest-names-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.6rem;
    }
    .dest-name-card {
        padding: 0.75rem 0.7rem;
        font-size: 0.76rem;
        border-radius: 10px;
        gap: 0.55rem;
        flex-direction: row;
        align-items: center;
        /* remove hover lift on touch */
        transition: background 0.2s ease, border-color 0.2s ease;
    }
    .dest-name-card:hover {
        transform: none;
    }
    .dest-name-icon {
        width: 30px;
        height: 30px;
        border-radius: 7px;
        flex-shrink: 0;
    }
    .dest-name-icon i {
        font-size: 0.8rem;
    }
    .dest-name-card span {
        font-size: 0.76rem;
        line-height: 1.25;
        flex: 1;
        min-width: 0;
        word-break: break-word;
    }
    .dest-arrow {
        display: none;
    }
    /* View All button */
    .dest-names-section .text-center .btn {
        font-size: 0.82rem;
        padding: 0.7rem 1.6rem;
    }
}
