/* ==========================================================================
   Bimaan Mehansa Tours - Ultra Luxury White Background & Black/Grey Theme
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
    --bg-dark: #ffffff;             /* Crisp White Body */
    --bg-card: #f8f9fa;             /* Soft Light Grey Card */
    --bg-card-hover: #ffffff;       /* Pure White Card Hover */
    --bg-surface: #f1f3f5;          /* Light Silver Surface */
    --bg-glass: rgba(255, 255, 255, 0.94); /* Glassmorphic Navbar */
    --bg-dark-accent: #0c0d10;      /* Dark Footer & Dark Contrast Banners */

    --border-color: #e5e7eb;        /* Light Grey Border */
    --border-color-light: #d1d5db;  /* Silver Border */
    --border-glow: #0a0b0d;

    --text-primary: #0a0b0d;        /* Deep Obsidian Black */
    --text-secondary: #374151;      /* Charcoal Body Text */
    --text-muted: #6b7280;          /* Muted Grey Text */

    --accent-white: #ffffff;
    --accent-silver: #4b5563;
    --accent-grey: #1f2937;
    --accent-dark-grey: #0a0b0d;

    --font-heading: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;

    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.06);
    --shadow-hover: 0 20px 45px rgba(0, 0, 0, 0.12);

    --transition-fast: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);

    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-full: 9999px;
}

/* Base resets & typography */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    background-color: var(--bg-dark);
    color: var(--text-secondary);
    font-family: var(--font-body);
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--text-primary);
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: -0.01em;
}

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

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

/* Utilities & Layout */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-padding {
    padding: 6rem 0;
}

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

.sub-title {
    font-family: var(--font-body);
    font-size: 0.825rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--text-muted);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.sub-title::before, .sub-title::after {
    content: '';
    display: inline-block;
    width: 24px;
    height: 1px;
    background: var(--text-muted);
}

.section-title {
    font-size: 2.75rem;
    color: var(--text-primary);
    margin-bottom: 1.25rem;
}

.section-desc {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 680px;
    margin: 0 auto 3rem;
}

/* Buttons & CTAs */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.9rem 2rem;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition-smooth);
    border: 1px solid transparent;
}

.btn-primary {
    background: var(--text-primary);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.btn-primary:hover {
    background: #2d2e38;
    color: #ffffff;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.25);
    transform: translateY(-2px);
}

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

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

.btn-sm {
    padding: 0.6rem 1.25rem;
    font-size: 0.8rem;
}

/* Header & Navigation Topbar */
.header-topbar {
    background: #0a0b0d;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.825rem;
    padding: 0.5rem 0;
    color: #9ca3af;
}

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

.topbar-left, .topbar-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.topbar-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: #d1d5db;
}

.topbar-item:hover {
    color: #ffffff;
}

.header-main {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #0a0b0d;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    transition: var(--transition-fast);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.1rem 1.5rem;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-icon {
    width: 42px;
    height: 42px;
    background: #ffffff;
    color: #0a0b0d;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.4rem;
    border-radius: var(--radius-sm);
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.brand-logo-img {
    height: 80px;
    width: 80px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    box-shadow: 0 4px 15px rgba(0,0,0,0.4);
    transition: all 0.3s ease;
}

.logo-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.logo-name {
    font-family: var(--font-heading);
    font-size: 1.65rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: #ffffff;
    line-height: 0.95;
    margin-bottom: 0.35rem;
}

.logo-tag {
    font-size: 0.62rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: #9ca3af;
    font-weight: 600;
    line-height: 1;
}

@media (max-width: 768px) {
    .brand-logo-img {
        height: 60px !important;
        width: 60px !important;
    }
    .logo-name {
        font-size: 1.25rem !important;
    }
    .logo-tag {
        font-size: 0.52rem !important;
        letter-spacing: 0.2em !important;
    }
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.2rem;
    list-style: none;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #d1d5db;
    position: relative;
    padding: 0.4rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #ffffff;
    transition: var(--transition-fast);
}

.nav-link:hover, .nav-link.active {
    color: #ffffff;
}

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

.mobile-nav-toggle {
    display: none;
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section with Video Loop */
/* Hero Section - Video Highlighted */
.hero-section {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    background: #000000;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 3.5rem;
}

.hero-video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 0;
    transform: translate(-50%, -50%);
    object-fit: cover;
    filter: brightness(0.92) contrast(1.08) saturate(1.1);
    transition: filter 0.5s ease;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, 
        rgba(0, 0, 0, 0.4) 0%, 
        rgba(0, 0, 0, 0.05) 45%, 
        rgba(7, 8, 10, 0.85) 100%
    );
    pointer-events: none;
}

.hero-content {
    max-width: 860px;
    margin: 0 auto;
    text-align: center;
    color: #ffffff;
    padding: 3rem 1.5rem 1rem;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.45rem 1.4rem;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 1.25rem;
    box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}

.hero-pulse-dot {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    box-shadow: 0 0 10px #22c55e;
    animation: pulseGlow 1.8s infinite;
}

@keyframes pulseGlow {
    0% { transform: scale(0.95); opacity: 0.8; }
    50% { transform: scale(1.3); opacity: 1; }
    100% { transform: scale(0.95); opacity: 0.8; }
}

.hero-title {
    font-size: 4.25rem;
    line-height: 1.05;
    margin-bottom: 1.25rem;
    color: #ffffff;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.9), 0 0 10px rgba(0, 0, 0, 0.6);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #f3f4f6;
    margin: 0 auto 2rem;
    max-width: 720px;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.9);
}

/* Floating Glass Search Bar */
.search-widget {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: var(--radius-md);
    padding: 1.25rem 1.5rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)) auto;
    gap: 1rem;
    align-items: center;
    margin-top: 1.5rem;
    text-align: left;
}

/* Video Control Toolbar (Floating Top-Right) */
.hero-video-toolbar {
    position: absolute;
    top: 2rem;
    right: 2rem;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.video-control-btn {
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    padding: 0.55rem 1.1rem;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition-smooth);
}

.video-control-btn:hover {
    background: #ffffff;
    color: #000000;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
}

.search-field {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    border-right: 1px solid var(--border-color);
    padding-right: 1rem;
}

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

.search-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
}

.search-select, .search-input {
    background: transparent;
    border: none;
    outline: none;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
}

.search-select option {
    background: #ffffff;
    color: var(--text-primary);
}

/* Cards Grid (Tours) */
.tour-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
}

.tour-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-soft);
}

.tour-card:hover {
    transform: translateY(-8px);
    border-color: var(--text-primary);
    box-shadow: var(--shadow-hover);
    background: var(--bg-card-hover);
}

.tour-image-wrap {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.tour-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.tour-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--text-primary);
    border: 1px solid var(--border-color);
    padding: 0.35rem 0.85rem;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #ffffff;
}

.tour-price-badge {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    background: #ffffff;
    color: var(--text-primary);
    padding: 0.4rem 1rem;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 0.95rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.tour-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.tour-meta {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
}

.tour-meta-item {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.tour-title {
    font-size: 1.6rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.tour-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 1.25rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.tour-highlights-list {
    list-style: none;
    margin-bottom: 1.5rem;
    border-top: 1px solid var(--border-color);
    padding-top: 1rem;
}

.tour-highlights-list li {
    font-size: 0.85rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.35rem;
}

.tour-highlights-list li::before {
    content: '✦';
    color: var(--text-primary);
    font-size: 0.7rem;
}

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

/* Feature Showcase Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

.feature-box {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 2.5rem 1.75rem;
    text-align: center;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-soft);
}

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

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: var(--text-primary);
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.feature-title {
    font-size: 1.4rem;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.feature-text {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* Fleet Showcase */
.fleet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 2rem;
}

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

.fleet-card:hover {
    border-color: var(--text-primary);
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.fleet-img-wrap {
    height: 220px;
    overflow: hidden;
}

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

.fleet-body {
    padding: 1.75rem;
}

.fleet-category {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-muted);
    margin-bottom: 0.25rem;
}

.fleet-title {
    font-size: 1.6rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.fleet-specs {
    display: flex;
    gap: 1.5rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 1.25rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.fleet-features-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.tag {
    background: #ffffff;
    border: 1px solid var(--border-color);
    padding: 0.25rem 0.65rem;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    color: var(--text-secondary);
}

/* Testimonials Slider/Grid */
.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 2.25rem;
    position: relative;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-soft);
}

.testimonial-card:hover {
    border-color: var(--text-primary);
    background: #ffffff;
    box-shadow: var(--shadow-hover);
}

.testimonial-quote {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-style: italic;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.author-name {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.95rem;
}

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

.stars {
    color: #0a0b0d;
    letter-spacing: 2px;
}

/* Forms & Modals */
.form-group {
    margin-bottom: 1.25rem;
}

.form-label {
    display: block;
    font-size: 0.825rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-secondary);
    font-weight: 600;
    margin-bottom: 0.4rem;
}

.form-control {
    width: 100%;
    padding: 0.85rem 1rem;
    background: #ffffff;
    border: 1px solid var(--border-color-light);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.95rem;
    outline: none;
    transition: var(--transition-fast);
}

.form-control:focus {
    border-color: var(--text-primary);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

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

/* Modal Overlay */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
}

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

.modal-box {
    background: #ffffff;
    border: 1px solid var(--border-color-light);
    border-radius: var(--radius-md);
    width: 100%;
    max-width: 650px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 2.5rem;
    position: relative;
    color: var(--text-primary);
    transform: scale(0.95);
    transition: var(--transition-smooth);
    box-shadow: 0 25px 50px rgba(0,0,0,0.25);
}

.modal-overlay.active .modal-box {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 1.5rem;
    cursor: pointer;
}

.modal-close:hover {
    color: var(--text-primary);
}

/* Accordion Timeline (Tour Details) */
.timeline-list {
    list-style: none;
    position: relative;
    padding-left: 2rem;
    margin: 2rem 0;
}

.timeline-list::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 7px;
    width: 2px;
    background: var(--border-color);
}

.timeline-item {
    position: relative;
    margin-bottom: 2rem;
}

.timeline-dot {
    position: absolute;
    left: -2rem;
    top: 0.2rem;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #ffffff;
    border: 3px solid var(--text-primary);
}

.timeline-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 1.25rem;
}

.timeline-day {
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
    font-weight: 700;
}

.timeline-title {
    font-size: 1.3rem;
    color: var(--text-primary);
    margin: 0.25rem 0 0.5rem;
}

/* Small Boxes Carousel Showcase */
.slideshow-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: transparent;
}

.slideshow-wrapper {
    display: flex;
    gap: 1.25rem;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.small-box-card {
    min-width: calc(33.333% - 0.85rem);
    height: 220px;
    position: relative;
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 15px rgba(0,0,0,0.12);
    background: #0a0b0d;
    cursor: pointer;
    flex-shrink: 0;
}

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

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

.small-box-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.25rem 1.25rem 0.85rem;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(7, 8, 10, 0.95) 100%);
    color: #ffffff;
    z-index: 3;
}

.small-box-tag {
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #9ca3af;
    display: block;
    margin-bottom: 0.15rem;
}

.small-box-title {
    font-size: 1rem;
    font-family: var(--font-heading);
    color: #ffffff;
    line-height: 1.25;
    margin: 0;
}

.slideshow-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(8px);
    border: none;
    color: #0a0b0d;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.slideshow-nav:hover {
    background: #0a0b0d;
    color: #ffffff;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.4);
}

.slideshow-prev { left: -0.5rem; }
.slideshow-next { right: -0.5rem; }

.slideshow-dots {
    display: flex;
    justify-content: center;
    gap: 0.4rem;
    margin-top: 1.25rem;
}

.dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--border-color);
    cursor: pointer;
    transition: var(--transition-fast);
}

.dot.active, .dot:hover {
    background: #0a0b0d;
    transform: scale(1.25);
}

/* Destination Explore Button (Bright White Text) */
.btn-dest-explore {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 1.25rem;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #ffffff !important;
    background: rgba(0, 0, 0, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: var(--radius-sm);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: var(--transition-smooth);
    box-shadow: 0 4px 15px rgba(0,0,0,0.4);
}

.btn-dest-explore:hover {
    background: #ffffff !important;
    color: #000000 !important;
    border-color: #ffffff;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

/* Footer (Dark Accent Contrast) */
footer {
    background: #0a0b0d;
    border-top: 1px solid #1a1c24;
    padding-top: 5rem;
    color: #9ca3af;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-brand .logo-name {
    font-size: 1.75rem;
    color: #ffffff;
}

.footer-text {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #9ca3af;
}

.footer-title {
    font-size: 1.25rem;
    color: #ffffff;
    margin-bottom: 1.25rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    font-size: 0.9rem;
    color: #d1d5db;
}

.footer-links a:hover {
    color: #ffffff;
    padding-left: 0.35rem;
}

.footer-bottom {
    border-top: 1px solid #1a1c24;
    padding: 1.75rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.85rem;
    color: #9ca3af;
}

.footer-credits {
    font-size: 0.82rem;
    color: #9ca3af;
}

.footer-credits a.credit-link {
    color: #f3f4f6;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-credits a.credit-link:hover {
    color: #c5a880;
    text-decoration: underline;
}

.footer-credits a.credit-tel {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.2s ease;
    white-space: nowrap;
}

.footer-credits a.credit-tel:hover {
    color: #c5a880;
    text-decoration: underline;
}

.footer-credits .credit-sep,
.footer-credits .credit-slash {
    margin: 0 0.35rem;
    color: #6b7280;
}

@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        justify-content: center;
        gap: 0.85rem;
    }
}


/* Toast Notifications */
.toast-container {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 3000;
}

.toast {
    background: #0a0b0d;
    border: 1px solid #374151;
    color: #ffffff;
    padding: 1rem 1.5rem;
    border-radius: var(--radius-sm);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    animation: slideUp 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

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

.btn-hero-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.9rem 2rem;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition-smooth);
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.btn-hero-outline:hover {
    background: #ffffff;
    color: #000000;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
}

.hero-actions {
    display: flex;
    gap: 1.25rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

/* Responsive media queries for mobile perfection */
@media (max-width: 992px) {
    .header-topbar {
        display: none;
    }

    .section-padding {
        padding: 4rem 0;
    }

    .hero-section {
        min-height: 82vh;
        padding-bottom: 2.5rem;
    }

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

    .hero-subtitle {
        font-size: 1.05rem;
        margin-bottom: 1.5rem;
    }

    .hero-video-toolbar {
        top: 1rem;
        right: 1rem;
        scale: 0.9;
    }

    .nav-links {
        position: fixed;
        top: 68px;
        left: 0;
        width: 100%;
        height: calc(100vh - 68px);
        background: #0a0b0d;
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
        flex-direction: column;
        justify-content: flex-start;
        padding: 2.5rem 1.5rem;
        gap: 1.75rem;
        display: none;
        box-shadow: 0 20px 40px rgba(0,0,0,0.8);
        overflow-y: auto;
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-nav-toggle {
        display: block;
        color: #ffffff;
    }
}

@media (max-width: 768px) {
    .hero-section {
        min-height: 85vh !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: flex-end !important;
        padding-bottom: 2.25rem !important;
    }

    .hero-content {
        display: flex !important;
        flex-direction: column !important;
        justify-content: space-between !important;
        min-height: 65vh !important;
        padding-top: 1rem !important;
        padding-bottom: 0.5rem !important;
        transform: none !important;
    }

    .hero-title {
        font-size: 1.85rem !important;
        line-height: 1.25 !important;
        margin-top: 1.5rem !important;
        margin-bottom: auto !important;
    }

    .hero-actions {
        margin-top: auto !important;
        width: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 0.75rem !important;
    }

    .hero-actions .btn {
        width: 100% !important;
    }

    .hero-badge,
    .hero-subtitle {
        display: none !important;
    }

    .slide-item {
        height: 270px;
    }

    .slide-caption {
        padding: 1.25rem 1.25rem 1rem;
    }

    .slide-title {
        font-size: 1.15rem;
    }

    .slide-desc {
        font-size: 0.78rem;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .slideshow-nav {
        width: 32px;
        height: 32px;
        font-size: 0.8rem;
    }

    .section-title {
        font-size: 2.1rem;
    }

    .sub-title {
        font-size: 0.75rem;
        letter-spacing: 0.18em;
    }

    .tour-grid, .features-grid, .fleet-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .topbar-content {
        flex-direction: column;
        gap: 0.4rem;
        text-align: center;
    }

    .topbar-left, .topbar-right {
        gap: 0.75rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .modal-box {
        padding: 1.75rem 1.25rem;
        margin: 0.5rem;
        width: 95%;
    }

    form style[grid-template-columns], div[style*="grid-template-columns: 1fr 1fr"] {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.15rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .hero-actions .btn, .hero-actions .btn-hero-outline {
        width: 100%;
    }

    .btn {
        padding: 0.8rem 1.25rem;
        font-size: 0.85rem;
    }
}

/* Eye-Catching Page Hero Banner System */
.page-hero-banner {
    position: relative;
    padding: 6.5rem 0 4.5rem;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    border-bottom: 1px solid var(--border-color);
}

.page-hero-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(7, 8, 10, 0.45) 0%, rgba(7, 8, 10, 0.95) 100%);
    z-index: 1;
}

.page-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.page-hero-title {
    font-size: 3.5rem;
    margin: 0.75rem 0 1rem;
    color: #ffffff;
    font-family: var(--font-heading);
    text-shadow: 0 4px 20px rgba(0,0,0,0.9);
}

.page-hero-subtitle {
    font-size: 1.15rem;
    color: #e5e7eb;
    margin: 0 auto;
    text-shadow: 0 2px 10px rgba(0,0,0,0.8);
    line-height: 1.6;
}

/* Tour Detail Page Styling & Mobile Responsiveness */
.tour-detail-banner {
    position: relative;
    min-height: 55vh;
    display: flex;
    align-items: flex-end;
    border-bottom: 1px solid var(--border-color);
}

.tour-detail-banner-content {
    padding-bottom: 3.5rem;
}

.tour-detail-title {
    font-size: 3.5rem;
    margin: 0.5rem 0 1rem;
    color: #ffffff;
    text-shadow: 0 4px 15px rgba(0,0,0,0.8);
    font-family: var(--font-heading);
}

.tour-detail-tagline {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 750px;
}

.tour-stats-bar-section {
    background: var(--bg-surface);
    border-bottom: 1px solid var(--border-color);
    padding: 1.25rem 0;
}

.tour-stats-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
}

.tour-stats-group {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.tour-stat-item .stat-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--text-muted);
    display: block;
}

.tour-stat-item .stat-val {
    font-size: 1.1rem;
    color: var(--text-primary);
}

.tour-detail-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 3rem;
}

.tour-highlights-box {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 2rem;
    margin-bottom: 2.5rem;
}

.tour-inc-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 3rem;
}

.tour-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.tour-gallery-item {
    height: 160px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.tour-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tour-booking-widget {
    position: sticky;
    top: 90px;
    background: var(--bg-card);
    border: 1px solid var(--border-color-light);
    border-radius: var(--radius-md);
    padding: 2rem;
    box-shadow: var(--shadow-hover);
}

/* Tour Detail Mobile Responsiveness Breakdown */
@media (max-width: 992px) {
    .tour-detail-grid {
        grid-template-columns: 1fr !important;
        gap: 2.5rem !important;
    }

    .tour-booking-widget {
        position: static !important;
    }
}

@media (max-width: 768px) {
    .tour-detail-banner {
        min-height: 38vh !important;
    }

    .tour-detail-banner-content {
        padding-bottom: 2rem !important;
    }

    .tour-detail-title {
        font-size: 2rem !important;
        line-height: 1.2 !important;
        margin-bottom: 0.5rem !important;
    }

    .tour-detail-tagline {
        font-size: 0.95rem !important;
    }

    .tour-stats-group {
        gap: 1.25rem !important;
        flex-direction: column !important;
    }

    .tour-inc-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }

    .tour-highlights-box {
        padding: 1.25rem !important;
    }

    .tour-booking-widget {
        padding: 1.5rem !important;
    }

    .tour-gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(130px, 1fr)) !important;
        gap: 0.75rem !important;
    }

    .tour-gallery-item {
        height: 120px !important;
    }
}

    .hero-badge {
        font-size: 0.7rem;
        padding: 0.35rem 1rem;
    }

    .hero-video-toolbar {
        top: 0.75rem;
        right: 0.5rem;
    }

    .video-control-btn {
        padding: 0.4rem 0.85rem;
        font-size: 0.7rem;
    }
}

/* ==========================================================================
   Eye-Catching Luxury Animations & Scroll Reveal Systems
   ========================================================================== */

/* Subtle Floating Animation for Hero Badges & Floating Elements */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-7px); }
    100% { transform: translateY(0px); }
}

/* Pulsing Glow Effect for CTA Buttons */
@keyframes pulseGlow {
    0% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.35); }
    70% { box-shadow: 0 0 0 12px rgba(255, 255, 255, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
}

.hero-badge {
    animation: float 4s ease-in-out infinite;
}

/* Floating WhatsApp Button Styling */
.whatsapp-float-btn {
    position: fixed;
    bottom: 180px;
    right: 25px;
    width: 58px;
    height: 58px;
    background: #25d366;
    color: #ffffff !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45);
    z-index: 9999;
    text-decoration: none;
    transition: transform 0.3s ease, background-color 0.3s ease;
    animation: float 3s ease-in-out infinite, pulseGlowWhatsapp 2.5s infinite;
}

@keyframes pulseGlowWhatsapp {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
    70% { box-shadow: 0 0 0 16px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.whatsapp-float-btn:hover {
    transform: scale(1.1) translateY(-5px);
    background: #20ba5a;
}

.whatsapp-float-tooltip {
    position: absolute;
    right: 70px;
    background: #12141a;
    color: #ffffff;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.4rem 0.85rem;
    border-radius: 20px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, transform 0.3s ease;
    transform: translateX(10px);
    pointer-events: none;
    border: 1px solid #282c37;
    box-shadow: 0 4px 15px rgba(0,0,0,0.4);
}

.whatsapp-float-btn:hover .whatsapp-float-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* Floating Review Action Button (Positioned Below WhatsApp) */
.review-float-btn {
    position: fixed;
    bottom: 110px;
    right: 25px;
    width: 58px;
    height: 58px;
    background: linear-gradient(135deg, #d97706 0%, #f59e0b 100%);
    color: #ffffff !important;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.65rem;
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.45);
    z-index: 9999;
    text-decoration: none;
    transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
    animation: float 3s ease-in-out infinite 0.5s, pulseGlowReview 2.5s infinite;
}

@keyframes pulseGlowReview {
    0% { box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.5); }
    70% { box-shadow: 0 0 0 14px rgba(245, 158, 11, 0); }
    100% { box-shadow: 0 0 0 0 rgba(245, 158, 11, 0); }
}

.review-float-btn:hover {
    transform: scale(1.1) translateY(-4px);
    background: linear-gradient(135deg, #b45309 0%, #d97706 100%);
}

.review-float-tooltip {
    position: absolute;
    right: 70px;
    background: #12141a;
    color: #ffffff;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.4rem 0.85rem;
    border-radius: 20px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, transform 0.3s ease;
    transform: translateX(10px);
    pointer-events: none;
    border: 1px solid #282c37;
    box-shadow: 0 4px 15px rgba(0,0,0,0.4);
}

.review-float-btn:hover .review-float-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}


@media (max-width: 768px) {
    .whatsapp-float-btn {
        bottom: 210px !important;
        right: 15px !important;
        width: 52px;
        height: 52px;
        font-size: 1.75rem;
    }
    
    .whatsapp-float-tooltip {
        display: none;
    }

    .review-float-btn {
        bottom: 145px !important;
        right: 15px !important;
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
    }

    .review-float-tooltip {
        display: none;
    }
}

.btn-primary {
    position: relative;
    overflow: hidden;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.btn-primary:hover::after {
    transform: translateX(250%);
}

.btn-primary:hover, .btn-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.15);
}

/* Interactive Card Image Zoom & Lift Effects */
.tour-card, .dest-card, .fleet-card, .small-box-card {
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.tour-card:hover, .dest-card:hover, .fleet-card:hover, .small-box-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
}

.tour-card-img img, .dest-card img, .fleet-img-wrap img, .small-box-img {
    transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.tour-card:hover .tour-card-img img, 
.dest-card:hover .dest-card img, 
.fleet-card:hover .fleet-img-wrap img, 
.small-box-card:hover .small-box-img {
    transform: scale(1.08);
}

/* Scroll Reveal Entrance Animations */
.scroll-reveal {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   Responsive Grid Utilities for About Us & Guest Reviews Pages
   ========================================================================== */
.about-story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    border-top: 1px solid var(--border-color);
    padding-top: 1.5rem;
}

.reviews-section-grid {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 3rem;
    align-items: flex-start;
}

.about-img-box {
    height: 480px;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border-color-light);
    box-shadow: var(--shadow-hover);
}

@media (max-width: 992px) {
    .about-story-grid {
        grid-template-columns: 1fr !important;
        gap: 2.5rem !important;
    }
    
    .reviews-section-grid {
        grid-template-columns: 1fr !important;
        gap: 2.5rem !important;
    }

    .reviews-section-grid > div {
        position: static !important;
    }

    .about-img-box {
        height: 320px !important;
    }
}

@media (max-width: 576px) {
    .about-stats-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }

    .about-img-box {
        height: 250px !important;
    }
}

/* Contact Us Page Responsive Layout & Black Icon Badge */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.contact-form-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color-light);
    border-radius: var(--radius-md);
    padding: 2.25rem;
    box-shadow: var(--shadow-soft);
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.contact-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    width: 100%;
    box-sizing: border-box;
}

.contact-icon-badge {
    width: 48px;
    height: 48px;
    background: #ffffff !important;
    color: #000000 !important;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    flex-shrink: 0;
}

.js-inquiry-form, .form-control {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
}

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr !important;
        gap: 2.25rem !important;
    }
}

@media (max-width: 768px) {
    .contact-form-grid {
        grid-template-columns: 1fr !important;
        gap: 0.75rem !important;
    }
}

@media (max-width: 576px) {
    .contact-form-card {
        padding: 1.25rem !important;
    }
}
