/* 
   Nainika Holidays - Design System
   Primary Color: #00ADEF (Bright Blue)
   Secondary Color: #2E3192 (Deep Blue)
   Accent/Text: #1A1A1A
   Background: #FFFFFF / #F9F9F9
*/

:root {
    --primary-color: #00ADEF;
    --primary-dark: #0087BA;
    --secondary-color: #2E3192;
    --text-color: #333333;
    --text-light: #666666;
    --white: #ffffff;
    --light-bg: #f8fbff;
    --gray-bg: #f4f4f4;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --container-width: 1200px;
    --header-height: 150px;
}

/* Base Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

html,
body {
    margin: 0;
    padding: 0;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    position: relative;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--white);
}

/* Animations Hub */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-scale.active {
    opacity: 1;
    transform: scale(1);
}

/* Staggered Delay Utilities */
.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-3 {
    transition-delay: 0.3s;
}

.delay-4 {
    transition-delay: 0.4s;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Button Styles */
.btn-enquire {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(46, 49, 146, 0.2);
    transition: var(--transition);
}

.btn-enquire:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(46, 49, 146, 0.3);
    color: var(--white);
}

/* ==========================================
   HEADER SECTION
========================================== */
.main-header {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6) 0%, transparent 100%);
    height: 100px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    align-items: center;
    transition: all 0.3s ease-in-out;
}

.main-header.scrolled {
    background: var(--white);
    height: 80px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
}

.main-header.scrolled .logo img {
    height: 90px;
}

.main-header.scrolled .desktop-nav ul li a {
    color: var(--secondary-color);
}

.main-header .container {
    width: 100%;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo */
.logo a {
    display: block;
}

.logo img {
    height: 120px;
    width: auto;
    object-fit: contain;
    transition: var(--transition);
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.3));
}


/* Desktop Navigation */
.desktop-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.desktop-nav ul {
    display: flex;
    gap: 30px;
    align-items: center;
}

.desktop-nav ul li a {
    font-size: 15px;
    font-weight: 600;
    color: var(--white);
    position: relative;
    padding: 10px 0;
    text-transform: none;
    letter-spacing: 0.3px;
    transition: var(--transition);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.main-header:not(.home-header) .desktop-nav ul li a {
    color: var(--secondary-color);
    text-shadow: none;
}

.desktop-nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transition: var(--transition);
}

.desktop-nav ul li a:hover {
    color: var(--primary-color);
}

.desktop-nav ul li a:hover::after {
    width: 100%;
}

.desktop-nav ul li a.active {
    color: var(--primary-color);
    font-weight: 600;
}

.desktop-nav ul li a.active::after {
    width: 100%;
}



/* Right Side Elements */
.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.btn-enquire-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(46, 49, 146, 0.2);
}

.btn-enquire-header:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(46, 49, 146, 0.3);
    color: var(--white);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 100%;
    height: 3px;
    background-color: var(--secondary-color);
    border-radius: 10px;
    transition: var(--transition);
}

.main-header.scrolled .mobile-menu-toggle span,
.main-header:not(.home-header) .mobile-menu-toggle span,
.mobile-menu-toggle.active span {
    background-color: var(--secondary-color);
}

.home-header:not(.scrolled) .mobile-menu-toggle:not(.active) span {
    background-color: var(--white);
}

/* Mobile Navigation */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background-color: var(--white);
    z-index: 1000;
    padding: 100px 30px 40px;
    transition: all 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    overflow-y: auto;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
}

.mobile-nav.active {
    right: 0;
}

.mobile-nav-content {
    width: 100%;
}

.mobile-nav-content ul {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 30px;
    text-align: left;
}

.mobile-nav-content ul li a,
.mobile-dropdown-toggle {
    font-size: 16px;
    /* Slightly smaller for better fit */
    font-weight: 700;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    color: var(--secondary-color);
    border-bottom: 1px solid #f5f5f5;
    cursor: pointer;
}

.mobile-nav-content ul li a span,
.mobile-dropdown-toggle span {
    display: flex;
    align-items: center;
    gap: 15px;
}

.mobile-nav-content ul li a i,
.mobile-dropdown-toggle i:first-child,
.mobile-nav-content ul li a span i {
    width: 25px;
    text-align: center;
    color: var(--primary-color);
}



.mobile-dropdown-menu li {
    padding: 5px 0;
}

.mobile-dropdown-menu li strong {
    display: block;
    font-size: 13px;
    color: var(--primary-color);
    text-transform: uppercase;
    margin-top: 10px;
    margin-bottom: 5px;
}

.mobile-dropdown-menu li a {
    font-size: 15px;
    font-weight: 500;
    padding: 5px 0;
    border: none;
}

.mobile-nav-content ul li a i,
.mobile-dropdown-toggle i {
    width: 25px;
    color: var(--primary-color);
}

.mobile-menu-footer {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.mobile-contact-info p {
    margin-bottom: 12px;
    color: var(--text-light);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.mobile-contact-info i {
    color: var(--primary-color);
}

.mobile-socials {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.mobile-socials a {
    width: 35px;
    height: 35px;
    background: #f5f5f5;
    color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: var(--transition);
}

.mobile-socials a:hover {
    background: var(--primary-color);
    color: var(--white);
}

.mobile-cta {
    margin-top: 35px;
}

/* ==========================================
   FOOTER SECTION
========================================== */
.main-footer {
    background-color: #111111;
    color: var(--white);
    padding: 40px 0 0;
    margin-top: 0;
    /* Space from content */
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.2fr 1.2fr 1.5fr;
    gap: 40px;
    padding-bottom: 60px;
}

.footer-col h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--primary-color);
    position: relative;
    display: inline-block;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--secondary-color);
}

.footer-col p {
    color: #cccccc;
    font-size: 15px;
    margin-bottom: 20px;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #cccccc;
    font-size: 15px;
}

.footer-col ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--white);
    font-size: 18px;
}

.social-links a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

/* Contact Info Item */
.contact-info-item {
    display: flex;
    gap: 15px;
    margin-bottom: 18px;
    align-items: flex-start;
}

.contact-info-item i {
    color: var(--primary-color);
    font-size: 18px;
    margin-top: 5px;
}

.contact-info-item p {
    margin-bottom: 0;
    font-size: 14px;
}

/* Footer Bottom Bar */
.footer-bottom {
    background-color: var(--primary-color);
    padding: 20px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: var(--white);
    margin: 0;
    opacity: 0.8;
}

/* ==========================================
   HERO SEARCH INTEGRATION
========================================== */


/* Packages Redesign */

/* Minimalist Package Cards (Screenshot Match) */
/* Detailed Package Cards (Screenshot Match) */
.package-card-detailed {
    background: white;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    margin: 10px;
}

.package-card-detailed:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 173, 239, 0.15);
}

.package-img-box {
    position: relative;
    height: 160px;
    overflow: hidden;
}

.package-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.package-card-detailed:hover .package-img-box img {
    transform: scale(1.1);
}

.package-status-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #3f51b5;
    color: white;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    z-index: 10;
    font-family: 'Outfit', sans-serif;
}

.package-status-badge.premium {
    background: var(--secondary-color);
}

.package-status-badge.best-seller {
    background: #1a237e;
}

.package-status-badge.trending {
    background: #283593;
}

.package-detailed-content {
    padding: 15px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.package-detailed-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 5px;
    font-family: 'Outfit', sans-serif;
}

.package-detailed-desc {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.4;
    margin-bottom: 10px;
}

.read-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--primary-color);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    margin-bottom: 15px;
    transition: var(--transition);
    user-select: none;
}

.read-more-btn:hover {
    color: var(--secondary-color);
    gap: 8px;
}

.read-more-btn::after {
    content: '\f107';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    transition: transform 0.3s ease;
}

.read-more-btn.active::after {
    transform: rotate(180deg);
}

.package-detailed-desc {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.4;
    margin-bottom: 10px;
}

.package-details-box {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 8px 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.detail-label {
    font-size: 13px;
    font-weight: 600;
    color: #333;
}

.detail-route {
    font-size: 12px;
    color: #666;
}

.btn-package-view {
    display: block;
    width: 100%;
    padding: 10px;
    text-align: center;
    background: linear-gradient(90deg, #00adef 0%, #2e3192 100%);
    color: white;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: 'Outfit', sans-serif;
    margin-top: auto;
}

.btn-package-view:hover {
    box-shadow: 0 8px 20px rgba(46, 49, 146, 0.3);
    transform: brightness(1.1);
    color: white;
}

/* View All Button */
.btn-view-all {
    display: inline-block;
    padding: 12px 35px;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: 'Outfit', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-view-all:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 173, 239, 0.2);
}

.packages-display .container {
    position: relative;
    /* Base for arrows */
    padding: 0 60px;
    /* Space for arrows */
}

/* Minimal Arrow Styling */
.packages-display .packages-swiper {
    padding: 20px 0 80px !important;
    overflow: hidden;
}

/* Arrows will now sit outside the wrapper if we wrap them correctly or adjust positions */
.packages-display .minimal-arrow {
    width: 50px !important;
    height: 50px !important;
    background: white !important;
    color: var(--primary-color) !important;
    border-radius: 50% !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1) !important;
    top: 40% !important;
    z-index: 100 !important;
    transition: all 0.3s ease;
}

.packages-display .minimal-arrow:hover {
    background: var(--primary-color) !important;
    color: white !important;
    transform: scale(1.1);
}

.packages-display .swiper-button-next {
    right: 0 !important;
    /* Sitting in container padding area */
}

.packages-display .swiper-button-prev {
    left: 0 !important;
    /* Sitting in container padding area */
}

.packages-display .minimal-arrow::after {
    font-size: 20px !important;
    font-weight: 900;
}

/* Swiper Specific Styling */
.packages-swiper {
    padding: 20px 20px 80px !important;
    position: relative;
}

.packages-swiper .swiper-slide {
    height: auto;
    display: flex;
}

.packages-swiper .package-card {
    width: 100%;
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--secondary-color) !important;
    background: white;
    width: 55px !important;
    height: 55px !important;
    border-radius: 50%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    z-index: 100;
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 18px !important;
    font-weight: 900;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #ccc;
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: var(--primary-color) !important;
    width: 30px;
    border-radius: 20px;
}

.package-card {
    background: var(--white);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    border: none;
    position: relative;
}

.package-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(0, 173, 239, 0.15);
}

.package-img {
    height: 200px;
    position: relative;
    overflow: hidden;
}

.package-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.package-card:hover .package-img img {
    transform: scale(1.1);
}

/* Price Badge */
.package-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--secondary-color);
    color: var(--white);
    padding: 8px 15px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    z-index: 10;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.package-img::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.4), transparent);
}

.package-content {
    padding: 20px;
    position: relative;
}

.package-top {
    display: block;
    /* Stacked layout */
    margin-bottom: 20px;
}

.package-title-box {
    border-left: none;
    /* Removed border */
    padding-left: 0;
}

.package-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--secondary-color);
    text-transform: none;
    margin-bottom: 5px;
}

.package-icons {
    position: absolute;
    top: -25px;
    right: 30px;
    display: flex;
    gap: 12px;
}

.package-icons a {
    width: 50px;
    height: 50px;
    background: var(--white);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    color: var(--primary-color);
}

.package-icons a.icon-wa {
    color: #25D366;
}

.icon-wa {
    background-color: #25D366;
}

.icon-phone {
    background-color: var(--primary-color);
}

.package-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #f0f0f0;
    padding-top: 20px;
    margin-bottom: 0;
}

.package-duration {
    margin-bottom: 0;
    font-size: 13px;
    background: var(--light-bg);
    padding: 4px 12px;
    border-radius: 4px;
}

.package-itinerary {
    display: block;
    color: #888;
    font-size: 14px;
}

.btn-details {
    display: block;
    width: 100%;
    text-align: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    padding: 12px 20px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 14px;
    margin-top: 15px;
    border: none;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(46, 49, 146, 0.2);
}

.btn-details:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(46, 49, 146, 0.3);
    color: var(--white);
    filter: brightness(1.1);
}

/* Hero Slider Redesign */
.hero-slider-section {
    height: 90vh;
    position: relative;
    overflow: visible;
    /* Changed from hidden to show the search dropdown fully */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-slider-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.5));
    z-index: 5;
    pointer-events: none;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    z-index: 1;
}

.slide.active {
    opacity: 1;
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 50;
    /* Increased to be above slider dots (z:20) and overlay (z:5) */
    width: 100%;
}

.hero-text-box h1 {
    font-size: clamp(2rem, 4.5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.1;
    color: var(--white);
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.hero-text-box h1 span {
    color: var(--primary-color);
}

.slider-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 20;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.dot.active {
    background: var(--white);
    transform: scale(1.3);
    border-color: var(--white);
}

.dot:hover {
    background: var(--primary-color);
}

.hero-text-box p {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    font-weight: 600;
    max-width: 800px;
    margin: 0 auto 40px;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.btn-hero {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 12px 35px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    display: inline-block;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(46, 49, 146, 0.3);
}

.btn-hero:hover {
    background-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 173, 239, 0.4);
}


/* Header Contact Button */
.btn-header-contact {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 10px 30px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    transition: var(--transition);
}

.btn-header-contact:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

/* Hero Stats Bar */
.hero-stats {
    position: absolute;
    bottom: 40px;
    left: 0;
    width: 100%;
    z-index: 2;
}

.stats-swiper {
    position: relative;
    padding: 10px 0;
}

.stat-item {
    text-align: center;
    padding: 10px;
}

.stat-item h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--white);
}

.stat-item p {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
    color: var(--white);
}

@media (max-width: 768px) {
    .stat-section {
        padding: 60px 0;
    }
}

.hero-placeholder {
    padding-top: 100px;
}

/* ==========================================
   RESPONSIVE DESIGN
========================================== */

/* ==========================================
   TESTIMONIALS REDESIGN
========================================= */
/* Styles moved to customization block below */

.t-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.t-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.t-card-img {
    height: 180px;
    overflow: hidden;
}

.t-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.t-card-body {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.t-card-user {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.user-initial {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #fff;
    font-size: 18px;
}

.user-name {
    font-weight: 700;
    color: #333;
    font-size: 16px;
}

.t-card-stars {
    color: #ffc107;
    margin-bottom: 15px;
    font-size: 14px;
    display: flex;
    gap: 5px;
    align-items: center;
}

.t-card-stars span {
    color: #666;
    font-weight: 600;
    margin-left: 5px;
}

.t-card-text {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.t-card-text.expanded {
    display: block;
    -webkit-line-clamp: initial;
    line-clamp: initial;
    overflow: visible;
}

.t-card-link {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 14px;
    margin-top: auto;
    display: inline-block;
    cursor: pointer;
}

.t-card-link:hover {
    text-decoration: underline;
}


.testimonials-wrapper {
    display: flex;
    align-items: center;
    gap: 80px;
    /* Increased gap to prevent overlap */
    position: relative;
    padding: 0 20px;
}

.testimonials-intro {
    flex: 0 0 350px;
    /* Slightly wider for better text flow */
}

.testimonials-intro h2 {
    font-size: 32px;
    color: var(--secondary-color);
    line-height: 1.3;
    font-weight: 700;
}

/* Testimonials Swiper Customization */
.testimonials-swiper {
    flex: 1;
    /* Take up remaining space */
    min-width: 0;
    /* Fix for swiper in flexbox */
    padding: 30px 10px 60px !important;
    /* Added small side padding */
    overflow: hidden;
}

.testimonials-arrow {
    width: 48px !important;
    height: 48px !important;
    background: white !important;
    color: var(--primary-color) !important;
    border-radius: 50% !important;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1) !important;
    top: 45% !important;
    z-index: 100 !important;
    transition: all 0.3s ease;
}

.testimonials-arrow::after {
    font-size: 18px !important;
    font-weight: 900;
}

.testimonials-arrow:hover {
    background-color: var(--primary-color) !important;
    color: white !important;
    transform: translateY(-50%) scale(1.1);
}

.testimonials-section .swiper-button-next {
    right: 0 !important;
}

.testimonials-section .swiper-button-prev {
    /* Adjusted to avoid overlapping the intro text */
    left: 410px !important;
    /* intro (350) + padding/gap adjustments */
}

.testimonials-swiper .swiper-pagination-bullet-active {
    background: var(--primary-color) !important;
    width: 25px;
    border-radius: 10px;
}

@media (max-width: 1100px) {
    .testimonials-wrapper {
        flex-direction: column;
        gap: 40px;
        padding: 0 40px;
    }

    .testimonials-swiper {
        width: 100% !important;
        flex: none !important;
        min-height: 400px;
    }

    .t-card {
        height: 100%;
        opacity: 1 !important;
        visibility: visible !important;
    }

    .testimonials-intro {
        flex: none;
        text-align: center;
        max-width: 100%;
        margin: 0 auto;
    }

    .testimonials-section .swiper-button-prev {
        left: 0 !important;
    }

    .testimonials-section .swiper-button-next {
        right: 0 !important;
    }
}

@media (max-width: 1024px) {
    .desktop-nav ul {
        gap: 15px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .main-header {
        height: 80px;
    }

    .logo img {
        height: 80px;
    }
}

@media (max-width: 768px) {
    .desktop-nav {
        display: none !important;
    }

    .btn-enquire-header {
        display: none !important;
    }

    /* Redundant block removed - Using Final Overrides at bottom of file */

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* Blog Section */
.blog-section {
    position: relative;
    z-index: 1;
}

.blog-card {
    transition: var(--transition);
    border: 1px solid #f0f0f0;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(46, 49, 146, 0.1) !important;
}

.blog-img img {
    transition: transform 0.8s ease;
}

.blog-card:hover .blog-img img {
    transform: scale(1.1);
}

.blog-content a:hover {
    color: var(--secondary-color) !important;
    gap: 12px !important;
}

/* Travel Gallery Section */
.gallery-section {
    padding: 40px 0;
    background-color: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 250px;
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(46, 49, 146, 0.8), transparent);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    opacity: 0;
    transition: all 0.5s ease;
    transform: translateY(20px);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
    transform: translateY(0);
}

.gallery-item:hover img {
    transform: scale(1.15);
}

.gallery-overlay h4 {
    color: #fff;
    font-size: 20px;
    margin-bottom: 5px;
    font-weight: 700;
}

.gallery-overlay p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

/* Consolidated WhatsApp styles moved to bottom of file for priority */

/* Redundant WhatsApp styles removed - Using final overrides at bottom of file */

/* Mosaic Layout Specifics */
.gallery-item.wide {
    grid-column: span 2;
}

.gallery-item.tall {
    grid-row: span 2;
}

@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 200px;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item.wide {
        grid-column: span 1;
    }
}

/* Footer Refinements */
.main-footer {
    background-color: #0a0b1a;
    /* Very dark blue for premium look */
    color: var(--white);
    padding: 15px 0 0;
}

.footer-logo {
    width: 170px;
    margin-bottom: 15px;
}

.footer-col h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    position: relative;
    padding-bottom: 6px;
    color: #fff;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 10px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 4px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
    text-decoration: none;
}

.footer-col ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.contact-info-item {
    display: flex;
    gap: 10px;
    margin-bottom: 8px;
}

.contact-info-item i {
    color: var(--primary-color);
    font-size: 18px;
    margin-top: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px 0;
    margin-top: 20px;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
}

/* ==========================================
   ABOUT & MISSION SECTION (HOME)
   ========================================== */
.section-padding {
    padding: 40px 0;
}

.about-content-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.about-content-grid.grid-reverse {
    flex-direction: column;
}

.about-image-box {
    position: relative;
    width: 100%;
}

.about-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 30px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

@media (min-width: 992px) {
    .about-content-grid {
        display: flex;
        flex-direction: row;
        gap: 60px;
        align-items: stretch;
    }

    .about-content-grid.grid-reverse {
        flex-direction: row-reverse;
    }

    .about-image-box {
        flex: 0 0 35%;
    }

    .about-text-box {
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
}

.about-experience-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--primary-color);
    color: var(--white);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 173, 239, 0.3);
}

.about-experience-badge span {
    display: block;
    font-size: 42px;
    font-weight: 800;
    line-height: 1;
}

.about-experience-badge p {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 50px;
}

.mv-card {
    background: var(--white);
    padding: 40px;
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0f0f0;
    transition: var(--transition);
    text-align: center;
}

.mv-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}

.mv-icon {
    width: 70px;
    height: 70px;
    background: rgba(0, 173, 239, 0.1);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 0 auto 25px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

@media (min-width: 992px) {
    .values-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.value-card {
    background: var(--white);
    padding: 35px;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid transparent;
}

.value-card:hover {
    background: var(--secondary-color);
    color: var(--white);
    border-color: var(--secondary-color);
}

.value-card:hover h3,
.value-card:hover p {
    color: var(--white);
}

.value-icon {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.value-card:hover .value-icon {
    color: var(--white);
}

.stat-section {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    color: var(--white);
    padding: 40px 0;
    text-align: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.stat-item h2 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 10px;
}

.stat-item p {
    font-size: 16px;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 991px) {
    .about-image-box {
        margin-bottom: 40px;
        height: auto;
    }

    .mission-vision-grid {
        grid-template-columns: 1fr;
    }

    .about-experience-badge {
        bottom: 20px;
        right: 20px;
        padding: 20px;
    }

    .values-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

/* ==========================================
   FINAL RESPONSIVE OVERRIDES (Do not move)
   ========================================== */
@media (max-width: 991px) {
    /* GUARANTEED FIXED HEADER */
    header.main-header,
    header.home-header,
    header.sticky-header,
    header.scrolled {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        height: 70px !important;
        background: #ffffff !important;
        background-color: #ffffff !important;
        z-index: 9999999 !important;
        display: flex !important;
        align-items: center !important;
        padding: 0 !important;
        margin: 0 !important;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1) !important;
        visibility: visible !important;
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }

    header.main-header .container,
    header.main-header .header-content {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        width: 100% !important;
        height: 100% !important;
        padding: 0 15px !important;
        margin: 0 !important;
        max-width: 100% !important;
        visibility: visible !important;
    }

    /* Logo Control */
    .logo,
    .main-header .logo {
        display: flex !important;
        align-items: center !important;
        margin: 0 !important;
    }

    .logo img,
    .main-header .logo img {
        height: 55px !important;
        width: auto !important;
        display: block !important;
        filter: none !important;
    }

    /* Mobile Menu Toggle */
    .header-right {
        display: flex !important;
        align-items: center !important;
        margin: 0 !important;
    }

    .mobile-menu-toggle {
        display: flex !important;
        flex-direction: column !important;
        justify-content: space-between !important;
        width: 24px !important;
        height: 16px !important;
        background: transparent !important;
        border: none !important;
        padding: 0 !important;
        margin-left: 15px !important;
        z-index: 10000000 !important;
        visibility: visible !important;
    }

    .mobile-menu-toggle span {
        display: block !important;
        width: 100% !important;
        height: 2px !important;
        background-color: #2E3192 !important;
        border-radius: 4px !important;
        transition: all 0.3s ease !important;
    }

    /* Animation for active menu toggle (X shape) */
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg) !important;
    }

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

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg) !important;
    }

    /* Hide desktop elements on mobile */
    .desktop-nav,
    .btn-enquire-header {
        display: none !important;
    }

    /* Contact Section Mobile Alignment */
    .contact-grid {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }

    .footer-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 30px !important;
        padding-bottom: 30px !important;
    }

    @media (min-width: 576px) {
        .footer-grid {
            grid-template-columns: 1fr 1fr !important;
        }
    }

    @media (min-width: 768px) {
        .footer-grid {
            grid-template-columns: repeat(3, 1fr) !important;
        }
    }
}

/* Global Floating WhatsApp Button Styles */
.btn-whatsapp-float {
    position: fixed !important;
    bottom: 30px !important;
    right: 30px !important;
    width: 60px !important;
    height: 60px !important;
    background-color: #25D366 !important;
    color: #ffffff !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 32px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3) !important;
    z-index: 9999999 !important;
    visibility: visible !important;
    opacity: 1 !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
}

.btn-whatsapp-float:hover {
    transform: scale(1.1) rotate(5deg) !important;
    background-color: #128C7E !important;
    color: #ffffff !important;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4) !important;
}

@media (max-width: 768px) {
    .btn-whatsapp-float {
        bottom: 30px !important;
        right: 20px !important;
        width: 55px !important;
        height: 55px !important;
        font-size: 28px !important;
    }
}
