/*! HTML5 Boilerplate v9.0.1 | MIT License | https://html5boilerplate.com/ */

/* main.css 3.0.0 | MIT License | https://github.com/h5bp/main.css#readme */
/*
 * What follows is the result of much research on cross-browser styling.
 * Credit left inline and big thanks to Nicolas Gallagher, Jonathan Neal,
 * Kroc Camen, and the H5BP dev community and team.
 */

/* ==========================================================================
   Base styles: opinionated defaults
   ========================================================================== */

html {
  color: #222;
  font-size: 1em;
  line-height: 1.4;
}

/*
 * Remove text-shadow in selection highlight:
 * https://twitter.com/miketaylr/status/12228805301
 *
 * Customize the background color to match your design.
 */

::-moz-selection {
  background: #b3d4fc;
  text-shadow: none;
}

::selection {
  background: #b3d4fc;
  text-shadow: none;
}

/*
 * A better looking default horizontal rule
 */

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

/*
 * Remove the gap between audio, canvas, iframes,
 * images, videos and the bottom of their containers:
 * https://github.com/h5bp/html5-boilerplate/issues/440
 */

audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

/*
 * Remove default fieldset styles.
 */

fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

/*
 * Allow only vertical resizing of textareas.
 */

textarea {
  resize: vertical;
}

/* ==========================================================================
   Author's custom styles
   ========================================================================== */

:root {
  /* Color Palette */
  --primary-color: #3498db;
  --secondary-color: #2ecc71;
  --accent-color: #f39c12;
  --dark-color: #2c3e50;
  --light-color: #ecf0f1;
  --white: #ffffff;
  --black: #333333;
  --gray: #95a5a6;
  --light-gray: #f5f5f5;

  /* Typography */
  --heading-font: 'Playfair Display', serif;
  --body-font: 'Poppins', sans-serif;

  /* Spacing */
  --section-padding: 80px 0;
  --container-padding: 0 15px;
}

/* Base Styles */
body {
  font-family: var(--body-font);
  color: var(--black);
  line-height: 1.6;
  overflow-x: hidden;
}

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

p {
  margin-bottom: 20px;
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--secondary-color);
}

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

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

section {
  padding: var(--section-padding);
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 2.5rem;
  position: relative;
  display: inline-block;
  margin-bottom: 15px;
}

.section-header h2:after {
  content: '';
  position: absolute;
  width: 60px;
  height: 3px;
  background-color: var(--accent-color);
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}

.section-header .subtitle {
  font-size: 1.1rem;
  color: var(--gray);
}

.btn {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 500;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

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

.btn-primary:hover {
  background-color: #2980b9;
  color: var(--white);
}

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

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

.btn-sm {
  padding: 8px 20px;
  font-size: 0.9rem;
}

.img-fluid {
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Header & Navigation */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: linear-gradient(to right, rgba(255, 255, 255, 0.97), rgba(236, 240, 241, 0.97));
  box-shadow: 0 3px 12px rgba(44, 62, 80, 0.08);
  padding: 15px 0;
  transition: all 0.4s ease;
  border-bottom: 1px solid rgba(52, 152, 219, 0.1);
}

.header-scrolled {
  padding: 8px 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 0.98), rgba(236, 240, 241, 0.98));
  box-shadow: 0 5px 15px rgba(44, 62, 80, 0.12);
  border-bottom: 1px solid rgba(52, 152, 219, 0.15);
}

.header-scrolled .logo-img {
  height: 40px;
  transform: scale(0.95);
}

.header-scrolled .logo h1 {
  font-size: 1.7rem;
  letter-spacing: -0.5px;
}

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

.logo a {
  display: flex;
  align-items: center;
  text-decoration: none;
  padding: 4px 8px;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.logo a:hover {
  background-color: rgba(52, 152, 219, 0.05);
  transform: translateY(-1px);
}

.logo-img {
  height: 45px;
  margin-right: 14px;
  vertical-align: middle;
  filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.1));
  transition: all 0.3s ease;
}

.logo h1 {
  font-size: 1.8rem;
  margin: 0;
  color: var(--primary-color);
  line-height: 1;
  letter-spacing: -0.3px;
  font-weight: 600;
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
}

.main-nav .nav-list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}

.main-nav .nav-list li {
  margin-left: 32px;
  position: relative;
}

.main-nav .nav-list li a:not(.btn) {
  color: var(--dark-color);
  font-weight: 500;
  position: relative;
  padding: 6px 2px;
  transition: all 0.3s ease;
}

.main-nav .nav-list li a:not(.btn):hover {
  color: var(--primary-color);
}

.main-nav .nav-list li a:not(.btn):after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  bottom: 0;
  left: 0;
  transition: width 0.3s ease, opacity 0.3s ease;
  opacity: 0.7;
}

.main-nav .nav-list li a:not(.btn):hover:after,
.main-nav .nav-list li a.active:not(.btn):after {
  width: 100%;
}

.main-nav .nav-list li a.active:not(.btn) {
  color: var(--primary-color);
  font-weight: 600;
}

.main-nav .nav-list li a.btn {
  padding: 10px 24px;
  border-radius: 30px;
  box-shadow: 0 4px 10px rgba(52, 152, 219, 0.2);
  font-weight: 500;
  letter-spacing: 0.3px;
  transition: all 0.3s ease;
}

.main-nav .nav-list li a.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(52, 152, 219, 0.25);
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background-color: rgba(52, 152, 219, 0.05);
}

.hamburger {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--primary-color);
  position: relative;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.hamburger:before,
.hamburger:after {
  content: '';
  position: absolute;
  width: 24px;
  height: 2px;
  background-color: var(--primary-color);
  transition: all 0.3s ease;
  border-radius: 2px;
}

.hamburger:before {
  top: -7px;
  width: 18px;
  right: 0;
}

.hamburger:after {
  bottom: -7px;
  width: 18px;
  right: 0;
}

.menu-open .hamburger {
  background-color: transparent;
  transform: rotate(180deg);
}

.menu-open .hamburger:before {
  top: 0;
  transform: rotate(45deg);
  width: 24px;
}

.menu-open .hamburger:after {
  bottom: 0;
  transform: rotate(-45deg);
  width: 24px;
}

/* Hero Section */
.hero {
  height: 100vh;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/background.png') no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  padding: 0 20px;
}

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

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  color: var(--white);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

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

.about-content {
  display: flex;
  align-items: center;
  gap: 50px;
  margin-bottom: 80px;
}

.about-text, .about-image {
  flex: 1;
}

.about-text p {
  margin-bottom: 20px;
  font-size: 1.05rem;
}

.our-story .section-header {
  text-align: left;
  margin-bottom: 30px;
}

.story-content {
  display: flex;
  align-items: center;
  gap: 50px;
}

.story-image, .story-text {
  flex: 1;
}

.story-text p {
  margin-bottom: 20px;
  font-size: 1.05rem;
}

/* Team Section */
.our-team {
  margin-top: 80px;
}

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

.team-member {
  background-color: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.member-info {
  padding: 20px;
  text-align: center;
}

.member-info h4 {
  font-size: 1.3rem;
  margin-bottom: 5px;
  color: var(--dark-color);
}

.member-info .position {
  color: var(--primary-color);
  font-weight: 500;
  margin-bottom: 15px;
}

.member-info .bio {
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.5;
}

@media (max-width: 768px) {
  .team-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
  }

  .member-image img {
    height: 250px;
  }
}

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

/* Services Section */
.services {
  background-color: var(--light-gray);
}

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

.service-card {
  background-color: var(--white);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-icon {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
}

/* Why Choose Us Section */
.why-us {
  background-color: var(--white);
}

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

.feature {
  padding: 30px;
  border-radius: 10px;
  transition: transform 0.3s ease;
  border: 1px solid #eee;
}

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

.feature-icon {
  font-size: 2rem;
  color: var(--secondary-color);
  margin-bottom: 20px;
}

.feature h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
}

/* Vision & Mission Section */
.vision-mission {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://source.unsplash.com/random/1920x1080/?mountains,sunset') no-repeat center center/cover;
  color: var(--white);
  text-align: center;
}

.vision-mission-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  justify-content: center;
}

.vision, .mission {
  flex: 1;
  min-width: 300px;
  padding: 30px;
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 10px;
}

.vision-mission .section-header h2 {
  color: var(--white);
}

.vision-mission .section-header h2:after {
  background-color: var(--accent-color);
}

/* Destinations Section */
.destinations {
  background-color: var(--light-gray);
}

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

.destination-card {
  background-color: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.destination-content {
  padding: 20px;
}

.destination-content h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.destination-content p {
  margin-bottom: 15px;
  color: var(--gray);
}

/* India Destinations Section */
.india-destinations {
  background-color: var(--white);
}

.india-intro {
  text-align: center;
  margin-bottom: 40px;
}

.india-intro h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.about-india {
  margin-bottom: 50px;
}

.about-india h3 {
  font-size: 1.6rem;
  margin-bottom: 20px;
  color: var(--dark-color);
  position: relative;
  padding-bottom: 10px;
}

.about-india h3:after {
  content: '';
  position: absolute;
  width: 60px;
  height: 3px;
  background-color: var(--accent-color);
  bottom: 0;
  left: 0;
}

.about-india p {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.india-reasons {
  margin-bottom: 50px;
}

.india-reasons h3 {
  font-size: 1.6rem;
  margin-bottom: 30px;
  color: var(--dark-color);
  position: relative;
  padding-bottom: 10px;
}

.india-reasons h3:after {
  content: '';
  position: absolute;
  width: 60px;
  height: 3px;
  background-color: var(--accent-color);
  bottom: 0;
  left: 0;
}

.reason-card {
  background-color: var(--white);
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 25px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.reason-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.reason-card h4 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.reason-card p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--gray);
  margin-bottom: 15px;
}

.reason-card p:last-child {
  margin-bottom: 0;
}

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

.section-subheader h3 {
  font-size: 1.8rem;
  color: var(--dark-color);
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}

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

.travel-guidelines {
  margin-top: 50px;
  background-color: var(--light-color);
  padding: 30px;
  border-radius: 10px;
}

.travel-guidelines h3 {
  font-size: 1.6rem;
  margin-bottom: 20px;
  color: var(--dark-color);
  text-align: center;
}

.guidelines-list {
  list-style-type: none;
  padding: 0;
}

.guidelines-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
  font-size: 1.05rem;
  line-height: 1.6;
}

.guidelines-list li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--secondary-color);
  font-weight: bold;
}

/* Media queries for India Destinations section */
@media (max-width: 768px) {
  .india-intro h3 {
    font-size: 1.6rem;
  }

  .about-india h3,
  .india-reasons h3,
  .section-subheader h3,
  .travel-guidelines h3 {
    font-size: 1.4rem;
  }

  .reason-card {
    padding: 20px;
  }

  .reason-card h4 {
    font-size: 1.2rem;
  }
}

@media (max-width: 576px) {
  .india-intro h3 {
    font-size: 1.4rem;
  }

  .about-india h3,
  .india-reasons h3,
  .section-subheader h3,
  .travel-guidelines h3 {
    font-size: 1.3rem;
  }

  .reason-card {
    padding: 15px;
  }

  .reason-card h4 {
    font-size: 1.1rem;
  }

  .guidelines-list li {
    font-size: 1rem;
  }
}

/* Join Us Section */
.join-us {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://source.unsplash.com/random/1920x1080/?travel,friends') no-repeat center center/cover;
  color: var(--white);
  text-align: center;
}

.join-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 50px 20px;
  background-color: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(5px);
  border-radius: 10px;
}

.join-content h2 {
  color: var(--white);
  font-size: 2.5rem;
  margin-bottom: 30px;
}

.join-content p {
  margin-bottom: 15px;
  font-size: 1.1rem;
}

.tagline {
  font-size: 1.3rem;
  font-weight: 600;
  margin: 30px 0;
  color: var(--accent-color);
}

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

.contact-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
}

.contact-info, .contact-form {
  flex: 1;
  min-width: 300px;
}

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

.contact-item i {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-right: 15px;
  margin-top: 5px;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 30px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: var(--primary-color);
  color: var(--white);
  border-radius: 50%;
  transition: all 0.3s ease;
}

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

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

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

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
}

/* Footer */
.footer {
  background-color: var(--dark-color);
  color: var(--light-color);
  padding: 60px 0 20px;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 40px;
}

.footer-logo h3 {
  color: var(--white);
  font-size: 1.8rem;
  margin-bottom: 10px;
}

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

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.footer-column h4 {
  color: var(--white);
  margin-bottom: 20px;
  font-size: 1.2rem;
}

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

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

.footer-column ul li a {
  color: var(--gray);
  transition: all 0.3s ease;
}

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

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

.footer-bottom p {
  margin: 0;
  color: var(--gray);
  font-size: 0.9rem;
}

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

  .about-content,
  .story-content {
    flex-direction: column;
    gap: 30px;
  }

  .about-image,
  .story-image {
    order: -1;
  }
}

@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: block;
  }

  .logo-img {
    height: 40px;
  }

  .header-scrolled .logo-img {
    height: 35px;
  }

  .header-scrolled .logo h1 {
    font-size: 1.6rem;
  }

  .main-nav .nav-list {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    align-items: center;
    padding: 50px 0;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 999;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateX(-20px);
  }

  .main-nav .nav-list.active {
    left: 0;
    opacity: 1;
    transform: translateX(0);
  }

  .main-nav .nav-list li {
    margin: 12px 0;
    width: 80%;
    text-align: center;
  }

  .main-nav .nav-list li a:not(.btn) {
    font-size: 1.1rem;
    padding: 12px 20px;
    display: block;
    border-radius: 8px;
    transition: all 0.3s ease;
  }

  .main-nav .nav-list li a:not(.btn):hover,
  .main-nav .nav-list li a.active:not(.btn) {
    background-color: rgba(52, 152, 219, 0.08);
  }

  .main-nav .nav-list li a.btn {
    margin-top: 10px;
    padding: 12px 30px;
    width: 80%;
  }

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

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

  .hero-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .vision-mission-wrapper {
    gap: 30px;
  }
}

@media (max-width: 576px) {
  .hero h1 {
    font-size: 1.8rem;
  }

  .section-header h2 {
    font-size: 1.8rem;
  }

  .logo-img {
    height: 35px;
  }

  .logo h1 {
    font-size: 1.5rem;
  }

  .header-scrolled {
    padding: 6px 0;
  }

  .header-scrolled .logo-img {
    height: 30px;
  }

  .header-scrolled .logo h1 {
    font-size: 1.4rem;
  }

  .main-nav .nav-list {
    top: 60px;
    height: calc(100vh - 60px);
    padding: 30px 0;
  }

  .main-nav .nav-list li {
    width: 85%;
    margin: 8px 0;
  }

  .main-nav .nav-list li a:not(.btn) {
    font-size: 1rem;
    padding: 10px 15px;
  }

  .main-nav .nav-list li a.btn {
    padding: 10px 20px;
    width: 85%;
  }

  .hamburger,
  .hamburger:before,
  .hamburger:after {
    height: 1.5px;
  }

  .hamburger {
    width: 22px;
  }

  .hamburger:before,
  .hamburger:after {
    width: 16px;
  }

  .service-card,
  .feature,
  .destination-card {
    padding: 20px;
  }

  .contact-wrapper {
    gap: 30px;
  }
}

/* ==========================================================================
   Helper classes
   ========================================================================== */

/*
 * Hide visually and from screen readers
 */

.hidden,
[hidden] {
  display: none !important;
}

/*
 * Hide only visually, but have it available for screen readers:
 * https://snook.ca/archives/html_and_css/hiding-content-for-accessibility
 *
 * 1. For long content, line feeds are not interpreted as spaces and small width
 *    causes content to wrap 1 word per line:
 *    https://medium.com/@jessebeach/beware-smushed-off-screen-accessible-text-5952a4c2cbfe
 */

.visually-hidden {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
  /* 1 */
}

/*
 * Extends the .visually-hidden class to allow the element
 * to be focusable when navigated to via the keyboard:
 * https://www.drupal.org/node/897638
 */

.visually-hidden.focusable:active,
.visually-hidden.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  white-space: inherit;
  width: auto;
}

/*
 * Hide visually and from screen readers, but maintain layout
 */

.invisible {
  visibility: hidden;
}

/*
 * Clearfix: contain floats
 *
 * The use of `table` rather than `block` is only necessary if using
 * `::before` to contain the top-margins of child elements.
 */

.clearfix::before,
.clearfix::after {
  content: "";
  display: table;
}

.clearfix::after {
  clear: both;
}

/* ==========================================================================
   EXAMPLE Media Queries for Responsive Design.
   These examples override the primary ('mobile first') styles.
   Modify as content requires.
   ========================================================================== */

@media only screen and (min-width: 35em) {
  /* Style adjustments for viewports that meet the condition */
}

@media print,
  (-webkit-min-device-pixel-ratio: 1.25),
  (min-resolution: 1.25dppx),
  (min-resolution: 120dpi) {
  /* Style adjustments for high resolution devices */
}

/* ==========================================================================
   Print styles.
   Inlined to avoid the additional HTTP request:
   https://www.phpied.com/delay-loading-your-print-css/
   ========================================================================== */

@media print {
  *,
  *::before,
  *::after {
    background: #fff !important;
    color: #000 !important;
    /* Black prints faster */
    box-shadow: none !important;
    text-shadow: none !important;
  }

  a,
  a:visited {
    text-decoration: underline;
  }

  a[href]::after {
    content: " (" attr(href) ")";
  }

  abbr[title]::after {
    content: " (" attr(title) ")";
  }

  /*
   * Don't show links that are fragment identifiers,
   * or use the `javascript:` pseudo protocol
   */
  a[href^="#"]::after,
  a[href^="javascript:"]::after {
    content: "";
  }

  pre {
    white-space: pre-wrap !important;
  }

  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }

  tr,
  img {
    page-break-inside: avoid;
  }

  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }

  h2,
  h3 {
    page-break-after: avoid;
  }
}

