/* =========================================================
   Frazix Tour and Travel - Main Stylesheet
   Modern, Clean, Responsive Travel Portal
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Outfit:wght@500;600;700;800&display=swap');

:root {
    --primary: #0284c7;
    --primary-dark: #0369a1;
    --primary-light: #e0f2fe;
    --accent: #f59e0b;
    --accent-hover: #d97706;
    --secondary: #0f172a;
    --secondary-light: #1e293b;
    --text-dark: #0f172a;
    --text-muted: #64748b;
    --text-light: #94a3b8;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --border: #e2e8f0;
    --border-light: #f1f5f9;
    --success: #10b981;
    --danger: #ef4444;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-full: 9999px;
    --transition: all 0.25s ease-in-out;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-light);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    color: var(--secondary);
    line-height: 1.25;
}

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

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

.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ================= Top Bar ================= */
.top-bar {
    background: var(--secondary);
    color: #94a3b8;
    font-size: 13px;
    padding: 9px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

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

.top-bar a:hover {
    color: #ffffff;
}

.top-bar i {
    color: var(--accent);
    margin-right: 6px;
}

/* ================= Header Navigation ================= */
.header {
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 76px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 22px;
    color: var(--secondary);
    letter-spacing: -0.5px;
}

.logo-badge {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--primary) 0%, #0369a1 100%);
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 4px 12px rgba(2, 132, 199, 0.3);
}

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

.logo-tag {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    font-weight: 600;
    display: block;
    margin-top: -3px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 28px;
    list-style: none;
}

.nav-link {
    font-size: 15px;
    font-weight: 600;
    color: var(--secondary-light);
    position: relative;
    padding: 6px 0;
}

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

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 22px;
    font-size: 14px;
    font-weight: 600;
    border-radius: var(--radius-full);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(2, 132, 199, 0.35);
}

.btn-primary:hover {
    box-shadow: 0 6px 20px rgba(2, 132, 199, 0.45);
    transform: translateY(-2px);
    color: white;
}

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

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

.btn-accent {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
    color: white;
    font-weight: 700;
    box-shadow: 0 4px 14px rgba(245, 158, 11, 0.35);
}

.btn-accent:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.45);
    color: white;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 22px;
    color: var(--secondary);
    cursor: pointer;
}

/* ================= Hero Section (ShareTrip Style Video & Animation) ================= */
.hero {
    position: relative;
    min-height: 640px;
    background-color: #0f172a;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 0 110px;
    color: white;
    text-align: center;
    overflow: hidden;
}

.hero-video-container {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
    pointer-events: none;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.03);
    transition: opacity 0.8s ease;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.58) 0%, rgba(15, 23, 42, 0.78) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 980px;
    margin: 0 auto;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 18px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    color: #e0f2fe;
    animation: floatSlow 3.5s ease-in-out infinite;
}

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

.hero-title {
    font-size: 52px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 14px;
    line-height: 1.15;
    text-shadow: 0 2px 14px rgba(0,0,0,0.3);
}

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

.hero-desc {
    font-size: 18px;
    color: #e2e8f0;
    margin-bottom: 28px;
    font-weight: 400;
    text-shadow: 0 1px 8px rgba(0,0,0,0.25);
}

/* ShareTrip Service Tabs */
.hero-service-tabs {
    display: inline-flex;
    background: rgba(15, 23, 42, 0.65);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 6px;
    border-radius: var(--radius-full);
    margin-bottom: 20px;
    gap: 6px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    flex-wrap: wrap;
    justify-content: center;
}

.service-tab {
    background: transparent;
    border: none;
    color: #cbd5e1;
    padding: 10px 22px;
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.service-tab:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.12);
}

.service-tab.active {
    background: #ffffff;
    color: var(--secondary);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
}

.service-tab.active i {
    color: var(--primary);
}

/* Video Control Toggle */
.hero-video-toggle {
    position: absolute;
    bottom: 25px;
    right: 30px;
    z-index: 10;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 14px;
    transition: var(--transition);
}

.hero-video-toggle:hover {
    background: var(--primary);
    transform: scale(1.1);
}

/* ================= Trip Search Box ================= */
.search-widget {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-radius: var(--radius-lg);
    padding: 18px 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
    display: grid;
    grid-template-columns: repeat(4, 1fr) auto;
    gap: 18px;
    align-items: center;
    text-align: left;
    color: var(--text-dark);
    margin-top: 6px;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.search-field {
    border-right: 1px solid var(--border);
    padding-right: 14px;
}

.search-field:last-of-type {
    border-right: none;
}

.search-label {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--text-muted);
    margin-bottom: 4px;
    letter-spacing: 0.5px;
}

.search-input-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
}

.search-input-wrap i {
    color: var(--primary);
    font-size: 16px;
}

.search-input-wrap input,
.search-input-wrap select {
    width: 100%;
    border: none;
    outline: none;
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    color: var(--secondary);
    background: transparent;
}

.search-submit-btn {
    height: 52px;
    padding: 0 28px;
    font-size: 15px;
    font-weight: 700;
    border-radius: var(--radius-md);
}

/* ================= Stat Banner ================= */
.stats-banner {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #e2e8f0;
    font-size: 14px;
    font-weight: 500;
}

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

/* ================= Section Header ================= */
.section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 50px;
}

.section-subtitle {
    display: inline-block;
    color: var(--primary);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
}

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

.section-desc {
    color: var(--text-muted);
    font-size: 16px;
}

/* ================= Destinations Grid ================= */
.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.destination-card {
    position: relative;
    height: 320px;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

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

.destination-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.destination-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(15,23,42,0.85) 100%);
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: white;
}

.destination-tag {
    font-size: 12px;
    font-weight: 600;
    color: #38bdf8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.destination-name {
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 6px;
}

.destination-count {
    font-size: 13px;
    color: #cbd5e1;
}

/* ================= Tour Packages Grid ================= */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.package-card {
    background: white;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.package-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(2, 132, 199, 0.3);
}

.package-media {
    position: relative;
    height: 230px;
    overflow: hidden;
}

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

.package-card:hover .package-media img {
    transform: scale(1.05);
}

.package-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--accent);
    color: white;
    padding: 5px 12px;
    border-radius: var(--radius-full);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.package-duration {
    position: absolute;
    bottom: 14px;
    right: 14px;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(4px);
    color: white;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

.package-body {
    padding: 22px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.package-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    font-size: 13px;
    color: var(--text-muted);
}

.package-loc {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--primary);
    font-weight: 600;
}

.package-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    color: var(--accent);
    font-weight: 700;
}

.package-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 10px;
    line-height: 1.35;
}

.package-desc {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 18px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.package-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 20px;
    font-size: 13px;
    color: var(--secondary-light);
}

.package-features li {
    display: flex;
    align-items: center;
    gap: 8px;
}

.package-features i {
    color: var(--success);
    font-size: 12px;
}

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

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

.price-label {
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
    font-weight: 600;
}

.price-val {
    font-size: 22px;
    font-weight: 800;
    color: var(--secondary);
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.price-val span {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 500;
}

.price-old {
    text-decoration: line-through;
    color: var(--text-light);
    font-size: 14px;
    font-weight: 500;
    margin-left: 6px;
}

/* ================= Why Choose Us ================= */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 28px;
}

.feature-box {
    background: white;
    padding: 34px 26px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    transition: var(--transition);
    text-align: center;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.feature-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
}

.feature-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.feature-desc {
    font-size: 14px;
    color: var(--text-muted);
}

/* ================= Custom Plan CTA ================= */
.custom-cta-card {
    background: linear-gradient(135deg, var(--secondary) 0%, #1e293b 100%);
    border-radius: var(--radius-lg);
    padding: 50px;
    color: white;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: center;
    box-shadow: var(--shadow-xl);
}

.cta-form {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    padding: 28px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.cta-form .form-group {
    margin-bottom: 14px;
}

.form-group label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: #e2e8f0;
    margin-bottom: 6px;
}

.form-control {
    width: 100%;
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.95);
    color: var(--secondary);
    font-size: 14px;
    outline: none;
    font-family: inherit;
}

.form-control:focus {
    border-color: var(--primary);
    background: white;
}

/* ================= Footer ================= */
.footer {
    background: var(--secondary);
    color: #94a3b8;
    padding: 70px 0 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

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

.footer-col h4 {
    color: white;
    font-size: 18px;
    margin-bottom: 20px;
}

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

.footer-links a:hover {
    color: #38bdf8;
    padding-left: 4px;
}

.footer-bottom {
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    flex-wrap: wrap;
    gap: 15px;
}

/* ================= Chologhuri & ShareTrip Enhanced Styles ================= */

/* Segmented Search Engine (Screenshot 1) */
.st-search-card {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.25);
    padding: 0 0 20px 0;
    margin-top: 30px;
    color: var(--secondary);
    text-align: left;
    overflow: hidden;
}

.st-tabs-bar {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #edf2f7;
    overflow-x: auto;
    padding: 0 16px;
    scrollbar-width: none;
}
.st-tabs-bar::-webkit-scrollbar { display: none; }

.st-tab-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 18px 20px;
    font-size: 15px;
    font-weight: 700;
    color: #4a5568;
    background: transparent;
    border: none;
    cursor: pointer;
    position: relative;
    white-space: nowrap;
    transition: all 0.2s ease;
}

.st-tab-item:hover {
    color: var(--primary);
}

.st-tab-item.active {
    color: var(--primary);
}

.st-tab-item.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 12px;
    right: 12px;
    height: 3px;
    background: #f97316;
    border-radius: 3px 3px 0 0;
}

.st-tab-badge {
    background: #10b981;
    color: white;
    font-size: 10px;
    font-weight: 800;
    padding: 2px 6px;
    border-radius: 20px;
    text-transform: uppercase;
}

.st-options-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px 8px;
    flex-wrap: wrap;
    gap: 12px;
}

.st-radio-group {
    display: flex;
    align-items: center;
    gap: 16px;
}

.st-radio-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: #4a5568;
    cursor: pointer;
}

.st-radio-label input[type="radio"] {
    accent-color: #0284c7;
    cursor: pointer;
}

.st-dropdown-selectors {
    display: flex;
    align-items: center;
    gap: 12px;
}

.st-select-chip {
    background: #f1f5f9;
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    color: #0284c7;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: 1px solid transparent;
}
.st-select-chip:hover {
    background: #e2e8f0;
}

/* Connected Segmented Inputs Row */
.st-segments-row {
    display: grid;
    grid-template-columns: 1.4fr auto 1.4fr 1.1fr 1.1fr auto;
    gap: 8px;
    padding: 10px 24px;
    align-items: center;
}

.st-segment-box {
    background: #ffffff;
    border: 1px solid #cbd5e1;
    border-radius: 10px;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.st-segment-box:hover, .st-segment-box:focus-within {
    border-color: #0284c7;
    box-shadow: 0 0 0 3px rgba(2, 132, 199, 0.15);
}

.st-seg-code {
    font-size: 20px;
    font-weight: 800;
    color: #0f172a;
    font-family: 'Outfit', sans-serif;
}

.st-seg-details {
    display: flex;
    flex-direction: column;
}

.st-seg-title {
    font-size: 15px;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.2;
}

.st-seg-sub {
    font-size: 11px;
    color: #64748b;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 170px;
}

.st-swap-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid #cbd5e1;
    color: #0284c7;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.2s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.st-swap-btn:hover {
    background: #0284c7;
    color: white;
    transform: rotate(180deg);
}

.st-search-btn-large {
    background: #f97316;
    color: white;
    border: none;
    width: 58px;
    height: 58px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 4px 14px rgba(249, 115, 22, 0.4);
}

.st-search-btn-large:hover {
    background: #ea580c;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(249, 115, 22, 0.5);
}

.st-fare-row {
    padding: 12px 24px 0;
    display: flex;
    gap: 20px;
}

/* Exclusive Offers Section (Screenshot 2) */
.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
    margin-bottom: 30px;
}

.offer-card {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
    cursor: pointer;
    border: 1px solid #e2e8f0;
    background: white;
}

.offer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

.offer-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.offer-banner-wide {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 130px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    background: linear-gradient(90deg, #0284c7 0%, #0369a1 60%, #1e293b 100%);
    color: white;
    box-shadow: 0 6px 20px rgba(2, 132, 199, 0.25);
    margin-top: 24px;
}

/* Top Destinations Carousel (Screenshot 3) */
.dest-gallery-scroll {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding: 20px 4px 30px;
    scrollbar-width: none;
    align-items: center;
}
.dest-gallery-scroll::-webkit-scrollbar { display: none; }

.dest-vertical-card {
    position: relative;
    min-width: 210px;
    height: 380px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0,0,0,0.12);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    flex-shrink: 0;
}

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

.dest-vertical-card:hover img {
    transform: scale(1.08);
}

.dest-vertical-card.elevated {
    height: 420px;
    transform: scale(1.04);
    box-shadow: 0 12px 30px rgba(0,0,0,0.25);
    border: 3px solid #ffffff;
}

.dest-vertical-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(15, 23, 42, 0.88) 100%);
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: white;
}

.dest-vertical-title {
    font-size: 20px;
    font-weight: 800;
    color: white;
}

/* Chologhuri Hotel Deals Cards (Screenshot 4) */
.cholo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.cholo-hotel-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.cholo-hotel-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

.cholo-card-media {
    position: relative;
    height: 190px;
    overflow: hidden;
}

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

.cholo-badge-top {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(15, 23, 42, 0.85);
    color: white;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.cholo-heart-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ef4444;
    cursor: pointer;
    font-size: 14px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.cholo-stars-row {
    position: absolute;
    bottom: 12px;
    left: 12px;
    color: #f97316;
    font-size: 12px;
    display: flex;
    gap: 2px;
}

.cholo-discount-circle {
    position: absolute;
    bottom: -16px;
    right: 14px;
    background: #3b82f6;
    color: white;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 800;
    border: 3px solid white;
    box-shadow: 0 4px 10px rgba(59, 130, 246, 0.4);
    z-index: 5;
}

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

.cholo-card-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 6px;
    line-height: 1.35;
}

.cholo-card-loc {
    font-size: 13px;
    color: #64748b;
    margin-bottom: 14px;
}

.cholo-price-line {
    margin-top: auto;
    display: flex;
    align-items: baseline;
    gap: 6px;
    font-size: 13px;
    color: #64748b;
}

.cholo-price-bold {
    font-size: 17px;
    font-weight: 800;
    color: var(--secondary);
}

.cholo-strike-price {
    text-decoration: line-through;
    color: #94a3b8;
    font-size: 13px;
}

/* Chologhuri Curated Tours Cards (Screenshot 5) */
.cholo-tour-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.cholo-tour-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

.cholo-tour-tag {
    font-size: 13px;
    color: #64748b;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 8px;
}

.cholo-tour-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #f1f5f9;
    padding-top: 14px;
    margin-top: auto;
    font-size: 13px;
}

/* Red Floating Chat Widget (Screenshots 3, 4, 5) */
.floating-red-chat {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 56px;
    height: 56px;
    background: #e11d48;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 6px 22px rgba(225, 29, 72, 0.45);
    z-index: 1000;
    border: 2px solid rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.floating-red-chat:hover {
    transform: scale(1.1);
    color: white;
    box-shadow: 0 8px 28px rgba(225, 29, 72, 0.6);
}

@media (max-width: 992px) {
    .st-segments-row {
        grid-template-columns: 1fr;
    }
    .st-search-btn-large {
        width: 100%;
        height: 50px;
    }
}

/* ================= Floating WhatsApp Button ================= */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
    z-index: 999;
    transition: transform 0.3s ease;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    color: white;
}

/* ================= Modals ================= */
.modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    padding: 20px;
}

.modal-backdrop.active {
    opacity: 1;
    visibility: visible;
}

.modal-box {
    background: white;
    width: 100%;
    max-width: 680px;
    max-height: 90vh;
    overflow-y: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    transform: translateY(20px);
    transition: var(--transition);
}

.modal-backdrop.active .modal-box {
    transform: translateY(0);
}

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

.modal-close {
    background: none;
    border: none;
    font-size: 20px;
    color: var(--text-muted);
    cursor: pointer;
}

.modal-body {
    padding: 24px;
}

/* ================= Toast Notification ================= */
.toast-notice {
    position: fixed;
    top: 24px;
    right: 24px;
    background: var(--secondary);
    color: white;
    padding: 14px 20px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-xl);
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 600;
    z-index: 3000;
    transform: translateX(120%);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.toast-notice.show {
    transform: translateX(0);
}

.toast-notice.success {
    border-left: 4px solid var(--success);
}

.toast-notice.error {
    border-left: 4px solid var(--danger);
}

/* ================= Responsive Queries ================= */
@media (max-width: 1024px) {
    .search-widget {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .custom-cta-card {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 34px;
    }
    .nav-menu {
        display: none;
    }
    .mobile-toggle {
        display: block;
    }
    .search-widget {
        grid-template-columns: 1fr;
    }
    .top-bar {
        display: none;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
}
