/* ==========================================
   HOTEL DEVANG â€” DWARKA ATTRACTIONS PAGE
   Redesigned UI | Brand-matched
   ========================================== */

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

:root {
    --crimson: #880000;
    --crimson-dark: #5c0000;
    --crimson-mid: #a00000;
    --crimson-light: #b22222;
    --gold: #caa035;
    --gold-light: #ffd700;
    --gold-pale: rgba(202, 160, 53, 0.12);
    --gold-border: rgba(202, 160, 53, 0.35);
    --ivory: #fdf8f1;
    --ivory-dark: #f5ede0;
    --white: #ffffff;
    --text-dark: #2a1a1a;
    --text-mid: #5c4040;
    --text-muted: #8a7070;
    --border: #e8ddd5;
    --shadow-sm: 0 2px 12px rgba(136, 0, 0, 0.08);
    --shadow-md: 0 8px 32px rgba(136, 0, 0, 0.12);
    --shadow-lg: 0 20px 60px rgba(136, 0, 0, 0.15);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
}

/* â”€â”€ Reset â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-margin-top: 90px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Jost', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--ivory);
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
}

html,
body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

/* â”€â”€ Preloader â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
#preloader {
    position: fixed;
    inset: 0;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

#preloader img {
    width: 200px;
    height: auto;
}

/* â”€â”€ Scroll Progress â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
#scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(to right, var(--crimson), var(--gold));
    z-index: 10000;
    transition: width 0.2s ease-out;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   NAVBAR  (kept identical to brand system)
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
header {
    background: #880000;
    color: white;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: top 0.4s ease-in-out;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.logo {
    font-size: 1.6rem;
    font-weight: bold;
    white-space: nowrap;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    margin-left: 0;
    flex-shrink: 0;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: white;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 1rem;
    flex-wrap: nowrap;
    overflow: visible;
    white-space: nowrap;
    justify-content: flex-start;
    margin-left: 0.5rem;
}

.nav-links a {
    display: inline-flex;
    align-items: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    white-space: nowrap;
    position: relative;
    background: none !important;
}

.nav-links a:hover:not(.active) {
    background: rgba(255, 255, 255, 0.2) !important;
    transform: translateY(-2px);
}

.nav-links a::before,
.nav-links a::after {
    content: none !important;
    background: none !important;
}

.nav-links a.active {
    color: #ffd700 !important;
    border: 2px solid #caa035;
    background: transparent !important;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 0 10px rgba(202, 160, 53, 0.6);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    animation: goldPulse 3s infinite ease-in-out;
}

.nav-links a.active:hover {
    background: rgba(202, 160, 53, 0.1) !important;
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(202, 160, 53, 0.8);
}

@keyframes goldPulse {
    0%, 100% {
        box-shadow: 0 0 10px rgba(202, 160, 53, 0.6);
    }
    50% {
        box-shadow: 0 0 20px rgba(202, 160, 53, 0.9);
    }
}

.menu-toggle {
    width: 34px;
    height: 26px;
    background: none;
    border: none;
    color: #ffd700;
    cursor: pointer;
    display: none;
    position: relative;
}

.menu-toggle span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 3px;
    background: #ffd700;
    border-radius: 3px;
    transition: all 0.35s cubic-bezier(0.77, 0, 0.18, 1);
}

.menu-toggle span:nth-child(1) { top: 0; }
.menu-toggle span:nth-child(2) { top: 11px; width: 70%; }
.menu-toggle span:nth-child(3) { bottom: 0; }

.menu-toggle.open span:nth-child(1) {
    transform: rotate(45deg);
    top: 11px;
}

.menu-toggle.open span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.menu-toggle.open span:nth-child(3) {
    transform: rotate(-45deg);
    bottom: 11px;
}

.mobile-nav-header,
.close-menu {
    display: none;
}

.brand span {
    display: none;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   HERO
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.hero {
    height: 72vh;
    min-height: 480px;
    background:
        linear-gradient(180deg, rgba(92, 0, 0, 0.55) 0%, rgba(20, 0, 0, 0.72) 100%),
        url('../Photos/Nearby_attractions/cover.avif') center/cover no-repeat;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
}

/* Subtle radial glow */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 60%, rgba(202, 160, 53, 0.18) 0%, transparent 65%);
    pointer-events: none;
}

/* Curved wave at bottom */
.hero::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 70px;
    background: var(--ivory);
    clip-path: ellipse(65% 100% at 50% 100%);
}

.hero-content {
    text-align: center;
    padding: 0 1.5rem 80px;
    position: relative;
    z-index: 2;
    animation: heroFadeUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes heroFadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(202, 160, 53, 0.2);
    border: 1px solid rgba(202, 160, 53, 0.55);
    color: var(--gold-light);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    padding: 6px 18px;
    border-radius: 50px;
    margin-bottom: 1rem;
}

.hero-content h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.8rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.1;
    text-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
    margin-bottom: 0.7rem;
}

.hero-content p {
    font-size: 1.1rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.82);
    letter-spacing: 0.3px;
    max-width: 520px;
    margin: 0 auto 1.2rem;
}

.breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 0.5rem;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 5px 16px;
    border-radius: 50px;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.78);
    text-decoration: none;
    font-size: 0.85rem;
}

.breadcrumb a:hover {
    color: white;
}

.breadcrumb i {
    color: var(--gold-light);
    font-size: 0.7rem;
}

.breadcrumb span {
    color: var(--gold-light);
    font-size: 0.85rem;
    font-weight: 600;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   MAIN CONTENT WRAPPER
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.main-content {
    background: var(--ivory);
    padding: 3rem 0 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* â”€â”€ Section Label â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.section-label {
    text-align: center;
    margin-bottom: 0.6rem;
}

.section-label span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gold-pale);
    border: 1px solid var(--gold-border);
    color: var(--gold);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    padding: 5px 16px;
    border-radius: 50px;
}

.section-heading {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.6rem;
    font-weight: 700;
    color: var(--crimson);
    text-align: center;
    margin-bottom: 0.6rem;
    letter-spacing: -0.3px;
}

.section-sub {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.97rem;
    font-weight: 300;
    max-width: 520px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   TOUR ROUTES
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.tour-routes {
    background: linear-gradient(135deg, var(--crimson-dark) 0%, var(--crimson) 60%, var(--crimson-mid) 100%);
    border-radius: var(--radius-xl);
    padding: 3rem 2.5rem;
    margin-bottom: 4rem;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

/* Decorative glow blobs */
.tour-routes::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(202, 160, 53, 0.22) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.tour-routes::after {
    content: '';
    position: absolute;
    bottom: -40px;
    left: -40px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.route-info {
    text-align: center;
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 1;
}

.route-info h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--gold-light);
    margin-bottom: 0.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
}

.route-info p {
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.97rem;
    font-weight: 300;
    max-width: 500px;
    margin: 0 auto;
}

.route-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}

.route-card {
    background: rgba(255, 255, 255, 0.09);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--radius-lg);
    padding: 2rem;
    backdrop-filter: blur(12px);
    transition: background 0.3s, transform 0.3s;
}

.route-card:hover {
    background: rgba(255, 255, 255, 0.14);
    transform: translateY(-3px);
}

.route-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--gold-light);
    margin-bottom: 0.6rem;
    padding-bottom: 0.6rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.route-card>p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.route-card>p em {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.82rem;
}

.route-list {
    list-style: none;
    padding: 0;
}

.route-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.route-list li:last-child {
    border-bottom: none;
}

.route-list li i {
    color: var(--gold-light);
    font-size: 0.85rem;
    width: 16px;
    flex-shrink: 0;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   ATTRACTIONS SECTION TITLE
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.attractions-section-header {
    text-align: center;
    margin: 0 0 3rem;
}

.attractions-section-header .section-label {
    margin-bottom: 0.7rem;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   ATTRACTION CARDS GRID
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.attractions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.attraction-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

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

/* Image panel */
.attraction-image {
    height: 230px;
    background-size: cover;
    background-position: center;
    position: relative;
    flex-shrink: 0;
}

/* Gradient overlay on image */
.attraction-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(20, 0, 0, 0.45) 0%, transparent 55%);
}

/* Badge */
.attraction-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 2;
    background: linear-gradient(135deg, var(--crimson), var(--crimson-mid));
    color: white;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
}

/* Distance pill â€” bottom-right of image */
.attraction-distance {
    position: absolute;
    bottom: 12px;
    right: 14px;
    z-index: 2;
    background: rgba(0, 0, 0, 0.55);
    color: var(--gold-light);
    padding: 3px 10px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Card body */
.attraction-content {
    padding: 1.6rem 1.8rem 1.8rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.attraction-content h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--crimson);
    margin-bottom: 0.65rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.attraction-content h3 i {
    font-size: 1rem;
    color: var(--gold);
}

.attraction-content p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.75;
    flex: 1;
    margin-bottom: 1rem;
}

/* Detail chips */
.attraction-details {
    background: var(--ivory-dark);
    border-left: 3px solid var(--gold);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    padding: 0.85rem 1rem;
    font-size: 0.85rem;
    color: var(--text-mid);
    line-height: 1.8;
}

.attraction-details strong {
    color: var(--crimson);
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   IMAGE BACKGROUNDS
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.dwarkadhish {
    background-image: url('../Photos/Nearby_attractions/Dwarka_temple.jpg');
}

.gomti-ghat {
    background-image: url('../Photos/Nearby_attractions/gomti-ghat.jpg');
}

.bhadkeshwar {
    background-image: url('../Photos/Nearby_attractions/bhadkeshwar_temple.jpg');
}

.gayatri {
    background-image: url('../Photos/Nearby_attractions/gayatri_temple.jpg');
}

.sunset-point {
    background-image: url('../Photos/Nearby_attractions/sunset.jpg');
}

.shivrajpur {
    background-image: url('../Photos/Nearby_attractions/shivrajpur.jpg');
}

.nageshwar {
    background-image: url('../Photos/Nearby_attractions/nageshwar.jpg');
}

.gopi-talav {
    background-image: url('../Photos/Nearby_attractions/gopitalav.jpg');
}

.beyt-dwarka {
    background-image: url('../Photos/Nearby_attractions/beyt-dwk.jpg');
}

.rukmani {
    background-image: url('../Photos/Nearby_attractions/rukmani_temple.jpg');
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   TRAVEL INFO STRIP
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.travel-info-wrapper {
    background: linear-gradient(135deg, var(--crimson-dark) 0%, var(--crimson) 50%, var(--gold) 100%);
    border-radius: var(--radius-xl);
    padding: 3.5rem 2.5rem;
    margin: 0 0 0;
    position: relative;
    overflow: hidden;
}

.travel-info-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.travel-info-heading {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.1rem;
    font-weight: 700;
    color: var(--white);
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.travel-info-heading span {
    color: var(--gold-light);
}

.travel-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}

.travel-info-card {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: var(--radius-md);
    padding: 1.8rem 1.6rem;
    backdrop-filter: blur(10px);
    transition: background 0.3s, transform 0.3s;
}

.travel-info-card:hover {
    background: rgba(255, 255, 255, 0.18);
    transform: translateY(-3px);
}

.travel-info-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--gold-light);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    word-break: break-word;
    line-height: 1.4;
}

.travel-info-card h3 i {
    font-size: 1rem;
    flex-shrink: 0;
}

.travel-info-card p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.88rem;
    line-height: 1.8;
    margin-bottom: 0.4rem;
}

.travel-info-card p strong {
    color: var(--gold-light);
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   CHAT BOT
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.chat-container {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 350px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.18);
    z-index: 9998;
    overflow: hidden;
    display: none;
    flex-direction: column;
    max-height: 520px;
    border: 1.5px solid var(--border);
}

.chat-container.show {
    display: flex;
}

.chat-header {
    background: linear-gradient(135deg, var(--crimson), var(--crimson-dark));
    color: white;
    padding: 14px 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-icons {
    display: flex;
    gap: 14px;
}

.contact-icons a {
    color: white;
    font-size: 18px;
    transition: opacity 0.2s;
}

.contact-icons a:hover {
    opacity: 0.8;
}

.chat-header button {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.2s;
}

.chat-header button:hover {
    background: rgba(255, 255, 255, 0.35);
}

.chat-messages {
    flex: 1;
    padding: 18px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
    height: 280px;
    background: #f9f5f0;
}

.bot-message {
    background: white;
    border: 1px solid var(--border);
    padding: 10px 14px;
    border-radius: 4px 16px 16px 16px;
    font-size: 0.88rem;
    color: var(--text-dark);
    max-width: 85%;
    line-height: 1.5;
    box-shadow: var(--shadow-sm);
}

.user-message {
    background: linear-gradient(135deg, var(--crimson), #a00000);
    color: white;
    padding: 10px 14px;
    border-radius: 16px 4px 16px 16px;
    font-size: 0.88rem;
    max-width: 85%;
    align-self: flex-end;
    line-height: 1.5;
}

.chat-input {
    display: flex;
    padding: 12px;
    gap: 8px;
    border-top: 1px solid var(--border);
    background: white;
}

.chat-input input {
    flex: 1;
    padding: 10px 14px;
    border: 1.5px solid var(--border);
    border-radius: 50px;
    font-size: 0.88rem;
    font-family: 'Jost', sans-serif;
    outline: none;
    transition: border-color 0.2s;
}

.chat-input input:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(202, 160, 53, 0.15);
}

.chat-input button {
    background: var(--crimson);
    color: white;
    border: none;
    padding: 10px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
}

.chat-input button:hover {
    background: var(--crimson-dark);
    transform: scale(1.04);
}

.chat-toggle {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: linear-gradient(135deg, var(--gold), #ffd700);
    color: var(--crimson);
    border: none;
    border-radius: 50%;
    width: 62px;
    height: 62px;
    font-size: 24px;
    cursor: pointer;
    z-index: 10000;
    box-shadow: 0 8px 28px rgba(202, 160, 53, 0.45);
    transition: transform 0.3s, box-shadow 0.3s;
}

.chat-toggle:hover {
    transform: scale(1.1) rotate(8deg);
    box-shadow: 0 12px 35px rgba(202, 160, 53, 0.6);
}
ser-message {
    background: linear-gradient(135deg, var(--crimson), var(--crimson-mid));
    color: white;
    padding: 12px 16px;
    border-radius: 16px 4px 16px 16px;
    font-size: 0.87rem;
    max-width: 80%;
    align-self: flex-end;
    line-height: 1.55;
    animation: messageFade 0.3s ease;
}

@keyframes messageFade {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.chat-input {
    display: flex;
    padding: 12px;
    gap: 8px;
    background: white;
    border-top: 1px solid var(--border);
}

.chat-input input {
    flex: 1;
    padding: 10px 14px;
    border: 1.5px solid var(--border);
    border-radius: 50px;
    font-size: 0.88rem;
    font-family: 'Jost', sans-serif;
    outline: none;
    transition: border-color 0.2s;
}

.chat-input input:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(202, 160, 53, 0.15);
}

.chat-input button {
    margin-left: 2px;
    background: var(--crimson);
    color: white;
    border: none;
    padding: 10px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
}

.chat-input button:hover {
    background: var(--crimson-dark);
    transform: scale(1.04);
}

.chat-toggle {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--crimson);
    border: none;
    border-radius: 50%;
    width: 62px;
    height: 62px;
    font-size: 24px;
    cursor: pointer;
    z-index: 100000;
    box-shadow: 0 8px 28px rgba(202, 160, 53, 0.5);
    transition: transform 0.3s, box-shadow 0.3s;
}

.chat-toggle:hover {
    transform: scale(1.1) rotate(8deg);
    box-shadow: 0 14px 38px rgba(202, 160, 53, 0.65);
}

/* â”€â”€ Back to Top â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.back-to-top {
    position: fixed;
    left: 30px;
    top: -80px;
    width: 46px;
    height: 46px;
    background: var(--white);
    border: 2px solid var(--gold);
    color: var(--crimson);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    text-decoration: none;
    z-index: 999;
    transition: top 1.5s cubic-bezier(0.22, 1, 0.36, 1), background 0.2s, color 0.2s;
    box-shadow: var(--shadow-sm);
}

.back-to-top.show {
    top: calc(100vh - 80px);
}

.back-to-top:hover {
    background: var(--crimson);
    color: white;
    border-color: var(--crimson);
}

/* ═══════════════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════════════════ */
footer {
    background: #880000;
    color: white;
    padding: 5rem 0 0;
    position: relative;
    z-index: 5;
    margin-top: 4rem;
}

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

.footer-section h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold-light);
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 35px;
    height: 2px;
    background: var(--gold);
}

.footer-section p {
    font-size: 0.92rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-section p svg {
    color: var(--gold-light);
    flex-shrink: 0;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.footer-section ul li a:hover {
    color: var(--gold-light);
    transform: translateX(5px);
}

.footer-section .social-links {
    display: flex;
    gap: 1.2rem;
    margin-top: 1.5rem;
}

.footer-section .social-links a {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.footer-section .social-links a:hover {
    background: var(--gold);
    color: var(--crimson-dark);
    transform: translateY(-5px) rotate(8deg);
    border-color: var(--gold);
    box-shadow: 0 5px 15px rgba(202, 160, 53, 0.4);
}

/* ═════════ FOOTER BOTTOM ═════════ */
.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 2.5rem 1rem;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-tagline {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-style: italic;
    color: #ffd7a0;
    margin-bottom: 0.8rem;
    letter-spacing: 0.5px;
}

.footer-text {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
}

.footer-text span {
    color: white;
    font-weight: 600;
}

.footer-text a {
    color: var(--gold-light);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    padding-bottom: 2px;
}

.footer-text a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold-light);
    transition: width 0.3s ease;
}

.footer-text a:hover::after {
    width: 100%;
}

.footer-text i {
    color: #ff4d4d;
    margin: 0 4px;
    filter: drop-shadow(0 0 2px rgba(255, 77, 77, 0.4));
}

/* ═══════════════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .mobile-nav-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

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

    .brand img {
        height: 48px;
        border-radius: 50%;
    }

    .brand span {
        display: inline-block;
        font-size: 1.4rem;
        font-weight: 600;
        color: #fff;
        letter-spacing: 0.5px;
    }

    nav {
        padding: 0 1rem;
        justify-content: space-between;
    }

    .logo {
        margin-left: 0;
        font-size: 1.4rem;
        flex-shrink: 0;
    }

    .logo img {
        height: 35px;
        margin-right: 8px;
    }

    .nav-links {
        gap: 0.1rem;
        overflow-x: auto !important;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding: 0 0.5rem;
    }

    .nav-links::-webkit-scrollbar {
        display: none;
    }

    .nav-links a {
        padding: 0.4rem 0.8rem;
        font-size: 0.85rem;
        flex-shrink: 0;
    }
}

@media (max-width: 992px) {
    .chat-container {
        width: 320px;
        right: 20px;
        bottom: 95px;
        max-height: 480px;
    }

    .chat-messages {
        height: 260px;
    }

    .chat-toggle {
        width: 60px;
        height: 60px;
        font-size: 22px;
        bottom: 20px;
        right: 20px;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
        z-index: 1101;
    }

    body.menu-open {
        overflow: hidden;
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: -120%;
        width: 100vw;
        height: 100vh;
        background: linear-gradient(160deg, #8b0000, #5c0000);
        flex-direction: column;
        padding: 2.5rem 2rem;
        transition: left 0.45s cubic-bezier(0.77, 0, 0.18, 1);
        z-index: 1050;
        overflow-y: auto;
        gap: 0;
    }

    .nav-links.active {
        left: 0;
    }

    .mobile-nav-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 3rem;
    }

    .mobile-nav-header img {
        height: 50px;
        border-radius: 50%;
    }

    .close-menu {
        display: none;
    }

    .nav-links li {
        list-style: none;
        margin-bottom: 1.4rem;
        opacity: 0;
        transform: translateX(-30px);
        animation: slideFade 0.5s ease forwards;
        margin-top: -5px;
    }

    .nav-links.active li:nth-child(2) {
        animation-delay: 0.10s;
    }

    .nav-links.active li:nth-child(3) {
        animation-delay: 0.15s;
    }

    .nav-links.active li:nth-child(4) {
        animation-delay: 0.20s;
    }

    .nav-links.active li:nth-child(5) {
        animation-delay: 0.25s;
    }

    .nav-links.active li:nth-child(6) {
        animation-delay: 0.30s;
    }

    .nav-links.active li:nth-child(7) {
        animation-delay: 0.35s;
    }

    .nav-links.active li:nth-child(8) {
        animation-delay: 0.40s;
    }

    .nav-links.active li:nth-child(9) {
        animation-delay: 0.45s;
    }

    @keyframes slideFade {
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    .nav-links a {
        font-size: 1.25rem;
        color: #fff;
        font-weight: 500;
        letter-spacing: 0.5px;
        display: inline-block;
        position: relative;
        padding: 0.4rem 0;
        background: none !important;
    }

    .nav-links a::after {
        content: "";
        position: absolute;
        bottom: -4px;
        left: 0;
        width: 0%;
        height: 2px;
        background: gold;
        transition: width 0.3s ease;
    }

    .nav-links a:hover::after {
        width: 100%;
    }

    /* Hero */
    .hero {
        height: 62vh;
        min-height: 400px;
    }

    .hero-content h1 {
        font-size: 2.4rem;
    }

    .hero-content p {
        font-size: 0.97rem;
        padding: 0 1rem;
    }

    .hero-content {
        padding-bottom: 70px;
    }

    /* Content */
    .container {
        padding: 0 1.2rem;
    }

    .tour-routes {
        padding: 2rem 1.5rem;
        border-radius: var(--radius-lg);
    }

    .route-cards {
        grid-template-columns: 1fr;
    }

    .attractions-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .attraction-image {
        height: 210px;
    }

    .attraction-content {
        padding: 1.3rem 1.5rem 1.5rem;
    }

    .section-heading {
        font-size: 2rem;
    }

    /* Travel info */
    .travel-info-wrapper {
        padding: 2.5rem 1.5rem;
        border-radius: var(--radius-lg);
    }

    .travel-info-grid {
        grid-template-columns: 1fr;
    }

    /* Chat */
    .chat-container {
        width: 94%;
        right: 3%;
        bottom: 85px;
        max-height: 80vh;
        border-radius: 18px;
    }

    .chat-messages {
        height: 55vh;
        font-size: 14px;
    }

    .chat-toggle {
        width: 55px;
        height: 55px;
        font-size: 20px;
        bottom: 18px;
        right: 18px;
    }
}

@media (max-width: 600px) {
    #preloader img {
        width: 100px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .back-to-top {
        left: 15px;
    }

    .attractions-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 500px) {
    .attraction-image {
        height: 180px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.7rem;
    }

    .hero {
        height: 56vh;
        min-height: 340px;
    }

    .hero-content {
        padding-bottom: 60px;
    }

    .chat-container {
        width: 96%;
        right: 2%;
        bottom: 75px;
        max-height: 85vh;
        border-radius: 16px;
    }

    .chat-messages {
        height: 58vh;
        font-size: 13px;
    }

    .bot-message,
    .user-message {
        font-size: 13px;
        max-width: 92%;
    }

    .chat-input input {
        padding: 9px 12px;
        font-size: 13px;
    }

    .chat-input button {
        padding: 9px 14px;
        font-size: 13px;
    }

    .chat-toggle {
        width: 50px;
        height: 50px;
        font-size: 18px;
        bottom: 15px;
        right: 15px;
    }

    .back-to-top {
        left: 15px;
    }
}
