/* -------------------------------------------------------------
 * WanderVista Design Stylesheet
 * Custom Design System matching layout color scheme and aesthetics
 * ------------------------------------------------------------- */

/* Variables & Design Tokens */
:root {
    /* Colors */
    --primary-gold: #cca043;
    --primary-gold-hover: #b38932;
    --primary-gold-light: rgba(204, 160, 67, 0.08);
    --dark-blue: #06152d;
    --dark-blue-light: #0d2242;
    --dark-blue-dark: #030b17;
    --bg-light: #f7f9fc;
    --bg-white: #ffffff;
    --text-primary: #2b3440;
    --text-secondary: #5e6d82;
    --text-muted: #8e9fae;
    --border-color: #e6ecf3;
    --discount-red: #ff5a5f;

    /* Multi-color Gradient Palettes for Premium Icons */
    --grad-teal: linear-gradient(135deg, #14b8a6, #0d9488);
    --grad-orange: linear-gradient(135deg, #f97316, #ea580c);
    --grad-gold: linear-gradient(135deg, #cca043, #b38932);
    --grad-indigo: linear-gradient(135deg, #6366f1, #4f46e5);
    --grad-blue: linear-gradient(135deg, #3b82f6, #06b6d4);
    --grad-red: linear-gradient(135deg, #f87171, #ef4444);
    --grad-green: linear-gradient(135deg, #34d399, #059669);
    --grad-purple: linear-gradient(135deg, #a78bfa, #7c3aed);
    --grad-pink: linear-gradient(135deg, #f472b6, #db2777);

    /* Fonts */
    --font-title: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-cursive: 'Dancing Script', cursive;

    /* Transitions & Shadows */
    --transition-smooth: all 0.25s cubic-bezier(0.25, 0.8, 0.25, 1);
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    --shadow-md: 0 10px 15px -3px rgba(6, 21, 45, 0.06), 0 4px 6px -2px rgba(6, 21, 45, 0.03);
    --shadow-lg: 0 15px 30px -5px rgba(6, 21, 45, 0.1), 0 8px 12px -5px rgba(6, 21, 45, 0.04);
    --shadow-gold: 0 6px 15px rgba(204, 160, 67, 0.2);
    
    /* Layout */
    --container-width: 1200px;
    --nav-height: 75px;
}

/* Reset & Base Elements */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: var(--font-body);
    background-color: var(--bg-white);
    color: var(--text-primary);
    line-height: 1.5;
    overflow-x: hidden;
    max-width: 100vw;
    width: 100%;
    position: relative;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
    outline: none;
    border: none;
    background: none;
}

button {
    cursor: pointer;
}

/* Utility Containers - Compact Paddings */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

.bg-light {
    background-color: var(--bg-light);
}

section {
    padding: 60px 0; /* Reduced from 100px for tight, premium height */
    position: relative;
}

/* Section Header Typography */
.section-title-wrapper {
    margin-bottom: 25px;
}

.section-title-wrapper.text-center {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-gold);
    margin-bottom: 8px;
    font-family: var(--font-title);
}

.section-title {
    font-family: var(--font-title);
    font-size: 2.2rem; /* Adjusted for premium compact scaling */
    font-weight: 800;
    color: var(--dark-blue);
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.section-description-sub {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-top: 8px;
    max-width: 650px;
    line-height: 1.5;
}

.section-header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 30px;
}

.section-header-row .section-title-wrapper {
    margin-bottom: 0;
}

.cursive-subtitle {
    font-family: var(--font-cursive);
    font-size: 2rem;
    font-weight: 700;
    display: block;
    margin-bottom: 4px;
}

.text-gold {
    color: var(--primary-gold);
}

.text-white {
    color: var(--bg-white);
}

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

/* Typography Custom Styling */
.font-bold {
    font-weight: 700;
}

/* Custom Buttons System with gradients */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 6px;
    font-family: var(--font-title);
    font-weight: 750;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    transition: var(--transition-smooth);
    gap: 8px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-gold) 0%, #e5b54f 50%, var(--primary-gold) 100%);
    background-size: 200% auto;
    color: var(--bg-white);
    box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
    background-position: right center;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(204, 160, 67, 0.35);
}

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

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

.btn-outline-gold {
    border: 2px solid var(--primary-gold);
    color: var(--primary-gold);
}

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

.btn-gold-fill {
    background: linear-gradient(135deg, var(--primary-gold) 0%, #e5b54f 100%);
    color: var(--bg-white);
    padding: 10px 18px;
    font-size: 0.85rem;
}

.btn-gold-fill:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-gold);
}

.btn-icon-right {
    font-size: 0.95rem;
    transition: transform 0.25s ease;
}

.btn:hover .btn-icon-right {
    transform: translateX(4px);
}

.btn-icon-left {
    font-size: 0.95rem;
}

/* Header & Navigation Bar */
.header-main {
    height: var(--nav-height);
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(6, 21, 45, 0.05);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition-smooth);
}

.header-main.sticky {
    height: 65px;
    background-color: var(--bg-white);
    box-shadow: 0 4px 30px rgba(6, 21, 45, 0.08);
}

.container-nav {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo styling */
.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-name {
    font-family: var(--font-title);
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--dark-blue);
    line-height: 1.1;
}

.brand-tagline {
    font-size: 0.6rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--text-secondary);
}

/* Navigation Links */
.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-link {
    font-family: var(--font-title);
    font-weight: 750;
    font-size: 0.95rem;
    color: var(--text-primary);
    position: relative;
    padding: 6px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2.5px;
    background-color: var(--primary-gold);
    transition: var(--transition-smooth);
    border-radius: 2px;
}

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

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

/* Navbar Actions */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.action-btn-icon {
    font-size: 1.1rem;
    color: var(--dark-blue);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-color);
    transition: var(--transition-smooth);
}

.action-btn-icon:hover {
    background-color: var(--primary-gold-light);
    border-color: var(--primary-gold);
    color: var(--primary-gold);
}

.action-btn-whatsapp {
    font-size: 1.35rem;
    color: #25d366;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-color);
    background-color: rgba(37, 211, 102, 0.05);
    transition: var(--transition-smooth);
}

.action-btn-whatsapp:hover {
    background-color: #25d366;
    color: var(--bg-white);
    border-color: #25d366;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-book-now {
    padding: 8px 18px;
    font-size: 0.8rem;
    border-radius: 50px;
}

/* Hamburger mobile menu button */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 16px;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
}

.mobile-menu-toggle:focus {
    outline: none;
}

.mobile-menu-toggle .bar {
    width: 100%;
    height: 3px;
    background-color: var(--dark-blue);
    border-radius: 4px;
    transition: var(--transition-smooth);
}

/* Mobile Drawer Menu */
.mobile-nav-drawer {
    position: fixed;
    top: 0;
    right: -320px;
    width: 300px;
    height: 100%;
    background-color: var(--bg-white);
    box-shadow: -10px 0 30px rgba(6, 21, 45, 0.15);
    z-index: 1050;
    display: flex;
    flex-direction: column;
    padding: 24px;
    transition: right 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.mobile-nav-drawer.active {
    right: 0;
}

.drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

.drawer-close {
    font-size: 2.2rem;
    color: var(--text-secondary);
    line-height: 1;
}

.drawer-menu {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
    flex-grow: 1;
}

.drawer-link {
    font-family: var(--font-title);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--dark-blue);
}

.drawer-link.active, .drawer-link:hover {
    color: var(--primary-gold);
}

.drawer-footer {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.drawer-whatsapp {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px;
    background-color: #25d366;
    color: var(--bg-white);
    border-radius: 6px;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.2);
}

.drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(6, 21, 45, 0.45);
    backdrop-filter: blur(4px);
    z-index: 1040;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-smooth);
}

.drawer-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

/* Hero Section with Video Background styling */
.hero-section {
    min-height: 75vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: calc(var(--nav-height) + 40px);
    padding-bottom: 80px;
    color: var(--bg-white);
    overflow: hidden;
}

.hero-video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(4, 15, 33, 0.55), rgba(4, 15, 33, 0.4));
    z-index: 1;
}

.hero-container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 650px;
    margin-top: 30px;
}

.hero-title {
    font-family: var(--font-title);
    font-size: 3.5rem; /* Slightly reduced for better balance */
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.hero-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    max-width: 550px;
    font-weight: 450;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 30px;
}

/* Search Panel Widget */
.search-panel {
    background-color: var(--bg-white);
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    padding: 20px 24px;
    margin-bottom: -170px; /* Reduced shift to control next section spacing */
    z-index: 10;
    position: relative;
    border: 1px solid var(--border-color);
}

.search-form {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1.1fr 1.3fr;
    align-items: center;
}

.form-group-search {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.search-label {
    font-family: var(--font-title);
    font-weight: 800;
    font-size: 0.8rem;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.search-input, .search-select {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
    width: 100%;
}

.search-input::placeholder {
    color: var(--text-muted);
}

.search-select {
    cursor: pointer;
}

.search-field-divider {
    width: 1px;
    background-color: var(--border-color);
    height: 35px;
    margin: 0 16px;
}

.search-submit-btn {
    border-radius: 6px;
    padding: 14px 18px;
    width: 100%;
    box-shadow: var(--shadow-gold);
}

/* Stats Counter Section - Moved under Popular Destinations */
.stats-counter-section {
    background-color: #fbf7ee; /* Soft warm gold-cream background */
    padding: 55px 0;
    border-top: 1px solid rgba(204, 160, 67, 0.15);
    border-bottom: 1px solid rgba(204, 160, 67, 0.15);
    position: relative;
}

.stats-counter-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.counter-box {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 24px 16px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

/* Colorful glow background on counter hover */
.counter-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    transition: var(--transition-smooth);
}

.counter-box:nth-child(1)::before { background: var(--grad-teal); }
.counter-box:nth-child(2)::before { background: var(--grad-orange); }
.counter-box:nth-child(3)::before { background: var(--grad-gold); }
.counter-box:nth-child(4)::before { background: var(--grad-indigo); }

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

.counter-icon-wrapper {
    font-size: 1.8rem;
    margin-bottom: 10px;
    display: inline-flex;
}

/* Coloring the individual counter icons */
.counter-box:nth-child(1) .counter-icon-wrapper { color: #0d9488; }
.counter-box:nth-child(2) .counter-icon-wrapper { color: #ea580c; }
.counter-box:nth-child(3) .counter-icon-wrapper { color: #cca043; }
.counter-box:nth-child(4) .counter-icon-wrapper { color: #4f46e5; }

.counter-number {
    font-family: var(--font-title);
    font-size: 2.3rem; /* Scaled down for sleek premium style */
    font-weight: 850;
    color: var(--dark-blue);
    line-height: 1.1;
    margin-bottom: 6px;
}

.counter-label {
    font-size: 0.88rem;
    color: var(--text-secondary);
    font-weight: 700;
}

/* About Us 3-Column Layout with glassmorphism blobs */
.about-section {
    background-color: var(--bg-white);
    padding: 55px 0;
}

/* Decorative colorful background shapes */
.about-section::after {
    content: '';
    position: absolute;
    top: 10%;
    left: -5%;
    width: 250px;
    height: 250px;
    background-radius: 50%;
    background: radial-gradient(circle, rgba(20, 184, 166, 0.08) 0%, rgba(255, 255, 255, 0) 70%);
    pointer-events: none;
    z-index: 0;
}

.about-3col-grid {
    display: grid;
    grid-template-columns: 1.1fr 1.2fr 1.1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.about-col-left {
    display: flex;
    flex-direction: column;
}

.about-col-left .section-title {
    margin-bottom: 15px;
}

.about-paragraph {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.about-checklist {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.about-checklist li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-title);
    font-weight: 750;
    color: var(--dark-blue);
    font-size: 1rem;
}

.chk-icon {
    font-size: 1.15rem;
    display: inline-flex;
}

.about-checklist li:nth-child(1) .chk-icon { color: #0d9488; }
.about-checklist li:nth-child(2) .chk-icon { color: #cca043; }
.about-checklist li:nth-child(3) .chk-icon { color: #4f46e5; }

/* About Collage styling (Middle Column) */
.about-col-middle {
    display: flex;
    justify-content: center;
}

.about-collage {
    position: relative;
    width: 320px;
    height: 320px;
}

.collage-main-frame {
    width: 210px;
    height: 210px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 6px solid var(--bg-white);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

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

.collage-small-frame {
    width: 100px;
    height: 100px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 4px solid var(--bg-white);
    position: absolute;
    z-index: 3;
    transition: var(--transition-smooth);
}

.collage-small-frame:hover {
    transform: scale(1.08) translateY(-5px);
    z-index: 5;
}

.collage-small-frame.top-right {
    top: 0;
    right: 0;
}

.collage-small-frame.bottom-left {
    bottom: 0;
    left: 0;
}

.collage-small-frame.bottom-right {
    bottom: 5px;
    right: 5px;
    width: 95px;
    height: 95px;
}

.dotted-connection-path {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 180px;
    height: 180px;
    border: 2px dashed var(--primary-gold);
    border-radius: 50%;
    z-index: 1;
    pointer-events: none;
    opacity: 0.65;
}

.flying-airplane-badge {
    position: absolute;
    top: 15px;
    right: 30px;
    width: 28px;
    height: 28px;
    background-color: var(--bg-white);
    border-radius: 50%;
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(45deg);
    z-index: 4;
}

/* About Right Column styling with Colorful icons */
.about-col-right {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.about-feature-box {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.feat-icon {
    min-width: 44px;
    height: 44px;
    border-radius: 50%;
    color: var(--bg-white);
    font-size: 1.15rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}

/* Colorful gradient assignments */
.about-col-right .about-feature-box:nth-child(1) .feat-icon { background: var(--grad-indigo); }
.about-col-right .about-feature-box:nth-child(2) .feat-icon { background: var(--grad-blue); }
.about-col-right .about-feature-box:nth-child(3) .feat-icon { background: var(--grad-teal); }

.about-feature-box:hover .feat-icon {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.feat-info h4 {
    font-family: var(--font-title);
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--dark-blue);
    margin-bottom: 4px;
}

.feat-info p {
    font-size: 0.82rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

/* Trending Tour Packages Slider Section */
.trending-section {
    padding: 55px 0;
}

.swiper-navigation-buttons {
    display: flex;
    gap: 12px;
}

.swiper-btn-prev, .swiper-btn-next {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    background-color: var(--bg-white);
    color: var(--dark-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}

.swiper-btn-prev:hover, .swiper-btn-next:hover {
    background: linear-gradient(135deg, var(--primary-gold) 0%, #e5b54f 100%);
    border-color: var(--primary-gold);
    color: var(--bg-white);
    box-shadow: var(--shadow-gold);
}

.trending-swiper {
    padding: 10px 5px 24px 5px !important;
}

/* Premium Card styling with subtle color offsets */
.tour-card {
    background-color: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    transition: var(--transition-smooth);
    height: auto;
    display: flex;
    flex-direction: column;
}

.premium-card {
    border: 1px solid rgba(204, 160, 67, 0.12);
}

.premium-card:hover {
    transform: translateY(-6px);
    border-color: var(--primary-gold);
    box-shadow: 0 15px 30px rgba(204, 160, 67, 0.15);
}

.card-img-wrapper {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
}

.card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.card-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 4px 10px;
    border-radius: 50px;
    font-family: var(--font-title);
    font-weight: 800;
    font-size: 0.7rem;
    color: var(--bg-white);
}

.badge-discount {
    background-color: var(--discount-red);
}

.card-btn-like {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.85);
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.88rem;
    transition: var(--transition-smooth);
}

.card-btn-like:hover {
    background-color: var(--bg-white);
    color: var(--discount-red);
    transform: scale(1.1);
}

.card-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-meta-top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.card-duration, .card-rating {
    display: flex;
    align-items: center;
    gap: 4px;
}

.card-title {
    font-family: var(--font-title);
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--dark-blue);
    margin-bottom: 8px;
    line-height: 1.25;
}

.card-desc {
    font-size: 0.82rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 16px;
}

.card-pricing-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 12px;
    border-top: 1px solid var(--border-color);
}

.card-price-info {
    display: flex;
    flex-direction: column;
}

.price-label {
    font-size: 0.7rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.price-value {
    font-family: var(--font-title);
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--dark-blue);
}

.btn-card-action {
    background-color: var(--dark-blue);
    color: var(--bg-white);
    padding: 8px 14px;
    font-size: 0.78rem;
    font-weight: 650;
    border-radius: 6px;
}

.btn-card-action:hover {
    background: linear-gradient(135deg, var(--primary-gold) 0%, #e5b54f 100%);
    color: var(--bg-white);
    transform: translateY(-1px);
}

/* Popular Destinations Masonry / Grid */
.destinations-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.destination-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 3/4;
    box-shadow: var(--shadow-md);
}

.destination-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.destination-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(6, 21, 45, 0) 40%, rgba(6, 21, 45, 0.85) 100%);
    z-index: 1;
}

.dest-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 16px 20px;
    z-index: 2;
}

.dest-info {
    color: var(--bg-white);
    transform: translateY(12px);
    transition: transform 0.4s ease;
}

.dest-title {
    font-family: var(--font-title);
    font-size: 1.35rem;
    font-weight: 800;
    line-height: 1.2;
}

.dest-country {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.dest-count {
    display: inline-block;
    margin-top: 8px;
    padding: 3px 8px;
    background-color: var(--primary-gold);
    font-size: 0.68rem;
    border-radius: 50px;
    font-weight: 750;
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.destination-card:hover .dest-info {
    transform: translateY(0);
}

.destination-card:hover .dest-count {
    opacity: 1;
}

/* Domestic & International Tours Grid */
.tab-tours-section {
    background-color: var(--bg-white);
    padding: 55px 0;
}

.tours-tabs-nav {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 35px;
}

.tab-btn {
    padding: 10px 24px;
    border-radius: 50px;
    font-family: var(--font-title);
    font-weight: 800;
    font-size: 0.9rem;
    background-color: var(--bg-light);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-sm);
}

.tab-btn.active {
    background: linear-gradient(135deg, var(--primary-gold) 0%, #e5b54f 100%);
    color: var(--bg-white);
    border-color: var(--primary-gold);
    box-shadow: var(--shadow-gold);
}

.tours-grid {
    display: none;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.tours-grid.active {
    display: grid;
    animation: tabFadeIn 0.5s ease forwards;
}

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

.grid-tour-card {
    background-color: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    transition: var(--transition-smooth);
}

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

.g-card-img {
    position: relative;
    aspect-ratio: 16/10;
}

.g-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-preview-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2.8rem;
    color: rgba(255, 255, 255, 0.85);
    transition: var(--transition-smooth);
}

.play-preview-btn:hover {
    color: var(--primary-gold);
    transform: translate(-50%, -50%) scale(1.1);
}

.g-card-body {
    padding: 20px;
}

.g-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
}

.g-card-title {
    font-family: var(--font-title);
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--dark-blue);
    line-height: 1.3;
}

.g-card-dur {
    font-size: 0.7rem;
    background-color: var(--primary-gold-light);
    color: var(--primary-gold);
    padding: 3px 8px;
    border-radius: 50px;
    font-weight: 750;
    white-space: nowrap;
}

.g-card-amenities {
    display: flex;
    justify-content: space-between;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 12px;
    font-size: 0.78rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.g-card-amenities span {
    display: flex;
    align-items: center;
    gap: 4px;
}

.stars-gold {
    color: #ffc107;
}

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

.g-card-price {
    display: flex;
    align-items: baseline;
}

.g-price-val {
    font-family: var(--font-title);
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--dark-blue);
}

.g-price-lbl {
    font-size: 0.7rem;
    color: var(--text-secondary);
}

/* Call To Action Premium - Colorful gradient background */
.cta-premium-section {
    background: linear-gradient(135deg, #06152d 0%, #112a52 50%, #1c0e3a 100%);
    color: var(--bg-white);
    padding: 75px 0;
    position: relative;
    overflow: hidden;
}

.cta-overlay-blobs {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.cta-overlay-blobs .blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.2;
}

.cta-overlay-blobs .blob-1 {
    width: 280px;
    height: 280px;
    background: var(--grad-pink);
    top: -100px;
    left: -80px;
}

.cta-overlay-blobs .blob-2 {
    width: 400px;
    height: 400px;
    background: var(--grad-indigo);
    bottom: -150px;
    right: -80px;
}

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

.cta-title {
    font-family: var(--font-title);
    font-size: 2.4rem;
    font-weight: 850;
    line-height: 1.2;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.cta-desc {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 720px;
    margin: 0 auto 30px auto;
    line-height: 1.5;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
}

/* Why Choose Us Section with colorful custom feature icons */
.why-choose-section {
    background-color: var(--bg-white);
    padding: 55px 0;
}

/* Soft background decoration */
.why-choose-section::before {
    content: '';
    position: absolute;
    bottom: -5%;
    right: -5%;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(239, 68, 68, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
    pointer-events: none;
}

.why-choose-content-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 35px;
    position: relative;
    gap: 20px;
}

.why-side-col {
    width: 32%;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.why-feature-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.why-feature-item.reverse {
    flex-direction: row-reverse;
    text-align: right;
}

.why-icon-wrapper {
    min-width: 46px;
    height: 46px;
    border-radius: 50%;
    color: var(--bg-white);
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}

/* Multi-color gradient mappings for why choose us features */
.left-col .why-feature-item:nth-child(1) .why-icon-wrapper { background: var(--grad-blue); }
.left-col .why-feature-item:nth-child(2) .why-icon-wrapper { background: var(--grad-orange); }
.left-col .why-feature-item:nth-child(3) .why-icon-wrapper { background: var(--grad-green); }
.left-col .why-feature-item:nth-child(4) .why-icon-wrapper { background: var(--grad-purple); }

.right-col .why-feature-item:nth-child(1) .why-icon-wrapper { background: var(--grad-pink); }
.right-col .why-feature-item:nth-child(2) .why-icon-wrapper { background: var(--grad-gold); }
.right-col .why-feature-item:nth-child(3) .why-icon-wrapper { background: var(--grad-teal); }
.right-col .why-feature-item:nth-child(4) .why-icon-wrapper { background: var(--grad-indigo); }

.why-feature-item:hover .why-icon-wrapper {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.why-text h3 {
    font-family: var(--font-title);
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--dark-blue);
    margin-bottom: 4px;
}

.why-text p {
    font-size: 0.82rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

/* Central rotating circular diagram layout */
.why-center-graphic {
    width: 290px;
    height: 290px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.circular-dashed-ring {
    position: absolute;
    border: 2px dashed rgba(204, 160, 67, 0.3);
    border-radius: 50%;
    pointer-events: none;
}

.circular-dashed-ring.border-1 {
    width: 330px;
    height: 330px;
}

.circular-dashed-ring.border-2 {
    width: 380px;
    height: 380px;
}

.center-img-frame {
    width: 210px;
    height: 210px;
    border-radius: 50%;
    overflow: hidden;
    border: 6px solid var(--bg-light);
    box-shadow: var(--shadow-lg);
    z-index: 2;
}

.center-img-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Travel Reel Gallery vertical cards */
.reels-swiper {
    padding: 10px 5px 24px 5px !important;
}

.reel-card {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    aspect-ratio: 3/4;
}

.reel-thumbnail {
    position: relative;
    width: 100%;
    height: 100%;
}

.reel-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.reel-thumbnail::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(6, 21, 45, 0.8) 0%, rgba(6, 21, 45, 0.25) 50%, rgba(6, 21, 45, 0) 100%);
    z-index: 1;
}

.reel-overlay-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: var(--bg-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    z-index: 2;
    transition: var(--transition-smooth);
}

.reel-card:hover .reel-overlay-play {
    background: linear-gradient(135deg, var(--primary-gold) 0%, #e5b54f 100%);
    color: var(--bg-white);
    border-color: var(--primary-gold);
    transform: translate(-50%, -50%) scale(1.1);
}

.reel-overlay-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 16px;
    z-index: 2;
    color: var(--bg-white);
}

.reel-title {
    font-family: var(--font-title);
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 4px;
    line-height: 1.2;
}

.reel-details {
    display: flex;
    gap: 12px;
    font-size: 0.72rem;
    opacity: 0.85;
}

.reel-details span {
    display: flex;
    align-items: center;
    gap: 4px;
}

/* Standalone Testimonials Section styles */
.testimonials-standalone-section {
    padding: 55px 0;
    background-color: var(--bg-white);
}

.testimonial-standalone-swiper {
    max-width: 100%; /* Expanded to allow 4 items side-by-side on desktop */
    margin: 30px auto 0 auto;
    padding-bottom: 55px !important;
}

/* Force equal-height slides in testimonial Owl Carousel */
.testimonial-owl-carousel .owl-stage {
    display: flex !important;
}
.testimonial-owl-carousel .owl-item {
    display: flex !important;
    height: auto !important;
}

.testimonial-card-slide {
    padding: 24px; /* Reduced from 30px to fit 4 items gracefully */
    background-color: var(--bg-light);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
    height: 100% !important;
    width: 100% !important;
}

.quote-text-container {
    position: relative;
    margin-bottom: 20px;
}

.quote-large-icon {
    font-size: 2.2rem;
    opacity: 0.12;
    position: absolute;
    top: -15px;
    left: -10px;
}

.quote-text {
    font-size: 1.05rem;
    font-style: italic;
    color: var(--text-secondary);
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.testimonial-author-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: auto; /* Push author block to bottom in equal-height slide */
    padding-top: 12px;
    border-top: 1px solid rgba(6, 21, 45, 0.05); /* Subtly separate author from quote text */
}

.author-avatar {
    width: 50px !important; /* Force small round size and override Owl Carousel stretching */
    height: 50px !important;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary-gold);
    display: inline-block;
}

.author-info {
    flex-grow: 1;
}

.author-name {
    font-family: var(--font-title);
    font-size: 1rem;
    font-weight: 800;
    color: var(--dark-blue);
}

.author-loc {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.testimonials-stars {
    font-size: 0.85rem;
}

.testimonials-centered-nav {
    display: flex;
    justify-content: center;
    gap: 10px;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
}

/* Contact Page Section Split: Location Details (Left) vs Form (Right) */
.contact-dual-section {
    padding: 55px 0;
    border-top: 1px solid var(--border-color);
}

.grid-location-form {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 50px;
    align-items: start;
}

.location-details-col {
    display: flex;
    flex-direction: column;
}

.location-details-col .section-title {
    margin-bottom: 12px;
}

.loc-description {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 24px;
}

.border-details {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

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

.border-details .info-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.info-icon {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    min-width: 44px;
}

/* Colorful contact detail icons */
.border-details .info-item:nth-child(1) .info-icon { background: rgba(13, 148, 136, 0.08); color: #0d9488; }
.border-details .info-item:nth-child(2) .info-icon { background: rgba(59, 130, 246, 0.08); color: #3b82f6; }
.border-details .info-item:nth-child(3) .info-icon { background: rgba(239, 68, 68, 0.08); color: #ef4444; }
.border-details .info-item:nth-child(4) .info-icon { background: rgba(37, 211, 102, 0.08); color: #25d366; }

.info-text h5 {
    font-family: var(--font-title);
    font-size: 0.98rem;
    font-weight: 750;
    color: var(--dark-blue);
    margin-bottom: 2px;
}

.info-text p {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.mock-map-widget {
    margin-top: 24px;
    box-shadow: var(--shadow-md);
    border-radius: 12px;
    overflow: hidden;
    border: 4px solid var(--bg-white);
    height: 220px;
}

/* Right Column Contact Form */
.contact-form-col {
    position: relative;
}

.contact-form-col .section-title {
    margin-top: 4px;
}

.shadow-premium-form {
    background-color: var(--bg-white);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-lg);
    padding: 30px; /* Reduced from 40px */
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-row-1 {
    display: flex;
    flex-direction: column;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-family: var(--font-title);
    font-weight: 700;
    font-size: 0.82rem;
    color: var(--text-primary);
}

.form-group input, .form-group textarea, .form-group select {
    width: 100%;
    padding: 10px 16px;
    border-radius: 6px;
    border: 1.5px solid var(--border-color);
    color: var(--text-primary);
    background-color: var(--bg-light);
    font-size: 0.88rem;
    transition: var(--transition-smooth);
}

.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
    border-color: var(--primary-gold);
    background-color: var(--bg-white);
    box-shadow: 0 0 0 3px rgba(204, 160, 67, 0.1);
}

.btn-submit-form {
    box-shadow: var(--shadow-gold);
    margin-top: 5px;
    padding: 12px;
}

/* Floating social items around form bottom right */
.form-float-socials {
    display: flex;
    gap: 10px;
    position: absolute;
    bottom: -20px;
    right: 30px;
    z-index: 10;
}

.float-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-white);
    font-size: 1rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition-smooth);
}

.float-btn.fb { background-color: #3b5998; }
.float-btn.ig { background-color: #e1306c; }
.float-btn.wa { background-color: #25d366; }

.float-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(6, 21, 45, 0.2);
}

/* Footer Section */
.footer-main {
    background-color: var(--dark-blue);
    color: rgba(255, 255, 255, 0.7);
    padding-top: 60px;
    border-top: 4px solid var(--primary-gold);
}

.footer-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1.5fr;
    gap: 30px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.brand-desc {
    font-size: 0.8rem;
    line-height: 1.5;
}

.footer-social-icons {
    display: flex;
    gap: 10px;
    margin-top: 6px;
}

.footer-social-icons a {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.88rem;
    transition: var(--transition-smooth);
}

.footer-social-icons a:hover {
    background: linear-gradient(135deg, var(--primary-gold) 0%, #e5b54f 100%);
    color: var(--bg-white);
    transform: translateY(-2px);
}

.footer-title {
    font-family: var(--font-title);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--bg-white);
    position: relative;
    padding-bottom: 8px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 25px;
    height: 2px;
    background-color: var(--primary-gold);
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    font-size: 0.8rem;
    font-weight: 500;
    transition: var(--transition-smooth);
}

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

/* Newsletter Input */
.news-text {
    font-size: 0.8rem;
}

.news-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.news-input {
    width: 100%;
    padding: 10px 14px;
    border-radius: 6px;
    background-color: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--bg-white);
    font-size: 0.8rem;
}

.news-input::placeholder {
    color: rgba(255, 255, 255, 0.35);
}

.news-input:focus {
    border-color: var(--primary-gold);
    background-color: rgba(255, 255, 255, 0.08);
}

.news-btn {
    padding: 10px;
    font-size: 0.8rem;
    box-shadow: none;
}

/* Footer Bottom elements */
.footer-bottom {
    padding: 24px 0;
    background-color: var(--dark-blue-dark);
}

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

.copyright-text {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.5);
}

.payment-trust-area {
    display: flex;
    align-items: center;
    gap: 10px;
}

.we-accept {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 600;
}

.trust-icons {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.35);
}

.custom-badge {
    font-size: 0.6rem;
    padding: 2px 5px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 3px;
    line-height: 1;
    color: rgba(255, 255, 255, 0.35);
}

/* -------------------------------------------------------------
 * Responsive Media Queries (Mobile Friendly System)
 * ------------------------------------------------------------- */

/* Medium-Large screens: Tablet landscape and small laptops */
@media (max-width: 1200px) {
    section {
        padding: 50px 0;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .search-panel {
        margin-bottom: -140px;
    }
    

    .stats-counter-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .about-3col-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-col-left {
        text-align: center;
    }
    
    .about-checklist {
        align-self: center;
        flex-direction: row;
        gap: 30px;
    }
    
    .about-col-right {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    
    .about-feature-box {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .destinations-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .tours-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .why-center-graphic {
        width: 240px;
        height: 240px;
    }
    
    .center-img-frame {
        width: 180px;
        height: 180px;
    }
    
    .circular-dashed-ring.border-1 {
        width: 270px;
        height: 270px;
    }
    
    .circular-dashed-ring.border-2 {
        width: 320px;
        height: 320px;
    }
    
    .footer-container {
        grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    }
    
    .footer-col.newsletter-col {
        grid-column: span 4;
    }
}

/* Tablets (portrait) */
@media (max-width: 992px) {
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-title {
        font-size: 2.6rem;
    }
    
    .search-panel {
        padding: 16px;
    }
    
    .search-form {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    
    .search-field-divider {
        display: none;
    }
    
    .search-submit-btn {
        grid-column: span 2;
        margin-top: 5px;
    }
    

    .about-col-right {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .about-feature-box {
        flex-direction: row;
        align-items: flex-start;
        text-align: left;
    }
    
    .why-choose-content-wrapper {
        flex-direction: column;
        gap: 40px;
    }
    
    .why-side-col {
        width: 100%;
        gap: 24px;
    }
    
    .why-feature-item.reverse {
        flex-direction: row;
        text-align: left;
    }
    
    .why-center-graphic {
        display: none; /* Hide circular layout elements on tablet */
    }
    
    .grid-location-form {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .form-float-socials {
        bottom: -20px;
        right: 20px;
    }
    
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-col.brand-col {
        grid-column: span 2;
    }
    
    .footer-col.newsletter-col {
        grid-column: span 2;
    }
    
    .footer-bottom-container {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

/* Mobile Devices (landscape & portrait) */
@media (max-width: 768px) {
    section {
        padding: 45px 0;
    }
    
    .hero-section {
        padding-bottom: 60px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }
    
    .hero-actions .btn {
        width: 100%;
    }
    
    .stats-counter-grid {
        grid-template-columns: 1fr;
    }
    

    .search-form {
        grid-template-columns: 1fr;
    }
    
    .search-submit-btn {
        grid-column: span 1;
    }
    
    .section-title {
        font-size: 1.7rem;
    }
    
    .section-header-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        margin-bottom: 24px;
    }
    
    .about-checklist {
        flex-direction: column;
        gap: 8px;
        align-items: center;
    }
    
    .cta-title {
        font-size: 1.85rem;
    }
    
    .cta-actions {
        flex-direction: column;
        gap: 10px;
    }
    
    .destinations-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
    
    .tours-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .tours-tabs-nav {
        flex-direction: column;
        gap: 8px;
        width: 100%;
    }
    
    .tab-btn {
        width: 100%;
    }
    
    .testimonial-card-slide {
        padding: 20px;
    }
    
    .shadow-premium-form {
        padding: 20px;
    }
    
    .form-row-2 {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .btn-submit-form {
        width: 100%;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .footer-col.brand-col, .footer-col.newsletter-col {
        grid-column: span 1;
    }
}

@media (max-width: 480px) {
    .destinations-grid {
        grid-template-columns: 1fr;
    }
    
    .about-collage {
        width: 260px;
        height: 260px;
    }
    
    .collage-main-frame {
        width: 170px;
        height: 170px;
    }
    
    .collage-small-frame {
        width: 80px;
        height: 80px;
    }
    
    .dotted-connection-path {
        width: 140px;
        height: 140px;
    }
}

@media (max-width: 576px) {
    .card-body {
        padding: 12px;
    }
    .card-title {
        font-size: 0.92rem;
        margin-bottom: 4px;
    }
    .card-desc {
        font-size: 0.74rem;
        margin-bottom: 8px;
        line-height: 1.3;
    }
    .card-meta-top {
        font-size: 0.7rem;
        margin-bottom: 6px;
    }
    .card-pricing-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
        padding-top: 6px;
    }
    .price-value {
        font-size: 1.05rem;
    }
    .btn-card-action {
        width: 100%;
        text-align: center;
        padding: 6px 8px;
        font-size: 0.75rem;
    }
}

/* Grid & Card Responsive Utilities for Mobile */
.grid-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.custom-planning-card {
    padding: 50px 40px;
}

@media (max-width: 991px) {
    .grid-2col {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }
    .custom-planning-card {
        padding: 30px 20px !important;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 16px !important;
    }
    .custom-planning-card {
        padding: 24px 16px !important;
    }
    .honeymoon-features-grid {
        gap: 12px 16px !important;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 15px !important;
    }
    .honeymoon-features-grid {
        grid-template-columns: 1fr !important;
    }
    .honeymoon-feature-item {
        grid-column: span 1 !important;
    }
    .custom-planning-card {
        padding: 20px 14px !important;
    }
}

