/* Reset and Base Styles */
:root {
  --primary-color: #3f87a6;
  --primary-dark: #2c6079;
  --primary-light: #5ba8c7;
  --secondary-color: #e67e22;
  --secondary-dark: #c46a18;
  --text-color: #333;
  --text-light: #666;
  --light-bg: #f5f7fa;
  --white: #ffffff;
  --gray-light: #eaeaea;
  --gray-medium: #cccccc;
  --gray-dark: #888888;
  --success: #27ae60;
  --warning: #f39c12;
  --error: #e74c3c;
  --box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  --border-radius: 6px;
  --border-radius-lg: 12px;
  --transition: all 0.3s ease;
  --container-max-width: 1200px;
  --container-padding: 0 20px;
  --section-spacing: 80px;
  --card-padding: 25px;
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Open Sans', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

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

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

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

h2 {
  font-size: 2rem;
  margin-bottom: 1.2rem;
}

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

p {
  margin-bottom: 1.5rem;
}

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

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

ul, ol {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

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

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

.btn {
  display: inline-block;
  background-color: var(--primary-color);
  color: var(--white);
  padding: 12px 24px;
  border-radius: var(--border-radius);
  font-weight: 600;
  text-align: center;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  text-decoration: none;
}

.btn:hover {
  background-color: var(--primary-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.btn-small {
  padding: 8px 16px;
  font-size: 0.9rem;
  border-radius: var(--border-radius);
  background-color: var(--primary-color);
  color: var(--white);
  font-weight: 600;
  display: inline-block;
  transition: var(--transition);
}

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

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

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

/* Custom frame for images */
.custom-frame {
  border-radius: 12px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1), 0 6px 6px rgba(0, 0, 0, 0.05);
  border: 5px solid var(--white);
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.custom-frame:hover {
  transform: scale(1.02);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15), 0 8px 8px rgba(0, 0, 0, 0.1);
}

/* Header Styles */
header {
  background-color: var(--white);
  padding: 20px 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-container {
  padding-left: 20px;
}

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

.nav-links {
  display: flex;
  list-style: none;
  margin-bottom: 0;
  padding-left: 0;
}

.nav-links li {
  margin: 0 15px;
}

.nav-links a {
  font-weight: 600;
  text-decoration: none;
  color: var(--text-color);
  padding: 10px 5px;
  position: relative;
}

.nav-links a:after {
  content: '';
  position: absolute;
  width: 0;
  height: 3px;
  bottom: 0;
  left: 0;
  background-color: var(--primary-color);
  transition: width 0.3s ease;
}

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

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

.hamburger {
  display: none;
  cursor: pointer;
  flex-direction: column;
  margin-right: 20px;
}

.hamburger .line {
  width: 25px;
  height: 3px;
  background-color: var(--text-color);
  margin: 3px 0;
  transition: var(--transition);
}

/* Hero Section */
.hero {
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('images/1.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--white);
  text-align: center;
  padding: 150px 20px;
  margin-bottom: var(--section-spacing);
}

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

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

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

/* Features Section */
.features {
  padding: 80px 0;
  background-color: var(--light-bg);
}

.features h2 {
  text-align: center;
  margin-bottom: 50px;
}

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

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

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

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

.feature-card .icon svg {
  width: 50px;
  height: 50px;
}

.feature-card h3 {
  margin-bottom: 15px;
}

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

/* Destinations Section */
.destinations {
  padding: 80px 0;
}

.destinations h2 {
  text-align: center;
  margin-bottom: 50px;
}

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

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

.destination-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.destination-img {
  overflow: hidden;
  height: 200px;
  margin-bottom: 15px;
}

.destination-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.destination-card h3, .destination-card p {
  padding: 0 20px;
}

.destination-card h3 {
  margin-bottom: 10px;
}

.destination-card p {
  margin-bottom: 20px;
  color: var(--text-light);
}

.destination-card .btn-small {
  margin: 0 20px 20px;
}

/* 5 Facts Section */
.facts-container {
  padding: 60px 0;
  background-color: var(--light-bg);
  margin: 60px 0;
}

.facts-container h2 {
  text-align: center;
  margin-bottom: 40px;
}

.facts-box {
  background-color: var(--white);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--box-shadow);
  padding: 30px;
  max-width: 900px;
  margin: 0 auto;
}

.fact {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--gray-light);
}

.fact:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

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

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

/* Testimonials Section */
.testimonials {
  padding: 80px 0;
  text-align: center;
}

.testimonials h2 {
  margin-bottom: 50px;
}

.testimonial {
  max-width: 800px;
  margin: 0 auto;
  padding: 30px;
  background-color: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.quote {
  position: relative;
  padding: 20px 0;
  margin-bottom: 30px;
}

.quote:before, .quote:after {
  content: '"';
  font-size: 4rem;
  color: var(--primary-light);
  position: absolute;
  opacity: 0.3;
}

.quote:before {
  top: -20px;
  left: -10px;
}

.quote:after {
  content: '"';
  bottom: -60px;
  right: -10px;
}

.quote p {
  font-size: 1.2rem;
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 0;
}

.client {
  display: flex;
  align-items: center;
  justify-content: center;
}

.client-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 15px;
}

.client-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.client-info h4 {
  margin-bottom: 5px;
}

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

/* CTA Section */
.cta {
  padding: 80px 0;
  text-align: center;
  background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/3.jpg');
  background-size: cover;
  background-position: center;
  color: var(--white);
  margin-bottom: 0;
}

.cta h2 {
  color: var(--white);
  margin-bottom: 20px;
}

.cta p {
  margin-bottom: 30px;
  font-size: 1.1rem;
}

/* Footer Styles */
footer {
  background-color: #2c3e50;
  color: var(--white);
  padding: 60px 0 0;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 20px;
}

.footer-column h3 {
  color: var(--white);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

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

.footer-column p {
  color: #ecf0f1;
  margin-bottom: 20px;
}

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

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li a {
  color: #ecf0f1;
  transition: var(--transition);
}

.footer-column ul li a:hover {
  color: var(--primary-light);
  padding-left: 5px;
}

.social-icons {
  display: flex;
  gap: 15px;
}

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

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

.footer-bottom {
  background-color: #1a252f;
  padding: 20px 0;
  text-align: center;
  margin-top: 40px;
}

.footer-bottom p {
  margin-bottom: 10px;
}

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-links a {
  color: #ecf0f1;
  font-size: 0.9rem;
}

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

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(52, 73, 94, 0.95);
  color: var(--white);
  padding: 20px;
  z-index: 9999;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  transform: translateY(100%);
  transition: transform 0.4s ease-in-out;
}

.cookie-banner.show {
  transform: translateY(0);
}

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

.cookie-content p {
  margin-bottom: 15px;
}

.cookie-buttons {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}

.btn-cookie {
  padding: 8px 16px;
  border-radius: var(--border-radius);
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

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

.btn-cookie.secondary {
  background-color: transparent;
  border: 1px solid var(--white);
  color: var(--white);
}

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

.btn-cookie.secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.cookie-content a {
  color: var(--primary-light);
  text-decoration: underline;
}

/* Page Header */
.page-header {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 60px 0;
  text-align: center;
  margin-bottom: 60px;
}

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

.page-header p {
  font-size: 1.2rem;
  margin-bottom: 0;
}

/* Blog Page Styles */
.blog-featured {
  margin-bottom: 60px;
}

.featured-post {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  background-color: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.featured-image {
  height: 100%;
}

.featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.featured-content {
  padding: 40px;
}

.post-meta {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
  font-size: 0.9rem;
}

.post-meta .date, .post-meta .category {
  color: var(--text-light);
}

.post-meta .category {
  background-color: var(--gray-light);
  padding: 3px 10px;
  border-radius: 20px;
}

.featured-content h2 {
  margin-bottom: 20px;
  font-size: 1.8rem;
}

.featured-content p {
  margin-bottom: 25px;
}

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

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

.post-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.post-image {
  height: 200px;
  overflow: hidden;
}

.post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.post-card:hover .post-image img {
  transform: scale(1.1);
}

.post-card .post-meta {
  padding: 15px 20px 0;
}

.post-card h3 {
  padding: 0 20px;
  margin-bottom: 20px;
  font-size: 1.3rem;
}

.post-card p {
  padding: 0 20px;
  margin-bottom: 20px;
}

.post-card .btn-small {
  margin: 0 20px 20px;
}

.newsletter {
  padding: 60px 0;
  background-color: var(--light-bg);
}

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

.newsletter-content h2 {
  margin-bottom: 15px;
}

.newsletter-content p {
  margin-bottom: 30px;
}

.newsletter-form {
  display: flex;
  max-width: 500px;
  margin: 0 auto;
}

.newsletter-form input {
  flex: 1;
  padding: 12px 15px;
  border: 1px solid var(--gray-medium);
  border-radius: var(--border-radius) 0 0 var(--border-radius);
  font-size: 1rem;
}

.newsletter-form .btn {
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

/* Services Page Styles */
.services-intro {
  margin-bottom: 60px;
}

.services-intro .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.intro-content h2 {
  margin-bottom: 20px;
}

.intro-content p {
  margin-bottom: 30px;
}

.stats-container {
  display: flex;
  gap: 30px;
}

.stat {
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  display: block;
  margin-bottom: 5px;
}

.stat-label {
  color: var(--text-light);
}

.intro-image img {
  border-radius: var(--border-radius);
}

.services-list {
  margin-bottom: 60px;
}

.section-title {
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.section-title:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: var(--primary-color);
}

.service-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 30px;
  background-color: var(--white);
  border-radius: var(--border-radius);
  padding: 30px;
  box-shadow: var(--box-shadow);
  margin-bottom: 30px;
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background-color: var(--primary-light);
  color: var(--white);
  border-radius: 50%;
}

.service-content h3 {
  margin-bottom: 15px;
}

.service-content p {
  margin-bottom: 20px;
}

.service-features {
  margin-bottom: 25px;
}

.service-features li {
  margin-bottom: 10px;
}

.service-process {
  margin-bottom: 60px;
}

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

.process-step {
  display: flex;
  margin-bottom: 30px;
}

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

.step-content h3 {
  margin-bottom: 10px;
}

.step-content p {
  margin-bottom: 0;
}

/* About Page Styles */
.about-story {
  margin-bottom: 60px;
}

.about-story .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.story-content h2 {
  margin-bottom: 20px;
}

.story-image img {
  border-radius: var(--border-radius);
}

.mission-values {
  padding: 60px 0;
  background-color: var(--light-bg);
  margin-bottom: 60px;
}

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

.mission-content h2 {
  text-align: center;
  margin-bottom: 40px;
}

.mission-statement {
  background-color: var(--white);
  padding: 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  margin-bottom: 40px;
}

.mission-statement h3 {
  margin-bottom: 15px;
  color: var(--primary-color);
}

.mission-statement p {
  margin-bottom: 0;
  font-size: 1.1rem;
}

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

.value-card {
  background-color: var(--white);
  padding: 25px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  text-align: center;
  transition: var(--transition);
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.value-icon {
  margin-bottom: 15px;
  color: var(--primary-color);
}

.value-card h3 {
  margin-bottom: 10px;
  font-size: 1.3rem;
}

.value-card p {
  margin-bottom: 0;
}

.team-section {
  margin-bottom: 60px;
}

.team-section h2 {
  text-align: center;
  margin-bottom: 15px;
}

.team-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px;
}

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

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

.team-member:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

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

.team-member h3 {
  margin: 20px 0 5px;
  padding: 0 15px;
}

.team-member p {
  padding: 0 15px;
  margin-bottom: 15px;
}

.team-member p:nth-of-type(1) {
  color: var(--primary-color);
  font-weight: 600;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
}

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

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

.awards-section {
  padding: 60px 0;
  background-color: var(--light-bg);
  margin-bottom: 60px;
}

.awards-section h2 {
  text-align: center;
  margin-bottom: 40px;
}

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

.award {
  background-color: var(--white);
  padding: 25px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  display: flex;
  align-items: center;
  transition: var(--transition);
}

.award:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.award-icon {
  color: var(--secondary-color);
  margin-right: 20px;
}

.award-content h3 {
  margin-bottom: 5px;
  font-size: 1.2rem;
}

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

.partners-section {
  margin-bottom: 60px;
}

.partners-section h2, .partners-section p {
  text-align: center;
}

.partners-section h2 {
  margin-bottom: 10px;
}

.partners-section p {
  margin-bottom: 40px;
}

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

.partner {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background-color: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.partner:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.partner-logo {
  max-width: 150px;
  max-height: 80px;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}

.partner:hover .partner-logo {
  filter: grayscale(0%);
}

/* Contact Page Styles */
.contact-section {
  margin-bottom: 60px;
}

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

.contact-info h2 {
  margin-bottom: 20px;
}

.contact-info > p {
  margin-bottom: 30px;
}

.contact-details {
  margin-bottom: 30px;
}

.contact-item {
  display: flex;
  margin-bottom: 25px;
}

.contact-icon {
  margin-right: 15px;
  color: var(--primary-color);
}

.contact-item h3 {
  margin-bottom: 5px;
}

.contact-item p {
  margin-bottom: 5px;
}

.contact-item .hours {
  color: var(--text-light);
  font-size: 0.9rem;
}

.social-connect h3 {
  margin-bottom: 15px;
}

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

.contact-form-container h2 {
  margin-bottom: 25px;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  margin-bottom: 20px;
}

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

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

.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--gray-medium);
  border-radius: var(--border-radius);
  font-size: 1rem;
  font-family: var(--font-body);
}

.form-group textarea {
  resize: vertical;
}

.checkbox-container {
  display: flex;
  align-items: flex-start;
  position: relative;
  padding-left: 35px;
  cursor: pointer;
  font-weight: normal;
}

.checkbox-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 22px;
  width: 22px;
  background-color: var(--white);
  border: 1px solid var(--gray-medium);
  border-radius: 4px;
}

.checkbox-container:hover input ~ .checkmark {
  background-color: var(--gray-light);
}

.checkbox-container input:checked ~ .checkmark {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.checkbox-container input:checked ~ .checkmark:after {
  display: block;
}

.checkbox-container .checkmark:after {
  left: 8px;
  top: 4px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.contact-form .btn {
  grid-column: span 2;
  margin-top: 10px;
}

.map-section {
  margin-bottom: 60px;
}

.map-section h2 {
  text-align: center;
  margin-bottom: 30px;
}

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

.map-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.faq-section {
  margin-bottom: 60px;
}

.faq-section h2 {
  text-align: center;
  margin-bottom: 40px;
}

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

.faq-item {
  margin-bottom: 20px;
  border: 1px solid var(--gray-light);
  border-radius: var(--border-radius);
  overflow: hidden;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background-color: var(--white);
  cursor: pointer;
}

.faq-question h3 {
  margin-bottom: 0;
  font-size: 1.1rem;
}

.faq-toggle {
  font-size: 1.5rem;
  font-weight: bold;
  transition: var(--transition);
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  padding: 0 20px 20px;
  max-height: 500px;
}

.faq-answer p {
  margin-bottom: 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: 9999;
  align-items: center;
  justify-content: center;
}

.modal.show {
  display: flex;
}

.modal-content {
  background-color: var(--white);
  border-radius: var(--border-radius);
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
  max-width: 500px;
  width: 90%;
  position: relative;
}

.close-modal {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 1.5rem;
  cursor: pointer;
  transition: var(--transition);
}

.close-modal:hover {
  color: var(--primary-color);
}

.modal-body {
  padding: 30px;
  text-align: center;
}

.success-icon {
  color: var(--success);
  margin-bottom: 20px;
}

.modal-body h2 {
  margin-bottom: 15px;
}

.modal-body p {
  margin-bottom: 25px;
}

.close-btn {
  display: inline-block;
}

/* Blog Post Styles */
.blog-post {
  margin-bottom: 60px;
}

.post-header {
  margin-bottom: 30px;
}

.post-header h1 {
  margin-bottom: 20px;
}

.author {
  display: flex;
  align-items: center;
  margin-top: 20px;
}

.author-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 15px;
}

.author-info {
  display: flex;
  flex-direction: column;
}

.author-name {
  font-weight: 600;
}

.read-time {
  color: var(--text-light);
  font-size: 0.9rem;
}

.post-featured-image {
  margin-bottom: 40px;
}

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

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

.post-intro {
  font-size: 1.2rem;
  line-height: 1.8;
  color: var(--text-color);
  margin-bottom: 30px;
}

.post-content h2 {
  margin-top: 40px;
  margin-bottom: 20px;
}

.post-content p {
  margin-bottom: 20px;
  line-height: 1.8;
}

.content-image {
  margin: 30px 0;
}

.content-image img {
  width: 100%;
  border-radius: var(--border-radius);
  margin-bottom: 10px;
}

.image-caption {
  font-size: 0.9rem;
  color: var(--text-light);
  text-align: center;
  margin-bottom: 0;
}

.feature-list {
  margin-bottom: 30px;
}

.feature-list li {
  margin-bottom: 15px;
}

blockquote {
  border-left: 4px solid var(--primary-color);
  padding: 20px 30px;
  background-color: var(--light-bg);
  margin: 30px 0;
  font-style: italic;
  position: relative;
}

blockquote:before {
  content: """;
  font-size: 4rem;
  color: var(--primary-light);
  position: absolute;
  top: -20px;
  left: 10px;
  opacity: 0.3;
}

blockquote cite {
  display: block;
  font-style: normal;
  margin-top: 10px;
  font-weight: 600;
}

.post-tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 30px;
}

.tag-label {
  margin-right: 10px;
  font-weight: 600;
}

.tag {
  background-color: var(--light-bg);
  padding: 5px 12px;
  border-radius: 20px;
  margin-right: 10px;
  margin-bottom: 10px;
  font-size: 0.9rem;
  transition: var(--transition);
}

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

.post-share {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
  border-top: 1px solid var(--gray-light);
  border-bottom: 1px solid var(--gray-light);
  padding: 20px 0;
}

.post-share span {
  margin-right: 15px;
  font-weight: 600;
}

.share-buttons {
  display: flex;
  gap: 10px;
}

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

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

.share-btn.facebook {
  background-color: #3b5998;
}

.share-btn.twitter {
  background-color: #1da1f2;
}

.share-btn.linkedin {
  background-color: #0077b5;
}

.share-btn.email {
  background-color: #ea4335;
}

.post-navigation {
  margin-bottom: 60px;
}

.post-nav-links {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}

.post-nav {
  max-width: 45%;
}

.post-nav.prev {
  text-align: left;
}

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

.nav-label {
  display: block;
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 5px;
}

.nav-title {
  font-weight: 600;
  color: var(--text-color);
  transition: var(--transition);
}

.post-nav:hover .nav-title {
  color: var(--primary-color);
}

.related-posts {
  padding: 60px 0;
  background-color: var(--light-bg);
}

.related-posts h2 {
  text-align: center;
  margin-bottom: 40px;
}

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

/* Responsive Styles */
@media (max-width: 992px) {
  h1 {
    font-size: 2.2rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .featured-post {
    grid-template-columns: 1fr;
  }
  
  .featured-image {
    height: 300px;
  }
  
  .services-intro .container, .about-story .container {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .intro-image, .story-image {
    order: -1;
  }
  
  .service-card {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .service-icon {
    margin: 0 auto 20px;
  }
  
  .contact-content {
    grid-template-columns: 1fr;
  }
  
  .stats-container {
    flex-wrap: wrap;
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 90px;
    left: 0;
    height: 0;
    width: 100%;
    background-color: var(--white);
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
    transition: height 0.4s ease;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    z-index: 999;
  }
  
  .nav-links.active {
    height: calc(100vh - 90px);
    padding: 30px 0;
  }
  
  .nav-links li {
    margin: 15px 0;
  }
  
  .hamburger {
    display: flex;
  }
  
  .hamburger.active .line:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }
  
  .hamburger.active .line:nth-child(2) {
    opacity: 0;
  }
  
  .hamburger.active .line:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }
  
  .hero-content h1 {
    font-size: 2rem;
  }
  
  .hero-content p {
    font-size: 1.1rem;
  }
  
  .footer-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .contact-form {
    grid-template-columns: 1fr;
  }
  
  .form-group.full-width {
    grid-column: 1;
  }
  
  .post-navigation {
    flex-direction: column;
    gap: 20px;
  }
  
  .post-nav-links {
    flex-direction: column;
    gap: 20px;
  }
  
  .post-nav {
    max-width: 100%;
  }
}

@media (max-width: 576px) {
  .hero {
    padding: 100px 20px;
  }
  
  .feature-cards, .destination-grid, .post-grid, .related-grid {
    grid-template-columns: 1fr;
  }
  
  .facts-box {
    padding: 20px;
  }
  
  .fact {
    flex-direction: column;
    text-align: center;
  }
  
  .fact-number {
    margin: 0 auto 15px;
  }
  
  .team-grid, .values-grid, .awards-grid, .partners-grid {
    grid-template-columns: 1fr;
  }
  
  .cookie-buttons {
    flex-direction: column;
  }
}
