/* Base Styles & Variables */
:root {
  --primary-color: #3a7bd5;
  --primary-dark: #2e6ac1;
  --secondary-color: #00bcd4;
  --secondary-dark: #008ba3;
  --accent-color: #ff9800;
  --accent-dark: #e68900;
  --text-color: #333333;
  --text-light: #666666;
  --background-color: #ffffff;
  --background-alt: #f8f9fa;
  --background-dark: #e9ecef;
  --border-color: #dee2e6;
  --success-color: #28a745;
  --error-color: #dc3545;
  --header-height: 80px;
  --footer-background: #263238;
  --footer-text: #b0bec5;
  --container-width: 1200px;
  --border-radius: 4px;
  --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
  --card-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  --font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

/* Reset & Defaults */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

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

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

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

a:hover, a:focus {
  color: var(--primary-dark);
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

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

h1 {
  font-size: 3.6rem;
}

h2 {
  font-size: 2.8rem;
}

h3 {
  font-size: 2.2rem;
}

h4 {
  font-size: 1.8rem;
}

p {
  margin-bottom: 1.5rem;
}

button, .btn {
  cursor: pointer;
  font-family: var(--font-family);
  font-size: 1.6rem;
  font-weight: 500;
  padding: 1.2rem 2.4rem;
  border-radius: var(--border-radius);
  display: inline-block;
  text-align: center;
  transition: var(--transition);
  border: none;
  background-color: var(--primary-color);
  color: white;
  text-decoration: none;
}

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

.btn-secondary {
  background-color: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  padding: 1rem 2rem;
}

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

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

section {
  padding: 8rem 0;
}

/* Layout Components */

/* Header & Navigation */
header {
  background-color: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  height: var(--header-height);
  display: flex;
  align-items: center;
}

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

.logo {
  display: flex;
  align-items: center;
}

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

nav ul {
  display: flex;
}

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

nav ul li a {
  color: var(--text-color);
  font-weight: 500;
  font-size: 1.6rem;
  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-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;
  height: 80vh;
  display: flex;
  align-items: center;
  text-align: center;
  color: white;
  margin-top: var(--header-height);
}

.hero h1 {
  font-size: 4.8rem;
  margin-bottom: 2rem;
  color: white;
}

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

/* Features Section */
.features {
  background-color: var(--background-alt);
}

.features h2 {
  text-align: center;
  margin-bottom: 5rem;
}

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

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

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

.feature .icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: rgba(58, 123, 213, 0.1);
  color: var(--primary-color);
}

.feature h3 {
  margin-bottom: 1.5rem;
}

.feature p {
  color: var(--text-light);
}

/* Tours Section */
.featured-tours h2 {
  text-align: center;
  margin-bottom: 5rem;
}

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

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

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

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

.tour h3 {
  margin: 2rem 2rem 1rem;
}

.tour p {
  margin: 0 2rem 2rem;
  color: var(--text-light);
}

.tour .btn-secondary {
  margin: 0 2rem 2rem;
}

/* Testimonials Section */
.testimonials {
  background-color: var(--background-alt);
}

.testimonials h2 {
  text-align: center;
  margin-bottom: 5rem;
}

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

.testimonial {
  background-color: white;
  border-radius: var(--border-radius);
  padding: 3rem;
  box-shadow: var(--card-shadow);
}

.quote {
  margin-bottom: 2rem;
  font-style: italic;
  color: var(--text-light);
}

.quote p:before {
  content: '"';
  font-size: 3rem;
  color: var(--primary-color);
  opacity: 0.5;
  line-height: 0;
  vertical-align: -0.4em;
  margin-right: 0.3rem;
}

.quote p:after {
  content: '"';
  font-size: 3rem;
  color: var(--primary-color);
  opacity: 0.5;
  line-height: 0;
  vertical-align: -0.4em;
  margin-left: 0.3rem;
}

.author {
  display: flex;
  align-items: center;
}

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

.author h4 {
  margin-bottom: 0.3rem;
}

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

/* CTA Section */
.cta {
  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;
  text-align: center;
  color: white;
}

.cta h2 {
  color: white;
  margin-bottom: 2rem;
}

.cta p {
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Footer */
footer {
  background-color: var(--footer-background);
  color: var(--footer-text);
  padding: 6rem 0 2rem;
}

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

.footer-logo {
  width: 120px;
  margin-bottom: 2rem;
}

.footer-about p {
  margin-bottom: 1rem;
}

.reg-number {
  font-size: 1.4rem;
  color: var(--footer-text);
  opacity: 0.8;
}

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

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

.footer-links ul li a {
  color: var(--footer-text);
  transition: var(--transition);
}

.footer-links ul li a:hover {
  color: white;
  padding-left: 5px;
}

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

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

.footer-contact address p svg {
  margin-right: 1rem;
  color: var(--primary-color);
}

.footer-contact address p a {
  color: var(--footer-text);
  transition: var(--transition);
}

.footer-contact address p a:hover {
  color: white;
}

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

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

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

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

/* Page Header */
.page-header {
  background-color: var(--background-alt);
  padding: 12rem 0 6rem;
  text-align: center;
  margin-top: var(--header-height);
}

.page-header h1 {
  margin-bottom: 1rem;
}

.page-header p {
  color: var(--text-light);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Blog Styles */
.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
}

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

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

.post-content {
  padding: 2rem 3rem 2rem 0;
}

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

.post-meta span {
  margin-right: 2rem;
  font-size: 1.4rem;
  color: var(--text-light);
}

.post-meta .category {
  color: var(--primary-color);
  font-weight: 500;
}

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

.blog-post h2 a {
  color: var(--text-color);
  transition: var(--transition);
}

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

.read-more {
  display: flex;
  align-items: center;
  font-weight: 500;
  color: var(--primary-color);
}

.read-more svg {
  margin-left: 0.5rem;
  transition: var(--transition);
}

.read-more:hover svg {
  transform: translateX(5px);
}

/* Newsletter */
.newsletter {
  background-color: var(--background-alt);
  text-align: center;
}

.newsletter h2 {
  margin-bottom: 1.5rem;
}

.newsletter p {
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

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

.newsletter-form input {
  flex: 1;
  padding: 1.2rem 1.5rem;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius) 0 0 var(--border-radius);
  font-size: 1.6rem;
}

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

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

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

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

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

.value:hover {
  transform: translateY(-10px);
}

.value .icon {
  width: 50px;
  height: 50px;
  background-color: rgba(58, 123, 213, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  color: var(--primary-color);
}

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

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

.achievement {
  background-color: white;
  padding: 3rem;
  border-radius: var(--border-radius);
  box-shadow: var(--card-shadow);
}

.achievement .number {
  font-size: 4rem;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1.2;
  margin-bottom: 1rem;
}

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

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

.section-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
}

.team-member {
  text-align: center;
  transition: var(--transition);
}

.team-member img {
  width: 100%;
  height: auto;
  border-radius: 50%;
  margin-bottom: 2rem;
  box-shadow: var(--card-shadow);
}

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

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

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

.team-member .social-links {
  justify-content: center;
  margin-top: 1.5rem;
}

.team-member .social-links a {
  background-color: var(--background-alt);
  color: var(--text-color);
  width: 35px;
  height: 35px;
  margin: 0 0.5rem;
}

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

.partners {
  text-align: center;
}

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

.partner img {
  filter: grayscale(100%);
  opacity: 0.7;
  transition: var(--transition);
  max-width: 150px;
  margin: 0 auto;
}

.partner:hover img {
  filter: grayscale(0);
  opacity: 1;
}

/* Services Page */
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

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

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

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

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

.service-icon {
  width: 70px;
  height: 70px;
  background-color: rgba(58, 123, 213, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  color: var(--primary-color);
}

.service-features {
  margin: 2rem 0;
  padding-left: 2rem;
}

.service-features li {
  margin-bottom: 1rem;
  position: relative;
}

.service-features li:before {
  content: "✓";
  position: absolute;
  left: -2rem;
  color: var(--success-color);
}

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

.tour-content {
  padding: 2rem;
}

.tour-meta {
  color: var(--text-light);
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
}

.tour-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 1.5rem 0;
}

.tour-highlights span {
  background-color: rgba(58, 123, 213, 0.1);
  color: var(--primary-color);
  font-size: 1.4rem;
  padding: 0.5rem 1rem;
  border-radius: 50px;
}

.price {
  font-weight: 700;
  color: var(--accent-color);
  margin: 1.5rem 0;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  margin-top: 4rem;
}

.process-step {
  text-align: center;
  position: relative;
}

.process-step:not(:last-child):after {
  content: "";
  position: absolute;
  top: 30px;
  right: -15px;
  width: 30px;
  height: 2px;
  background-color: var(--border-color);
}

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

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

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

.contact-method {
  display: flex;
  margin-bottom: 2.5rem;
}

.contact-method .icon {
  width: 50px;
  height: 50px;
  background-color: rgba(58, 123, 213, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1.5rem;
  color: var(--primary-color);
}

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

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

.detail-note {
  font-size: 1.4rem;
  color: var(--text-light);
}

.social-contact h3 {
  margin-bottom: 1.5rem;
}

.social-contact .social-links {
  justify-content: flex-start;
}

.social-link {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: rgba(58, 123, 213, 0.1);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1.5rem;
  transition: var(--transition);
}

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

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

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

.form-group {
  margin-bottom: 1rem;
}

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

.form-group label {
  display: block;
  margin-bottom: 0.8rem;
  color: var(--text-color);
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 1.2rem;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  font-size: 1.6rem;
  font-family: var(--font-family);
}

.form-group textarea {
  resize: vertical;
}

.consent-checkbox {
  display: flex;
  align-items: flex-start;
}

.consent-checkbox input {
  width: auto;
  margin-right: 1rem;
  margin-top: 0.3rem;
}

.map-container {
  margin-top: 3rem;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--card-shadow);
}

.map-placeholder {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.map-note {
  text-align: center;
  margin-top: 1.5rem;
  font-size: 1.4rem;
  color: var(--text-light);
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 4rem;
}

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

.faq-item h3 {
  margin-bottom: 1.5rem;
  color: var(--primary-color);
}

/* Thank You Modal */
.thank-you-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
}

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

.close-modal {
  position: absolute;
  top: 2rem;
  right: 2rem;
  font-size: 2.4rem;
  cursor: pointer;
  color: var(--text-light);
}

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

/* Poll Section */
.poll-section {
  background-color: var(--background-alt);
}

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

.poll h3 {
  margin-bottom: 2.5rem;
  text-align: center;
}

.poll-option {
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
}

.poll-option input {
  margin-right: 1rem;
  transform: scale(1.2);
}

.poll-option label {
  font-size: 1.6rem;
  cursor: pointer;
}

.poll button {
  margin-top: 2rem;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

#poll-results {
  text-align: center;
  padding: 2rem;
}

#poll-results h4 {
  color: var(--success-color);
  margin-bottom: 1.5rem;
}

/* Blog Post Single */
.blog-post-single {
  padding: 12rem 0 6rem;
  margin-top: var(--header-height);
}

.post-header {
  margin-bottom: 4rem;
}

.back-to-blog {
  display: inline-flex;
  align-items: center;
  margin-bottom: 2rem;
  color: var(--text-light);
  font-weight: 500;
}

.back-to-blog svg {
  margin-right: 0.8rem;
}

.post-header .post-meta {
  margin-bottom: 2rem;
}

.post-header h1 {
  font-size: 3.6rem;
  margin-bottom: 3rem;
}

.featured-image {
  margin-bottom: 4rem;
}

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

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

.post-content .lead {
  font-size: 1.8rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 3rem;
}

.post-content h2 {
  margin-top: 4rem;
  margin-bottom: 2rem;
}

.post-content figure {
  margin: 3rem 0;
}

.post-content figure img {
  border-radius: var(--border-radius);
}

.post-content figcaption {
  text-align: center;
  margin-top: 1rem;
  font-size: 1.4rem;
  color: var(--text-light);
}

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

.post-content ul li, .post-content ol li {
  margin-bottom: 1rem;
  list-style-type: disc;
}

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

.author-box {
  margin-top: 5rem;
  padding: 3rem;
  background-color: var(--background-alt);
  border-radius: var(--border-radius);
  display: flex;
  align-items: center;
}

.author-image {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin-right: 2rem;
}

.author-info h3 {
  margin-bottom: 1rem;
}

.author-info p {
  margin-bottom: 0;
}

.post-footer {
  margin-top: 5rem;
}

.share-post {
  margin-bottom: 4rem;
}

.share-post h3 {
  margin-bottom: 2rem;
}

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

.share-link {
  display: flex;
  align-items: center;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 500;
  transition: var(--transition);
}

.share-link svg {
  margin-right: 1rem;
}

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

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

.share-link.pinterest {
  background-color: #bd081c;
  color: white;
}

.share-link.email {
  background-color: var(--background-alt);
  color: var(--text-color);
}

.share-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  color: white;
}

.share-link.email:hover {
  color: var(--text-color);
}

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

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

.related-post {
  display: block;
  transition: var(--transition);
}

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

.related-post img {
  border-radius: var(--border-radius);
  margin-bottom: 1.5rem;
}

.related-post h4 {
  color: var(--text-color);
  transition: var(--transition);
}

.related-post:hover h4 {
  color: var(--primary-color);
}

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

.cookie-content {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

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

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

.btn-cookie {
  padding: 1rem 2rem;
  border-radius: var(--border-radius);
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
}

.btn-cookie.accept {
  background-color: var(--success-color);
  color: white;
  border: none;
}

.btn-cookie.customize {
  background-color: var(--background-alt);
  color: var(--text-color);
  border: none;
}

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

.btn-cookie:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.cookie-policy-link {
  font-size: 1.4rem;
  text-decoration: underline;
}

/* Pagination */
.pagination {
  text-align: center;
  margin-top: 2rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .blog-post {
    grid-template-columns: 1fr;
  }
  
  .post-image img {
    height: 300px;
  }
  
  .post-content {
    padding: 2rem;
  }
  
  .about-grid, .services-grid, .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 55%;
  }
  
  .hero {
    height: auto;
    padding: 10rem 0;
  }
  
  .feature-grid, .tour-grid, .testimonial-slider, .values-grid, 
  .achievements-grid, .team-grid, .partners-grid, .service-cards, 
  .tour-slider, .process-steps, .faq-grid {
    grid-template-columns: 1fr;
  }
  
  .process-step:not(:last-child):after {
    display: none;
  }
  
  .contact-form {
    grid-template-columns: 1fr;
  }
  
  .social-share {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .cookie-content {
    flex-direction: column;
  }
  
  .cookie-buttons {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  header {
    height: auto;
    padding: 2rem 0;
  }
  
  header .container {
    flex-direction: column;
  }
  
  .logo {
    margin-bottom: 2rem;
  }
  
  nav ul {
    flex-wrap: wrap;
    justify-content: center;
  }
  
  nav ul li {
    margin: 0 1rem 1rem;
  }
  
  .page-header {
    padding: 15rem 0 6rem;
  }
  
  .blog-post-single {
    padding: 15rem 0 6rem;
  }
  
  .post-header h1 {
    font-size: 2.8rem;
  }
  
  .author-box {
    flex-direction: column;
    text-align: center;
  }
  
  .author-image {
    margin: 0 auto 2rem;
  }
}
