:root {
  --primary-color: #f67202;
  --primary-dark: #d55f00;
  --text-dark: #2d3436;
  --text-light: #636e72;
  --bg-white: #ffffff;
  --bg-light: #f8f9fa;
  --gradient-overlay: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.6) 100%);
  --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 10px 20px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.12);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.7;
  color: var(--text-dark);
  background-color: var(--bg-white);
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.3;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 25px 0;
  background: transparent;
  transition: var(--transition);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 55px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.logo img:hover {
  transform: scale(1.05);
}

.main-nav ul {
  display: flex;
  gap: 35px;
}

.main-nav a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 1px;
  position: relative;
  padding-bottom: 5px;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: var(--transition);
}

.main-nav a:hover::after {
  width: 100%;
}

.main-nav a:hover {
  color: var(--primary-color);
}

/* Mobile Menu Button */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 26px;
  cursor: pointer;
  transition: var(--transition);
}

.menu-toggle:hover {
  color: var(--primary-color);
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  background: var(--gradient-overlay), url('https://images.unsplash.com/photo-1552566626-52f8b828add9?q=80&w=1200&auto=format&fit=crop') no-repeat center center/cover;
  background-attachment: fixed;
  color: #fff;
  overflow: hidden;
}

.hero-content {
  max-width: 800px;
  position: relative;
  z-index: 2;
  animation: fadeUp 1s ease-out;
}

.hero h1 {
  font-size: 4rem;
  letter-spacing: -1px;
  margin-bottom: 2.5rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero h1 span {
  color: var(--primary-color);
}

.btn {
  display: inline-block;
  padding: 16px 40px;
  background-color: transparent;
  border: 2px solid var(--primary-color);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 50px;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(246, 114, 2, 0.3);
}

.btn:hover {
  background-color: var(--primary-color);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(246, 114, 2, 0.5);
}

/* Animations */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Separator */
.separator {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  line-height: 0;
  z-index: 5;
}

.separator svg {
  width: 100%;
  height: 80px;
  fill: var(--bg-white);
  filter: drop-shadow(0 -5px 10px rgba(0, 0, 0, 0.1));
}

/* Highlights Section */
.highlights {
  padding: 100px 0;
  position: relative;
}

.highlights-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8vh;
  align-items: center;
}

.highlights-content h2 {
  font-size: 3rem;
  margin-bottom: 40px;
  position: relative;
}

.highlights-content span {
  color: var(--primary-color);
}

.highlights-list li {
  margin-bottom: 30px;
  font-size: 1.05rem;
  color: var(--text-light);
  display: flex;
  flex-direction: column;
  /* Animation Setup */
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  padding-left: 15px;
  border-left: 3px solid transparent;
  /* For hover effect */
}

/* Triggered by JS */
.highlights-list li.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Hover Effect */
.highlights-list li:hover {
  border-left-color: var(--primary-color);
  background: linear-gradient(90deg, rgba(246, 114, 2, 0.05) 0%, transparent 100%);
  padding-left: 20px;
  /* Slight movement */
  cursor: default;
}

.highlights-list strong {
  display: block;
  font-size: 1.25rem;
  margin-bottom: 5px;
  color: var(--text-dark);
  font-family: 'Montserrat', sans-serif;
  transition: color 0.3s ease;
}

.highlights-list li:hover strong {
  color: var(--primary-color);
}

.highlights-img img {
  width: 100%;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
  opacity: 0;
  /* Animate this too */
  transform: scale(0.95);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.highlights-img img.visible {
  opacity: 1;
  transform: scale(1);
}

/* Value Proposition */
.value-prop {
  padding: 80px 20px;
}

.value-prop h2 {
  font-size: 2.2rem;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.value-prop h2 span {
  color: var(--primary-color);
}

.value-prop p {
  font-size: 1.15rem;
  line-height: 1.9;
  color: var(--text-light);
}

/* Services Section */
.services {
  padding: 100px 0;
  background-color: var(--bg-light);
  text-align: center;
}

.section-title {
  margin-bottom: 70px;
}

.section-title h2 {
  font-size: 3rem;
  display: inline-block;
  position: relative;
}

.section-title h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: var(--primary-color);
  margin: 15px auto 0;
  border-radius: 2px;
}

.section-title span {
  color: var(--primary-color);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  /* Force 4 columns on desktop */
  gap: 30px;
}

@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    /* 2 columns on tablets */
  }
}

@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr;
    /* 1 column on mobile */
  }
}

.service-card {
  padding: 40px 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border-top: 5px solid transparent;
  cursor: default;
  /* Flexbox for perfect icon alignment */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-top: 5px solid var(--primary-color);
}

.service-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 30px;
  fill: var(--primary-color);
  transition: transform 0.5s ease;
}

.service-card:hover .service-icon {
  transform: rotateY(180deg);
}

.service-card h3 {
  margin-bottom: 20px;
  font-size: 1.4rem;
}

.service-card p {
  color: var(--text-light);
}

/* Comparison Table */
.comparison {
  padding: 100px 0;
}

.table-wrapper {
  overflow-x: auto;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
}

table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  overflow: hidden;
}

th,
td {
  padding: 22px 30px;
  text-align: left;
  border-bottom: 1px solid #f0f0f0;
}

th {
  background-color: var(--text-dark);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
}

tr:hover td {
  background-color: #fffbf7;
}

td:first-child {
  text-align: center;
  font-weight: 700;
  color: var(--primary-color);
  font-family: 'Montserrat', sans-serif;
}

td {
  color: var(--text-light);
}

tr td:nth-child(4) {
  color: var(--text-dark);
}

tr:last-child td {
  border-bottom: none;
}

/* Testimonials */
.testimonials {
  padding: 100px 0;
  background: var(--bg-light);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
}

.testimonial-card {
  background: #fff;
  padding: 0 0 40px 0;
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  text-align: center;
  transition: var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.testimonial-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: top;
  margin-bottom: 30px;
}

.testimonial-card h3 {
  margin-bottom: 15px;
  color: var(--primary-color);
  font-size: 1.3rem;
  padding: 0 20px;
}

.testimonial-card p {
  padding: 0 30px;
  font-style: italic;
  font-weight: 300;
  color: var(--text-light);
}

/* Contact Section */
.cta {
  padding: 100px 0;
  background: var(--bg-light);
  text-align: center;
}

.contact-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

.booking-form {
  background: #fff;
  padding: 30px;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  width: 100%;
  max-width: 700px;
  /* Increased size for center focus */
  text-align: left;
  position: relative;
  overflow: hidden;
  /* Animation */
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s ease-out forwards;
  animation-delay: 0.2s;
}

.booking-form::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--gradient-primary);
}

.booking-form h3 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: var(--text-dark);
  text-align: center;
  font-family: 'Montserrat', sans-serif;
}

.form-group {
  margin-bottom: 15px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  transition: var(--transition);
  background: #f9f9f9;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--primary-color);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(246, 114, 2, 0.1);
  outline: none;
}

.booking-form .btn {
  width: 100%;
  padding: 18px;
  font-size: 1.1rem;
  margin-top: 10px;
  cursor: pointer;
  background-color: var(--primary-color);
  color: #fff;
  border: none;
}

.booking-form .btn:hover {
  background-color: #d86400;
  /* Darker orange for hover */
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(246, 114, 2, 0.4);
}

/* Footer */
footer {
  background-color: #1a1a1a;
  color: #fff;
  padding: 80px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
  gap: 30px;
  margin-bottom: 60px;
}

.footer-logo img {
  height: 120px;
  width: auto;
  margin-bottom: 25px;
  filter: none;
  opacity: 1;
}

.footer-logo p {
  color: #999;
}

.footer-links h3,
.footer-social h3,
.footer-social-icons h3,
.footer-policies h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.2rem;
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 15px;
}

.footer-links h3::after,
.footer-social h3::after,
.footer-social-icons h3::after,
.footer-policies h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--primary-color);
}

.footer-links ul li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #bbb;
  font-size: 0.95rem;
}

.social-icon {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: var(--transition);
}

.social-icon:hover {
  background: var(--primary-color);
  transform: translateY(-3px) rotate(360deg);
}

/* Responsive Styles */
@media (max-width: 991px) {
  .hero h1 {
    font-size: 3rem;
  }

  .highlights-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .highlights-img {
    order: -1;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  header {
    padding: 15px 0;
    background: rgba(0, 0, 0, 0.8);
    /* Semi-transparent background on mobile */
  }

  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    padding: 30px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
  }

  .main-nav.active {
    display: block;
    animation: slideDown 0.3s ease-out;
  }

  @keyframes slideDown {
    from {
      opacity: 0;
      transform: translateY(-10px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .main-nav ul {
    flex-direction: column;
    align-items: center;
    gap: 25px;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .section-title h2 {
    font-size: 2.2rem;
  }

  .highlights-content h2 {
    font-size: 2.2rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    padding-left: 5px;
  }
}

/* Policy Pages */
.page-header {
  background-color: #1a1a1a;
  position: relative !important;
  /* Force relative positioning */
  z-index: 1001;
}

.policy-page {
  padding: 80px 0;
  min-height: 60vh;
}

.policy-page h1 {
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: var(--primary-color);
  text-align: center;
}

.policy-content h2 {
  font-size: 1.5rem;
  margin-top: 30px;
  margin-bottom: 15px;
  color: var(--text-dark);
}

.policy-content p {
  margin-bottom: 15px;
  color: var(--text-light);
  line-height: 1.8;
}

.policy-links {
  list-style: none;
}

.policy-links li {
  margin-bottom: 12px;
}

.policy-links a {
  color: #bbb;
  font-size: 0.95rem;
}

color: var(--primary-color);
padding-left: 5px;
}

.policy-content h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-top: 20px;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.policy-content ul {
  list-style-type: disc;
  padding-left: 20px;
  margin-bottom: 20px;
}

.policy-content ul li {
  color: var(--text-light);
  margin-bottom: 8px;
  line-height: 1.6;
}