:root {
  --primary-color: #2563eb;
  --primary-dark: #1d4ed8;
  --primary-light: #60a5fa;
  --secondary-color: #f97316;
  --secondary-dark: #ea580c;
  --secondary-light: #fdba74;
  --accent-color: #10b981;
  --accent-dark: #059669;
  --dark-color: #1e293b;
  --dark-muted: #334155;
  --light-color: #f8fafc;
  --light-muted: #e2e8f0;
  --text-color: #334155;
  --text-muted: #64748b;
  --border-color: #e2e8f0;
  --error-color: #ef4444;
  --success-color: #10b981;
  --warning-color: #f59e0b;
  --box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --transition: all 0.3s ease;
  --border-radius: 8px;
  --border-radius-sm: 4px;
  --border-radius-lg: 12px;
  --font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  --heading-font: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  color: var(--text-color);
  line-height: 1.6;
  background-color: var(--light-color);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--heading-font);
  color: var(--dark-color);
  line-height: 1.3;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

p {
  margin-bottom: 1.5rem;
}

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

a:hover {
  color: var(--primary-dark);
}

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

ul, ol {
  list-style-position: inside;
  margin-bottom: 1.5rem;
}

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

/* Buttons */
.btn {
  display: inline-block;
  background-color: var(--primary-color);
  color: white;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: var(--border-radius);
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  font-size: 1rem;
}

.btn:hover {
  background-color: var(--primary-dark);
  color: white;
}

.btn-small {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

.btn-light {
  background-color: white;
  color: var(--primary-color);
}

.btn-light:hover {
  background-color: var(--light-muted);
  color: var(--primary-dark);
}

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

.btn-outline:hover {
  background-color: var(--primary-color);
  color: white;
}

/* Header & Navigation */
header {
  background-color: white;
  box-shadow: var(--box-shadow);
  position: sticky;
  top: 0;
  z-index: 100;
}

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

.logo img {
  height: 50px;
  width: auto;
}

nav ul {
  display: flex;
  margin: 0;
  list-style: none;
}

nav ul li {
  margin-left: 1.5rem;
}

nav ul li a {
  color: var(--dark-color);
  font-weight: 500;
  padding: 0.5rem 0;
  position: relative;
}

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

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

nav ul li a.active {
  color: var(--primary-color);
}

/* Hero Section */
.hero {
  background-color: var(--primary-color);
  background-image: linear-gradient(rgba(37, 99, 235, 0.9), rgba(37, 99, 235, 0.7)), url('../images/1.jpg');
  background-size: cover;
  background-position: center;
  color: white;
  padding: 6rem 0;
  text-align: center;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: white;
}

.hero p {
  font-size: 1.25rem;
  max-width: 800px;
  margin: 0 auto 2rem;
  opacity: 0.9;
}

/* Features Section */
.features {
  padding: 5rem 0;
  background-color: white;
}

.features h2 {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 2.25rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.feature-card {
  background-color: var(--light-color);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  text-align: center;
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-card .icon {
  margin-bottom: 1.5rem;
  color: var(--primary-color);
}

.feature-card h3 {
  margin-bottom: 1rem;
}

.feature-card p {
  color: var(--text-muted);
  margin-bottom: 0;
}

/* Popular Tours Section */
.popular-tours {
  padding: 5rem 0;
  background-color: var(--light-color);
}

.popular-tours h2 {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 2.25rem;
}

.tours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.tour-card {
  background-color: white;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.tour-card:hover {
  transform: translateY(-5px);
}

.tour-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.tour-content {
  padding: 1.5rem;
}

.tour-content h3 {
  margin-bottom: 0.75rem;
}

.tour-content p {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

/* Testimonials Section */
.testimonials {
  padding: 5rem 0;
  background-color: white;
}

.testimonials h2 {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 2.25rem;
}

.testimonial-slider {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.testimonial {
  background-color: var(--light-color);
  padding: 2rem;
  border-radius: var(--border-radius);
  position: relative;
}

.testimonial .quote {
  color: var(--primary-light);
  margin-bottom: 1rem;
}

.testimonial p {
  font-style: italic;
  margin-bottom: 1.5rem;
}

.client {
  display: flex;
  flex-direction: column;
}

.client strong {
  color: var(--dark-color);
}

.client span {
  color: var(--text-muted);
  font-size: 0.875rem;
}

/* CTA Section */
.cta {
  background-color: var(--primary-color);
  color: white;
  text-align: center;
  padding: 5rem 0;
}

.cta h2 {
  color: white;
  margin-bottom: 1rem;
  font-size: 2.25rem;
}

.cta p {
  max-width: 600px;
  margin: 0 auto 2rem;
  opacity: 0.9;
}

/* Footer */
footer {
  background-color: var(--dark-color);
  color: var(--light-muted);
  padding: 4rem 0 2rem;
}

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

.footer-about {
  max-width: 350px;
}

.footer-logo {
  height: 40px;
  width: auto;
  margin-bottom: 1rem;
}

.footer-links h3,
.footer-contact h3,
.footer-social h3 {
  color: white;
  margin-bottom: 1.25rem;
  font-size: 1.25rem;
}

.footer-links ul {
  list-style: none;
  margin: 0;
}

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

.footer-links ul li a {
  color: var(--light-muted);
}

.footer-links ul li a:hover {
  color: white;
}

.footer-contact address {
  font-style: normal;
}

.footer-contact address p {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.social-icons {
  display: flex;
  gap: 1rem;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background-color: var(--dark-muted);
  color: white;
  border-radius: 50%;
  transition: var(--transition);
}

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

.footer-bottom {
  border-top: 1px solid var(--dark-muted);
  padding-top: 2rem;
  text-align: center;
}

.company-info {
  font-size: 0.875rem;
  opacity: 0.7;
}

.legal-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.legal-links a {
  color: var(--light-muted);
  font-size: 0.875rem;
}

.legal-links a:hover {
  color: white;
}

/* Page Banner */
.page-banner {
  background-color: var(--primary-color);
  color: white;
  padding: 4rem 0;
  text-align: center;
}

.page-banner h1 {
  color: white;
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.page-banner p {
  font-size: 1.25rem;
  opacity: 0.9;
  max-width: 800px;
  margin: 0 auto;
}

/* Blog Page Styles */
.blog-section {
  padding: 5rem 0;
}

.blog-container {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
}

.blog-posts {
  display: grid;
  gap: 3rem;
}

.blog-post {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 2rem;
  background-color: white;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.blog-image {
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.blog-image img:hover {
  transform: scale(1.05);
}

.blog-content {
  padding: 1.5rem;
}

.blog-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.blog-date, .blog-category {
  color: var(--text-muted);
  font-size: 0.875rem;
}

.blog-category {
  background-color: var(--light-muted);
  padding: 0.25rem 0.5rem;
  border-radius: var(--border-radius-sm);
}

.blog-content h2 {
  margin-bottom: 1rem;
}

.blog-content h2 a {
  color: var(--dark-color);
}

.blog-content h2 a:hover {
  color: var(--primary-color);
}

.blog-content p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

/* Sidebar Styles */
.blog-sidebar {
  display: grid;
  gap: 2rem;
}

.sidebar-widget {
  background-color: white;
  padding: 1.5rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.sidebar-widget h3 {
  margin-bottom: 1.25rem;
  position: relative;
  padding-bottom: 0.75rem;
}

.sidebar-widget h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background-color: var(--primary-color);
}

.category-list {
  list-style: none;
  margin: 0;
}

.category-list li {
  margin-bottom: 0.75rem;
}

.category-list li a {
  display: flex;
  justify-content: space-between;
  color: var(--text-color);
}

.category-list li a:hover {
  color: var(--primary-color);
}

.popular-posts {
  display: grid;
  gap: 1.25rem;
}

.popular-post {
  display: flex;
  gap: 0.75rem;
}

.popular-post img {
  width: 80px;
  height: 60px;
  object-fit: cover;
  border-radius: var(--border-radius-sm);
}

.popular-post h4 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.popular-post span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.sidebar-form {
  display: grid;
  gap: 1rem;
}

.sidebar-form input {
  padding: 0.75rem;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-sm);
}

/* Blog Post Single */
.blog-post-single {
  padding: 5rem 0;
}

.post-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.post-meta {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1rem;
}

.post-header h1 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.post-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.author-image {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.post-author div {
  text-align: left;
}

.post-author span {
  font-size: 0.875rem;
  color: var(--text-muted);
  display: block;
  margin-bottom: 0.25rem;
}

.post-author h3 {
  font-size: 1.125rem;
  margin: 0;
}

.post-featured-image {
  margin-bottom: 2.5rem;
}

.post-featured-image img {
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: cover;
  border-radius: var(--border-radius);
}

.post-content {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.125rem;
}

.post-intro {
  font-size: 1.25rem;
  color: var(--dark-muted);
  margin-bottom: 2rem;
}

.post-content h2 {
  font-size: 1.75rem;
  margin-top: 2.5rem;
  margin-bottom: 1.25rem;
}

.post-image {
  margin: 2rem 0;
}

.post-image img {
  width: 100%;
  border-radius: var(--border-radius);
}

.post-image figcaption {
  font-size: 0.875rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 0.75rem;
}

.post-cta {
  background-color: var(--light-muted);
  padding: 2rem;
  border-radius: var(--border-radius);
  margin: 3rem 0;
  text-align: center;
}

.post-cta h3 {
  margin-bottom: 0.75rem;
}

.post-cta p {
  margin-bottom: 1.5rem;
}

.post-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 2.5rem 0;
}

.post-tags span {
  color: var(--text-muted);
}

.post-tags a {
  background-color: var(--light-muted);
  color: var(--text-color);
  padding: 0.25rem 0.75rem;
  border-radius: var(--border-radius-sm);
  font-size: 0.875rem;
}

.post-tags a:hover {
  background-color: var(--primary-light);
  color: white;
}

.post-share {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 3rem;
}

.post-share span {
  color: var(--text-muted);
}

.post-share a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background-color: var(--light-muted);
  color: var(--dark-color);
  border-radius: 50%;
  transition: var(--transition);
}

.post-share a:hover {
  background-color: var(--primary-color);
  color: white;
}

.post-navigation {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
  border-top: 1px solid var(--border-color);
  padding-top: 2rem;
}

.prev-post, .next-post {
  display: flex;
}

.next-post {
  justify-content: flex-end;
  text-align: right;
}

.post-navigation a {
  color: var(--text-color);
}

.post-navigation a:hover {
  color: var(--primary-color);
}

.post-navigation span {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
  display: block;
}

.post-navigation h4 {
  font-size: 1.125rem;
  margin: 0;
}

.related-posts {
  padding: 4rem 0;
  background-color: var(--light-color);
}

.related-posts h2 {
  text-align: center;
  margin-bottom: 3rem;
}

.related-posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.related-post {
  background-color: white;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.related-post:hover {
  transform: translateY(-5px);
}

.related-post img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.related-post h3 {
  font-size: 1.125rem;
  padding: 1rem;
  margin: 0;
}

.related-post .post-date {
  display: block;
  padding: 0 1rem 1rem;
  color: var(--text-muted);
  font-size: 0.875rem;
}

/* About Page Styles */
.about-intro {
  padding: 5rem 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-content h2 {
  margin-bottom: 1.5rem;
  font-size: 2.25rem;
}

.about-image img {
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.mission-values {
  padding: 5rem 0;
  background-color: var(--light-color);
}

.mission-values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
}

.mission-box, .values-box {
  background-color: white;
  padding: 2.5rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.mission-box h2, .values-box h2 {
  position: relative;
  padding-bottom: 1rem;
  margin-bottom: 1.5rem;
}

.mission-box h2::after, .values-box h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: var(--primary-color);
}

.values-list {
  list-style: none;
  margin: 0;
}

.values-list li {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.values-list li:last-child {
  margin-bottom: 0;
}

.values-list li svg {
  color: var(--primary-color);
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.values-list li h3 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.values-list li p {
  color: var(--text-muted);
  margin: 0;
}

.team-section {
  padding: 5rem 0;
  text-align: center;
}

.team-section h2 {
  margin-bottom: 1rem;
  font-size: 2.25rem;
}

.section-intro {
  max-width: 800px;
  margin: 0 auto 3rem;
  font-size: 1.125rem;
  color: var(--text-muted);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.team-member {
  background-color: white;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.team-member:hover {
  transform: translateY(-5px);
}

.team-member img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.team-member h3 {
  margin: 1.25rem 0 0.25rem;
}

.team-member p {
  color: var(--text-muted);
  padding: 0 1.5rem;
  margin-bottom: 1rem;
}

.team-member p:first-of-type {
  color: var(--primary-color);
  font-weight: 500;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background-color: var(--light-muted);
  color: var(--dark-color);
  border-radius: 50%;
  transition: var(--transition);
}

.social-links a:hover {
  background-color: var(--primary-color);
  color: white;
}

.achievements {
  padding: 5rem 0;
  background-color: var(--light-color);
}

.achievements h2 {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 2.25rem;
}

.achievements-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.achievement {
  background-color: white;
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  display: flex;
  gap: 1.5rem;
}

.achievement-icon {
  color: var(--primary-color);
  flex-shrink: 0;
}

.achievement-content h3 {
  margin-bottom: 0.75rem;
}

.achievement-content p {
  color: var(--text-muted);
  margin: 0;
}

.about-testimonials {
  background-color: white;
}

.about-cta {
  margin-top: 0;
}

/* Services Page Styles */
.services-intro {
  padding: 5rem 0;
  text-align: center;
}

.intro-content {
  max-width: 900px;
  margin: 0 auto;
}

.intro-content h2 {
  font-size: 2.25rem;
  margin-bottom: 1.5rem;
}

.service-categories {
  padding: 5rem 0;
  background-color: var(--light-color);
}

.service-category {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 5rem;
  align-items: center;
}

.service-category:last-child {
  margin-bottom: 0;
}

.service-category.reverse {
  grid-template-columns: 1.5fr 1fr;
}

.service-category img {
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  height: 100%;
  object-fit: cover;
}

.category-content h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.category-content h3 {
  font-size: 1.25rem;
  margin: 1.5rem 0 1rem;
}

.category-content ul {
  list-style-type: none;
  margin-bottom: 1.5rem;
}

.category-content ul li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
}

.category-content ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.additional-services {
  padding: 5rem 0;
}

.additional-services h2 {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 2.25rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.service-card {
  background-color: white;
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  text-align: center;
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-icon {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.service-card h3 {
  margin-bottom: 1rem;
}

.service-card p {
  color: var(--text-muted);
  margin: 0;
}

.process {
  padding: 5rem 0;
  background-color: var(--light-color);
}

.process h2 {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 2.25rem;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.process-step {
  background-color: white;
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  text-align: center;
  position: relative;
}

.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: var(--primary-color);
  color: white;
  font-size: 1.5rem;
  font-weight: bold;
  border-radius: 50%;
  margin: 0 auto 1.5rem;
}

.process-step h3 {
  margin-bottom: 1rem;
}

.process-step p {
  color: var(--text-muted);
  margin: 0;
}

.services-testimonials {
  background-color: white;
}

.pricing {
  padding: 5rem 0;
}

.pricing h2 {
  text-align: center;
  margin-bottom: 1rem;
  font-size: 2.25rem;
}

.pricing-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
  color: var(--text-muted);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.pricing-card {
  background-color: white;
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  text-align: center;
}

.pricing-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.price {
  font-size: 1.75rem;
  color: var(--primary-color);
  font-weight: bold;
  margin-bottom: 1.5rem;
}

.pricing-note {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.875rem;
  max-width: 800px;
  margin: 0 auto;
}

.faqs {
  padding: 5rem 0;
  background-color: var(--light-color);
}

.faqs h2 {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 2.25rem;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background-color: white;
  padding: 1.5rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  margin-bottom: 1rem;
}

.faq-item:last-child {
  margin-bottom: 0;
}

.faq-item h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.faq-item p {
  color: var(--text-muted);
  margin: 0;
}

/* Contact Page Styles */
.contact-section {
  padding: 5rem 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
}

.contact-info h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.contact-methods {
  margin: 2rem 0;
}

.contact-method {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.method-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-color: var(--light-muted);
  color: var(--primary-color);
  border-radius: 50%;
  flex-shrink: 0;
}

.method-details h3 {
  margin-bottom: 0.5rem;
}

.method-details address,
.method-details p {
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.method-details a {
  color: var(--primary-color);
}

.contact-hours {
  font-size: 0.875rem;
}

.office-hours {
  background-color: var(--light-muted);
  padding: 1.5rem;
  border-radius: var(--border-radius);
}

.office-hours h3 {
  margin-bottom: 1rem;
}

.hours-table {
  width: 100%;
  margin-bottom: 1rem;
}

.hours-table td {
  padding: 0.5rem 0;
}

.hours-table td:first-child {
  font-weight: 500;
}

.emergency-note {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin: 0;
}

.contact-form-container {
  background-color: white;
  padding: 2.5rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.contact-form-container h2 {
  margin-bottom: 1rem;
}

.contact-form {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

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

.form-group.full-width {
  grid-column: span 2;
}

.form-group label {
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.75rem;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-sm);
  font-family: inherit;
  font-size: 1rem;
}

.form-group textarea {
  resize: vertical;
}

.checkbox-group {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.75rem;
}

.checkbox-group input {
  width: auto;
}

.form-submit {
  grid-column: span 2;
  margin-top: 1rem;
}

.map-section {
  padding: 5rem 0;
  background-color: var(--light-color);
}

.map-section h2 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 2.25rem;
}

.map-container {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.contact-faqs {
  margin-top: 0;
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1000;
  justify-content: center;
  align-items: center;
}

.modal-content {
  background-color: white;
  padding: 2rem;
  border-radius: var(--border-radius);
  max-width: 500px;
  width: 100%;
  text-align: center;
  position: relative;
}

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

.modal-content svg {
  color: var(--success-color);
  margin: 0 auto 1.5rem;
}

.modal-content h2 {
  margin-bottom: 1rem;
}

.modal-content p {
  margin-bottom: 1.5rem;
}

.close-btn {
  margin-top: 1rem;
}

/* Tip of the Day */
.tip-of-the-day {
  padding: 3rem 0;
  background-color: white;
}

.tip-of-the-day h2 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 2rem;
}

.tip-content {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  background-color: var(--light-color);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  max-width: 1000px;
  margin: 0 auto;
}

.tip-content svg {
  color: var(--primary-color);
  flex-shrink: 0;
}

.tip-content h3 {
  margin-bottom: 0.75rem;
  font-size: 1.5rem;
}

.tip-content p {
  margin: 0;
}

.sidebar-tip {
  flex-direction: column;
  padding: 1.5rem;
}

.sidebar-tip svg {
  margin-bottom: 1rem;
}

/* Glossary */
.glossary {
  background-color: var(--light-muted);
  padding: 3rem 0;
}

.glossary h3 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.75rem;
}

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

.glossary-item h4 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

.glossary-item p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: white;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  z-index: 999;
  display: none;
}

.cookie-content {
  padding: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.cookie-content p {
  margin-bottom: 1.25rem;
  max-width: 800px;
}

.cookie-buttons {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.cookie-content a {
  font-size: 0.875rem;
}

/* Responsive Styles */
@media screen and (max-width: 1024px) {
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .hero p {
    font-size: 1.125rem;
  }
  
  .about-grid, 
  .service-category,
  .service-category.reverse {
    grid-template-columns: 1fr;
  }
  
  .service-category img {
    height: 300px;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 768px) {
  header .container {
    flex-direction: column;
  }
  
  .logo {
    margin-bottom: 1rem;
  }
  
  nav ul {
    justify-content: center;
  }
  
  nav ul li {
    margin: 0 0.75rem;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .hero p {
    font-size: 1rem;
  }
  
  .blog-container {
    grid-template-columns: 1fr;
  }
  
  .blog-post {
    grid-template-columns: 1fr;
  }
  
  .blog-image img {
    height: 250px;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .footer-about {
    margin: 0 auto;
  }
  
  .footer-logo {
    margin: 0 auto 1rem;
  }
  
  .footer-contact address p {
    justify-content: center;
  }
  
  .social-icons {
    justify-content: center;
  }
  
  .contact-form {
    grid-template-columns: 1fr;
  }
  
  .form-group.full-width {
    grid-column: span 1;
  }
  
  .form-submit {
    grid-column: span 1;
  }
  
  .tip-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .post-navigation {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .next-post {
    justify-content: flex-start;
    text-align: left;
  }
}

@media screen and (max-width: 480px) {
  .hero {
    padding: 4rem 0;
  }
  
  .hero h1 {
    font-size: 1.75rem;
  }
  
  .features h2,
  .popular-tours h2,
  .testimonials h2,
  .cta h2,
  .section-intro,
  .achievements h2,
  .additional-services h2,
  .process h2,
  .faqs h2,
  .map-section h2 {
    font-size: 1.75rem;
  }
  
  .feature-grid,
  .tours-grid,
  .testimonial-slider,
  .related-posts-grid,
  .team-grid,
  .achievements-grid,
  .services-grid,
  .process-steps,
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  
  .post-meta {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .post-header h1 {
    font-size: 1.75rem;
  }
  
  .cookie-buttons {
    flex-direction: column;
    width: 100%;
  }
}
