/* styles.css */
/* Reset styles */
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
li {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  color: #213555;
  /* Primary dark blue */
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  cursor: pointer;
  border: none;
  outline: none;
}

/* Base style for form containers */
.form-container,
.review-card {
  border-radius: 10px;
}

/* Header & Navbar */
header {
  background-color: white;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 50px;
  border-bottom: 1px solid #F0F0F0;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 40px;
  margin-right: 10px;
}

.company-name {
  font-size: 1.2rem;
  font-weight: bold;
}

.nav-links {
  display: flex;
  gap: 30px;
}

.nav-links a {
  font-weight: 500;
}

.book-button {
  background-color: #213555;
  color: white;
  padding: 8px 20px;
  border-radius: 5px;
  font-size: 1rem;
}

/* Hero Section */
.hero {
  height: 400px;
  /* background-image: url(../assets/images/contact.jpg); Replace with actual image path */
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  position: relative;
}

.hero::before {

  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url(../assets/images/contact2.jpg);
  opacity: 1;
  background-size: cover;
  height: 85vh;
  z-index: -10;

}

.hero-overlay {
  max-width: 650px;
  padding: 50px;

  border-radius: 30px;
  z-index: 2;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(8px);

  color: white;
}

.hero-content {
  text-align: center;
  z-index: 1;
}

.hero-title {
  font-size: 6rem;
  color: #f2f2f2;
  /* margin-bottom: 20px; */
}

.contact-now-button {
  background-color: #213555;
  color: white;
  padding: 10px 25px;
  border-radius: 5px;
  font-size: 1.1rem;
}

/* Form Section */
.form-section {
  padding: 80px 50px;
  display: flex;
  justify-content: center;
}

.form-container {
  background-color: #E0E0E0;
  /* Adjust to match the lighter grey from image */
  padding: 50px;
  width: 800px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  z-index: 10;
}

@media (max-width: 768px) {
  .form-container {
    width: 100%;
    padding: 12px;
  }

  .form-section {
    padding: 40px 12px;
  }

  .hero-title {
    margin-bottom: 70px;
    font-size: 3rem;
  }

}

.form-title {
  font-size: 1.8rem;
  margin-bottom: 30px;
  text-align: center;
}

.form-group.row {
  margin-bottom: 15px;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.form-group.row .col {
  flex: 1;
}

.form-group.row.three-col .col {
  flex: 1;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #CCCCCC;
  border-radius: 5px;
  box-sizing: border-box;
  /* Crucial for padding to work within width */
}

.form-group textarea {
  height: 100px;
}

.sub-title {
  margin: 25px 0 15px;
  font-size: 1.2rem;
}

.checkbox-group,
.checkbox-list-group {
  display: flex;
  align-items: center;
  gap: 10px;
}

.checkbox-group input {
  margin-top: 2px;
}

.checkbox-group label {
  font-size: 0.9rem;
  color: #555555;
}

.form-group label {
  display: block;
  margin-bottom: 5px;
  font-size: 0.95rem;
}

.required-badge {
  color: red;
  font-weight: bold;
}

.checkbox-list-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
}

.checkbox-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.checkbox-item label {
  margin: 0;
}

.submit-row {
  justify-content: center;
  margin-top: 30px;
}

.submit-button {
  background-color: #213555;
  color: white;
  padding: 12px 40px;
  border-radius: 5px;
  font-size: 1.1rem;
}

.form-line-separator {
  height: 1px;
  background-color: #CCCCCC;
  margin-top: 30px;
}

/* Reviews Section */
.reviews-section {
  padding: 80px 50px;
  text-align: center;
}

.section-title {
  font-size: 2.2rem;
  margin-bottom: 10px;
}

.section-subtitle {
  margin-bottom: 50px;
}

.reviews-carousel-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  overflow: hidden;
  /* Hide overflow for carousel */
}

.reviews-carousel {
  display: flex;
  gap: 30px;
}

.review-card {
  background-color: #F0F0F0;
  /* Brighter grey than form box */
  padding: 30px;
  width: 300px;
  text-align: left;
}

.review-header {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.review-header img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 15px;
}

.review-name {
  font-size: 1.1rem;
}

.review-date {
  font-size: 0.8rem;
  color: #808080;
}

.rating-stars {
  color: gold;
  font-size: 1.2rem;
  margin-bottom: 15px;
}

.review-text {
  font-size: 0.95rem;
  color: #555555;
}

.carousel-control {
  background: none;
  color: #808080;
  font-size: 3rem;
}

/* Footer Section */
.footer {
  background: var(--color-dark);
  color: var(--color-white);
  padding-top: 56px;
  margin-top: 48px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1.2fr;
  gap: 40px 32px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer__logo .logo__circle {
  background: rgba(255, 255, 255, 0.15);
  /* background-image: url(/assets/images/logo2.jpg);
  background-size: cover; */
}

.footer__logo .logo__icon {
  /* background: var(--color-light-blue); */
  /* background-image: url(/assets/images/logo2.jpg); */
  background-size: cover;
}

.footer__about {
  margin: 16px 0 20px;
  font-size: 14px;
  line-height: 1.5;
  opacity: 0.88;
  max-width: 260px;
  color: white;
}

.footer__social {
  display: flex;
  gap: 12px;
}

.footer__social-link {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  font-size: 12px;
  color: var(--color-white);
  transition: background 0.2s;
}

.footer__social-link:hover {
  background: rgba(255, 255, 255, 0.2);
}

.footer__heading {
  margin: 0 0 16px;
  font-size: 16px;
  font-weight: 700;
  color: var(--color-white);
}

.footer__links {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer__links li {
  margin-bottom: 8px;
}

.footer__links a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.88);
  transition: color 0.2s;
}

.footer__links a:hover {
  color: var(--color-white);
}

.footer__contact {
  margin: 0 0 8px;
  font-size: 14px;
  line-height: 1.5;
  opacity: 0.88;
  color: white;
}

.footer__bottom {
  padding: 20px 0;
}

.footer__copy {
  margin: 0;
  font-size: 13px;
  text-align: center;
  opacity: 0.8;
}

@media (max-width: 900px) {
  .footer__inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 500px) {
  .footer__inner {
    grid-template-columns: 1fr;
  }
}


:root {
  --color-dark: #1C2B42;
  --color-dark-rgb: 28, 43, 66;
  --color-text: #2d3748;
  --color-text-light: #718096;
  --color-white: #ffffff;
  --color-light-blue: #7ba3c9;
  --color-accent-yellow: #f6e05e;
  --color-faq-bar: #e2e8f0;
  --color-card-bg: #f7fafc;
  --color-card-bg: #fdfdfe;
  --font-sans: 'Poppins', 'Inter', system-ui, sans-serif;
  --radius: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-btn: 12px;
  --shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.1);
  --container: 1200px;
  --container-padding: 24px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.5;
  color: var(--color-text);
  background: var(--color-white);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  max-width: var(--container);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
}

/* ----- Header: white bg, circular dark blue logo, nav, dark blue rounded button ----- */
.header {
  position: relative;
  z-index: 100;
  background: var(--color-white);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 24px;
}

.logo__circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  background: var(--color-white);
  border-radius: 50%;
}

.logo__icon {
  width: 90px;
  height: 90px;
  background-image: url(../assets/images/logo.png);
  background-size: cover;
  /* border-radius: 50%; */
  opacity: 0.95;
}

.nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav__link {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: var(--color-text);
}

.nav__link:hover {
  color: var(--color-dark);
}

.nav__dropdown {
  position: relative;
}

.nav__link--dropdown {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  font: inherit;
  color: inherit;
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav__link--dropdown::after {
  content: '';
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  margin-left: 2px;
}

.nav__dropdown:hover .nav__link--dropdown,
.nav__dropdown.is-open .nav__link--dropdown {
  color: var(--color-dark);
}

.nav__dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 8px;
  min-width: 200px;
  padding: 8px 0;
  background: var(--color-white);
  border-radius: var(--radius-btn);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(0, 0, 0, 0.06);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: opacity 0.2s, visibility 0.2s, transform 0.2s;
  z-index: 100;
}

.nav__dropdown:hover .nav__dropdown-menu,
.nav__dropdown.is-open .nav__dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav__dropdown-menu a {
  display: block;
  padding: 10px 20px;
  font-size: 15px;
  font-weight: 500;
  color: var(--color-text);
  transition: background 0.15s, color 0.15s;
}

.nav__dropdown-menu a:hover {
  background: var(--color-card-bg);
  color: var(--color-dark);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 15px;
  border: none;
  border-radius: var(--radius-btn);
  cursor: pointer;
  transition: opacity 0.2s, transform 0.1s;
}

.btn:hover {
  opacity: 0.92;
}

.btn--primary {
  background: var(--color-dark);
  color: var(--color-white);
}

.btn--lg {
  padding: 14px 28px;
  font-size: 16px;
}

.header__menu {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
}

.header__menu span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text);
}

@media (max-width: 768px) {

  .nav,
  .btn--primary {
    display: none;
  }

  .header--open .nav {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    padding: 16px;
    box-shadow: var(--shadow);
    align-items: stretch;
  }

  .header--open .btn--primary {
    display: inline-flex;
  }

  .header__menu {
    display: flex;
  }

  .header--open .nav__dropdown {
    position: static;
  }

  .header--open .nav__dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    margin-top: 4px;
    margin-bottom: 8px;
    box-shadow: none;
    border: none;
    padding-left: 12px;
    border-left: 2px solid var(--color-light-blue);
  }

  .cta-section__img {
    display: none;
  }

  .btn--plan {
    display: flex;
    flex-direction: column;
  }
}

/* ----- Hero: kitchen bg, dark overlay left ~2/3, headline + CTA + 3 feature circles, image right ----- */
.reviews-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 32px;
  padding: 0 8px;
}

.reviews-arrow {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 2px solid var(--color-dark);
  background: var(--color-white);
  color: var(--color-dark);
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
}

.reviews-arrow:hover {
  background: var(--color-dark);
  color: var(--color-white);
}

.reviews-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  flex: 1;
  min-width: 0;
}

.review-card {
  padding: 24px;
  background: var(--color-card-bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.review-card__header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.review-card__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #d4dce6 0%, #b0bcc8 100%);
  flex-shrink: 0;
}

.review-card__name {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-text);
}

.review-card__stars {
  font-size: 14px;
  color: var(--color-accent-yellow);
  letter-spacing: 2px;
  margin-top: 2px;
}

.review-card__text {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: var(--color-text-light);
}

.number-in {
  width: 100%;
  padding: 10px;
  border: 1px solid #CCCCCC;
  border-radius: 5px;
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .reviews-track {
    grid-template-columns: 1fr;
  }

  .reviews-arrow {
    display: none;
  }
}