/* ============================================
   श्री यात्रा सेवा - पवित्र धाम यात्रा - Main Stylesheet
   ============================================ */

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

/* CSS Variables */
:root {
    --primary: #f97316;
    --primary-dark: #ea580c;
    --primary-light: #fed7aa;
    --secondary: #7c3aed;
    --secondary-dark: #6d28d9;
    --accent: #06b6d4;
    --green: #22c55e;
    --green-dark: #16a34a;
    --red: #ef4444;
    --yellow: #eab308;
    --bg-light: #fff7ed;
    --bg-white: #ffffff;
    --bg-gray: #f8fafc;
    --text-dark: #1e293b;
    --text-medium: #475569;
    --text-light: #94a3b8;
    --border: #e2e8f0;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --transition: all 0.3s ease;
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    background: var(--bg-white);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul, ol {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

button {
    cursor: pointer;
    border: none;
    outline: none;
    font-family: inherit;
    transition: var(--transition);
}

input, select, textarea {
    font-family: inherit;
    outline: none;
    border: 1px solid var(--border);
    transition: var(--transition);
}

input:focus, select:focus, textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.1);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 16px;
    width: 100%;
}

/* ============================================
   HEADER / NAVBAR
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0,0,0,0.06);
    transition: var(--transition);
}

.navbar.scrolled {
    box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    height: 64px;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.navbar-brand .brand-text {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.navbar-brand .brand-name {
    font-size: 17px;
    font-weight: 800;
    color: var(--primary-dark);
    line-height: 1.15;
    white-space: nowrap;
    letter-spacing: -0.2px;
}

.navbar-brand .brand-tagline {
    font-size: 10px;
    color: var(--text-light);
    font-weight: 500;
    white-space: nowrap;
    letter-spacing: 0.3px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 6px;
    margin: 0 auto;
}

.nav-links li {
    list-style: none;
}

.nav-links a {
    font-size: 13.5px;
    font-weight: 500;
    color: var(--text-medium);
    position: relative;
    padding: 6px 14px;
    border-radius: 8px;
    transition: var(--transition);
    white-space: nowrap;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
    transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 20px;
}

.nav-links a:hover {
    color: var(--primary);
    background: rgba(249, 115, 22, 0.05);
}

.nav-links a.active {
    color: var(--primary);
    font-weight: 600;
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.nav-phone {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
    padding: 6px 12px;
    border-radius: 8px;
    background: rgba(0,0,0,0.03);
    transition: var(--transition);
    white-space: nowrap;
}

.nav-phone:hover {
    background: rgba(249, 115, 22, 0.08);
    color: var(--primary);
}

.nav-phone i {
    font-size: 12px;
    color: var(--primary);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(249, 115, 22, 0.4);
}

.btn-secondary {
    background: white;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background: var(--primary);
    color: white;
}

.btn-green {
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    color: white;
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.3);
}

.btn-green:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(34, 197, 94, 0.4);
}

.btn-whatsapp {
    background: #25d366;
    color: white;
}

.btn-whatsapp:hover {
    background: #128c7e;
    transform: translateY(-2px);
}

.btn-lg {
    padding: 14px 32px;
    font-size: 16px;
}

.btn-sm {
    padding: 7px 16px;
    font-size: 12.5px;
}

/* Hide mobile-only elements on desktop */
.mobile-menu-cta {
    display: none !important;
}

.mobile-price-bar {
    display: none;
}

/* Mobile Menu Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    padding: 5px;
}

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: var(--transition);
}

/* ============================================
   TOP BANNER
   ============================================ */
.top-banner {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    font-weight: 500;
    margin-top: 64px;
}

.top-banner span {
    font-weight: 700;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    min-height: auto;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #fff7ed 0%, #fef3c7 50%, #fed7aa 100%);
    overflow: hidden;
    padding: 40px 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 70%;
    height: 150%;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 50%;
    height: 100%;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.hero .container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-content {
    max-width: 600px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: white;
    border: 1px solid var(--primary-light);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 14px;
    box-shadow: var(--shadow-sm);
}

.hero-badge i {
    color: var(--yellow);
}

.hero h1 {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.15;
    color: var(--text-dark);
    margin-bottom: 14px;
}

.hero h1 .highlight {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 17px;
    color: var(--text-medium);
    margin-bottom: 20px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 30px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 28px;
    font-weight: 800;
    color: var(--primary);
}

.stat-label {
    font-size: 13px;
    color: var(--text-light);
    font-weight: 500;
}

/* Hero Right - Featured Cards */
.hero-right {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.featured-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 20px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(0,0,0,0.05);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.featured-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.featured-card .card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
}

.featured-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
}

.featured-card .card-desc {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 15px;
}

.featured-card .card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.featured-card .price {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.featured-card .price .current {
    font-size: 24px;
    font-weight: 800;
    color: var(--primary);
}

.featured-card .price .original {
    font-size: 14px;
    color: var(--text-light);
    text-decoration: line-through;
}

.featured-card .card-info {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 13px;
    color: var(--text-light);
}

.featured-card .card-info i {
    margin-right: 4px;
    color: var(--primary);
}

.badge-offer {
    background: linear-gradient(135deg, var(--red), #dc2626);
    color: white;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
}

.badge-special {
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    color: white;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
}

/* ============================================
   SECTION STYLES
   ============================================ */
.section {
    padding: 60px 0;
}

.section-header {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 36px;
}

.section-header h2 {
    font-size: 36px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.section-header p {
    font-size: 16px;
    color: var(--text-medium);
    line-height: 1.7;
}

.section-alt {
    background: var(--bg-gray);
}

/* ============================================
   TOUR PACKAGES SECTION
   ============================================ */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.package-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
}

.package-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
}

.package-card .card-image {
    height: 200px;
    position: relative;
    overflow: hidden;
}

.package-card .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.package-card .card-image .overlay-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 40%, rgba(0,0,0,0.6));
}

.package-card .card-rating {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(255,255,255,0.95);
    padding: 4px 10px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 13px;
    font-weight: 700;
    color: var(--yellow);
    box-shadow: var(--shadow-sm);
}

.package-card .card-rating i {
    font-size: 12px;
}

.package-card .card-seats {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255,255,255,0.95);
    padding: 4px 10px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-medium);
}

.package-card .card-price-overlay {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: white;
    padding: 6px 14px;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-md);
}

.package-card .card-price-overlay .current-price {
    font-size: 20px;
    font-weight: 800;
    color: var(--primary);
}

.package-card .card-price-overlay .old-price {
    font-size: 13px;
    color: var(--text-light);
    text-decoration: line-through;
    margin-left: 6px;
}

.package-card .card-body {
    padding: 16px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.package-card .card-body h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
    line-height: 1.3;
}

.package-card .card-body .desc {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 15px;
}

.package-card .card-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border);
}

.package-card .card-date {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--text-medium);
}

.package-card .card-date i {
    color: var(--primary);
}

.package-card .card-status {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
    font-weight: 600;
    color: var(--green);
}

.package-card .card-status .dot {
    width: 8px;
    height: 8px;
    background: var(--green);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.package-card .card-actions {
    display: flex;
    gap: 10px;
    margin-top: auto;
}

.package-card .card-actions .btn {
    flex: 1;
    padding: 10px 16px;
    font-size: 13px;
}

/* ============================================
   FEATURES SECTION
   ============================================ */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.feature-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 24px 20px;
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-light);
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 14px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
}

.feature-card h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials-wrapper {
    overflow: hidden;
    position: relative;
    padding: 20px 0;
}

.testimonials-track {
    display: flex;
    gap: 24px;
    animation: scroll 40s linear infinite;
    width: max-content;
}

.testimonials-track:hover {
    animation-play-state: paused;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.testimonial-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 20px;
    min-width: 320px;
    max-width: 320px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
    flex-shrink: 0;
    transition: var(--transition);
}

.testimonial-card:hover {
    box-shadow: var(--shadow-lg);
}

.testimonial-card .stars {
    display: flex;
    gap: 3px;
    margin-bottom: 12px;
    color: var(--yellow);
    font-size: 14px;
}

.testimonial-card .quote {
    font-size: 14px;
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 16px;
    font-style: italic;
}

.testimonial-card .author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-card .author-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 16px;
}

.testimonial-card .author-info h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-dark);
}

.testimonial-card .author-info span {
    font-size: 12px;
    color: var(--text-light);
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    padding: 50px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
}

.cta-section h2 {
    font-size: 36px;
    font-weight: 800;
    color: white;
    margin-bottom: 10px;
}

.cta-section p {
    font-size: 17px;
    color: rgba(255,255,255,0.85);
    margin-bottom: 24px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-white {
    background: white;
    color: var(--primary);
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.btn-outline-white {
    background: transparent;
    color: white;
    border: 2px solid rgba(255,255,255,0.5);
}

.btn-outline-white:hover {
    background: white;
    color: var(--primary);
    border-color: white;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: #fff1f2;
    color: #64748b;
    padding: 32px 0 12px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 24px;
    margin-bottom: 20px;
}

.footer-brand .brand-name {
    font-size: 20px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 2px;
}

.footer-brand .brand-tagline-text {
    font-size: 13px;
    font-weight: 500;
    color: var(--primary);
    margin-bottom: 10px;
}

.footer-brand p {
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 14px;
    color: #94a3b8;
}

.footer-social {
    display: flex;
    gap: 8px;
}

.footer-social a {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(0,0,0,0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    font-size: 14px;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
}

.footer-col h3 {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-col ul li {
    margin-bottom: 6px;
}

.footer-col ul li a {
    font-size: 13px;
    color: #94a3b8;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.footer-col ul li a::before {
    content: '›';
    font-size: 16px;
    opacity: 0;
    transition: var(--transition);
    margin-left: -8px;
}

.footer-col ul li a:hover::before {
    opacity: 1;
    margin-left: 0;
}

.footer-col ul li a:hover {
    color: var(--primary);
}

.footer-col .contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    font-size: 13px;
    color: #94a3b8;
}

.footer-col .contact-item i {
    color: var(--primary);
    font-size: 13px;
    width: 16px;
    text-align: center;
}

.footer-divider {
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(0,0,0,0.08), transparent);
    margin-bottom: 14px;
}

.footer-bottom {
    text-align: center;
    font-size: 12px;
    color: #b0b8c4;
}

/* ============================================
   BOOKING PAGE
   ============================================ */
.booking-hero {
    background: linear-gradient(135deg, #fff7ed, #fef3c7);
    padding: 100px 0 40px;
    text-align: center;
}

.booking-hero h1 {
    font-size: 36px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.booking-hero p {
    font-size: 16px;
    color: var(--text-medium);
}

.booking-section {
    padding: 40px 0 50px;
}

.booking-container {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 40px;
    align-items: start;
}

.booking-form-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 36px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
}

.booking-form-card h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
}

.booking-form-card .subtitle {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.form-group label .required {
    color: var(--red);
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 14px;
    color: var(--text-dark);
    background: var(--bg-gray);
    transition: var(--transition);
}

.form-control:focus {
    background: white;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-note {
    font-size: 12px;
    color: var(--text-light);
    margin-top: 4px;
}

.booking-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    margin-bottom: 24px;
}

.sidebar-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.sidebar-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    font-size: 14px;
    border-bottom: 1px dashed var(--border);
}

.sidebar-item:last-child {
    border-bottom: none;
}

.sidebar-item .label {
    color: var(--text-light);
}

.sidebar-item .value {
    font-weight: 600;
    color: var(--text-dark);
}

.sidebar-total {
    display: flex;
    justify-content: space-between;
    padding: 15px 0 0;
    margin-top: 10px;
    border-top: 2px solid var(--text-dark);
    font-size: 18px;
    font-weight: 700;
}

.sidebar-total .amount {
    color: var(--primary);
}

.help-card {
    background: linear-gradient(135deg, var(--bg-light), #fef3c7);
    border: 1px solid var(--primary-light);
}

.help-card .help-phone {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
    margin: 10px 0;
}

.help-card p {
    font-size: 13px;
    color: var(--text-light);
}

/* ============================================
   TOURS PAGE
   ============================================ */
.tours-hero {
    background: linear-gradient(135deg, #fff7ed, #fef3c7);
    padding: 100px 0 40px;
    text-align: center;
}

.tours-hero h1 {
    font-size: 36px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.tours-hero p {
    font-size: 16px;
    color: var(--text-medium);
}

.tours-filter {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 8px 22px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    background: white;
    color: var(--text-medium);
    border: 1px solid var(--border);
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.tours-section {
    padding: 40px 0 50px;
}

.tours-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Tour detail items */
.tour-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 15px;
}

.tour-highlights .highlight-tag {
    background: var(--bg-light);
    padding: 4px 10px;
    border-radius: 50px;
    font-size: 12px;
    color: var(--primary-dark);
    font-weight: 500;
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-hero {
    background: linear-gradient(135deg, #fff7ed, #fef3c7);
    padding: 88px 0 28px;
    text-align: center;
}

.about-hero h1 {
    font-size: 34px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.about-hero p {
    font-size: 15px;
    color: var(--text-medium);
    max-width: 600px;
    margin: 0 auto;
}

/* About page: denser sections (laptop) */
.page-about .section {
    padding: 36px 0;
}

.page-about .section-alt {
    padding: 36px 0;
}

.page-about .section-header {
    margin-bottom: 24px;
}

.page-about .section-header h2 {
    margin-bottom: 6px;
}

/* ============================================
   GALLERY PAGE
   ============================================ */
.gallery-hero {
    background: linear-gradient(135deg, #fff7ed, #fef3c7);
    padding: 120px 0 60px;
    text-align: center;
}

.gallery-hero h1 {
    font-size: 40px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.gallery-hero h1 i {
    color: var(--primary);
    margin-right: 10px;
}

.gallery-hero p {
    font-size: 17px;
    color: var(--text-medium);
    max-width: 650px;
    margin: 0 auto;
}

.gallery-filter {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.gallery-filter .filter-btn i {
    margin-right: 6px;
}

.gallery-section {
    padding: 60px 0 80px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.gallery-item {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: white;
    box-shadow: var(--shadow-md);
    cursor: pointer;
    transition: var(--transition);
    animation: fadeIn 0.5s ease;
}

.gallery-item:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
}

.gallery-img-wrapper {
    position: relative;
    width: 100%;
    height: 240px;
    overflow: hidden;
    background: linear-gradient(135deg, #fef3c7, #fed7aa);
}

.gallery-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-img-wrapper img {
    transform: scale(1.08);
}

.gallery-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(135deg, #fff7ed 0%, #fed7aa 50%, #fdba74 100%);
    color: var(--primary-dark);
}

.gallery-placeholder i {
    font-size: 48px;
    margin-bottom: 12px;
    opacity: 0.7;
}

.gallery-placeholder span {
    font-size: 14px;
    font-weight: 600;
    opacity: 0.8;
}

.gallery-caption {
    padding: 16px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.gallery-caption h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.4;
}

.gallery-tag {
    display: inline-block;
    padding: 4px 12px;
    background: var(--primary-light);
    color: var(--primary-dark);
    border-radius: 50px;
    font-size: 11px;
    font-weight: 600;
    white-space: nowrap;
    flex-shrink: 0;
}

/* Upload Info Section */
.gallery-upload-info {
    text-align: center;
    padding: 60px 30px;
    margin-top: 50px;
    background: linear-gradient(135deg, #fff7ed, #fef3c7);
    border-radius: var(--radius-xl);
    border: 2px dashed var(--primary-light);
}

.gallery-upload-info .upload-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
}

.gallery-upload-info h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.gallery-upload-info p {
    font-size: 16px;
    color: var(--text-medium);
    max-width: 500px;
    margin: 0 auto;
}

/* Lightbox */
.lightbox-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.92);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 20px;
}

.lightbox-overlay.active {
    display: flex;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 25px;
    background: rgba(255,255,255,0.15);
    border: none;
    color: white;
    font-size: 24px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 10;
}

.lightbox-close:hover {
    background: rgba(255,255,255,0.3);
    transform: rotate(90deg);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.15);
    border: none;
    color: white;
    font-size: 22px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 10;
}

.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255,255,255,0.3);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-content {
    max-width: 900px;
    max-height: 80vh;
    width: 100%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    background: #1a1a1a;
}

.lightbox-content img {
    width: 100%;
    max-height: 70vh;
    object-fit: contain;
    display: block;
}

.lightbox-placeholder {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 400px;
    background: linear-gradient(135deg, #2d1f0f, #4a2f14);
    color: #fdba74;
}

.lightbox-placeholder.active {
    display: flex;
}

.lightbox-placeholder i {
    font-size: 72px;
    margin-bottom: 16px;
    opacity: 0.6;
}

.lightbox-placeholder span {
    font-size: 18px;
    font-weight: 600;
    opacity: 0.8;
}

.lightbox-info {
    padding: 18px 24px;
    background: rgba(0,0,0,0.6);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.lightbox-info h3 {
    color: white;
    font-size: 16px;
    font-weight: 600;
}

.lightbox-counter {
    color: rgba(255,255,255,0.6);
    font-size: 14px;
    margin-top: 15px;
    font-weight: 500;
}

.about-section {
    padding: 28px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    align-items: center;
}

.about-content h2 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 14px;
    color: var(--text-dark);
}

.about-content p {
    font-size: 14px;
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 10px;
}

.about-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 320px;
    background: linear-gradient(135deg, var(--primary-light), #fef3c7);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 64px;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    text-align: center;
    padding: 28px 0;
}

.about-stat-item {
    background: white;
    padding: 18px 14px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

.about-stat-item .number {
    font-size: 30px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 4px;
}

.about-stat-item .label {
    font-size: 13px;
    color: var(--text-light);
}

/* About page: denser features grid */
.page-about .features-grid {
    gap: 16px;
}

.page-about .feature-card {
    padding: 18px 16px;
}

.page-about .feature-card h3 {
    margin-bottom: 6px;
}

.page-about .feature-card p {
    font-size: 13px;
    line-height: 1.55;
}

.about-content-actions {
    margin-top: 16px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* ============================================
   FLOATING BUTTONS (Right Side)
   ============================================ */
.floating-buttons {
    position: fixed;
    bottom: 25px;
    right: 25px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 999;
}

.float-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 22px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.25);
    transition: var(--transition);
    animation: float 3s ease-in-out infinite;
}

.float-btn:hover {
    transform: scale(1.15);
}

.float-btn-whatsapp {
    background: #25d366;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.float-btn-whatsapp:hover {
    box-shadow: 0 6px 22px rgba(37, 211, 102, 0.55);
}

.float-btn-call {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.4);
    animation-delay: 0.3s;
}

.float-btn-call:hover {
    box-shadow: 0 6px 22px rgba(249, 115, 22, 0.55);
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

/* ============================================
   SCROLL TO TOP
   ============================================ */
.scroll-top {
    position: fixed;
    bottom: 25px;
    left: 25px;
    width: 45px;
    height: 45px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    box-shadow: var(--shadow-md);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}

/* ============================================
   TOUR IMAGE PLACEHOLDERS
   ============================================ */
.tour-img-1 {
    background: linear-gradient(135deg, #f97316, #ea580c);
}

.tour-img-2 {
    background: linear-gradient(135deg, #22c55e, #16a34a);
}

.tour-img-3 {
    background: linear-gradient(135deg, #7c3aed, #6d28d9);
}

.tour-img-4 {
    background: linear-gradient(135deg, #06b6d4, #0891b2);
}

.tour-img-5 {
    background: linear-gradient(135deg, #eab308, #ca8a04);
}

.tour-img-6 {
    background: linear-gradient(135deg, #ec4899, #db2777);
}

.card-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 48px;
}

/* ============================================
   MOBILE MENU OVERLAY
   ============================================ */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Body scroll lock when menu is open */
body.menu-open {
    overflow: hidden;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* --- FULLSCREEN / LARGE DISPLAYS (1440px+) --- */
@media (min-width: 1440px) {
    .container {
        max-width: 1400px;
        padding: 0 20px;
    }

    .navbar .container {
        padding-top: 14px;
        padding-bottom: 14px;
    }

    .navbar-brand .brand-name {
        font-size: 20px;
    }

    .navbar-brand .brand-tagline {
        font-size: 12px;
    }

    .nav-links {
        gap: 36px;
    }

    .nav-links a {
        font-size: 16px;
    }

    .hero h1 {
        font-size: 54px;
    }

    .hero p {
        font-size: 18px;
    }

    .section-header h2 {
        font-size: 40px;
    }

    .section-header p {
        font-size: 17px;
    }

    .packages-grid,
    .tours-grid {
        gap: 35px;
    }

    .cta-section h2 {
        font-size: 40px;
    }

    .footer-grid {
        gap: 50px;
    }
}

/* --- ULTRA-WIDE (1920px+) --- */
@media (min-width: 1920px) {
    .container {
        max-width: 1600px;
        padding: 0 24px;
    }
}

/* --- LAPTOP (max 1024px) --- */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero h1 {
        font-size: 38px;
    }

    .packages-grid,
    .tours-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr 1fr;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .booking-container {
        grid-template-columns: 1fr;
    }

    .booking-sidebar {
        position: static;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 10px;
    }

    /* --- NAVBAR MOBILE --- */
    .navbar .container {
        height: 56px;
    }

    .navbar-brand .brand-name {
        font-size: 15px;
    }

    .navbar-brand .brand-tagline {
        font-size: 9px;
    }

    /* --- MOBILE MENU --- */
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 280px;
        height: 100vh;
        height: 100dvh;
        background: white;
        flex-direction: column;
        padding: 0;
        gap: 0;
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.15);
        transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1001;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .nav-links.active {
        right: 0;
    }

    /* Mobile menu header area */
    .nav-links::before {
        content: 'श्री यात्रा सेवा';
        display: block;
        padding: 20px 18px 14px;
        font-size: 16px;
        font-weight: 800;
        color: var(--primary-dark);
        background: linear-gradient(135deg, #fff7ed, #fef3c7);
        border-bottom: 1px solid var(--primary-light);
        margin-top: 56px;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links li.mobile-menu-cta {
        border-bottom: none;
    }

    .nav-links a {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 12px 18px;
        font-size: 14px;
        font-weight: 500;
        color: var(--text-dark);
        border-radius: 0;
        border-bottom: 1px solid #f1f5f9;
        transition: all 0.2s ease;
    }

    .nav-links a::after {
        display: none;
    }

    .nav-links a:hover {
        background: #fff7ed;
        color: var(--primary);
    }

    .nav-links a.active {
        background: linear-gradient(90deg, rgba(249,115,22,0.1), transparent);
        color: var(--primary);
        font-weight: 700;
        border-left: 3px solid var(--primary);
        padding-left: 15px;
    }

    /* Mobile menu CTA section */
    .mobile-menu-cta {
        display: flex !important;
        flex-direction: column;
        gap: 8px;
        padding: 16px 18px 20px;
        margin-top: auto;
        border-top: 1px solid var(--border);
        background: var(--bg-gray);
    }

    .mobile-menu-cta a {
        border-bottom: none !important;
        border-left: none !important;
        padding: 0 !important;
    }

    .mobile-menu-cta .nav-phone {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        font-size: 14px;
        font-weight: 700;
        color: var(--primary-dark) !important;
        padding: 10px 14px !important;
        background: white;
        border-radius: var(--radius-sm);
        border: 1.5px solid var(--primary) !important;
    }

    .mobile-menu-cta .btn {
        width: 100%;
        justify-content: center;
        padding: 10px 16px !important;
        font-size: 13px;
        font-weight: 600;
        border-radius: var(--radius-sm);
    }

    .mobile-menu-cta .btn.btn-primary {
        color: white !important;
    }

    .mobile-menu-cta .btn.btn-whatsapp {
        color: white !important;
    }

    /* --- HAMBURGER ANIMATION --- */
    .mobile-toggle {
        display: flex;
        width: 40px;
        height: 40px;
        align-items: center;
        justify-content: center;
        border-radius: var(--radius-sm);
        z-index: 1002;
        position: relative;
    }

    .mobile-toggle:active {
        background: var(--bg-gray);
    }

    .mobile-toggle span {
        position: absolute;
        width: 22px;
        height: 2.5px;
        background: var(--text-dark);
        border-radius: 2px;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .mobile-toggle span:nth-child(1) {
        transform: translateY(-7px);
    }

    .mobile-toggle span:nth-child(3) {
        transform: translateY(7px);
    }

    .mobile-toggle.active span:nth-child(1) {
        transform: rotate(45deg);
    }

    .mobile-toggle.active span:nth-child(2) {
        opacity: 0;
        transform: scaleX(0);
    }

    .mobile-toggle.active span:nth-child(3) {
        transform: rotate(-45deg);
    }

    .nav-cta {
        display: none;
    }

    /* --- TOP BANNER MOBILE --- */
    .top-banner {
        font-size: 11px;
        padding: 8px 16px;
        line-height: 1.5;
        margin-top: 56px;
    }

    /* --- HERO MOBILE --- */
    .hero {
        min-height: auto;
        padding: 24px 0 28px;
    }

    .hero .container {
        gap: 20px;
    }

    .hero-content {
        text-align: left;
    }

    .hero-badge {
        margin-bottom: 10px;
        font-size: 12px;
        padding: 4px 12px;
    }

    .hero h1 {
        font-size: 26px;
        margin-bottom: 10px;
    }

    .hero p {
        font-size: 13px;
        margin-bottom: 16px;
        line-height: 1.6;
    }

    .hero-buttons {
        justify-content: flex-start;
        gap: 10px;
        margin-bottom: 20px;
    }

    .hero-buttons .btn {
        padding: 10px 20px;
        font-size: 13px;
    }

    .hero-stats {
        justify-content: flex-start;
        gap: 24px;
    }

    .stat-number {
        font-size: 20px;
    }

    .stat-label {
        font-size: 11px;
    }

    /* --- HERO CARDS MOBILE --- */
    .hero-right {
        gap: 12px;
    }

    .featured-card {
        padding: 14px;
        border-radius: var(--radius-md);
    }

    .featured-card h3 {
        font-size: 14px;
    }

    .featured-card .card-desc {
        font-size: 12px;
        margin-bottom: 10px;
    }

    .featured-card .card-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .featured-card .price .current {
        font-size: 18px;
    }

    .featured-card .card-info {
        flex-wrap: wrap;
        gap: 8px;
        font-size: 11px;
    }

    /* --- SECTIONS MOBILE --- */
    .section {
        padding: 36px 0;
    }

    .section-header {
        margin-bottom: 20px;
    }

    .section-header h2 {
        font-size: 22px;
        margin-bottom: 6px;
    }

    .section-header p {
        font-size: 13px;
    }

    /* --- PACKAGES GRID MOBILE --- */
    .packages-grid,
    .tours-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .package-card {
        border-radius: var(--radius-md);
    }

    .package-card .card-image {
        height: 170px;
    }

    .package-card .card-body {
        padding: 14px;
    }

    .package-card .card-body h3 {
        font-size: 15px;
        margin-bottom: 4px;
    }

    .package-card .card-body .desc {
        font-size: 12px;
        margin-bottom: 10px;
    }

    .package-card .card-details {
        margin-bottom: 10px;
        padding-bottom: 10px;
    }

    .package-card .card-actions {
        gap: 8px;
    }

    .package-card .card-actions .btn {
        padding: 9px 12px;
        font-size: 12px;
    }

    /* --- FEATURES GRID MOBILE --- */
    .features-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .feature-card {
        padding: 16px 12px;
        border-radius: var(--radius-md);
    }

    .feature-icon {
        width: 48px;
        height: 48px;
        margin-bottom: 10px;
        font-size: 22px;
    }

    .feature-card h3 {
        font-size: 13px;
        margin-bottom: 4px;
    }

    .feature-card p {
        font-size: 11px;
        line-height: 1.4;
    }

    /* --- TESTIMONIALS MOBILE --- */
    .testimonial-card {
        min-width: 270px;
        max-width: 270px;
        padding: 16px;
    }

    .testimonial-card .quote {
        font-size: 12px;
        margin-bottom: 12px;
    }

    .testimonial-card .author-avatar {
        width: 34px;
        height: 34px;
        font-size: 13px;
    }

    .testimonial-card .author-info h4 {
        font-size: 12px;
    }

    /* --- CTA SECTION MOBILE --- */
    .cta-section {
        padding: 36px 0;
    }

    .cta-section h2 {
        font-size: 22px;
        margin-bottom: 8px;
    }

    .cta-section p {
        font-size: 13px;
        margin-bottom: 20px;
    }

    .cta-buttons {
        gap: 10px;
    }

    .cta-buttons .btn {
        padding: 10px 20px;
        font-size: 13px;
    }

    /* --- FORM MOBILE --- */
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .booking-hero h1,
    .tours-hero h1,
    .about-hero h1 {
        font-size: 22px;
    }

    .booking-hero,
    .tours-hero,
    .about-hero {
        padding: 74px 0 24px;
    }

    .page-about .about-hero {
        padding: 70px 0 18px;
    }

    .page-about .section,
    .page-about .section-alt {
        padding: 24px 0;
    }

    .page-about .section-header {
        margin-bottom: 18px;
    }

    .page-about .about-section {
        padding: 20px 0;
    }

    .page-about .about-grid {
        gap: 20px;
    }

    .page-about .about-stats {
        padding: 20px 0;
        gap: 12px;
    }

    .page-about .about-stat-item {
        padding: 14px 12px;
    }

    .page-about .about-stat-item .number {
        font-size: 26px;
    }

    .page-about .about-content h2 {
        margin-bottom: 12px;
    }

    .page-about .about-content p {
        margin-bottom: 8px;
    }

    .page-about .about-content-actions {
        margin-top: 12px;
        gap: 10px;
    }

    .page-about .features-grid {
        gap: 12px;
    }

    .page-about .feature-card {
        padding: 14px 12px;
    }

    .page-about .cta-section {
        padding: 32px 0;
    }

    .booking-hero p {
        font-size: 13px;
        padding: 0 10px;
    }

    .booking-section {
        padding: 20px 0 40px;
    }

    .booking-container {
        gap: 20px;
    }

    .booking-form-card {
        padding: 20px 16px;
        border-radius: var(--radius-md);
        box-shadow: 0 2px 12px rgba(0,0,0,0.06);
        border: 1px solid rgba(0,0,0,0.06);
    }

    .booking-form-card h2 {
        font-size: 18px;
        text-align: center;
    }

    .booking-form-card .subtitle {
        font-size: 12px;
        text-align: center;
        margin-bottom: 20px;
    }

    .form-group {
        margin-bottom: 14px;
    }

    .form-group label {
        font-size: 13px;
        margin-bottom: 6px;
    }

    .form-control {
        padding: 11px 14px;
        font-size: 14px;
        border-radius: 10px;
        background: #f8fafc;
    }

    select.form-control {
        -webkit-appearance: none;
        appearance: none;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%2394a3b8' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: right 14px center;
        padding-right: 36px;
    }

    .form-note {
        font-size: 11px;
    }

    /* Booking submit buttons - stack on mobile */
    .booking-submit-row {
        flex-direction: column !important;
        gap: 10px !important;
    }

    .booking-submit-row .btn {
        width: 100%;
        padding: 13px 20px;
        font-size: 14px;
        border-radius: 12px;
    }

    /* Sidebar mobile */
    .sidebar-card {
        padding: 18px 16px;
        border-radius: var(--radius-md);
        margin-bottom: 14px;
        box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    }

    .sidebar-card h3 {
        font-size: 15px;
        margin-bottom: 12px;
    }

    .sidebar-item {
        padding: 8px 0;
        font-size: 13px;
    }

    .sidebar-total {
        font-size: 16px;
    }

    .help-card .help-phone {
        font-size: 18px;
    }

    .help-card p {
        font-size: 12px;
    }

    /* Success modal mobile */
    #successModal > div {
        padding: 28px 20px !important;
        margin: 16px !important;
        border-radius: 16px !important;
    }

    #successModal > div > div:first-child {
        font-size: 48px !important;
    }

    #successModal h2 {
        font-size: 20px !important;
    }

    #successModal p {
        font-size: 13px !important;
    }

    /* --- MOBILE STICKY PRICE BAR --- */
    .mobile-price-bar {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background: white;
        border-top: 1px solid var(--border);
        box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
        padding: 10px 16px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        z-index: 998;
        gap: 12px;
    }

    .mobile-price-info {
        display: flex;
        flex-direction: column;
    }

    .mobile-price-label {
        font-size: 11px;
        color: var(--text-light);
        font-weight: 500;
    }

    .mobile-price-amount {
        font-size: 20px;
        font-weight: 800;
        color: var(--primary);
        line-height: 1.1;
    }

    .mobile-price-bar .btn {
        padding: 10px 24px;
        font-size: 14px;
        border-radius: 10px;
        flex-shrink: 0;
    }

    /* Booking page adjustments when sticky bar is visible */
    .has-mobile-bar .floating-buttons {
        bottom: 75px;
    }

    .has-mobile-bar .footer {
        padding-bottom: 65px;
    }

    /* --- FOOTER MOBILE --- */
    .footer {
        padding: 24px 0 10px;
    }

    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px 12px;
        margin-bottom: 16px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-brand .brand-name {
        font-size: 17px;
        justify-content: flex-start;
        margin-bottom: 0;
    }

    .footer-brand p {
        text-align: left;
        font-size: 12px;
        margin-bottom: 8px;
        line-height: 1.5;
    }

    .footer-social {
        justify-content: flex-start;
    }

    .footer-col {
        text-align: left;
    }

    .footer-col h3 {
        font-size: 12px;
        margin-bottom: 6px;
    }

    .footer-col ul li {
        margin-bottom: 3px;
    }

    .footer-col ul li a {
        font-size: 11px;
    }

    .footer-col .contact-item {
        font-size: 11px;
        gap: 6px;
        margin-bottom: 5px;
    }

    .footer-col .contact-item i {
        font-size: 12px;
    }

    .footer-col .contact-item {
        justify-content: flex-start;
        font-size: 12px;
        margin-bottom: 6px;
    }

    .footer-bottom p {
        font-size: 10px;
    }

    /* --- FLOATING BUTTONS MOBILE --- */
    .floating-buttons {
        bottom: 14px;
        right: 12px;
        gap: 8px;
    }

    .float-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .scroll-top {
        bottom: 14px;
        left: 12px;
        width: 34px;
        height: 34px;
        font-size: 14px;
    }

    /* --- ABOUT PAGE MOBILE --- */
    .about-stats {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .about-stat-item {
        padding: 14px 10px;
    }

    .about-stat-item .number {
        font-size: 22px;
    }

    .about-stat-item .label {
        font-size: 11px;
    }

    .about-content h2 {
        font-size: 20px;
        text-align: left;
    }

    .about-content p {
        font-size: 13px;
        text-align: left;
    }

    .about-image {
        height: 180px;
        font-size: 44px;
        border-radius: var(--radius-md);
    }

    .page-about .about-hero {
        padding: 64px 0 14px;
    }

    .page-about .section,
    .page-about .section-alt {
        padding: 18px 0;
    }

    .page-about .section-header {
        margin-bottom: 14px;
    }

    .page-about .section-header h2 {
        font-size: 20px;
    }

    .page-about .about-section {
        padding: 16px 0;
    }

    .page-about .about-grid {
        gap: 16px;
    }

    .page-about .about-stats {
        padding: 16px 0;
        gap: 8px;
    }

    .page-about .about-stat-item {
        padding: 12px 10px;
    }

    .page-about .about-stat-item .number {
        font-size: 20px;
    }

    .page-about .about-content h2 {
        margin-bottom: 10px;
    }

    .page-about .about-content p {
        margin-bottom: 6px;
    }

    .page-about .about-content-actions {
        margin-top: 10px;
        gap: 8px;
    }

    .page-about .about-content-actions .btn {
        padding: 10px 16px;
        font-size: 13px;
    }

    .page-about .features-grid {
        gap: 10px;
    }

    .page-about .feature-card {
        padding: 12px 10px;
    }

    .page-about .feature-card h3 {
        font-size: 13px;
    }

    .page-about .feature-card p {
        font-size: 11px;
    }

    .page-about .cta-section {
        padding: 28px 0;
    }

    /* --- TOURS FILTER MOBILE --- */
    .tours-filter {
        gap: 8px;
    }

    .filter-btn {
        padding: 7px 16px;
        font-size: 13px;
    }

    /* Gallery responsive - tablet */
    .gallery-hero {
        padding: 90px 0 40px;
    }

    .gallery-hero h1 {
        font-size: 28px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .gallery-img-wrapper {
        height: 200px;
    }

    .gallery-caption {
        padding: 12px 14px;
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }

    .gallery-caption h4 {
        font-size: 13px;
    }

    .gallery-upload-info {
        padding: 40px 20px;
    }

    .gallery-upload-info h3 {
        font-size: 20px;
    }

    .lightbox-prev,
    .lightbox-next {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .lightbox-prev { left: 10px; }
    .lightbox-next { right: 10px; }

    .lightbox-close {
        top: 10px;
        right: 10px;
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .lightbox-info h3 {
        font-size: 14px;
    }

    .lightbox-placeholder {
        min-height: 300px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 8px;
    }

    .hero h1 {
        font-size: 24px;
    }

    .hero p {
        font-size: 13px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 16px;
        justify-content: flex-start;
    }

    .stat-number {
        font-size: 20px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
        padding: 0 10px;
    }

    .cta-buttons .btn {
        width: 100%;
    }

    .booking-hero h1,
    .tours-hero h1,
    .about-hero h1 {
        font-size: 20px;
    }

    .booking-hero p,
    .tours-hero p,
    .about-hero p {
        font-size: 12px;
    }

    /* Booking ultra-compact on small screens */
    .booking-form-card {
        padding: 16px 12px;
    }

    .booking-form-card h2 {
        font-size: 16px;
    }

    .form-group label {
        font-size: 12px;
    }

    .form-control {
        padding: 10px 12px;
        font-size: 13px;
    }

    .sidebar-card {
        padding: 14px 12px;
    }

    .sidebar-card h3 {
        font-size: 14px;
        margin-bottom: 10px;
    }

    .sidebar-item {
        font-size: 12px;
        padding: 6px 0;
    }

    .sidebar-total {
        font-size: 15px;
    }

    .mobile-price-bar {
        padding: 8px 12px;
    }

    .mobile-price-amount {
        font-size: 18px;
    }

    .mobile-price-bar .btn {
        padding: 9px 18px;
        font-size: 13px;
    }

    .featured-card .card-meta {
        gap: 6px;
    }

    .featured-card .price .current {
        font-size: 16px;
    }

    .features-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .feature-card {
        padding: 16px 12px;
    }

    .feature-icon {
        width: 48px;
        height: 48px;
        font-size: 22px;
        margin-bottom: 10px;
    }

    .feature-card h3 {
        font-size: 13px;
    }

    .feature-card p {
        font-size: 11px;
    }

    .section-header h2 {
        font-size: 22px;
    }

    .cta-section h2 {
        font-size: 22px;
    }

    .package-card .card-image {
        height: 160px;
    }

    .testimonial-card {
        min-width: 260px;
        max-width: 260px;
        padding: 16px;
    }

    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 14px 8px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-brand p {
        font-size: 11px;
    }

    .footer-col h3 {
        font-size: 11px;
        margin-bottom: 5px;
    }

    .footer-col ul li a {
        font-size: 10px;
    }

    .footer-col .contact-item {
        font-size: 10px;
        gap: 4px;
    }

    .footer-col ul li {
        margin-bottom: 4px;
    }

    .footer-col ul li a {
        font-size: 12px;
    }

    .footer-col .contact-item {
        font-size: 12px;
        gap: 6px;
        margin-bottom: 8px;
    }

    .footer-col .contact-item i {
        font-size: 13px;
        width: 16px;
    }

    /* Mobile menu - wider on very small screens */
    .nav-links {
        width: 78%;
        max-width: 260px;
    }

    .top-banner {
        font-size: 10px;
        padding: 6px 12px;
    }

    /* Gallery responsive - mobile */
    .gallery-hero h1 {
        font-size: 24px;
    }

    .gallery-hero p {
        font-size: 14px;
    }

    .gallery-filter {
        gap: 8px;
    }

    .gallery-filter .filter-btn {
        padding: 6px 14px;
        font-size: 12px;
    }

    .gallery-filter .filter-btn i {
        margin-right: 4px;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .gallery-img-wrapper {
        height: 150px;
    }

    .gallery-placeholder i {
        font-size: 32px;
        margin-bottom: 8px;
    }

    .gallery-placeholder span {
        font-size: 11px;
    }

    .gallery-caption {
        padding: 10px 12px;
    }

    .gallery-caption h4 {
        font-size: 12px;
    }

    .gallery-tag {
        font-size: 10px;
        padding: 3px 8px;
    }

    .gallery-upload-info {
        padding: 30px 16px;
        margin-top: 30px;
    }

    .gallery-upload-info .upload-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }

    .gallery-upload-info h3 {
        font-size: 18px;
    }

    .gallery-upload-info p {
        font-size: 14px;
    }

    .lightbox-placeholder {
        min-height: 250px;
    }

    .lightbox-placeholder i {
        font-size: 48px;
    }

    .lightbox-placeholder span {
        font-size: 15px;
    }

    .floating-buttons {
        bottom: 12px;
        right: 10px;
        gap: 6px;
    }

    .float-btn {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }

    .scroll-top {
        bottom: 12px;
        left: 10px;
        width: 30px;
        height: 30px;
        font-size: 12px;
    }
}
