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

:root {
    /* Korean Flag Colors */
    --primary-blue: #00427A;
    --primary-red: #C8102E;
    --white: #FFFFFF;
    
    /* Soft Pastel Tones */
    --light-blue: #E8F4FD;
    --light-red: #FFF0F2;
    --soft-gray: #F8F9FA;
    --medium-gray: #6C757D;
    --dark-gray: #343A40;
    
    /* Accent Colors */
    --success-green: #28A745;
    --warning-orange: #FFC107;
    
    /* Typography */
    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Lato', sans-serif;
    
    /* Spacing */
    --section-padding: 80px 0;
    --container-padding: 0 20px;
    
    /* Shadows */
    --shadow-light: 0 2px 10px rgba(0, 66, 122, 0.1);
    --shadow-medium: 0 4px 20px rgba(0, 66, 122, 0.15);
    --shadow-heavy: 0 8px 30px rgba(0, 66, 122, 0.2);
    
    /* Transitions */
    --transition-fast: 0.3s ease;
    --transition-medium: 0.5s ease;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--dark-gray);
    background-color: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--container-padding);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
    color: var(--primary-blue);
}

h3 {
    font-size: 1.8rem;
}

p {
    font-family: var(--font-secondary);
    margin-bottom: 1rem;
    color: var(--medium-gray);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    text-align: center;
    transition: var(--transition-fast);
    border: 2px solid transparent;
    cursor: pointer;
    font-family: var(--font-primary);
    position: relative;
    z-index: 10;
    pointer-events: auto;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-blue), #0056b3);
    color: var(--white);
    box-shadow: var(--shadow-light);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
    background: linear-gradient(135deg, #003366, var(--primary-blue));
}

.btn-secondary {
    background: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
}

.btn-secondary:hover {
    background: var(--primary-blue);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--primary-blue);
    border: 1px solid var(--primary-blue);
    padding: 10px 25px;
}

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

.btn-full {
    width: 100%;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    margin-bottom: 15px;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--medium-gray);
    max-width: 600px;
    margin: 0 auto;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
    box-shadow: var(--shadow-light);
    transition: var(--transition-fast);
}

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

.nav-logo h2 {
    color: var(--primary-blue);
    margin: 0;
}

/* Logo Image Styling */
.logo-image {
    height: 45px;
    width: auto;
    transition: var(--transition-fast);
}

.nav-logo:hover .logo-image {
    transform: scale(1.05);
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-text h2 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-blue);
}

.logo-text .tagline {
    font-size: 0.8rem;
    opacity: 0.9;
    color: var(--medium-gray);
    font-weight: 400;
}

.nav-logo .tagline {
    font-size: 1.8rem;
}

.nav-logo .tagline {
    font-size: 0.9rem;
    color: var(--primary-red);
    font-weight: 400;
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: var(--dark-gray);
    font-weight: 500;
    transition: var(--transition-fast);
    position: relative;
}

.nav-link:hover {
    color: var(--primary-blue);
}

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

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

.apply-btn {
    background: var(--primary-red);
    color: var(--white);
    padding: 10px 25px;
    border-radius: 25px;
}

.apply-btn:hover {
    background: #a00d24;
    transform: translateY(-2px);
}

.apply-btn::after {
    display: none;
}

/* Navigation Dropdown */
.nav-dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 5px;
}

.dropdown-toggle i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.nav-dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 200px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
    list-style: none;
    padding: 10px 0;
    margin: 0;
    border: 1px solid rgba(0, 66, 122, 0.1);
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-link {
    display: block;
    padding: 12px 20px;
    color: var(--dark-gray);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.dropdown-link:hover {
    background: var(--light-blue);
    color: var(--primary-blue);
    border-left-color: var(--primary-red);
    padding-left: 25px;
}

.dropdown-link::after {
    display: none;
}

/* Mobile Dropdown Styles */
.dropdown-menu.mobile-active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    position: static;
    box-shadow: none;
    background: rgba(0, 66, 122, 0.05);
    border-radius: 0;
    border: none;
    margin-top: 10px;
    padding: 0;
}

.dropdown-toggle.active i {
    transform: rotate(180deg);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--primary-blue);
    margin: 3px 0;
    transition: var(--transition-fast);
}

/* Hero Section */
.hero {
    height: 100vh;
    background: 
        linear-gradient(135deg, 
            rgba(15, 23, 42, 0.95) 0%,       /* Deep slate blue */
            rgba(30, 41, 59, 0.92) 25%,      /* Slate gray */
            rgba(51, 65, 85, 0.9) 50%,       /* Blue gray */
            rgba(71, 85, 105, 0.88) 75%,     /* Light slate */
            rgba(100, 116, 139, 0.85) 100%   /* Warm gray */
        ),
        radial-gradient(circle at 25% 25%, rgba(59, 130, 246, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(99, 102, 241, 0.12) 0%, transparent 45%),
        radial-gradient(circle at 50% 10%, rgba(79, 70, 229, 0.1) 0%, transparent 40%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><defs><pattern id="hero-pattern" width="60" height="60" patternUnits="userSpaceOnUse"><circle cx="30" cy="30" r="1.5" fill="%23FFFFFF" opacity="0.08"/><circle cx="15" cy="45" r="0.8" fill="%23FFFFFF" opacity="0.05"/><circle cx="45" cy="15" r="0.8" fill="%23FFFFFF" opacity="0.05"/><rect x="10" y="10" width="2" height="2" fill="%23FFFFFF" opacity="0.03"/><rect x="48" y="48" width="2" height="2" fill="%23FFFFFF" opacity="0.03"/></pattern></defs><rect width="1200" height="800" fill="url(%23hero-pattern)"/></svg>');
    background-size: cover, 150% 150%, 120% 120%, 140% 140%, cover;
    background-position: center, 0% 0%, 100% 100%, 50% 50%, center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
    z-index: 0;
    isolation: isolate;
    /* animation: heroBackgroundShift 25s ease-in-out infinite; - Removed for performance */
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 30% 20%, rgba(59, 130, 246, 0.2) 0%, transparent 55%),
        radial-gradient(ellipse at 70% 80%, rgba(99, 102, 241, 0.18) 0%, transparent 60%),
        radial-gradient(ellipse at 20% 70%, rgba(79, 70, 229, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 30%, rgba(67, 56, 202, 0.12) 0%, transparent 45%);
    z-index: -1;
    /* animation: beforeGlow 18s ease-in-out infinite alternate; - Removed for performance */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(135deg, 
            rgba(15, 23, 42, 0.3) 0%,
            rgba(30, 41, 59, 0.25) 25%,
            rgba(51, 65, 85, 0.2) 50%,
            rgba(71, 85, 105, 0.15) 75%,
            rgba(100, 116, 139, 0.1) 100%
        );
    backdrop-filter: blur(0.5px);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 20px;
    /* animation: heroFadeInUp 1.2s ease-out; - Removed for performance */
}

.hero-title {
    font-size: 4.8rem;
    font-weight: 900;
    margin-bottom: 25px;
    text-shadow: 
        0 0 20px rgba(255, 255, 255, 0.5),
        0 0 40px rgba(16, 185, 129, 0.3),
        2px 2px 8px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, 
        #FFFFFF 0%,
        #F0F9FF 25%,
        #ECFDF5 50%,
        #FFFFFF 75%,
        #FEF3C7 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    /* animation: titleShimmer 4s ease-in-out infinite, titleFloat 6s ease-in-out infinite; - Removed for performance */
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 25px;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.95) 0%,
        rgba(240, 249, 255, 0.9) 50%,
        rgba(255, 255, 255, 0.95) 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 
        0 0 15px rgba(255, 255, 255, 0.4),
        0 0 30px rgba(59, 130, 246, 0.2);
    /* animation: subtitleGlow 3s ease-in-out infinite alternate, subtitleSlideIn 1.5s ease-out 0.3s both; - Removed for performance */
    letter-spacing: -0.01em;
}

.hero-description {
    font-size: 1.4rem;
    margin-bottom: 45px;
    color: rgba(255, 255, 255, 0.92);
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.9;
    text-shadow: 
        0 0 10px rgba(255, 255, 255, 0.3),
        1px 1px 3px rgba(0, 0, 0, 0.2);
    /* animation: descriptionFadeIn 1.8s ease-out 0.6s both; - Removed for performance */
    font-weight: 400;
    letter-spacing: 0.01em;
}

.hero-buttons {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
    /* animation: buttonsBounceIn 2s ease-out 0.9s both; - Removed for performance */
}

.hero-buttons .btn {
    transform: translateY(0px);
    opacity: 1;
    /* animation: buttonSlideUp 0.8s ease-out forwards; - Removed for performance */
    padding: 16px 35px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.hero-buttons .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

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

.hero-buttons .btn:nth-child(1) {
    animation-delay: 1.2s;
    background: linear-gradient(135deg, #3B82F6, #2563EB);
    color: white;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.25);
}

.hero-buttons .btn:nth-child(1):hover {
    background: linear-gradient(135deg, #2563EB, #1D4ED8);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(59, 130, 246, 0.35);
}

.hero-buttons .btn:nth-child(2) {
    animation-delay: 1.4s;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.1));
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.hero-buttons .btn:nth-child(2):hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0.2));
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 255, 255, 0.2);
}

.hero-stats {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 80px;
    z-index: 2;
    animation: statsFadeIn 2.5s ease-out 1.5s both;
}

.stat {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 20px 30px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.stat:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.stat h3 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 8px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.stat p {
    color: #E8F4FD;
    font-size: 1.1rem;
    font-weight: 500;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Floating Elements Animation */
.hero::after {
    content: '';
    position: absolute;
    top: 15%;
    right: 8%;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, rgba(59, 130, 246, 0.06) 40%, transparent 70%);
    border-radius: 50%;
    /* animation: float 8s ease-in-out infinite; - Removed for performance */
    z-index: -1;
}

/* Hero Background Animation - Removed for performance
@keyframes heroBackgroundShift {
    0%, 100% {
        background-position: center, 0% 0%, 100% 100%, 50% 50%, center;
    }
    25% {
        background-position: center, 25% 25%, 75% 75%, 25% 75%, center;
    }
    50% {
        background-position: center, 50% 50%, 50% 50%, 75% 25%, center;
    }
    75% {
        background-position: center, 75% 75%, 25% 25%, 0% 50%, center;
    }
}
*/

/* @keyframes beforeGlow {
    0% {
        opacity: 0.8;
        transform: scale(1);
    }
    100% {
        opacity: 1;
        transform: scale(1.05);
    }
} - Removed for performance */

/* Title Animations - Removed for performance
@keyframes titleShimmer {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

@keyframes titleFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-8px);
    }
}
*/

/* Subtitle Animation - Removed for performance
@keyframes subtitleGlow {
    0% {
        text-shadow: 
            0 0 15px rgba(255, 255, 255, 0.4),
            0 0 30px rgba(59, 130, 246, 0.2);
    }
    100% {
        text-shadow: 
            0 0 25px rgba(255, 255, 255, 0.6),
            0 0 50px rgba(59, 130, 246, 0.4),
            0 0 75px rgba(16, 185, 129, 0.2);
    }
}
*/

/* Enhanced Float Animation - Removed for performance
@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    33% {
        transform: translateY(-15px) rotate(5deg);
    }
    66% {
        transform: translateY(-8px) rotate(-3deg);
    }
}
*/

/* Enhanced Button Styles */
.btn {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
    cursor: pointer;
    font-family: var(--font-primary);
    font-size: 1.1rem;
    position: relative;
    overflow: hidden;
}

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

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

.btn-primary {
    background: linear-gradient(135deg, var(--primary-blue), #0056b3);
    color: var(--white);
    box-shadow: 0 8px 25px rgba(0, 66, 122, 0.3);
    border: 2px solid var(--primary-blue);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #0056b3, var(--primary-blue));
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 66, 122, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-blue);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 255, 255, 0.3);
}

/* Enhanced Section Styling */
.about {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--light-blue) 0%, #f8f9fa 100%);
    position: relative;
    z-index: 10;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, transparent, var(--light-blue));
    z-index: -1;
}

.destinations {
    padding: var(--section-padding);
    background: var(--white);
    position: relative;
    z-index: 10;
}

.services {
    padding: var(--section-padding);
    background: linear-gradient(135deg, #f8f9fa 0%, var(--light-blue) 100%);
    position: relative;
    z-index: 10;
}

.testimonials {
    padding: var(--section-padding);
    background: var(--white);
    position: relative;
    z-index: 10;
}

.blog {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--light-blue) 0%, #f8f9fa 100%);
    position: relative;
    z-index: 10;
}

.contact {
    padding: var(--section-padding);
    background: var(--white);
    position: relative;
    z-index: 10;
}

/* Enhanced Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.section-header h2 {
    font-size: 3rem;
    color: var(--primary-blue);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--primary-red));
    border-radius: 2px;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--medium-gray);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Enhanced Service Cards */
.service-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(0, 66, 122, 0.1);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--primary-red));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

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

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-red));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 25px rgba(0, 66, 122, 0.3);
}

.service-icon i {
    font-size: 2rem;
    color: var(--white);
}

/* Enhanced Destination Cards */
.featured-destination {
    background: linear-gradient(135deg, var(--primary-blue), #0056b3);
    border-radius: 25px;
    padding: 60px;
    margin-bottom: 60px;
    color: var(--white);
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 66, 122, 0.2);
}

.featured-destination::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

.dest-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 66, 122, 0.1);
}

.dest-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 66, 122, 0.15);
}

/* Enhanced Testimonials */
.testimonial {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 66, 122, 0.1);
    transition: all 0.3s ease;
}

.testimonial.active {
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 66, 122, 0.15);
}

/* Enhanced Blog Cards */
.blog-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 66, 122, 0.1);
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 66, 122, 0.15);
}

/* Enhanced Contact Form */
.contact-form {
    background: var(--white);
    padding: 50px;
    border-radius: 25px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 66, 122, 0.1);
}

.form-group input,
.form-group textarea,
.form-group select {
    border: 2px solid #e9ecef;
    border-radius: 15px;
    padding: 15px 20px;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--primary-blue);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(0, 66, 122, 0.1);
    outline: none;
}

/* Enhanced Footer */
.footer {
    background: linear-gradient(135deg, var(--primary-blue), #0056b3);
    color: var(--white);
    position: relative;
    z-index: 2;
}

/* Animations */
@keyframes heroFadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes titleGlow {
    from {
        filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.3));
    }
    to {
        filter: drop-shadow(0 0 30px rgba(255, 255, 255, 0.6));
    }
}

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

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

@keyframes buttonsBounceIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

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

@keyframes statsFadeIn {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

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

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Scroll-triggered animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.fade-in-up.animate {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease;
}

.fade-in-left.animate {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease;
}

.fade-in-right.animate {
    opacity: 1;
    transform: translateX(0);
}

.scale-in {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.8s ease;
}

.scale-in.animate {
    opacity: 1;
    transform: scale(1);
}

/* Enhanced responsive design */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.8rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .hero-stats {
        gap: 60px;
    }
    
    .stat h3 {
        font-size: 2.5rem;
    }
    
    .section-header h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .hero {
        height: 100vh;
        background-attachment: scroll;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    
    .hero-stats {
        position: relative;
        bottom: auto;
        left: auto;
        transform: none;
        margin-top: 40px;
        gap: 30px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .stat {
        padding: 15px 20px;
    }
    
    .stat h3 {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .featured-destination {
        padding: 40px 30px;
    }
    
    .service-card {
        padding: 30px 20px;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .hero-description {
        font-size: 0.95rem;
    }
    
    .hero-stats {
        gap: 20px;
    }
    
    .stat {
        padding: 15px;
    }
    
    .stat h3 {
        font-size: 1.8rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .featured-destination {
        padding: 30px 20px;
    }
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

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

.about-features {
    display: grid;
    gap: 30px;
    margin-top: 40px;
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.feature i {
    font-size: 2rem;
    color: var(--primary-red);
    margin-top: 5px;
}

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

.about-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: var(--shadow-medium);
}

/* Destinations Section */
.destinations {
    padding: var(--section-padding);
}

.featured-destination {
    background: linear-gradient(135deg, var(--primary-blue), #0056b3);
    border-radius: 25px;
    padding: 60px;
    margin-bottom: 60px;
    color: var(--white);
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 66, 122, 0.2);
}

.dest-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

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

.dest-info h3 i {
    color: var(--warning-orange);
    margin-right: 15px;
}

.dest-subtitle {
    font-size: 1.2rem;
    color: var(--primary-red);
    margin-bottom: 30px;
}

.dest-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 40px;
}

.highlight {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow-light);
}

.highlight i {
    color: var(--primary-blue);
    font-size: 1.5rem;
}

.highlight span {
    font-weight: 500;
    color: var(--dark-gray);
}

.dest-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: var(--shadow-medium);
}

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

.dest-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: var(--transition-medium);
}

.dest-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}

.dest-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card-content {
    padding: 30px;
}

.card-content h4 {
    color: var(--primary-blue);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.card-content ul {
    list-style: none;
    margin: 20px 0;
}

.card-content li {
    padding: 8px 0;
    color: var(--medium-gray);
    position: relative;
    padding-left: 25px;
}

.card-content li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-green);
    font-weight: bold;
}

/* Services Section */
.services {
    padding: var(--section-padding);
    background: var(--soft-gray);
}

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

.service-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: var(--transition-medium);
    border-top: 4px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
    border-top-color: var(--primary-red);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-red));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: var(--transition-fast);
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}

.service-icon i {
    font-size: 2rem;
    color: var(--white);
}

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

/* Testimonials Section */
.testimonials {
    padding: var(--section-padding);
    background: var(--light-blue);
}

.testimonial-slider {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.testimonial-container {
    overflow: hidden;
    border-radius: 20px;
}

.testimonial {
    display: none;
    background: var(--white);
    padding: 50px;
    border-radius: 20px;
    box-shadow: var(--shadow-medium);
    text-align: center;
}

.testimonial.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

.testimonial-content {
    display: flex;
    align-items: center;
    gap: 40px;
    text-align: left;
}

.student-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--primary-blue);
}

.student-photo-placeholder {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: var(--light-blue);
    border: 4px solid var(--primary-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    font-size: 2rem;
}

.rating .fa-star.inactive {
    color: #ddd;
}

.graduation-year {
    display: block;
    font-size: 0.85rem;
    color: var(--medium-gray);
    margin-top: 5px;
}

.testimonial-text p {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--dark-gray);
    margin-bottom: 20px;
    line-height: 1.6;
}

.testimonial-text h4 {
    color: var(--primary-blue);
    margin-bottom: 5px;
}

.testimonial-text span {
    color: var(--medium-gray);
    font-size: 0.95rem;
}

.rating {
    margin-top: 15px;
}

.rating i {
    color: var(--warning-orange);
    margin-right: 5px;
}

.slider-controls {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.prev-btn, .next-btn {
    background: var(--primary-blue);
    color: var(--white);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
}

.prev-btn:hover, .next-btn:hover {
    background: var(--primary-red);
    transform: scale(1.1);
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--medium-gray);
    cursor: pointer;
    transition: var(--transition-fast);
}

.dot.active {
    background: var(--primary-blue);
    transform: scale(1.2);
}

/* Blog Section */
.blog {
    padding: var(--section-padding);
}

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

.blog-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: var(--transition-medium);
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}

.blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-image-placeholder {
    width: 100%;
    height: 200px;
    background: var(--light-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    font-size: 2.5rem;
}

.blog-content {
    padding: 25px;
}

.blog-category {
    background: var(--primary-red);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.blog-content h3 {
    color: var(--primary-blue);
    margin: 15px 0 10px;
    font-size: 1.3rem;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.blog-meta span {
    color: var(--medium-gray);
    font-size: 0.9rem;
}

.read-more {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-fast);
    position: relative;
    z-index: 10;
    pointer-events: auto;
    cursor: pointer;
    display: inline-block;
    padding: 4px 8px;
    border-radius: 4px;
}

.read-more:hover {
    color: var(--primary-red);
}

/* Contact Section */
.contact {
    padding: var(--section-padding);
    background: var(--soft-gray);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 50px;
}

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

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--primary-red);
    margin-top: 5px;
}

.contact-item h4 {
    color: var(--primary-blue);
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.contact-item p {
    margin: 0;
    line-height: 1.5;
}

.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow-medium);
}

.contact-form h3 {
    color: var(--primary-blue);
    margin-bottom: 30px;
    text-align: center;
}

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

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #E9ECEF;
    border-radius: 10px;
    font-family: var(--font-secondary);
    font-size: 1rem;
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(0, 66, 122, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

/* Footer */
.footer {
    background: var(--primary-blue);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3,
.footer-section h4 {
    color: var(--white);
    margin-bottom: 20px;
}

.footer-section p,
.footer-section li {
    color: #B8D4EA;
    margin-bottom: 10px;
}

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

.footer-section a {
    color: #B8D4EA;
    text-decoration: none;
    transition: var(--transition-fast);
}

.footer-section a:hover {
    color: var(--white);
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--primary-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.social-links a:hover {
    background: var(--white);
    color: var(--primary-blue);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(184, 212, 234, 0.3);
    color: #B8D4EA;
}

.footer-bottom a {
    color: var(--white);
}

/* WhatsApp Chat Widget */
.whatsapp-chat {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.whatsapp-btn {
    background: #25D366;
    color: var(--white);
    padding: 15px 20px;
    border-radius: 50px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: var(--shadow-medium);
    transition: var(--transition-fast);
    animation: pulse 2s infinite;
}

.whatsapp-btn:hover {
    background: #20BA5A;
    transform: translateY(-3px);
    box-shadow: var(--shadow-heavy);
}

.whatsapp-btn i {
    font-size: 1.5rem;
}

.chat-text {
    font-weight: 500;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Responsive Design */
/* Large Tablets and Small Desktops */
@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }
    
    .hero-title {
        font-size: 3.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.6rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .about-content,
    .dest-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-stats {
        gap: 40px;
    }
    
    .dest-highlights {
        grid-template-columns: 1fr;
    }
    
    .featured-destination {
        padding: 40px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .other-destinations {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    h1 {
        font-size: 3rem;
    }
    
    h2 {
        font-size: 2.2rem;
    }
    
    h3 {
        font-size: 1.6rem;
    }
}

/* Tablets and Small Screens */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    /* Navigation Improvements */
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow-medium);
        padding: 30px 0;
        gap: 20px;
        z-index: 1000;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    /* Typography Adjustments */
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    h3 {
        font-size: 1.4rem;
    }
    
    p {
        font-size: 0.95rem;
        line-height: 1.7;
    }
    
    /* Hero Section */
    .hero {
        height: 85vh;
        padding: 0 20px;
    }
    
    .hero-title {
        font-size: 2.2rem;
        line-height: 1.3;
        margin-bottom: 15px;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .btn {
        padding: 12px 25px;
        font-size: 0.9rem;
        min-width: 200px;
    }
    
    .hero-stats {
        position: relative;
        bottom: auto;
        transform: none;
        margin-top: 40px;
        gap: 25px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .stat {
        min-width: 120px;
        padding: 15px;
    }
    
    .stat h3 {
        font-size: 1.8rem;
    }
    
    .stat p {
        font-size: 0.85rem;
    }
    
    /* Grid Layouts */
    .services-grid,
    .other-destinations,
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    /* Cards and Content */
    .service-card,
    .dest-card,
    .blog-card {
        margin-bottom: 20px;
    }
    
    .service-card h3,
    .dest-card h3,
    .blog-card h3 {
        font-size: 1.3rem;
    }
    
    .service-card p,
    .dest-card p,
    .blog-card p {
        font-size: 0.9rem;
    }
    
    /* Testimonials */
    .testimonial-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .testimonial {
        padding: 25px 20px;
    }
    
    .testimonial-text {
        font-size: 1rem;
    }
    
    /* Featured Destination */
    .featured-destination {
        padding: 25px 20px;
    }
    
    .dest-info h3 {
        font-size: 1.8rem;
    }
    
    /* Forms */
    .form-group {
        margin-bottom: 20px;
    }
    
    .form-control {
        padding: 12px 15px;
        font-size: 0.95rem;
    }
    
    .contact-form {
        padding: 25px 20px;
    }
    
    /* WhatsApp Button */
    .whatsapp-btn .chat-text {
        display: none;
    }
    
    .whatsapp-btn {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        padding: 0;
        justify-content: center;
        bottom: 20px;
        right: 20px;
    }
    
    /* Section Spacing */
    section {
        padding: 50px 0;
    }
    
    .section-header {
        margin-bottom: 30px;
    }
    
    .section-header h2 {
        margin-bottom: 15px;
    }
    
    .section-header p {
        font-size: 1rem;
    }
}

/* Mobile Phones */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    /* Typography for Small Screens */
    h1 {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    h2 {
        font-size: 1.6rem;
        line-height: 1.3;
    }
    
    h3 {
        font-size: 1.2rem;
        line-height: 1.3;
    }
    
    p {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    /* Hero Section */
    .hero {
        height: 80vh;
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 1.8rem;
        margin-bottom: 10px;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 10px;
    }
    
    .hero-description {
        font-size: 0.9rem;
        margin-bottom: 25px;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.85rem;
        min-width: 180px;
    }
    
    /* Stats */
    .hero-stats {
        flex-direction: column;
        gap: 15px;
        margin-top: 30px;
    }
    
    .stat {
        min-width: 100px;
        padding: 12px;
    }
    
    .stat h3 {
        font-size: 1.5rem;
    }
    
    .stat p {
        font-size: 0.8rem;
    }
    
    /* Section Headers */
    .section-header h2 {
        font-size: 1.6rem;
        margin-bottom: 10px;
    }
    
    .section-header p {
        font-size: 0.9rem;
    }
    
    /* Cards */
    .service-card,
    .dest-card,
    .blog-card {
        margin-bottom: 15px;
    }
    
    .service-card h3,
    .dest-card h3,
    .blog-card h3 {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }
    
    .service-card p,
    .dest-card p,
    .blog-card p {
        font-size: 0.85rem;
        line-height: 1.5;
    }
    
    /* Forms */
    .form-control {
        padding: 10px 12px;
        font-size: 0.9rem;
    }
    
    .contact-form {
        padding: 20px 15px;
    }
    
    .testimonial {
        padding: 20px 15px;
    }
    
    .testimonial-text {
        font-size: 0.9rem;
    }
    
    /* Featured Destination */
    .featured-destination {
        padding: 20px 15px;
    }
    
    .dest-info h3 {
        font-size: 1.5rem;
    }
    
    /* Navigation */
    .nav-logo h2 {
        font-size: 1.3rem;
    }
    
    .nav-logo .tagline {
        font-size: 0.7rem;
    }
    
    /* WhatsApp Button */
    .whatsapp-btn {
        width: 50px;
        height: 50px;
        bottom: 15px;
        right: 15px;
    }
    
    .whatsapp-btn i {
        font-size: 1.2rem;
    }
    
    /* Section Spacing */
    section {
        padding: 40px 0;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-section h3 {
        font-size: 1.1rem;
    }
    
    .footer-section p,
    .footer-section a {
        font-size: 0.85rem;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

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

.text-red {
    color: var(--primary-red);
}

.bg-light {
    background: var(--light-blue);
}

.mt-20 {
    margin-top: 20px;
}

.mb-20 {
    margin-bottom: 20px;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
.loading {
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition-medium);
}

.loading.loaded {
    opacity: 1;
    transform: translateY(0);
}

/* Hover Effects for Cards */
.dest-card,
.service-card,
.blog-card {
    cursor: pointer;
}

/* Focus States for Accessibility */
.btn:focus,
.nav-link:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 2px solid var(--primary-blue);
    outline-offset: 2px;
}

/* Services Page Styles */
.page-header {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-red) 100%);
    color: var(--white);
    padding: 100px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.page-header-content {
    position: relative;
    z-index: 2;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.page-header p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: var(--transition-fast);
}

.breadcrumb a:hover {
    opacity: 1;
}

.breadcrumb .separator {
    opacity: 0.6;
}

.breadcrumb .current {
    font-weight: 500;
}

/* Services Overview */
.services-overview {
    padding: var(--section-padding);
    background: var(--soft-gray);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow-light);
    transition: var(--transition-fast);
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: var(--medium-gray);
    font-weight: 500;
}

/* About Page Statistics - Horizontal Layout */
.overview-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin: 3rem 0;
    padding: 2rem;
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow-light);
}

.overview-stats .stat-item {
    text-align: center;
    padding: 1.5rem;
    background: transparent;
    border-radius: 15px;
    box-shadow: none;
    border: 2px solid var(--light-blue);
    transition: all 0.3s ease;
}

.overview-stats .stat-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-blue);
    box-shadow: 0 10px 25px rgba(0, 66, 122, 0.15);
}

/* Detailed Services */
.services-detailed {
    padding: var(--section-padding);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: var(--transition-fast);
    position: relative;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}

.service-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-medium);
}

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

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-red) 100%);
    opacity: 0.8;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.service-overlay i {
    font-size: 3rem;
    color: var(--white);
}

.service-content {
    padding: 2rem;
}

.service-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.service-content p {
    color: var(--medium-gray);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.service-features i {
    color: var(--success-green);
    font-size: 0.8rem;
}

/* Service Process */
.service-process {
    padding: var(--section-padding);
    background: var(--light-blue);
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 2rem;
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow-light);
    transition: var(--transition-fast);
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-red) 100%);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.step-content p {
    color: var(--medium-gray);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Service Packages */
.service-packages {
    padding: var(--section-padding);
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.package-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow-light);
    transition: var(--transition-fast);
    position: relative;
    border: 2px solid transparent;
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}

.package-card.featured {
    border-color: var(--primary-blue);
    transform: scale(1.05);
}

.package-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.package-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-red);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.package-header {
    text-align: center;
    margin-bottom: 2rem;
}

.package-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.package-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-red);
}

.package-features {
    list-style: none;
    margin-bottom: 2rem;
}

.package-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
}

.package-features .fa-check {
    color: var(--success-green);
}

.package-features .fa-times {
    color: var(--medium-gray);
}

/* CTA Section */
.cta-section {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-red) 100%);
    color: var(--white);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    min-width: 200px;
}

/* Responsive Design for Services Page */
/* Tablets */
@media (max-width: 1024px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    /* About Page Statistics - Tablet */
    .overview-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        padding: 1.5rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .process-timeline {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .packages-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .package-card.featured {
        transform: scale(1.02);
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 80px 0 50px;
    }
    
    .page-header h1 {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .page-header p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .breadcrumb {
        font-size: 0.85rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .stat-item {
        padding: 1.5rem 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-content {
        padding: 1.5rem;
    }
    
    .service-content h3 {
        font-size: 1.3rem;
    }
    
    .service-content p {
        font-size: 0.9rem;
    }
    
    .service-features li {
        font-size: 0.85rem;
    }
    
    .process-timeline {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .process-step {
        padding: 1.5rem;
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .step-number {
        align-self: center;
    }
    
    .packages-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .package-card.featured {
        transform: none;
        border-color: var(--primary-blue);
    }
    
    .package-card.featured:hover {
        transform: translateY(-5px);
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .cta-buttons .btn {
        min-width: 250px;
    }
}

@media (max-width: 480px) {
    .page-header {
        padding: 60px 0 40px;
    }
    
    .page-header h1 {
        font-size: 1.6rem;
    }
    
    .page-header p {
        font-size: 0.9rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .stat-item {
        padding: 1.2rem 0.8rem;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .stat-label {
        font-size: 0.85rem;
    }
    
    .service-image {
        height: 150px;
    }
    
    .service-content {
        padding: 1.2rem;
    }
    
    .service-content h3 {
        font-size: 1.1rem;
    }
    
    .service-content p {
        font-size: 0.85rem;
        line-height: 1.5;
    }
    
    .service-features li {
        font-size: 0.8rem;
    }
    
    .process-step {
        padding: 1.2rem;
    }
    
    .step-number {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
    
    .step-content h3 {
        font-size: 1rem;
    }
    
    .step-content p {
        font-size: 0.8rem;
    }
    
    .package-card {
        padding: 1.2rem;
    }
    
    .package-header h3 {
        font-size: 1.2rem;
    }
    
    .package-price {
        font-size: 1.5rem;
    }
    
    .package-features li {
        font-size: 0.8rem;
    }
    
    .cta-content h2 {
        font-size: 1.6rem;
    }
    
    .cta-content p {
        font-size: 0.9rem;
    }
    
    .cta-buttons .btn {
        min-width: 200px;
        padding: 10px 20px;
        font-size: 0.85rem;
    }
}

/* Additional Mobile Optimizations */
@media (max-width: 360px) {
    .container {
        padding: 0 12px;
    }
    
    .hero-title {
        font-size: 1.6rem;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
    }
    
    .btn {
        min-width: 160px;
        padding: 8px 16px;
        font-size: 0.8rem;
    }
    
    .stat h3 {
        font-size: 1.3rem;
    }
    
    .section-header h2 {
        font-size: 1.4rem;
    }
    
    .service-card,
    .dest-card,
    .blog-card {
        padding: 15px;
    }
    
    .whatsapp-btn {
        width: 45px;
        height: 45px;
        bottom: 12px;
        right: 12px;
    }
    
    .whatsapp-btn i {
        font-size: 1rem;
    }
}

/* Form Responsive Improvements */
@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .form-group label {
        font-size: 0.9rem;
        margin-bottom: 5px;
    }
    
    .form-control {
        font-size: 0.9rem;
    }
    
    select.form-control {
        background-size: 16px;
    }
}

@media (max-width: 480px) {
    .form-control {
        padding: 8px 12px;
        font-size: 0.85rem;
    }
    
    .form-group label {
        font-size: 0.85rem;
    }
    
    textarea.form-control {
        min-height: 100px;
    }
}

/* Navigation Mobile Improvements */
@media (max-width: 768px) {
    .navbar {
        padding: 10px 0;
    }
    
    .nav-container {
        padding: 0 20px;
    }
    
    .nav-logo h2 {
        font-size: 1.4rem;
    }
    
    .nav-logo .tagline {
        font-size: 0.75rem;
    }
    
    .logo-image {
        height: 40px;
    }
    
    .logo-text h2 {
        font-size: 1.4rem;
    }
    
    .logo-text .tagline {
        font-size: 0.75rem;
    }
    
    .nav-link {
        padding: 12px 0;
        font-size: 1rem;
    }
    
    .apply-btn {
        margin-top: 10px;
        padding: 10px 25px !important;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 15px;
    }
    
    .nav-logo h2 {
        font-size: 1.2rem;
    }
    
    .nav-logo .tagline {
        font-size: 0.7rem;
    }
    
    .logo-image {
        height: 35px;
    }
    
    .logo-text h2 {
        font-size: 1.2rem;
    }
    
    .logo-text .tagline {
        font-size: 0.7rem;
    }
}

/* Footer Responsive Improvements */
@media (max-width: 768px) {
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .footer-section h3 {
        font-size: 1.1rem;
        margin-bottom: 15px;
    }
    
    .footer-section p,
    .footer-section a {
        font-size: 0.9rem;
    }
    
    .footer-bottom {
        padding-top: 20px;
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 25px;
        text-align: center;
    }
    
    .footer-section h3 {
        font-size: 1rem;
    }
    
    .footer-section p,
    .footer-section a {
        font-size: 0.85rem;
    }
    
    .social-links a {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
}

/* Table Responsive */
@media (max-width: 768px) {
    table {
        font-size: 0.9rem;
    }
    
    th, td {
        padding: 8px 6px;
    }
}

@media (max-width: 480px) {
    table {
        font-size: 0.8rem;
    }
    
    th, td {
        padding: 6px 4px;
    }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
    .btn,
    .nav-link,
    .service-card,
    .dest-card,
    .blog-card {
        -webkit-tap-highlight-color: rgba(0, 66, 122, 0.2);
    }
    
    .btn:hover,
    .service-card:hover,
    .dest-card:hover,
    .blog-card:hover {
        transform: none;
    }
    
    .btn:active {
        transform: scale(0.98);
    }
    
    .service-card:active,
    .dest-card:active,
    .blog-card:active {
        transform: scale(0.99);
    }
}

/* Success Stories Page Styles */
.page-hero {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-red));
    padding: 120px 0 80px;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="white" opacity="0.1"/><circle cx="80" cy="40" r="1" fill="white" opacity="0.1"/><circle cx="40" cy="80" r="1.5" fill="white" opacity="0.1"/></svg>');
    animation: float 20s infinite linear;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.breadcrumb {
    font-size: 0.9rem;
    opacity: 0.8;
}

.breadcrumb a {
    color: var(--white);
    text-decoration: none;
}

.breadcrumb span {
    margin: 0 0.5rem;
}

/* Success Stories Content */
.success-stories-content {
    padding: var(--section-padding);
}

.stats-bar {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow-light);
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--medium-gray);
    font-weight: 500;
}

/* Filters Section */
.filters-section {
    margin-bottom: 3rem;
}

.filters-container {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-light);
}

.filters-form {
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    gap: 1.5rem;
    align-items: end;
}

.filter-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--dark-gray);
}

.filter-group input,
.filter-group select {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--light-blue);
    border-radius: 8px;
    font-size: 1rem;
    transition: var(--transition);
}

.filter-group input:focus,
.filter-group select:focus {
    outline: none;
    border-color: var(--primary-blue);
}

.filter-actions {
    display: flex;
    gap: 0.5rem;
}

/* Stories Grid */
.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.story-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: var(--transition-medium);
}

.story-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-heavy);
}

.story-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    border-bottom: 1px solid var(--light-blue);
}

.student-info h3 {
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.student-course {
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 0.25rem;
}

.student-university {
    color: var(--medium-gray);
    margin-bottom: 1rem;
}

.student-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.country-badge,
.year-badge {
    background: var(--light-blue);
    color: var(--primary-blue);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.year-badge {
    background: var(--light-red);
    color: var(--primary-red);
}

.story-content {
    padding: 2rem;
}

.rating {
    margin-bottom: 1rem;
}

.rating .fa-star.active {
    color: #ffc107;
}

.rating .fa-star.inactive {
    color: #ddd;
}

.testimonial-message {
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--dark-gray);
    border-left: 4px solid var(--primary-blue);
    padding-left: 1rem;
    margin: 0;
}

/* Blog Page Styles */
.blog-content {
    padding: var(--section-padding);
}

.blog-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 3rem;
}

.blog-main {
    min-width: 0;
}

/* Blog Filters */
.blog-filters {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-light);
    margin-bottom: 2rem;
}

.blog-filters .filters-form {
    grid-template-columns: 1fr auto auto auto;
}

.search-input,
.category-select {
    padding: 0.75rem;
    border: 2px solid var(--light-blue);
    border-radius: 8px;
    font-size: 1rem;
    transition: var(--transition);
}

.search-input:focus,
.category-select:focus {
    outline: none;
    border-color: var(--primary-blue);
}

/* Results Info */
.results-info {
    margin-bottom: 2rem;
    padding: 1rem;
    background: var(--light-blue);
    border-radius: 8px;
    color: var(--primary-blue);
}

/* Blog Posts Grid */
.blog-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.blog-post-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: var(--transition-medium);
}

.blog-post-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-heavy);
}

.post-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.post-image-placeholder {
    width: 100%;
    height: 100%;
    background: var(--light-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    font-size: 2rem;
}

.post-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
}

.category-badge {
    background: var(--primary-blue);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.post-content {
    padding: 2rem;
}

.post-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: var(--medium-gray);
}

.post-title {
    margin-bottom: 1rem;
}

.post-title a {
    color: var(--dark-gray);
    text-decoration: none;
    transition: var(--transition);
}

.post-title a:hover {
    color: var(--primary-blue);
}

.post-excerpt {
    color: var(--medium-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.post-tags {
    margin-bottom: 1.5rem;
}

.tag {
    display: inline-block;
    background: var(--light-blue);
    color: var(--primary-blue);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
}

.read-more {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    z-index: 10;
    pointer-events: auto;
    cursor: pointer;
    display: inline-block;
    padding: 4px 8px;
    border-radius: 4px;
}

.read-more:hover {
    color: var(--primary-red);
}

/* Sidebar Styles */
.blog-sidebar {
    position: sticky;
    top: 2rem;
    height: fit-content;
}

.sidebar-widget {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-light);
    margin-bottom: 2rem;
}

.widget-title {
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--light-blue);
}

.featured-post {
    padding: 1rem 0;
    border-bottom: 1px solid var(--light-blue);
}

.featured-post:last-child {
    border-bottom: none;
}

.featured-post h4 {
    margin-bottom: 0.5rem;
}

.featured-post a {
    color: var(--dark-gray);
    text-decoration: none;
    transition: var(--transition);
}

.featured-post a:hover {
    color: var(--primary-blue);
}

.featured-meta {
    font-size: 0.85rem;
    color: var(--medium-gray);
}

.categories-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.category-link {
    padding: 0.75rem;
    background: var(--light-blue);
    color: var(--primary-blue);
    text-decoration: none;
    border-radius: 8px;
    transition: var(--transition);
}

.category-link:hover,
.category-link.active {
    background: var(--primary-blue);
    color: var(--white);
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.newsletter-form input {
    padding: 0.75rem;
    border: 2px solid var(--light-blue);
    border-radius: 8px;
    font-size: 1rem;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--primary-blue);
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow-light);
}

.quick-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.quick-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: var(--light-blue);
    color: var(--primary-blue);
    text-decoration: none;
    border-radius: 8px;
    transition: var(--transition);
}

.quick-link:hover {
    background: var(--primary-blue);
    color: var(--white);
}

/* University Links Styling */
.university-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 16px;
}

.university-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    text-decoration: none;
    color: #495057;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.university-link:hover {
    background: #007bff;
    color: white;
    border-color: #007bff;
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0,123,255,0.2);
}

.university-link i {
    font-size: 12px;
}

@media (max-width: 768px) {
    .university-links {
        gap: 8px;
    }
    
    .university-link {
        padding: 6px 12px;
        font-size: 13px;
    }
}

/* Leadership Team Styles */
.leadership-team {
    padding: 4rem 0;
    background: #f8f9fa;
}

.leadership-team .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.leadership-team .section-header h2 {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.leadership-team .section-header p {
    font-size: 1.1rem;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.team-member {
    background: var(--white);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.member-photo {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #e9ecef;
    transition: border-color 0.3s ease;
}

.team-member:hover .member-photo {
    border-color: var(--primary-color);
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.photo-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6c757d;
    font-size: 24px;
}

.member-details h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.member-details .title {
    font-size: 1rem;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.member-details .specialization {
    font-size: 0.9rem;
    color: #6c757d;
    font-style: italic;
    margin-bottom: 1rem;
}

.member-details .bio {
    font-size: 0.9rem;
    color: #6c757d;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .leadership-team {
        padding: 3rem 0;
    }
    
    .leadership-team .section-header h2 {
        font-size: 2rem;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .team-member {
        padding: 1.5rem;
    }
    
    .member-photo {
        width: 100px;
        height: 100px;
        margin-bottom: 1rem;
    }
    
    .photo-placeholder {
        font-size: 20px;
    }
    
    .member-details h4 {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .team-member {
        padding: 1rem;
    }
    
    .member-photo {
        width: 80px;
        height: 80px;
    }
    
    .photo-placeholder {
        font-size: 18px;
    }
}

/* Pagination Styles */
.pagination-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 3rem;
    padding: 2rem;
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow-light);
}

.pagination {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pagination-numbers {
    display: flex;
    gap: 0.25rem;
}

.pagination-link {
    padding: 0.75rem 1rem;
    background: var(--light-blue);
    color: var(--primary-blue);
    text-decoration: none;
    border-radius: 8px;
    transition: var(--transition);
    font-weight: 500;
}

.pagination-link:hover,
.pagination-link.active {
    background: var(--primary-blue);
    color: var(--white);
}

.pagination-ellipsis {
    padding: 0.75rem 0.5rem;
    color: var(--medium-gray);
}

.pagination-info {
    color: var(--medium-gray);
    font-size: 0.9rem;
}

/* No Results */
.no-results {
    text-align: center;
    padding: 4rem 2rem;
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow-light);
}

.no-results-icon {
    font-size: 4rem;
    color: var(--medium-gray);
    margin-bottom: 2rem;
}

.no-results h3 {
    color: var(--dark-gray);
    margin-bottom: 1rem;
}

.no-results p {
    color: var(--medium-gray);
    margin-bottom: 2rem;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-red));
    padding: 4rem 2rem;
    border-radius: 20px;
    text-align: center;
    color: var(--white);
    margin-top: 4rem;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Responsive Styles for New Pages */
@media (max-width: 1024px) {
    .blog-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .blog-sidebar {
        position: static;
    }
    
    .filters-form {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .blog-filters .filters-form {
        grid-template-columns: 1fr;
    }
    
    .filter-actions {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        padding: 1.5rem;
    }
    
    .overview-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        padding: 1rem;
        margin: 2rem 0;
    }
    
    .overview-stats .stat-item {
        padding: 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stories-grid,
    .blog-posts-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .story-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding: 1.5rem;
    }
    
    .story-content,
    .post-content {
        padding: 1.5rem;
    }
    
    .pagination-wrapper {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .pagination {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .sidebar-widget {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .page-hero {
        padding: 80px 0 60px;
    }
    
    .hero-title {
        font-size: 1.5rem;
    }
    
    .stats-bar {
        grid-template-columns: 1fr;
        padding: 1rem;
    }
    
    /* About Page Statistics - Small Mobile */
    .overview-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1rem;
        margin: 1.5rem 0;
    }
    
    .overview-stats .stat-item {
        padding: 1rem 0.5rem;
    }
    
    .overview-stats .stat-number {
        font-size: 2rem;
    }
    
    .overview-stats .stat-label {
        font-size: 0.9rem;
    }
    
    /* Country Flag Text Mask Effects */
    .flag-text-mask {
        background-size: 200% 200%;
        background-position: center;
        background-repeat: repeat;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        color: transparent;
        font-weight: 800;
        text-shadow: none;
        position: relative;
        display: inline-block;
        animation: flagWave 3s ease-in-out infinite;
    }
    
    @keyframes flagWave {
        0%, 100% { background-position: 0% 50%; }
        50% { background-position: 100% 50%; }
    }
    
    /* Fallback for browsers that don't support background-clip: text */
    @supports not (-webkit-background-clip: text) {
        .flag-text-mask {
            background: linear-gradient(45deg, #FF0000, #0000FF, #FFFFFF);
            -webkit-background-clip: initial;
            -webkit-text-fill-color: initial;
            background-clip: initial;
            color: #FF0000;
            font-weight: 800;
        }
    }
    
    /* Individual Country Flag Backgrounds */
    .flag-korea {
        background: linear-gradient(45deg, #CD212A 25%, #ffffff 25%, #ffffff 50%, #003478 50%, #003478 75%, #CD212A 75%);
        background-size: 40px 40px;
    }
    
    .flag-japan {
        background: radial-gradient(circle at center, #BC002D 30%, #ffffff 30%);
        background-size: 80px 80px;
    }
    
    .flag-australia {
        background: linear-gradient(45deg, #012169 25%, #ffffff 25%, #ffffff 50%, #012169 50%, #012169 75%, #ffffff 75%);
        background-size: 30px 30px;
    }
    
    .flag-canada {
        background: linear-gradient(90deg, #FF0000 30%, #ffffff 30%, #ffffff 70%, #FF0000 70%);
        background-size: 60px 60px;
    }
    
    .flag-usa {
        background: linear-gradient(0deg, #B22234 50%, #ffffff 50%);
        background-size: 100% 20px;
    }
    
    .flag-uk {
        background: linear-gradient(45deg, #012169 25%, #ffffff 25%, #ffffff 50%, #C8102E 50%, #C8102E 75%, #ffffff 75%);
        background-size: 40px 40px;
    }
    
    .flag-ireland {
        background: linear-gradient(90deg, #009650 33%, #ffffff 33%, #ffffff 67%, #FF8700 67%);
        background-size: 60px 60px;
    }
    
    .flag-newzealand {
        background: linear-gradient(45deg, #012169 25%, #ffffff 25%, #ffffff 50%, #012169 50%, #012169 75%, #ffffff 75%);
        background-size: 35px 35px;
    }
    
    .filters-container,
    .blog-filters {
        padding: 1rem;
    }
    
    .story-card,
    .blog-post-card {
        margin: 0 1rem;
    }
    
    .testimonial-message {
        font-size: 1rem;
    }
    
    .pagination-link {
        padding: 0.5rem 0.75rem;
        font-size: 0.9rem;
    }
}

/* Accessibility Improvements for Mobile */
@media (max-width: 768px) {
    .btn,
    .nav-link,
    .whatsapp-btn {
        min-height: 44px;
        min-width: 44px;
    }
    
    .form-control {
        min-height: 44px;
    }
    
    .hamburger {
        min-height: 44px;
        min-width: 44px;
    }
}

/* Enhanced Mobile Responsiveness for Hero Section */
@media (max-width: 768px) {
    .hero {
        height: auto;
        min-height: 100vh;
        padding: 120px 20px 60px;
        background-size: cover;
        background-position: center;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    
    .hero-content {
        max-width: 100%;
        text-align: center;
        padding: 0 10px;
        margin-bottom: 40px;
    }
    
    .hero-title {
        font-size: 2.2rem;
        line-height: 1.2;
        margin-bottom: 15px;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }
    
    .hero-subtitle {
        font-size: 1.4rem;
        margin-bottom: 15px;
        line-height: 1.3;
    }
    
    .hero-description {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 30px;
        max-width: 90%;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-buttons {
        display: flex;
        flex-direction: column;
        gap: 15px;
        width: 100%;
        max-width: 300px;
        margin: 0 auto 40px;
    }
    
    .hero-buttons .btn {
        width: 100%;
        padding: 15px 25px;
        font-size: 1rem;
        font-weight: 600;
        border-radius: 30px;
        min-height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .hero-stats {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
        width: 100%;
        max-width: 350px;
        margin: 0 auto;
        padding: 0 10px;
    }
    
    .stat {
        background: rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 15px;
        padding: 20px 10px;
        text-align: center;
        transition: all 0.3s ease;
    }
    
    .stat:hover {
        background: rgba(255, 255, 255, 0.25);
        transform: translateY(-3px);
    }
    
    .stat h3 {
        font-size: 2rem;
        margin-bottom: 5px;
        color: var(--white);
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    }
    
    .stat p {
        font-size: 0.85rem;
        color: #E8F4FD;
        margin: 0;
        font-weight: 500;
        line-height: 1.2;
    }
}

/* iPad and Tablet Optimizations */
@media (min-width: 769px) and (max-width: 1024px) {
    .hero {
        padding: 140px 40px 80px;
    }
    
    .hero-content {
        max-width: 80%;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1.2rem;
        max-width: 600px;
    }
    
    .hero-buttons {
        flex-direction: row;
        gap: 20px;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
        max-width: 600px;
    }
    
    .stat {
        padding: 25px 20px;
    }
    
    .stat h3 {
        font-size: 2.5rem;
    }
    
    .stat p {
        font-size: 1rem;
    }
}

/* Mobile Navigation Styles */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
        z-index: 1001;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        z-index: 1000;
        padding: 20px 0;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 10px 0;
    }

    .nav-link {
        padding: 15px 20px;
        display: block;
        color: var(--dark-gray);
        font-weight: 500;
        border-radius: 8px;
        margin: 0 20px;
        transition: all 0.3s ease;
    }

    .nav-link:hover {
        background: var(--light-blue);
        color: var(--primary-blue);
    }

    .apply-btn {
        background: var(--primary-red);
        color: var(--white) !important;
        margin: 10px 20px;
        border-radius: 25px;
        padding: 15px 30px;
    }

    .apply-btn:hover {
        background: var(--dark-red);
        transform: translateY(-2px);
    }

    /* Mobile Dropdown Specific Styles */
    .nav-dropdown {
        width: 100%;
    }

    .dropdown-toggle {
        justify-content: center;
        position: relative;
    }

    .dropdown-menu {
        position: static;
        opacity: 0;
        visibility: hidden;
        transform: none;
        box-shadow: none;
        background: rgba(0, 66, 122, 0.05);
        border-radius: 8px;
        margin: 10px 20px 0;
        padding: 10px 0;
        max-height: 0;
        overflow: hidden;
        transition: all 0.3s ease;
    }

    .dropdown-menu.mobile-active {
        opacity: 1;
        visibility: visible;
        max-height: 400px;
        padding: 10px 0;
    }

    .dropdown-link {
        padding: 12px 20px;
        margin: 0;
        border-radius: 6px;
        border-left: none;
        color: var(--dark-gray);
        font-weight: 500;
    }

    .dropdown-link:hover {
        background: var(--primary-blue);
        color: var(--white);
        padding-left: 20px;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}

/* Small Mobile Devices */
@media (max-width: 480px) {
    .hero {
        padding: 100px 15px 50px;
        min-height: 100vh;
    }
    
    .hero-content {
        padding: 0 5px;
    }
    
    .hero-title {
        font-size: 1.8rem;
        line-height: 1.1;
        margin-bottom: 12px;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
        margin-bottom: 12px;
    }
    
    .hero-description {
        font-size: 0.9rem;
        line-height: 1.5;
        margin-bottom: 25px;
        max-width: 95%;
    }
    
    .hero-buttons {
        max-width: 280px;
        gap: 12px;
        margin-bottom: 30px;
    }
    
    .hero-buttons .btn {
        padding: 12px 20px;
        font-size: 0.9rem;
        min-height: 45px;
    }
    
    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
        max-width: 320px;
    }
    
    .stat {
        padding: 15px 8px;
        border-radius: 12px;
    }
    
    .stat h3 {
        font-size: 1.6rem;
        margin-bottom: 3px;
    }
    
    .stat p {
        font-size: 0.75rem;
        line-height: 1.1;
    }
}

/* Landscape Mobile Optimizations */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        height: auto;
        min-height: 100vh;
        padding: 80px 20px 40px;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
    }
    
    .hero-content {
        flex: 1;
        max-width: 60%;
        margin-right: 20px;
        margin-bottom: 0;
    }
    
    .hero-title {
        font-size: 2rem;
        margin-bottom: 10px;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }
    
    .hero-description {
        font-size: 0.9rem;
        margin-bottom: 20px;
        line-height: 1.4;
    }
    
    .hero-buttons {
        flex-direction: row;
        gap: 15px;
        max-width: none;
        margin-bottom: 0;
    }
    
    .hero-buttons .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
        min-height: 40px;
        width: auto;
    }
    
    .hero-stats {
        flex: 0 0 auto;
        display: grid;
        grid-template-columns: 1fr;
        gap: 15px;
        max-width: 120px;
        margin: 0;
    }
    
    .stat {
        padding: 15px 10px;
    }
    
    .stat h3 {
        font-size: 1.5rem;
    }
    
    .stat p {
        font-size: 0.7rem;
    }
    
    .nav-menu {
        max-height: 80vh;
        overflow-y: auto;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .whatsapp-chat,
    .hero-buttons,
    .slider-controls,
    .slider-dots {
        display: none;
    }
    
    .hero {
        height: auto;
        padding: 50px 0;
    }
    
    * {
        box-shadow: none !important;
    }
}

/* Performance Optimizations */
.hero {
    will-change: transform;
    transform: translate3d(0, 0, 0);
}

.hero-title {
    will-change: transform;
}

/* Smooth Scroll Behavior */
html {
    scroll-behavior: smooth;
}

/* Enhanced Section Transitions */
section {
    transform: translateZ(0);
    will-change: transform;
}

/* Additional Visual Enhancements */
.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-red));
    border-radius: 2px;
}

.section-header {
    position: relative;
}

/* Enhanced Card Hover Effects */
.service-card,
.dest-card,
.blog-card {
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.service-card:hover,
.dest-card:hover,
.blog-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 66, 122, 0.15);
}

/* Improved Loading States */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

/* Enhanced Focus States for Accessibility */
.btn:focus,
.nav-link:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 3px solid var(--primary-blue);
    outline-offset: 2px;
    box-shadow: 0 0 0 3px rgba(0, 66, 122, 0.2);
}
