/* Base styles and reset */
:root {
  --primary-color: #1a73e8;
  --primary-dark: #0d47a1;
  --primary-light: #64b5f6;
  --secondary-color: #ff7043;
  --accent-color: #43a047;
  --text-color: #333;
  --text-light: #757575;
  --white: #ffffff;
  --light-gray: #f5f5f5;
  --medium-gray: #e0e0e0;
  --dark-gray: #616161;
  --black: #212121;
  --danger: #f44336;
  --success: #4caf50;
  --warning: #ff9800;
  --border-radius: 4px;
  --box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  --box-shadow-hover: 0 5px 15px rgba(0, 0, 0, 0.15);
  --transition: all 0.3s ease;
  --container-width: 1200px;
  --spacing-xs: 0.25rem;
  --spacing-sm: 0.5rem;
  --spacing-md: 1rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --font-size-base: 16px;
  --line-height-base: 1.5;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  color: var(--text-color);
  background-color: var(--white);
  overflow-x: hidden;
}

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

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

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

ul, ol {
  list-style: none;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

h1, h2, h3, h4, h5, h6 {
  margin-bottom: var(--spacing-md);
  font-weight: 600;
  line-height: 1.2;
  color: var(--black);
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1rem;
}

p {
  margin-bottom: var(--spacing-md);
}

.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

section {
  padding: var(--spacing-xl) 0;
}

.text-center {
  text-align: center;
}

/* Buttons */
.btn {
  display: inline-block;
  font-weight: 600;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  cursor: pointer;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: var(--border-radius);
  transition: var(--transition);
  text-decoration: none;
  border: none;
}

.btn:hover {
  transform: translateY(-2px);
}

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

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

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

.btn-secondary:hover {
  background-color: #e65100;
  color: var(--white);
}

.btn-tertiary {
  background-color: var(--light-gray);
  color: var(--text-color);
  border: 1px solid var(--medium-gray);
}

.btn-tertiary:hover {
  background-color: var(--medium-gray);
}

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

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

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

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

.logo img {
  height: 100%;
  width: auto;
}

nav {
  display: flex;
  align-items: center;
}

.nav-links {
  display: flex;
  gap: var(--spacing-md);
  margin-right: var(--spacing-lg);
}

.nav-links li a {
  color: var(--text-color);
  font-weight: 500;
  padding: 0.5rem 0.75rem;
  border-radius: var(--border-radius);
  transition: var(--transition);
}

.nav-links li a:hover,
.nav-links li a.active {
  color: var(--primary-color);
  background-color: rgba(26, 115, 232, 0.1);
}

.nav-utilities {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
}

#font-size-decrease {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-color);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  border-radius: 50%;
  transition: var(--transition);
}

#font-size-decrease:hover {
  background-color: var(--light-gray);
}

.language-switcher {
  position: relative;
}

#language-toggle {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-color);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem;
  border-radius: var(--border-radius);
  transition: var(--transition);
}

#language-toggle:hover {
  background-color: var(--light-gray);
}

.language-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  background-color: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  padding: 0.5rem 0;
  min-width: 120px;
  display: none;
}

.language-dropdown.show {
  display: block;
}

.language-dropdown a {
  display: block;
  padding: 0.5rem 1rem;
  color: var(--text-color);
  transition: var(--transition);
}

.language-dropdown a:hover,
.language-dropdown a.active {
  background-color: var(--light-gray);
  color: var(--primary-color);
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 6px;
}

.mobile-menu-btn span {
  display: block;
  width: 30px;
  height: 3px;
  background-color: var(--text-color);
  border-radius: 3px;
  transition: var(--transition);
}

/* Hero Section */
.hero {
  background-color: var(--primary-light);
  color: var(--white);
  position: relative;
  overflow: hidden;
  padding: 5rem 0;
  background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('images/1.jpg');
  background-size: cover;
  background-position: center;
}

.hero-content {
  max-width: 600px;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: var(--white);
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Features Section */
.features {
  background-color: var(--white);
  text-align: center;
}

.features h2 {
  margin-bottom: 3rem;
}

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

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

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

.feature-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(26, 115, 232, 0.1);
  border-radius: 50%;
  color: var(--primary-color);
}

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

/* Popular Tours Section */
.popular-tours {
  background-color: var(--light-gray);
}

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

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

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

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

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

.tour-content {
  padding: 1.5rem;
}

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

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

.tour-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.price {
  font-weight: bold;
  color: var(--primary-color);
}

/* Testimonials Section */
.testimonials {
  background-color: var(--white);
  text-align: center;
}

.testimonials h2 {
  margin-bottom: 3rem;
}

.testimonial-slider {
  position: relative;
}

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

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

.testimonial-content::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid var(--light-gray);
}

.testimonial-content p {
  font-size: 1.1rem;
  font-style: italic;
  margin-bottom: 0;
}

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

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

.testimonial-author h4 {
  margin-bottom: 0.25rem;
}

.testimonial-author p {
  margin-bottom: 0;
  color: var(--text-light);
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
  gap: 0.5rem;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--medium-gray);
  cursor: pointer;
  transition: var(--transition);
}

.dot.active,
.dot:hover {
  background-color: var(--primary-color);
}

/* Blog Preview Section */
.blog-preview {
  background-color: var(--light-gray);
  text-align: center;
}

.blog-preview h2 {
  margin-bottom: 0.5rem;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 3rem;
}

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

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

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--box-shadow-hover);
}

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

.blog-content {
  padding: 1.5rem;
  text-align: left;
}

.blog-content h3 {
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
}

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

.read-more {
  color: var(--primary-color);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.read-more:hover {
  color: var(--primary-dark);
}

.read-more::after {
  content: '→';
  transition: var(--transition);
}

.read-more:hover::after {
  transform: translateX(3px);
}

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

.cta h2 {
  color: var(--white);
  margin-bottom: 1rem;
}

.cta p {
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 2rem;
}

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

.cta .btn-primary:hover {
  background-color: var(--light-gray);
}

/* Footer */
footer {
  background-color: var(--black);
  color: var(--white);
  padding-top: 4rem;
}

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

.footer-column h3 {
  color: var(--white);
  margin-bottom: 1.5rem;
  font-size: 1.25rem;
}

.footer-logo {
  height: 50px;
  margin-bottom: 1rem;
}

.footer-logo img {
  height: 100%;
  width: auto;
}

.footer-column p {
  color: var(--medium-gray);
}

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

.footer-links a {
  color: var(--medium-gray);
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--white);
}

address {
  font-style: normal;
  color: var(--medium-gray);
}

address p {
  margin-bottom: 0.5rem;
}

address a {
  color: var(--medium-gray);
}

address a:hover {
  color: var(--white);
}

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

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--white);
  transition: var(--transition);
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2rem 0;
  text-align: center;
}

.footer-bottom p {
  color: var(--medium-gray);
  margin-bottom: 0;
}

.registration-info {
  margin-top: 1rem;
  font-size: 0.875rem;
  color: var(--medium-gray);
}

/* Cookie Consent */
.cookie-consent {
  position: fixed;
  bottom: -100%;
  left: 0;
  width: 100%;
  background-color: var(--white);
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  z-index: 9999;
  transition: bottom 0.5s ease;
}

.cookie-consent.show {
  bottom: 0;
}

.cookie-content {
  padding: 2rem;
  max-width: var(--container-width);
  margin: 0 auto;
}

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

.cookie-buttons {
  display: flex;
  gap: 1rem;
  margin: 1.5rem 0 1rem;
  flex-wrap: wrap;
}

.cookie-more-info {
  font-size: 0.875rem;
  color: var(--text-light);
  margin-bottom: 0;
}

/* Page Header */
.page-header {
  background-color: var(--primary-light);
  color: var(--white);
  text-align: center;
  padding: 4rem 0;
  background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('images/2.jpg');
  background-size: cover;
  background-position: center;
}

.page-header h1 {
  color: var(--white);
  margin-bottom: 0.5rem;
}

.page-header p {
  font-size: 1.25rem;
  max-width: 600px;
  margin: 0 auto;
}

/* Blog Page Styles */
.blog-section {
  background-color: var(--light-gray);
}

.blog-filters {
  display: flex;
  justify-content: space-between;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.search-box {
  display: flex;
  max-width: 400px;
  width: 100%;
}

.search-box input {
  flex: 1;
  padding: 0.75rem 1rem;
  border: 1px solid var(--medium-gray);
  border-right: none;
  border-radius: var(--border-radius) 0 0 var(--border-radius);
}

.search-box button {
  background-color: var(--primary-color);
  color: var(--white);
  border: none;
  padding: 0 1rem;
  cursor: pointer;
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

.category-filter select {
  padding: 0.75rem 1rem;
  border: 1px solid var(--medium-gray);
  border-radius: var(--border-radius);
  background-color: var(--white);
  min-width: 200px;
}

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

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

.blog-category {
  color: var(--primary-color);
  font-weight: 600;
}

.pagination {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 3rem;
}

.current-page {
  font-size: 0.875rem;
  color: var(--text-light);
}

.page-buttons {
  display: flex;
  gap: 0.5rem;
}

.page-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--white);
  color: var(--text-color);
  font-weight: 600;
  transition: var(--transition);
}

.page-btn:hover,
.page-btn.active {
  background-color: var(--primary-color);
  color: var(--white);
}

/* Newsletter Section */
.newsletter {
  background-color: var(--primary-light);
  color: var(--white);
}

.newsletter-content {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.newsletter h2 {
  color: var(--white);
  margin-bottom: 1rem;
}

.newsletter p {
  margin-bottom: 2rem;
}

.newsletter-form {
  display: flex;
  gap: 1rem;
}

.newsletter-form input {
  flex: 1;
  padding: 0.75rem 1rem;
  border: none;
  border-radius: var(--border-radius);
}

/* Blog Post Styles */
.blog-post-hero {
  height: 500px;
  overflow: hidden;
}

.blog-post-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-post {
  background-color: var(--white);
  padding: 4rem 0;
}

.blog-post-header {
  margin-bottom: 3rem;
}

.blog-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
}

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

.author-name {
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.author-title {
  color: var(--text-light);
  margin-bottom: 0;
  font-size: 0.875rem;
}

.blog-post-content {
  max-width: 800px;
  margin: 0 auto;
}

.blog-post-content p {
  font-size: 1.1rem;
  line-height: 1.7;
}

.blog-post-content h2 {
  margin-top: 2.5rem;
  margin-bottom: 1.5rem;
}

.blog-post-content h3 {
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.blog-post-content ul,
.blog-post-content ol {
  margin-bottom: 2rem;
  padding-left: 2rem;
}

.blog-post-content ul {
  list-style: disc;
}

.blog-post-content ol {
  list-style: decimal;
}

.blog-post-content li {
  margin-bottom: 0.75rem;
}

.lead {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--text-light);
}

figure {
  margin: 2.5rem 0;
}

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

.callout {
  background-color: rgba(26, 115, 232, 0.1);
  border-left: 4px solid var(--primary-color);
  padding: 1.5rem;
  margin: 2.5rem 0;
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

.callout p {
  margin-bottom: 0;
}

.blog-share {
  margin: 4rem 0;
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.blog-share p {
  margin-bottom: 0;
  font-weight: 600;
}

.social-share {
  display: flex;
  gap: 0.75rem;
}

.social-share a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--light-gray);
  color: var(--text-color);
  transition: var(--transition);
}

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

.blog-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 4rem;
}

.blog-nav-prev,
.blog-nav-next {
  border: 1px solid var(--medium-gray);
  border-radius: var(--border-radius);
  padding: 1.5rem;
  transition: var(--transition);
}

.blog-nav-prev:hover,
.blog-nav-next:hover {
  background-color: var(--light-gray);
}

.blog-nav a {
  display: block;
  color: var(--text-color);
}

.blog-nav a:hover {
  color: var(--text-color);
}

.blog-nav span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-light);
  margin-bottom: 0.5rem;
}

.blog-nav h4 {
  margin-bottom: 0;
  font-size: 1.1rem;
}

.blog-nav-next {
  text-align: right;
}

.related-posts {
  margin-bottom: 3rem;
}

.related-posts h3 {
  margin-bottom: 2rem;
  text-align: center;
}

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

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

.related-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--box-shadow-hover);
}

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

.related-card h4 {
  padding: 1rem;
  margin-bottom: 0;
  font-size: 1rem;
}

.related-card a {
  color: var(--text-color);
}

.related-card a:hover {
  color: var(--primary-color);
}

/* About Page Styles */
.about-intro {
  background-color: var(--white);
}

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

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

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

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

.values {
  background-color: var(--light-gray);
  text-align: center;
}

.values h2 {
  margin-bottom: 3rem;
}

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

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

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--box-shadow-hover);
}

.value-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(26, 115, 232, 0.1);
  border-radius: 50%;
  color: var(--primary-color);
}

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

.team {
  background-color: var(--white);
  text-align: center;
}

.team h2 {
  margin-bottom: 0.5rem;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

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

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

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

.team-member h3 {
  margin: 1.5rem 0 0.5rem;
}

.team-member p {
  padding: 0 1.5rem;
  margin-bottom: 1.5rem;
}

.team-member p:first-of-type {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

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

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

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

.achievements {
  background-color: var(--primary-color);
  color: var(--white);
  text-align: center;
}

.achievements h2 {
  color: var(--white);
  margin-bottom: 3rem;
}

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

.achievement-number {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.5rem;
}

.achievement-card p {
  font-size: 1.1rem;
  margin-bottom: 0;
}

.awards {
  background-color: var(--white);
  text-align: center;
}

.awards h2 {
  margin-bottom: 3rem;
}

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

.award-card {
  background-color: var(--light-gray);
  padding: 2rem;
  border-radius: var(--border-radius);
  transition: var(--transition);
}

.award-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--box-shadow);
}

.award-card img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin: 0 auto 1.5rem;
}

.award-card h3 {
  margin-bottom: 0.5rem;
}

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

.partners {
  background-color: var(--light-gray);
  text-align: center;
}

.partners h2 {
  margin-bottom: 0.5rem;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.partner-logo {
  background-color: var(--white);
  padding: 1.5rem;
  border-radius: var(--border-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.partner-logo:hover {
  transform: translateY(-5px);
  box-shadow: var(--box-shadow);
}

.partner-logo img {
  max-width: 120px;
  max-height: 60px;
  object-fit: contain;
}

/* Services Page Styles */
.services-intro {
  background-color: var(--white);
  text-align: center;
}

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

.services-intro h2 {
  margin-bottom: 1.5rem;
}

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

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

.service-category.reverse {
  direction: rtl;
}

.service-category.reverse .service-content {
  direction: ltr;
}

.service-image img {
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  width: 100%;
  height: auto;
}

.service-content h2 {
  margin-bottom: 1.5rem;
}

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

.service-features {
  margin-bottom: 2rem;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

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

.service-features li svg {
  color: var(--success);
  flex-shrink: 0;
}

.additional-services {
  background-color: var(--light-gray);
  text-align: center;
}

.additional-services h2 {
  margin-bottom: 3rem;
}

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

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

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

.service-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(26, 115, 232, 0.1);
  border-radius: 50%;
  color: var(--primary-color);
}

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

.popular-destinations {
  background-color: var(--white);
  text-align: center;
}

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

.destination-card {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  height: 250px;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.destination-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--box-shadow-hover);
}

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

.destination-card:hover img {
  transform: scale(1.05);
}

.destination-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  color: var(--white);
  text-align: left;
}

.destination-overlay h3 {
  color: var(--white);
  margin-bottom: 1rem;
}

.pricing-info {
  background-color: var(--light-gray);
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

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

.pricing-content .btn {
  margin-top: 1rem;
}

.booking-steps h3 {
  margin-bottom: 2rem;
}

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

.process-list li {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: var(--primary-color);
  color: var(--white);
  border-radius: 50%;
  font-weight: 700;
  flex-shrink: 0;
}

.step-content h4 {
  margin-bottom: 0.5rem;
}

.step-content p {
  margin-bottom: 0;
  color: var(--text-light);
}

.faq {
  background-color: var(--white);
}

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

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

.accordion-item {
  margin-bottom: 1rem;
  border: 1px solid var(--medium-gray);
  border-radius: var(--border-radius);
}

.accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 1.5rem;
  background-color: var(--white);
  border: none;
  text-align: left;
  cursor: pointer;
  font-weight: 600;
  font-size: 1.1rem;
  transition: var(--transition);
}

.accordion-header:hover {
  background-color: var(--light-gray);
}

.accordion-icon {
  transition: var(--transition);
}

.accordion-item.active .accordion-icon {
  transform: rotate(180deg);
}

.accordion-content {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.accordion-item.active .accordion-content {
  padding: 0 1.5rem 1.5rem;
  max-height: 500px;
}

/* Contact Page Styles */
.contact-section {
  background-color: var(--white);
}

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

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

.contact-info > p {
  margin-bottom: 2.5rem;
}

.info-card {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.info-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(26, 115, 232, 0.1);
  border-radius: 50%;
  color: var(--primary-color);
  flex-shrink: 0;
}

.info-content h3 {
  margin-bottom: 0.5rem;
}

.info-content address {
  font-style: normal;
}

.details {
  font-size: 0.875rem;
  color: var(--text-light);
}

.social-connect {
  margin-top: 3rem;
}

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

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

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--medium-gray);
  border-radius: var(--border-radius);
  background-color: var(--white);
}

.form-group textarea {
  resize: vertical;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.checkbox-group input {
  width: auto;
  margin-top: 0.25rem;
}

.map-section {
  background-color: var(--light-gray);
  text-align: center;
}

.map-section h2 {
  margin-bottom: 2rem;
}

.map-container {
  height: 450px;
  border-radius: var(--border-radius);
  overflow: hidden;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.faq-section {
  background-color: var(--white);
}

.thank-you-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.thank-you-modal.show {
  opacity: 1;
  visibility: visible;
}

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

.close-modal {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 1.5rem;
  cursor: pointer;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: var(--transition);
}

.close-modal:hover {
  background-color: var(--light-gray);
}

.modal-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(76, 175, 80, 0.1);
  border-radius: 50%;
  color: var(--success);
}

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

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

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

/* Responsive Styles */
@media (max-width: 1200px) {
  .hero h1 {
    font-size: 2.5rem;
  }

  .service-category {
    gap: 3rem;
  }
}

@media (max-width: 992px) {
  .about-grid,
  .pricing-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .service-category {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .service-category.reverse {
    direction: ltr;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero h1 {
    font-size: 2.25rem;
  }
}

@media (max-width: 768px) {
  header .container {
    flex-wrap: wrap;
  }

  nav {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background-color: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 2rem;
    z-index: 999;
    transition: var(--transition);
    overflow-y: auto;
  }

  nav.active {
    left: 0;
  }

  .nav-links {
    flex-direction: column;
    width: 100%;
    margin-right: 0;
    margin-bottom: 2rem;
  }

  .nav-links li a {
    display: block;
    padding: 1rem 0;
    border-bottom: 1px solid var(--light-gray);
  }

  .nav-utilities {
    width: 100%;
    justify-content: flex-start;
  }

  .mobile-menu-btn {
    display: flex;
  }

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

  .hero p {
    font-size: 1.1rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: flex-start;
  }

  .blog-nav {
    grid-template-columns: 1fr;
  }

  .blog-nav-next {
    text-align: left;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }

  section {
    padding: var(--spacing-lg) 0;
  }
}

@media (max-width: 576px) {
  .footer-content {
    grid-template-columns: 1fr;
  }

  .blog-filters {
    flex-direction: column;
  }

  .blog-post-hero {
    height: 300px;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.75rem;
  }
}

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
    animation: none !important;
  }
}

/* Print styles */
@media print {
  header, footer, .cta, .cookie-consent, .blog-share, .blog-nav, .related-posts {
    display: none;
  }

  body {
    font-size: 12pt;
    line-height: 1.4;
    color: #000;
    background: #fff;
  }

  a {
    color: #000;
    text-decoration: underline;
  }

  .container {
    max-width: 100%;
  }

  .blog-post-content {
    max-width: 100%;
  }
}
