@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700&family=Syne:wght@500;600;700&display=swap');

/* ============================================
   Sri Lanka Douglas Tours - Modern Professional Stylesheet
   ============================================ */

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Modern Professional Color Palette */
    --primary-color: #1e3a8a;       /* Deep indigo blue */
    --primary-light: #3b82f6;       /* Bright blue */
    --primary-dark: #0f172a;        /* Midnight navy */
    --secondary-color: #06b6d4;     /* Cyan teal */
    --secondary-light: #22d3ee;     /* Light cyan */
    --accent-color: #f97316;        /* Modern orange */
    --accent-soft: #fca5a5;         /* Soft rose */
    --success-color: #10b981;       /* Emerald green */
    --warning-color: #f59e0b;       /* Amber */
    
    /* Text Colors (dark theme) */
    --text-dark: #f1f5f9;           /* Snow */
    --text-primary: #e2e8f0;        /* Light slate */
    --text-light: #cbd5f5;          /* Soft periwinkle */
    --text-muted: #94a3b8;          /* Slate light */
    
    /* Background Colors (dark theme) */
    --bg-light: #0b1220;            /* Deep blue */
    --bg-lighter: #0f172a;          /* Midnight navy */
    --white: #111827;               /* Deep surface */
    
    /* Borders & Shadows */
    --border-color: #1f2937;        /* Night border */
    --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.35);
    --shadow-md: 0 12px 24px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 20px 48px rgba(0, 0, 0, 0.45);
    --shadow-xl: 0 25px 60px rgba(0, 0, 0, 0.5);
    
    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.15s ease;
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Spacing & Radius */
    --border-radius: 12px;
    --border-radius-lg: 16px;
    --border-radius-xl: 24px;
    --border-radius-full: 999px;

    /* Typography */
    --font-body: 'Manrope', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --font-display: 'Syne', 'Manrope', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --text-size-base: 16.5px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body) !important;
    line-height: 1.7;
    color: var(--text-primary) !important;
    overflow-x: hidden;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-lighter) 100%);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: var(--text-size-base) !important;
}

h1, h2, h3, h4, h5, h6 {
    line-height: 1.2;
    color: var(--text-dark) !important;
    font-weight: 700;
    margin-bottom: 1rem;
    font-family: var(--font-display) !important;
}

p {
    color: var(--text-light) !important;
    margin-bottom: 1rem;
}

/* ============ CARDS & COMPONENTS ============ */
.card {
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    background: var(--white);
    height: 100%;
    overflow: hidden;
}

.card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-8px);
    border-color: var(--primary-light);
}

.card-body {
    padding: 1.75rem;
}

.card-title {
    color: var(--text-dark);
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.card-text {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Badge & Pill Styles */
.badge {
    padding: 0.5rem 0.75rem;
    border-radius: var(--border-radius-full);
    font-weight: 600;
    font-size: 0.8rem;
}

.badge-primary {
    background: rgba(30, 58, 138, 0.1);
    color: var(--primary-color);
}

.badge-secondary {
    background: rgba(6, 182, 212, 0.1);
    color: var(--secondary-color);
}

/* ============ FORMS ============ */
.form-control,
.form-select {
    border-radius: var(--border-radius);
    border: 1.5px solid var(--border-color);
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    transition: var(--transition-fast);
    background-color: var(--white);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-light);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
    background-color: var(--white);
}

.form-label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.form-text {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.input-group .form-control {
    border-right: none;
}

.input-group .input-group-text {
    background: var(--bg-light);
    border: 1.5px solid var(--border-color);
    border-left: none;
    color: var(--text-light);
}

/* ============ HERO SECTIONS ============ */
.hero-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 50%, var(--accent-color) 100%);
    background-size: 400% 400%;
    animation: gradient 15s ease infinite;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(34, 211, 238, 0.2) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(249, 115, 22, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    padding: 3rem 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.hero-title {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    text-shadow: 0 10px 30px rgba(15, 23, 42, 0.3);
    line-height: 1.1;
}

.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    font-weight: 300;
    margin-bottom: 2rem;
    opacity: 0.95;
    letter-spacing: 0.5px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.page-hero {
    position: relative;
    min-height: 400px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: white;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: move 20s linear infinite;
}

.page-hero h1 {
    color: white;
    position: relative;
    z-index: 2;
    font-size: clamp(2rem, 6vw, 3.5rem);
}

.page-hero p {
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    z-index: 2;
    font-size: clamp(1rem, 2vw, 1.25rem);
}

/* ============ SECTIONS ============ */
.section {
    padding: 5rem 0;
    position: relative;
}

.section-sm {
    padding: 3rem 0;
}

.section-color {
    background-color: var(--bg-light);
}

.section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.section-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--text-light);
    margin-bottom: 3rem;
    max-width: 600px;
    line-height: 1.8;
}

.divider {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-light), var(--secondary-color));
    border-radius: 999px;
    margin-bottom: 1rem;
}

/* ============ FEATURES & BENEFITS ============ */
.feature {
    text-align: center;
    padding: 2rem;
}

.feature-icon {
    width: 70px;
    height: 70px;
    border-radius: var(--border-radius-lg);
    background: linear-gradient(135deg, var(--primary-light), var(--secondary-light));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
    color: white;
    transition: var(--transition);
}

.feature:hover .feature-icon {
    transform: scale(1.12) rotate(5deg);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.35);
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.feature-text {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ============ NAVIGATION ============ */
.navbar {
    background: var(--white);
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.06);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
    transition: var(--transition-fast);
    border-bottom: 1px solid var(--border-color);
}

.navbar.scrolled {
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.1);
    padding: 0.75rem 0;
}

.navbar .navbar-brand {
    font-weight: 700;
    color: #ffffff;
    font-size: 1.35rem;
    transition: var(--transition-fast);
}

.navbar .navbar-brand:hover {
    color: var(--primary-light);
}

.logo {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-main {
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: var(--primary-dark);
}

.logo-sub {
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-top: 0.25rem;
}

.navbar-nav {
    align-items: center;
    gap: 0.5rem;
}

.navbar-nav .nav-link {
    font-weight: 500;
    color: var(--text-light);
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
    transition: var(--transition-fast);
    position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-light);
    background: rgba(59, 130, 246, 0.08);
}
/* Mobile only: make Bootstrap menu icon white */
@media (max-width: 992px) {
.navbar-toggler {
--bs-navbar-toggler-icon-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255,255,255,1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
}

.navbar-toggler:focus {
  box-shadow: none;
  border-color: transparent;
}
/* ============ GENERAL COMPONENTS ============ */
.container {
    max-width: 1200px;
}

a {
    color: var(--primary-light);
    transition: var(--transition-fast);
    text-decoration: none;
}

a:hover {
    color: var(--primary-color);
}

/* Buttons */
.btn {
    font-weight: 600;
    border-radius: var(--border-radius-full);
    padding: 0.65rem 1.75rem;
    transition: var(--transition-fast);
    border: none;
    font-size: 0.95rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    box-shadow: 0 4px 15px rgba(30, 58, 138, 0.25);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(30, 58, 138, 0.35);
    color: white;
}

.btn-outline-primary {
    color: var(--primary-light);
    border-color: var(--primary-light);
}

.btn-outline-primary:hover {
    background: var(--primary-light);
    border-color: var(--primary-light);
    color: white;
}

.btn-secondary {
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-light));
    color: white;
    box-shadow: 0 4px 15px rgba(6, 182, 212, 0.25);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(6, 182, 212, 0.35);
    color: white;
}

.btn-accent {
    background: linear-gradient(135deg, var(--accent-color), #fb923c);
    color: white;
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.25);
}

.btn-accent:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.35);
    color: white;
}

.btn-lg {
    padding: 0.85rem 2.5rem;
    font-size: 1.05rem;
}

.btn-sm {
    padding: 0.5rem 1.25rem;
    font-size: 0.9rem;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    transition: all 0.3s;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)),
                url('../images/sigiriya.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(15, 108, 156, 0.3), rgba(244, 163, 64, 0.2));
    animation: pulse 4s ease-in-out infinite;
}

.hero-content h1 {
    font-size: 5rem;
    font-family: 'Georgia', 'Times New Roman', serif;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.5), 
                 0 0 30px rgba(255, 255, 255, 0.1);
    color: var(--white);
    animation: fadeInUp 1s 0.1s both;
    line-height: 1.2;
}

/* Featured Packages Section (no background image now, use normal section styling) */
.featured-packages-section {
    /* Keep same spacing as other sections; explicit background for clarity */
    background-color: var(--bg-light);
}

.hero-tagline {
    font-size: 2.3rem;
    font-family: "Georgia", "Times New Roman", serif;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 2rem;
    animation: fadeInUp 1s 0.1s both;
}

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s;
    animation: fadeInUp 1s 0.4s both;
}

.btn:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Section Styles */
.section {
    padding: 5rem 2rem;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

/* Introduction Section */
.intro {
    background-color: var(--bg-light);
}

/* Welcome Box */
.welcome-box {
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white);
    border-radius: 15px;
    margin-bottom: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.welcome-title {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.welcome-greeting {
    font-size: 3rem;
    font-weight: bold;
    margin: 1rem 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.welcome-meaning {
    font-size: 1.2rem;
    font-style: italic;
    opacity: 0.95;
}

/* Intro Text */
.intro-text {
    max-width: 900px;
    margin: 0 auto 3rem;
    text-align: center;
}

.intro-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.intro-text strong {
    color: var(--primary-color);
    font-weight: 600;
}

.intro-text em {
    color: var(--secondary-color);
    font-style: italic;
}

/* Featured Image Section */
.featured-image-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(15, 108, 156, 0.05), rgba(244, 163, 64, 0.05));
}

.featured-image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.featured-image-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

.featured-image-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

.featured-image {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: contain;
    display: block;
    border-radius: 17px;
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    padding: 2rem 1.5rem 1.5rem;
}

.overlay-content {
    color: white;
}

.image-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.image-subtitle {
    font-size: 1.2rem;
    font-weight: 300;
    opacity: 0.9;
    margin: 0;
}

.featured-content {
    padding-left: 2rem;
}

.content-title {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.content-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.content-highlights {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 500;
    color: var(--text-dark);
}

.highlight-item i {
    font-size: 1.2rem;
    flex-shrink: 0;
}

/* Info Cards Grid */
.info-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.info-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 15px var(--shadow);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.info-card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.info-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.info-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Section Subtitle */
.section-subtitle {
    text-align: center;
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.section-intro {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Why Visit Section */
.why-visit-section {
    margin: 4rem 0;
    padding: 3rem 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature-item {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 15px var(--shadow);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    border-top: 4px solid var(--primary-color);
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.feature-item h4 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.feature-item p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Prehistoric Sites */
.prehistoric-sites {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 5px 15px var(--shadow);
    margin: 3rem 0;
}

.sites-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.site-item {
    padding: 1rem;
    background-color: var(--bg-light);
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
    color: var(--text-dark);
    transition: background-color 0.3s;
}

.site-item:hover {
    background-color: #e9ecef;
}

.site-item strong {
    color: var(--primary-color);
}

/* Closing Message */
.closing-message {
    text-align: center;
    padding: 2.5rem;
    background: linear-gradient(135deg, rgba(45, 134, 89, 0.1), rgba(74, 157, 122, 0.1));
    border-radius: 12px;
    margin-top: 3rem;
    border: 2px solid var(--primary-color);
}

.closing-message p {
    font-size: 1.2rem;
    color: var(--text-dark);
    line-height: 1.8;
}

.closing-message strong {
    color: var(--primary-color);
    font-weight: 600;
}

/* Featured Packages */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.package-card {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.package-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.package-content {
    padding: 1.5rem;
}

.package-content h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.package-content p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.package-price {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Destinations Grid */
.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.destination-card {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.destination-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.destination-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.destination-content {
    padding: 1.5rem;
}

.destination-content h3 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    font-size: 1.3rem;
}

.destination-content p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* Destination Detail Page */
.destination-hero {
    height: 60vh;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
                var(--hero-bg-image) center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    margin-bottom: 3rem;
    position: relative;
    overflow: hidden;
}

.destination-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: inherit;
    filter: blur(2px);
    z-index: 0;
}

.destination-hero > * {
    position: relative;
    z-index: 1;
}

.destination-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.destination-detail-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.destination-intro {
    background-color: var(--bg-light);
    padding: 2.5rem;
    border-radius: 12px;
    margin-bottom: 3rem;
}

.destination-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
}

.destination-section {
    margin-bottom: 3rem;
}

.destination-section h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.destination-section h3 {
    color: var(--secondary-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.destination-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    align-items: start;
}

.destination-gallery img {
    width: 100%;
    height: auto;
    max-width: 100%;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
    background-color: var(--bg-light);
    cursor: pointer;
    padding: 0;
}

.destination-gallery img:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
}

.activities-list,
.places-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.activity-item,
.place-item {
    background-color: var(--white);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px var(--shadow);
    border-left: 4px solid var(--primary-color);
}

.activity-item h4,
.place-item h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.activity-item p,
.place-item p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* About Page */
.about-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 2rem;
}

.about-card {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 10px;
}

.about-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.about-card ul {
    list-style: none;
    padding-left: 0;
}

.about-card ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.about-card ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    aspect-ratio: 4/3;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.5));
    opacity: 0;
    transition: opacity 0.3s;
}

.gallery-item:hover::after {
    opacity: 1;
}

/* Contact Page */
.contact-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 2rem;
}

.contact-form {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 10px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-info {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 10px;
}

.contact-info h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.contact-info p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

.contact-info strong {
    color: var(--text-dark);
}

.star-rating {
    display: inline-flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 0.25rem;
    font-size: 2rem;
    cursor: pointer;
    color: #ccc;
    margin-bottom: 0.5rem;
}

.star-rating span.active,
.star-rating span:hover,
.star-rating span:hover ~ span {
    color: #f4a340;
}

.star-rating span {
    transition: color 0.2s ease;
}

.map-container {
    margin-top: 3rem;
    height: 400px;
    background-color: var(--bg-light);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
}

/* Page Hero */
.page-hero {
    min-height: 300px;
    position: relative;
}

/* Footer */
.footer {
    background-color: var(--text-dark);
    color: var(--white);
    padding: 3rem 2rem 1rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.social-icons a {
    color: var(--white);
    font-size: 1.5rem;
    text-decoration: none;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: var(--accent-color);
}

.footer p {
    margin-top: 1rem;
    color: #aaa;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero-content h1 {
        font-size: 3rem;
        letter-spacing: 0.1em;
    }

    .hero-content p {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    /* Featured Image Section Mobile */
    .featured-image-section .row {
        flex-direction: column;
    }

    .featured-image-container {
        margin-bottom: 2rem;
    }

    .featured-image {
        height: 300px;
    }

    .featured-content {
        padding-left: 0;
        text-align: center;
    }

    .content-title {
        font-size: 2rem;
    }

    .content-highlights {
        align-items: center;
    }

    .packages-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }

    .destination-gallery {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 1.5rem;
    }

    .contact-container {
        grid-template-columns: 1fr;
    }

    .welcome-title {
        font-size: 1.5rem;
    }

    .welcome-greeting {
        font-size: 2.5rem;
    }

    .welcome-meaning {
        font-size: 1rem;
    }

    .info-cards-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .sites-list {
        grid-template-columns: 1fr;
    }

    .section-subtitle {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2.2rem;
        letter-spacing: 0.08em;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .section {
        padding: 3rem 1rem;
    }

    .nav-container {
        padding: 0 1rem;
    }

    .welcome-box {
        padding: 2rem 1rem;
    }

    .welcome-title {
        font-size: 1.3rem;
    }

    .welcome-greeting {
        font-size: 2rem;
    }

    .intro-text p {
        font-size: 1rem;
    }

    .destination-gallery {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .info-card,
    .feature-item {
        padding: 1.5rem;
    }

    .prehistoric-sites {
        padding: 1.5rem;
    }

    .closing-message {
        padding: 1.5rem;
    }

    .closing-message p {
        font-size: 1rem;
    }
}

/* Tourist Directory styles */
.directory-page .directory-hero {
    text-align: center;
    padding: 3rem 1rem;
}
.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.25rem;
    margin: 2rem 0 4rem;
}
.category-card {
    display: block;
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.category-card img {
    width: 100%;
    height: 170px;
    object-fit: cover;
    display: block;
}
.category-card .card-body {
    padding: 1rem 1rem 1.25rem;
}
.category-card .card-emoji { font-size: 1.6rem; margin-bottom: 0.35rem; }
.category-card h3 { margin: 0.25rem 0; color: var(--primary-color); }
.category-card p { color: var(--text-light); font-size: 0.95rem; }
.category-card:hover { transform: translateY(-6px); box-shadow: 0 14px 36px rgba(0,0,0,0.12); }

.wrap { max-width: 1200px; margin: 0 auto; padding: 2rem; }
.breadcrumb { font-size: 0.95rem; color: var(--text-light); margin-bottom: 1rem; }
.dest-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1rem; }
.dest-card { background: var(--white); border-radius: 10px; padding: 0.6rem; box-shadow: 0 6px 18px rgba(0,0,0,0.06); text-align: left; }
.dest-card img { width: 100%; height: 140px; object-fit: cover; border-radius: 8px; }
.dest-card h3 { margin: 0.6rem 0 0.35rem; color: var(--primary-color); font-size: 1.05rem; }
.dest-card p { color: var(--text-dark); font-size: 0.95rem; line-height: 1.4; }
.directory-page .subtitle { color: var(--text-light); margin-top: 0.5rem; }

/* Modern Card Styles */
.card {
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}

/* Bootstrap Overrides for Modern Look */
.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border: none;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(15, 108, 156, 0.3);
}

.btn-outline-primary {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Selection Color */
::selection {
    background-color: var(--accent-color);
    color: white;
}

::-moz-selection {
    background-color: var(--accent-color);
    color: white;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--bg-lighter);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
}

/* Form Inputs Modern Style */
.form-control:focus,
.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(15, 108, 156, 0.25);
}

/* Badge Styles */
.badge {
    padding: 0.5rem 1rem;
    font-weight: 500;
}

/* Loading Overlay */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(11, 18, 32, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

@media (max-width: 700px) {
  .category-card img { height: 140px; }
  .dest-card img { height: 120px; }
}

@media (max-width: 992px) {
    .navbar-collapse {
        background: var(--bg-lighter);
        padding: 1rem;
        border-radius: 10px;
        margin-top: 1rem;
        box-shadow: 0 5px 15px rgba(35, 34, 34, 0.35);
    }
}

/* ============ MODERN ANIMATIONS ============ */
@keyframes gradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes move {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-60px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(60px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

@keyframes scale {
    from { transform: scale(0.95); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

/* ============ UTILITY CLASSES ============ */
.gradient-text {
    background: linear-gradient(135deg, var(--primary-light), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.shadow-lift {
    transition: var(--transition);
}

.shadow-lift:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.hover-lift {
    transition: var(--transition);
}

.hover-lift:hover {
    transform: translateY(-6px);
}

.rounded-xl {
    border-radius: 24px;
}

.rounded-full {
    border-radius: 999px;
}

/* ============ RESPONSIVE TABLES ============ */
.table {
    border-collapse: collapse;
    margin-top: 1.5rem;
}

.table thead {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
}

.table th {
    font-weight: 700;
    padding: 1rem;
    border: none;
}

.table td {
    padding: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.table tr:last-child td {
    border-bottom: none;
}

.table tbody tr:hover {
    background: var(--bg-light);
}

/* ============ DARK THEME OVERRIDES ============ */
:root {
    --bg-light: #0b1220 !important;
    --bg-lighter: #0f172a !important;
    --white: #111827 !important;
    --text-dark: #f1f5f9 !important;
    --text-primary: #e2e8f0 !important;
    --text-light: #cbd5f5 !important;
    --text-muted: #94a3b8 !important;
    --border-color: #1f2937 !important;
}

.bg-white,
.bg-body,
.bg-body-tertiary {
    background-color: var(--bg-light) !important;
}

.bg-light {
    background-color: var(--bg-lighter) !important;
}

.text-dark { color: var(--text-primary) !important; }
.text-muted { color: var(--text-muted) !important; }
.text-primary { color: var(--primary-light) !important; }

a {
    color: var(--secondary-light);
}

a:hover {
    color: var(--accent-color);
}

.gallery-item {
    background-color: var(--white) !important;
    border-color: var(--border-color) !important;
}

.ratings-header {
    background: linear-gradient(135deg, var(--bg-lighter) 0%, var(--white) 100%) !important;
    border-color: var(--border-color) !important;
}

.review-card {
    background-color: var(--white) !important;
    border-color: var(--border-color) !important;
}

.distribution-bar {
    background-color: var(--border-color) !important;
}


