/* ================================
  VARIABLES & BASE
================================ */

/* Universal fix for overflow */
*, *::before, *::after {
  box-sizing: border-box;
}

:root {
  --deep-blue: #005792;
  --blue: #0077B6;
  --yellow: #FFD700;
  --coral: #FF6B6B;
  --beige: #F9F5EB;
  --text-dark: #222;
  --text-light: #fff;
}

body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  background: var(--beige);
  color: var(--deep-blue);
}

a {
  text-decoration: none;
  color: inherit;
}

/* ================================
  HEADER & NAVIGATION
================================ */
header {
  background: var(--deep-blue);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  position: sticky;
  top: 0;
  z-index: 999;
}

.logo img {
  height: 60px;
}

.menu-toggle {
  display: none;
  font-size: 2rem;
  color: var(--text-light);
  cursor: pointer;
}

.nav-list li a.active {
  color: var(--yellow);
}

.nav-list li a.active::after {
  width: 100%;
}  

.nav-list {
  list-style: none;
  display: flex;
  gap: 2rem;
  margin: 0;
  padding: 0;
}

.nav-list li a {
  color: var(--text-light);
  font-weight: 600;
  position: relative;
}

.nav-list li a::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  bottom: -6px;
  left: 0;
  background: linear-gradient(90deg, var(--yellow), var(--coral));
  transition: width 0.4s ease;
}

.nav-list li a:hover::after {
  width: 100%;
}

.nav-list li a:hover {
  color: var(--yellow);
}

/* ================================
  PHONE BANNER
================================ */
.top-banner {
  position: sticky;
  top: 0;
  z-index: 999;
  background-color: #005792; /* Deep Blue */
  color: white;
  padding: 0.5em 1em;
  text-align: center;
  display: flex;
  justify-content: center;
  gap: 1em;
  flex-wrap: wrap;
  font-size: 0.95rem;
  border-bottom: 2px solid #FFD700;
}

.banner-link {
  color: #FFD700; /* Sunshine Yellow */
  text-decoration: none;
  font-weight: 600;
  font-family: inherit; /* 🔹 Keeps the same font as the rest of your site */
}

.banner-link:hover {
  text-decoration: underline;
}

.divider {
  color: white;
  font-weight: lighter;
}

/* ================================
  HERO SECTION
================================ */
.hero {
  height: 92vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('images/hero-banner.jpg') center/cover no-repeat;
  position: relative;
}

.hero-content {
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 800px;
  width: 90%;
  color: var(--text-light);
}

.logo-hero {
  max-width: 120px;
  margin-bottom: 1rem;
}

.hero h1 {
  font-size: 3rem;
  font-weight: 900;
  margin: 0.5rem 0;
  background: linear-gradient(90deg, var(--yellow), var(--coral));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p {
  font-size: 1.3rem;
  margin: 1rem 0 2rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 3;
}

.scroll-indicator .mouse {
  width: 30px;
  height: 50px;
  border: 2px solid var(--yellow);
  border-radius: 20px;
  position: relative;
}

.scroll-indicator .wheel {
  width: 6px;
  height: 6px;
  background: var(--coral);
  border-radius: 50%;
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  animation: wheelMove 1.5s infinite;
}

@keyframes wheelMove {
  0% { opacity: 1; top: 10px; }
  50% { opacity: 0.5; top: 25px; }
  100% { opacity: 0; top: 35px; }
}

.scroll-indicator span {
  margin-top: 10px;
  font-size: 0.9rem;
  color: var(--text-light);
  letter-spacing: 1px;
}

/* ================================
  BUTTONS
================================ */
.btn {
  padding: 1rem 2.5rem;
  border-radius: 50px;
  border: none;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.4s ease;
  background: linear-gradient(90deg, var(--yellow), var(--coral));
  color: var(--text-dark);
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.btn:hover {
  background: linear-gradient(90deg, var(--coral), var(--yellow));
  color: var(--text-light);
  transform: translateY(-4px);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--coral);
  color: var(--coral);
  padding: 0.75rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  transition: all 0.4s;
}

.btn-outline:hover {
  background: var(--coral);
  color: var(--text-light);
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 5rem 2rem;
}

section h2 {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 3rem;
  font-weight: 900;
  letter-spacing: 1px;
}

/* ================================
  WHY BOOK & PACKAGES
================================ */
.blue-section {
  background: linear-gradient(to right, var(--blue), #0096c7);
  color: var(--text-light);
  padding: 5rem 2rem;
}

.why-book, .packages {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2.5rem;
  text-align: center;
}

.why-book div, .card {
  background: var(--beige);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
  transition: all 0.4s ease;
  color: var(--deep-blue);
}

.why-book div:hover, .card:hover {
  transform: translateY(-7px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}

.why-book i {
  font-size: 3rem;
  color: var(--yellow);
  margin-bottom: 1rem;
}

.card-image {
  height: 250px;
  background-size: cover;
  background-position: center;
  border-radius: 15px 15px 0 0;
  transition: transform 0.4s;
}

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

.card-content {
  padding: 2rem;
}

.price-tag {
  display: inline-block;
  background: linear-gradient(90deg, var(--yellow), var(--coral));
  color: var(--text-dark);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-weight: 700;
  margin: 0.5rem 0;
}

.card-content .btn-outline {
  display: block;
  width: fit-content;
  margin: 1rem auto 0;
}

/*certifications*/

.certifications {
  background: linear-gradient(to right, var(--blue), #0096c7);
  padding: 5rem 2rem;
  text-align: center;
  color: var(--text-light);
}

.cert-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.cert-box {
  background: #fff;
  color: var(--deep-blue);
  border-radius: 20px;
  padding: 1.5rem;
  width: 160px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.cert-box i {
  font-size: 2rem;
  color: var(--coral);
  margin-bottom: 0.5rem;
}

.cert-box p {
  margin: 0;
  font-weight: 600;
  font-size: 0.95rem;
}

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


/* ================================
  PROMO BANNER
================================ */
.promo-banner {
  background: linear-gradient(to right, var(--blue), #0096c7);
  color: var(--text-light);
  font-weight: 700;
  font-size: 0.95rem;
  overflow: hidden;
  white-space: nowrap;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.promo-banner p {
  display: inline-block;
  padding-left: 100%;
  animation: ticker 15s linear infinite;
}

@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

/* ================================
  CTA SECTION
================================ */
.cta-banner {
  background: #fff;
  color: var(--deep-blue);
  text-align: center;
  padding: 4rem 3rem;
  border-radius: 25px;
  margin: 5rem 2rem; /* Give more room around the box */
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
  max-width: 800px;
}

.cta-banner .cta-icon {
  color: var(--yellow);
  font-size: 5rem;
  margin-bottom: 0.5rem;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ================================
  NEWSLETTER
================================ */
.newsletter {
  background: #fff;
  color: var(--deep-blue);
  text-align: center;
  padding: 6rem 2rem;
  border-radius: 25px;
  margin: 5rem auto;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
  max-width: 700px;
}

.newsletter-icon {
  font-size: 5rem;
  color: var(--coral);
  margin-bottom: 0.5rem;
}

.newsletter h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 900;
}

.newsletter p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.newsletter form {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.newsletter input[type="email"] {
  padding: 1rem;
  border: 2px solid var(--deep-blue);
  border-radius: 50px;
  width: 250px;
  max-width: 100%;
  font-size: 1rem;
}

.newsletter button {
  background: linear-gradient(90deg, var(--yellow), var(--coral));
  color: var(--text-dark);
  padding: 1rem 2rem;
  border: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.4s;
}

.newsletter button:hover {
  background: linear-gradient(90deg, var(--coral), var(--yellow));
  color: var(--text-light);
}

/* ================================
  TESTIMONIALS
================================ */
.testimonials {
  background: linear-gradient(to right, var(--blue), #0096c7);
  color: var(--text-light);
  padding: 5rem 2rem;
  text-align: center;
}

.testimonials h2 {
  font-size: 2.8rem;
  font-weight: 900;
  margin-bottom: 3rem;
}

.testimonial-carousel {
  max-width: 700px;
  margin: 0 auto;
}

.testimonial {
  display: none;
  background: rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: 15px;
}

.testimonial.active {
  display: block;
}

.testimonial p {
  font-style: italic;
  margin-bottom: 1rem;
}

.testimonial h4 {
  margin: 0;
  font-weight: 700;
  color: var(--yellow);
}

/* ================================
  FOOTER
================================ */
footer {
  background: var(--deep-blue);
  color: var(--text-light);
  text-align: center;
  padding: 3rem 2rem;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  text-align: center;
}

.footer-logo img {
  max-width: 150px;
}

.footer-links nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  list-style: none;
  margin: 1rem 0;
  padding: 0;
}

.footer-links nav a {
  color: var(--text-light);
  font-size: 1rem;
  font-weight: 500;
  transition: color 0.4s ease;
}

.footer-links nav a:hover {
  color: var(--yellow);
}

.footer-links .socials i {
  margin: 0 0.7rem;
  font-size: 1.8rem;
  color: var(--yellow);
  transition: color 0.4s ease;
}

.footer-links .socials i:hover {
  color: var(--coral);
}

/* ================================
  SCROLLBAR
================================ */
::-webkit-scrollbar {
  width: 12px;
}
::-webkit-scrollbar-track {
  background: var(--beige);
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(var(--yellow), var(--coral));
  border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(var(--coral), var(--yellow));
}
html {
  scrollbar-width: thin;
  scrollbar-color: var(--coral) var(--beige);
}

/* ================================
  RESPONSIVE
================================ */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav-list {
    flex-direction: column;
    background: var(--deep-blue);
    position: absolute;
    top: 80px;
    right: 0;
    width: 100%;
    padding: 1rem 0;
    display: none;
  }

  .nav-list.active {
    display: flex;
  }

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

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

  .hero-buttons {
    flex-direction: column;
  }

  .why-book, .packages {
    grid-template-columns: 1fr;
  }

  .cta-banner, .newsletter {
    padding: 2rem 1rem;
    margin: 3rem 1rem;
  }

  .cta-banner h2, .newsletter h2 {
    font-size: 1.6rem;
  }

  .cta-banner p, .newsletter p {
    font-size: 1rem;
  }

  .cta-buttons, .newsletter form {
    flex-direction: column;
    gap: 0.8rem;
  }

  .footer-content {
    flex-direction: column;
  }

  .footer-links nav ul {
    flex-direction: column;
    gap: 0.5rem;
  }
}


  /*ABOUT US PAGE*/
  /* === About Page Hero === */
.about-hero {
    height: 35vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), 
    url('images/about-hero.jpg') center center / cover no-repeat;
    color: var(--text-light);
}

.about-hero h1 {
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(90deg, var(--yellow), var(--coral));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  

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

.about-card {
    background: var(--beige);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s, background 0.3s, color 0.3s;
}

.about-card i {
    font-size: 3rem;
    color: var(--yellow);
    margin-bottom: 1rem;
}

.about-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.about-card p {
    transition: color 0.3s;
}

.about-card:hover {
    background: var(--coral);
    color: var(--text-light);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.about-card:hover i {
    color: var(--yellow);
}

.about-card:hover p {
    color: var(--text-light);
}

.team-section {
    text-align: center;
    margin: 4rem auto;
}

.team-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: 900;
    background: linear-gradient(90deg, var(--yellow), var(--coral));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.team-photo {
    max-width: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.team-photo:hover {
    transform: scale(1.03);
}

/* About cards container */
.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem; /* reduced margin below the grid */
}

/* Team section adjustments */
.team-section {
    text-align: center;
    margin: 2rem auto; /* reduce top and bottom spacing */
}

.team-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 900;
    background: linear-gradient(90deg, var(--yellow), var(--coral));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Team image adjustments */
.team-photo {
    max-width: 400px; /* smaller image width */
    width: 90%;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.team-photo:hover {
    transform: scale(1.03);
}

/* Blue separator */
.separator {
    width: 100%;
    height: 2px;
    background: var(--blue);
    margin: 2rem auto;
    border-radius: 2px;
}

.separator-icons {
    background: var(--deep-blue);
    padding: 2rem 0; /* slightly more vertical padding */
    text-align: center;
    border-top: none;
    border-bottom: none;
  }
  
  .separator-icons i {
    color: var(--beige);
    font-size: 1.7rem;
    margin: 0 0.5rem;
    transition: transform 0.3s ease;
  }
  
  .separator-icons i:hover {
    transform: translateY(-4px);
  }
  
  .about-cards {
    margin-bottom: 2rem; /* reduce spacing below the grid cards */
  }
  
  .team-section {
    margin-top: 2rem; /* pull it closer to icons bar */
  }
  
  
  .team-section {
    text-align: center;
    margin-top: 2rem;
  }
  
  .team-section h2 {
    color: var(--coral);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 900;
  }
  
  .team-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }
  
  .team-content img {
    width: 300px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  }
  
  .team-content p {
    max-width: 600px;
    color: var(--deep-blue);
    font-size: 1.1rem;
    line-height: 1.6;
  }
  
  /* =========================
   CONTACT US PAGE CSS
   ========================= */

/* --- Contact Card Styles --- */
/* Contact Hero specific styling */
.hero-contact {
    height: 35vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), 
                url('images/contact-hero.jpg') center center / cover no-repeat;
  }
  
  
  .hero-contact h1 {
    font-size: 3rem; /* match About Us page */
    font-weight: 900;
    margin: 0.5rem 0;
    background: linear-gradient(90deg, var(--yellow), var(--coral));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  
  .hero-contact p {
    margin-top: 1rem;
    font-size: 1.2rem;
    max-width: 600px;
    line-height: 1.5;
    color: var(--text-light);
    text-shadow: 0 1px 3px rgba(0,0,0,0.6);
  }  

.contact-card {
    transition: all 0.4s ease;
    background: var(--beige);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    text-align: center;
    cursor: pointer;
}

.contact-card i {
    font-size: 3rem;
    margin-bottom: 1rem;
    transition: color 0.4s ease;
}

.contact-card:hover {
    background: var(--coral);
    color: var(--text-light);
}

.contact-card:hover i {
    color: var(--yellow);
}

/* --- Blue Sandwich Background Section --- */
.blue-background {
    background: linear-gradient(to right, var(--blue), #0096c7);
    color: var(--text-light);
    padding: 5rem 2rem; /* adjust spacing as needed */
    text-align: center;
}

.blue-background h2,
.blue-background p {
    color: var(--text-light);
}

/* --- CTA Banner Styles (Pop-out Box) --- */
.cta-banner {
    background: #fff; /* white pop-out */
    color: var(--deep-blue);
    text-align: center;
    padding: 4rem 2rem;
    border-radius: 25px;
    margin: 0 auto;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    max-width: 800px;
}

.cta-banner .cta-icon {
    color: var(--coral); /* changed to coral for contrast */
    font-size: 5rem;
    margin-bottom: 0.5rem;
}

.cta-banner h2 {
    color: var(--coral); /* heading inside CTA box */
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 900;
}

.cta-banner p {
    color: var(--deep-blue);
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-banner .btn {
    background: linear-gradient(90deg, var(--yellow), var(--coral));
    color: var(--text-dark);
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.4s;
}

.cta-banner .btn:hover {
    background: linear-gradient(90deg, var(--coral), var(--yellow));
    color: var(--text-light);
    transform: translateY(-4px);
}

/* --- Container spacing helper --- */
.container + .container {
    margin-top: 2rem;
}

/* --- Blue background buttons (if any) --- */
.blue-background .btn {
    background: var(--yellow);
    color: var(--deep-blue);
}

.blue-background .btn:hover {
    background: var(--coral);
    color: var(--text-light);
}

/*PACKAGES PAGE*/
/* Packages grid style */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
  }
  
  /* Card style */
  .package-card {
    background: var(--beige);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    text-align: center;
  }
  
  .package-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
  }
  
  .package-card .card-image {
    height: 220px;
    background-size: cover;
    background-position: center;
    transition: transform 0.4s;
  }
  
  .package-card:hover .card-image {
    transform: scale(1.05);
  }
  
  .package-card .card-content {
    padding: 2rem;
  }
  
  .package-card .stars i {
    color: #FFD700;
    margin: 0 1px;
  }
  
  .package-card .price-tag {
    display: inline-block;
    background: linear-gradient(90deg, var(--yellow), var(--coral));
    color: var(--text-dark);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 700;
    margin: 0.8rem 0;
  }
  
  .package-card .btn, 
  .package-card .btn-outline {
    display: block;
    width: 100%;
    margin: 0.4rem 0;
    padding: 0.7rem 1rem;
    font-size: 0.95rem;
    }

   /* Inquiry Form Section */
   /* Inquiry Hero Overlay */
.inquiry-hero {
  height: 35vh;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
}

.inquiry-hero::after {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45);
}

.inquiry-hero .hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

/* Inquiry Section */
/* Inquiry Hero Overlay */
.inquiry-hero {
  height: 35vh;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
}

.inquiry-hero::after {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45);
}

.inquiry-hero .hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

/* Inquiry Section */
.inquiry-section {
  background: var(--beige);
  padding: 6rem 1rem;
  display: flex;
  justify-content: center;
}

.inquiry-container {
  background: #fff;
  border-radius: 16px;
  padding: 3rem 2rem;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.1);
  max-width: 500px;
  width: 100%;
  text-align: center;
  transition: transform 0.3s ease;
}

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

.inquiry-container h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--deep-blue);
}

.inquiry-container p {
  font-size: 1rem;
  margin-bottom: 2rem;
  color: var(--text-dark);
}

.inquiry-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.inquiry-form .input-group {
  position: relative;
}

.inquiry-form .input-group i {
  position: absolute;
  top: 50%;
  left: 1rem;
  transform: translateY(-50%);
  font-size: 1.1rem;
  color: var(--deep-blue);
  pointer-events: none;
}

.inquiry-form input,
.inquiry-form textarea {
  width: 100%;
  padding: 1rem 1rem 1rem 3rem;
  border: none;
  border-radius: 12px;
  background: #f0f4f8;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.inquiry-form input:focus,
.inquiry-form textarea:focus {
  background: #fff;
  box-shadow: 0 0 0 3px rgba(0, 87, 146, 0.2);
  outline: none;
}

.inquiry-form button {
  background: var(--yellow);
  color: var(--deep-blue);
  font-weight: 800;
  border: none;
  padding: 1rem;
  border-radius: 50px;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.inquiry-form button:hover {
  background: var(--deep-blue);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 87, 146, 0.3);
}

@media (max-width: 600px) {
  .inquiry-container {
    padding: 2rem 1rem;
  }

  .inquiry-container h2 {
    font-size: 1.6rem;
  }
}

/*Top Deals Hero*/
.deals-hero {
  height: 35vh; /* same height as Inquiry */
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
}

.deals-hero::after {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45); /* overlay darkness */
}

.deals-hero .hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
}
