/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #ff6b35;
    --secondary-color: #004e89;
    --dark-color: #1a1a2e;
    --light-color: #f5f5f5;
    --white: #ffffff;
    --text-dark: #2d3436;
    --text-light: #636e72;
    --gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.2);
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* ===== BUTTONS ===== */
.btn {
    padding: 14px 32px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

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

.btn-primary:hover {
    background: #e55a2b;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

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

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

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

.btn-book {
    padding: 12px 28px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    z-index: 100;
    font-size: 15px;
}

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

.btn-book:active {
    transform: scale(0.95);
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.navbar.scrolled {
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.12);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 700;
    color: var(--dark-color);
    white-space: nowrap;
    flex-shrink: 0;
}

.logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.logo i {
    font-size: 28px;
    color: var(--primary-color);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 5px;
    margin: 0;
    padding: 0;
    flex-wrap: nowrap;
}

.nav-menu li {
    list-style: none;
    margin: 0;
}

.nav-link {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 15px;
    padding: 8px 16px;
    display: inline-block;
    white-space: nowrap;
    transition: var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 16px;
    right: 16px;
    height: 2px;
    background: var(--primary-color);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.nav-link:hover::after {
    transform: scaleX(1);
}

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

.nav-link.active::after {
    transform: scaleX(1);
}

/* ===== DROPDOWN MENU ===== */
.dropdown {
    position: relative;
}

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

.dropdown-toggle i {
    font-size: 10px;
    margin-left: 5px;
    transition: transform 0.3s ease;
}

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

/* Enhanced Professional Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: var(--white);
    min-width: 280px;
    max-height: 450px;
    overflow-y: auto;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
    border-radius: 15px;
    padding: 15px 0;
    margin-top: 15px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    border: 2px solid #f0f0f0;
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 8px solid var(--white);
    filter: drop-shadow(0 -2px 3px rgba(0, 0, 0, 0.1));
}

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

/* Custom Scrollbar for Dropdown */
.dropdown-menu::-webkit-scrollbar {
    width: 6px;
}

.dropdown-menu::-webkit-scrollbar-track {
    background: #f5f5f5;
    border-radius: 10px;
}

.dropdown-menu::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #27ae60, #229954);
    border-radius: 10px;
}

.dropdown-menu::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #229954, #1e8449);
}

.dropdown-menu li {
    list-style: none;
    margin: 0;
    position: relative;
}

.dropdown-menu a {
    display: block;
    padding: 14px 25px;
    color: var(--text-dark);
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.dropdown-menu a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(135deg, #27ae60, #229954);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.dropdown-menu a::after {
    content: '\f105';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: 20px;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
    color: #27ae60;
}

.dropdown-menu a:hover {
    background: linear-gradient(90deg, #f0fff4 0%, #ffffff 100%);
    color: #27ae60;
    padding-left: 30px;
    font-weight: 600;
}

.dropdown-menu a:hover::before {
    transform: scaleY(1);
}

.dropdown-menu a:hover::after {
    opacity: 1;
    transform: translateX(0);
}

.dropdown-menu li:not(:last-child) {
    border-bottom: 1px solid #f5f5f5;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-shrink: 0;
}

.btn-book {
    padding: 10px 28px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.25);
}

.btn-book:hover {
    background: #e55a2b;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 107, 53, 0.35);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
    flex-shrink: 0;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--dark-color);
    transition: var(--transition);
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

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

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ===== HERO SECTION ===== */
/* ===== HERO SECTION - ENTERPRISE PROFESSIONAL ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 80px;
    padding-bottom: 180px;
    overflow: hidden;
    margin-top: 0;
    background: #000000;
}

.hero-banner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    opacity: 0.75;
}

.hero-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.75) 0%,
        rgba(20, 20, 30, 0.65) 30%,
        rgba(0, 0, 0, 0.5) 60%,
        rgba(0, 0, 0, 0.7) 100%
    );
    box-shadow: inset 0 0 200px rgba(0, 0, 0, 0.3);
}

.hero .container {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    animation: heroFadeIn 1s ease-out;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.2), rgba(139, 195, 74, 0.2));
    backdrop-filter: blur(12px);
    border: 1.5px solid rgba(76, 175, 80, 0.4);
    border-radius: 50px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 30px;
    transition: all 0.4s ease;
    box-shadow: 0 4px 20px rgba(76, 175, 80, 0.2);
    position: relative;
    overflow: hidden;
}

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

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

.hero-badge:hover {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.3), rgba(139, 195, 74, 0.3));
    border-color: rgba(76, 175, 80, 0.6);
    transform: translateY(-3px);
    box-shadow: 0 6px 30px rgba(76, 175, 80, 0.4);
}

.hero-badge i {
    font-size: 16px;
    color: #8BC34A;
    animation: badgeIconPulse 2s ease-in-out infinite;
}

@keyframes badgeIconPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.hero-title {
    font-size: 58px;
    font-weight: 800;
    line-height: 0.95;
    color: #ffffff;
    margin-bottom: 24px;
    letter-spacing: -2px;
}

.hero-title-highlight {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.hero-description {
    font-size: 20px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    font-weight: 400;
}

.hero-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: #4CAF50;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(76, 175, 80, 0.4);
}

.btn-hero-primary:hover {
    background: #45a049;
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(76, 175, 80, 0.5);
}

.btn-hero-primary i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.btn-hero-primary:hover i {
    transform: translateX(4px);
}

.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 30px 40px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    max-width: fit-content;
}

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

.stat-number {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 4px;
    letter-spacing: -1px;
}

.stat-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
}

/* Responsive Hero Section */
@media (max-width: 1024px) {
    .hero {
        padding-top: 120px;
    }

    .hero-title {
        font-size: 56px;
    }

    .hero-description {
        font-size: 18px;
    }

    .hero-stats {
        gap: 30px;
        padding: 25px 30px;
    }

    .stat-number {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: 90vh;
        padding-top: 80px;
        padding-bottom: 140px;
        align-items: center;
    }

    .hero-content {
        text-align: center;
    }

    .hero-banner-img {
        object-fit: cover;
        object-position: center center;
        opacity: 0.8;
    }

    .hero-title {
        font-size: 42px;
        letter-spacing: -1px;
        line-height: 0.95;
    }

    .hero-description {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .hero-cta {
        flex-direction: column;
        gap: 12px;
        margin-bottom: 40px;
        justify-content: center;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        justify-content: center;
        padding: 14px 24px;
        font-size: 15px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 20px;
        padding: 20px 25px;
        width: 100%;
        margin: 0 auto;
    }

    .stat-divider {
        width: 100%;
        height: 1px;
    }

    .stat-number {
        font-size: 24px;
    }

    .stat-label {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding-top: 80px;
        padding-bottom: 120px;
        min-height: 85vh;
        align-items: center;
    }

    .hero-content {
        text-align: center;
    }

    .hero-banner-img {
        object-fit: cover;
        object-position: center center;
        opacity: 0.85;
    }

    .hero-badge {
        font-size: 12px;
        padding: 8px 16px;
        margin-bottom: 20px;
    }

    .hero-title {
        font-size: 36px;
        line-height: 0.95;
    }

    .hero-description {
        font-size: 15px;
    }

    .hero-stats {
        padding: 16px 20px;
        margin: 0 auto;
    }
}

/* Remove old hero styles */
.hero-bg,
.hero-overlay,
.hero-slider,
.hero-slide,
.hero-subtitle,
.hero-text,
.hero-buttons,
.scroll-indicator {
    display: none;
}

/* ===== SECTION STYLES ===== */
section {
    padding: 30px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 25px;
}

.section-label {
    display: inline-block;
    font-size: 14px;
    letter-spacing: 3px;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 10px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 700;
    color: var(--dark-color);
    letter-spacing: 2px;
}

/* ===== CATEGORIES SECTION ===== */
.categories {
    background: var(--light-color);
    padding: 30px 0;
}

.popular-label {
    color: var(--primary-color);
    font-size: 16px;
    font-weight: 600;
    text-transform: capitalize;
    letter-spacing: 1px;
}

.categories-title {
    font-size: 48px;
    font-weight: 700;
    margin-top: 10px;
    color: var(--dark-color);
}

.categories-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.category-card-modern {
    text-align: center;
    cursor: pointer;
    transition: transform 0.3s ease;
}

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

.category-image-modern {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 25px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    position: relative;
}

.category-card-modern:hover .category-image-modern {
    box-shadow: 0 15px 50px rgba(255, 107, 53, 0.3);
    transform: scale(1.05);
}

.category-image-modern img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.category-title-modern {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0;
    transition: color 0.3s ease;
}

.category-card-modern:hover .category-title-modern {
    color: #e55a2b;
}

/* Old category styles (keeping for other sections if needed) */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.category-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    cursor: pointer;
}

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

.category-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

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

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

.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 107, 53, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.category-card:hover .category-overlay {
    opacity: 1;
}

.category-overlay i {
    font-size: 60px;
    color: var(--white);
}

.category-content {
    padding: 25px;
}

.category-content h3 {
    font-size: 22px;
    margin-bottom: 8px;
    color: var(--dark-color);
}

.category-content p {
    color: var(--text-light);
    margin-bottom: 15px;
}

.category-link {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.category-link:hover {
    gap: 12px;
}

/* ===== DESTINATIONS SECTION ===== */
#destinations {
    padding: 30px 0;
}

#spiti-valley {
    padding: 30px 0;
}

.packages-modern {
    padding: 30px 0;
}

.testimonials {
    padding: 30px 0;
}

.destinations-slider-wrapper {
    position: relative;
}

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

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

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

.destination-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

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

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

.destination-logo {
    position: absolute;
    top: 15px;
    left: 15px;
    height: 60px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    padding: 8px 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: var(--transition);
}

.destination-logo img {
    height: 100%;
    width: auto;
    object-fit: contain;
}

.destination-card:hover .destination-logo {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.destination-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-color);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
}

.destination-info {
    padding: 25px;
}

.destination-info h3 {
    font-size: 24px;
    margin-bottom: 8px;
    color: var(--dark-color);
}

.destination-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.btn-visiting-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.btn-visiting-card:hover {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.btn-visiting-card i {
    font-size: 14px;
}

@media (max-width: 768px) {
    .destination-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .btn-visiting-card {
        font-size: 11px;
        padding: 6px 12px;
        width: 100%;
        justify-content: center;
    }
}

.destination-info p {
    color: var(--text-light);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

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

.destination-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-light);
    font-size: 14px;
}

.destination-meta .price {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
}

/* Itinerary Link */
.itinerary-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 15px;
    padding: 10px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.itinerary-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.5);
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
}

.itinerary-link i {
    font-size: 16px;
}

.slider-btn {
    display: none;
}

/* ===== PACKAGES SECTION ===== */
.packages {
    background: var(--light-color);
}

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

.package-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

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

.package-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

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

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

.package-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--primary-color);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
}

.package-badge.hot {
    background: #e74c3c;
}

.package-badge.new {
    background: #27ae60;
}

.wishlist-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--white);
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

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

.package-content {
    padding: 30px;
}

.package-rating {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 15px;
}

.package-rating i {
    color: #ffc107;
    font-size: 14px;
}

.package-rating span {
    margin-left: 8px;
    color: var(--text-light);
    font-size: 14px;
}

.package-content h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: var(--dark-color);
}

.package-content > p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.7;
}

.package-features {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    padding: 20px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.package-features span {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-light);
    font-size: 14px;
}

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

.package-price {
    display: flex;
    flex-direction: column;
}

.price-label {
    font-size: 12px;
    color: var(--text-light);
}

.package-price .price {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
}

/* ===== ABOUT SECTION - PREMIUM DESIGN ===== */
.about-premium {
    padding: 30px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.about-header {
    text-align: left;
    margin-bottom: 30px;
}

.section-label-premium {
    display: inline-block;
    background: #ff9f43;
    color: var(--white);
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-transform: capitalize;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

.about-main-title {
    font-size: 52px;
    font-weight: 800;
    color: var(--dark-color);
    line-height: 1.2;
    margin: 0;
}

.about-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 40px;
}

/* Left Side - Images Section */
.about-images-section {
    position: relative;
    height: 600px;
}

.about-image-main {
    position: absolute;
    top: 0;
    left: 0;
    width: 65%;
    height: 450px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    z-index: 3;
}

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

.travel-badge {
    position: absolute;
    top: 30px;
    right: -40px;
    background: #ff6b35;
    color: var(--white);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
    animation: float 3s ease-in-out infinite;
}

.travel-badge i {
    font-size: 28px;
    margin-bottom: 5px;
}

.travel-badge span {
    font-size: 10px;
    font-weight: 700;
    text-align: center;
    line-height: 1.2;
}

.about-image-secondary {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 50%;
    height: 280px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    z-index: 2;
    border: 8px solid var(--white);
}

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

.about-image-tertiary {
    position: absolute;
    bottom: 0;
    left: 50px;
    width: 45%;
    height: 200px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    z-index: 1;
    border: 8px solid var(--white);
}

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

.plane-animation {
    position: absolute;
    top: 50px;
    left: -20px;
    font-size: 40px;
    color: #27ae60;
    animation: flyPlane 8s linear infinite;
    z-index: 4;
}

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

@keyframes flyPlane {
    0% {
        transform: translate(0, 0) rotate(-45deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translate(600px, -300px) rotate(-45deg);
        opacity: 0;
    }
}

/* Right Side - Text Section */
.about-text-section {
    padding-left: 20px;
}

.about-features-list {
    margin-bottom: 40px;
}

.feature-list-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 16px;
    color: var(--dark-color);
    font-weight: 500;
}

.feature-list-item i {
    color: #27ae60;
    font-size: 22px;
    flex-shrink: 0;
}

.mission-vision-box {
    display: flex;
    gap: 25px;
    background: var(--white);
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    margin-bottom: 40px;
    border-left: 5px solid #27ae60;
}

.mission-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #27ae60, #229954);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.mission-icon i {
    font-size: 32px;
    color: var(--white);
}

.mission-content h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 12px;
}

.mission-content p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}

.about-cta-section {
    display: flex;
    align-items: center;
    gap: 30px;
}

.btn-discover {
    padding: 16px 36px;
    background: #ff9f43;
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 20px rgba(255, 159, 67, 0.3);
}

.btn-discover:hover {
    background: #ff8c1a;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(255, 159, 67, 0.4);
}

.contact-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-icon {
    width: 55px;
    height: 55px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 28px;
    color: var(--white);
}

.contact-details {
    display: flex;
    flex-direction: column;
}

.contact-label {
    font-size: 13px;
    color: var(--text-light);
    font-weight: 500;
}

.contact-number {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark-color);
}

/* How It Works Section */
.how-it-works-section {
    margin-top: 30px;
    position: relative;
}

.how-header {
    text-align: center;
    margin-bottom: 35px;
}

.section-title-works {
    font-size: 42px;
    font-weight: 700;
    color: var(--dark-color);
    margin-top: 15px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    position: relative;
}

.step-card {
    background: var(--white);
    padding: 45px 35px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    position: relative;
}

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

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ff9f43, #ff6b35);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 700;
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.4);
}

.step-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 30px auto 25px;
}

.step-icon i {
    font-size: 40px;
    color: #27ae60;
}

.step-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.step-card p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}

.steps-connector {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #27ae60, transparent);
    z-index: -1;
    pointer-events: none;
}

.steps-connector i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 30px;
    color: #27ae60;
    animation: flyAcross 4s ease-in-out infinite;
}

@keyframes flyAcross {
    0%, 100% {
        left: 20%;
    }
    50% {
        left: 80%;
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .about-content-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .about-images-section {
        height: 500px;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .steps-connector {
        display: none;
    }
}

@media (max-width: 768px) {
    .about-main-title {
        font-size: 36px;
    }
    
    .about-images-section {
        height: 400px;
    }
    
    .about-image-main {
        width: 70%;
        height: 350px;
    }
    
    .about-cta-section {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .section-title-works {
        font-size: 32px;
    }
}

@media (max-width: 480px) {
    .about-main-title {
        font-size: 28px;
    }
    
    .about-images-section {
        height: 350px;
    }
    
    .mission-vision-box {
        flex-direction: column;
        text-align: center;
    }
    
    .btn-discover {
        width: 100%;
        justify-content: center;
    }
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials {
    background: var(--light-color);
}

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

.testimonial-card {
    background: var(--white);
    padding: 35px;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

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

.testimonial-rating {
    display: flex;
    gap: 5px;
    margin-bottom: 20px;
}

.testimonial-rating i {
    color: #ffc107;
    font-size: 16px;
}

.testimonial-card > p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h4 {
    font-size: 16px;
    margin-bottom: 3px;
    color: var(--dark-color);
}

.author-info span {
    font-size: 13px;
    color: var(--text-light);
}

/* ===== GALLERY SECTION - PROFESSIONAL SLIDER ===== */
.gallery-section {
    padding: 80px 0;
    background: var(--white);
    overflow: hidden;
}

.gallery-slider-wrapper {
    position: relative;
    margin-top: 40px;
}

.gallery-slider {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 10px 0 30px 0;
    scroll-snap-type: x mandatory;
}

.gallery-slider::-webkit-scrollbar {
    display: none;
}

.gallery-slide {
    position: relative;
    flex: 0 0 auto;
    width: 400px;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    scroll-snap-align: start;
}

.gallery-slide:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-slide:hover img {
    transform: scale(1.1);
}

.gallery-slide .gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.gallery-slide:hover .gallery-overlay {
    opacity: 0;
}

.gallery-slide .gallery-overlay i {
    font-size: 60px;
    color: var(--white);
    transform: scale(0.5) rotate(-90deg);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: none;
}

.gallery-slide:hover .gallery-overlay i {
    transform: scale(1) rotate(0deg);
    display: none;
}

/* Navigation Buttons */
.gallery-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.gallery-nav-btn:hover {
    background: var(--primary-color);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 12px 40px rgba(76, 175, 80, 0.3);
}

.gallery-nav-btn i {
    font-size: 24px;
    color: var(--dark-color);
    transition: color 0.3s ease;
}

.gallery-nav-btn:hover i {
    color: var(--white);
}

.gallery-prev {
    left: -30px;
}

.gallery-next {
    right: -30px;
}

/* Dots Navigation */
.gallery-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
}

.gallery-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    padding: 0;
}

.gallery-dot.active {
    background: var(--primary-color);
    width: 40px;
    border-radius: 6px;
}

.gallery-dot:hover {
    background: var(--primary-color);
    opacity: 0.7;
}

/* Responsive */
@media (max-width: 1024px) {
    .gallery-slide {
        width: 350px;
        height: 450px;
    }

    .gallery-nav-btn {
        width: 50px;
        height: 50px;
    }

    .gallery-nav-btn i {
        font-size: 20px;
    }

    .gallery-prev {
        left: 10px;
    }

    .gallery-next {
        right: 10px;
    }
}

@media (max-width: 768px) {
    .gallery-slider {
        scroll-snap-type: x mandatory;
        padding: 10px 20px 30px 20px;
    }

    .gallery-slide {
        width: calc(100vw - 100px);
        max-width: 320px;
        height: 420px;
        scroll-snap-align: center;
        margin: 0 auto;
    }

    .gallery-nav-btn {
        width: 45px;
        height: 45px;
    }

    .gallery-nav-btn i {
        font-size: 18px;
    }

    .gallery-slide .gallery-overlay i {
        font-size: 48px;
    }
}

@media (max-width: 480px) {
    .gallery-slider {
        scroll-snap-type: x mandatory;
        padding: 10px 10px 30px 10px;
        gap: 15px;
    }

    .gallery-slide {
        width: calc(100vw - 80px);
        max-width: 300px;
        height: 400px;
        scroll-snap-align: center;
        margin: 0 auto;
    }

    .gallery-nav-btn {
        width: 40px;
        height: 40px;
    }

    .gallery-nav-btn i {
        font-size: 16px;
    }

    .gallery-prev {
        left: 5px;
    }

    .gallery-next {
        right: 5px;
    }

    .gallery-slide .gallery-overlay i {
        font-size: 40px;
    }

    .gallery-dots {
        gap: 8px;
        margin-top: 30px;
    }

    .gallery-dot {
        width: 10px;
        height: 10px;
    }

    .gallery-dot.active {
        width: 30px;
    }
}

/* ===== CTA SECTION ===== */
.cta {
    position: relative;
    background: url('https://images.unsplash.com/photo-1464822759023-fed622ff2c3b?w=1920&q=80') center/cover;
    padding: 120px 0;
    text-align: center;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 78, 137, 0.9) 0%, rgba(255, 107, 53, 0.8) 100%);
}

.cta-content {
    position: relative;
    z-index: 2;
    color: var(--white);
}

.cta-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* ===== FOOTER - PREMIUM PROFESSIONAL DESIGN ===== */
/* ===== CORPORATE PROFESSIONAL FOOTER ===== */
.footer-corporate {
    background: #0a0e27;
    color: #ffffff;
    position: relative;
}

/* Main Footer Content */
.footer-main-corporate {
    padding: 40px 0 25px;
    background: #0a0e27;
}

.footer-grid-corporate {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
    gap: 50px;
}

.footer-col-corporate {
    animation: fadeInUp 0.6s ease;
}

/* Footer About Section */
.footer-about {
    padding-right: 30px;
}

.footer-logo-corporate {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #ffffff;
}

.footer-logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.footer-logo-corporate i {
    font-size: 32px;
    color: #ff6b35;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 25px;
    font-size: 15px;
}

.footer-certifications {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.cert-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.cert-badge:hover {
    background: rgba(255, 107, 53, 0.1);
    border-color: rgba(255, 107, 53, 0.3);
}

.cert-badge i {
    color: #ff6b35;
    font-size: 16px;
}

/* Footer Headings */
.footer-heading {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #ffffff;
    position: relative;
    padding-bottom: 12px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #ff6b35, transparent);
    border-radius: 10px;
}

/* Footer Links */
.footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links-list li {
    margin-bottom: 12px;
}

.footer-links-list li a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.footer-links-list li a::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #ff6b35;
    transition: width 0.3s ease;
}

.footer-links-list li a:hover {
    color: #ff6b35;
    transform: translateX(5px);
}

.footer-links-list li a:hover::before {
    width: 100%;
}

/* Footer Contact List */
.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    line-height: 1.6;
}

.footer-contact-list li i {
    color: #ff6b35;
    font-size: 16px;
    margin-top: 3px;
    min-width: 18px;
}

/* Social Links Corporate */
.social-links-corporate {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.social-links-corporate a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    transition: all 0.3s ease;
}

.social-links-corporate a:hover {
    background: #ff6b35;
    border-color: #ff6b35;
    color: #ffffff;
    transform: translateY(-3px);
}

/* Footer Bottom */
.footer-bottom-corporate {
    padding: 25px 0;
    background: #060918;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-copyright p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    margin: 0;
}

.footer-legal-links {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.footer-legal-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    transition: all 0.3s ease;
}

.footer-legal-links a:hover {
    color: #ff6b35;
}

.footer-legal-links .separator {
    color: rgba(255, 255, 255, 0.2);
}

.footer-payment-methods {
    display: flex;
    align-items: center;
    gap: 12px;
}

.payment-text {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    margin-right: 5px;
}

.footer-payment-methods i {
    font-size: 24px;
    color: rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
}

.footer-payment-methods i:hover {
    color: #ff6b35;
    transform: scale(1.1);
}

/* Developer Profile Card - Inline in Footer */
.developer-card-inline {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(255, 255, 255, 0.05);
    padding: 20px 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.developer-card-inline:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: #667eea;
    transform: translateY(-2px);
}

.developer-image-small {
    width: 60px;
    height: 60px;
    position: relative;
    flex-shrink: 0;
}

.developer-image-small img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #667eea;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.developer-badge-small {
    position: absolute;
    bottom: -2px;
    right: -2px;
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #0a0e27;
}

.developer-badge-small i {
    color: white;
    font-size: 11px;
}

.developer-info-inline {
    flex: 1;
}

.developer-name-small {
    font-size: 18px;
    font-weight: 700;
    color: white;
    margin: 0 0 4px 0;
    font-family: 'Playfair Display', serif;
}

.developer-title-small {
    font-size: 13px;
    color: #667eea;
    font-weight: 600;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.developer-social-inline {
    display: flex;
    gap: 10px;
}

.dev-social-link-small {
    width: 36px;
    height: 36px;
    background: rgba(102, 126, 234, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #667eea;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(102, 126, 234, 0.3);
}

.dev-social-link-small:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
    border-color: transparent;
}

.dev-social-link-small i {
    font-size: 14px;
}

.footer-bottom-content {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 30px;
    align-items: center;
}

.footer-copyright {
    text-align: left;
}

.footer-legal-links {
    text-align: right;
}

@media (max-width: 1024px) {
    .footer-bottom-content {
        grid-template-columns: 1fr;
        gap: 25px;
        text-align: center;
    }
    
    .footer-copyright {
        text-align: center;
        order: 1;
    }
    
    .developer-card-inline {
        order: 2;
        justify-content: center;
    }
    
    .footer-legal-links {
        text-align: center;
        order: 3;
    }
}

@media (max-width: 768px) {
    .developer-card-inline {
        flex-direction: column;
        text-align: center;
        padding: 20px;
        gap: 15px;
    }
    
    .developer-info-inline {
        text-align: center;
    }
    
    .developer-social-inline {
        justify-content: center;
    }
    
    .developer-name-small {
        font-size: 16px;
    }
    
    .developer-title-small {
        font-size: 12px;
    }
}

/* Responsive Footer Corporate */
@media (max-width: 1200px) {
    .footer-grid-corporate {
        grid-template-columns: 2fr 1fr 1fr 1.5fr;
        gap: 40px;
    }
    
    .footer-col-corporate:nth-child(3) {
        display: none;
    }
}

@media (max-width: 968px) {
    .footer-grid-corporate {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    .footer-about {
        grid-column: 1 / -1;
        padding-right: 0;
    }
}

@media (max-width: 768px) {
    .footer-main-corporate {
        padding: 60px 0 40px;
    }
    
    .footer-grid-corporate {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    
    .footer-logo-img {
        height: 50px;
    }
    
    .footer-certifications {
        justify-content: center;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .footer-legal-links {
        justify-content: center;
    }
    
    .footer-payment-methods {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer-certifications {
        flex-direction: column;
        align-items: center;
    }
    
    .cert-badge {
        width: 100%;
        justify-content: center;
    }
}

/* ===== SCROLL TO TOP - ENHANCED ===== */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--primary-color), #e55a2b);
    color: var(--white);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
}
}

.scroll-top.active {
    opacity: 1;
    visibility: visible;
    animation: bounceIn 0.6s ease;
}

@keyframes bounceIn {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.scroll-top:hover {
    background: linear-gradient(135deg, #e55a2b, var(--secondary-color));
    transform: translateY(-8px) scale(1.1);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.6);
}
}

/* ===== RESPONSIVE DESIGN ===== */
/* Hide Mobile Book Now Button on Desktop - Force hide */
.mobile-book-now {
    display: none !important;
}

/* Show Desktop Book Now Button */
.btn-book-desktop {
    display: inline-block;
}

/* Hide Mobile Book Now Button on larger screens */
@media (min-width: 901px) {
    .mobile-book-now {
        display: none !important;
    }
    
    .btn-book-mobile {
        display: none !important;
    }
}

@media (max-width: 1200px) {
    .nav-wrapper {
        padding: 18px 30px;
    }
    
    .nav-link {
        font-size: 14px;
        padding: 8px 12px;
    }
    
    .btn-book {
        padding: 10px 24px;
        font-size: 14px;
    }
}

@media (max-width: 1024px) {
    .nav-wrapper {
        padding: 15px 25px;
    }
    
    .logo {
        font-size: 18px;
    }
    
    .logo-img {
        height: 50px;
    }
    
    .logo i {
        font-size: 24px;
    }
    
    .nav-link {
        font-size: 13px;
        padding: 8px 10px;
    }
    
    .btn-book {
        padding: 9px 20px;
        font-size: 13px;
    }
    
    .hero-title {
        font-size: 56px;
    }
    
    .about-wrapper {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        padding: 80px 0 30px 0;
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.2);
        transition: var(--transition);
        gap: 0;
        align-items: stretch;
        overflow-y: auto;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu li {
        border-bottom: 1px solid #f0f0f0;
    }
    
    .nav-link {
        padding: 18px 30px;
        display: block;
        font-size: 16px;
    }
    
    .nav-link::after {
        left: 30px;
        right: auto;
        width: 4px;
        height: 100%;
        bottom: 0;
        top: 0;
    }
    
    .nav-link:hover::after,
    .nav-link.active::after {
        transform: scaleY(1);
    }
    
    /* Mobile Dropdown */
    .dropdown {
        position: relative;
    }
    
    .dropdown-toggle {
        justify-content: space-between;
        width: 100%;
    }
    
    .dropdown-menu {
        position: static !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        box-shadow: none !important;
        border-radius: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
        background: #f8f8f8 !important;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease;
        min-width: 100% !important;
        width: 100% !important;
        border: none !important;
        left: 0 !important;
        right: 0 !important;
    }
    
    .dropdown-menu::before {
        display: none !important;
    }
    
    .dropdown.active .dropdown-menu {
        max-height: 700px;
        overflow-y: auto;
    }
    
    /* Mobile Dropdown Scrollbar */
    .dropdown-menu::-webkit-scrollbar {
        width: 4px;
    }
    
    .dropdown-menu::-webkit-scrollbar-track {
        background: #e0e0e0;
    }
    
    .dropdown-menu::-webkit-scrollbar-thumb {
        background: #27ae60;
        border-radius: 4px;
    }
    
    .dropdown.active .dropdown-toggle i {
        transform: rotate(180deg);
    }
    
    .dropdown-menu li {
        width: 100%;
        display: block;
    }
    
    .dropdown-menu a {
        padding: 16px 25px 16px 45px !important;
        font-size: 15px !important;
        background: #f8f8f8 !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        line-height: 1.5 !important;
        display: block !important;
        width: 100% !important;
        color: var(--text-dark) !important;
        font-weight: 500 !important;
    }
    
    .dropdown-menu a::before {
        left: 25px !important;
        width: 3px !important;
    }
    
    .dropdown-menu a::after {
        display: none !important;
    }
    
    .dropdown-menu a:hover {
        background: #e8e8e8 !important;
        padding-left: 50px !important;
        color: #27ae60 !important;
    }
    
    /* Hide Desktop Book Now Button on Mobile */
    .btn-book-desktop {
        display: none;
    }
    
    /* Show Mobile Book Now Button in Menu */
    .mobile-book-now {
        display: block;
        padding: 20px 30px;
        border-bottom: none !important;
    }
    
    .btn-book-mobile {
        width: 100%;
        padding: 14px 28px;
        background: var(--primary-color);
        color: var(--white);
        border: none;
        border-radius: 50px;
        font-weight: 600;
        font-size: 16px;
        cursor: pointer;
        transition: var(--transition);
        box-shadow: 0 4px 12px rgba(255, 107, 53, 0.25);
        text-align: center;
    }
    
    .btn-book-mobile:hover {
        background: #e55a2b;
        transform: translateY(-2px);
        box-shadow: 0 6px 16px rgba(255, 107, 53, 0.35);
    }
    
    .btn-book-mobile:active {
        transform: scale(0.95);
    }
    
    .hamburger {
        display: flex;
        z-index: 1001;
    }
}

@media (max-width: 768px) {
    .nav-wrapper {
        padding: 15px 20px;
    }
    
    .logo {
        font-size: 17px;
    }
    
    .logo-img {
        height: 45px;
    }
    
    .logo i {
        font-size: 22px;
    }
    
    .btn-book {
        padding: 9px 20px;
        font-size: 13px;
    }
    
    .hero {
        padding-top: 180px;
    }
    
    .hero-title {
        font-size: 42px;
    }
    
    .hero-text {
        font-size: 16px;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .categories-title {
        font-size: 36px;
    }
    
    .categories-grid-modern {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .category-title-modern {
        font-size: 16px;
    }
    
    .categories-grid,
    .destinations-slider,
    .packages-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-content h2 {
        font-size: 32px;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom .container {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero {
        padding-top: 200px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .categories-title {
        font-size: 28px;
    }
    
    .categories-grid-modern {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .category-image-modern {
        max-width: 350px; /* Increased from 280px for better tablet view */
        width: 85%; /* Takes 85% of available width */
        margin: 0 auto 20px;
    }
    
    .package-features {
        flex-direction: column;
        gap: 10px;
    }
}


/* ===== MODERN PACKAGES SECTION ===== */
.packages-modern {
    background: var(--white);
}

.section-header-modern {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 60px;
    text-align: center;
}

.header-left {
    flex: 1;
}

.section-label-modern {
    color: var(--primary-color);
    font-size: 16px;
    font-weight: 600;
    text-transform: capitalize;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 10px;
}

.section-title-modern {
    font-size: 48px;
    font-weight: 700;
    color: var(--dark-color);
    margin: 0;
}

.highlight-green {
    color: #27ae60;
}

.packages-grid-modern {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.package-card-modern {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.package-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.package-image-modern {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.package-logo {
    position: absolute;
    top: 15px;
    left: 15px;
    height: 60px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    padding: 8px 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    transition: var(--transition);
}

.package-logo img {
    height: 100%;
    width: auto;
    object-fit: contain;
}

.package-card-modern:hover .package-logo {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.package-image-modern img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.package-overlay-modern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), transparent);
    display: flex;
    justify-content: flex-end;
    padding: 20px;
}

.wishlist-btn-modern {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--white);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.wishlist-btn-modern:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: scale(1.1);
}

.package-content-modern {
    padding: 25px;
}

.package-reviews {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.review-count {
    font-size: 13px;
    color: var(--text-light);
}

.package-stars {
    display: flex;
    gap: 3px;
}

.package-stars i {
    color: #ffc107;
    font-size: 14px;
}

.package-title-modern {
    font-size: 20px;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 12px;
    line-height: 1.4;
}

.package-description-modern {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.package-meta-modern {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    padding: 15px 0;
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-light);
}

.meta-item i {
    color: var(--primary-color);
    font-size: 16px;
}

.package-footer-modern {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.package-price-modern {
    font-size: 28px;
    font-weight: 700;
    color: var(--dark-color);
}

.btn-book-modern {
    padding: 12px 24px;
    background: #27ae60;
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-book-modern:hover {
    background: #229954;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(39, 174, 96, 0.3);
}

.btn-book-modern i {
    font-size: 12px;
}

/* Responsive */
@media (max-width: 1400px) {
    .packages-grid-modern {
        grid-template-columns: repeat(3, 1fr);
    }
}

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

@media (max-width: 768px) {
    .section-header-modern {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    
    .section-title-modern {
        font-size: 32px;
    }
    
    .packages-grid-modern {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 600px) {
    .packages-grid-modern {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .section-title-modern {
        font-size: 28px;
    }
    
    .package-footer-modern {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
    
    .btn-book-modern {
        width: 100%;
        justify-content: center;
    }
}


/* ===== ABOUT US MODAL - PREMIUM DESIGN ===== */
.about-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.about-modal.active {
    display: block;
    opacity: 1;
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-container {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 95%;
    max-width: 1400px;
    max-height: 90vh;
    background: var(--white);
    border-radius: 30px;
    overflow-y: auto;
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.5);
    animation: modalSlideIn 0.4s ease;
}

@keyframes modalSlideIn {
    from {
        transform: translate(-50%, -60%);
        opacity: 0;
    }
    to {
        transform: translate(-50%, -50%);
        opacity: 1;
    }
}

.modal-close {
    position: sticky;
    top: 20px;
    right: 20px;
    float: right;
    width: 50px;
    height: 50px;
    background: #ff6b35;
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.4);
}

.modal-close:hover {
    background: #ff4500;
    transform: rotate(90deg) scale(1.1);
}

.modal-content-wrapper {
    padding: 60px 80px 80px;
}

/* Modal Testimonials */
.modal-testimonials {
    margin-top: 80px;
    padding-top: 60px;
    border-top: 2px solid #f0f0f0;
}

.testimonials-grid-modal {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.testimonial-card-modal {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    text-align: center;
    position: relative;
    border: 2px solid #f0f0f0;
    transition: var(--transition);
}

.testimonial-card-modal:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
    border-color: #27ae60;
}

.testimonial-avatar {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid #f0f0f0;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.quote-icon {
    font-size: 40px;
    color: #27ae60;
    margin-bottom: 15px;
    opacity: 0.3;
}

.testimonial-card-modal h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.testimonial-card-modal p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 15px;
}

.read-more {
    color: #27ae60;
    font-weight: 600;
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
}

.read-more:hover {
    color: #229954;
    text-decoration: underline;
}

.testimonial-card-modal .testimonial-rating {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-top: 20px;
}

.testimonial-card-modal .testimonial-rating i {
    color: #ffc107;
    font-size: 18px;
}

/* Responsive Modal */
@media (max-width: 1200px) {
    .modal-content-wrapper {
        padding: 40px 50px 60px;
    }
    
    .about-content-grid {
        gap: 50px;
    }
}

@media (max-width: 1024px) {
    .testimonials-grid-modal {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .modal-container {
        width: 98%;
        max-height: 95vh;
        border-radius: 20px;
    }
    
    .modal-content-wrapper {
        padding: 30px 25px 40px;
    }
    
    .modal-close {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
}


/* ===== BOOKING MODAL - ENTERPRISE PROFESSIONAL DESIGN ===== */
.booking-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 20px;
}

.booking-modal-overlay.active {
    display: flex;
    opacity: 1;
    visibility: visible;
}

.booking-modal {
    background: #ffffff;
    border-radius: 12px;
    max-width: 440px;
    width: 100%;
    max-height: 85vh;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
    animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.modal-close-btn {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 32px;
    height: 32px;
    background: transparent;
    border: none;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    z-index: 10;
    color: #6b7280;
}

.modal-close-btn:hover {
    background: #f3f4f6;
    color: #111827;
}

.modal-close-btn i {
    font-size: 16px;
}

.modal-content {
    padding: 0;
    overflow-y: auto;
    max-height: 85vh;
}

/* Scrollbar */
.modal-content::-webkit-scrollbar {
    width: 6px;
}

.modal-content::-webkit-scrollbar-track {
    background: #f9fafb;
}

.modal-content::-webkit-scrollbar-thumb {
    background: #d1d5db;
    border-radius: 3px;
}

.modal-content::-webkit-scrollbar-thumb:hover {
    background: #9ca3af;
}

.modal-header {
    padding: 28px 28px 20px;
    border-bottom: 1px solid #e5e7eb;
    background: #ffffff;
}

.modal-header h2 {
    font-size: 22px;
    font-weight: 600;
    color: #111827;
    margin: 0 0 6px 0;
    letter-spacing: -0.025em;
    line-height: 1.3;
}

.modal-header p {
    font-size: 13px;
    color: #6b7280;
    margin: 0;
    font-weight: 400;
    line-height: 1.5;
}

.booking-form {
    padding: 24px 28px 28px;
}

.form-row {
    margin-bottom: 16px;
}

.form-row:last-of-type {
    margin-bottom: 20px;
}

.form-group {
    width: 100%;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: #374151;
    margin-bottom: 6px;
    letter-spacing: -0.01em;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    color: #111827;
    transition: all 0.2s ease;
    background: #ffffff;
    line-height: 1.5;
}

.form-group input:hover,
.form-group select:hover {
    border-color: #9ca3af;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-group input::placeholder {
    color: #9ca3af;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236b7280' d='M6 8L2 4h8z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 36px;
}

.form-group select option {
    padding: 10px;
}

.btn-submit-booking {
    width: 100%;
    padding: 11px 20px;
    background: #2563eb;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 4px;
    letter-spacing: -0.01em;
}

.btn-submit-booking:hover {
    background: #1d4ed8;
}

.btn-submit-booking:active {
    transform: scale(0.98);
}

.btn-submit-booking:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.2);
}

.form-footer {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e5e7eb;
}

.trust-indicators {
    display: flex;
    justify-content: center;
    gap: 24px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.trust-item i {
    font-size: 13px;
    color: #6b7280;
}

.trust-item span {
    font-size: 12px;
    color: #6b7280;
    font-weight: 400;
}

/* Responsive Design */
@media (max-width: 768px) {
    .booking-modal {
        max-width: 100%;
        border-radius: 0;
        max-height: 100vh;
    }

    .modal-content {
        max-height: 100vh;
    }

    .modal-header {
        padding: 24px 24px 18px;
    }

    .modal-header h2 {
        font-size: 20px;
    }

    .modal-header p {
        font-size: 12px;
    }

    .booking-form {
        padding: 20px 24px 24px;
    }

    .form-row {
        margin-bottom: 14px;
    }

    .trust-indicators {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .modal-header {
        padding: 20px 20px 16px;
    }

    .modal-header h2 {
        font-size: 19px;
    }

    .booking-form {
        padding: 18px 20px 22px;
    }

    .modal-close-btn {
        top: 12px;
        right: 12px;
    }

    .form-group input,
    .form-group select {
        font-size: 16px; /* Prevents zoom on iOS */
    }
}
    margin-top: 8px;
    letter-spacing: -0.01em;
}

.btn-submit-booking:hover {
    background: #1d4ed8;
}

.btn-submit-booking:active {
    transform: scale(0.98);
}

.btn-submit-booking:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.2);
}

.form-footer {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid #e5e7eb;
}

.trust-indicators {
    display: flex;
    justify-content: center;
    gap: 32px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.trust-item i {
    font-size: 14px;
    color: #6b7280;
}

.trust-item span {
    font-size: 13px;
    color: #6b7280;
    font-weight: 400;
}

/* Responsive Design */
@media (max-width: 768px) {
    .booking-modal {
        max-width: 100%;
        border-radius: 0;
        max-height: 100vh;
    }

    .modal-header {
        padding: 24px 24px 20px;
    }

    .modal-header h2 {
        font-size: 22px;
    }

    .modal-header p {
        font-size: 13px;
    }

    .booking-form {
        padding: 24px;
    }

    .form-row {
        margin-bottom: 18px;
    }

    .trust-indicators {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .modal-header {
        padding: 20px 20px 16px;
    }

    .modal-header h2 {
        font-size: 20px;
    }

    .booking-form {
        padding: 20px;
    }

    .modal-close-btn {
        top: 12px;
        right: 12px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 16px; /* Prevents zoom on iOS */
    }
}
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
    font-size: 13px;
    color: #636e72;
}

.modal-footer-text i {
    color: #4CAF50;
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .booking-modal {
        max-width: 95%;
        border-radius: 20px;
    }

    .modal-header {
        padding: 32px 30px 24px;
    }

    .modal-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 16px;
    }

    .modal-icon i {
        font-size: 24px;
    }

    .modal-header h2 {
        font-size: 24px;
    }

    .modal-header p {
        font-size: 13px;
    }

    .booking-form {
        padding: 24px 30px 32px;
    }

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

    .modal-close-btn {
        top: 16px;
        right: 16px;
        width: 32px;
        height: 32px;
    }

    .modal-close-btn i {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .booking-modal-overlay {
        padding: 10px;
    }

    .booking-modal {
        border-radius: 16px;
    }

    .modal-header {
        padding: 28px 24px 20px;
    }

    .modal-icon {
        width: 45px;
        height: 45px;
        margin-bottom: 14px;
    }

    .modal-icon i {
        font-size: 22px;
    }

    .modal-header h2 {
        font-size: 22px;
    }

    .booking-form {
        padding: 20px 24px 28px;
    }

    .form-group input,
    .form-group select {
        padding: 12px 14px;
        font-size: 14px;
    }

    .btn-submit-booking {
        padding: 14px;
        font-size: 15px;
    }
}
    background: rgba(26, 26, 26, 0.8);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3b82f6;
    background: rgba(26, 26, 26, 0.9);
    box-shadow: 
        0 0 0 3px rgba(59, 130, 246, 0.1),
        0 0 20px rgba(59, 130, 246, 0.3),
        inset 0 2px 8px rgba(0, 0, 0, 0.3);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%233b82f6' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
    padding-right: 45px;
}

.form-group select option {
    background: #1a1a1a;
    color: #ffffff;
    padding: 10px;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
    line-height: 1.6;
}

.btn-submit-booking {
    width: 100%;
    padding: 16px 24px;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: #ffffff;
    border: 1px solid rgba(59, 130, 246, 0.5);
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    margin-top: 8px;
    letter-spacing: 0.5px;
    box-shadow: 
        0 0 30px rgba(59, 130, 246, 0.4),
        0 8px 20px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

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

.btn-submit-booking:hover::before {
    left: 100%;
}

.btn-submit-booking:hover {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    box-shadow: 
        0 0 40px rgba(59, 130, 246, 0.6),
        0 12px 30px rgba(0, 0, 0, 0.4);
    transform: translateY(-2px);
}

.btn-submit-booking:active {
    transform: translateY(0);
}

.btn-submit-booking i {
    font-size: 16px;
}

.modal-footer-text {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid rgba(59, 130, 246, 0.2);
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

.modal-footer-text i {
    color: #3b82f6;
    font-size: 14px;
}

/* Form Validation States - Dark Theme */
.form-group input:invalid:not(:placeholder-shown),
.form-group select:invalid:not(:placeholder-shown),
.form-group textarea:invalid:not(:placeholder-shown) {
    border-color: rgba(239, 68, 68, 0.6);
    box-shadow: 0 0 15px rgba(239, 68, 68, 0.2);
}

.form-group input:valid:not(:placeholder-shown),
.form-group select:valid:not(:placeholder-shown) {
    border-color: rgba(34, 197, 94, 0.6);
    box-shadow: 0 0 15px rgba(34, 197, 94, 0.2);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .booking-modal {
        max-width: 700px;
    }
}

@media (max-width: 768px) {
    .booking-modal {
        max-width: 95%;
        border-radius: 16px;
    }

    .modal-header {
        padding: 32px 32px 24px;
    }

    .modal-header h2 {
        font-size: 26px;
    }

    .modal-header p {
        font-size: 14px;
    }

    .booking-form {
        padding: 32px 32px 40px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

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

    .modal-close-btn {
        top: 20px;
        right: 20px;
        width: 36px;
        height: 36px;
    }

    .modal-close-btn i {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .booking-modal-overlay {
        padding: 10px;
    }

    .modal-header {
        padding: 24px 24px 20px;
    }

    .modal-header h2 {
        font-size: 22px;
    }

    .modal-header p {
        font-size: 13px;
    }

    .booking-form {
        padding: 24px 24px 32px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px 16px;
        font-size: 14px;
    }

    .btn-submit-booking {
        padding: 14px 20px;
        font-size: 15px;
    }

    .modal-close-btn {
        top: 16px;
        right: 16px;
    }
}

/* Loading State - Dark Theme */
.btn-submit-booking.loading {
    pointer-events: none;
    opacity: 0.7;
    position: relative;
}

.btn-submit-booking.loading span {
    opacity: 0;
}

.btn-submit-booking.loading::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: #ffffff;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

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

/* Glow Effect on Focus */
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    animation: inputGlow 2s ease-in-out infinite;
}

@keyframes inputGlow {
    0%, 100% {
        box-shadow: 
            0 0 0 3px rgba(59, 130, 246, 0.1),
            0 0 20px rgba(59, 130, 246, 0.3),
            inset 0 2px 8px rgba(0, 0, 0, 0.3);
    }
    50% {
        box-shadow: 
            0 0 0 3px rgba(59, 130, 246, 0.15),
            0 0 30px rgba(59, 130, 246, 0.4),
            inset 0 2px 8px rgba(0, 0, 0, 0.3);
    }
}

/* Disabled State - Dark Theme */
.form-group input:disabled,
.form-group select:disabled,
.form-group textarea:disabled {
    background: rgba(26, 26, 26, 0.3);
    color: rgba(255, 255, 255, 0.3);
    cursor: not-allowed;
    border-color: rgba(59, 130, 246, 0.1);
}


/* ===== COMPREHENSIVE MOBILE RESPONSIVE CSS ===== */

/* Mobile First - Extra Small Devices (320px - 480px) */
@media (max-width: 480px) {
    /* Container */
    .container {
        padding: 0 15px;
    }

    /* Navbar Mobile */
    .navbar {
        padding: 10px 0;
    }

    .logo span {
        font-size: 16px;
    }

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

    .nav-menu {
        padding: 20px;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
    }

    .nav-menu li {
        margin: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-link {
        padding: 15px 10px;
        font-size: 15px;
    }

    .dropdown-menu {
        position: static;
        box-shadow: none;
        background: rgba(255, 255, 255, 0.05);
        margin-top: 0;
    }

    .dropdown-menu li a {
        padding: 12px 20px;
        font-size: 14px;
    }

    /* Hero Section Mobile */
    .hero {
        min-height: 70vh;
        padding-top: 80px;
    }

    .hero-badge {
        font-size: 11px;
        padding: 6px 14px;
        margin-bottom: 15px;
    }

    .hero-title {
        font-size: 32px !important;
        line-height: 1.2;
        margin-bottom: 15px;
    }

    /* Categories Mobile */
    .categories-grid-modern {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .category-card-modern {
        max-width: 100%;
    }

    .category-image-modern {
        max-width: 320px; /* Increased from 200px for better mobile view */
        width: 90%; /* Takes 90% of available width */
        margin: 0 auto 15px;
    }

    /* Destinations Mobile */
    .destinations-slider {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .destination-card {
        max-width: 100%;
    }

    .destination-image {
        height: 220px;
    }

    .destination-info h3 {
        font-size: 20px;
    }

    /* Packages Mobile */
    .packages-grid-modern {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .package-card-modern {
        max-width: 100%;
    }

    .package-title-modern {
        font-size: 20px;
    }

    .package-description-modern {
        font-size: 14px;
        line-height: 1.6;
    }

    /* Testimonials Mobile */
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Footer Mobile */
    .footer-grid-corporate {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .footer-logo-corporate {
        justify-content: center;
    }

    .footer-links-list {
        text-align: center;
    }

    .footer-contact-list {
        text-align: center;
    }

    .social-links-corporate {
        justify-content: center;
    }

    .footer-bottom-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .footer-legal-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .footer-payment-methods {
        justify-content: center;
    }

    /* Section Titles Mobile */
    .section-title {
        font-size: 28px;
    }

    .section-label {
        font-size: 12px;
    }

    /* Buttons Mobile */
    .btn, .btn-primary, .btn-outline {
        padding: 12px 24px;
        font-size: 14px;
    }

    .btn-book {
        padding: 10px 20px;
        font-size: 14px;
    }

    /* Cards General Mobile */
    .card {
        padding: 20px;
    }

    /* Scroll to Top Mobile */
    .scroll-top {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
    }
}

/* Small Devices (481px - 767px) */
@media (min-width: 481px) and (max-width: 767px) {
    /* Container */
    .container {
        padding: 0 20px;
    }

    /* Hero */
    .hero-title {
        font-size: 38px !important;
    }

    /* Categories */
    .categories-grid-modern {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    /* Destinations */
    .destinations-slider {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    /* Packages */
    .packages-grid-modern {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    /* Footer */
    .footer-grid-corporate {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

/* Medium Devices - Tablets (768px - 1024px) */
@media (min-width: 768px) and (max-width: 1024px) {
    /* Container */
    .container {
        max-width: 720px;
    }

    /* Navbar */
    .logo-img {
        height: 50px;
    }

    /* Hero */
    .hero-title {
        font-size: 48px;
    }

    /* Categories */
    .categories-grid-modern {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    /* Destinations */
    .destinations-slider {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    /* Packages */
    .packages-grid-modern {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    /* Footer */
    .footer-grid-corporate {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

/* Large Tablets & Small Laptops (1025px - 1280px) */
@media (min-width: 1025px) and (max-width: 1280px) {
    .container {
        max-width: 960px;
    }

    .hero-title {
        font-size: 60px;
    }

    .categories-grid-modern {
        grid-template-columns: repeat(3, 1fr);
    }

    .destinations-slider {
        grid-template-columns: repeat(3, 1fr);
    }

    .packages-grid-modern {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Landscape Mobile Devices */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        min-height: 100vh;
        padding-top: 100px;
    }

    .hero-title {
        font-size: 28px !important;
    }

    .hero-badge {
        font-size: 10px;
        padding: 5px 12px;
    }

    .nav-menu {
        max-height: calc(100vh - 60px);
    }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
    /* Larger touch targets */
    .btn, .nav-link, a {
        min-height: 44px;
        display: inline-flex;
        align-items: center;
    }

    /* Remove hover effects on touch devices */
    .destination-card:hover,
    .package-card-modern:hover,
    .category-card-modern:hover {
        transform: none;
    }

    /* Better tap feedback */
    .btn:active,
    .nav-link:active {
        opacity: 0.7;
    }
}

/* High DPI Displays (Retina) */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    /* Optimize images for retina */
    img {
        image-rendering: -webkit-optimize-contrast;
    }
}

/* Floating Social Icons */
.floating-social-icons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.social-icon-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: visible;
}

.icon-label {
    position: absolute;
    right: 70px;
    background: rgba(0, 0, 0, 0.85);
    color: white;
    padding: 8px 15px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: all 0.3s ease;
    pointer-events: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.social-icon-btn:hover .icon-label {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.social-icon-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transform: scale(0);
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.social-icon-btn:hover::before {
    transform: scale(1);
}

.social-icon-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}

.social-icon-btn i {
    font-size: 28px;
    color: white;
    position: relative;
    z-index: 1;
    animation: pulse 2s infinite;
}

.whatsapp-btn {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

.whatsapp-btn:hover {
    background: linear-gradient(135deg, #128C7E 0%, #075E54 100%);
}

.call-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.call-btn:hover {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
}

.scroll-top-btn {
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
    border: none;
    cursor: pointer;
}

.scroll-top-btn:hover {
    background: linear-gradient(135deg, #ff8c42 0%, #ff6b35 100%);
}

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

@media (max-width: 768px) {
    .floating-social-icons {
        bottom: 20px;
        right: 20px;
    }
    .social-icon-btn {
        width: 50px;
        height: 50px;
    }
    .social-icon-btn i {
        font-size: 24px;
    }
    .icon-label {
        font-size: 11px;
        padding: 6px 12px;
        right: 60px;
    }
}

/* Visiting Card Modal */
.visiting-card-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.visiting-card-modal.active {
    display: flex;
    opacity: 1;
    visibility: visible;
}

.visiting-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
}

.visiting-card-container {
    position: relative;
    z-index: 10001;
    max-width: 90%;
    max-height: 90vh;
    animation: modalZoomIn 0.3s ease;
}

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

.visiting-card-image {
    max-width: 100%;
    max-height: 90vh;
    width: auto;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    display: block;
}

.visiting-card-close {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 40px;
    height: 40px;
    background: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #333;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    z-index: 10002;
}

.visiting-card-close:hover {
    background: #ff6b35;
    color: white;
    transform: rotate(90deg);
}

.visiting-card-download {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 20px rgba(40, 167, 69, 0.4);
    transition: all 0.3s ease;
    z-index: 10003;
    white-space: nowrap;
}

.visiting-card-download:hover {
    background: linear-gradient(135deg, #20c997 0%, #28a745 100%);
    transform: translateX(-50%) translateY(-3px);
    box-shadow: 0 6px 25px rgba(40, 167, 69, 0.6);
}

.visiting-card-download i {
    font-size: 18px;
    animation: bounce 2s infinite;
}

@media (max-width: 768px) {
    .visiting-card-container {
        max-width: 95%;
    }
    
    .visiting-card-close {
        top: -10px;
        right: -10px;
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
    
    .visiting-card-download {
        bottom: -45px;
        padding: 10px 24px;
        font-size: 14px;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .hamburger,
    .scroll-top,
    .booking-modal-overlay,
    .footer-bottom-corporate {
        display: none !important;
    }

    body {
        font-size: 12pt;
    }

    .container {
        max-width: 100%;
    }
}
