:root {
  --primary: #E55934;
  --primary-hover: #D04F2E;
  --secondary: #1E3F20;
  --accent: #DC9D00;
  --bg-light: #F9FAFB;
  --bg-dark: #111827;
  --text-main: #374151;
  --font-display: 'Playfair Display', serif;
  --font-body: 'Outfit', sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6,
.hero-heading,
.packages-heading {
  font-family: var(--font-display);
  color: var(--bg-dark);
}

/* Global Reset and Body Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

button {
  cursor: pointer;
}

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

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

.modal-content {
  background-color: white;
  margin: 5% auto;
  padding: 2rem;
  width: 90%;
  max-width: 500px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: relative;
}

.close {
  position: absolute;
  right: 1rem;
  top: 1rem;
  font-size: 2rem;
  cursor: pointer;
}

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

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

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 1rem;
}

.form-group textarea {
  height: 100px;
  resize: vertical;
}

.submit-button {
  background-color: var(--primary);
  color: white;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1rem;
  width: 100%;
  transition: background-color 0.3s ease;
}

.submit-button:hover {
  background-color: var(--primary-hover);
}

/* Horizontal Line with Text Styles */
.horizontal-line-container {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 2rem 0;
  gap: 20px;
}

.faq-section .horizontal-line-container {
  margin-bottom: 3rem;
}

.horizontal-line {
  flex: 1;
  height: 1px;
  background-color: #ddd;
}

.line-text {
  font-size: 1.2em;
  color: var(--text-main);
  white-space: nowrap;
}

/* Gallery Styles */
.gallery-section {}

.gallery-grid {
  display: flex;
  justify-content: center;
  gap: 2vw;
  perspective: 1000px;
  transform-style: preserve-3d;
  max-width: 100%;
  overflow: visible;
  width: 100%;
  position: relative;
}

.gallery-item {
  flex: 1;
  min-width: 15vw;
  aspect-ratio: 0.6;
  /* 5:3 ratio */
  transition: transform 0.3s ease;
  cursor: pointer;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 1;
  transform-style: preserve-3d;
}

.gallery-item:hover {
  transform: translateY(-10px) scale(1.05) translateZ(1px);
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15);
  z-index: 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gallery-item:nth-child(1) {
  transform: rotateY(-20deg) scale(0.8);
}

.gallery-item:nth-child(2) {
  transform: rotateY(-10deg) scale(0.9);
}

.gallery-item:nth-child(3) {
  transform: rotateY(0deg) scale(1);
}

.gallery-item:nth-child(4) {
  transform: rotateY(10deg) scale(0.9);
}

.gallery-item:nth-child(5) {
  transform: rotateY(20deg) scale(0.8);
}

.gallery-item:hover {
  transform: translateY(-10px) scale(1.05);
}

/* Footer Styles */
.footer {
  background: var(--bg-dark);
  color: #fff;
  padding: 2rem 0 0.5rem;
  margin-top: 3rem;
  position: relative;
}

.footer-content {
  text-align: center;
  padding: 0.5rem;
}

.social-icons a {
  margin: 0 0.5rem;
  display: inline-block;
}

.social-icons img {
  width: 24px;
  height: 24px;
  filter: brightness(0) saturate(100%) invert(1) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(100%) contrast(100%);
}

.company {
  margin-top: 1rem;
  font-weight: 400;
  color: #cfcfcf;
}

/* FAQ Section Styles */
.faq-section {}

.info-box {
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  margin-bottom: 1.5rem;
  overflow: hidden;
}

.info-box-header {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #eee;
}

.info-box-header h3 {
  text-transform: none;
  font-size: 1.1rem;
  color: var(--text-main);
  font-weight: 500;
  margin: 0;
}

.info-box-icon {
  width: 20px;
  height: 20px;
  color: #007bff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 1rem;
  font-weight: bold;
}

.justify-content-center {
  justify-content: center;
}

.info-box-content {
  padding: 1.5rem;
  display: none;
}

.info-box-content p {
  margin: 0;
  color: #666;
}

/* Header Styles */
.header {
  height: 60px;
  background-color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-logo {
  max-height: 40px;
  width: auto;
}

.contact-number {
  font-size: 0.9em;
  color: var(--text-main);
  text-decoration: none;
}

.contact-number:hover {
  text-decoration: none;
  color: var(--text-main);
}

/* Hero Section Styles */
.hero {
  height: 500px;
  position: relative;
  overflow: hidden;
}

/* Testimonials Section Styles */
.testimonials {
  background-color: #393939;
  color: white;
  height: 50px;
  padding: 0 15px;
}

.testimonials .container {
  max-width: 1200px;
}

.testimonial-card {
  padding: 0 20px;
  margin-bottom: 30px;
  text-align: center;
}

.testimonial-item {
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.8);
  padding: 8px 0;
}

img.testimonial-logo {
  height: 30px;
  width: 30px;
  margin-right: 10px;
}

.testimonial-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.testimonial-content .rating {
  font-size: 0.9em;
  margin-bottom: -3px;
}

.testimonial-content .count {
  font-size: 0.7em;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
}

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

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}

.hero-heading {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 2.5rem;
  line-height: 1.2;
  letter-spacing: -0.025em;
  text-align: center;
  margin-bottom: 1rem;
  color: white;
}

.hero-content {
  max-width: 800px;
  text-align: center;
  color: white;
  z-index: 1;
  padding: 0 20px;
}

.hero-content h1 {
  font-size: 2.8em;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content p {
  font-size: 1.2em;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: 1.1em;
  font-weight: 600;
  color: #fff;
  background-color: var(--primary);
  display: inline-block;
  padding: 8px 24px;
  border-radius: 30px;
  margin-bottom: 25px;
  box-shadow: 0 4px 15px rgba(229, 89, 52, 0.4);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* Pricing Section Styles */
.pricing-section {
  padding: 15px 0;
  text-align: center;
}

.pricing-section button,
.pricing-section a {
  font-size: 1em;
  padding: 6px 6px;
}

.packages-section {
  padding: 20px 15px;
}

.packages-heading {
  font-size: 1.4em;
  color: var(--text-main);
  margin-bottom: 20px;
  text-align: left;
  padding-left: 30px;
}

.reviews-section {}

.review {
  background: white;
  padding: 35px;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  margin: 0 15px 30px;
  transition: transform 0.3s ease;
}

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

.review-content p {
  font-size: 1em;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #555;
  font-family: var(--font-body);
}

.review-header {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}

.review-author {
  display: flex;
  flex: 1;
  align-items: center;
  gap: 15px;
}

.review-avatar {

  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;

  object-fit: cover;
  border: 2px solid var(--primary);
  padding: 2px;
}

.author-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  flex: 1;
}

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

.author-name {
  font-size: 1em;
  color: var(--text-main);
  font-weight: 600;
  margin-bottom: 5px;
}

.review-avatar {

  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;

  object-fit: cover;
  border: 2px solid var(--primary);
  padding: 2px;
}

.author-name {
  font-size: 1em;
  color: var(--text-main);
  font-weight: 600;
}

.author-rating {
  color: var(--primary);
  font-size: 1em;
  margin-top: -5px;
}

.package-card {

  background-color: white;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  margin-bottom: 20px;
  overflow: hidden;
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  border: 1px solid rgba(255, 255, 255, 0.2);

  transition: box-shadow 0.3s ease;
}

.package-image-container {
  width: 100%;
  height: 100%;
  max-height: 420px;
  overflow: hidden;
}

.package-image {

  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;

  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Remove padding from package column */
.package-card .col-md-6 {
  padding: 0;
}

.package-info {
  padding: 20px;
}

.package-info>* {
  margin-bottom: 15px;
}

.info-box {
  margin-bottom: 15px;
}

.info-box-header {
  font-size: 0.8em;
  color: var(--text-main);
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 8px 15px;
  border: 1px solid #ddd;
  border-radius: 4px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.info-box-header:hover {
  background-color: #f8f9fa;
}

.info-box-icon {
  color: #666;
}

.info-box-content {
  display: none;
  padding: 10px;
  overflow: hidden;
}

.info-box.active .info-box-content {
  display: block;
}

.info-box.active .info-box-header {
  border-radius: 4px 4px 0 0;
}

.info-box.active .info-box-content {
  border: 1px solid #ddd;
  border-top: none;
  border-radius: 0 0 4px 4px;
}

/* Package Footer Styles */
.package-card .package-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.package-card .price-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-size: 0.9em;
}

.package-card .price-label {
  font-size: 0.8em;
  color: #666;
  margin-bottom: 5px;
}

.package-card .price {
  font-size: 1.2em;
  font-weight: bold;
  color: var(--text-main);
  margin-bottom: 5px;
}

.package-card .enquire-button {
  background-color: var(--primary);
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: 25px;
  font-size: 1em;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.package-card .enquire-button:hover {
  background-color: var(--primary-hover);
}

.itinerary-route {
  font-size: 0.8em;
  color: #fff;
  padding: 5px 10px;
  border-radius: 16px;
  background-color: var(--text-main);
}

.features-list {
  font-size: 0.8em;
  color: var(--text-main);
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.attractions-list {
  padding-left: 20px;
  list-style: none;
}

.attractions-list .label {
  display: inline-block;
  font-weight: bold;
  background: var(--bg-dark);
  color: #fff;
  padding: 0px 14px;
  border-radius: 16px;
  font-size: 0.8em;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  margin-bottom: 6px;
  margin-right: 3px;
}

.feature-item {
  display: inline-flex;
  align-items: center;
}

.pricing-section h2 {
  font-size: 1.4em;
  margin-bottom: 1px;
  color: var(--text-main);
}

.price-container {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1px;
}

.limited-deal {
  font-size: 0.8em;
  color: #ff4444;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  margin-bottom: 15px;
}

form label .required {
  color: red;
}

.action-buttons {
  display: flex;
  gap: 10px;
  justify-content: center;
}

.action-button {
  padding: 12px 40px;
  border-radius: 25px;
  font-size: 1em;
  font-weight: 500;
  text-decoration: none;
  transition: opacity 0.2s;
  min-width: 180px;
  text-align: center;
}

.action-button:hover {
  opacity: 0.9;
}

.enquire-button {
  background-color: var(--primary);
  color: white;
  border: none;
}

.whatsapp-button {

  background-color: #25d366;
  color: white;
  border: none;

  animation: pulse 2s infinite;
}

.whatsapp-button>img {
  width: 20px;
  height: 20px;
  margin-right: 10px;
  position: relative;
  top: 3px;
}

.starting-text {
  font-size: 1em;
  color: #666;
  margin-right: 2px;
}

.old-price {
  font-size: 1.4em;
  color: #666;
  text-decoration: line-through;
  margin-left: 2px;
}

.new-price {
  font-size: 2.3em;
  color: #2c3e50;
  font-weight: 700;
  margin-left: 2px;
}

.hero p {
  font-size: 1.5em;
  margin-bottom: 30px;
}

/* Flexbox Grid CSS */
.container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 0;
  padding-right: 0;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-left: 0;
  margin-right: 0;
}

.space-between {
  justify-content: space-between;
}

.col {
  flex: 1;
  min-width: 0;
  padding-left: 0;
  padding-right: 0;
}

/* Mobile-first responsive grid */
@media (min-width: 576px) {
  .col-sm-1 {
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }

  .col-sm-2 {
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }

  .col-sm-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-sm-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }

  .col-sm-5 {
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }

  .col-sm-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-sm-7 {
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }

  .col-sm-8 {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }

  .col-sm-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }

  .col-sm-10 {
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }

  .col-sm-11 {
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }

  .col-sm-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

@media (min-width: 768px) {
  .col-md-1 {
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }

  .col-md-2 {
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }

  .col-md-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-md-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }

  .col-md-5 {
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }

  .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-md-7 {
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }

  .col-md-8 {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }

  .col-md-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }

  .col-md-10 {
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }

  .col-md-11 {
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }

  .col-md-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

.download-itinerary-button {
  background-color: orange !important;
  color: #fff !important;
  border: none;
}

/* Sticky Enquire Now Footer (Mobile Only) */
.mobile-enquire-footer {
  display: none;
}

@media (max-width: 768px) {
  .mobile-enquire-footer {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 56px;
    background: #ff6b00;
    color: #fff;
    text-align: center;
    z-index: 9999;
    display: block;
    border: none;
    border-radius: 0;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
    transition: background 0.2s;
    padding: 0;
  }

  .mobile-enquire-footer:hover {
    background: #e05a00;
  }
}

.package-image-container:hover .package-image {
  transform: scale(1.05);
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }

  70% {
    transform: scale(1.05);
    box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
  }

  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

.floating-whatsapp {
  bottom: 90px;
  right: 20px;
}
}