/*===========================================================
    NITYA TOURS & TRAVELS - Main Stylesheet
    Author: Nitya Tours & Travels
    Version: 1.0
=============================================================*/

/*===========================================================
    1. GOOGLE FONTS
=============================================================*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&family=Open+Sans:wght@300;400;500;600;700&display=swap');

/*===========================================================
    2. CSS VARIABLES
=============================================================*/
:root {
    /* Primary Colors */
    --primary: #1a237e;
    --primary-dark: #0d1b2a;
    --primary-light: #283593;
    --secondary: #42a5f5;
    --secondary-light: #90caf9;
    --secondary-dark: #1565c0;
    --accent: #ffd700;
    --accent-dark: #c9a800;
    --accent-light: #ffe44d;

    /* Neutral Colors */
    --white: #ffffff;
    --off-white: #f8f9fa;
    --light-gray: #f0f2f5;
    --gray-100: #e9ecef;
    --gray-200: #dee2e6;
    --gray-300: #ced4da;
    --gray-400: #adb5bd;
    --gray-500: #6c757d;
    --gray-600: #495057;
    --gray-700: #343a40;
    --gray-800: #212529;
    --dark: #0d1b2a;
    --black: #000000;

    /* Gradient */
    --gradient-primary: linear-gradient(135deg, #1a237e 0%, #283593 50%, #1a237e 100%);
    --gradient-secondary: linear-gradient(135deg, #42a5f5 0%, #1565c0 100%);
    --gradient-accent: linear-gradient(135deg, #ffd700 0%, #c9a800 100%);
    --gradient-hero: linear-gradient(135deg, rgba(13, 27, 42, 0.92) 0%, rgba(26, 35, 126, 0.85) 50%, rgba(13, 27, 42, 0.90) 100%);
    --gradient-overlay: linear-gradient(180deg, transparent 0%, rgba(13, 27, 42, 0.8) 100%);
    --gradient-card: linear-gradient(180deg, transparent 40%, rgba(13, 27, 42, 0.95) 100%);
    --gradient-section: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);

    /* Typography */
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Open Sans', sans-serif;
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-md: 1.125rem;
    --font-size-lg: 1.25rem;
    --font-size-xl: 1.5rem;
    --font-size-2xl: 2rem;
    --font-size-3xl: 2.5rem;
    --font-size-4xl: 3rem;
    --font-size-5xl: 3.5rem;
    --font-size-6xl: 4rem;

    /* Spacing */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    --spacing-3xl: 4rem;
    --spacing-4xl: 5rem;

    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-2xl: 20px;
    --radius-round: 50%;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(13, 27, 42, 0.06);
    --shadow-md: 0 4px 16px rgba(13, 27, 42, 0.1);
    --shadow-lg: 0 8px 32px rgba(13, 27, 42, 0.12);
    --shadow-xl: 0 12px 48px rgba(13, 27, 42, 0.15);
    --shadow-primary: 0 4px 20px rgba(26, 35, 126, 0.3);
    --shadow-accent: 0 4px 20px rgba(255, 215, 0, 0.3);
    --shadow-hover: 0 8px 40px rgba(13, 27, 42, 0.2);

    /* Transitions */
    --transition-fast: all 0.2s ease;
    --transition-base: all 0.3s ease;
    --transition-slow: all 0.5s ease;
    --transition-spring: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);

    /* Container */
    --container-max: 1320px;
    --container-narrow: 960px;

    /* Light (same as off-white for backward compat) */
    --light: #f8f9fa;
    --text: #212529;
    --border: #e9ecef;
    --text-muted: #6c757d;
    --bg-light: #f8f9fa;
    --text-color: #495057;
    --text-dark: #0d1b2a;
    --muted: #6c757d;
    --success: #28a745;
    --danger: #dc3545;
}

/*===========================================================
    3. RESET & BASE STYLES
=============================================================*/
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    font-size: var(--font-size-base);
    font-weight: 400;
    line-height: 1.7;
    color: var(--gray-600);
    background-color: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.3;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

h1 { font-size: var(--font-size-5xl); }
h2 { font-size: var(--font-size-3xl); }
h3 { font-size: var(--font-size-2xl); }
h4 { font-size: var(--font-size-xl); }
h5 { font-size: var(--font-size-lg); }
h6 { font-size: var(--font-size-md); }

p {
    margin-bottom: 1rem;
    color: var(--gray-500);
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition-base);
}

a:hover {
    color: var(--secondary);
    text-decoration: none;
}

/* Focus-visible for keyboard navigation */
:focus:not(:focus-visible) {
    outline: none;
}

:focus-visible {
    outline: 2px solid var(--secondary);
    outline-offset: 2px;
}

button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 2px solid var(--secondary);
    outline-offset: 1px;
}

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

ul, ol {
    padding-left: 0;
    list-style: none;
    margin-bottom: 0;
}

input,
textarea,
select,
button {
    font-family: var(--font-body);
    outline: none;
}

input:focus,
textarea:focus,
select:focus {
    outline: none;
}

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

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--gray-100);
}

::-webkit-scrollbar-thumb {
    background: var(--gray-400);
    border-radius: var(--radius-sm);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gray-500);
}

/*===========================================================
    4. PRELOADER
=============================================================*/
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#preloader.hide {
    opacity: 0;
    visibility: hidden;
}

.preloader-inner {
    text-align: center;
}

.preloader-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid var(--gray-200);
    border-top-color: var(--primary);
    border-right-color: var(--secondary);
    border-radius: var(--radius-round);
    animation: spin 0.8s linear infinite;
    margin: 0 auto 20px;
}

.preloader-text {
    font-family: var(--font-heading);
    font-size: var(--font-size-lg);
    font-weight: 600;
    color: var(--primary);
    letter-spacing: 3px;
    text-transform: uppercase;
}

.preloader-text span {
    display: inline-block;
    animation: bounceText 1.2s ease infinite;
}

.preloader-text span:nth-child(2) { animation-delay: 0.1s; }
.preloader-text span:nth-child(3) { animation-delay: 0.2s; }
.preloader-text span:nth-child(4) { animation-delay: 0.3s; }
.preloader-text span:nth-child(5) { animation-delay: 0.4s; }
.preloader-text span:nth-child(6) { animation-delay: 0.5s; }
.preloader-text span:nth-child(7) { animation-delay: 0.6s; }
.preloader-text span:nth-child(8) { animation-delay: 0.7s; }
.preloader-text span:nth-child(9) { animation-delay: 0.8s; }
.preloader-text span:nth-child(10) { animation-delay: 0.9s; }
.preloader-text span:nth-child(11) { animation-delay: 1.0s; }
.preloader-text span:nth-child(12) { animation-delay: 1.1s; }

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

@keyframes bounceText {
    0%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); color: var(--accent); }
}

/*===========================================================
    5. TOP BAR
=============================================================*/
.top-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10001;
    background: linear-gradient(135deg, #0a0a1a 0%, #0d1b2a 50%, #1a1a3e 100%);
    padding: 6px 0;
    border-bottom: 1px solid rgba(255,215,0,0.08);
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.top-bar-left a {
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.top-bar-left a:hover {
    color: var(--accent);
}

.top-bar-left a i {
    color: var(--accent);
    font-size: 11px;
}

.top-bar-left .fa-phone-alt {
    transform: rotate(90deg);
}

.top-bar-hours {
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.top-bar-hours i {
    color: var(--accent);
    font-size: 11px;
}

.top-bar-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
}

.top-bar-tagline {
    color: #FFD700;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.top-bar-social {
    display: flex;
    align-items: center;
    gap: 10px;
}

.top-bar-social a {
    color: rgba(255,255,255,0.5);
    font-size: 13px;
    transition: all 0.3s ease;
}

.top-bar-social a:hover {
    color: var(--accent);
    transform: translateY(-1px);
}

@media (max-width: 1199px) {
    .top-bar-left {
        gap: 14px;
    }
    .top-bar-left a,
    .top-bar-hours {
        font-size: 11px;
    }
    .top-bar-tagline {
        font-size: 10px;
        letter-spacing: 0.5px;
    }
    .navbar {
        padding: 12px 0;
    }
    .navbar-brand .brand-text {
        font-size: 28px;
    }
    .brand-logo {
        height: 44px;
    }
    .nav-link {
        font-size: 12px;
        padding: 8px 12px !important;
    }
}

@media (max-width: 991px) {
    .top-bar {
        padding: 8px 0;
    }
    .top-bar-left {
        gap: 10px;
        flex-wrap: wrap;
    }
    .top-bar-left a,
    .top-bar-hours {
        font-size: 10px;
    }
    .top-bar-right {
        gap: 8px;
    }
    .top-bar-tagline {
        font-size: 9px;
        letter-spacing: 0.3px;
    }
    .top-bar-social {
        gap: 8px;
    }
    .top-bar-social a {
        font-size: 12px;
    }
}

@media (max-width: 767px) {
    .top-bar {
        padding: 6px 0;
    }
    .top-bar-left {
        gap: 6px;
    }
    .top-bar-left a,
    .top-bar-hours {
        font-size: 10px;
    }
    .top-bar-hours,
    .top-bar-right {
        display: none;
    }
    .top-bar-tagline {
        display: none;
    }
    .top-bar-social a {
        font-size: 11px;
    }
}

@media (max-width: 575px) {
    .top-bar {
        padding: 4px 0;
    }
    .top-bar .row {
        flex-direction: row;
        gap: 0;
    }
    .top-bar [class*="col-"] {
        width: 100%;
        text-align: center !important;
    }
    .top-bar-left {
        gap: 12px;
        flex-direction: row;
        align-items: center;
        justify-content: center;
    }
    .top-bar-left a {
        font-size: 10px;
    }
    .top-bar-left .fa-phone-alt {
        transform: rotate(90deg);
    }
    .top-bar-hours,
    .top-bar-right {
        display: none;
    }
}

/*===========================================================
    6. NAVIGATION
=============================================================*/
.navbar {
    position: fixed;
    top: 30px;
    left: 0;
    width: 100%;
    z-index: 10000;
    padding: 6px 0;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0,0,0,0.08);
    padding: 4px 0;
}

.navbar.scrolled .navbar-brand .brand-text {
    color: var(--primary);
}

.navbar.scrolled .brand-icon {
    width: 38px;
    height: 38px;
    background: var(--gradient-primary);
    color: var(--white);
}

.navbar.scrolled .brand-logo {
    height: 38px;
}

.navbar.scrolled .nav-link {
    color: var(--gray-700);
}

.navbar.scrolled .nav-link:hover,
.navbar.scrolled .nav-link.active {
    color: var(--primary) !important;
    background: rgba(26,35,126,0.06);
}

.navbar.scrolled .nav-link::after {
    background: var(--primary);
}

.navbar.scrolled .navbar-toggler-icon {
    color: var(--primary);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 22px;
    color: var(--white);
    text-decoration: none;
    padding: 5px 0;
}

.navbar-brand:hover {
    color: var(--accent);
}

.brand-icon {
    width: 40px;
    height: 40px;
    background: var(--accent);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 18px;
}

.brand-logo {
    height: 36px;
    width: auto;
}

.brand-text {
    color: var(--white);
    transition: var(--transition-base);
    font-size: 28px;
    letter-spacing: -0.5px;
    font-family: 'Ubuntu', sans-serif;
    text-transform: lowercase;
}

.brand-text span {
    color: #4169e1;
}

.navbar-nav {
    display: flex;
    align-items: center;
    gap: 2px;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: rgba(255,255,255,0.85);
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 12px;
    padding: 6px 12px !important;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent) !important;
    background: rgba(255,255,255,0.08);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 18px;
    height: 2px;
    background: var(--accent);
    border-radius: 2px;
    transition: transform 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: translateX(-50%) scaleX(1);
}

/* Nav CTA Button */
.nav-cta {
    padding: 8px 20px !important;
    border-radius: 8px !important;
    font-size: 12px !important;
    letter-spacing: 0.5px !important;
    text-transform: uppercase;
    font-weight: 600 !important;
    box-shadow: 0 4px 15px rgba(255,215,0,0.3);
    color: var(--dark) !important;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255,215,0,0.4);
    color: var(--dark) !important;
}

.navbar.scrolled .nav-cta {
    box-shadow: 0 4px 15px rgba(255,215,0,0.25);
}

/* Dropdown */
.dropdown-menu {
    background: var(--white);
    border: none;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
    padding: 8px;
    margin-top: 8px;
    min-width: 240px;
    animation: dropdownFade 0.25s ease;
    border: 1px solid rgba(0,0,0,0.04);
}

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

.dropdown-item {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 13px;
    color: var(--gray-700);
    padding: 10px 16px;
    border-radius: 8px;
    transition: all 0.25s ease;
    display: flex;
    align-items: center;
    gap: 12px;
}

.dropdown-item i {
    width: 18px;
    color: var(--primary);
    font-size: 13px;
    text-align: center;
}

.dropdown-item:hover {
    background: var(--off-white);
    color: var(--primary);
    padding-left: 22px;
}

.dropdown-item:hover i {
    color: var(--accent);
}

.dropdown-divider {
    border-color: var(--gray-100);
    margin: 4px 0;
}

/* Navbar Toggler */
.navbar-toggler {
    border: none;
    background: none;
    padding: 0;
    cursor: pointer;
    width: auto;
    height: auto;
    transition: var(--transition-base);
}

.navbar-toggler:focus {
    outline: none;
    box-shadow: none;
}

.navbar-toggler-icon {
    color: var(--white);
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: none !important;
}

.navbar-toggler-icon i {
    display: block;
}

/*===========================================================
    7. HERO BANNER
=============================================================*/
.hero-section {
    position: relative;
    width: 100%;
    height: 70vh;
    min-height: 480px;
    max-height: 700px;
    overflow: hidden;
    display: flex;
    align-items: center;
    background: var(--dark);
}

.hero-slider {
    position: absolute !important;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-slider .swiper-slide {
    position: relative;
    overflow: hidden;
}

.hero-slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}

.hero-slide-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10,10,26,0.94) 0%, rgba(13,27,42,0.88) 40%, rgba(26,35,126,0.75) 70%, rgba(13,27,42,0.92) 100%);
}



.hero-content-wrap {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    min-height: 70vh;
    padding-top: 90px;
}

.hero-content {
    text-align: center;
    max-width: 850px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-content .hero-subtitle {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 14px;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 6px;
    margin-bottom: 20px;
}

.hero-content .hero-title {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: clamp(22px, 3.5vw, 42px);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content .hero-title span {
    background: linear-gradient(135deg, #ffd700 0%, #ffaa00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content .hero-description {
    font-size: clamp(16px, 1.8vw, 20px);
    color: rgba(255,255,255,0.75);
    max-width: 600px;
    margin: 0 auto 35px;
    line-height: 1.7;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-buttons .btn {
    padding: 16px 35px;
    font-weight: 600;
    border-radius: 50px;
    font-size: var(--font-size-sm);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.hero-split {
    display: flex;
    align-items: center;
    gap: 40px;
    min-height: 60vh;
}

.hero-split-left {
    flex: 1;
    text-align: left;
}

.hero-split-left .hero-subtitle {
    font-size: 13px;
    letter-spacing: 4px;
    padding: 0 32px;
    margin-bottom: 12px;
    position: relative;
    display: inline-block;
}

.hero-split-left .hero-subtitle::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 24px;
    height: 2px;
    background: var(--accent);
    transform: translateY(-50%);
}

.hero-split-left .hero-subtitle::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    width: 24px;
    height: 2px;
    background: var(--accent);
    transform: translateY(-50%);
}

.hero-split-left .hero-title {
    font-size: 2.6rem;
    line-height: 1.2;
    margin-bottom: 14px;
}

.hero-split-left .hero-description {
    font-size: 0.95rem;
    margin: 0 0 24px;
    max-width: 480px;
    line-height: 1.7;
}

.hero-split-left .hero-buttons {
    justify-content: flex-start;
}

.hero-split-left .hero-buttons .btn {
    padding: 13px 28px;
    font-size: 12px;
}

.hero-split-right {
    width: 340px;
    flex-shrink: 0;
}

.hero-search-card {
    background: rgba(255,255,255,0.07);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 16px;
    padding: 28px 24px;
    border: 1px solid rgba(255,255,255,0.10);
    box-shadow: 0 12px 50px rgba(0,0,0,0.2);
    margin-right: 20px;
}

.hero-search-card .search-card-title {
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-search-card .search-card-title i {
    color: var(--accent);
}

.hero-search-card .search-card-field {
    margin-bottom: 14px;
}

.hero-search-card .search-card-field label {
    display: block;
    color: rgba(255,255,255,0.5);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.hero-search-card .search-card-field .input-wrap {
    position: relative;
}

.hero-search-card .search-card-field .input-wrap i {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255,255,255,0.3);
    font-size: 14px;
    pointer-events: none;
    z-index: 1;
}

.hero-search-card .search-card-field select,
.hero-search-card .search-card-field input {
    width: 100%;
    height: 44px;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 10px;
    background: rgba(255,255,255,0.06);
    color: var(--white);
    font-size: 13px;
    padding: 0 14px 0 38px;
    outline: none;
    transition: all 0.3s ease;
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
}

.hero-search-card .search-card-field select option {
    background: #1a1a2e;
    color: #fff;
}

.hero-search-card .search-card-field select:focus,
.hero-search-card .search-card-field input:focus {
    border-color: var(--accent);
    background: rgba(255,255,255,0.10);
    box-shadow: 0 0 0 3px rgba(255,215,0,0.06);
}

.hero-search-card .search-card-field input[type="date"] {
    color-scheme: dark;
    padding-right: 10px;
}

.hero-search-card .search-card-field input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(0.6);
    cursor: pointer;
}

.hero-search-card .btn {
    height: 44px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 13px;
    margin-top: 6px;
}

@media (max-width: 991px) {
    .hero-content-wrap {
        z-index: 5;
    }

    .hero-split {
        flex-direction: column;
        gap: 30px;
        min-height: auto;
    }

    .hero-split-left {
        text-align: center;
        position: relative;
    }

    .hero-split-left .hero-subtitle {
        padding: 0 44px;
    }

    .hero-split-left .hero-subtitle::before {
        left: 0;
        width: 24px;
    }

    .hero-split-left .hero-subtitle::after {
        right: 0;
        width: 24px;
    }

    .hero-split-left .hero-description {
        margin: 0 auto 30px;
    }

    .hero-split-left .hero-buttons {
        justify-content: center;
    }

    .hero-split-right {
        width: 100%;
        max-width: 400px;
    }
}



.hero-buttons .btn-accent {
    box-shadow: 0 8px 30px rgba(255,215,0,0.3);
}

.hero-buttons .btn-outline {
    border: 2px solid rgba(255,255,255,0.3);
    color: var(--white);
    background: transparent;
}

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

/* Hero Search */
.hero-search-section {
    position: relative;
    z-index: 3;
    margin-top: -40px;
    padding-bottom: 40px;
}

.hero-search-form {
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    box-shadow: 0 20px 80px rgba(0,0,0,0.15);
    padding: 30px 35px;
    border: 1px solid rgba(255,255,255,0.1);
}

.hero-search-form .form-control,
.hero-search-form .form-select {
    height: 52px;
    border: 2px solid var(--gray-100);
    border-radius: 12px;
    font-size: 14px;
    padding-left: 42px;
    transition: all 0.3s ease;
    background: var(--white);
}

.hero-search-form .form-control:focus,
.hero-search-form .form-select:focus {
    border-color: var(--secondary);
    box-shadow: 0 0 0 4px rgba(66,165,245,0.1);
}

.hero-search-form .input-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray-400);
    z-index: 5;
    font-size: 15px;
}

.hero-search-form .btn-search {
    height: 52px;
    width: 100%;
    font-weight: 600;
    font-size: 14px;
    border-radius: 12px;
    letter-spacing: 0.5px;
}

/* Swiper Hero Pagination */
.hero-slider .swiper-pagination {
    bottom: 30px !important;
}

.hero-slider .swiper-pagination-bullet {
    width: 40px;
    height: 4px;
    background: rgba(255,255,255,0.3);
    border-radius: 4px;
    opacity: 1;
    transition: all 0.3s ease;
}

.hero-slider .swiper-pagination-bullet-active {
    background: var(--accent);
    width: 60px;
}

.hero-slider .swiper-button-next,
.hero-slider .swiper-button-prev {
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    color: var(--white);
    transition: all 0.3s ease;
}

.hero-slider .swiper-button-next:hover,
.hero-slider .swiper-button-prev:hover {
    background: var(--accent);
    color: var(--dark);
}

.hero-slider .swiper-button-next::after,
.hero-slider .swiper-button-prev::after {
    font-size: 18px;
    font-weight: 700;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.5s ease;
}

.hero-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-hero);
    z-index: 1;
}

.hero-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,215,0,0.03)" d="M0,96L48,112C96,128,192,160,288,186.7C384,213,480,235,576,213.3C672,192,768,128,864,128C960,128,1056,192,1152,208C1248,224,1344,192,1392,176L1440,160L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"/></svg>') no-repeat bottom;
    background-size: cover;
    opacity: 0.5;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 100px 0 50px;
}

.hero-subtitle {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: var(--font-size-md);
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 6px;
    margin-bottom: 15px;
    display: inline-block;
    position: relative;
    padding: 0 40px;
}

.hero-subtitle::before,
.hero-subtitle::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30px;
    height: 2px;
    background: var(--accent);
}

.hero-subtitle::before {
    left: 0;
}

.hero-subtitle::after {
    right: 0;
}

.hero-title {
    font-size: var(--font-size-6xl);
    font-weight: 900;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.15;
    text-transform: uppercase;
}

.hero-title span {
    color: var(--accent);
    display: inline-block;
    position: relative;
}

.hero-description {
    font-size: var(--font-size-lg);
    color: rgba(255, 255, 255, 0.85);
    max-width: 600px;
    margin: 0 auto 35px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-search-form {
    position: relative;
    z-index: 2;
    margin-top: -60px;
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    padding: 30px;
    transform: translateY(0);
}

.hero-search-form .form-control,
.hero-search-form .form-select {
    height: 50px;
    border: 2px solid var(--gray-100);
    border-radius: var(--radius-md);
    font-size: var(--font-size-sm);
    padding-left: 45px;
    transition: var(--transition-base);
}

.hero-search-form .form-control:focus,
.hero-search-form .form-select:focus {
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(66, 165, 245, 0.1);
}

.hero-search-form .input-group {
    position: relative;
}

.hero-search-form .input-group i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray-400);
    z-index: 10;
    font-size: var(--font-size-md);
}

.hero-search-form .btn-search {
    height: 50px;
    border-radius: var(--radius-md);
    font-weight: 600;
    padding: 0 35px;
    width: 100%;
}

/* Hero Indicators */
.hero-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    gap: 8px;
}

.hero-indicators span {
    width: 40px;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition-base);
}

.hero-indicators span.active {
    background: var(--accent);
    width: 60px;
}

/* Hero Wave */
.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    z-index: 2;
    line-height: 0;
}

.hero-wave svg {
    width: 100%;
    height: auto;
}

/*===========================================================
    7. SECTION STYLES
=============================================================*/
.section-padding {
    padding: 80px 0;
}

.section-padding-sm {
    padding: 50px 0;
}

.section-padding-lg {
    padding: 100px 0;
}

.section-bg {
    background: var(--off-white);
}

.section-bg-dark {
    background: var(--gradient-primary);
}

.section-bg-alt {
    background: var(--gradient-section);
}

/*===========================================================
    8. SECTION TITLES
=============================================================*/
.section-title-wrapper {
    text-align: center;
    margin-bottom: 50px;
}

.section-subtitle {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: var(--font-size-sm);
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 10px;
    display: inline-block;
}

.section-title {
    font-size: var(--font-size-3xl);
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 15px;
    text-transform: capitalize;
}

.section-title span {
    color: var(--primary);
}

.section-title-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 15px;
}

.section-title-decoration .line {
    width: 50px;
    height: 2px;
    background: var(--gray-300);
}

.section-title-decoration .dot {
    width: 10px;
    height: 10px;
    background: var(--accent);
    border-radius: var(--radius-round);
    transform: rotate(45deg);
}

.section-description {
    max-width: 600px;
    margin: 0 auto;
    color: var(--gray-500);
    font-size: var(--font-size-md);
}

/* Title Light Variant */
.section-title-wrapper.light .section-subtitle {
    color: var(--secondary-light);
}

.section-title-wrapper.light .section-title {
    color: var(--white);
}

.section-title-wrapper.light .section-title span {
    color: var(--accent);
}

.section-title-wrapper.light .section-description {
    color: rgba(255, 255, 255, 0.75);
}

.section-title-wrapper.light .section-title-decoration .line {
    background: rgba(255, 255, 255, 0.3);
}

/*===========================================================
    9. PAGE TITLE / BANNER
=============================================================*/
.page-banner {
    position: relative;
    padding: 180px 0 80px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.page-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-hero);
}

.page-banner .container {
    position: relative;
    z-index: 2;
}

.page-banner-title {
    font-size: var(--font-size-4xl);
    font-weight: 900;
    color: var(--white);
    margin-bottom: 10px;
    text-transform: uppercase;
}

.page-banner-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: var(--font-size-md);
    max-width: 500px;
}

/* Breadcrumb */
.breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
}

.breadcrumb-item {
    font-size: var(--font-size-sm);
    font-weight: 500;
}

.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.7);
}

.breadcrumb-item a:hover {
    color: var(--accent);
}

.breadcrumb-item.active {
    color: var(--accent);
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.4);
    content: '\f105';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
}

/*===========================================================
    10. BUTTONS
=============================================================*/
.btn {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: var(--font-size-sm);
    padding: 12px 30px;
    border-radius: var(--radius-md);
    transition: var(--transition-base);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 2px solid transparent;
}

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

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

.btn:focus {
    box-shadow: none;
}

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

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-primary);
}

.btn-secondary {
    background: var(--gradient-secondary);
    border-color: var(--secondary);
    color: var(--white);
}

.btn-secondary:hover {
    background: var(--secondary-dark);
    border-color: var(--secondary-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(66, 165, 245, 0.3);
}

.btn-accent {
    background: var(--gradient-accent);
    border-color: var(--accent);
    color: var(--dark);
}

.btn-accent:hover {
    background: var(--accent-dark);
    border-color: var(--accent-dark);
    color: var(--dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-accent);
}

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

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

.btn-outline-primary {
    background: transparent;
    border-color: var(--primary);
    color: var(--primary);
}

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

.btn-outline-accent {
    background: transparent;
    border-color: var(--accent);
    color: var(--accent);
}

.btn-outline-accent:hover {
    background: var(--accent);
    color: var(--dark);
    transform: translateY(-2px);
}

.btn-sm {
    padding: 8px 20px;
    font-size: var(--font-size-xs);
}

.btn-lg {
    padding: 15px 40px;
    font-size: var(--font-size-base);
}

.btn-block {
    width: 100%;
    justify-content: center;
}

.btn-icon {
    width: 45px;
    height: 45px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-round);
}

.btn-icon.btn-sm {
    width: 35px;
    height: 35px;
    font-size: var(--font-size-sm);
}

/*===========================================================
    11. CARDS
=============================================================*/
.card {
    border: none;
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition-base);
    box-shadow: var(--shadow-sm);
}

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

.card-img-top {
    position: relative;
    overflow: hidden;
    height: 220px;
    object-fit: cover;
}

.card-img-wrapper {
    position: relative;
    overflow: hidden;
}

.card-img-wrapper img {
    transition: var(--transition-slow);
}

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

.card-body {
    padding: 25px;
}

.card-title {
    font-size: var(--font-size-lg);
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--dark);
}

.card-text {
    font-size: var(--font-size-sm);
    color: var(--gray-500);
    margin-bottom: 15px;
    line-height: 1.7;
}

/* Package Card */
.package-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
}

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

.package-card .card-img-wrapper {
    position: relative;
    height: 170px;
    overflow: hidden;
}

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

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

.package-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 2;
}

.package-wishlist {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: var(--radius-round);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-base);
    z-index: 2;
    border: none;
    font-size: var(--font-size-sm);
    color: var(--gray-500);
}

.package-wishlist:hover,
.package-wishlist.active {
    background: var(--white);
    color: #e74c3c;
}

.package-rating {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: rgba(0, 0, 0, 0.7);
    color: var(--accent);
    padding: 4px 12px;
    border-radius: var(--radius-sm);
    font-size: var(--font-size-xs);
    font-weight: 600;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 4px;
}

.package-card .card-body {
    padding: 10px 16px;
}

.package-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 12px;
    font-size: 12px;
    color: var(--gray-500);
}

.package-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.package-meta i {
    color: var(--secondary);
}

.package-card .card-title {
    font-size: clamp(0.78rem, 1.4vw, 0.95rem);
    margin-bottom: 4px;
}

.package-card .card-title a {
    color: var(--dark);
}

.package-card .card-title a:hover {
    color: var(--primary);
}

.package-card .card-text {
    font-size: clamp(0.65rem, 1vw, 0.75rem);
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.5;
}

.package-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 15px;
    border-top: 1px solid var(--gray-100);
}

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

.package-price .old-price {
    font-size: 12px;
    color: var(--gray-400);
    text-decoration: line-through;
}

.package-price .new-price {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--primary);
}

.package-price .new-price span {
    font-size: clamp(0.6rem, 0.8vw, 0.7rem);
    font-weight: 400;
    color: var(--gray-500);
}

/* Destination Card */
.destination-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
    height: 350px;
}

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

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

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

.destination-card .card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-card);
    z-index: 1;
}

.destination-card .card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    z-index: 2;
}

.destination-card .card-content .location {
    font-size: var(--font-size-xs);
    color: var(--accent);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.destination-card .card-content h4 {
    color: var(--white);
    font-size: var(--font-size-xl);
    font-weight: 700;
    margin-bottom: 5px;
}

.destination-card .card-content .packages-count {
    color: rgba(255, 255, 255, 0.7);
    font-size: var(--font-size-sm);
}

/* Blog Card */
.blog-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
}

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

.blog-card .card-img-wrapper {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.blog-card .card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.blog-card:hover .card-img-wrapper img {
    transform: scale(1.1);
}

.blog-card .card-body {
    padding: 25px;
}

.blog-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 12px;
    font-size: var(--font-size-xs);
    color: var(--gray-500);
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.blog-meta i {
    color: var(--secondary);
}

.blog-card .card-title {
    font-size: var(--font-size-lg);
    line-height: 1.4;
}

.blog-card .card-title a {
    color: var(--dark);
}

.blog-card .card-title a:hover {
    color: var(--primary);
}

.blog-card .card-text {
    font-size: var(--font-size-sm);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/*===========================================================
    12. WHY CHOOSE US
=============================================================*/
.choose-card {
    background: var(--white);
    padding: 35px 30px;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition-base);
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.choose-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition-base);
}

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

.choose-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.choose-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: var(--font-size-2xl);
    color: var(--white);
    transition: var(--transition-base);
}

.choose-card:hover .choose-icon {
    background: var(--gradient-accent);
    color: var(--dark);
    transform: rotateY(180deg);
}

.choose-card h4 {
    font-size: var(--font-size-lg);
    margin-bottom: 10px;
    color: var(--dark);
}

.choose-card p {
    font-size: var(--font-size-sm);
    color: var(--gray-500);
    margin-bottom: 0;
}

/*===========================================================
    13. TESTIMONIALS
=============================================================*/
.testimonial-section {
    position: relative;
    background: var(--gradient-primary);
    overflow: hidden;
}

.testimonial-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,215,0,0.03)" d="M0,96L48,112C96,128,192,160,288,186.7C384,213,480,235,576,213.3C672,192,768,128,864,128C960,128,1056,192,1152,208C1248,224,1344,192,1392,176L1440,160L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"/></svg>') no-repeat bottom;
    background-size: cover;
    opacity: 0.4;
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 35px;
    box-shadow: var(--shadow-lg);
    position: relative;
    margin: 15px;
}

.testimonial-card::before {
    content: '\f10d';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 3rem;
    color: var(--gray-100);
    line-height: 1;
}

.testimonial-stars {
    color: var(--accent);
    font-size: var(--font-size-sm);
    margin-bottom: 15px;
}

.testimonial-text {
    font-size: var(--font-size-base);
    color: var(--gray-600);
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 20px;
}

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

.testimonial-author img {
    width: 55px;
    height: 55px;
    border-radius: var(--radius-round);
    object-fit: cover;
    border: 3px solid var(--gray-100);
}

.testimonial-author .author-info h6 {
    font-size: var(--font-size-base);
    font-weight: 600;
    margin-bottom: 2px;
    color: var(--dark);
}

.testimonial-author .author-info span {
    font-size: var(--font-size-xs);
    color: var(--gray-500);
}

/* Testimonial Swiper */
.testimonial-swiper .swiper-pagination {
    position: relative;
    margin-top: 30px;
}

.testimonial-swiper .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.3);
    opacity: 1;
    border-radius: var(--radius-round);
    transition: var(--transition-base);
}

.testimonial-swiper .swiper-pagination-bullet-active {
    background: var(--accent);
    width: 30px;
    border-radius: 10px;
}

.testimonial-swiper .swiper-button-next,
.testimonial-swiper .swiper-button-prev {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-round);
    color: var(--white);
    transition: var(--transition-base);
}

.testimonial-swiper .swiper-button-next:hover,
.testimonial-swiper .swiper-button-prev:hover {
    background: var(--accent);
    color: var(--dark);
}

.testimonial-swiper .swiper-button-next::after,
.testimonial-swiper .swiper-button-prev::after {
    font-size: var(--font-size-lg);
}

/*===========================================================
    14. GALLERY
=============================================================*/
.gallery-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
}

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

.gallery-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: var(--transition-slow);
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(13, 27, 42, 0.7);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-base);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    font-size: var(--font-size-3xl);
    color: var(--white);
    margin-bottom: 10px;
    transform: scale(0);
    transition: var(--transition-spring);
}

.gallery-item:hover .gallery-overlay i {
    transform: scale(1);
}

.gallery-overlay span {
    color: var(--white);
    font-weight: 500;
    font-size: var(--font-size-sm);
}

.gallery-icon-wrap {
    width: 55px;
    height: 55px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    transform: scale(0);
    transition: transform 0.4s ease;
}
.gallery-item:hover .gallery-icon-wrap {
    transform: scale(1);
}
.gallery-icon-wrap i {
    font-size: 1.3rem;
    color: var(--dark);
}

.gallery-label {
    color: var(--white);
    font-weight: 600;
    font-size: var(--font-size-base);
    transform: translateY(15px);
    transition: transform 0.4s ease;
    display: block;
}
.gallery-item:hover .gallery-label {
    transform: translateY(0);
}

/* Gallery Filter */
.gallery-filter {
    display: inline-flex;
    padding: 8px;
    background: var(--light);
    border-radius: var(--radius-lg);
    gap: 5px;
}
.gallery-filter-btn {
    padding: 8px 22px;
    border: none;
    background: transparent;
    border-radius: var(--radius-md);
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: var(--font-size-sm);
    color: var(--gray-600);
    cursor: pointer;
    transition: var(--transition-base);
    text-transform: capitalize;
}
.gallery-filter-btn.active,
.gallery-filter-btn:hover {
    background: var(--accent);
    color: var(--dark);
}

.blog-detail .blog-meta {
    margin-bottom: 20px;
}

.blog-detail .blog-title {
    font-size: var(--font-size-3xl);
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--dark);
}

.blog-detail .blog-image {
    border-radius: var(--radius-lg);
    margin-bottom: 30px;
    overflow: hidden;
}

.blog-detail .blog-image img {
    width: 100%;
    border-radius: var(--radius-lg);
}

.blog-detail .blog-content h4 {
    font-size: var(--font-size-xl);
    margin-bottom: 15px;
    margin-top: 30px;
}

.blog-detail .blog-content p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.blog-detail .blog-content ul {
    padding-left: 20px;
    list-style: disc;
    margin-bottom: 20px;
}

.blog-detail .blog-content ul li {
    margin-bottom: 8px;
    color: var(--gray-600);
}

.blog-detail .blockquote {
    background: var(--off-white);
    border-left: 4px solid var(--primary);
    padding: 25px 30px;
    border-radius: var(--radius-md);
    margin: 30px 0;
    font-style: italic;
    font-size: var(--font-size-md);
    color: var(--gray-700);
}

.blog-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.blog-tags a {
    padding: 6px 16px;
    background: var(--off-white);
    border-radius: var(--radius-sm);
    font-size: var(--font-size-xs);
    font-weight: 500;
    color: var(--gray-600);
    transition: var(--transition-base);
}

.blog-tags a:hover {
    background: var(--primary);
    color: var(--white);
}

.blog-share {
    display: flex;
    gap: 8px;
}

.blog-share a {
    width: 40px;
    height: 40px;
    background: var(--off-white);
    border-radius: var(--radius-round);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-600);
    transition: var(--transition-base);
}

.blog-share a:hover {
    background: var(--primary);
    color: var(--white);
}

/* Comments */
.comment-item {
    display: flex;
    gap: 20px;
    padding: 25px 0;
    border-bottom: 1px solid var(--gray-100);
}

.comment-item:last-child {
    border-bottom: none;
}

.comment-item .comment-avatar {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-round);
    object-fit: cover;
    flex-shrink: 0;
}

.comment-item .comment-body h6 {
    font-size: var(--font-size-base);
    font-weight: 600;
    margin-bottom: 2px;
}

.comment-item .comment-body .comment-date {
    font-size: var(--font-size-xs);
    color: var(--gray-400);
    margin-bottom: 8px;
    display: block;
}

.comment-item .comment-body p {
    font-size: var(--font-size-sm);
    margin-bottom: 8px;
}

.comment-item .comment-body .btn-reply {
    font-size: var(--font-size-xs);
    font-weight: 600;
    color: var(--primary);
    padding: 0;
    border: none;
    background: none;
    cursor: pointer;
}

.comment-item .comment-body .btn-reply:hover {
    color: var(--secondary);
}

/*===========================================================
    16. SIDEBAR
=============================================================*/
.sidebar-widget {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 25px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 25px;
}

.sidebar-widget:last-child {
    margin-bottom: 0;
}

.sidebar-widget .widget-title {
    font-size: var(--font-size-lg);
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--gray-100);
    position: relative;
}

.sidebar-widget .widget-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary);
}

/* Search Widget */
.search-widget .input-group {
    position: relative;
}

.search-widget .form-control {
    height: 50px;
    border: 2px solid var(--gray-100);
    border-radius: var(--radius-md);
    padding-right: 50px;
}

.search-widget .form-control:focus {
    border-color: var(--secondary);
}

.search-widget .btn-search {
    position: absolute;
    right: 5px;
    top: 5px;
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition-base);
    z-index: 10;
}

.search-widget .btn-search:hover {
    background: var(--primary-dark);
}

/* Categories Widget */
.categories-widget ul li {
    border-bottom: 1px solid var(--gray-100);
}

.categories-widget ul li:last-child {
    border-bottom: none;
}

.categories-widget ul li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    color: var(--gray-600);
    font-size: var(--font-size-sm);
    transition: var(--transition-base);
}

.categories-widget ul li a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.categories-widget ul li a span {
    background: var(--off-white);
    padding: 2px 10px;
    border-radius: var(--radius-sm);
    font-size: var(--font-size-xs);
}

/* Recent Posts Widget */
.recent-post-item {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--gray-100);
}

.recent-post-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.recent-post-item img {
    width: 70px;
    height: 70px;
    border-radius: var(--radius-md);
    object-fit: cover;
    flex-shrink: 0;
}

.recent-post-item .post-info h6 {
    font-size: var(--font-size-sm);
    font-weight: 600;
    margin-bottom: 4px;
    line-height: 1.4;
}

.recent-post-item .post-info h6 a {
    color: var(--dark);
}

.recent-post-item .post-info h6 a:hover {
    color: var(--primary);
}

.recent-post-item .post-info .post-date {
    font-size: var(--font-size-xs);
    color: var(--gray-400);
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Tags Widget */
.tags-widget .tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tags-widget .tag-cloud a {
    padding: 6px 14px;
    background: var(--off-white);
    border-radius: var(--radius-sm);
    font-size: var(--font-size-xs);
    font-weight: 500;
    color: var(--gray-600);
    transition: var(--transition-base);
}

.tags-widget .tag-cloud a:hover {
    background: var(--primary);
    color: var(--white);
}

/*===========================================================
    17. CONTACT
=============================================================*/
.contact-info-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition-base);
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.contact-info-card .icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: var(--radius-round);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: var(--font-size-xl);
    color: var(--white);
}

.contact-info-card h5 {
    font-size: var(--font-size-base);
    font-weight: 600;
    margin-bottom: 8px;
}

.contact-info-card p {
    font-size: var(--font-size-sm);
    color: var(--gray-500);
    margin-bottom: 0;
}

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

.contact-form-wrapper .form-title {
    font-size: var(--font-size-2xl);
    font-weight: 700;
    margin-bottom: 25px;
}

.map-container {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.map-container iframe {
    width: 100%;
    height: 400px;
    display: block;
}

/*===========================================================
    18. FORMS
=============================================================*/
.form-group {
    margin-bottom: 20px;
}

.form-label {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: var(--font-size-sm);
    color: var(--gray-700);
    margin-bottom: 6px;
}

.form-control,
.form-select {
    height: 50px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-md);
    font-size: var(--font-size-sm);
    color: var(--gray-700);
    padding: 10px 16px;
    transition: var(--transition-base);
    background: var(--white);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(66, 165, 245, 0.1);
    color: var(--gray-700);
}

.form-control::placeholder {
    color: var(--gray-400);
}

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

.form-control.error {
    border-color: #e74c3c;
}

.form-control.success {
    border-color: #2ecc71;
}

.error-message {
    font-size: var(--font-size-xs);
    color: #e74c3c;
    margin-top: 5px;
}

/*===========================================================
    19. PRICING / PRICE TAG
=============================================================*/
.pricing-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.pricing-card.featured {
    border: 2px solid var(--accent);
    transform: scale(1.03);
}

.pricing-card.featured:hover {
    transform: scale(1.03) translateY(-8px);
}

.pricing-badge {
    position: absolute;
    top: 20px;
    right: -35px;
    background: var(--accent);
    color: var(--dark);
    padding: 5px 40px;
    font-size: var(--font-size-xs);
    font-weight: 700;
    text-transform: uppercase;
    transform: rotate(45deg);
    z-index: 2;
}

.pricing-header {
    padding: 35px 30px;
    text-align: center;
    background: var(--off-white);
    border-bottom: 1px solid var(--gray-100);
}

.pricing-card.featured .pricing-header {
    background: var(--gradient-primary);
}

.pricing-card.featured .pricing-header h5,
.pricing-card.featured .pricing-header .price {
    color: var(--white);
}

.pricing-header h5 {
    font-size: var(--font-size-xl);
    font-weight: 700;
    margin-bottom: 10px;
}

.pricing-header .price {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: var(--font-size-4xl);
    color: var(--primary);
}

.pricing-header .price span {
    font-size: var(--font-size-base);
    font-weight: 400;
    color: var(--gray-500);
}

.pricing-body {
    padding: 30px;
}

.pricing-body ul li {
    padding: 10px 0;
    border-bottom: 1px solid var(--gray-100);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: var(--font-size-sm);
    color: var(--gray-600);
}

.pricing-body ul li:last-child {
    border-bottom: none;
}

.pricing-body ul li i {
    width: 18px;
    color: #2ecc71;
}

.pricing-body ul li i.fa-times {
    color: #e74c3c;
}

.pricing-footer {
    padding: 0 30px 35px;
    text-align: center;
}

/*===========================================================
    20. RATING STARS
=============================================================*/
.rating-stars {
    color: var(--accent);
    font-size: var(--font-size-sm);
    display: inline-flex;
    gap: 2px;
}

.rating-stars i {
    cursor: pointer;
    transition: var(--transition-base);
}

.rating-stars i:hover,
.rating-stars i.active {
    color: var(--accent-dark);
}

.rating-number {
    font-size: var(--font-size-xs);
    color: var(--gray-500);
    margin-left: 5px;
}

/*===========================================================
    21. BADGE / TAG
=============================================================*/
.badge-custom {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: var(--font-size-xs);
    padding: 5px 12px;
    border-radius: var(--radius-sm);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.badge-accent {
    background: var(--accent);
    color: var(--dark);
}

.badge-success {
    background: #2ecc71;
    color: var(--white);
}

.badge-danger {
    background: #e74c3c;
    color: var(--white);
}

.badge-hot {
    background: #ff6b6b;
    color: var(--white);
}

.badge-trending {
    background: var(--secondary);
    color: var(--white);
}

/*===========================================================
    22. PAGINATION
=============================================================*/
.pagination {
    gap: 5px;
}

.page-item .page-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-md);
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: var(--font-size-sm);
    color: var(--gray-600);
    background: var(--white);
    transition: var(--transition-base);
}

.page-item .page-link:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.page-item.active .page-link {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.page-item.disabled .page-link {
    opacity: 0.5;
    cursor: not-allowed;
}

/*===========================================================
    23. FOOTER
=============================================================*/
.footer {
    background: var(--dark);
    color: rgba(255, 255, 255, 0.7);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
}

/*===========================================================
    24. BACK TO TOP
=============================================================*/
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    border-radius: var(--radius-round);
    font-size: var(--font-size-lg);
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition-base);
    box-shadow: var(--shadow-primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--accent);
    color: var(--dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-accent);
}

/*===========================================================
    25. AOS OVERRIDES
=============================================================*/
[data-aos] {
    pointer-events: none;
}

[data-aos].aos-animate {
    pointer-events: auto;
}

/*===========================================================
    26. SPACING UTILITIES
=============================================================*/
.mt-0 { margin-top: 0; }
.mt-10 { margin-top: 10px; }
.mt-15 { margin-top: 15px; }
.mt-20 { margin-top: 20px; }
.mt-25 { margin-top: 25px; }
.mt-30 { margin-top: 30px; }
.mt-40 { margin-top: 40px; }
.mt-50 { margin-top: 50px; }
.mt-60 { margin-top: 60px; }

.mb-0 { margin-bottom: 0; }
.mb-10 { margin-bottom: 10px; }
.mb-15 { margin-bottom: 15px; }
.mb-20 { margin-bottom: 20px; }
.mb-25 { margin-bottom: 25px; }
.mb-30 { margin-bottom: 30px; }
.mb-40 { margin-bottom: 40px; }
.mb-50 { margin-bottom: 50px; }
.mb-60 { margin-bottom: 60px; }

.pt-0 { padding-top: 0; }
.pt-10 { padding-top: 10px; }
.pt-20 { padding-top: 20px; }
.pt-30 { padding-top: 30px; }
.pt-40 { padding-top: 40px; }
.pt-50 { padding-top: 50px; }
.pt-60 { padding-top: 60px; }
.pt-80 { padding-top: 80px; }

.pb-0 { padding-bottom: 0; }
.pb-10 { padding-bottom: 10px; }
.pb-20 { padding-bottom: 20px; }
.pb-30 { padding-bottom: 30px; }
.pb-40 { padding-bottom: 40px; }
.pb-50 { padding-bottom: 50px; }
.pb-60 { padding-bottom: 60px; }
.pb-80 { padding-bottom: 80px; }

/*===========================================================
    27. COLOR UTILITIES
=============================================================*/
.text-primary { color: var(--primary) !important; }
.text-secondary { color: var(--secondary) !important; }
.text-accent { color: var(--accent) !important; }
.text-white { color: var(--white) !important; }
.text-dark { color: var(--dark) !important; }
.text-muted { color: var(--gray-500) !important; }

.bg-primary { background: var(--primary) !important; }
.bg-secondary { background: var(--secondary) !important; }
.bg-accent { background: var(--accent) !important; }
.bg-dark { background: var(--dark) !important; }
.bg-white { background: var(--white) !important; }
.bg-light { background: var(--off-white) !important; }
.bg-gradient { background: var(--gradient-primary) !important; }

/*===========================================================
    28. MISC UTILITIES
=============================================================*/
.rounded-custom {
    border-radius: var(--radius-lg);
}

.rounded-circle {
    border-radius: var(--radius-round);
}

.shadow-custom {
    box-shadow: var(--shadow-md);
}

.shadow-hover:hover {
    box-shadow: var(--shadow-xl) !important;
}

.overflow-hidden {
    overflow: hidden;
}

.position-relative {
    position: relative;
}

.z-index-1 {
    z-index: 1;
}

.z-index-2 {
    z-index: 2;
}

.font-heading {
    font-family: var(--font-heading);
}

.font-body {
    font-family: var(--font-body);
}

/*===========================================================
    29. RESPONSIVE (Primary overrides)
=============================================================*/
@media (max-width: 1199px) {
    .hero-title {
        font-size: var(--font-size-5xl);
    }

    .section-title {
        font-size: var(--font-size-2xl);
    }
}

@media (max-width: 991px) {
    .navbar {
        padding: 10px 0;
        top: 56px;
        background: rgba(10,10,26,0.95);
    }

    .navbar-brand .brand-text {
        font-size: 24px;
    }

    .brand-logo {
        height: 38px;
    }

    .navbar-nav {
        background: var(--white);
        padding: 16px;
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-xl);
        margin-top: 10px;
        max-height: 70vh;
        overflow-y: auto;
    }

    .nav-link {
        color: var(--gray-700);
        padding: 10px 16px !important;
        font-size: 12px;
    }

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

    .nav-item.ms-lg-2 {
        margin-left: 0 !important;
        margin-top: 8px;
    }

    .nav-cta {
        width: 100%;
        text-align: center;
        padding: 10px 20px !important;
        font-size: 12px !important;
    }

    .navbar-nav .dropdown-menu {
        border: none;
        box-shadow: none;
        padding: 0 0 0 16px;
        margin-top: 0;
        background: transparent;
        min-width: auto;
        animation: none;
        position: static;
        float: none;
        border-radius: 0;
    }

    .navbar-nav .nav-item.dropdown.show .dropdown-menu {
        display: block;
    }

    .dropdown-item {
        font-size: 12px;
        padding: 8px 14px;
        color: var(--gray-600);
    }

    .dropdown-item:hover {
        padding-left: 18px;
    }

    .nav-item.dropdown.show > .dropdown-toggle {
        color: var(--primary) !important;
    }

    .navbar-toggler-icon {
        font-size: 22px;
    }

    .hero-title {
        font-size: var(--font-size-4xl);
    }

    .hero-description {
        font-size: var(--font-size-base);
    }

    .hero-search-form {
        margin-top: -40px;
        padding: 20px;
    }

    .section-padding {
        padding: 60px 0;
    }

    .page-banner {
        padding: 150px 0 60px;
    }

    .page-banner-title {
        font-size: var(--font-size-3xl);
    }
}

@media (max-width: 767px) {
    .navbar {
        padding: 10px 0;
        top: 28px;
    }

    .navbar-brand .brand-text {
        font-size: 20px;
    }

    .brand-logo {
        height: 36px;
    }

    .navbar-nav {
        padding: 12px;
    }

    .nav-link {
        font-size: 11px;
        padding: 8px 14px !important;
    }

    .dropdown-menu {
        padding-left: 12px;
    }

    .dropdown-item {
        font-size: 11px;
        padding: 6px 12px;
    }

    .nav-cta {
        font-size: 11px !important;
        padding: 8px 16px !important;
    }

    .hero-title {
        font-size: var(--font-size-3xl);
    }

    .hero-subtitle {
        font-size: var(--font-size-sm);
        letter-spacing: 3px;
    }

    .hero-buttons .btn {
        padding: 10px 24px;
        font-size: var(--font-size-xs);
    }

    .hero-search-form {
        padding: 15px;
    }

    .section-padding {
        padding: 50px 0;
    }

    .section-title {
        font-size: var(--font-size-2xl);
    }

    .page-banner-title {
        font-size: var(--font-size-2xl);
    }

    .page-banner {
        padding: 130px 0 50px;
    }

    .back-to-top {
        width: 40px;
        height: 40px;
        bottom: 20px;
        right: 20px;
        font-size: var(--font-size-base);
    }

    .contact-form-wrapper {
        padding: 25px;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .pricing-card.featured:hover {
        transform: translateY(-8px);
    }
}

@media (max-width: 575px) {
    .navbar {
        padding: 10px 0;
        top: 24px;
    }
    .navbar-brand {
        gap: 10px;
    }
    .navbar-brand .brand-text {
        font-size: 20px;
    }

    .navbar-brand {
        gap: 10px;
    }

    .navbar-brand .brand-text {
        font-size: 26px;
    }

    .brand-logo {
        height: 46px;
    }

    .navbar-nav {
        padding: 10px;
    }

    .nav-link {
        font-size: 11px;
        padding: 8px 12px !important;
    }

    .dropdown-menu {
        padding-left: 10px;
    }

    .nav-cta {
        font-size: 10px !important;
        padding: 8px 14px !important;
    }

    .hero-section {
        height: auto;
        min-height: 100vh;
        max-height: none;
    }

    .hero-content-wrap {
        padding-top: 80px;
        min-height: 100vh;
        padding-bottom: 30px;
    }

    .hero-title {
        font-size: 1.375rem;
    }

    .hero-split-left .hero-title {
        font-size: 1.375rem;
    }

    .hero-split-left .hero-description {
        font-size: 0.8rem;
        margin: 0 0 12px;
    }

    .hero-split-left .hero-subtitle {
        padding: 0 16px;
    }

    .hero-split-left .hero-subtitle::before,
    .hero-split-left .hero-subtitle::after {
        width: 12px;
    }

    .hero-subtitle {
        font-size: var(--font-size-xs);
        letter-spacing: 2px;
        padding: 0 20px;
    }

    .hero-subtitle::before,
    .hero-subtitle::after {
        width: 15px;
    }

    .hero-description {
        font-size: var(--font-size-sm);
    }

    .hero-buttons .btn {
        padding: 8px 18px;
        font-size: 0.7rem;
    }

    .section-title {
        font-size: var(--font-size-xl);
    }

    .section-description {
        font-size: var(--font-size-sm);
    }

    .page-banner-title {
        font-size: var(--font-size-xl);
    }
}

@media (max-width: 380px) {
    .navbar {
        padding: 8px 0;
        top: 22px;
    }
    .navbar-brand {
        gap: 6px;
    }
    .navbar-brand .brand-text {
        font-size: 18px;
    }
    .brand-logo {
        height: 34px;
    }
    .navbar-toggler-icon {
        font-size: 18px;
    }
}

/*===========================================================
    OVERRIDES & HELPERS
=============================================================*/

body {
    padding-top: 0;
}

.page-wrapper {
    padding-top: 125px;
}

.hero-search-form .input-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray-400);
    z-index: 5;
}

.hero-search-form .btn-search {
    height: 50px;
    width: 100%;
    font-weight: 600;
}

/* Swiper overrides for hero */
.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255,255,255,0.5);
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: var(--accent);
    width: 30px;
    border-radius: 10px;
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--white) !important;
    background: rgba(0,0,0,0.3);
    width: 50px !important;
    height: 50px !important;
    border-radius: 50%;
    transition: var(--transition-base);
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: var(--accent);
    color: var(--dark) !important;
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 20px !important;
    font-weight: 700;
}

/* Package card image */
.package-card .card-img-wrapper {
    height: 220px;
    overflow: hidden;
    background: var(--gray-100);
}

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

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

.package-card .card-body {
    padding: 20px 24px;
}

.package-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    font-size: clamp(0.58rem, 0.85vw, 0.68rem);
    color: var(--gray-500);
    margin-bottom: 6px;
}

.package-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.package-meta i {
    color: var(--secondary);
}

.package-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 12px;
    border-top: 1px solid var(--gray-100);
    margin-top: 12px;
}

.package-price .new-price {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: clamp(0.9rem, 1.6vw, 1.15rem);
    color: var(--primary);
}

.package-price .old-price {
    font-size: var(--font-size-xs);
    color: var(--gray-400);
    text-decoration: line-through;
}

/* Destination card */
.destination-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 280px;
    cursor: pointer;
}

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

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

.destination-card .card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 40%, rgba(13,27,42,0.95) 100%);
    z-index: 1;
}

.destination-card .card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 25px;
    z-index: 2;
}

.destination-card .card-content .location {
    font-size: var(--font-size-xs);
    color: var(--accent);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 5px;
}

.destination-card .card-content h4 {
    color: var(--white);
    font-size: var(--font-size-xl);
    font-weight: 700;
}

/* Category card */
.category-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 280px;
    cursor: pointer;
    display: block;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 0.6s ease;
}

.category-card:hover {
    transform: scale(1.03);
}

.category-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.35) 100%);
    z-index: 1;
}

.category-card-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    text-align: center;
    z-index: 2;
    color: var(--white);
    text-shadow: 0 2px 6px rgba(0,0,0,0.5);
}

.category-card-content i {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: var(--accent);
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5));
}

.category-card-content h5 {
    color: var(--white);
    font-weight: 600;
}

.category-card-content p {
    color: rgba(255,255,255,0.85);
    font-size: var(--font-size-xs);
}

/* Testimonial Card */
.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--shadow-md);
    margin: 10px;
}

.testimonial-stars {
    color: var(--accent);
    font-size: var(--font-size-sm);
    margin-bottom: 12px;
}

.testimonial-text {
    font-size: var(--font-size-base);
    color: var(--gray-600);
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 20px;
}

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

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--gray-100);
}

.testimonial-author .author-info h6 {
    font-size: var(--font-size-base);
    font-weight: 600;
    margin-bottom: 2px;
}

.testimonial-author .author-info span {
    font-size: var(--font-size-xs);
    color: var(--gray-500);
}

/* Newsletter Section */
.newsletter-section {
    background: var(--gradient-primary);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,215,0,0.03)" d="M0,96L48,112C96,128,192,160,288,186.7C384,213,480,235,576,213.3C672,192,768,128,864,128C960,128,1056,192,1152,208C1248,224,1344,192,1392,176L1440,160L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"/></svg>') no-repeat bottom;
    background-size: cover;
    opacity: 0.4;
}

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

.newsletter-content h2 {
    color: var(--white);
    font-weight: 800;
    margin-bottom: 10px;
}

.newsletter-content p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 0;
}

.newsletter-form .input-group {
    background: var(--white);
    border-radius: 50px;
    padding: 5px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.15);
}

.newsletter-form .form-control {
    border: none;
    height: 50px;
    padding-left: 20px;
    border-radius: 50px !important;
}

.newsletter-form .btn {
    border-radius: 50px !important;
    padding: 0 30px;
    height: 50px;
}

/* Counter Section */
.counter-section {
    background: var(--off-white);
    padding: 60px 0;
}

.counter-box {
    text-align: center;
    padding: 30px;
}

.counter-box .counter-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.counter-box .counter {
    font-family: var(--font-heading);
    font-size: var(--font-size-4xl);
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 5px;
}

.counter-box .counter-label {
    font-size: var(--font-size-sm);
    color: var(--gray-500);
    font-weight: 500;
}

/* Footer */
/* ========== PREMIUM FOOTER ========== */
.site-footer {
    background: var(--dark);
    color: rgba(255,255,255,0.7);
    position: relative;
    border-top: 1px solid rgba(255,255,255,0.04);
}

/* --- Grid Layout (5 columns desktop) --- */
.footer-main {
    padding: 40px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.9fr 1fr 0.9fr 1.1fr;
    gap: 24px;
}

/* --- Sections --- */
.footer-section {
    min-width: 0;
}

.footer-section .footer-heading {
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 0.88rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 16px;
    padding-bottom: 8px;
    position: relative;
}

.footer-section .footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 22px;
    height: 2px;
    background: var(--accent);
    border-radius: 1px;
}

/* --- Brand Section --- */
.footer-brand-section .footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.footer-brand-section .footer-logo {
    height: 36px;
    width: auto;
}

.footer-brand-section .brand-text {
    font-family: 'Ubuntu', sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
    text-transform: lowercase;
    color: var(--white);
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.footer-brand-section .brand-text span {
    display: block;
    font-size: 0.7rem;
    font-weight: 400;
    color: #4169e1;
    text-transform: lowercase;
    letter-spacing: 0;
}

.brand-tagline {
    font-size: 0.82rem;
    color: var(--accent);
    font-weight: 500;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.footer-seo-text {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.5;
    margin-bottom: 10px;
}

/* --- Trust Badges --- */
.trust-badges-row {
    display: flex;
    flex-wrap: wrap;
    gap: 4px 8px;
    margin-bottom: 10px;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.7rem;
    color: rgba(255,255,255,0.65);
    padding: 2px 7px;
    background: rgba(255,255,255,0.04);
    border-radius: 4px;
    border: 1px solid rgba(255,255,255,0.06);
}

.trust-badge i {
    font-size: 0.55rem;
    color: var(--accent);
}

/* --- Rating --- */
.footer-rating {
    display: flex;
    align-items: center;
    gap: 8px;
}

.rating-stars {
    color: var(--accent);
    font-size: 0.78rem;
    letter-spacing: 2px;
}

.rating-label {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.45);
}

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

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

.footer-links li a {
    color: rgba(255,255,255,0.55);
    font-size: 0.85rem;
    text-decoration: none;
    transition: all 0.25s ease;
    display: inline-block;
    position: relative;
}

.footer-links li a:hover {
    color: var(--accent);
    padding-left: 4px;
}

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

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    font-size: 0.85rem;
}

.footer-contact li i {
    color: var(--accent);
    font-size: 0.68rem;
    width: 14px;
    text-align: center;
    flex-shrink: 0;
}

.footer-contact li a {
    color: rgba(255,255,255,0.55);
    text-decoration: none;
    transition: color 0.25s ease;
}

.footer-contact li span {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.55);
}

.footer-contact li a:hover {
    color: var(--accent);
}

.footer-contact li .fa-phone-alt {
    transform: rotate(90deg);
}

/* --- CTA Buttons --- */
.footer-cta {
    margin-top: 2px;
}

.footer-whatsapp-link,
.footer-maps-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 11px;
    border-radius: 6px;
    font-size: 0.78rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-whatsapp-link {
    background: rgba(37,211,102,0.12);
    color: #25d366 !important;
    border: 1px solid rgba(37,211,102,0.2);
}

.footer-whatsapp-link:hover {
    background: rgba(37,211,102,0.22);
    color: #25d366 !important;
    transform: translateY(-1px);
}

.footer-maps-link {
    background: rgba(66,165,245,0.1);
    color: var(--secondary) !important;
    border: 1px solid rgba(66,165,245,0.15);
}

.footer-maps-link:hover {
    background: rgba(66,165,245,0.2);
    color: var(--secondary) !important;
    transform: translateY(-1px);
}

/* --- Heading Toggle (hidden on desktop) --- */
.footer-heading-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: default;
}

.footer-toggle-icon {
    display: none;
    font-size: 1.1rem;
    color: rgba(255,255,255,0.4);
    font-weight: 300;
    transition: transform 0.3s ease;
}

/* --- Micro Bar --- */
.footer-micro {
    background: rgba(0,0,0,0.35);
    border-top: 1px solid rgba(255,255,255,0.04);
    padding: 11px 0;
}

.footer-micro-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 6px 16px;
}

.footer-micro-copyright {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.4);
}

.footer-micro-copyright a {
    color: var(--accent);
    text-decoration: none;
}

.footer-micro-copyright a:hover {
    text-decoration: underline;
}

.footer-micro-links {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.footer-micro-links a {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.4);
    text-decoration: none;
    transition: color 0.25s ease;
}

.footer-micro-links a:hover {
    color: var(--accent);
}

.footer-micro-social {
    display: flex;
    gap: 5px;
}

.footer-micro-social a {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.45);
    font-size: 0.7rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-micro-social a:hover {
    background: var(--accent);
    color: var(--dark);
    transform: translateY(-2px);
}

.footer-micro-tagline {
    font-size: 0.62rem;
    color: rgba(255,255,255,0.3);
    font-style: italic;
    letter-spacing: 0.5px;
}

.footer-micro-tagline a {
    color: var(--accent);
    text-decoration: none;
    transition: color 0.25s ease;
}

.footer-micro-tagline a:hover {
    color: #fff;
    text-decoration: underline;
}

/* --- Tablet (768-991px) --- */
@media (max-width: 991px) {
    .footer-main {
        padding: 35px 0 25px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 18px;
    }

    .footer-brand-section {
        grid-column: 1 / -1;
    }

    .footer-heading-toggle {
        cursor: pointer;
    }

    .footer-toggle-icon {
        display: block;
    }

    .footer-section .footer-links,
    .footer-section .footer-contact {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.35s ease, opacity 0.3s ease;
        opacity: 0;
        margin: 0;
        padding: 0;
    }

    .footer-section.footer-section-open .footer-links,
    .footer-section.footer-section-open .footer-contact {
        max-height: 400px;
        opacity: 1;
        margin-top: 12px;
    }
}

/* --- Mobile (<768px) --- */
@media (max-width: 767px) {
    .footer-main {
        padding: 25px 0 20px;
    }

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

    .footer-section {
        border-bottom: 1px solid rgba(255,255,255,0.05);
        padding: 14px 0;
    }

    .footer-brand-section {
        border-bottom: 1px solid rgba(255,255,255,0.08);
        padding-bottom: 18px;
    }

    .footer-brand-section .footer-logo {
        height: 30px;
    }

    .footer-brand-section .brand-text {
        font-size: 0.9rem;
    }

    .footer-section .footer-heading {
        margin-bottom: 0;
        font-size: 0.78rem;
    }

    .footer-section .footer-heading::after {
        display: none;
    }

    .footer-heading-toggle {
        cursor: pointer;
        user-select: none;
    }

    .footer-toggle-icon {
        display: block;
        font-size: 1.15rem;
    }

    .footer-section-open .footer-toggle-icon {
        transform: rotate(45deg);
    }

    .footer-section .footer-links,
    .footer-section .footer-contact {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.35s ease, opacity 0.3s ease, padding 0.3s ease;
        opacity: 0;
        padding: 0;
        margin: 0;
    }

    .footer-section.footer-section-open .footer-links,
    .footer-section.footer-section-open .footer-contact {
        max-height: 500px;
        opacity: 1;
        padding-top: 14px;
    }

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

    .footer-links li a {
        font-size: 0.88rem;
    }

    .footer-contact li {
        font-size: 0.88rem;
    }

    .footer-micro-inner {
        flex-direction: column;
        text-align: center;
        gap: 6px;
    }

    .footer-micro-links {
        justify-content: center;
    }

    .footer-micro-social {
        justify-content: center;
    }

    .footer-whatsapp-link,
    .footer-maps-link {
        font-size: 0.8rem;
        padding: 6px 14px;
    }

    .trust-badges-row {
        margin-bottom: 8px;
        justify-content: center;
    }

    .footer-rating {
        justify-content: center;
    }

    .footer-brand-section .footer-brand {
        justify-content: center;
    }

    .brand-tagline {
        text-align: center;
    }
}

/* --- Small Mobile (<480px) --- */
@media (max-width: 480px) {
    .footer-micro-links {
        gap: 8px;
    }

    .footer-micro-links a {
        font-size: 0.65rem;
    }

    .footer-whatsapp-link,
    .footer-maps-link {
        font-size: 0.75rem;
        padding: 5px 11px;
    }
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 90px;
    right: 30px;
    width: 55px;
    height: 55px;
    background: #25d366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    z-index: 9998;
    transition: var(--transition-base);
    animation: whatsappPulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: var(--white);
    box-shadow: 0 6px 30px rgba(37,211,102,0.5);
}

@keyframes whatsappPulse {
    0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.6); }
    70% { box-shadow: 0 0 0 15px rgba(37,211,102,0); }
    100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* Page Banner override */
.page-banner {
    padding: 140px 0 80px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.page-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-hero);
}

.page-banner .container {
    position: relative;
    z-index: 2;
}

/* Blog Card */
.blog-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
    margin-bottom: 30px;
}

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

.blog-card .card-img-wrapper {
    height: 220px;
    overflow: hidden;
    background: var(--gray-100);
}

.blog-card .card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.blog-card:hover .card-img-wrapper img {
    transform: scale(1.1);
}

.blog-card .card-body {
    padding: 20px 24px;
}

.blog-meta {
    display: flex;
    gap: 15px;
    font-size: var(--font-size-xs);
    color: var(--gray-500);
    margin-bottom: 10px;
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.blog-meta i {
    color: var(--secondary);
}

/* Sidebar */
.sidebar-widget {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 25px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 25px;
}

.sidebar-widget .widget-title {
    font-size: var(--font-size-lg);
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--gray-100);
    position: relative;
}

.sidebar-widget .widget-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary);
}

/* Pagination */
.pagination {
    justify-content: center;
    gap: 5px;
}

.page-link {
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-md);
    color: var(--gray-600);
    font-weight: 500;
    padding: 8px 16px;
    transition: var(--transition-base);
}

.page-link:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.page-item.active .page-link {
    background: var(--primary);
    border-color: var(--primary);
}

/* Rating stars */
.rating-stars {
    display: inline-flex;
    gap: 2px;
}

.rating-stars i {
    color: var(--accent);
    font-size: var(--font-size-sm);
}

/* Badge */
.badge-tag {
    display: inline-block;
    padding: 4px 12px;
    background: var(--primary);
    color: var(--white);
    border-radius: var(--radius-sm);
    font-size: var(--font-size-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Price styling */
.new-price {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--primary);
}

.old-price {
    font-size: 12px;
    color: var(--gray-400);
    text-decoration: line-through;
}

/* Book Now button on cards */
.btn-book {
    padding: 8px 20px;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: var(--font-size-xs);
}

.card-img-wrapper .btn-sm,
.package-footer .btn-sm {
    font-size: clamp(0.6rem, 1.2vw, 0.75rem);
    padding: clamp(0.2rem, 0.5vw, 0.35rem) clamp(0.4rem, 1.2vw, 0.7rem);
    white-space: nowrap;
}

@media (max-width: 576px) {
    .package-footer .btn-sm {
        font-size: 0.65rem;
        padding: 0.25rem 0.5rem;
    }
}

/* Section spacing */
.section-padding {
    padding: 25px 0;
}

.section-title-wrapper {
    text-align: center;
    margin-bottom: 20px;
}

.section-subtitle {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 13px;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 8px;
    display: inline-block;
}

.section-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 12px;
}

.section-title span {
    color: var(--primary);
}

.section-description {
    max-width: 600px;
    margin: 0 auto;
    color: var(--gray-500);
    font-size: 15px;
    line-height: 1.7;
}

/* Light section title */
.section-title-wrapper.light .section-title {
    color: var(--white);
}

.section-title-wrapper.light .section-title span {
    color: var(--accent);
}

.section-title-wrapper.light .section-description {
    color: rgba(255,255,255,0.75);
}

/* Form styling */
.form-control, .form-select {
    border: 2px solid var(--gray-100);
    border-radius: var(--radius-md);
    padding: 10px 15px;
    font-size: var(--font-size-sm);
    transition: var(--transition-base);
}

.form-control:focus, .form-select:focus {
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(66,165,245,0.1);
}

/* Contact form */
.contact-info-box {
    padding: 30px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    height: 100%;
}

.contact-info-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-info-item:last-child {
    margin-bottom: 0;
}

.contact-info-item .icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: var(--font-size-lg);
    flex-shrink: 0;
}

.contact-info-item h6 {
    margin-bottom: 2px;
}

.contact-info-item p {
    font-size: var(--font-size-sm);
    color: var(--gray-500);
    margin: 0;
}

/* Mobile responsive */
@media (max-width: 767px) {
    .hero-section {
        height: auto;
        min-height: 100vh;
        max-height: none;
    }

    .hero-content-wrap {
        padding-top: 100px;
        min-height: 100vh;
        padding-bottom: 40px;
    }

    .hero-split {
        gap: 20px;
    }

    .hero-title {
        font-size: 1.75rem;
    }

    .hero-split-left .hero-title {
        font-size: 1.75rem;
    }

    .hero-split-left .hero-subtitle {
        padding: 0 20px;
        color: var(--accent);
        text-shadow: 0 0 10px rgba(0,0,0,0.6);
    }

    .hero-split-left .hero-subtitle::before,
    .hero-split-left .hero-subtitle::after {
        width: 15px;
    }

    .hero-split-left .hero-description {
        font-size: 0.85rem;
        margin: 0 0 16px;
    }

    .hero-subtitle {
        font-size: var(--font-size-sm);
        letter-spacing: 3px;
    }

    .hero-buttons .btn {
        padding: 10px 24px;
        font-size: var(--font-size-xs);
    }
    .hero-content .hero-subtitle {
        font-size: var(--font-size-sm);
        padding: 0 20px;
    }
    .hero-content .hero-subtitle::before,
    .hero-content .hero-subtitle::after {
        width: 15px;
    }
    .hero-content .hero-description {
        font-size: var(--font-size-base);
    }

    .hero-search-card {
        padding: 20px 16px;
    }
    .hero-search-card .search-card-field select,
    .hero-search-card .search-card-field input {
        height: 40px;
        font-size: 12px;
    }
    .hero-search-card .btn {
        height: 40px;
        font-size: 12px;
    }

    .counter-box {
        padding: 20px;
    }
    .counter-box .counter {
        font-size: var(--font-size-3xl);
    }
}

@media (max-width: 575px) {
    .hero-section {
        height: auto;
        min-height: 100vh;
        max-height: none;
    }
    .hero-content .hero-title {
        font-size: 1.375rem;
    }
    .hero-content .hero-description {
        font-size: var(--font-size-sm);
    }
    .hero-split-left .hero-subtitle {
        padding: 0 12px;
    }
    .hero-split-left .hero-subtitle::before,
    .hero-split-left .hero-subtitle::after {
        width: 8px;
    }
    .section-title {
        font-size: var(--font-size-xl);
    }
    .page-banner {
        padding: 120px 0 40px;
    }
    .page-banner-title {
        font-size: var(--font-size-2xl);
    }
}

/* Search Floating Pill (mobile) */
.search-floating-pill {
    display: none;
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    background: var(--accent);
    color: var(--dark);
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    box-shadow: 0 6px 30px rgba(0,0,0,0.35);
    cursor: pointer;
    align-items: center;
    gap: 10px;
    border: none;
    transition: transform 0.2s;
}
.search-floating-pill:active {
    transform: translateX(-50%) scale(0.95);
}
.search-floating-pill i {
    font-size: 16px;
}

/* Search Modal Overlay (mobile) */
.search-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    z-index: 99999;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.search-modal-content {
    background: rgba(255,255,255,0.07);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 12px;
    padding: 22px 20px;
    border: 1px solid rgba(255,255,255,0.10);
    box-shadow: 0 12px 50px rgba(0,0,0,0.4);
    width: 100%;
    max-width: 400px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.search-modal-close {
    position: absolute;
    top: 12px;
    right: 18px;
    font-size: 28px;
    cursor: pointer;
    color: rgba(255,255,255,0.5);
    line-height: 1;
    transition: color 0.2s;
}
.search-modal-close:hover {
    color: #fff;
}
.search-modal-content .search-card-title {
    color: var(--white);
    font-size: 15px;
    margin-bottom: 16px;
}

.search-modal-content form {
    text-align: center;
}

.search-modal-content .search-card-field {
    margin-bottom: 10px;
    text-align: left;
}
.search-modal-content .search-card-field label {
    color: rgba(255,255,255,0.5);
}
.search-modal-content .input-wrap {
    position: relative;
}

.search-modal-content .input-wrap select,
.search-modal-content .input-wrap input {
    background: rgba(255,255,255,0.06);
    color: var(--white);
    border-color: rgba(255,255,255,0.12);
    height: 38px;
    border-radius: 6px;
    padding: 0 12px 0 34px;
    font-size: 13px;
}
.search-modal-content .input-wrap select option {
    background: #1a1a2e;
    color: #fff;
}
.search-modal-content .input-wrap i {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--accent);
    font-size: 14px;
    pointer-events: none;
    z-index: 1;
    opacity: 0.8;
}

@media (max-width: 767px) {
    .hero-split-right .hero-search-card {
        display: none;
    }
    .search-floating-pill {
        display: flex;
    }
}

/*===========================================================
      - ABOUT / GALLERY / BLOG ADDITIONS
=============================================================*/
.page-banner-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    opacity: 0.5;
}
.about-badge {
    position: absolute;
    bottom: 30px;
    left: -10px;
    background: var(--gradient-accent);
    padding: 20px 30px;
    border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
    color: var(--dark);
}
.feature-box {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 18px;
    background: var(--off-white);
    border-radius: var(--radius-md);
}
.feature-icon {
    width: 45px;
    height: 45px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.mission-card {
    background: var(--white);
    padding: 40px 35px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    height: 100%;
    border-bottom: 4px solid var(--accent);
}
.team-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: var(--transition-base);
}
.team-card-img {
    overflow: hidden;
    height: 280px;
}
.team-card-body {
    padding: 25px 20px;
}
.gallery-filter-btn {
    padding: 10px 25px;
    border: none;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: var(--font-size-sm);
    cursor: pointer;
    transition: all 0.3s ease;
    background: transparent;
    color: var(--gray-600);
}
.gallery-filter-btn.active {
    background: var(--accent);
    color: var(--dark);
}
.gallery-filter-btn:hover {
    background: var(--accent);
    color: var(--dark);
}
.counter-section-dark {
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
    padding: 60px 0;
}
.counter-section-dark .container {
    position: relative;
    z-index: 2;
}
.counter-section-dark .counter-box .counter-icon {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 15px;
}
.counter-section-dark .counter-box .counter {
    font-family: var(--font-heading);
    font-size: var(--font-size-4xl);
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    margin-bottom: 5px;
}
.counter-section-dark .counter-box .counter-label {
    color: rgba(255,255,255,0.7);
    font-size: var(--font-size-sm);
    font-weight: 500;
}
.counter-icon {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 10px;
}
.counter-number {
    font-size: var(--font-size-4xl);
    font-weight: 900;
    color: var(--white);
    margin-bottom: 5px;
}
.counter-plus {
    color: var(--accent);
}
.counter-label {
    color: rgba(255,255,255,0.7);
    font-size: var(--font-size-base);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

/*===========================================================
     - BLOG DETAIL / CONTENT ADDITIONS
=============================================================*/

/* Author bio */
.author-bio {
    background: var(--off-white);
    border-radius: var(--radius-lg);
    padding: 30px;
    display: flex;
    gap: 20px;
    align-items: center;
}
.author-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 3px solid var(--accent);
}

/* Comments section */
.comments-section { margin-top: 50px; }
.comment-form-box {
    background: var(--off-white);
    border-radius: var(--radius-lg);
    padding: 35px;
    margin-top: 40px;
}

/* Contact social links */
.social-link {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--white);
    text-decoration: none;
    transition: transform 0.3s;
}
.social-link:hover {
    transform: scale(1.1);
    color: var(--white);
}
.social-link.facebook { background: #1877F2; }
.social-link.twitter { background: #1DA1F2; }
.social-link.instagram { background: #E4405F; }
.social-link.youtube { background: #FF0000; }
.social-link.linkedin { background: #0A66C2; }

/* Contact info card styles */
.contact-info-card-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}
.contact-info-card-item:last-child { margin-bottom: 0; }

/* Blog detail */
.blog-detail-featured-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: var(--shadow-md);
}
.blog-detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 25px;
    font-size: var(--font-size-sm);
    color: var(--gray-500);
}
.blog-detail-title {
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.3;
    font-size: var(--font-size-2xl);
}
.blog-detail-content {
    color: var(--gray-600);
    line-height: 1.9;
    font-size: var(--font-size-base);
}

/* Sidebar widget */
.sidebar-widget {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    padding: 25px;
    margin-bottom: 30px;
}

/* Comment item */
.comment-item {
    display: flex;
    gap: 18px;
    padding: 22px 0;
    border-bottom: 1px solid #f0f0f0;
}
.comment-avatar {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    background: var(--gradient-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--dark);
    font-size: 1.2rem;
}
.comment-body { flex: 1; }
.comment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
    flex-wrap: wrap;
    gap: 5px;
}

/* Contact form / info */
.contact-form-wrapper {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 40px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
}
.contact-info-box {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 40px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    margin-bottom: 25px;
}
.contact-info-icon {
    width: 50px;
    height: 50px;
    background: rgba(255,215,0,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 1.2rem;
    flex-shrink: 0;
}
.contact-info-icon .fa-phone-alt {
    transform: rotate(90deg);
}
.contact-social-box {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 30px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
}
.social-links {
    display: flex;
    gap: 10px;
}

/* Map container */
.map-container {
    width: 100%;
    height: 400px;
}

/* Sidebar widget inner elements */
.sidebar-widget-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.sidebar-widget-list-item {
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
}
.sidebar-widget-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text);
    text-decoration: none;
    font-size: var(--font-size-sm);
    transition: color 0.3s;
}
.sidebar-widget-link:hover { color: var(--accent); }
.sidebar-widget-link i { color: var(--accent); font-size: 0.8rem; }
.sidebar-widget-post-item {
    display: flex;
    gap: 15px;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
}
.sidebar-widget-post-thumb {
    width: 70px;
    height: 70px;
    border-radius: var(--radius-md);
    overflow: hidden;
    flex-shrink: 0;
}
.sidebar-widget-post-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.sidebar-widget-post-info { flex: 1; }
.sidebar-widget-post-info h6 {
    font-size: var(--font-size-sm);
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 5px;
}
.sidebar-widget-post-title {
    color: var(--dark);
    text-decoration: none;
    transition: color 0.3s;
}
.sidebar-widget-post-title:hover { color: var(--accent); }
.sidebar-widget-post-date {
    font-size: var(--font-size-xs);
    color: var(--gray-500);
}
.sidebar-widget-post-date i {
    color: var(--accent);
    margin-right: 5px;
}

/*===========================================================
     - NOTIFICATION SYSTEM
=============================================================*/
.notification-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 100000;
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 350px;
}

.notification-item {
    padding: 14px 20px;
    border-radius: 8px;
    color: #fff;
    font-size: 14px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transform: translateX(120%);
    opacity: 0;
    transition: all 0.4s ease;
    cursor: pointer;
}

.notification-item.show {
    transform: translateX(0);
    opacity: 1;
}

.notification-item.success { background: #28a745; }
.notification-item.error { background: #dc3545; }

/*===========================================================
     - OPTIMIZED CLASSES
=============================================================*/
/* Page banner helpers */
.page-banner-heading {
    font-size: var(--font-size-3xl);
    color: var(--white);
    margin-bottom: 15px;
    font-weight: 700;
}
.accent-text {
    color: var(--accent);
}
.banner-text {
    color: rgba(255,255,255,0.7);
    font-size: var(--font-size-base);
}
.page-banner-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 200"><path fill="rgba(255,215,0,0.04)" d="M0,60L48,70C96,80,192,100,288,116.7C384,133.1,480,146.9,576,133.3C672,120,768,80,864,80C960,80,1056,120,1152,130C1248,140,1344,120,1392,110L1440,100L1440,200L1392,200C1344,200,1248,200,1152,200C1056,200,960,200,864,200C768,200,672,200,576,200C480,200,384,200,288,200C192,200,96,200,48,200L0,200Z"/></svg>') no-repeat bottom;
    background-size: cover;
    opacity: 0.5;
    pointer-events: none;
}

/* Filter bar */
.filter-bar {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 20px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 30px;
    border: 1px solid var(--gray-100);
}
.filter-bar .form-label {
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--gray-500);
}

.filter-toggle-icon {
    display: none;
    width: 36px;
    height: 36px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--gray-300);
    border-radius: 6px;
    background: var(--white);
    color: var(--primary);
    font-size: 16px;
    cursor: pointer;
    transition: all 0.2s;
    padding: 0;
}

.filter-toggle-icon:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.filter-toggle-icon.active {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

@media (max-width: 767px) {
    .filter-toggle-icon {
        display: inline-flex;
    }
}

@media (max-width: 767px) {
    .filter-bar {
        padding: 12px;
        margin-top: 12px;
        position: relative;
    }
    .filter-bar-close {
        position: absolute;
        top: 8px;
        right: 10px;
        width: 28px;
        height: 28px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--gray-100);
        border: none;
        border-radius: 50%;
        font-size: 18px;
        line-height: 1;
        color: var(--gray-600);
        cursor: pointer;
        z-index: 1;
        padding: 0;
    }
    .filter-bar-close:hover {
        background: var(--gray-200);
        color: var(--dark);
    }
}

/* View toggle */
.view-toggle {
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-sm);
    overflow: hidden;
}

/* Result count */
.result-count {
    color: var(--gray-500);
    font-size: 0.9rem;
}

/* No results */
.no-results-icon {
    font-size: 4rem;
    color: var(--gray-500);
    margin-bottom: 20px;
}

/* Sidebar CTA */
.sidebar-cta {
    background: linear-gradient(135deg, #1a237e, #283593);
    border-radius: var(--radius-md);
    padding: 30px 25px;
    text-align: center;
    color: var(--white);
}
.sidebar-cta-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}
.sidebar-cta-title {
    color: var(--white);
    font-weight: 700;
    margin-bottom: 10px;
}
.sidebar-cta-text {
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
    margin-bottom: 15px;
}
.sidebar-cta .btn-accent .fa-phone-alt {
    transform: rotate(90deg);
}

/* Package info bar */
.package-info-bar {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 20px 25px;
    box-shadow: var(--shadow-sm);
    margin: 25px 0;
    border: 1px solid var(--gray-100);
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
    justify-content: space-between;
}
.info-item {
    display: flex;
    align-items: center;
    gap: 10px;
}
.info-icon {
    width: 40px;
    height: 40px;
    background: rgba(255,215,0,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    flex-shrink: 0;
}
.info-label {
    color: var(--gray-500);
    display: block;
    font-size: var(--font-size-xs);
}
.info-value {
    font-weight: 600;
}

/* Package gallery */
.main-gallery-img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}
.main-gallery-swiper {
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: 10px;
}
.thumb-gallery-swiper {
    height: 80px;
}
.thumb-gallery-img {
    width: 100%;
    height: 80px;
    object-fit: cover;
    border-radius: 4px;
    cursor: pointer;
}

/* Tour tabs */
.package-tabs .nav-tabs {
    border-bottom: 2px solid var(--gray-100);
    gap: 5px;
}
.tour-tab-btn {
    font-weight: 600;
    padding: 12px 20px;
    border: none;
    color: var(--gray-500);
    background: transparent;
}
.tour-tab-btn:hover,
.tour-tab-btn.active {
    color: var(--primary);
    border-bottom: 2px solid var(--accent);
}

/* Tab content panel */
.tab-panel {
    background: var(--white);
    padding: 30px;
    border-radius: 0 0 var(--radius-md) var(--radius-md);
    border: 1px solid var(--gray-100);
    border-top: none;
}
.tab-content-body {
    line-height: 1.8;
    color: var(--gray-600);
}

/* Booking sidebar */
.booking-sidebar {
    position: sticky;
    top: 100px;
}
.booking-sidebar-inner {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 30px 25px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-100);
}
.booking-sidebar-title {
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--gray-100);
}
.price-summary-box {
    background: var(--off-white);
    border-radius: var(--radius-sm);
    padding: 15px;
    margin-bottom: 20px;
}
.total-amount-label {
    font-size: 1.1rem;
    font-weight: 700;
}
.total-amount {
    font-size: 1.2rem;
    color: var(--accent);
}

/* Security badge */
.security-badge {
    background: linear-gradient(135deg, #0d1b2a, #1a237e);
    border-radius: var(--radius-md);
    padding: 25px;
    margin-top: 25px;
    color: var(--white);
    text-align: center;
}
.security-icon {
    font-size: 2.5rem;
    margin-bottom: 10px;
}
.security-text {
    color: rgba(255,255,255,0.8);
    font-size: 0.85rem;
    margin: 0;
}

/* Breadcrumb light */
.breadcrumb-light {
    background: rgba(255,255,255,0.1);
    padding: 8px 20px;
    border-radius: var(--radius-sm);
    margin: 0;
}

/* Price old */
.price-old {
    text-decoration: line-through;
    color: var(--gray-500);
    font-weight: 400;
    font-size: 0.85rem;
}

/* Map container */
.map-container {
    width: 100%;
    height: 400px;
    border-radius: var(--radius-sm);
    overflow: hidden;
}

/*===========================================================
     - POPUP FORM
=============================================================*/
.popup-trigger-btn {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9999;
    background: linear-gradient(135deg, #ffd700, #c9a800);
    color: #0d1b2a;
    padding: 14px 12px;
    border-radius: 10px;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.4);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: none;
}

.popup-trigger-btn i {
    font-size: 18px;
    writing-mode: horizontal-tb;
}

.popup-trigger-btn:hover {
    transform: translateY(-50%) translateX(-4px);
    box-shadow: 0 12px 40px rgba(255, 215, 0, 0.5);
}

.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 99998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.popup-box {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    z-index: 99999;
    width: 780px;
    max-width: 95vw;
    max-height: 90vh;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease, transform 0.35s ease;
}

.popup-box.active {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

.popup-close-btn {
    position: absolute;
    top: 10px;
    right: 14px;
    z-index: 10;
    font-size: 30px;
    font-weight: 700;
    color: #666;
    cursor: pointer;
    transition: color 0.3s ease;
    line-height: 1;
    background: rgba(255,255,255,0.9);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.popup-close-btn:hover {
    color: #e74c3c;
}

.popup-row {
    display: flex;
    flex-wrap: wrap;
}

.popup-left-col {
    width: 50%;
    min-height: 450px;
    overflow: hidden;
}

.popup-left-col .carousel,
.popup-left-col .carousel-inner,
.popup-left-col .carousel-item {
    height: 100%;
}

.popup-left-col .carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.popup-right-col {
    width: 50%;
    padding: 35px 30px 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.popup-form-section h5 {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 800;
    color: #1a237e;
    margin-bottom: 4px;
    line-height: 1.3;
}

.popup-form-section h5 span {
    font-size: 14px;
    font-weight: 500;
    color: #666;
}

.popup-form-section > p {
    font-size: 13px;
    color: #e74c3c;
    font-weight: 600;
    margin-bottom: 18px;
    letter-spacing: 0.5px;
}

.popup-input {
    width: 100%;
    padding: 11px 14px;
    margin-bottom: 10px;
    border: 1.5px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    transition: border-color 0.3s ease;
    outline: none;
    background: #fafafa;
}

.popup-input:focus {
    border-color: #1a237e;
    background: #fff;
}

.popup-captcha {
    margin-bottom: 10px;
}

.popup-captcha label {
    font-size: 13px;
    display: block;
    margin-bottom: 5px;
    color: #333;
}

.popup-submit-btn {
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, #1a237e, #283593);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.popup-submit-btn:hover {
    background: linear-gradient(135deg, #283593, #1a237e);
    box-shadow: 0 6px 20px rgba(26, 35, 126, 0.3);
    transform: translateY(-1px);
}

.popup-bottom-text {
    text-align: center;
    margin-top: 14px;
    font-size: 11px;
    color: #888;
    line-height: 1.5;
}

.popup-bottom-text strong {
    color: #1a237e;
}

.popup-thankyou {
    display: none;
    text-align: center;
    padding: 30px;
}

.popup-thankyou h3 {
    font-family: 'Poppins', sans-serif;
    margin: 12px 0 6px;
}

.popup-thankyou p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .popup-trigger-btn {
        right: 10px;
        padding: 10px 8px;
        font-size: 11px;
    }
    .popup-trigger-btn i {
        font-size: 14px;
    }
    .popup-left-col {
        display: none;
    }
    .popup-right-col {
        width: 100%;
        padding: 25px 20px 20px;
    }
    .popup-box {
        max-height: 85vh;
        overflow-y: auto;
    }
    .popup-form-section h5 {
        font-size: 18px;
    }
}

/*===========================================================
     - BLOG & WIDGET UTILITY CLASSES
=============================================================*/
.blog-category-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--accent);
    color: var(--dark);
    padding: 5px 15px;
    border-radius: var(--radius-sm);
    font-size: var(--font-size-xs);
    font-weight: 600;
    text-transform: uppercase;
}
.blog-card-title {
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.4;
}
.blog-card-title a {
    color: var(--dark);
    text-decoration: none;
    transition: color 0.3s;
}
.blog-card-title a:hover {
    color: var(--primary);
}
.blog-card-excerpt {
    color: var(--muted);
    font-size: var(--font-size-sm);
    line-height: 1.7;
    margin-bottom: 15px;
}
.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent);
    font-weight: 600;
    font-size: var(--font-size-sm);
    text-decoration: none;
    transition: gap 0.3s;
}
.blog-read-more:hover {
    gap: 12px;
    color: var(--accent-dark);
}

.widget-inline-search {
    display: flex;
    gap: 0;
}
.widget-inline-search .form-control {
    border-radius: var(--radius-md) 0 0 var(--radius-md);
    border: 1px solid #e0e0e0;
    padding: 12px 15px;
    font-size: var(--font-size-sm);
}
.widget-inline-search .btn-search {
    padding: 12px 20px;
    background: var(--accent);
    border: none;
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    color: var(--dark);
    font-size: var(--font-size-base);
}
.widget-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.widget-list-item {
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
}
.widget-list-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text);
    text-decoration: none;
    font-size: var(--font-size-sm);
    transition: color 0.3s;
}
.widget-list-link:hover {
    color: var(--primary);
}
.widget-list-link i {
    color: var(--accent);
    font-size: 0.8rem;
}

.recent-post-item {
    display: flex;
    gap: 15px;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
}
.recent-post-thumb {
    width: 70px;
    height: 70px;
    border-radius: var(--radius-md);
    overflow: hidden;
    flex-shrink: 0;
}
.recent-post-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.recent-post-info {
    flex: 1;
}
.recent-post-title {
    font-size: var(--font-size-sm);
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 5px;
}
.recent-post-title a {
    color: var(--dark);
    text-decoration: none;
    transition: color 0.3s;
}
.recent-post-title a:hover {
    color: var(--primary);
}
.recent-post-date {
    font-size: var(--font-size-xs);
    color: var(--muted);
}
.recent-post-date i {
    color: var(--accent);
    margin-right: 5px;
}

.widget-inline-form {
    display: flex;
    gap: 0;
}

/*===========================================================
     - CONTACT PAGE UTILITY CLASSES
=============================================================*/
.contact-info-card {
    background: var(--white);
    padding: 25px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-100);
    text-align: left;
}
.contact-info-heading {
    font-weight: 700;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--light-gray);
}
.contact-info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-info-icon {
    width: 45px;
    height: 45px;
    background: rgba(255,215,0,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    flex-shrink: 0;
}
.contact-info-label {
    font-weight: 700;
    display: inline;
}
.contact-info-label::after {
    content: " : ";
}
.contact-info-value {
    color: var(--gray-500);
    margin: 0;
    display: inline;
}
.contact-info-value a {
    color: var(--gray-500);
    text-decoration: none;
}
.contact-info-value a:hover {
    color: var(--primary);
}
.contact-social-heading {
    font-weight: 700;
    margin-bottom: 15px;
    margin-top: 25px;
}
.social-links-wrap {
    display: flex;
    gap: 10px;
}
.social-link {
    width: 40px;
    height: 40px;
    border: 1px solid var(--gray-200);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-500);
    text-decoration: none;
    transition: var(--transition-base);
}
.social-link:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--dark);
}

@media (max-width: 991px) {
    .contact-info-card {
        padding: 20px;
    }
    .contact-info-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    .contact-info-heading {
        font-size: 1.15rem;
        margin-bottom: 20px;
        padding-bottom: 12px;
    }
    .contact-info-label {
        font-size: 0.9rem;
    }
    .contact-info-value {
        font-size: 0.85rem;
    }
    .social-link {
        width: 38px;
        height: 38px;
        font-size: 0.9rem;
    }
}

@media (max-width: 767px) {
    .contact-info-card {
        padding: 18px;
    }
    .contact-info-icon {
        width: 38px;
        height: 38px;
        font-size: 0.95rem;
    }
    .contact-info-item {
        gap: 12px;
        margin-bottom: 16px;
    }
    .contact-info-heading {
        font-size: 1.1rem;
        margin-bottom: 18px;
        padding-bottom: 10px;
    }
    .contact-info-label {
        font-size: 0.85rem;
    }
    .contact-info-value {
        font-size: 0.82rem;
    }
    .contact-social-heading {
        font-size: 1rem;
        margin-top: 20px;
        margin-bottom: 12px;
    }
    .social-link {
        width: 36px;
        height: 36px;
        font-size: 0.85rem;
    }
}

@media (max-width: 575px) {
    .contact-info-card {
        padding: 15px;
    }
    .contact-info-icon {
        width: 36px;
        height: 36px;
        font-size: 0.85rem;
    }
    .contact-info-item {
        gap: 10px;
        margin-bottom: 14px;
    }
    .contact-info-heading {
        font-size: 1rem;
        margin-bottom: 15px;
        padding-bottom: 8px;
    }
    .contact-info-label {
        font-size: 0.82rem;
    }
    .contact-info-value {
        font-size: 0.8rem;
    }
    .contact-social-heading {
        font-size: 0.95rem;
    }
    .social-link {
        width: 34px;
        height: 34px;
        font-size: 0.8rem;
    }
    .social-links-wrap {
        gap: 8px;
    }
}

/*===========================================================
     - AUTHOR & COMMENT UTILITY CLASSES
=============================================================*/
.comment-section-heading {
    font-weight: 700;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--light-gray);
}
.comment-item {
    display: flex;
    gap: 15px;
    padding: 20px 0;
    border-bottom: 1px solid var(--gray-100);
}
.comment-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}
.comment-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.comment-author-name {
    font-weight: 700;
    margin: 0;
}
.comment-date {
    font-size: var(--font-size-xs);
    color: var(--gray-500);
}
.comment-date i {
    color: var(--accent);
    margin-right: 5px;
}
.comment-text {
    color: var(--gray-500);
    font-size: var(--font-size-sm);
    line-height: 1.7;
    margin: 8px 0 0;
}
.comment-form-heading {
    font-weight: 700;
    margin-bottom: 20px;
}

/*===========================================================
     - EMPTY STATE & NO CONTENT HELPERS
=============================================================*/
.empty-state-icon {
    font-size: 4rem;
    color: var(--accent);
    margin-bottom: 20px;
}
.empty-state-title {
    font-weight: 700;
    margin-bottom: 10px;
}
.empty-state-text {
    color: var(--muted);
}

/*===========================================================
     - PAGINATION HELPERS
=============================================================*/
.page-link-custom {
    border: none;
    border-radius: var(--radius-md);
    padding: 10px 18px;
    font-weight: 600;
    color: var(--text);
    background: var(--light);
}
.page-link-custom.active-page {
    background: var(--accent);
    color: var(--dark);
}
.page-link-custom.disabled-page {
    opacity: 0.5;
    pointer-events: none;
}

/*===========================================================
     - BLOG DETAIL CONTENT HELPERS
=============================================================*/
.blog-featured-img {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    border-radius: var(--radius-md);
    margin-bottom: 25px;
}
.blog-meta-icon {
    color: var(--accent);
    margin-right: 6px;
}
.author-bio-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}
.author-bio-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.author-bio-name {
    font-weight: 700;
    margin-bottom: 5px;
}
.author-bio-desc {
    color: var(--gray-500);
    font-size: var(--font-size-sm);
    margin-bottom: 0;
}

/*===========================================================
     - SECTION TITLE DECORATION
=============================================================*/
.section-title-accent {
    color: var(--accent);
}

/*===========================================================
     - UTILITY CLASSES (reduce inline styles)
=============================================================*/
.section-subtitle-accent {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: var(--font-size-sm);
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    display: inline-block;
}

.choose-card-step {
    width: 60px;
    height: 60px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    font-size: 1.5rem;
    color: var(--dark);
    font-weight: 800;
}

.choose-card-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    font-size: 1.8rem;
    color: var(--dark);
}

.help-card {
    padding: 35px 25px;
    box-shadow: var(--shadow-md);
    border-radius: var(--radius-lg);
    height: 100%;
    text-align: center;
}

.page-banner-gradient {
    background: linear-gradient(135deg, #0d1b2a 0%, #1a237e 50%, #283593 100%) !important;
    background-size: cover !important;
    background-position: center !important;
}

/* Utility: text styles */
.text-muted-body {
    color: var(--muted);
    line-height: 1.8;
}

.text-muted-sm {
    color: var(--muted);
    font-size: var(--font-size-sm);
}

/* Feature icon inherits dark color */
.feature-icon i {
    color: var(--dark);
}

/* Check list pattern (booking-assistance.php) */
.check-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.check-list-item {
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.check-list-item:last-child {
    border-bottom: none;
}

.check-list-icon {
    color: var(--accent);
    font-size: 1.2rem;
    margin-top: 3px;
    flex-shrink: 0;
}

/* Confirmation card (booking-confirmation.php) */
.confirmation-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 50px 40px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.confirmation-icon {
    width: 100px;
    height: 100px;
    background: rgba(76, 175, 80, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 3rem;
    color: var(--success);
    animation: confirmPulse 1.5s ease-in-out infinite;
}

.confirm-details {
    background: var(--bg-light);
    border-radius: var(--radius-md);
    padding: 25px;
    margin-bottom: 30px;
    text-align: left;
}

.confirm-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
}

.confirm-row:last-child {
    border-bottom: none;
}

.confirm-label {
    color: var(--text-muted);
    font-weight: 500;
}

.confirm-value {
    color: var(--text-dark);
    font-weight: 600;
}

.confirm-note-box {
    background: rgba(255, 215, 0, 0.08);
    border-radius: var(--radius-sm);
    padding: 15px 20px;
    margin-bottom: 25px;
    text-align: left;
    border-left: 3px solid var(--accent);
}

/*===========================================================
     - ACCESSIBILITY: REDUCED MOTION
=============================================================*/
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    .preloader-text span {
        animation: none !important;
    }
    .whatsapp-float {
        animation: none !important;
    }
    .counter-section-dark .counter-box .counter-icon {
        animation: none !important;
    }
    [data-aos] {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
        pointer-events: auto !important;
    }
    .gallery-icon-wrap,
    .gallery-label {
        transform: none !important;
        transition: none !important;
    }
}

/*===========================================================
     - PRINT STYLES
=============================================================*/
@media print {
    * {
        background: transparent !important;
        color: #000 !important;
        box-shadow: none !important;
        text-shadow: none !important;
    }
    a, a:visited {
        text-decoration: underline;
    }
    .top-bar,
    .navbar,
    .back-to-top,
    .whatsapp-float,
    .popup-trigger-btn,
    .popup-overlay,
    .popup-box,
    .search-floating-pill,
    .search-modal-overlay,
    .site-footer .footer-main,
    .footer-micro-social,
    .footer-micro-tagline {
        display: none !important;
    }
    .page-banner {
        padding: 20px 0 !important;
        background: none !important;
    }
    .page-banner::before {
        display: none !important;
    }
    .page-banner-title,
    .page-banner-heading {
        color: #000 !important;
    }
    .container {
        max-width: 100% !important;
        width: 100% !important;
    }
    .hero-section {
        min-height: auto !important;
        height: auto !important;
    }
    .card,
    .package-card,
    .testimonial-card,
    .choose-card {
        break-inside: avoid;
        page-break-inside: avoid;
    }
    img {
        max-width: 100% !important;
    }
}
