/* Sri Lanka Theme Colors */
/* Blog: List & Cards */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

/* Experiences: vibrant category filters */
.experiences-filters .filter-buttons { display:flex; flex-wrap:wrap; gap:12px; }
.experiences-filters .filter-btn {
  appearance:none; cursor:pointer; border:1px solid #e5e7eb; background:#fff; color:#111827;
  padding:10px 16px; border-radius:999px; font-weight:600; font-size:14px; transition:all .2s ease;
  box-shadow:0 1px 0 rgba(17,24,39,.04);
}
.experiences-filters .filter-btn:hover { transform:translateY(-1px); box-shadow:0 6px 14px -6px rgba(2,6,23,.15); }
.experiences-filters .filter-btn:active { transform:translateY(0); }

/* Base color tints for each category (idle state) */
.experiences-filters .filter-btn[data-filter="all"]{ background:#111827; color:#fff; border-color:#111827; }
.experiences-filters .filter-btn[data-filter="wildlife"]{ background:rgba(22,163,74,.08); color:#065f46; border-color:rgba(22,163,74,.25); }
.experiences-filters .filter-btn[data-filter="adventure"]{ background:rgba(14,165,233,.08); color:#075985; border-color:rgba(14,165,233,.25); }
.experiences-filters .filter-btn[data-filter="wellness"]{ background:rgba(16,185,129,.08); color:#065f46; border-color:rgba(16,185,129,.25); }
.experiences-filters .filter-btn[data-filter="cuisine"]{ background:rgba(245,158,11,.10); color:#92400e; border-color:rgba(245,158,11,.28); }

/* Active states with vibrant gradients */
.experiences-filters .filter-btn.active[data-filter="all"]{ background:linear-gradient(135deg,#111827,#1f2937); color:#fff; border-color:transparent; box-shadow:0 10px 22px -10px rgba(17,24,39,.45); }
.experiences-filters .filter-btn.active[data-filter="wildlife"]{ background:linear-gradient(135deg,#34d399,#059669); color:#fff; border-color:transparent; box-shadow:0 10px 22px -10px rgba(16,185,129,.55); }
.experiences-filters .filter-btn.active[data-filter="adventure"]{ background:linear-gradient(135deg,#38bdf8,#0ea5e9); color:#fff; border-color:transparent; box-shadow:0 10px 22px -10px rgba(14,165,233,.55); }
.experiences-filters .filter-btn.active[data-filter="wellness"]{ background:linear-gradient(135deg,#2dd4bf,#10b981); color:#fff; border-color:transparent; box-shadow:0 10px 22px -10px rgba(16,185,129,.55); }
.experiences-filters .filter-btn.active[data-filter="cuisine"]{ background:linear-gradient(135deg,#fbbf24,#f59e0b); color:#fff; border-color:transparent; box-shadow:0 10px 22px -10px rgba(245,158,11,.55); }


.card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 28px rgba(0,0,0,0.12);
}

.card-image { height: 220px; overflow: hidden; }
.card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.card:hover .card-image img { transform: scale(1.07); }

.card-content { padding: 1.25rem 1.25rem 1.5rem; }
.card-title { margin-bottom: 0.5rem; }
.card-meta { display: flex; gap: 1rem; flex-wrap: wrap; color: var(--text-light); font-size: 0.9rem; margin-bottom: 0.75rem; }
.card-meta i { color: var(--primary-color); margin-right: 6px; }
.card-excerpt { color: var(--text-dark); opacity: 0.85; margin-bottom: 1rem; }

/* Blog: Featured hero */
.featured-post {
    background: rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}
.featured-text { color: #fff; max-width: 800px; }
.featured-text h2 { color: #fff; margin-bottom: 0.5rem; font-size: 2rem; }
.featured-post .meta { display: flex; gap: 0.75rem; flex-wrap: wrap; opacity: 0.95; margin-bottom: 0.75rem; }
.featured-post .excerpt { color: #fff; opacity: 0.95; margin-bottom: 1rem; }

/* Post detail layout */
.post-layout { display: grid; grid-template-columns: 1.7fr 1fr; gap: 2rem; }
.post-detail { background: white; border-radius: 12px; box-shadow: 0 8px 24px rgba(0,0,0,0.08); overflow: hidden; }
.post-cover { height: 380px; overflow: hidden; }
.post-cover img { width: 100%; height: 100%; object-fit: cover; }
.post-content { padding: 1.5rem; }
.post-content p { color: var(--text-dark); line-height: 1.8; margin-bottom: 1rem; }
.post-meta { color: var(--text-light); display: flex; gap: 1rem; flex-wrap: wrap; }
.post-meta i { color: var(--primary-color); margin-right: 6px; }

.share-row { display: flex; align-items: center; gap: 0.75rem; padding: 0 1.5rem 1.25rem; }
.share-row span { color: var(--text-light); margin-right: 0.5rem; }
.share-row a { color: var(--primary-color); font-size: 1rem; }

/* Sidebar */
.sidebar .widget { background: white; border-radius: 12px; box-shadow: 0 8px 24px rgba(0,0,0,0.08); padding: 1.25rem; }
.sidebar .widget h3 { margin-bottom: 1rem; }
.related-list { list-style: none; display: grid; gap: 0.75rem; }
.related-list li a { display: grid; grid-template-columns: 64px 1fr; gap: 0.75rem; align-items: center; }
.related-list img { width: 64px; height: 48px; object-fit: cover; border-radius: 6px; }
.related-list .title { display: block; color: var(--text-dark); }
.related-list .date { display: block; color: var(--text-light); font-size: 0.85rem; }

/* Post page: hero banner */
.post-hero {
  position: relative;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 420px;
  display: flex;
  align-items: center;
}
.post-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.45)),
    radial-gradient(900px 420px at 15% 20%, rgba(255,106,43,.22), transparent 60%),
    radial-gradient(700px 380px at 85% 30%, rgba(75,170,255,.18), transparent 60%);
}
.post-hero .container { position: relative; z-index: 1; }
.post-hero h1 { color: #fff; margin-bottom: 0.5rem; }
.post-hero .post-meta { color: rgba(255,255,255,0.9); }
.post-hero .hero-card {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.28);
  box-shadow: 0 30px 80px rgba(0,0,0,.25);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 18px;
  padding: 22px 24px;
  max-width: 820px;
}
.post-hero .btn-ghost {
  display: inline-block;
  margin-top: 1rem;
  padding: 10px 18px;
  border-radius: 6px;
  background: rgba(255,255,255,0.15);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.3);
}
.post-hero .btn-ghost:hover { background: rgba(255,255,255,0.25); }

/* Post page: spacing before footer */
.post-content-section { padding: 60px 0 80px; }

/* Responsive adjustments */
@media (max-width: 992px) {
  .post-layout { grid-template-columns: 1fr; }
  .post-cover { height: 280px; }
}

:root {
    --primary-color: #006633; /* Sri Lanka green */
    --secondary-color: #FF6B35; /* Orange/saffron */
    --accent-color: #FFD700; /* Gold */
    --text-dark: #2c3e50;
    --text-light: #666;
    --bg-light: #f8f9fa;
    --bg-dark: #2c3e50;
    --white: #ffffff;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1rem;
    font-weight: 600;
    line-height: 1.2;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

a:hover {
    color: #004d26;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background-color: #004d26;
    color: white;
}

.btn-secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background-color: white;
    color: var(--primary-color);
}

.btn-outline {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.btn-outline:hover {
    background-color: white;
    color: var(--text-dark);
}

.btn-whatsapp {
    background-color: #25D366;
    color: white;
}

.btn-whatsapp:hover {
    background-color: #128C7E;
    color: white;
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

.btn-full {
    width: 100%;
}

/* Header & Navigation */
.header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo a {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

.nav-logo i {
    margin-right: 10px;
    font-size: 1.8rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: #333;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4));
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    height: 100vh;
}

.hero-text-slide {
    position: absolute;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    width: 100%;
}

.hero-text-slide.active {
    opacity: 1;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
}

/* Features Section */
.features {
    background-color: var(--bg-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
}

.feature-card h3 {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Destinations Section */
.featured-destinations {
    background-color: white;
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.destination-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.destination-card:hover {
    transform: translateY(-5px);
}

.destination-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.destination-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.destination-card:hover .destination-image img {
    transform: scale(1.1);
}

.destination-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent, rgba(0,0,0,0.7));
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.destination-card:hover .destination-overlay {
    opacity: 1;
}

.destination-price {
    background-color: var(--primary-color);
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-weight: 600;
    margin-bottom: 1rem;
    align-self: flex-start;
}

.destination-info {
    padding: 1.5rem;
}

.destination-info h3 {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.destination-info p {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.destination-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.9rem;
    color: var(--text-light);
}

.destination-meta span {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.destination-highlights {
    list-style: none;
    margin-top: 1rem;
}

.destination-highlights li {
    padding: 0.25rem 0;
    color: #666;
    font-size: 0.9rem;
}

.destination-highlights i {
    color: #28a745;
    margin-right: 0.5rem;
}

/* Quick Highlights Section */
.quick-highlights {
    background-color: white;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.highlight-card {
    text-align: center;
    padding: 2rem;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--bg-light), white);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.highlight-card:hover {
    transform: translateY(-5px);
}

.highlight-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1rem;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
}

.highlight-card h3 {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.highlight-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Why Sri Lanka Section */
.why-sri-lanka {
    background-color: var(--bg-light);
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.reason-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.reason-card:hover {
    transform: translateY(-5px);
}

.reason-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    background-color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
}

.reason-card h3 {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.reason-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Why Choose Us Section */
.why-choose-us {
    background-color: white;
    position: relative;
    padding: 80px 0;
}

.parallax-section {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    overflow: hidden;
}

.parallax-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 102, 51, 0.85);
    z-index: 1;
}

.parallax-section .container {
    position: relative;
    z-index: 2;
}

.parallax-section .section-title {
    color: white;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.parallax-section .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.parallax-section .feature-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Featured Tours Section */
.featured-tours {
    background-color: var(--bg-light);
    position: relative;
    padding: 80px 0;
}

.featured-tours::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5));
    z-index: 1;
}

.featured-tours .container {
    position: relative;
    z-index: 2;
}

.featured-tours .section-title {
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.featured-tours .tour-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

.tours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.tour-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.tour-card:hover {
    transform: translateY(-5px);
}

.tour-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.tour-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.tour-card:hover .tour-image img {
    transform: scale(1.1);
}

.tour-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent, rgba(0,0,0,0.7));
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.tour-card:hover .tour-overlay {
    opacity: 1;
}

.tour-price {
    background-color: var(--secondary-color);
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-weight: 600;
    margin-bottom: 0.5rem;
    align-self: flex-start;
}

.tour-duration {
    background-color: var(--primary-color);
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-weight: 600;
    align-self: flex-start;
}

.tour-info {
    padding: 1.5rem;
}

.tour-info h3 {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.tour-info p {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.tour-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.tour-highlights span {
    background-color: var(--bg-light);
    color: var(--text-dark);
    padding: 0.25rem 0.5rem;
    border-radius: 15px;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

/* Sustainability Section */
.sustainability {
    background: linear-gradient(135deg, var(--primary-color), #004d26);
    color: white;
    text-align: center;
}

.sustainability-content h2 {
    margin-bottom: 2rem;
}

.sustainability-content p {
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.sustainability-highlights {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.sustain-item {
    text-align: center;
    flex: 1;
    min-width: 150px;
}

.sustain-item i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--accent-color);
}

.sustain-item h4 {
    margin-bottom: 0.5rem;
}

/* Sri Lanka Overview Section */
.sri-lanka-overview {
    background-color: white;
    position: relative;
    overflow: hidden;
}

.overview-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
    position: relative;
    z-index: 2;
}

.overview-image {
    position: relative;
}

.overview-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    position: relative;
    z-index: 2;
}

.overview-image::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    opacity: 0.1;
    z-index: 1;
}

.overview-image::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 150px;
    height: 150px;
    background: linear-gradient(45deg, var(--accent-color), var(--secondary-color));
    border-radius: 50%;
    opacity: 0.08;
    z-index: 1;
}

.overview-text h2 {
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.location-details {
    margin: 2rem 0;
}

.location-details h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.location-details ul {
    list-style: none;
}

.location-details li {
    padding: 0.5rem 0;
    color: var(--text-light);
}

.location-details strong {
    color: var(--text-dark);
}

.climate-info {
    margin: 2rem 0;
}

.climate-info h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.climate-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.climate-card {
    background-color: var(--bg-light);
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.climate-card h4 {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.climate-card p {
    margin-bottom: 0.25rem;
    color: var(--text-light);
}

.overview-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Cultural Heritage Section */
.cultural-heritage {
    background-color: var(--bg-light);
    position: relative;
    padding: 80px 0;
}

.cultural-heritage::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.6));
    z-index: 1;
}

.cultural-heritage .container {
    position: relative;
    z-index: 2;
}

.cultural-heritage .section-title {
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.cultural-heritage .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.cultural-heritage .heritage-content {
    position: relative;
    z-index: 2;
}

.cultural-heritage .timeline-item {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

.cultural-heritage .heritage-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

.heritage-content {
    margin-top: 3rem;
}

.heritage-timeline {
    margin-bottom: 3rem;
}

.timeline-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1rem;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.timeline-date {
    min-width: 120px;
    font-weight: 600;
    color: var(--primary-color);
    text-align: center;
    padding: 0.5rem;
    background-color: var(--bg-light);
    border-radius: 5px;
}

.timeline-content h3 {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.timeline-content p {
    color: var(--text-light);
    margin: 0;
}

.unesco-sites {
    margin-top: 3rem;
}

.unesco-sites h3 {
    margin-bottom: 2rem;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.heritage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.heritage-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.heritage-card:hover {
    transform: translateY(-5px);
}

.heritage-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.heritage-card h4 {
    margin: 1rem;
    color: var(--text-dark);
}

.heritage-card p {
    margin: 0 1rem 1rem;
    color: var(--text-light);
}

/* Sri Lankan Hospitality Section */
.sri-lankan-hospitality {
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 50%, #e9ecef 100%);
    position: relative;
}

.sri-lankan-hospitality::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.03), rgba(0, 0, 0, 0.08));
    z-index: 1;
}

.sri-lankan-hospitality .container {
    position: relative;
    z-index: 2;
}

.hospitality-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hospitality-text h3 {
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.culture-aspects {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.culture-item {
    text-align: center;
    padding: 1rem;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.culture-item i {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.culture-item h4 {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.culture-item p {
    color: var(--text-light);
    margin: 0;
    font-size: 0.9rem;
}

.hospitality-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Enhanced Sustainability Section */
.sustainability-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.sustain-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.sustain-card:hover {
    transform: translateY(-5px);
}

.sustain-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1rem;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
}

.sustain-card h3 {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.sustain-card p {
    color: var(--text-light);
    line-height: 1.6;
}

.sustainability-pledge {
    margin-top: 3rem;
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 10px;
}

.sustainability-pledge h3 {
    margin-bottom: 2rem;
    color: var(--text-dark);
    text-align: center;
}

.pledge-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
}

.pledge-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.pledge-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.pledge-item span {
    color: var(--text-dark);
}

/* Quick Facts Section */
.quick-facts {
    background-color: var(--bg-light);
}

.facts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.fact-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.fact-card:hover {
    transform: translateY(-5px);
}

.fact-card h3 {
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.fact-card p {
    color: var(--text-light);
    margin: 0;
}

/* Experiences Section */
.experiences-filters {
    background-color: var(--bg-light);
    padding: 40px 0;
}

.experiences-list {
    background-color: white;
}

.experiences-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.experience-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.experience-card:hover {
    transform: translateY(-5px);
}

.experience-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.experience-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.experience-card:hover .experience-image img {
    transform: scale(1.1);
}

.experience-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent, rgba(0,0,0,0.7));
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.experience-card:hover .experience-overlay {
    opacity: 1;
}

.experience-price {
    background-color: var(--secondary-color);
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-weight: 600;
    align-self: flex-start;
}

.experience-info {
    padding: 1.5rem;
}

.experience-info h3 {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.experience-info p {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.experience-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.experience-highlights span {
    background-color: var(--bg-light);
    color: var(--text-dark);
    padding: 0.25rem 0.5rem;
    border-radius: 15px;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.experience-details {
    margin-bottom: 1rem;
}

.experience-details p {
    margin: 0.25rem 0;
    color: var(--text-light);
    font-size: 0.9rem;
}

.experience-details strong {
    color: var(--text-dark);
}

/* Tour Packages Section */
.packages-filters {
    background-color: var(--bg-light);
    padding: 40px 0;
}

.packages-list {
    background-color: white;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.package-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    position: relative;
}

.package-card:hover {
    transform: translateY(-10px);
}

.package-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.package-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.package-card:hover .package-image img {
    transform: scale(1.1);
}

.package-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background-color: var(--secondary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.8rem;
    z-index: 2;
}

.package-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent, rgba(0,0,0,0.7));
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.package-card:hover .package-overlay {
    opacity: 1;
}

.package-price {
    background-color: var(--primary-color);
    color: white;
    padding: 8px 15px;
    border-radius: 8px;
    font-weight: 600;
    margin-bottom: 0.5rem;
    align-self: flex-start;
    font-size: 1.1rem;
}

.package-duration {
    background-color: var(--secondary-color);
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-weight: 600;
    align-self: flex-start;
    font-size: 0.9rem;
}

.package-info {
    padding: 2rem;
}

.package-info h3 {
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-size: 1.4rem;
}

.package-info p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.package-includes {
    margin-bottom: 1.5rem;
}

.package-includes h4 {
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-size: 1rem;
}

.package-includes ul {
    list-style: none;
}

.package-includes li {
    padding: 0.5rem 0;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.package-includes i {
    color: var(--primary-color);
    font-size: 0.9rem;
}

.package-itinerary {
    margin-bottom: 1.5rem;
}

.package-itinerary h4 {
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-size: 1rem;
}

.itinerary-days {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.day {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.day-number {
    font-weight: 600;
    color: var(--primary-color);
}

.day-location {
    color: var(--text-dark);
}

.package-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.feature {
    background-color: var(--bg-light);
    color: var(--text-dark);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.feature i {
    color: var(--primary-color);
}

/* Custom Package Section */
.custom-package {
    background: linear-gradient(135deg, var(--primary-color), #004d26);
    color: white;
    text-align: center;
    padding: 80px 0;
}

.custom-content h2 {
    margin-bottom: 1.5rem;
}

.custom-content p {
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.custom-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.custom-item {
    text-align: center;
    flex: 1;
    min-width: 150px;
}

.custom-item i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--accent-color);
}

.custom-item h3 {
    margin-bottom: 0.5rem;
}

.custom-item p {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Travel Info Section */
.travel-info-section {
    background-color: white;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.info-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
}

.info-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
}

.info-card h2 {
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    text-align: center;
}

.info-content h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.info-content ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.info-content li {
    padding: 0.5rem 0;
    color: var(--text-light);
}

.info-content strong {
    color: var(--text-dark);
}

.info-cta {
    text-align: center;
    margin-top: 1.5rem;
}

.season-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.season-card {
    background-color: var(--bg-light);
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.season-card h4 {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.season-card p {
    margin-bottom: 0.25rem;
    color: var(--text-light);
}

.weather-tip {
    background-color: var(--bg-light);
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.weather-tip i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.transport-options {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.transport-item {
    background-color: var(--bg-light);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--secondary-color);
}

.transport-item h4 {
    margin-bottom: 1rem;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.transport-item h4 i {
    color: var(--secondary-color);
}

.transport-item ul {
    list-style: none;
}

.transport-item li {
    padding: 0.25rem 0;
    color: var(--text-light);
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.tip-category {
    background-color: var(--bg-light);
    padding: 1rem;
    border-radius: 8px;
}

.tip-category h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.tip-category ul {
    list-style: none;
}

.tip-category li {
    padding: 0.25rem 0;
    color: var(--text-light);
}

.currency-info h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.budget-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.budget-item {
    background-color: var(--bg-light);
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
}

.budget-item h4 {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.budget-item p {
    margin-bottom: 0.25rem;
    color: var(--primary-color);
    font-weight: 600;
}

.budget-item span {
    color: var(--text-light);
    font-size: 0.8rem;
}

.customs-info {
    margin-top: 2rem;
}

.customs-info h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.sustainability-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.sustain-item {
    background-color: var(--bg-light);
    padding: 1rem;
    border-radius: 8px;
}

.sustain-item h4 {
    margin-bottom: 1rem;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.sustain-item h4 i {
    color: var(--primary-color);
}

.sustain-item ul {
    list-style: none;
}

.sustain-item li {
    padding: 0.25rem 0;
    color: var(--text-light);
}

.eco-certification {
    margin-top: 2rem;
    background-color: var(--bg-light);
    padding: 1.5rem;
    border-radius: 8px;
}

.eco-certification h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.eco-certification ul {
    list-style: none;
}

.eco-certification li {
    padding: 0.25rem 0;
    color: var(--text-light);
}

/* Emergency Info Section */
.emergency-info {
    background-color: var(--bg-light);
}

.emergency-content h2 {
    margin-bottom: 2rem;
    text-align: center;
}

.emergency-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.emergency-item {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.emergency-item i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.emergency-item h3 {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.emergency-item ul {
    list-style: none;
    text-align: left;
}

.emergency-item li {
    padding: 0.25rem 0;
    color: var(--text-light);
}

.emergency-item strong {
    color: var(--text-dark);
}

/* Map Section */
.map-section {
    background-color: white;
}

.map-container {
    margin-top: 3rem;
}

.map-placeholder {
    background-color: var(--bg-light);
    border-radius: 10px;
    padding: 3rem;
    text-align: center;
    border: 2px dashed var(--primary-color);
}

.map-placeholder i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.map-placeholder h3 {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.map-placeholder p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

/* Enhanced Contact Form */
.contact-alternatives {
    margin-top: 2rem;
    text-align: center;
}

.contact-alternatives p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

.alternative-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    color: var(--text-dark);
}

.checkbox-label input[type="checkbox"] {
    width: auto;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid var(--primary-color);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background-color: var(--primary-color);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    color: white;
    font-size: 12px;
}

/* Enhanced Form Validation */
.success-message {
    background-color: #d4edda;
    color: #155724;
    padding: 1rem;
    border-radius: 5px;
    margin-bottom: 1rem;
    border: 1px solid #c3e6cb;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.error-messages {
    background-color: #f8d7da;
    color: #721c24;
    padding: 1rem;
    border-radius: 5px;
    margin-bottom: 1rem;
    border: 1px solid #f5c6cb;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.error-messages p {
    margin: 0.25rem 0;
}

/* Enhanced Testimonials */
.testimonials-contact {
    background-color: var(--bg-light);
}

.booking-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Category Titles */
.category-title {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
    padding-bottom: 1rem;
}

.category-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
}

/* Responsive Design Updates */
@media (max-width: 768px) {
    .highlights-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1rem;
    }
    
    .reasons-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .tours-grid {
        grid-template-columns: 1fr;
    }
    
    .overview-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .overview-image {
        order: -1;
    }
    
    .heritage-grid {
        grid-template-columns: 1fr;
    }
    
    .hospitality-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .sustainability-grid {
        grid-template-columns: 1fr;
    }
    
    .pledge-items {
        grid-template-columns: 1fr;
    }
    
    .facts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .experiences-grid {
        grid-template-columns: 1fr;
    }
    
    .packages-grid {
        grid-template-columns: 1fr;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .season-grid {
        grid-template-columns: 1fr;
    }
    
    .budget-grid {
        grid-template-columns: 1fr;
    }
    
    .sustainability-grid {
        grid-template-columns: 1fr;
    }
    
    .emergency-grid {
        grid-template-columns: 1fr;
    }
    
    .custom-features {
        flex-direction: column;
        gap: 1rem;
    }
    
    .alternative-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .booking-actions {
        flex-direction: column;
        align-items: center;
    }
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.testimonial-content p {
    font-style: italic;
    color: #666;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author h4 {
    margin-bottom: 0.25rem;
    color: #333;
}

.rating {
    color: #ffc107;
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, var(--primary-color), #004d26);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Page Header */
.page-header {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('https://images.unsplash.com/photo-1488646953014-85cb44e25828?w=1920&h=400&fit=crop') center/cover;
    color: white;
    text-align: center;
    padding: 120px 0 80px;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Destination Guide Section */
.destination-guide {
    background-color: white;
    overflow: hidden;
    background-image: url('../images/destination_guide.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    /* Fallback background color in case image doesn't load */
    background-color: #f8f9fa;
}

.destination-guide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.92);
    z-index: 1;
}

.destination-guide .container {
    position: relative;
    z-index: 2;
}

.guide-content {
    display: grid;
    grid-template-columns: 35% 65%;
    gap: 3rem;
    align-items: center;
    min-height: 600px;
}

.guide-text {
    padding: 2rem;
}

.section-title-left {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    text-align: left;
}

.guide-text p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    max-width: 100%;
}

.btn-primary-outline {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary-outline:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.guide-cards {
    position: relative;
    height: 500px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.cards-container {
    display: flex;
    gap: 2rem;
    transition: transform 0.3s ease;
    will-change: transform;
}

.destination-card-vertical {
    position: relative;
    height: 450px;
    width: 350px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    cursor: pointer;
    flex-shrink: 0;
}

.destination-card-vertical:hover {
    transform: translateX(-10px);
}

.card-image {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.destination-card-vertical:hover .card-image img {
    transform: scale(1.1);
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.8), rgba(0,0,0,0.4));
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2rem;
    color: white;
}

.card-text h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.card-text p {
    font-size: 0.9rem;
    opacity: 0.9;
    margin: 0;
}

.card-arrow {
    background-color: var(--secondary-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.destination-card-vertical:hover .card-arrow {
    background-color: var(--primary-color);
    transform: scale(1.1);
}

/* Vertical Scrolling Animation */
.destination-card-vertical {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.destination-card-vertical.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 968px) {
    .guide-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .section-title-left {
        text-align: center;
        font-size: 2rem;
    }
    
    .guide-text p {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    
    .guide-cards {
        height: 350px;
        justify-content: center;
    }
    
    .destination-card-vertical {
        height: 320px;
        width: 280px;
    }
    
    .card-overlay {
        padding: 1.5rem;
    }
    
    .card-text h3 {
        font-size: 1rem;
    }
    
    .card-text p {
        font-size: 0.8rem;
    }
}

@media (max-width: 640px) {
    .section-title-left {
        font-size: 1.8rem;
    }
    
    .guide-text {
        padding: 1rem;
    }
    
    .guide-cards {
        height: 300px;
    }
    
    .destination-card-vertical {
        height: 270px;
        width: 240px;
    }
    
    .card-overlay {
        padding: 1rem;
    }
    
    .card-arrow {
        width: 35px;
        height: 35px;
    }
}

/* Destinations Page */
.destinations-filters {
    background: linear-gradient(135deg, #006633 0%, #004d26 100%);
    padding: 40px 0;
    position: relative;
    overflow: hidden;
}

.destinations-filters::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.03)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.03)"/><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.03)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    z-index: 1;
}

.destinations-filters .container {
    position: relative;
    z-index: 2;
}

.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 24px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.destinations-filters .filter-btn:hover,
.destinations-filters .filter-btn.active {
    background: rgba(255, 255, 255, 0.2);
    border-color: white;
    transform: translateY(-2px);
}

.destinations-list {
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 50%, #e9ecef 100%);
    padding: 60px 0;
}

.destination-category {
    margin-bottom: 60px;
}

.category-title {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.category-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
    border-radius: 2px;
}

.destinations-list .destinations-grid {
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.destination-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.destination-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.destination-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.destination-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.destination-card:hover .destination-image img {
    transform: scale(1.05);
}

.destination-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.7) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.destination-card:hover .destination-overlay {
    opacity: 1;
}

.destination-price {
    background: var(--secondary-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: bold;
    margin-bottom: 10px;
    align-self: flex-start;
}

.destination-info {
    padding: 25px;
}

.destination-info h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.destination-info p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 15px;
}

.destination-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.destination-meta span {
    color: var(--text-light);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.destination-highlights {
    list-style: none;
    padding: 0;
}

.destination-highlights li {
    color: var(--primary-color);
    margin-bottom: 5px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.destination-highlights i {
    color: var(--accent-color);
    font-size: 0.8rem;
}

.booking-info {
    background: linear-gradient(135deg, var(--primary-color) 0%, #004d26 100%);
    color: white;
    text-align: center;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.booking-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    z-index: 1;
}

.booking-info .container {
    position: relative;
    z-index: 2;
}

.booking-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.booking-info p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.destination-item {
    display: none;
}

.destination-item.show {
    display: block;
}

/* About Page */
.about-intro {
    background-color: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text h2 {
    margin-bottom: 1.5rem;
    color: #333;
}

.stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
    padding: 1rem;
    background-color: #f8f9fa;
    border-radius: 10px;
}

.stat-item h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: #666;
    margin: 0;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.mission-vision {
    background-color: #f8f9fa;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.mission-card,
.vision-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    background-color: #007bff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
}

.values {
    background-color: white;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.value-card {
    text-align: center;
    padding: 2rem;
}

.value-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background-color: #007bff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.team {
    background-color: #f8f9fa;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.team-member {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.member-image {
    height: 250px;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.member-info {
    padding: 1.5rem;
}

.member-info h3 {
    margin-bottom: 0.5rem;
    color: #333;
}

.position {
    color: #007bff;
    font-weight: 500;
    margin-bottom: 1rem;
}

.member-info p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.certifications {
    background-color: white;
}

.certifications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.cert-item {
    text-align: center;
    padding: 2rem;
}

.cert-item i {
    font-size: 3rem;
    color: #007bff;
    margin-bottom: 1rem;
}

.cert-item h4 {
    margin-bottom: 1rem;
    color: #333;
}

.cert-item p {
    color: #666;
    line-height: 1.6;
}

/* Contact Page */
.contact-section {
    background-color: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.contact-info h2 {
    margin-bottom: 1.5rem;
    color: #333;
}

.contact-methods {
    margin: 2rem 0;
}

.contact-method {
    display: flex;
    align-items: start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.method-icon {
    width: 50px;
    height: 50px;
    background-color: #007bff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.method-info h3 {
    margin-bottom: 0.5rem;
    color: #333;
}

.method-info p {
    color: #666;
    margin: 0.25rem 0;
}

.office-hours {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
}

.office-hours h3 {
    margin-bottom: 1rem;
    color: #333;
}

.office-hours ul {
    list-style: none;
}

.office-hours li {
    padding: 0.5rem 0;
    color: #666;
}

.contact-form {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
}

.contact-form h2 {
    margin-bottom: 1.5rem;
    color: #333;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #007bff;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.success-message {
    background-color: #d4edda;
    color: #155724;
    padding: 1rem;
    border-radius: 5px;
    margin-bottom: 1rem;
    border: 1px solid #c3e6cb;
}

.error-messages {
    background-color: #f8d7da;
    color: #721c24;
    padding: 1rem;
    border-radius: 5px;
    margin-bottom: 1rem;
    border: 1px solid #f5c6cb;
}

.error-messages p {
    margin: 0.25rem 0;
}

.faq {
    background: linear-gradient(180deg, #e9ecef 0%, #dee2e6 50%, #ced4da 100%);
    position: relative;
    padding: 80px 0;
}

.faq::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.400), rgba(0, 0, 0, 0.400));
    z-index: 1;
}

.faq .section-title {
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.faq .container {
    position: relative;
    z-index: 2;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.faq-item {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.faq-item h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.faq-item p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Footer */
.footer {
    background-color: #2c3e50;
    color: white;
    padding: 60px 0 20px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
    color: white;
}

.footer-logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #007bff;
    margin-bottom: 1rem;
}

.footer-logo i {
    margin-right: 10px;
    font-size: 1.8rem;
}

.footer-section p {
    color: #bdc3c7;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #007bff;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background-color: #34495e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.social-links a:hover {
    background-color: #007bff;
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #bdc3c7;
}

.contact-info i {
    color: #007bff;
    width: 20px;
}

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 2rem;
    text-align: center;
    color: #bdc3c7;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: 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;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-image {
        order: -1;
    }

    .stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .destinations-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-slider {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .filter-buttons {
        flex-direction: column;
        align-items: center;
    }

    .filter-btn {
        width: 200px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .hero {
        height: 80vh;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .page-header {
        padding: 100px 0 60px;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    section {
        padding: 60px 0;
    }

    .cta-content h2 {
        font-size: 2rem;
    }
}
