/* ============================================
   EDUCATION CONSULTANT WEBSITE - MODERN CSS
   Built with HTML5, CSS3, Glassmorphism Effects
   ============================================ */

/* ===== CSS VARIABLES ===== */
:root {
    /* Primary Colors */
    --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --secondary-gradient: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --success-gradient: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --warning-gradient: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
    
    /* Solid Colors */
    --primary-color: #667eea;
    --secondary-color: #764ba2;
    --accent-color: #f5576c;
    --success-color: #00f2fe;
    --warning-color: #ffd700;
    
    /* Neutral Colors */
    --dark: #1a1a2e;
    --dark-blue: #16213e;
    --text-dark: #2c3e50;
    --text-light: #6c757d;
    --white: #ffffff;
    --light-bg: #f8f9fa;
    --border-color: #e9ecef;
    
    /* Fonts */
    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Inter', sans-serif;
    --font-headings: 'Montserrat', sans-serif;
    
    /* Spacing */
    --section-padding: 100px 0;
    --container-max-width: 1200px;
    
    /* Transitions */
    --transition: all 0.3s ease;
    --transition-slow: all 0.5s ease;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
    --shadow-xl: 0 12px 48px rgba(0, 0, 0, 0.2);
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
}

/* ===== CUSTOM SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 12px;
    height: 12px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 10px;
    border: 2px solid #f1f1f1;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
}

/* Firefox Scrollbar */
* {
    scrollbar-width: thin;
    scrollbar-color: #667eea #f1f1f1;
}

/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul, ol {
    list-style: none;
}

/* ===== CONTAINER & GRID ===== */
.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

[class*="col-"] {
    padding: 0 15px;
}

.col-lg-3 { width: 25%; }
.col-lg-4 { width: 33.333%; }
.col-lg-5 { width: 41.666%; }
.col-lg-6 { width: 50%; }
.col-lg-7 { width: 58.333%; }
.col-lg-8 { width: 66.666%; }
.col-lg-12 { width: 100%; }

.col-md-6 { width: 50%; }
.col-md-12 { width: 100%; }

.text-center { text-align: center; }
.text-lg-end { text-align: right; }

.align-items-center { align-items: center; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-headings);
    font-weight: 700;
    line-height: 1.3;
    color: var(--dark);
    margin-bottom: 20px;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.8rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 15px;
    color: var(--text-light);
}

.lead {
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--text-light);
}

.gradient-text {
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    -moz-background-clip: text;
    display: inline-block;
    text-shadow: none;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 600;
    border-radius: var(--radius-lg);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    white-space: nowrap;
}

.btn-primary {
    background: var(--primary-gradient);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline-primary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline-primary:hover {
    background: var(--primary-gradient);
    color: var(--white);
    border-color: transparent;
}

.btn-white {
    background: var(--white);
    color: var(--primary-color);
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline-white:hover {
    background: var(--white);
    color: var(--primary-color);
}

.btn-lg {
    padding: 16px 40px;
    font-size: 18px;
}

.btn-sm {
    padding: 10px 24px;
    font-size: 14px;
}

/* ===== FORM ELEMENTS ===== */
.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-dark);
    font-size: 14px;
}

.form-control {
    width: 100%;
    padding: 14px 20px;
    font-family: var(--font-primary);
    font-size: 15px;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    background: var(--white);
    transition: var(--transition);
    color: var(--text-dark);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
}

select.form-control {
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-color: var(--white);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23667eea' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 16px;
    padding-right: 50px;
    font-weight: 500;
}

select.form-control:hover {
    border-color: var(--primary-color);
    background-color: #f8f9ff;
}

select.form-control:focus {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23667eea' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='18 15 12 9 6 15'%3E%3C/polyline%3E%3C/svg%3E");
}

/* Modern Select Options */
select.form-control option {
    padding: 12px;
    background: white;
    color: var(--text-dark);
    font-weight: 500;
}

select.form-control option:hover,
select.form-control option:checked {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

/* ===== HEADER STYLES ===== */
.top-bar {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--white);
    padding: 12px 0;
    font-size: 13px;
    display: none; /* Will show on larger screens */
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left,
.top-bar-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.top-bar a {
    color: var(--white);
    opacity: 0.95;
    transition: all 0.3s ease;
}

.top-bar a:hover {
    opacity: 1;
    color: var(--white);
    transform: translateY(-1px);
}

.social-links-top {
    display: flex;
    gap: 12px;
}

.social-links-top a {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.social-links-top a:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.main-header {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.03) 0%, rgba(118, 75, 162, 0.03) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(102, 126, 234, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(102, 126, 234, 0.1);
}

.navbar {
    padding: 18px 0;
}

.navbar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: nowrap;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 26px;
    font-weight: 800;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: var(--font-headings);
    transition: all 0.3s ease;
    position: relative;
    flex-shrink: 0;
}

.logo:hover {
    transform: translateY(-2px);
}

.logo i {
    font-size: 34px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    width: 44px;
    height: 44px;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1001;
}

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 3px;
    transition: all 0.3s ease;
    display: block;
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 1;
    overflow: visible;
}

.nav-link {
    padding: 10px 18px;
    font-weight: 500;
    font-size: 15px;
    color: var(--text-dark);
    border-radius: var(--radius-md);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    flex-shrink: 0;
}

.nav-link i:not(.fa-chevron-down) {
    font-size: 14px;
}

.nav-link .fa-chevron-down {
    font-size: 10px;
    margin-left: 4px;
}

.nav-link:hover,
.nav-link.active {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.12) 0%, rgba(118, 75, 162, 0.12) 100%);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.15);
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    box-shadow: 0 10px 40px rgba(102, 126, 234, 0.15);
    border-radius: var(--radius-lg);
    min-width: 260px;
    padding: 16px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 100;
    border: 1px solid rgba(102, 126, 234, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 24px;
    color: var(--text-dark);
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.dropdown-menu a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.dropdown-menu a:hover {
    background: linear-gradient(90deg, rgba(102, 126, 234, 0.08) 0%, rgba(102, 126, 234, 0.02) 100%);
    color: var(--primary-color);
    padding-left: 32px;
}

.dropdown-menu a:hover::before {
    transform: scaleY(1);
}

.dropdown-menu a i {
    font-size: 16px;
    width: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.dropdown-menu a:hover i {
    transform: scale(1.2) translateX(2px);
}

.dropdown-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.2), transparent);
    margin: 12px 16px;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
    min-width: fit-content;
}

.nav-actions .btn {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 14px;
    padding: 12px 24px;
    border-radius: 25px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    white-space: nowrap;
}

.nav-actions .btn-outline-primary {
    background: white;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.nav-actions .btn-outline-primary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.3);
}

.nav-actions .btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    color: white;
}

.nav-actions .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(102, 126, 234, 0.4);
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
}

.user-menu {
    position: relative;
}

.user-toggle {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    background: rgba(102, 126, 234, 0.1);
    border: none;
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-primary);
    font-weight: 500;
    color: var(--primary-color);
}

.user-toggle:hover {
    background: rgba(102, 126, 234, 0.2);
}

.user-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
}

.user-dropdown {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    background: var(--white);
    box-shadow: var(--shadow-xl);
    border-radius: var(--radius-lg);
    min-width: 280px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    overflow: hidden;
}

.user-menu:hover .user-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.user-dropdown-header {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px;
    background: var(--primary-gradient);
    color: var(--white);
}

.user-dropdown-header img {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.3);
}

.user-dropdown-header h4 {
    font-size: 16px;
    margin: 0;
    color: var(--white);
}

.user-dropdown-header p {
    font-size: 13px;
    margin: 0;
    opacity: 0.9;
}

.user-dropdown-body {
    padding: 12px 0;
}

.user-dropdown-body a {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 20px;
    color: var(--text-dark);
    font-size: 14px;
    transition: var(--transition);
}

.user-dropdown-body a:hover {
    background: rgba(102, 126, 234, 0.05);
    color: var(--primary-color);
    padding-left: 28px;
}

.user-dropdown-body a.text-danger {
    color: #e74c3c;
}

.user-dropdown-body a.text-danger:hover {
    color: #c0392b;
}

/* ===== HERO SECTION ===== */
.hero-section {
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 10%;
    right: 15%;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    border: 2px dashed rgba(255, 255, 255, 0.1);
    animation: rotate-circle 40s linear infinite;
    z-index: 1;
    pointer-events: none;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: 10%;
    left: 10%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    border: 3px dotted rgba(255, 255, 255, 0.08);
    animation: rotate-circle-reverse 35s linear infinite;
    z-index: 1;
    pointer-events: none;
}

.hero-swiper {
    height: 100vh;
    min-height: 700px;
    position: relative;
}

/* Decorative particle dots */
.hero-swiper::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: 
        radial-gradient(circle, rgba(255, 255, 255, 0.15) 2px, transparent 2px),
        radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 100px 100px, 50px 50px;
    background-position: 0 0, 25px 25px;
    z-index: 1;
    pointer-events: none;
    opacity: 0.3;
    animation: particle-move 60s linear infinite;
}

@keyframes particle-move {
    0% {
        background-position: 0 0, 25px 25px;
    }
    100% {
        background-position: 100px 100px, 125px 125px;
    }
}

.hero-slide {
    height: 100%;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 80px 0;
    background-attachment: fixed !important;
    background-position: center !important;
    background-size: cover !important;
    animation: slideZoom 20s ease-in-out infinite;
}

@keyframes slideZoom {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' xmlns='http://www.w3.org/2000/svg'%3E%3Cdefs%3E%3Cpattern id='grid' width='20' height='20' patternUnits='userSpaceOnUse'%3E%3Cpath d='M 20 0 L 0 0 0 20' fill='none' stroke='rgba(255,255,255,0.05)' stroke-width='1'/%3E%3C/pattern%3E%3C/defs%3E%3Crect width='100' height='100' fill='url(%23grid)' /%3E%3C/svg%3E");
    z-index: 1;
}

/* Circular wave effects */
.hero-slide::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 800px;
    height: 800px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    border: 2px solid rgba(255, 255, 255, 0.1);
    animation: rotate-circle 30s linear infinite;
    z-index: 1;
    pointer-events: none;
}

@keyframes rotate-circle {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Additional circular decorations */
.hero-swiper::before {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -5%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    border: 3px solid rgba(255, 255, 255, 0.08);
    animation: rotate-circle-reverse 25s linear infinite;
    z-index: 0;
    pointer-events: none;
}

@keyframes rotate-circle-reverse {
    from {
        transform: rotate(360deg);
    }
    to {
        transform: rotate(0deg);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 650px;
    color: var(--white);
    padding: 40px 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.25);
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    animation: fadeInDown 0.8s ease-out;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--white);
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3), 0 2px 10px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 36px;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.hero-buttons .btn {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.hero-buttons .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.hero-stats {
    display: flex;
    gap: 48px;
    padding-top: 36px;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

.stat-item {
    text-align: center;
    position: relative;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: -36px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 3px;
}

.stat-item h3 {
    font-size: 3rem;
    font-weight: 800;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    color: var(--white);
    margin-bottom: 8px;
}

.stat-item p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.hero-image {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    width: 600px;
    height: 600px;
    z-index: 3;
}

.hero-image::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulse-circle 3s ease-in-out infinite;
}

@keyframes pulse-circle {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.6;
    }
}

.floating-card {
    position: absolute;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0.15) 100%);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 80px;
    padding: 19px 24px;
    display: flex;
    align-items: center;
    gap: 26px;
    color: var(--white);
    font-weight: 500;
    font-size: 15px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2), 
                0 0 0 1px rgba(255, 255, 255, 0.1) inset,
                0 8px 16px rgba(255, 255, 255, 0.1) inset;
    animation: floatEnhanced 4s ease-in-out infinite;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
    max-height: 60px;
}

.floating-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

.floating-card:hover {
    transform: translateY(-15px) scale(1.08);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 
                0 0 0 2px rgba(255, 255, 255, 0.2) inset,
                0 10px 20px rgba(255, 255, 255, 0.15) inset;
    border-color: rgba(255, 255, 255, 0.7);
}

.floating-card i {
    font-size: 32px;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    z-index: 2;
}

.card-1 {
    top: 15%;
    right: 8%;
    animation-delay: 0s;
}

.card-2 {
    top: 50%;
    right: 18%;
    animation-delay: 1.3s;
}

.card-3 {
    bottom: 15%;
    right: 5%;
    top: auto;
    animation-delay: 2.6s;
}

@keyframes floatEnhanced {
    0%, 100% {
        transform: translateY(0) translateX(0) rotate(0deg);
    }
    25% {
        transform: translateY(-20px) translateX(10px) rotate(2deg);
    }
    50% {
        transform: translateY(-35px) translateX(0) rotate(0deg);
    }
    75% {
        transform: translateY(-20px) translateX(-10px) rotate(-2deg);
    }
}

.swiper-button-next,
.swiper-button-prev {
    width: 55px;
    height: 55px;
    background: rgba(255, 255, 255, 0.25);
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
    border-radius: 50%;
    color: var(--white) !important;
    border: 2px solid rgba(255, 255, 255, 0.4);
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: rgba(255, 255, 255, 0.35);
    transform: scale(1.1);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 20px !important;
    font-weight: bold;
}

.swiper-pagination-bullet {
    background: var(--white) !important;
    opacity: 0.4 !important;
    width: 14px;
    height: 14px;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    margin: 0 6px !important;
}

.swiper-pagination-bullet:hover {
    opacity: 0.7 !important;
    transform: scale(1.2);
}

.swiper-pagination-bullet-active {
    opacity: 1 !important;
    width: 45px;
    border-radius: 8px;
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.9) 100%) !important;
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.5),
                0 0 0 3px rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.6);
    transform: scale(1.1);
}

.swiper-pagination {
    bottom: 30px !important;
}

/* ===== QUICK SEARCH ===== */
.quick-search-section {
    margin-top: 0px;
    padding-top: 60px;
    position: relative;
    z-index: 10;
    padding-bottom: 60px;
}

.search-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: var(--shadow-xl);
}

.search-card h3 {
    font-size: 1.5rem;
    margin-bottom: 32px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--dark);
}

.search-card h3 i {
    color: var(--primary-color);
}

.search-form {
    display: grid;
    grid-template-columns: repeat(3, 1fr) auto;
    gap: 20px;
    align-items: end;
}

.search-form .form-group {
    margin: 0;
}

/* ===== SECTION HEADER ===== */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(102, 126, 234, 0.1);
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 600;
    border-radius: 50px;
    margin-bottom: 16px;
}

.section-title {
    font-size: 2.8rem;
    margin-bottom: 16px;
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-light);
}

/* ===== SECTIONS ===== */
.destinations-section,
.services-section,
.why-choose-section,
.testimonials-section,
.contact-section {
    padding: var(--section-padding);
}

.destinations-section {
    background: var(--light-bg);
}

/* ===== DESTINATION CARDS ===== */
.destinations-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.destination-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.destination-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.destination-image {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.destination-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.destination-card:hover .destination-image img {
    transform: scale(1.1);
}

.destination-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(102, 126, 234, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.destination-card:hover .destination-overlay {
    opacity: 1;
}

.view-btn {
    width: 60px;
    height: 60px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 20px;
    transition: var(--transition);
}

.view-btn:hover {
    transform: scale(1.1) rotate(45deg);
}

.destination-content {
    padding: 24px;
    position: relative;
}

.destination-flag {
    position: absolute;
    top: -20px;
    right: 24px;
    width: 48px;
    height: 36px;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.destination-flag img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.destination-content h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.destination-content p {
    font-size: 14px;
    margin-bottom: 16px;
}

.destination-meta {
    display: flex;
    gap: 16px;
    font-size: 13px;
    color: var(--text-light);
}

.destination-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.destination-meta i {
    color: var(--primary-color);
}

/* ===== SERVICE CARDS ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: var(--primary-gradient);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: var(--white);
    transition: var(--transition);
}

.service-card:hover .service-icon {
    transform: rotateY(360deg);
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 14px;
}

.service-card p {
    margin-bottom: 20px;
}

.service-link {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.service-link:hover {
    gap: 12px;
}

/* ===== WHY CHOOSE US ===== */
.why-choose-section {
    background: var(--white);
}

.why-choose-image {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.why-choose-image img {
    width: 100%;
    border-radius: var(--radius-xl);
}

.experience-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: var(--primary-gradient);
    color: var(--white);
    padding: 24px 32px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-xl);
}

.experience-badge h3 {
    font-size: 3rem;
    margin: 0;
    color: var(--white);
}

.experience-badge p {
    margin: 0;
    font-size: 14px;
    line-height: 1.4;
}

.why-choose-content {
    padding-left: 40px;
}

.feature-list {
    margin: 32px 0 36px;
}

.feature-item {
    display: flex;
    gap: 20px;
    margin-bottom: 28px;
}

.feature-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: rgba(102, 126, 234, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 24px;
}

.feature-content h4 {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.feature-content p {
    margin: 0;
}

/* ===== TESTIMONIALS ===== */
.testimonials-section {
    background: var(--light-bg);
}

.testimonial-swiper {
    padding: 20px 0 60px;
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-md);
    height: auto;
}

.testimonial-rating {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
    color: #ffd700;
    font-size: 18px;
}

.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 28px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.author-image {
    flex-shrink: 0;
}

.author-image img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h4 {
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.author-info p {
    margin: 0;
    font-size: 14px;
}

/* ===== CTA SECTION ===== */
.cta-section {
    padding: 60px 0;
}

.cta-card {
    background: var(--primary-gradient);
    border-radius: var(--radius-xl);
    padding: 60px;
    color: var(--white);
    box-shadow: var(--shadow-xl);
    position: relative;
    overflow: hidden;
}

.cta-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.cta-card h2 {
    font-size: 2.2rem;
    margin-bottom: 12px;
    color: var(--white);
}

.cta-card p {
    font-size: 1.1rem;
    margin: 0;
    color: rgba(255, 255, 255, 0.95);
}

/* ===== CONTACT SECTION ===== */
.contact-info {
    padding-right: 40px;
}

.contact-details {
    margin: 36px 0;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 28px;
}

.contact-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    background: var(--primary-gradient);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 24px;
}

.contact-text h4 {
    font-size: 1.1rem;
    margin-bottom: 6px;
}

.contact-text p,
.contact-text a {
    margin: 0;
    color: var(--text-light);
}

.contact-text a:hover {
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 44px;
    height: 44px;
    background: rgba(102, 126, 234, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-gradient);
    color: var(--white);
    transform: translateY(-4px);
}

.contact-form {
    background: var(--light-bg);
    border-radius: var(--radius-lg);
    padding: 40px;
}

/* ===== FOOTER STYLES ===== */
.main-footer {
    background: var(--dark);
    color: rgba(255, 255, 255, 0.8);
}

.footer-top {
    padding: 80px 0 40px;
}

.footer-widget {
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 28px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-logo i {
    font-size: 32px;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-description {
    line-height: 1.8;
    margin-bottom: 24px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}

.social-link:hover {
    background: var(--primary-gradient);
    transform: translateY(-4px);
}

.footer-title {
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 24px;
    font-weight: 600;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 14px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 8px;
}

.footer-links i {
    font-size: 12px;
    color: var(--primary-color);
}

.footer-contact {
    list-style: none;
}

.footer-contact li {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
}

.footer-contact i {
    flex-shrink: 0;
    color: var(--primary-color);
    font-size: 18px;
    margin-top: 2px;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.8);
}

.footer-contact a:hover {
    color: var(--white);
}

.footer-newsletter {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px 0;
}

.newsletter-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.newsletter-content {
    display: flex;
    align-items: center;
    gap: 20px;
}

.newsletter-content i {
    font-size: 48px;
    color: var(--primary-color);
}

.newsletter-content h3 {
    font-size: 1.5rem;
    margin-bottom: 4px;
    color: var(--white);
}

.newsletter-content p {
    margin: 0;
    font-size: 14px;
}

.newsletter-form {
    display: flex;
    gap: 12px;
    min-width: 400px;
}

.newsletter-form input {
    flex: 1;
    padding: 14px 20px;
    border: none;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-family: var(--font-primary);
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-form input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.15);
}

.footer-bottom {
    padding: 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.copyright {
    margin: 0;
    font-size: 14px;
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
    list-style: none;
}

.footer-bottom-links a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.footer-bottom-links a:hover {
    color: var(--white);
}

/* ===== SCROLL TO TOP ===== */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-gradient);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-lg);
    z-index: 999;
}

.scroll-to-top.active {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    transform: translateY(-4px);
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: var(--shadow-lg);
    /* Raise above overlays/nav drawers so the button remains visible on mobile */
    z-index: 10050 !important;
    pointer-events: auto;
    touch-action: manipulation;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    50% {
        box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
    }
}

/* ===== RESPONSIVE STYLES ===== */

/* Large Tablets */
@media (max-width: 1024px) {
    .top-bar {
        display: block;
    }
    
    .destinations-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .search-form {
        grid-template-columns: 1fr 1fr;
    }
    
    .search-form .btn {
        grid-column: span 2;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-image {
        right: 2%;
        width: 450px;
        height: 450px;
    }
    
    .floating-card {
        padding: 14px 24px;
        font-size: 13px;
    }
    
    .floating-card i {
        font-size: 26px;
    }
    
    .card-1 {
        top: 10%;
        right: 5%;
    }
    
    .card-2 {
        top: 50%;
        right: 12%;
    }
    
    .card-3 {
        bottom: 10%;
        right: 3%;
    }
}

/* Mobile Overlay */
.mobile-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-overlay.active {
    display: block;
    opacity: 1;
}

/* Tablets */
@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.5rem; }
    
    .col-md-6 { width: 100%; }
    .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, 
    .col-lg-7, .col-lg-8 { width: 100%; }
    
    .mobile-toggle {
        display: flex !important;
    }
    
    .nav-links {
        position: fixed !important;
        top: 0 !important;
        right: -100% !important;
        left: auto !important;
        width: 300px !important;
        height: 100vh !important;
        background: var(--white) !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        padding: 80px 20px 20px !important;
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.2) !important;
        transition: right 0.4s ease !important;
        overflow-y: auto !important;
        z-index: 1000 !important;
    }
    
    .nav-links.active {
        right: 0 !important;
        left: auto !important;
    }
    
    .nav-link {
        width: 100%;
        padding: 14px 20px;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding-left: 20px;
        margin-top: 8px;
        display: none;
    }
    
    .dropdown.active .dropdown-menu {
        display: block;
    }
    
    .nav-actions {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }
    
    .nav-actions .btn {
        width: 100%;
        justify-content: center;
    }
    
    .top-bar {
        display: none;
    }
    
    .hero-swiper {
        height: auto;
        min-height: 600px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        gap: 24px;
    }
    
    .stat-item h3 {
        font-size: 2rem;
    }
    
    .hero-image {
        display: none;
    }
    
    .destinations-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .search-form {
        grid-template-columns: 1fr;
    }
    
    .search-form .btn {
        grid-column: span 1;
    }
    
    .why-choose-content {
        padding-left: 0;
        margin-top: 40px;
    }
    
    .cta-card {
        padding: 40px 30px;
        text-align: center;
    }
    
    .cta-card h2 {
        font-size: 1.8rem;
    }
    
    .contact-info {
        padding-right: 0;
        margin-bottom: 40px;
    }
    
    .newsletter-wrapper {
        flex-direction: column;
        text-align: center;
    }
    
    .newsletter-form {
        min-width: auto;
        width: 100%;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

/* Mobile */
@media (max-width: 480px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    .hero-stats {
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .destinations-grid {
        grid-template-columns: 1fr;
    }
    
    .search-card {
        padding: 24px 20px;
    }
    
    .service-card,
    .testimonial-card {
        padding: 28px 20px;
    }
    
    .cta-card {
        padding: 32px 20px;
    }
    
    .contact-form {
        padding: 28px 20px;
    }
    
    .footer-top {
        padding: 60px 0 20px;
    }
    
    .scroll-to-top,
    .whatsapp-float {
        width: 48px;
        height: 48px;
        bottom: 20px;
    }
    
    .whatsapp-float {
        left: 20px;
    }
    
    .scroll-to-top {
        right: 20px;
    }
}

/* Utility Classes */
.mt-3 { margin-top: 1rem; }
.mb-3 { margin-bottom: 1rem; }
.text-danger { color: #e74c3c; }

/* ===== FAQ ACCORDION STYLES ===== */
.faq-accordion {
    max-width: 100%;
}

.faq-item {
    background: white;
    border-radius: var(--radius-lg);
    margin-bottom: 16px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.faq-item:hover {
    box-shadow: 0 8px 24px rgba(102, 126, 234, 0.15);
    border-color: rgba(102, 126, 234, 0.2);
    transform: translateY(-2px);
}

.faq-question {
    width: 100%;
    background: white;
    border: none;
    padding: 24px 28px;
    font-size: 17px;
    font-weight: 600;
    color: var(--text-dark);
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    position: relative;
}

.faq-question::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.faq-question:hover {
    color: var(--primary-color);
    background: linear-gradient(90deg, rgba(102, 126, 234, 0.05) 0%, rgba(102, 126, 234, 0.01) 100%);
}

.faq-question.active {
    color: var(--primary-color);
    background: linear-gradient(90deg, rgba(102, 126, 234, 0.08) 0%, rgba(102, 126, 234, 0.02) 100%);
}

.faq-question.active::before {
    transform: scaleY(1);
}

.faq-question span {
    flex: 1;
    padding-right: 20px;
}

.faq-question i {
    font-size: 14px;
    color: var(--primary-color);
    transition: transform 0.3s ease;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(102, 126, 234, 0.1);
    border-radius: 50%;
}

.faq-question.active i {
    transform: rotate(180deg);
    background: var(--primary-color);
    color: white;
}

.faq-answer {
    display: none;
    padding: 0 28px 24px 28px;
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.8;
    animation: fadeIn 0.3s ease;
}

.faq-answer p {
    margin: 0;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== CONTACT INFO CARDS ===== */
.contact-info-card {
    background: white;
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.contact-info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(102, 126, 234, 0.2);
    border-color: rgba(102, 126, 234, 0.3);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.contact-info-card:hover .contact-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
}

.contact-icon i {
    font-size: 28px;
    color: white;
}

.contact-info-card h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.contact-info-card p {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 0;
}

.contact-info-card a {
    color: var(--primary-color);
    font-weight: 500;
    transition: all 0.3s ease;
}

.contact-info-card a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

/* ===== OFFICE HOURS ===== */
.office-hours {
    background: white;
    padding: 24px;
    border-radius: var(--radius-lg);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.office-hours h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.office-hours h4 i {
    color: var(--primary-color);
    font-size: 20px;
}

.office-hours ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.office-hours li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 15px;
    color: var(--text-light);
}

.office-hours li:last-child {
    border-bottom: none;
}

.office-hours strong {
    color: var(--text-dark);
    font-weight: 600;
}

/* Loading Animation */
@keyframes spin {
    to { transform: rotate(360deg); }
}

.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: var(--white);
    animation: spin 0.6s linear infinite;
}

/* ============================================
   COMPREHENSIVE MOBILE RESPONSIVE STYLES
   ============================================ */

/* ===== TABLET (LANDSCAPE) - 1024px ===== */
@media (max-width: 1024px) {
    :root {
        --section-padding: 80px 0;
    }
    
    .container {
        max-width: 90%;
    }
    
    .hero-section {
        min-height: 600px;
    }
    
    .hero-content h1 {
        font-size: 42px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .destinations-grid,
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ===== TABLET (PORTRAIT) - 768px ===== */
@media (max-width: 768px) {
    :root {
        --section-padding: 60px 0;
    }
    
    html {
        font-size: 15px;
    }
    
    body {
        font-size: 15px;
    }
    
    /* Sections */
    section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 32px;
        margin-bottom: 15px;
    }
    
    .section-subtitle {
        font-size: 16px;
        margin-bottom: 40px;
    }
    
    /* Hero Section */
    .hero-section {
        min-height: 500px;
        padding: 80px 0 60px;
    }
    
    .hero-content h1 {
        font-size: 36px;
        line-height: 1.3;
    }
    
    .hero-content p {
        font-size: 16px;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }
    
    /* Floating Cards */
    .floating-card {
        position: static !important;
        transform: none !important;
        margin: 20px auto;
        max-width: 100%;
    }
    
    /* Stats Grid */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .stat-card {
        padding: 20px;
    }
    
    .stat-number {
        font-size: 32px;
    }
    
    .stat-label {
        font-size: 13px;
    }
    
    /* Features Grid */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .feature-card {
        padding: 25px;
    }
    
    /* Destinations & Services */
    .destinations-grid,
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .country-card,
    .service-card {
        max-width: 100%;
    }
    
    /* Process Steps */
    .process-steps {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .step-card {
        padding: 25px;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    /* Testimonials */
    .testimonial-card {
        padding: 25px;
    }
    
    .testimonial-text {
        font-size: 15px;
    }
    
    .testimonial-author h4 {
        font-size: 16px;
    }
    
    /* Blog Grid */
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    /* CTA Section */
    .cta-content h2 {
        font-size: 32px;
    }
    
    .cta-content p {
        font-size: 16px;
    }
    
    /* Footer */
    .footer-top {
        padding: 60px 0 30px;
    }
    
    .footer-top .row {
        display: flex;
        flex-direction: column;
    }
    
    .footer-top [class*="col-"] {
        width: 100% !important;
        max-width: 100% !important;
        flex: none !important;
        margin-bottom: 35px;
    }
    
    .footer-widget {
        text-align: center;
        margin-bottom: 0;
    }
    
    .footer-logo {
        justify-content: center;
        font-size: 24px;
        margin-bottom: 16px;
    }
    
    .footer-logo i {
        font-size: 28px;
    }
    
    .footer-description {
        font-size: 14px;
        line-height: 1.7;
        margin-bottom: 20px;
    }
    
    .footer-title {
        font-size: 18px;
        margin-bottom: 18px;
        position: relative;
        padding-bottom: 10px;
    }
    
    .footer-title::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 50px;
        height: 2px;
        background: linear-gradient(90deg, #667eea, #764ba2);
    }
    
    .footer-social {
        justify-content: center;
        gap: 10px;
        flex-wrap: wrap;
    }
    
    .footer-social .social-link {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .footer-links {
        text-align: center;
        padding: 0 20px;
    }
    
    .footer-links li {
        margin-bottom: 12px;
    }
    
    .footer-links a {
        justify-content: center;
        font-size: 14px;
        padding: 8px 0;
    }
    
    .footer-links a:hover {
        padding-left: 0;
        color: #667eea;
    }
    
    .footer-contact {
        text-align: left;
        padding: 0 30px;
        display: inline-block;
    }
    
    .footer-contact li {
        justify-content: flex-start;
        margin-bottom: 15px;
        text-align: left;
    }
    
    .footer-contact i {
        min-width: 25px;
        text-align: center;
    }
    
    .footer-newsletter {
        padding: 40px 0;
    }
    
    .newsletter-wrapper {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .newsletter-content {
        flex-direction: column;
        gap: 15px;
    }
    
    .newsletter-content i {
        font-size: 36px;
    }
    
    .newsletter-content h3 {
        font-size: 20px;
    }
    
    .newsletter-content p {
        font-size: 14px;
    }
    
    .newsletter-form {
        flex-direction: column;
        gap: 12px;
        max-width: 100%;
    }
    
    .newsletter-form input {
        width: 100%;
        padding: 14px 18px;
        font-size: 14px;
    }
    
    .newsletter-form button {
        width: 100%;
        padding: 14px 18px;
        font-size: 14px;
    }
    
    .footer-bottom {
        padding: 25px 0;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .footer-bottom p {
        font-size: 13px;
        margin: 0;
    }
    
    .footer-bottom-links {
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
        font-size: 13px;
    }
    
    .footer-bottom-links a {
        padding: 0 10px;
    }
    
    /* Page Header */
    .page-header {
        padding: 100px 0 60px;
    }
    
    .page-title {
        font-size: 36px;
    }
    
    .page-subtitle {
        font-size: 16px;
    }
    
    /* About Page */
    .about-intro {
        flex-direction: column;
        text-align: center;
    }
    
    .about-image {
        margin-bottom: 30px;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    /* Contact Page */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-form {
        padding: 30px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}

/* ===== MOBILE (LARGE) - 576px ===== */
@media (max-width: 576px) {
    :root {
        --section-padding: 50px 0;
    }
    
    html {
        font-size: 14px;
    }
    
    .container {
        max-width: 95%;
        padding: 0 15px;
    }
    
    /* Sections */
    section {
        padding: 50px 0;
    }
    
    .section-title {
        font-size: 28px;
        margin-bottom: 12px;
    }
    
    .section-subtitle {
        font-size: 14px;
        margin-bottom: 30px;
    }
    
    /* Buttons */
    .btn {
        padding: 12px 24px;
        font-size: 14px;
    }
    
    .btn-lg {
        padding: 14px 28px;
        font-size: 15px;
    }
    
    /* Hero Section */
    .hero-section {
        min-height: 450px;
        padding: 60px 0 50px;
    }
    
    .hero-content h1 {
        font-size: 28px;
        line-height: 1.3;
        margin-bottom: 15px;
    }
    
    .hero-content p {
        font-size: 15px;
        margin-bottom: 25px;
    }
    
    .hero-buttons {
        gap: 12px;
    }
    
    /* Stats Grid */
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .stat-card {
        padding: 18px;
    }
    
    .stat-number {
        font-size: 28px;
    }
    
    .stat-label {
        font-size: 12px;
    }
    
    /* Feature Cards */
    .feature-card {
        padding: 20px;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
    }
    
    .feature-icon i {
        font-size: 28px;
    }
    
    .feature-card h3 {
        font-size: 18px;
    }
    
    /* Country & Service Cards */
    .country-card,
    .service-card {
        padding: 20px;
    }
    
    .country-card h3,
    .service-card h3 {
        font-size: 18px;
    }
    
    .country-flag {
        font-size: 48px;
    }
    
    /* Process Steps */
    .step-card {
        padding: 20px;
    }
    
    .step-number {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
    
    .step-card h3 {
        font-size: 17px;
    }
    
    /* Testimonials */
    .testimonial-card {
        padding: 20px;
    }
    
    .testimonial-rating {
        font-size: 16px;
    }
    
    .testimonial-text {
        font-size: 14px;
    }
    
    .testimonial-avatar {
        width: 50px;
        height: 50px;
    }
    
    .testimonial-author h4 {
        font-size: 15px;
    }
    
    .testimonial-author p {
        font-size: 12px;
    }
    
    /* Blog Cards */
    .blog-card {
        margin-bottom: 20px;
    }
    
    .blog-title {
        font-size: 18px;
    }
    
    .blog-excerpt {
        font-size: 14px;
    }
    
    /* CTA Section */
    .cta-section {
        padding: 50px 0;
    }
    
    .cta-content h2 {
        font-size: 26px;
        margin-bottom: 15px;
    }
    
    .cta-content p {
        font-size: 15px;
        margin-bottom: 25px;
    }
    
    /* Footer */
    .footer-top {
        padding: 50px 0 25px;
    }
    
    .footer-widget {
        margin-bottom: 30px;
        text-align: center;
    }
    
    .footer-logo {
        font-size: 22px;
        justify-content: center;
    }
    
    .footer-logo i {
        font-size: 26px;
    }
    
    .footer-title {
        font-size: 17px;
        margin-bottom: 15px;
    }
    
    .footer-links li {
        margin-bottom: 8px;
    }
    
    .footer-links a {
        font-size: 14px;
    }
    
    .footer-contact li {
        font-size: 14px;
        margin-bottom: 10px;
    }
    
    .footer-social .social-link {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
    
    .footer-newsletter {
        padding: 35px 0;
    }
    
    .footer-newsletter h3 {
        font-size: 20px;
    }
    
    .footer-bottom {
        padding: 20px 0;
        text-align: center;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .footer-bottom p {
        font-size: 13px;
    }
    
    .footer-bottom-links {
        font-size: 13px;
        justify-content: center;
    }
    
    /* Page Header */
    .page-header {
        padding: 80px 0 50px;
    }
    
    .page-title {
        font-size: 28px;
    }
    
    .page-subtitle {
        font-size: 15px;
    }
    
    .breadcrumb {
        font-size: 13px;
    }
    
    /* Contact Info Cards */
    .contact-info-card {
        padding: 20px;
    }
    
    .contact-icon {
        width: 50px;
        height: 50px;
    }
    
    .contact-icon i {
        font-size: 24px;
    }
    
    .contact-info-card h4 {
        font-size: 17px;
    }
    
    /* Forms */
    .form-group label {
        font-size: 14px;
    }
    
    .form-control {
        padding: 12px;
        font-size: 14px;
    }
    
    textarea.form-control {
        min-height: 120px;
    }
    
    /* Search Form */
    .search-form {
        padding: 25px;
    }
    
    .search-form h3 {
        font-size: 20px;
    }
}

/* ===== MOBILE (EXTRA SMALL) - 375px ===== */
@media (max-width: 375px) {
    html {
        font-size: 13px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .hero-content h1 {
        font-size: 24px;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 13px;
    }
    
    .stat-number {
        font-size: 24px;
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
    }
    
    .feature-icon i {
        font-size: 24px;
    }
}

/* ===== MOBILE UTILITIES ===== */
@media (max-width: 768px) {
    /* Hide on mobile */
    .hide-mobile {
        display: none !important;
    }
    
    /* Show only on mobile */
    .show-mobile {
        display: block !important;
    }
    
    /* Center text on mobile */
    .text-center-mobile {
        text-align: center !important;
    }
    
    /* Full width on mobile */
    .full-width-mobile {
        width: 100% !important;
    }
    
    /* Stack on mobile */
    .stack-mobile {
        flex-direction: column !important;
    }
    
    /* Remove margin on mobile */
    .no-margin-mobile {
        margin: 0 !important;
    }
    
    /* Remove padding on mobile */
    .no-padding-mobile {
        padding: 0 !important;
    }
    
    /* Reduce spacing */
    .gap-small-mobile {
        gap: 10px !important;
    }
}

/* ===== TOUCH DEVICE OPTIMIZATIONS ===== */
@media (hover: none) and (pointer: coarse) {
    /* Larger touch targets */
    .btn,
    .nav-link,
    a {
        min-height: 44px;
        min-width: 44px;
    }
    
    /* Remove hover effects on touch devices */
    .card:hover,
    .btn:hover,
    .nav-link:hover {
        transform: none;
    }
    
    /* Improve form controls for touch */
    .form-control,
    select,
    textarea {
        min-height: 48px;
        font-size: 16px; /* Prevents zoom on iOS */
    }
}

/* ===== LANDSCAPE ORIENTATION ===== */
@media (max-width: 768px) and (orientation: landscape) {
    .hero-section {
        min-height: 400px;
        padding: 50px 0;
    }
    
    .hero-content h1 {
        font-size: 32px;
    }
    
    .page-header {
        padding: 60px 0 40px;
    }
}

/* ===== MOBILE / TABLET ADJUSTMENTS ===== */
@media (max-width: 992px) {
    :root { --section-padding: 60px 0; }

    /* Hero */
    .hero-swiper { height: 70vh; min-height: 420px; }
    .hero-content { max-width: 520px; padding: 24px 0; }
    .hero-title { font-size: 2.6rem; }
    .hero-description { font-size: 1rem; margin-bottom: 24px; }

    /* Search card => stack inputs */
    .search-card { padding: 24px; }
    .search-form { grid-template-columns: 1fr; gap: 12px; }
    .search-form .form-group { margin-bottom: 12px; }
    .search-form .btn { grid-column: 1 / -1; width: 100%; }

    /* Destinations & Services grid */
    .destinations-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
    .services-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }

    /* Program cards / other grids */
    .programs-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }

    /* Footer: stack columns */
    .footer-top .row { display: block; }
    .footer-top .footer-widget { margin-bottom: 24px; }
}

@media (max-width: 768px) {
    /* Further reduce hero and typography */
    .hero-swiper { height: 60vh; min-height: 360px; }
    .hero-title { font-size: 2.2rem; }
    .hero-badge { padding: 8px 14px; font-size: 13px; }

    /* Quick Search visuals */
    .search-card { padding: 18px; border-radius: 12px; }
    .search-card h3 { font-size: 1.2rem; margin-bottom: 18px; }
    .search-form { gap: 10px; }
    .search-form .form-group label { font-size: 13px; }
    .search-form .form-control { padding: 12px 14px; font-size: 14px; }

    /* Stats & floating cards */
    .hero-stats .stat-item { min-width: 120px; padding: 12px; }

    /* Destinations & services should be single column on narrow phones */
    .destinations-grid { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: 1fr; }
    .programs-grid { grid-template-columns: 1fr; }

    /* Footer compact */
    .footer-newsletter .newsletter-wrapper { flex-direction: column; gap: 12px; }
}

@media (max-width: 480px) {
    html { font-size: 15px; }
    .hero-title { font-size: 1.8rem; }
    .hero-description { font-size: 0.95rem; }
    .hero-buttons { flex-direction: column; gap: 10px; }

    .search-card { padding: 14px; }
    .search-card h3 { font-size: 1.05rem; }

    /* Make selects and buttons larger touch targets */
    .form-control { padding: 12px 14px; font-size: 15px; }
    .btn { padding: 12px 18px; font-size: 16px; }

    /* Small screens: minimize paddings site-wide */
    .container { padding-left: 12px; padding-right: 12px; }
    .section-header { padding-left: 8px; padding-right: 8px; }
}

/* End of Styles */

/* ===== Utility helpers for option hints ===== */
.small { font-size: 13px; }
.text-muted { color: var(--text-light); }
.mt-2 { margin-top: 8px; }

/* Option availability (best-effort; some browsers restrict option styling) */
select.form-control option.available { font-weight: 700; }
select.form-control option.unavailable { opacity: 0.85; }

/* Ensure quick-search controls are comfortable targets on touch devices (site-wide) */
@media (max-width: 768px) {
    .search-form .form-control,
    .search-form .btn {
        min-height: 50px !important;
        font-size: 16px !important;
        touch-action: manipulation;
    }

    .search-form .btn {
        padding: 14px 18px !important;
        width: 100% !important;
    }
}

@media (max-width: 480px) {
    .search-form .form-control,
    .search-form .btn {
        min-height: 52px !important;
        font-size: 16px !important;
        padding: 14px 16px !important;
    }
}
