/* style.css - Ceylon Blue Range Tours Modern Styling System */

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

/* --- Theme System (Variables) --- */
:root {
    /* Day (Sun) Theme - Warm tropical */
    --bg-main: #f8fafc;
    --bg-card: #ffffff;
    --bg-nav: rgba(255, 255, 255, 0.85);
    --text-main: #0f172a;
    --text-muted: #475569;
    --primary: #0284c7; /* Sky blue */
    --primary-hover: #0369a1;
    --secondary: #eab308; /* Sun yellow */
    --accent: #e2e8f0;
    --shadow: 0 10px 30px -10px rgba(2, 132, 199, 0.1);
    --glow: 0 0 20px rgba(2, 132, 199, 0.2);
    --glass-bg: rgba(255, 255, 255, 0.6);
    --glass-border: rgba(255, 255, 255, 0.4);
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --font-sans: 'Inter', 'Outfit', sans-serif;
    --font-serif: 'Playfair Display', serif;
}

[data-theme="night"] {
    /* Night (Moon) Theme - Starry ocean */
    --bg-main: #090e1a;
    --bg-card: #131b2e;
    --bg-nav: rgba(9, 14, 26, 0.85);
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --primary: #38bdf8; /* Lighter sky blue for contrast */
    --primary-hover: #0ea5e9;
    --secondary: #a855f7; /* Magical purple/moon glow */
    --accent: #1e293b;
    --shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
    --glow: 0 0 25px rgba(56, 189, 248, 0.25);
    --glass-bg: rgba(19, 27, 46, 0.6);
    --glass-border: rgba(255, 255, 255, 0.07);
}

/* --- Base Resets --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    background-color: var(--bg-main);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    transition: var(--transition);
}

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

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

ul {
    list-style: none;
}

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

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

.section {
    padding: 100px 0;
    position: relative;
}

.section-title {
    font-family: var(--font-serif);
    font-size: 2.8rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 12px;
    background: linear-gradient(135deg, var(--text-main) 30%, var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-subtitle {
    font-size: 1.1rem;
    text-align: center;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 60px auto;
}

/* --- Header & Navigation --- */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--bg-nav);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--glass-border);
    transition: var(--transition);
}

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

.logo-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    /* Ensure logo is centered on mobile when title removed */
    justify-content: flex-start;
}

.logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
    transition: var(--transition);
}

.logo-img:hover {
    transform: rotate(-5deg) scale(1.05);
}

.brand {
    font-family: var(--font-sans);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: var(--primary);
}

nav ul {
    display: flex;
    align-items: center;
    gap: 32px;
}

nav a {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-muted);
    position: relative;
    padding: 8px 0;
}

nav a:hover, nav a.active {
    color: var(--text-main);
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

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

/* --- Control Buttons (Theme & Lang) --- */
.controls-group {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Theme Toggle button */
.theme-toggle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    overflow: hidden;
    position: relative;
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.theme-toggle:hover {
    transform: scale(1.08);
}

.theme-toggle svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
    position: absolute;
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s;
}

.sun-icon {
    opacity: 1;
    transform: translateY(0) rotate(0deg);
}

.moon-icon {
    opacity: 0;
    transform: translateY(30px) rotate(90deg);
}

[data-theme="night"] .sun-icon {
    opacity: 0;
    transform: translateY(-30px) rotate(-90deg);
}

[data-theme="night"] .moon-icon {
    opacity: 1;
    transform: translateY(0) rotate(0deg);
    color: var(--primary);
}

/* Language Dropdown Selector */
.lang-selector {
    position: relative;
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    border-radius: 20px;
    background: var(--accent);
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    border: 1px solid var(--glass-border);
    transition: var(--transition);
}

.lang-btn:hover {
    background: var(--primary);
    color: #fff;
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    box-shadow: var(--shadow);
    padding: 8px;
    display: none;
    flex-direction: column;
    min-width: 120px;
    z-index: 100;
}

.lang-dropdown.show {
    display: flex;
    animation: slideDown 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.lang-opt {
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 0.9rem;
    text-align: left;
    cursor: pointer;
    transition: var(--transition);
}

.lang-opt:hover {
    background: var(--accent);
    color: var(--primary);
}

/* Burger Menu for mobile */
.burger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.burger div {
    width: 25px;
    height: 3px;
    background: var(--text-main);
    border-radius: 3px;
    transition: var(--transition);
}

/* --- Hero Section with Side Video Box --- */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    width: 100%;
    display: flex;
    align-items: center;
    overflow: hidden;
    z-index: 1;
}

.hero-flex-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    width: 100%;
    z-index: 3;
    margin-top: 80px;
}

.hero-text {
    flex: 1.2;
    color: #ffffff;
}

.hero-text h1 {
    font-family: var(--font-serif);
    font-size: 3.6rem;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 24px;
    text-shadow: 0 4px 12px rgba(0,0,0,0.4);
    animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-text p {
    font-size: 1.25rem;
    margin-bottom: 40px;
    color: rgba(255,255,255,0.95);
    max-width: 600px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.4);
    animation: fadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-video-container {
    flex: 0.8;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-video-box {
    width: 100%;
    max-width: 440px;
    aspect-ratio: 16/9;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    border: 3px solid rgba(255,255,255,0.15);
    transform: rotate(1deg);
    transition: var(--transition);
    animation: floatPulse 6s ease-in-out infinite;
}

.hero-video-box:hover {
    transform: rotate(0deg) scale(1.05);
    border-color: var(--primary);
    box-shadow: var(--glow);
}

@keyframes floatPulse {
  0% { transform: rotate(1deg) translateY(0); }
  50% { transform: rotate(1deg) translateY(-5px); }
  100% { transform: rotate(1deg) translateY(0); }
}
@keyframes floatSmall {
  0% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
  100% { transform: translateY(0); }
}
    0% { transform: rotate(1deg) translateY(0); }
    50% { transform: rotate(1deg) translateY(-5px); }
    100% { transform: rotate(1deg) translateY(0); }
}

.btn-container {
    display: flex;
    gap: 16px;
    animation: fadeInUp 1.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: var(--shadow);
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-hover));
    color: #ffffff;
    border: none;
    position: relative;
    overflow: hidden;
}

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

.btn-primary:hover::after {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--glow);
}

.btn-secondary {
    background: var(--glass-bg);
    color: var(--text-main);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(8px);
}

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

/* --- Floating/Interactive Promotion Banner --- */
.promo-banner {
    background: linear-gradient(135deg, #0f172a, #1e3a8a);
    color: #ffffff;
    border-radius: 24px;
    padding: 40px;
    margin-top: -80px;
    position: relative;
    z-index: 10;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    overflow: hidden;
}

.promo-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: rgba(56, 189, 248, 0.15);
    border-radius: 50%;
    filter: blur(50px);
}

.promo-info {
    max-width: 60%;
}

.promo-badge {
    display: inline-block;
    background: var(--secondary);
    color: #0f172a;
    font-weight: 800;
    font-size: 0.85rem;
    padding: 6px 14px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
    box-shadow: 0 4px 10px rgba(234, 179, 8, 0.3);
    animation: pulse 2s infinite;
}

.promo-info h2 {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    margin-bottom: 12px;
    font-weight: 700;
}

.promo-info p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.05rem;
}

.promo-clock {
    display: flex;
    gap: 16px;
}

.clock-item {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    padding: 16px;
    text-align: center;
    min-width: 80px;
}

.clock-val {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--secondary);
    display: block;
}

.clock-lbl {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.7;
}

/* --- About Section --- */
.about-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.about-text h3 {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.about-text p {
    color: var(--text-muted);
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.stat-card {
    background: var(--bg-card);
    padding: 24px 16px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow);
}

.stat-num {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary);
    display: block;
    margin-bottom: 4px;
}

.stat-lbl {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 600;
}

/* About Us Logo - static without box or rotation */
.about-image {
    position: relative;
}

.about-image img {
    border-radius: 24px;
    box-shadow: var(--shadow);
    /* No rotation */
    transition: var(--transition);
}

/* Remove hover effect */
.about-image img:hover {
    /* No transformation */
}

/* Remove decorative pseudo-element */
.about-image::before {
    display: none;
}

.about-image:hover::before {
    display: none;
}

/* --- Tour Packages Section --- */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
}

.package-card {
    background: var(--bg-card);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
}

.package-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px -15px rgba(2, 132, 199, 0.2);
    border-color: var(--primary);
}

.package-img-container {
    position: relative;
    height: 240px;
    overflow: hidden;
}

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

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

.package-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(9, 14, 26, 0.75);
    color: #ffffff;
    backdrop-filter: blur(8px);
    padding: 6px 14px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.8rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.discount-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #ef4444;
    color: #ffffff;
    padding: 6px 12px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.85rem;
    box-shadow: 0 4px 10px rgba(239, 68, 68, 0.3);
}

.package-content {
    padding: 28px;
}

.package-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 12px;
}

.package-title {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.package-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 24px;
    height: 72px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

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

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

.original-price {
    font-size: 0.85rem;
    text-decoration: line-through;
    color: var(--text-muted);
}

.current-price {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--text-main);
}

.current-price span {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-muted);
}

/* --- Sample Itineraries Section --- */
.itineraries {
    background: var(--accent);
    transition: var(--transition);
}

.itinerary-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.itinerary-card {
    background: var(--bg-card);
    border-radius: 24px;
    padding: 40px;
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.itinerary-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.itinerary-day-badge {
    background: var(--primary);
    color: #ffffff;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 12px;
    font-size: 0.95rem;
}

.itinerary-title {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 700;
}

.itinerary-timeline {
    border-left: 2px dashed var(--primary);
    padding-left: 24px;
    margin: 24px 0 32px 10px;
}

.timeline-item {
    position: relative;
    margin-bottom: 20px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -31px;
    top: 6px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 3px solid var(--primary);
}

.timeline-day {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
}

.timeline-title {
    font-weight: 700;
    font-size: 1.05rem;
    margin-bottom: 4px;
}

.timeline-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.download-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 1px solid var(--accent);
}

.download-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 700;
}

.download-link:hover {
    color: var(--primary-hover);
    transform: translateX(4px);
}

/* --- Sri Lanka Study Info --- */
.srilanka-info {
    margin-top: 60px;
    background: var(--bg-card);
    border-radius: 24px;
    padding: 40px;
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 40px;
}

.info-content {
    flex: 1;
}

.info-content h3 {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    margin-bottom: 12px;
}

.info-content p {
    color: var(--text-muted);
    margin-bottom: 24px;
}

/* --- Interactive Map Page / Routing Section --- */
.map-layout {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 24px;
    height: 600px;
    background: var(--bg-card);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--glass-border);
}

.map-sidebar {
    padding: 24px;
    overflow-y: auto;
    border-right: 1px solid var(--accent);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sidebar-title {
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 8px;
}

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

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
}

.map-select {
    width: 100%;
    padding: 12px;
    border-radius: 12px;
    background: var(--accent);
    border: 1px solid var(--glass-border);
    font-size: 0.95rem;
    cursor: pointer;
}

.map-metrics {
    background: var(--accent);
    border-radius: 16px;
    padding: 16px;
    display: none;
    flex-direction: column;
    gap: 12px;
}

.metric-item {
    display: flex;
    justify-content: space-between;
    font-weight: 600;
    font-size: 0.95rem;
}

.metric-val {
    color: var(--primary);
    font-weight: 800;
}

#map {
    width: 100%;
    height: 100%;
    z-index: 5;
}

.directions-list {
    margin-top: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.directions-list li {
    padding-bottom: 8px;
    border-bottom: 1px solid var(--accent);
}

/* --- Inquiry / Appointment Section --- */
.inquiry-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
    align-items: flex-start;
}

.inquiry-info {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.inquiry-info h3 {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    font-weight: 700;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.3rem;
}

.inquiry-form {
    background: var(--bg-card);
    border-radius: 24px;
    padding: 40px;
    box-shadow: var(--shadow);
    border: 1px solid var(--glass-border);
}

.input-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.input-field {
    width: 100%;
    padding: 14px;
    border-radius: 12px;
    background: var(--accent);
    border: 1px solid var(--glass-border);
    font-size: 0.95rem;
    transition: var(--transition);
}

.input-field:focus {
    border-color: var(--primary);
    background: var(--bg-card);
    box-shadow: 0 0 10px rgba(2, 132, 199, 0.1);
}

textarea.input-field {
    resize: none;
    height: 120px;
}

/* --- Customer Reviews Section --- */
.reviews-section {
    background: var(--bg-card);
    position: relative;
    overflow: hidden;
}

.reviews-slider {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    padding: 20px 0 40px 0;
    scroll-snap-type: x mandatory;
    scrollbar-width: none; /* Firefox */
}

.reviews-slider::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

.review-card {
    flex: 0 0 calc(33.333% - 16px);
    scroll-snap-align: start;
    background: var(--bg-main);
    border-radius: 20px;
    padding: 32px;
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition);
}

.review-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.review-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary);
}

.review-author {
    font-weight: 700;
    font-size: 1.05rem;
}

.review-stars {
    color: #f5a623;
    font-size: 0.9rem;
    margin-top: 4px;
}

.review-text {
    font-style: italic;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.review-date {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary);
}

.google-review-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
    font-weight: 600;
}

/* --- Footer Section --- */
footer {
    background: #090e1a;
    color: #ffffff;
    padding: 80px 0 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

.footer-col h3 {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    margin-bottom: 24px;
    color: #ffffff;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 24px;
    font-size: 0.95rem;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.social-icon img {
    width: 18px;
    height: 18px;
    filter: invert(1);
}

.social-icon:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

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

.footer-col a {
    color: rgba(255, 255, 255, 0.7);
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
}

/* --- Scroll Animations & Transitions --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 4px 15px rgba(234, 179, 8, 0.5);
    }
    100% {
        transform: scale(1);
    }
}

/* --- Responsive Adjustments --- */
@media (max-width: 1024px) {
    .about-grid, .inquiry-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
    .hero-content h1 {
        font-size: 3rem;
    }
    .promo-banner {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
        margin-top: -40px;
    }
    .promo-info {
        max-width: 100%;
    }
    .review-card {
        flex: 0 0 calc(50% - 12px);
    }
    .map-layout {
        grid-template-columns: 1fr;
        height: auto;
    }
    .map-sidebar {
        border-right: none;
        border-bottom: 1px solid var(--accent);
        height: 350px;
    }
    #map {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .burger {
        display: flex;
        z-index: 1001;
    }
    
    /* Toggle burger lines */
    .burger.toggle .line1 {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    .burger.toggle .line2 {
        opacity: 0;
    }
    .burger.toggle .line3 {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    nav {
        position: fixed;
        right: 0;
        top: 0;
        height: 100vh;
        width: 70%;
        background: var(--bg-card);
        border-left: 1px solid var(--glass-border);
        box-shadow: var(--shadow);
        display: flex;
        justify-content: center;
        align-items: center;
        transform: translateX(100%);
        transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
        z-index: 999;
    }

    nav.active {
        transform: translateX(0);
    }

    nav ul {
        flex-direction: column;
        gap: 40px;
        align-items: center;
    }

    .hero-text h1 {
        font-size: 2.2rem;
    }
    .hero-text p {
        font-size: 1.1rem;
    }
    .itinerary-grid {
        grid-template-columns: 1fr;
    }
    .review-card {
        flex: 0 0 100%;
    }
    .input-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .input-row .input-field {
        margin-bottom: 20px;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

/* --- Floating animated background particles --- */
.particles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}

.particle {
    position: absolute;
    background: var(--primary);
    border-radius: 50%;
    opacity: 0;
    pointer-events: none;
    animation: floatUp 15s infinite linear;
}

@keyframes floatUp {
    0% {
        transform: translateY(105vh) translateX(0) scale(0.8);
        opacity: 0;
    }
    10% {
        opacity: 0.25;
    }
    90% {
        opacity: 0.25;
    }
    100% {
        transform: translateY(-10vh) translateX(80px) scale(1.4);
        opacity: 0;
    }
}

/* --- Multi-stop Route Planner Styles --- */
.stops-list-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 8px;
    max-height: 250px;
    overflow-y: auto;
    padding-right: 4px;
}

.stop-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--accent);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    padding: 8px 12px;
    font-size: 0.85rem;
    font-weight: 500;
    transition: var(--transition);
}

.stop-item:hover {
    border-color: var(--primary);
}

.stop-text {
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 80%;
}

.stop-remove-btn {
    color: var(--danger);
    cursor: pointer;
    font-weight: 700;
    font-size: 0.95rem;
    background: none;
    border: none;
}

.stop-remove-btn:hover {
    color: #b91c1c;
}

.search-results-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-top: none;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    box-shadow: var(--shadow);
    z-index: 120;
    max-height: 200px;
    overflow-y: auto;
    display: none;
}

.search-result-item {
    padding: 10px 12px;
    font-size: 0.85rem;
    cursor: pointer;
    border-bottom: 1px solid var(--accent);
    transition: var(--transition);
}

.search-result-item:last-child {
    border-bottom: none;
}

.search-result-item:hover {
    background: var(--accent);
    color: var(--primary);
}

/* --- Company Header Styling --- */
.company-header {
    width: 100%;
    text-align: center;
    margin: 120px 0 40px 0; /* space below navigation */
    padding: 0 24px;
}
.company-title {
    font-family: var(--font-sans);
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--text-main);
    letter-spacing: -0.5px;
}

/* --- Video Visibility Adjustments --- */
.desktop-video { display: block; }
.mobile-video { display: none; }

@media (max-width: 768px) {
    /* Hide desktop video, show mobile video */
    .desktop-video { display: none !important; }
    .mobile-video { display: block !important; margin-top: 20px; }
    /* Adjust hero layout for mobile */
    .hero-flex-container {
        flex-direction: column;
        align-items: stretch;
    }
    .hero-text {
        text-align: center;
    }
    .hero-video-container {
        order: 2;
    }
    .company-header {
        margin-top: 100px;
    }
    .hero {
        min-height: auto;
    }
}

@media (min-width: 769px) {
    .mobile-video { display: none !important; }
    .desktop-video { display: block !important; }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-flex-container {
        flex-direction: column;
        align-items: center;
    }
    .hero-video-container {
        display: none !important;
    }
    .mobile-hide {
        display: none !important;
    }
    .desktop-video {
        display: block !important;
    }
    .company-header {
        margin-top: 60px;
    }
}
