/**
 * Travelgate - Main Stylesheet
 * Modern, clean design with RTL support
 */

/* ==========================================
   CSS Custom Properties (Variables)
   ========================================== */
:root {
    /* Primary Colors - inspired by logo */
    --primary: #0b63ce;
    --primary-dark: #004b8d;
    --primary-light: #3399ff;
    
    /* Accent Colors - yellow from logo */
    --accent: #f5b41b;
    --accent-dark: #f29c07;
    --accent-light: #ffc94d;
    
    /* Background Colors */
    --bg-light: #f5f7fb;
    
    /* Neutral Colors */
    --white: #ffffff;
    --off-white: #f5f7fb;
    --light-gray: #e2e8f0;
    --gray: #94a3b8;
    --dark-gray: #475569;
    --text: #1f2933;
    --text-main: #1f2933;
    --text-light: #64748b;
    
    /* Semantic Colors */
    --success: #10b981;
    --error: #ef4444;
    
    /* Spacing */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    --spacing-3xl: 4rem;
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-heading: 'Playfair Display', Georgia, serif;
    
    /* Borders */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 20px;
    --radius-full: 9999px;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    
    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-normal: 300ms ease;
    --transition-slow: 500ms ease;
    
    /* Layout */
    --container-max: 1200px;
    --header-height: 80px;
}

/* ==========================================
   CSS Reset & Base Styles
   ========================================== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

/* Scroll Progress Indicator */
.scroll-progress {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    height: 3px;
    background: var(--light-gray);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s;
}

.scroll-progress.visible {
    opacity: 1;
}

.scroll-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    width: 0%;
    transition: width 0.1s ease-out;
    box-shadow: 0 0 10px var(--primary);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

ul, ol {
    list-style: none;
}

button, input, textarea {
    font-family: inherit;
    font-size: inherit;
}

button {
    cursor: pointer;
    border: none;
    background: none;
}

/* ==========================================
   Utility Classes
   ========================================== */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

.section {
    padding: var(--spacing-3xl) 0;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.section-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text);
    text-align: center;
    margin-bottom: var(--spacing-2xl);
    position: relative;
    letter-spacing: -0.02em;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    margin: var(--spacing-md) auto 0;
    border-radius: var(--radius-full);
    box-shadow: 0 2px 10px rgba(11, 99, 206, 0.3);
}

.section-title::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(11, 99, 206, 0.05) 0%, transparent 70%);
    z-index: -1;
    border-radius: 50%;
}

/* Animation Classes */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity var(--transition-slow), transform var(--transition-slow);
}

.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Fade in animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

/* ==========================================
   Header & Navigation
   ========================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    background: var(--white);
    z-index: 1000;
    transition: all var(--transition-normal);
    animation: fadeInDown 0.8s ease-out;
}

.header.scrolled {
    box-shadow: var(--shadow-lg);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* Nav Inner Container */
.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    height: 100%;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

/* Nav Brand - Logo + Company Name */
.nav-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
}

.nav-logo {
    height: 40px;
    width: auto;
    display: block;
    transition: transform 0.3s ease;
    animation: scaleIn 0.6s ease-out;
}

.nav-brand:hover .nav-logo {
    transform: rotate(360deg) scale(1.1);
}

.nav-brand-text {
    font-size: 1.4rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeIn 0.8s ease-out 0.2s backwards;
    transition: all 0.3s ease;
}

.nav-brand:hover .nav-brand-text {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Legacy brand styles (kept for compatibility) */
.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.brand-logo {
    height: 40px;
    width: auto;
    display: block;
}

/* Legacy logo styles (kept for compatibility) */
.logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.logo-img {
    width: 45px;
    height: 45px;
    object-fit: contain;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: -0.5px;
}

.logo-text span {
    color: var(--accent);
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    align-items: center;
    gap: var(--spacing-xl);
}

.nav-link {
    font-weight: 500;
    color: var(--text);
    padding: var(--spacing-sm) 0;
    position: relative;
    transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1), left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
    left: 0;
}

/* Language Switcher */
.lang-switcher {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    margin-left: var(--spacing-lg);
    padding-left: var(--spacing-lg);
    border-left: 1px solid var(--light-gray);
}

.lang-btn {
    padding: var(--spacing-xs) var(--spacing-sm);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-light);
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
}

.lang-btn:hover {
    color: var(--primary);
    background: var(--off-white);
}

.lang-btn.active {
    color: var(--white);
    background: var(--primary);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--text);
    border-radius: var(--radius-full);
    transition: all var(--transition-normal);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ==========================================
   Hero Section with Video Background
   ========================================== */
.hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(11, 99, 206, 0.7),
        rgba(0, 75, 141, 0.65),
        rgba(245, 180, 27, 0.1)
    );
    animation: fadeIn 1.5s ease-out;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 720px;
    padding: 3rem 1.5rem;
}

.hero-content h1 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1rem;
    text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out 0.3s backwards;
    letter-spacing: -0.02em;
}

.hero-content p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    animation: fadeInUp 1s ease-out 0.6s backwards;
    line-height: 1.8;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

.hero-content .btn {
    animation: fadeInUp 1s ease-out 0.9s backwards;
}

/* Legacy hero classes for compatibility */
.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.3rem, 4vw, 3.2rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
    font-size: 1rem;
    opacity: 0.95;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-md) var(--spacing-xl);
    font-weight: 600;
    font-size: 1rem;
    border-radius: var(--radius-full);
    transition: all var(--transition-normal);
    text-decoration: none;
}

.btn-accent {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: #fff;
    border-radius: 999px;
    padding: 0.9rem 2.4rem;
    border: none;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 12px 30px rgba(245, 180, 27, 0.3);
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-accent::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    transition: left 0.6s;
}

.btn-accent:hover::before {
    left: 100%;
}

.btn-accent:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 40px rgba(245, 180, 27, 0.4);
}

.btn-accent:active {
    transform: translateY(-1px) scale(0.98);
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: var(--white);
    box-shadow: 0 4px 15px rgba(245, 180, 27, 0.4);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    transition: left 0.6s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(245, 180, 27, 0.5);
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-indicator span {
    display: block;
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 25px;
    position: relative;
}

.scroll-indicator span::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: var(--white);
    border-radius: 50%;
    animation: scroll-dot 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

@keyframes scroll-dot {
    0% { opacity: 1; top: 8px; }
    100% { opacity: 0; top: 25px; }
}

/* ==========================================
   About Section
   ========================================== */
.about {
    background: var(--off-white);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(11, 99, 206, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.about::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(245, 180, 27, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite reverse;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.about-description {
    font-family: 'Inter', sans-serif;
    font-size: 1.125rem;
    font-weight: 400;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: var(--spacing-2xl);
}

/* Stats */
.about-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: var(--spacing-lg);
}

.stat-item {
    text-align: center;
    padding: var(--spacing-xl);
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: var(--spacing-sm);
    transition: transform 0.3s;
}

.stat-item:hover .stat-number {
    transform: scale(1.1);
}

.stat-label {
    display: block;
    font-size: 0.875rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* ==========================================
   Services Section
   ========================================== */
.services {
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-2xl);
    max-width: 1200px;
    margin: 0 auto;
}

.service-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: transform 0.3s;
}

.service-card-link:hover {
    transform: scale(1.02);
}

#services-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--spacing-xl);
}

.service-card {
    background: var(--white);
    border: 1px solid var(--light-gray);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 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), var(--accent));
    transform: scaleX(0);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(11, 99, 206, 0.05), transparent);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    border-color: transparent;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover::after {
    width: 500px;
    height: 500px;
}

.service-icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-md);
    display: inline-block;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotateY(360deg);
}

.service-name {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: var(--spacing-md);
    letter-spacing: -0.02em;
}

.service-description {
    font-size: 0.9375rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: var(--spacing-md);
}

.service-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9375rem;
    transition: gap 0.3s;
}

.service-card:hover .service-cta {
    gap: 1rem;
}

/* ==========================================
   Why Us Section
   ========================================== */
.why-us {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
}

.why-us .section-title {
    color: var(--white);
}

.why-us .section-title::after {
    background: linear-gradient(90deg, var(--white), var(--accent));
}

#why-us-list {
    max-width: 800px;
    margin: 0 auto;
}

.why-us-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.why-us-item {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-md);
    padding: var(--spacing-lg);
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.why-us-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s;
}

.why-us-item:hover::before {
    left: 100%;
}

.why-us-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.check-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: var(--white);
    border-radius: 50%;
    font-weight: bold;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(245, 180, 27, 0.3);
    transition: transform 0.3s;
}

.why-us-item:hover .check-icon {
    transform: scale(1.2) rotate(360deg);
}

.point-text {
    font-size: 1.0625rem;
    line-height: 1.6;
}

/* ==========================================
   Contact Section
   ========================================== */
.contact {
    background: var(--off-white);
}

.contact-tabs-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
}

.contact-tabs {
    border-bottom: 2px solid var(--light-gray);
    background: linear-gradient(135deg, rgba(11, 99, 206, 0.05), rgba(245, 180, 27, 0.05));
    margin-bottom: 0;
    padding: var(--spacing-lg) var(--spacing-lg) 0;
}

.contact-tabs .nav-link {
    border: none;
    border-radius: var(--radius-md) var(--radius-md) 0 0;
    color: var(--text-light);
    font-weight: 600;
    padding: var(--spacing-md) var(--spacing-xl);
    transition: all 0.3s;
    position: relative;
    background: transparent;
}

.contact-tabs .nav-link:hover {
    color: var(--primary);
    background: rgba(11, 99, 206, 0.05);
}

.contact-tabs .nav-link.active {
    color: var(--primary);
    background: var(--white);
    border-bottom: 3px solid var(--primary);
}

.tab-content {
    padding: var(--spacing-2xl);
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-xl);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-3xl);
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.contact-details a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s;
}

.contact-details a:hover {
    color: var(--accent);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-md);
    padding: var(--spacing-lg);
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.contact-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(11, 99, 206, 0.05), transparent);
    transition: left 0.6s;
}

.contact-item:hover::before {
    left: 100%;
}

.contact-item:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-lg);
}

.contact-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    border-radius: var(--radius-lg);
    font-size: 1.5rem;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(11, 99, 206, 0.3);
    transition: transform 0.3s;
}

.contact-item:hover .contact-icon {
    transform: scale(1.1) rotate(5deg);
}

.contact-details h4 {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-bottom: var(--spacing-xs);
}

.contact-details p {
    font-size: 1rem;
    color: var(--text);
    font-weight: 500;
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--white);
    padding: var(--spacing-2xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    position: relative;
    overflow: hidden;
}

.contact-form-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
}

.form-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: var(--spacing-lg);
    color: var(--text);
}

.form-group {
    margin-bottom: var(--spacing-md);
}

.form-group label {
    display: block;
    margin-bottom: var(--spacing-sm);
    font-weight: 600;
    color: var(--text);
    font-size: 0.9375rem;
    transition: color 0.3s ease;
}

.form-group:focus-within label {
    color: var(--primary);
}

.form-group input,
.form-group textarea,
.form-group .form-select,
.form-select {
    width: 100%;
    padding: var(--spacing-md);
    border: 2px solid var(--light-gray);
    border-radius: var(--radius-md);
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group .form-select:focus,
.form-select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(11, 99, 206, 0.1);
    transform: translateY(-2px);
}

.form-group input:hover,
.form-group textarea:hover,
.form-group .form-select:hover,
.form-select:hover {
    border-color: var(--primary-light);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.btn-submit {
    width: 100%;
    padding: var(--spacing-md) var(--spacing-xl);
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    font-weight: 600;
    border-radius: var(--radius-md);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(11, 99, 206, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-submit::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-submit:hover::before {
    width: 300px;
    height: 300px;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(11, 99, 206, 0.4);
}

.btn-submit:active {
    transform: translateY(-1px);
}

/* Form Messages */
.form-message {
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    margin-top: var(--spacing-md);
    font-weight: 500;
    animation: slideIn 0.3s ease;
}

.form-message-success {
    background: rgba(16, 185, 129, 0.1);
    color: var(--success);
    border: 1px solid var(--success);
}

.form-message-error {
    background: rgba(239, 68, 68, 0.1);
    color: var(--error);
    border: 1px solid var(--error);
}

.form-message.fade-out {
    animation: fadeOut 0.3s ease forwards;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

/* ==========================================
   Transfer Packages Styling
   ========================================== */

/* Transfer Filters */
.transfer-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.75rem 2rem;
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    color: #4b5563;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.filter-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(3, 105, 161, 0.15);
}

.filter-btn.active {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    color: white;
    box-shadow: 0 4px 16px rgba(3, 105, 161, 0.3);
}

/* Transfer Card */
.transfer-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    cursor: pointer;
    border: 2px solid transparent;
}

.transfer-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
    border-color: var(--primary);
}

.transfer-card-inner {
    padding: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

/* Badge at Top */
.transfer-badge-top {
    margin-bottom: 1.5rem;
}

.trip-type-badge {
    font-family: 'Inter', sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, rgba(3, 105, 161, 0.1), rgba(3, 105, 161, 0.05));
    color: var(--primary);
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.8125rem;
    border: 1px solid rgba(3, 105, 161, 0.2);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.trip-type-badge i {
    font-size: 1rem;
}

/* Icon Circle */
.transfer-icon-circle {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 24px rgba(3, 105, 161, 0.25);
    transition: all 0.4s;
}

.transfer-card:hover .transfer-icon-circle {
    transform: scale(1.1);
    box-shadow: 0 12px 32px rgba(3, 105, 161, 0.35);
}

.transfer-icon-circle i {
    font-size: 2rem;
    color: white;
}

/* Content */
.transfer-content {
    text-align: center;
    flex: 1;
}

.transfer-route {
    font-family: 'Inter', sans-serif;
    font-size: 1.125rem;
    font-weight: 800;
    color: #1F2937;
    margin-bottom: 0.75rem;
    line-height: 1.5;
    letter-spacing: -0.5px;
    text-transform: uppercase;
}

.transfer-service-type {
    font-family: 'Inter', sans-serif;
    font-size: 0.8125rem;
    color: #6b7280;
    font-weight: 500;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Price Section */
.transfer-price-section {
    margin: 1.5rem 0;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f8fafc, #f0f9ff);
    border-radius: 16px;
    border: 2px solid rgba(3, 105, 161, 0.1);
}

.price-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.6875rem;
    color: #6b7280;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.transfer-price-section .price-amount {
    font-family: 'Inter', sans-serif;
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
    letter-spacing: -1px;
}

/* Features Tags */
.transfer-features-tags {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.feature-tag {
    font-family: 'Inter', sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.5rem 1rem;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 50px;
    font-size: 0.75rem;
    color: #4b5563;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.feature-tag i {
    color: var(--accent);
    font-size: 0.9375rem;
}

/* Hover Overlay */
.transfer-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(to top, rgba(3, 105, 161, 0.95), transparent);
    transform: translateY(100%);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    pointer-events: none;
}

.transfer-card:hover .transfer-card-overlay {
    transform: translateY(0);
    pointer-events: all;
}

.btn-book-transfer {
    font-family: 'Inter', sans-serif;
    padding: 1rem 2.5rem;
    background: white;
    color: var(--primary-dark);
    border: none;
    border-radius: 16px;
    font-weight: 800;
    font-size: 0.9375rem;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-book-transfer:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
    background: var(--accent);
    color: white;
}

.btn-book-transfer i {
    font-size: 1.125rem;
}

/* Transfer Booking Modal */
.transfer-booking-form .reservation-summary {
    border-left: 4px solid var(--primary);
}

.transfer-price-display {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* ==========================================
   Flight Card - Innovative Design
   ========================================== */
.flight-card {
    background: white;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    cursor: pointer;
    border: 2px solid transparent;
    position: relative;
}

.flight-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
    transform: scaleX(0);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: left;
}

.flight-card:hover {
    transform: translateY(-16px) scale(1.02);
    box-shadow: 0 24px 64px rgba(3, 105, 161, 0.2);
    border-color: var(--primary);
}

.flight-card:hover::before {
    transform: scaleX(1);
}

.flight-card-inner {
    padding: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    background: linear-gradient(to bottom, #ffffff 0%, #fafbfc 100%);
}

/* Top Badges */
.flight-badges-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    gap: 0.75rem;
}

.flight-trip-badge {
    font-family: 'Inter', sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(59, 130, 246, 0.05));
    color: #3b82f6;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.75rem;
    border: 1px solid rgba(59, 130, 246, 0.2);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    flex: 1;
}

.flight-trip-badge i {
    font-size: 0.875rem;
}

.flight-class-badge {
    font-family: 'Inter', sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.flight-class-badge.bg-warning {
    background: linear-gradient(135deg, #fbbf24, #f59e0b) !important;
    color: #1f2937 !important;
    border: 1px solid rgba(251, 191, 36, 0.3);
}

.flight-class-badge.bg-info {
    background: linear-gradient(135deg, #3b82f6, #2563eb) !important;
    color: white !important;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.flight-class-badge.bg-success {
    background: linear-gradient(135deg, #10b981, #059669) !important;
    color: white !important;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.flight-class-badge i {
    font-size: 0.875rem;
}

/* Airline Section */
.flight-airline-section {
    text-align: center;
    margin: 1.5rem 0;
}

.flight-logo-wrapper {
    display: inline-block;
    padding: 1rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: all 0.4s;
}

.flight-card:hover .flight-logo-wrapper {
    transform: scale(1.1);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.flight-airline-logo {
    max-height: 50px;
    max-width: 150px;
    object-fit: contain;
}

.flight-icon-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
}

.flight-icon-circle {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 50%, var(--accent) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 32px rgba(3, 105, 161, 0.3);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.flight-icon-circle::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: rotate(45deg);
    transition: all 0.6s;
}

.flight-card:hover .flight-icon-circle {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 16px 40px rgba(3, 105, 161, 0.4);
}

.flight-card:hover .flight-icon-circle::before {
    animation: shine 1.5s infinite;
}

@keyframes shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.flight-icon-circle i {
    font-size: 2.5rem;
    color: white;
    position: relative;
    z-index: 1;
}

/* Route Section */
.flight-route-section {
    text-align: center;
    margin-bottom: 1.5rem;
}

.flight-route {
    font-family: 'Inter', sans-serif;
    font-size: 1.375rem;
    font-weight: 900;
    color: #1F2937;
    margin-bottom: 0.5rem;
    line-height: 1.3;
    letter-spacing: -0.5px;
    text-transform: uppercase;
    background: linear-gradient(135deg, #1F2937 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.flight-airline-name {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    color: #6b7280;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* Price Section */
.flight-price-section {
    margin: 1.5rem 0;
    padding: 1.75rem;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border-radius: 20px;
    border: 2px solid rgba(3, 105, 161, 0.15);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.flight-price-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
}

.flight-price-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.6875rem;
    color: #6b7280;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.75rem;
}

.flight-price-amount {
    font-family: 'Inter', sans-serif;
    font-size: 2.25rem;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
    letter-spacing: -1.5px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Features Section */
.flight-features-section {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
    margin-top: 1rem;
}

.flight-feature-tag {
    font-family: 'Inter', sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1rem;
    background: white;
    border: 1.5px solid #e5e7eb;
    border-radius: 12px;
    font-size: 0.8125rem;
    color: #4b5563;
    font-weight: 600;
    letter-spacing: 0.2px;
    transition: all 0.3s;
}

.flight-card:hover .flight-feature-tag {
    border-color: var(--primary);
    background: linear-gradient(135deg, #f0f9ff, #ffffff);
    transform: translateX(4px);
}

.flight-feature-tag i {
    color: var(--accent);
    font-size: 0.875rem;
}

/* Hover Overlay */
.flight-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(to top, rgba(3, 105, 161, 0.98), rgba(3, 105, 161, 0.85), transparent);
    transform: translateY(100%);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    pointer-events: none;
    border-radius: 0 0 28px 28px;
}

.flight-card:hover .flight-card-overlay {
    transform: translateY(0);
    pointer-events: all;
}

.btn-flight-select {
    font-family: 'Inter', sans-serif;
    padding: 1.125rem 2.5rem;
    background: white;
    color: var(--primary-dark);
    border: none;
    border-radius: 16px;
    font-weight: 800;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    width: 100%;
    justify-content: center;
}

.btn-flight-select:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
    background: var(--accent);
    color: white;
}

.btn-flight-select i {
    font-size: 1.25rem;
}

/* Decorative Element */
.flight-card-decoration {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(3, 105, 161, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    transition: all 0.5s;
}

.flight-card:hover .flight-card-decoration {
    transform: scale(1.5);
    opacity: 0.3;
}

/* Responsive Flight Cards */
@media (max-width: 768px) {
    .flight-card-inner {
        padding: 1.5rem;
    }
    
    .flight-icon-circle {
        width: 70px;
        height: 70px;
    }
    
    .flight-icon-circle i {
        font-size: 2rem;
    }
    
    .flight-route {
        font-size: 1.125rem;
    }
    
    .flight-price-amount {
        font-size: 1.875rem;
    }
    
    .flight-price-section {
        padding: 1.25rem;
    }
    
    .btn-flight-select {
        padding: 1rem 2rem;
        font-size: 0.9375rem;
    }
    
    .flight-feature-tag {
        font-size: 0.75rem;
        padding: 0.5rem 0.875rem;
    }
    
    .flight-badges-top {
        flex-direction: column;
        align-items: stretch;
    }
    
    .flight-trip-badge,
    .flight-class-badge {
        text-align: center;
    }
}

/* Responsive Transfers */
@media (max-width: 768px) {
    .transfer-filters,
    .flight-class-filters {
        gap: 0.5rem;
    }
    
    .filter-btn {
        padding: 0.625rem 1.5rem;
        font-size: 0.9375rem;
    }
    
    .section-icon-wrapper {
        width: 48px;
        height: 48px;
    }
    
    .section-icon-wrapper i {
        font-size: 1.5rem;
    }
    
    .transfer-card-inner {
        padding: 1.5rem;
    }
    
    .transfer-icon-circle {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }
    
    .transfer-icon-circle i {
        font-size: 1.5rem;
    }
    
    .transfer-route {
        font-size: 1.125rem;
    }
    
    .price-amount {
        font-size: 1.75rem;
    }
    
    .transfer-price-section {
        padding: 1rem;
    }
    
    .btn-book-transfer {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
    
    .feature-tag {
        font-size: 0.75rem;
        padding: 0.375rem 0.75rem;
    }
}

/* ==========================================
   Footer
   ========================================== */
.footer {
    background: var(--text);
    color: var(--white);
    padding: var(--spacing-2xl) 0;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--spacing-lg);
}

.footer-copy {
    font-size: 0.9375rem;
    opacity: 0.8;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.footer-social-label {
    font-size: 0.875rem;
    opacity: 0.8;
}

.social-links {
    display: flex;
    gap: var(--spacing-sm);
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    font-size: 1.25rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: var(--primary);
    transform: translate(-50%, -50%);
    transition: width 0.4s, height 0.4s;
    z-index: -1;
}

.social-link:hover::before {
    width: 100%;
    height: 100%;
}

.social-link:hover {
    background: var(--primary);
    transform: translateY(-5px) rotate(360deg);
    box-shadow: 0 5px 15px rgba(11, 99, 206, 0.4);
}

/* ==========================================
   Section Variants
   ========================================== */
.section-light {
    background: var(--off-white);
}

.section-white {
    background: var(--white);
}

/* Section Subtitle */
.section-subtitle {
    text-align: center;
    font-size: 1.125rem;
    color: var(--text-light);
    margin-top: calc(var(--spacing-md) * -1);
    margin-bottom: var(--spacing-2xl);
    animation: fadeIn 1s ease-out 0.3s backwards;
    line-height: 1.8;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-header-with-action {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: var(--spacing-2xl);
    gap: 2rem;
}

.section-header-with-action .section-title {
    margin-bottom: 0;
}

.section-header-with-action .section-title::after {
    margin-left: 0;
}

.section-header-with-action .section-subtitle {
    margin-top: 0.5rem;
    margin-bottom: 0;
    max-width: 600px;
}

.btn-view-more {
    display: inline-flex;
    align-items: center;
    padding: 0.75rem 1.5rem;
    background: #1F2937;
    color: white;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.9375rem;
    transition: all 0.3s;
    text-decoration: none;
    white-space: nowrap;
}

.btn-view-more:hover {
    background: #111827;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    color: white;
}

/* Section Icon Wrapper */
.section-icon-wrapper {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 16px rgba(3, 105, 161, 0.2);
}

.section-icon-wrapper i {
    font-size: 2rem;
    color: white;
}

/* Flight Class Filters */
.flight-class-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.flight-class-filters .filter-btn {
    padding: 0.75rem 2rem;
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    color: #4b5563;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
}

.flight-class-filters .filter-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(3, 105, 161, 0.15);
}

.flight-class-filters .filter-btn.active {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    color: white;
    box-shadow: 0 4px 16px rgba(3, 105, 161, 0.3);
}

/* ==========================================
   Cards Grid & Card Components
   ========================================== */
.cards-grid {
    display: grid;
    gap: 1.75rem;
}

@media (min-width: 768px) {
    .cards-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.card {
    background: #ffffff;
    border-radius: 24px;
    overflow: visible;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: 1rem;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.14);
}

.card:active {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.card-image {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    margin-bottom: 1rem;
}

.card-image img {
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.card:hover .card-image img {
    transform: scale(1.08);
}

.card-image img {
    display: block;
    width: 100%;
    height: 180px;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.card:hover .card-image img {
    transform: scale(1.15);
}

.card-body {
    padding: 1.75rem;
    position: relative;
    z-index: 1;
}

.card-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text);
    letter-spacing: -0.02em;
    line-height: 1.3;
}

.card-meta {
    font-size: 0.9rem;
    color: #6b7280;
    margin-bottom: 0.5rem;
}

.card-text {
    font-size: 0.95rem;
    color: #374151;
    line-height: 1.6;
}

.card-price {
    margin-top: 0.9rem;
    font-weight: 600;
    color: #f97316;
}

.stars {
    color: #f59e0b;
}

/* Legacy info-card styles (kept for compatibility) */
.info-card {
    background: var(--white);
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    transition: all var(--transition-normal);
    border: 1px solid var(--light-gray);
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

.info-card-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--text);
}

.info-card-meta {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.info-card-text {
    font-size: 0.95rem;
    color: var(--dark-gray);
    line-height: 1.6;
}

.info-card-price {
    margin-top: 0.75rem;
    font-weight: 600;
    color: var(--primary);
}

/* ==========================================
   RTL Support
   ========================================== */
[dir="rtl"] {
    /* Text alignment */
    text-align: right;
}

[dir="rtl"] .lang-switcher {
    margin-left: 0;
    margin-right: var(--spacing-lg);
    padding-left: 0;
    padding-right: var(--spacing-lg);
    border-left: none;
    border-right: 1px solid var(--light-gray);
}

[dir="rtl"] .nav-link::after {
    left: auto;
    right: 0;
}

[dir="rtl"] .why-us-item:hover {
    transform: translateX(-5px);
}

[dir="rtl"] .contact-icon {
    margin-left: var(--spacing-md);
    margin-right: 0;
}

[dir="rtl"] .check-icon {
    margin-left: var(--spacing-md);
    margin-right: 0;
}

[dir="rtl"] .hero-content,
[dir="rtl"] .about-content,
[dir="rtl"] .section-title {
    text-align: center;
}

[dir="rtl"] .footer-inner {
    flex-direction: row-reverse;
}

/* ==========================================
   Responsive Design
   ========================================== */

/* Tablet */
@media (max-width: 992px) {
    :root {
        --header-height: 70px;
    }
    
    .hero-title {
        font-size: 2.75rem;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .about-stats {
        gap: var(--spacing-xl);
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
}

/* Mobile */
@media (max-width: 768px) {
    :root {
        --header-height: 65px;
    }
    
    .section-header-with-action {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .section-header-with-action .d-flex {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .section-icon-wrapper {
        width: 48px;
        height: 48px;
    }
    
    .section-icon-wrapper i {
        font-size: 1.5rem;
    }
    
    .btn-view-more {
        align-self: flex-start;
    }
    
    /* Mobile Navigation */
    .hamburger {
        display: flex;
        z-index: 1001;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: var(--spacing-xl);
        opacity: 0;
        visibility: hidden;
        transition: all var(--transition-normal);
    }
    
    .nav-menu.active {
        opacity: 1;
        visibility: visible;
    }
    
    .nav-link {
        font-size: 1.25rem;
    }
    
    .lang-switcher {
        margin: var(--spacing-lg) 0 0;
        padding: var(--spacing-lg) 0 0;
        border-left: none;
        border-top: 1px solid var(--light-gray);
    }
    
    [dir="rtl"] .lang-switcher {
        border-right: none;
        border-top: 1px solid var(--light-gray);
        margin-right: 0;
        padding-right: 0;
    }
    
    /* Hero Mobile */
    .hero {
        min-height: auto;
        padding: calc(var(--header-height) + var(--spacing-2xl)) var(--spacing-lg) var(--spacing-3xl);
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .scroll-indicator {
        display: none;
    }
    
    /* Section Mobile */
    .section {
        padding: var(--spacing-2xl) 0;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    /* Services Mobile */
    #services-list {
        grid-template-columns: 1fr;
    }
    
    /* Stats Mobile */
    .about-stats {
        flex-direction: column;
        gap: var(--spacing-lg);
    }
    
    .stat-item {
        padding: var(--spacing-md);
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    /* Footer Mobile */
    .footer-inner {
        flex-direction: column;
        text-align: center;
    }
    
    [dir="rtl"] .footer-inner {
        flex-direction: column;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .container {
        padding: 0 var(--spacing-md);
    }
    
    .hero-title, .hero-content h1 {
        font-size: 1.875rem;
    }
    
    .btn {
        padding: var(--spacing-sm) var(--spacing-lg);
    }
    
    .contact-form-wrapper {
        padding: var(--spacing-lg);
    }
    
    .service-card {
        padding: var(--spacing-lg);
    }
    
    .hotel-card,
    .group-card {
        padding: 0.75rem;
    }
    
    .hotel-card-content,
    .group-card-content {
        padding: 0 0.25rem 0.25rem !important;
    }
    
    .hotel-name,
    .group-name,
    .card-title {
        font-size: 1.125rem;
    }
    
    .hotel-price-range,
    .group-price-range {
        font-size: 1.2rem;
    }
    
    .hotel-card-image {
        height: 200px;
    }
    
    .group-card {
        height: 300px;
    }
    
    .group-name {
        font-size: 1.125rem;
    }
    
    .group-price-badge {
        font-size: 0.9375rem;
        padding: 0.45rem 0.75rem;
    }
}

/* ==========================================
   Print Styles
   ========================================== */
@media print {
    .header,
    .lang-switcher,
    .hamburger,
    .scroll-indicator,
    .btn,
    .contact-form-wrapper {
        display: none !important;
    }
    
    .hero {
        min-height: auto;
        background: var(--primary) !important;
        padding: var(--spacing-xl);
    }
    
    .section {
        padding: var(--spacing-lg) 0;
        page-break-inside: avoid;
    }
}


/* ==========================================
   Hotel Reservation System Styles
   ========================================== */

.hotel-card {
    border: none;
    border-radius: 24px;
    overflow: visible;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--white);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    cursor: pointer;
    position: relative;
    padding: 1rem;
}

.hotel-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.14);
}

.hotel-card:active {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.hotel-card-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
    position: relative;
    border-radius: 18px;
    margin-bottom: 1rem;
}

.hotel-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.hotel-card:hover .hotel-card-image img {
    transform: scale(1.08);
}

.hotel-card-content {
    position: relative;
    z-index: 1;
    padding: 0 0.5rem 0.5rem !important;
}

.hotel-location {
    font-size: 0.8125rem;
    margin-bottom: 0.5rem;
    color: #6B7280;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-weight: 500;
}

.hotel-location i {
    color: #6B7280;
    font-size: 0.875rem;
}

.hotel-name {
    font-family: 'Inter', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #1F2937;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.hotel-amenities {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.75rem;
    font-size: 0.875rem;
    color: #6B7280;
    font-weight: 500;
}

.hotel-amenities i {
    margin-right: 0.25rem;
    font-size: 0.9rem;
}

.hotel-amenities span {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.hotel-stars {
    display: none;
}

.hotel-price-range {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    color: #1F2937;
    font-size: 1.375rem;
    margin-bottom: 0;
    padding: 0;
    background: none;
    border-radius: 0;
    text-align: left;
    border-left: none;
    transition: all 0.3s;
}

.room-type-selector {
    margin-bottom: 1rem;
}

.room-type-selector .form-select {
    border: 2px solid var(--light-gray);
    border-radius: 10px;
    padding: 0.65rem 1rem;
    font-size: 0.95rem;
    transition: all 0.3s;
    background-color: var(--white);
}

.room-type-selector .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(11, 99, 206, 0.1);
    outline: none;
}

.hotel-card .btn-primary {
    display: none;
}

/* ==========================================
   Group Tour Cards
   ========================================== */
#groups-list .col-md-6,
#groups-list .col-xl-4 {
    display: block !important;
    visibility: visible !important;
}

.group-card {
    border: none;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--white);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    position: relative;
    padding: 0;
    min-height: 350px;
    height: 350px;
    display: block !important;
    visibility: visible !important;
}

.group-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.group-card:active {
    transform: translateY(-4px);
}

.group-card-image {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
}

.group-card-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, transparent 40%, rgba(0,0,0,0.4) 70%, rgba(0,0,0,0.8) 100%);
    z-index: 1;
}

.group-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.group-card:hover .group-card-image img {
    transform: scale(1.1);
}

.group-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    padding: 1.5rem !important;
    color: white;
}

.group-price-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 2;
    background: white;
    color: #1F2937;
    padding: 0.5rem 0.875rem;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 700;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    font-family: 'Inter', sans-serif;
}

.group-name {
    font-family: 'Inter', sans-serif;
    font-size: 1.375rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: white;
    line-height: 1.3;
    letter-spacing: -0.01em;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.group-location {
    font-size: 0.8125rem;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-weight: 500;
}

.group-location i {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.875rem;
}

.group-rating {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.875rem;
    margin-bottom: 0.4rem;
    color: white;
}

.group-rating i {
    color: #FFD700;
    font-size: 1rem;
}

.group-meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.9);
}

.group-validity,
.group-includes,
.group-airport,
.group-notes,
.group-price-range {
    display: none;
}

.group-card .hotel-amenities {
    display: none;
}

.group-card .btn-primary {
    display: none;
}

/* Group Details Modal */
#groupDetailsModal .modal-dialog {
    max-width: 1300px;
    margin: 2rem auto;
}

@media (max-width: 1400px) {
    #groupDetailsModal .modal-dialog {
        max-width: 95%;
    }
}

#groupDetailsModal .modal-content {
    border: none;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(255, 255, 255, 0.1);
    background: white;
}

#groupDetailsModal .modal-header {
    position: relative;
    border: none;
    padding: 2rem 3rem;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    border-bottom: 2px solid #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1;
}

#groupDetailsModal .modal-title {
    font-family: 'Inter', sans-serif;
    font-size: 1.75rem;
    font-weight: 800;
    color: #1F2937;
    margin: 0;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

#groupDetailsModal .modal-title i {
    color: var(--primary);
    font-size: 1.625rem;
}

#groupDetailsModal .modal-header .btn-close {
    background-color: #f3f4f6;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23374151'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 1.25rem;
    border-radius: 12px;
    width: 44px;
    height: 44px;
    opacity: 1;
    border: 2px solid #e5e7eb;
    padding: 0;
    margin: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    filter: none;
}

#groupDetailsModal .modal-header .btn-close:hover {
    background-color: #ef4444;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e");
    border-color: #ef4444;
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
}

#groupDetailsModal .modal-body {
    max-height: 85vh;
    overflow-y: auto;
    padding: 0;
    background: #fafbfc;
}

#groupDetailsModal .modal-body::-webkit-scrollbar {
    width: 8px;
}

#groupDetailsModal .modal-body::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

#groupDetailsModal .modal-body::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 10px;
}

#groupDetailsModal .modal-body::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

#groupDetailsModal .modal-footer {
    border-top: 2px solid #e5e7eb;
    padding: 2.5rem 3.5rem;
    background: white;
    display: flex;
    gap: 1.25rem;
    justify-content: flex-end;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.04);
}

#groupDetailsModal .modal-footer .btn {
    padding: 1.125rem 2.75rem;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 14px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    min-width: 180px;
    letter-spacing: 0.5px;
    font-family: 'Inter', sans-serif;
}

#groupDetailsModal .modal-footer .btn-primary {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    border: none;
    color: white;
    box-shadow: 0 8px 24px rgba(245, 180, 27, 0.3);
    position: relative;
    overflow: hidden;
}

#groupDetailsModal .modal-footer .btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

#groupDetailsModal .modal-footer .btn-primary:hover::before {
    left: 100%;
}

#groupDetailsModal .modal-footer .btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(245, 180, 27, 0.4);
}

#groupDetailsModal .modal-footer .btn-secondary {
    background: white;
    border: 2px solid #e5e7eb;
    color: #4b5563;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

#groupDetailsModal .modal-footer .btn-secondary:hover {
    background: #f9fafb;
    border-color: #d1d5db;
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

#groupDetailsModal .modal-footer .btn-outline-primary {
    border: 2px solid var(--primary);
    color: var(--primary);
    font-weight: 700;
    background: white;
    box-shadow: 0 4px 12px rgba(3, 105, 161, 0.15);
}

#groupDetailsModal .modal-footer .btn-outline-primary:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(3, 105, 161, 0.3);
}

#groupDetailsModal .modal-footer .btn i {
    margin-right: 0.5rem;
}

.group-details .img-fluid {
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    margin-bottom: 2rem !important;
}

.group-details .text-warning {
    color: #FFD700 !important;
    filter: drop-shadow(0 2px 4px rgba(255, 215, 0, 0.3));
}

.group-details .text-muted i {
    color: var(--primary);
    margin-right: 0.5rem;
}

.group-details h5 i {
    margin-right: 0.75rem;
    color: var(--primary);
}

.group-details h6 i {
    margin-right: 0.5rem;
}

.group-info-card p {
    margin-bottom: 0.5rem;
}

.group-info-card strong {
    color: #1F2937;
    font-size: 0.9375rem;
}

.group-info-card .small {
    color: #6b7280;
    font-size: 0.9375rem;
    line-height: 1.6;
}

.itinerary-option {
    background: linear-gradient(135deg, #f8fafc, #f1f5f9) !important;
    border: 2px solid #e2e8f0 !important;
    border-radius: 20px !important;
    padding: 2rem !important;
    margin-bottom: 2rem !important;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    transition: all 0.3s;
}

.itinerary-option:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.itinerary-option h6 {
    color: var(--primary);
    font-size: 1.375rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    font-family: 'Inter', sans-serif;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(11, 99, 206, 0.2);
}

#groupDetailsModal .row {
    margin-left: -0.75rem;
    margin-right: -0.75rem;
}

#groupDetailsModal .row > * {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
}

.group-details hr {
    margin: 3.5rem 0;
    border: none;
    height: 1px;
    background: linear-gradient(90deg, transparent, #e5e7eb 10%, #e5e7eb 90%, transparent);
    opacity: 1;
}

#groupDetailsModal .mb-4 {
    margin-bottom: 2rem !important;
}

.group-details > div:first-child {
    margin-bottom: 2rem;
}

.hotel-option-card .text-primary {
    font-weight: 700;
    font-size: 1.125rem;
}

.group-details .d-flex.flex-wrap.gap-2 {
    gap: 0.875rem !important;
    margin-top: 1rem;
}

.group-details .badge {
    padding: 0.75rem 1.25rem !important;
    font-size: 0.9375rem !important;
    font-weight: 600 !important;
    border-radius: 12px !important;
    transition: all 0.3s;
}

.group-details .badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

#groupDetailsModal .text-center {
    position: relative;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    padding: 0;
    border-radius: 0;
    margin: 0;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

#groupDetailsModal .text-center .img-fluid {
    margin-bottom: 0 !important;
    max-height: 450px;
    min-height: 450px;
    width: 100%;
    object-fit: cover;
    border-radius: 0;
    box-shadow: none;
    opacity: 0.95;
}

#groupDetailsModal .text-center::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(to bottom, transparent, rgba(0,0,0,0.7) 80%, rgba(0,0,0,0.85));
    z-index: 1;
}

#groupDetailsModal .text-center h4 {
    position: absolute;
    bottom: 3rem;
    left: 2rem;
    right: 2rem;
    z-index: 2;
    color: white;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2.5rem;
    font-weight: 800;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    margin-bottom: 0.5rem;
}

#groupDetailsModal .text-center .text-muted {
    position: absolute;
    bottom: 1.5rem;
    left: 2rem;
    right: 2rem;
    z-index: 2;
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.95) !important;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    font-weight: 500;
}

#groupDetailsModal .text-center .text-muted i {
    color: rgba(255, 255, 255, 0.95);
    margin-right: 0.5rem;
}

.group-details {
    padding: 3rem 3.5rem;
    background: white;
}

.group-details > div {
    margin-bottom: 2.5rem;
}

/* Better spacing for sections */
.group-details .mb-4 {
    margin-bottom: 3rem !important;
}

.group-details .mb-4:last-child {
    margin-bottom: 0 !important;
}

.group-details h4 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2rem;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 0.5rem;
}

.group-details p {
    color: #4b5563;
    line-height: 1.8;
    font-size: 1rem;
}

/* Section Headings in Modal - Star ratings and category headers */
#groupDetailsModal h6.text-primary {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    font-size: 0.9375rem;
    margin-bottom: 2rem;
    margin-top: 0;
    position: relative;
    padding-bottom: 1rem;
    color: var(--primary) !important;
}

#groupDetailsModal h6.text-primary::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--primary-dark));
    border-radius: 3px;
}

#groupDetailsModal h6.text-success {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    font-size: 0.9375rem;
    margin-bottom: 1.5rem;
    margin-top: 0;
    position: relative;
    padding-bottom: 1rem;
}

#groupDetailsModal h6.text-success::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #10b981, #059669);
    border-radius: 3px;
}

.group-details h5 {
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: #1F2937;
    margin-bottom: 2rem;
    margin-top: 0;
    padding-bottom: 1rem;
    border-bottom: 3px solid var(--primary);
    text-transform: none;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.group-details h5 i {
    font-size: 1.75rem;
    color: var(--primary);
}

.group-details h6 {
    font-weight: 700;
    color: #374151;
}

.itinerary-list {
    max-height: 500px;
    overflow-y: auto;
}

.itinerary-day {
    background: #f8fafc;
    border: 2px solid #e2e8f0 !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 12px !important;
}

.itinerary-day:hover {
    background: #f1f5f9;
    border-color: var(--primary) !important;
    transform: translateX(8px);
    box-shadow: 0 4px 12px rgba(11, 99, 206, 0.1);
}

.itinerary-day {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
    border-left: 4px solid var(--accent);
    transition: all 0.3s;
}

.itinerary-day:hover {
    transform: translateX(8px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.itinerary-day .day-number {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    border-radius: 12px;
    padding: 0.5rem;
    min-width: 50px;
    text-align: center;
}

.itinerary-day .day-number .badge {
    background: transparent !important;
    font-weight: 800;
    font-size: 1.25rem;
    box-shadow: none;
}

.itinerary-day h6 {
    color: #1F2937;
    font-size: 1.1rem;
}

/* Star Ratings */
.bi-star-fill {
    color: #fbbf24;
    font-size: 1.125rem;
    margin-right: 0.25rem;
    text-shadow: 0 2px 4px rgba(251, 191, 36, 0.3);
}

.hotel-option-card .bi-star-fill {
    color: #f59e0b;
    font-size: 0.9375rem;
}

.hotel-option-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: white;
    border: 3px solid #e5e7eb !important;
    border-radius: 20px !important;
    padding: 2rem !important;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.hotel-option-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary), var(--primary-dark));
    transform: scaleY(0);
    transition: transform 0.4s;
}

.hotel-option-card:hover::before {
    transform: scaleY(1);
}

.hotel-option-card:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    transform: translateY(-6px);
    border-color: var(--primary) !important;
}

.hotel-option-card.selected {
    border-color: var(--primary) !important;
    background: linear-gradient(135deg, rgba(3, 105, 161, 0.05), rgba(3, 105, 161, 0.02));
    box-shadow: 0 8px 32px rgba(3, 105, 161, 0.2);
}

.hotel-option-card.selected::before {
    transform: scaleY(1);
}

.hotel-option-card.selected::after {
    content: '✓';
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(3, 105, 161, 0.3);
    animation: checkmarkPop 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes checkmarkPop {
    0% {
        transform: scale(0) rotate(-180deg);
        opacity: 0;
    }
    100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.pulse {
    animation: pulse 0.6s ease-in-out;
}

.hotel-option-card h6 {
    font-size: 1.25rem;
    color: #1F2937;
    font-weight: 700;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', Georgia, serif;
}

.hotel-option-card .badge {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 10px;
    border: 1px solid transparent;
    transition: all 0.3s;
}

.hotel-option-card .badge.bg-light {
    background: rgba(3, 105, 161, 0.06) !important;
    color: var(--primary) !important;
    border-color: rgba(3, 105, 161, 0.15);
}

.hotel-option-card .badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.group-info-card {
    border: none !important;
    border-radius: 24px !important;
    background: linear-gradient(135deg, rgba(11, 99, 206, 0.06), rgba(11, 99, 206, 0.02));
    padding: 2.5rem !important;
    box-shadow: 0 4px 20px rgba(11, 99, 206, 0.08);
    border-left: 5px solid var(--primary) !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin-bottom: 2.5rem !important;
}

.group-info-card:hover {
    transform: translateX(6px);
    box-shadow: 0 8px 32px rgba(11, 99, 206, 0.15);
    background: linear-gradient(135deg, rgba(11, 99, 206, 0.08), rgba(11, 99, 206, 0.04));
}

.group-details .badge {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 10px;
    margin: 0.25rem;
}

.group-details .badge.bg-success {
    background: #d1fae5 !important;
    color: #065f46 !important;
    border: 2px solid #10b981 !important;
}

.group-details .badge.bg-danger {
    background: #fee2e2 !important;
    color: #991b1b !important;
    border: 2px solid #ef4444 !important;
}

.group-details .text-success {
    color: #059669 !important;
    font-weight: 700;
}

.group-details .text-danger {
    color: #dc2626 !important;
    font-weight: 700;
}

.hotel-prices {
    margin-top: 1rem;
}

.hotel-prices strong {
    font-size: 1.25rem;
    color: var(--primary);
}

.hotel-prices {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 2px solid #f3f4f6;
}

.hotel-prices .badge {
    font-size: 0.9375rem;
    padding: 0.75rem 1.25rem;
    margin: 0;
    font-weight: 700;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(3, 105, 161, 0.1), rgba(3, 105, 161, 0.05)) !important;
    color: var(--primary) !important;
    border: 2px solid rgba(3, 105, 161, 0.2);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
}

.hotel-prices .badge:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
    background: linear-gradient(135deg, rgba(3, 105, 161, 0.15), rgba(3, 105, 161, 0.08)) !important;
}

/* Room Type Selection */
.room-selection-area {
    margin-top: 2rem;
    margin-bottom: 1.5rem;
    padding: 2.5rem;
    background: linear-gradient(135deg, rgba(245, 180, 27, 0.08), rgba(245, 180, 27, 0.03));
    border-radius: 24px;
    border: 3px solid rgba(245, 180, 27, 0.3);
    box-shadow: 0 8px 32px rgba(245, 180, 27, 0.15);
    animation: slideDown 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes slideDown {
    0% {
        opacity: 0;
        transform: translateY(-30px) scale(0.95);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.room-selection-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--accent-dark);
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid rgba(245, 180, 27, 0.3);
}

.room-selection-title i {
    font-size: 1.75rem;
    color: var(--accent);
}

.hotel-name-highlight {
    color: var(--primary);
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
}

.room-selection-area h6 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--accent-dark);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.room-selection-area h6 i {
    font-size: 1.25rem;
}

.room-type-option {
    background: white;
    border: 3px solid #e5e7eb;
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 0;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;
}

.room-type-option::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: linear-gradient(180deg, var(--accent), var(--accent-dark));
    transform: scaleY(0);
    transition: transform 0.4s;
}

.room-type-option:hover {
    border-color: var(--accent);
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(245, 180, 27, 0.25);
}

.room-type-option:hover::before {
    transform: scaleY(1);
}

.room-type-option.selected {
    border-color: var(--accent) !important;
    background: linear-gradient(135deg, rgba(245, 180, 27, 0.12), rgba(245, 180, 27, 0.06));
    box-shadow: 0 12px 32px rgba(245, 180, 27, 0.3);
    transform: translateY(-4px);
}

.room-type-option.selected::before {
    transform: scaleY(1);
}

.room-type-option .room-info {
    flex: 1;
}

.room-type-option .room-info h6 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 0.5rem;
}

.room-type-option .room-info p {
    font-size: 0.9375rem;
    color: #6b7280;
    margin: 0;
}

.room-type-option .room-price {
    text-align: right;
    padding-left: 2rem;
}

.room-type-option .room-price .price {
    font-size: 1.75rem;
    font-weight: 900;
    color: var(--accent);
    font-family: 'Inter', sans-serif;
    letter-spacing: -1px;
}

.room-type-option .room-price .period {
    font-size: 0.875rem;
    color: #6b7280;
}

.room-type-option.selected::after {
    content: '✓';
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: white;
    border-radius: 50%;
    font-weight: 700;
    margin-left: 1rem;
    animation: checkmarkPop 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* Hotel Selection Instructions */
.group-details .alert-info {
    background: linear-gradient(135deg, rgba(11, 99, 206, 0.1), rgba(11, 99, 206, 0.04)) !important;
    border: 2px solid rgba(11, 99, 206, 0.25) !important;
    border-radius: 18px !important;
    color: var(--primary-dark) !important;
    padding: 1.5rem 2rem !important;
    margin-bottom: 2.5rem !important;
    margin-top: 0.5rem !important;
    box-shadow: 0 4px 20px rgba(11, 99, 206, 0.12);
    font-size: 0.9375rem;
    line-height: 1.6;
}

.group-details .alert-info i {
    color: var(--primary) !important;
}

.group-details .alert-info strong {
    color: var(--primary-dark);
    font-weight: 700;
}

/* Reservation Terms Checkbox */
.form-check {
    padding: 1rem;
    background: #fff3cd;
    border: 2px solid #ffc107;
    border-radius: 8px;
    margin-top: 1rem;
}

.form-check-input {
    width: 1.25rem;
    height: 1.25rem;
    margin-top: 0.25rem;
    cursor: pointer;
}

.form-check-input:checked {
    background-color: #ffc107;
    border-color: #ffc107;
}

.form-check-label {
    margin-left: 0.5rem;
    cursor: pointer;
    user-select: none;
}

.form-check-label strong {
    color: #856404;
}

/* Modal Customization */
#reservationModal .modal-content {
    border-radius: 20px;
    border: none;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

#reservationModal .modal-header {
    border-bottom: 2px solid var(--light-gray);
    padding: 1.5rem 2rem;
    background: linear-gradient(135deg, rgba(11, 99, 206, 0.05), rgba(245, 180, 27, 0.05));
}

#reservationModal .modal-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-dark);
}

#reservationModal .modal-body {
    padding: 2rem;
}

#reservationModal .modal-footer {
    border-top: 1px solid var(--light-gray);
    padding: 1.5rem 2rem;
}

/* Hotel Info Badge */
.hotel-info-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(11, 99, 206, 0.08);
    border-radius: 8px;
    font-size: 0.9rem;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
}

/* ==========================================
   Hotel Details Modal Styles
   ========================================== */

#hotelDetailsModal .modal-dialog {
    max-width: 900px;
}

#hotelDetailsModal .modal-content {
    border: none;
    overflow: hidden;
}

#hotelDetailsModal .modal-header {
    border: none;
    padding: 0;
    position: relative;
}

#hotelDetailsModal .modal-body {
    padding: 0;
}

#hotelDetailsModal .btn-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 10;
    background: white;
    opacity: 1;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

#hotelDetailsModal .hotel-details-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 0;
    margin-bottom: 0;
}

.hotel-details-content {
    padding: 2rem;
}

.hotel-info-section {
    margin-bottom: 2rem;
}

.hotel-info-section h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 0.75rem;
}

.hotel-info-section .location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
}

.hotel-info-section .location i {
    color: var(--primary);
    font-size: 1.2rem;
}

.hotel-info-section .hotel-stars {
    font-size: 1.3rem;
    letter-spacing: 3px;
}

.room-prices-section {
    background: transparent;
    border-radius: 0;
    padding: 0;
    margin: 0;
}

.room-prices-section h5 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.room-prices-section h5 i {
    color: var(--primary);
    font-size: 1.5rem;
}

.room-price-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    background: var(--white);
    border: 2px solid var(--light-gray);
    border-radius: 12px;
    margin-bottom: 1rem;
    transition: all 0.3s;
}

.room-price-item:last-child {
    margin-bottom: 0;
}

.room-price-item:hover {
    border-color: var(--primary);
    box-shadow: 0 4px 20px rgba(11, 99, 206, 0.1);
    transform: translateY(-2px);
}

.room-price-item-left {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.room-price-item i {
    font-size: 1.8rem;
    color: var(--primary);
    background: rgba(11, 99, 206, 0.1);
    padding: 0.75rem;
    border-radius: 10px;
    margin-right: 0;
}

.room-price-item-info {
    display: flex;
    flex-direction: column;
}

.room-price-item-info .room-name {
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--text-main);
    margin-bottom: 0.25rem;
}

.room-price-item-info .room-capacity {
    font-size: 0.9rem;
    color: var(--text-light);
}

.room-price-item strong {
    font-size: 1.4rem;
    color: var(--primary);
    font-weight: 700;
}

#hotelDetailsModal .modal-footer {
    border: none;
    padding: 1.5rem 2rem 2rem;
    background: var(--white);
}

#hotelDetailsModal .modal-footer .btn {
    padding: 0.875rem 2.5rem;
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: 12px;
}

#hotelDetailsModal .modal-footer .btn-secondary {
    background: var(--light-gray);
    border: none;
    color: var(--dark-gray);
}

#hotelDetailsModal .modal-footer .btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border: none;
    box-shadow: 0 4px 15px rgba(11, 99, 206, 0.3);
}

#hotelDetailsModal .modal-footer .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(11, 99, 206, 0.4);
}

#hotelDetailsModal .modal-footer .btn-primary i {
    margin-right: 0.5rem;
}

/* Responsive */
@media (max-width: 768px) {
    #hotelDetailsModal .modal-dialog {
        max-width: 100%;
        margin: 0;
    }
    
    #hotelDetailsModal .hotel-details-image {
        height: 250px;
    }
    
    .hotel-details-content {
        padding: 1.5rem;
    }
    
    .hotel-info-section h3 {
        font-size: 1.5rem;
    }
    
    .room-price-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .room-price-item strong {
        align-self: flex-end;
    }
}

/* Reservation Form Modal Styles */
#reservationModal .modal-dialog {
    max-width: 700px;
}

#reservationModal .modal-content {
    border-radius: 20px;
}

#reservationModal .modal-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    border-radius: 20px 20px 0 0;
    padding: 1.75rem 2rem;
    border: none;
}

#reservationModal .modal-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

#reservationModal .btn-close {
    filter: brightness(0) invert(1);
    opacity: 0.8;
}

#reservationModal .btn-close:hover {
    opacity: 1;
}

#reservationModal .modal-body {
    padding: 2rem;
}

#reservationModal .form-label {
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

#reservationModal .form-control,
#reservationModal .form-select {
    border: 2px solid var(--light-gray);
    border-radius: 10px;
    padding: 0.75rem 1rem;
    transition: all 0.3s;
    font-size: 0.95rem;
}

#reservationModal .form-control:focus,
#reservationModal .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(11, 99, 206, 0.1);
    outline: none;
}

#reservationModal .btn-primary {
    padding: 0.875rem 2.5rem;
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border: none;
    box-shadow: 0 4px 15px rgba(11, 99, 206, 0.3);
    transition: all 0.3s;
}

#reservationModal .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(11, 99, 206, 0.4);
}

#reservationModal .btn-secondary {
    padding: 0.875rem 2rem;
    border-radius: 12px;
    background: var(--light-gray);
    border: none;
    color: var(--dark-gray);
    font-weight: 600;
}

#reservationModal .btn-secondary:hover {
    background: var(--gray);
    color: white;
}

.reservation-summary {
    background: linear-gradient(135deg, rgba(11, 99, 206, 0.05), rgba(245, 180, 27, 0.05));
    border: 2px solid rgba(11, 99, 206, 0.1);
    border-radius: 16px;
    padding: 1.75rem;
    margin-bottom: 2rem;
}

.reservation-summary h6 {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.reservation-summary strong {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-main);
    display: block;
    margin-bottom: 0.5rem;
}

.reservation-summary p {
    color: var(--text-light);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.reservation-summary .hotel-stars {
    margin-bottom: 1rem;
}

.reservation-summary .form-label {
    margin-top: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--text-main);
}

.reservation-summary .form-select {
    background-color: white;
    font-weight: 600;
}

.reservation-summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0 0 0;
    margin-top: 1rem;
    border-top: 2px solid rgba(11, 99, 206, 0.15);
}

.reservation-summary-item span:first-child {
    font-weight: 600;
    color: var(--text-light);
    font-size: 0.95rem;
}

.reservation-summary-item span:last-child {
    font-weight: 700;
    font-size: 1.4rem;
    color: var(--primary);
}

.customer-info-section {
    margin-bottom: 1.5rem;
}

.customer-info-section h6 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.customer-info-section h6 i {
    color: var(--primary);
    font-size: 1.2rem;
}

#reservationModal .modal-footer {
    border-top: 2px solid var(--light-gray);
    padding: 1.5rem 2rem;
    background: var(--off-white);
    border-radius: 0 0 20px 20px;
}

#reservationError {
    background: #fee;
    color: #c33;
    padding: 1rem 1.25rem;
    border-radius: 10px;
    margin-bottom: 1rem;
    border-left: 4px solid #c33;
    font-weight: 500;
}

/* Input icons */
.input-with-icon {
    position: relative;
}

.input-with-icon i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-light);
}

.input-with-icon .form-control {
    padding-left: 2.75rem;
}

/* Responsive */
@media (max-width: 768px) {
    /* Reservation Modal Mobile */
    #reservationModal .modal-body {
        padding: 1.5rem;
    }
    
    #reservationModal .modal-dialog {
        margin: 0.5rem;
        max-width: calc(100% - 1rem);
    }
    
    .reservation-summary {
        padding: 1.25rem;
    }
    
    .reservation-summary strong {
        font-size: 1.1rem;
    }
    
    .reservation-summary-item span:last-child {
        font-size: 1.2rem;
    }
    
    /* Group Details Modal Mobile */
    #groupDetailsModal .modal-dialog {
        max-width: 100%;
        margin: 0.5rem;
    }
    
    #groupDetailsModal .modal-body {
        max-height: 75vh;
    }
    
    .group-details {
        padding: 2rem 1.5rem;
    }
    
    #groupDetailsModal .modal-header {
        padding: 1.5rem 1.5rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    #groupDetailsModal .modal-title {
        font-size: 1.375rem;
        width: 100%;
    }
    
    #groupDetailsModal .modal-header .btn-close {
        align-self: flex-end;
        position: absolute;
        top: 1.5rem;
        right: 1.5rem;
    }
    
    #groupDetailsModal .modal-footer {
        padding: 2rem 1.5rem;
        flex-direction: column;
        gap: 0.75rem;
    }
    
    #groupDetailsModal .modal-footer .btn {
        width: 100%;
        min-width: auto;
        padding: 1rem 2rem;
        font-size: 0.9375rem;
    }
    
    .group-details h4 {
        font-size: 1.5rem;
    }
    
    .group-details h5 {
        font-size: 1.25rem;
    }
    
    .group-details .img-fluid {
        max-height: 200px !important;
    }
    
    .hotel-option-card {
        padding: 1rem !important;
    }
    
    .room-selection-area {
        padding: 1.5rem;
    }
    
    .room-type-option {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .room-type-option .room-price {
        text-align: left;
        padding-left: 0;
        margin-top: 1rem;
        width: 100%;
        border-top: 1px solid #e5e7eb;
        padding-top: 1rem;
    }
    
    .room-type-option .room-price .price {
        font-size: 1.5rem;
    }
    
    .itinerary-day {
        padding: 0.75rem !important;
    }
    
    /* Group Reservation Modal Mobile */
    #groupReservationModal .modal-dialog {
        max-width: 100%;
        margin: 0.5rem;
    }
    
    #groupReservationModal .modal-body {
        padding: 1rem;
        max-height: 85vh;
        overflow-y: auto;
    }
    
    /* Hotel Cards Mobile - Stack to single column */
    .hotel-card,
    .group-card {
        margin-bottom: 1.5rem;
    }
    
    /* Hotel/Group Cards Container */
    #hotelCardsContainer,
    #groups-list {
        margin: 0;
    }
    
    #hotelCardsContainer .col-md-6,
    #hotelCardsContainer .col-xl-4,
    #groups-list .col-md-6,
    #groups-list .col-xl-4 {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 1.5rem;
    }
    
    /* Hotel Option Cards in Group Modal */
    .hotel-option-card {
        margin-bottom: 1rem;
    }
    
    /* Itinerary Cards Mobile */
    .itinerary-option {
        padding: 1rem !important;
    }
    
    .itinerary-day {
        padding: 1rem !important;
    }
    
    .itinerary-day .day-number {
        min-width: 40px !important;
    }
    
    .itinerary-day .badge {
        width: 35px !important;
        height: 35px !important;
        font-size: 0.9rem !important;
    }
    
    /* Tables in Group Details - Make responsive */
    .table-responsive {
        font-size: 0.85rem;
    }
    
    .table th,
    .table td {
        padding: 0.5rem;
        font-size: 0.85rem;
    }
    
    /* Customer Info Form Mobile */
    .customer-info-section .row {
        margin: 0;
    }
    
    .customer-info-section .col-md-4,
    .customer-info-section .col-md-6 {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 1rem;
    }
    
    /* Group Info Card Mobile */
    .group-info-card .row {
        margin: 0;
    }
    
    .group-info-card .col-md-6 {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 0.75rem;
    }
    
    /* Price Badges Mobile */
    .hotel-prices .badge {
        font-size: 0.7rem;
        padding: 0.3rem 0.5rem;
    }
    
    /* Terms Checkbox Mobile */
    .form-check {
        padding: 0.75rem;
        font-size: 0.9rem;
    }
    
    /* Modal Footer Mobile */
    .modal-footer {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .modal-footer .btn {
        width: 100%;
        margin: 0;
    }
    
    /* Contact Form Mobile */
    .contact-wrapper {
        flex-direction: column;
    }
    
    .contact-info,
    .contact-form-wrapper {
        width: 100%;
    }
    
    /* Cards Grid Mobile */
    .cards-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* Service Cards Mobile */
    #services-list {
        grid-template-columns: 1fr;
    }
    
    /* Visa Cards Mobile */
    #visa-list {
        grid-template-columns: 1fr;
    }
}

/* Small Mobile (phones) */
@media (max-width: 480px) {
    /* Even smaller padding */
    #reservationModal .modal-body,
    #groupDetailsModal .modal-body,
    #groupReservationModal .modal-body {
        padding: 0.75rem;
    }
    
    /* Smaller text */
    .modal-title {
        font-size: 1.1rem !important;
    }
    
    /* Compact forms */
    .form-label {
        font-size: 0.9rem;
    }
    
    .form-control,
    .form-select {
        font-size: 0.9rem;
        padding: 0.65rem 0.75rem;
    }
    
    /* Smaller buttons */
    .btn {
        font-size: 0.9rem;
        padding: 0.65rem 1.5rem;
    }
    
    /* Hotel/Group card content */
    .hotel-card-content,
    .group-card-content {
        padding: 1rem !important;
    }
    
    .hotel-name,
    .group-name {
        font-size: 1.1rem;
    }
    
    /* Group details image */
    #groupDetailsModal img {
        max-height: 200px !important;
    }
}

/* RTL Support for Modals */
[dir="rtl"] .room-price-item:hover {
    transform: translateX(-5px);
}

[dir="rtl"] .room-price-item i {
    margin-right: 0;
    margin-left: 0.75rem;
}

/* ==========================================
   Back to Top Button
   ========================================== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
    box-shadow: 0 4px 20px rgba(11, 99, 206, 0.4);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 6px 25px rgba(11, 99, 206, 0.5);
}

.back-to-top:active {
    transform: translateY(-3px) scale(1.05);
}

.back-to-top::before {
    content: '↑';
    font-weight: bold;
}

/* Loading Animation */
@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.loading {
    animation: spin 1s linear infinite;
}

/* Hover glow effect */
.glow-on-hover {
    position: relative;
    z-index: 0;
}

.glow-on-hover::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--primary), var(--accent), var(--primary-light), var(--accent-light));
    border-radius: inherit;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s;
    filter: blur(10px);
}

.glow-on-hover:hover::before {
    opacity: 1;
}

/* ==========================================
   Group Program Cards
   ========================================== */
.program-card-wrapper {
    height: 100%;
}

.program-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    cursor: pointer;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.program-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.program-card-image {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
}

.program-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.program-card:hover .program-card-image img {
    transform: scale(1.1);
}

.program-card-overlay {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 1;
}

.program-card-overlay .badge {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: var(--shadow-md);
}

.program-card-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.program-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.program-card-location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: 1rem;
}

.program-card-location i {
    color: var(--primary);
    font-size: 1.1rem;
}

.program-card-description {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.btn-program-card {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    border: none;
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: auto;
}

.btn-program-card:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(11, 99, 206, 0.4);
}

.btn-program-card i {
    transition: transform 0.3s ease;
}

.btn-program-card:hover i {
    transform: translateX(3px);
}

/* Floating animation for icons */
.float-animation {
    animation: float 3s ease-in-out infinite;
}

/* Smooth appear animation */
.smooth-appear {
    animation: fadeIn 1s ease-out;
}

/* ==========================================
   Page Header (for sub-pages)
   ========================================== */
.page-header {
    padding: calc(var(--header-height) + 3rem) 0 3rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
}

.page-header::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(245, 180, 27, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 10s ease-in-out infinite reverse;
}

.page-header-content {
    position: relative;
    z-index: 1;
}

.page-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 1rem;
    animation: fadeInUp 0.8s ease-out;
    letter-spacing: -0.02em;
}

.page-subtitle {
    font-size: 1.125rem;
    opacity: 0.95;
    max-width: 600px;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}