/* ================= GLOBAL ================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}

body {
  margin: 0;
  width: 100%;
  overflow-x: hidden;
  background: #FFFFFF;
  color: #041541;
  font-size: 1rem;
  line-height: 1.6;
}

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

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

html {
  scroll-behavior: smooth;
}

section {
  scroll-margin-top: 120px;
}


/* ================= NAVBAR ================= */

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 4rem;
  background: #041541;
  position: sticky;
  top: 0;
  z-index: 1000;
  min-height: 70px;
}

/* LOGO */
.logo img {
  height: 80px;
  width: auto;
  object-fit: contain;
  display: block;
}

/* ================= RIGHT SIDE ================= */

.nav-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* ================= NAV LINKS ================= */

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  list-style: none;
}

.nav-links li {
  flex-shrink: 0;
}

.nav-links a {
  color: #FFFFFF;
  text-decoration: none;
  position: relative;
  white-space: nowrap;
  font-weight: 500;
  transition: color 0.25s ease, transform 0.2s ease;
}

.nav-links a:hover {
  color: #FFD60A;
  transform: translateY(-1px);
}

.nav-links a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background: #FFD60A;
  transition: width 0.3s ease;
}

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

.nav-links a.active {
  color: #FFD60A;
}

/* ================= BUTTON ================= */

.book-btn {
  background: #FFD60A;
  padding: 0.55rem 1.3rem;
  border-radius: 1.5rem;
  color: #041541;
  font-weight: 600;
  flex-shrink: 0;
  white-space: nowrap;
  text-decoration: none;
  transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.book-btn:hover {
  background: #ffe066;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 214, 10, 0.3);
}

.book-btn:active {
  transform: translateY(0) scale(0.98);
}

.book-btn.active-btn {
  background: #FFD60A;
  color: #041541;
}

/* ================= MENU ================= */

.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background: #FFFFFF;
  border-radius: 2px;
  transition: 0.3s ease;
}

@media (max-width: 768px) {

  .menu-toggle {
    display: flex;
    z-index: 1001;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    width: 100%;
    background: #0a1f44;
    flex-direction: column;
    padding: 20px 0;
    z-index: 1000;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links li {
    width: 100%;
    padding: 12px 20px;
  }

  .nav-links a {
    display: block;
    width: 100%;
    color: white;
  }

}

/* ================= HERO ================= */

.hero {
  position: relative;
  min-height: calc(100vh - 80px);
  background:
    linear-gradient(
      120deg,
      rgba(4, 21, 65, 0.95) 0%,
      rgba(4, 21, 65, 0.85) 50%,
      rgba(4, 21, 65, 0.7) 100%
    ),
    url("../images/professional-home-cleaning-modern-living-room.webp") center center / cover no-repeat;

  display: grid;
  place-items: center;

  text-align: center;
  color: #FFFFFF;
  padding: 0 1.5rem;

  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  background: radial-gradient(
    circle at 50% 40%,
    rgba(255, 214, 10, 0.12),
    transparent 60%
  );

  z-index: 1;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 46rem;
  padding: 4rem 2rem;
}

/* ================= HEADLINE ================= */

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.125rem);
  line-height: 1.15;
  margin-bottom: 1rem;
  letter-spacing: -0.6px;
  font-weight: 700;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.hero h1 span {
  background: linear-gradient(90deg, #FFD60A, #ffe066);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ================= SUBTEXT ================= */

.hero p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2.5rem;
  line-height: 1.7;
  max-width: 34rem;
  margin-left: auto;
  margin-right: auto;
}

/* ================= BUTTON GROUP ================= */

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

/* ================= PRIMARY BUTTON ================= */

.cta-btn {
  background: linear-gradient(135deg, #FFD60A, #ffe066);
  padding: 0.95rem 2rem;
  border-radius: 999px;
  text-decoration: none;
  color: #041541;
  font-weight: 600;
  white-space: nowrap;
  transition: all 0.25s ease;
}

.cta-btn:hover {
  background: #ffe066;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(255, 214, 10, 0.3);
}

.cta-btn:active {
  transform: translateY(0) scale(0.98);
}

/* ================= SECONDARY BUTTON ================= */

.secondary-btn {
  border: 2px solid rgba(255, 255, 255, 0.85);
  padding: 0.95rem 2rem;
  border-radius: 999px;
  color: #ffffff;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.25s ease;
}

.secondary-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #ffffff;
  transform: translateY(-3px);
}

.secondary-btn:active {
  transform: translateY(0);
  opacity: 0.9;
}

/* ================= FADE-UP ================= */

.fade-up {
  opacity: 0;
  transform: translateY(60px); 
  transition: all 0.8s ease;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ================= RESPONSIVE ================= */

@media (max-width: 768px) {
  .hero-content {
    padding: 2rem;
  }

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

  .cta-btn,
  .secondary-btn {
    width: 100%;
    text-align: center;
  }
}

/* ================= FEATURES ================= */

.features {
  display: flex;
  justify-content: center;
  gap: 4rem;
  padding: 4rem 2rem;
  text-align: center;
  background: #ffffff;
}

.feature-item i {
  font-size: 1.8rem;
  color: #041541;
}

.feature-item p {
  color: #475569;
}


/* ================= SERVICES ================= */

.services {
  padding: 40px 60px;
  background: #f4f6fb;
  text-align: center;
}

.services h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #041541;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.service-card {
  background: #ffffff;
  padding: 2rem;
  border-radius: 0.75rem;

  border: 1px solid rgba(4, 21, 65, 0.08);
  box-shadow: 0 10px 30px rgba(4, 21, 65, 0.08);

  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/* HOVER */
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(4, 21, 65, 0.15);
}

.service-card h3 {
  color: #041541;
  margin-bottom: 6px;
}

.service-card h3::after {
  content: "";
  display: block;
  width: 36px;
  height: 3px;
  margin: 6px auto 10px;
  border-radius: 999px;
  background: #FFD60A;
}

.service-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
}

/* ================= BEFORE & AFTER ================= */
.before-after {
  padding: 100px 40px;
  background: #ffffff;
  text-align: center;
}

.before-after h2 {
  font-size: 2.6rem;
  margin-bottom: 10px;
  color: #041541;
}

.before-after .section-subtitle {
  margin-bottom: 20px;
  color: #64748b;
}

/* ================= GRID ================= */
.ba-grid {
  max-width: 1200px;
  margin: 70px auto 0;
  padding: 0 6%;
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
}

/* ================= CARD ================= */
.ba-card {
  background: #FFFFFF;
  border-radius: 24px;
  padding: 20px;

  box-shadow: 0 20px 50px rgba(4, 21, 65, 0.1);

  transition: 0.3s ease;
}

.ba-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(4, 21, 65, 0.18);
}

.ba-card h3 {
  margin-top: 18px;
  font-size: 1.3rem;
  color: #041541;
}

/* ================= SLIDER ================= */
.ba-slider {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 62.5%;
  overflow: hidden;
  border-radius: 18px;
  cursor: ew-resize;
}

/* IMAGES */
.ba-slider img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 0;
  left: 0;
  transition: transform 0.4s ease;
  pointer-events: none;
  -webkit-user-drag: none;
}

/* BEFORE IMAGE */
.before-img {
  clip-path: inset(0 50% 0 0);
  z-index: 2;
  transition: clip-path 0.2s ease;
}

/* AFTER IMAGE */
.after-img {
  z-index: 1;
}

/* ================= SLIDER LINE ================= */

.slider-line {
  position: absolute;
  left: 50%;
  top: 0;
  width: 3px;
  height: 100%;

  background: #FFD60A;
  z-index: 3;

  box-shadow: 0 0 12px rgba(255, 214, 10, 0.6);
}

/* ================= HANDLE ================= */

.slider-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 34px;
  height: 34px;

  background: #FFD60A;
  border-radius: 50%;
  z-index: 4;

  box-shadow:
    0 0 0 6px #ffffff,
    0 6px 20px rgba(4, 21, 65, 0.25),
    0 0 12px rgba(255, 214, 10, 0.5);

  transition: transform 0.2s ease;
}

/* HOVER */
.ba-slider:hover .slider-handle {
  transform: translate(-50%, -50%) scale(1.1);
}

/* ================= LABELS ================= */

.label {
  position: absolute;
  top: 16px;
  padding: 7px 16px;
  font-size: 0.75rem;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 0.3px;
  z-index: 5;

  display: flex;
  align-items: center;
  gap: 6px;
}

.label::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.8;
}

/* BEFORE LABEL */
.label.before {
  left: 16px;
  background: rgba(4, 21, 65, 0.9);
  color: #ffffff;
}

/* AFTER LABEL */
.label.after {
  right: 16px;
  background: #FFD60A;
  color: #041541;
}

/* ================= PREVENT SELECTION ================= */
.ba-slider,
.ba-slider * {
  user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {

  .before-after {
    padding: 80px 20px;
  }

  .ba-grid {
    gap: 40px;
  }

.ba-slider {
  height: 0;
  padding-top: 75%;
}

  .slider-handle {
    width: 26px;
    height: 26px;
  }

  .label {
    font-size: 0.7rem;
    padding: 5px 12px;
  }
}

/* ================= PRICING ================= */

.pricing {
  padding: 60px 4rem;
  text-align: center;
  background: #f4f6fb;
}

.pricing h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #041541;
}

.pricing-subtitle {
  color: #64748b;
  margin-bottom: 3.5rem;
  font-size: 1.05rem;
}


/* ================= GRID ================= */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  max-width: 1200px;
  margin: 0 auto;
  gap: 2rem;
}


/* ================= CARD ================= */

.price-card {
  position: relative;
  padding: 2.5rem 2rem;
  border-radius: 1rem;
  background: #FFFFFF;
  text-align: left;

  border: 1px solid rgba(4, 21, 65, 0.08);
  box-shadow: 0 10px 30px rgba(4, 21, 65, 0.06);

  transition: all 0.25s ease;
}

.price-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(4, 21, 65, 0.12);
}


/* ================= TITLE ================= */

.price-card h3 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
  color: #041541;
}


/* ================= PRICE ================= */

.price {
  display: flex;
  flex-direction: column; /* STACK vertically */
  align-items: flex-start;
  margin-bottom: 1rem;
}

.price-prefix {
  font-size: 0.7rem;
  font-weight: 600;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-bottom: 2px;
}

.price-main {
  display: flex;
  align-items: baseline;
  gap: 0.35rem;

  font-size: 2.5rem;
  font-weight: 700;
  color: #041541;
  line-height: 1;
}

.price-unit {
  font-size: 0.95rem;
  color: #64748b;
  font-weight: 500;
}


/* ================= FEATURES ================= */

.price-card ul {
  list-style: none;
  padding: 0;
  margin-top: 1rem;
}

.price-card li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.75rem;

  color: #334155;
  font-size: 1.02rem;
  line-height: 1.4;
}

.price-card li::before {
  content: "✓";
  color: #FFD60A;
  font-size: 1rem;
  font-weight: bold;
  flex-shrink: 0;
}


/* ================= HIGHLIGHT ================= */

.price-card.highlight {
  border: 2px solid #041541;
  transform: scale(1.05);
  box-shadow: 0 20px 50px rgba(4, 21, 65, 0.15);
}

/* ================= CTA ================= */

.cta {
  padding: 60px 20px;
  background: #041541;
  color: #ffffff;
  text-align: center;

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.cta h2 {
  font-size: 2.5rem;
  color: #ffffff;
}

.cta p {
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  line-height: 1.6;
}

/* ================= FAQ ================= */

.faq {
  padding: 40px 0;
  background: #F5F7FA;
}

.faq-container {
  max-width: 900px;
  margin: auto;
  padding: 0 20px;
}

.faq-item {
  background: #fff;
  border-radius: 12px;
  margin-bottom: 16px;
  padding: 18px 20px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  cursor: pointer;
  font-weight: 600;
}

.faq-icon {
  transition: 0.3s ease;
  pointer-events: auto;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  margin-top: 10px;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}
/* ================= FOOTER ================= */

.site-footer {
  background: #041541;
  color: #FFFFFF;
  width: 100%;
  padding: 60px 0 20px;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;

  max-width: 1200px;
  margin: 0 auto;

  padding: 0 20px;
  gap: 40px;
}

/* COLUMN */

.footer-column {
  flex: 1;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

/* TITLES */

.footer-title {
  margin-bottom: 6px;
  font-size: 16px;
  font-weight: 600;
}

.footer-subtitle {
  margin-top: 10px;
  margin-bottom: 4px;
  font-size: 14px;
}

/* TEXT */

.footer-text {
  font-size: 14px;
  color: #ffffff;
  line-height: 1.6;
}

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

.footer-text a:hover {
  color: #FFD60A;
}

/* LINKS */

.footer-link {
  display: block;
  font-size: 14px;
  text-decoration: none;
  color: #ffffff;
  transition: 0.2s;
}

.footer-link:hover {
  color: #FFD60A;
  transform: translateX(3px);
}

/* SOCIAL */

.footer-social {
  display: flex;
  gap: 14px;
  margin-top: 4px;
}

.footer-social a {
  color: #ffffff;
  font-size: 22px;
  transition: 0.2s ease;
}

.footer-social a:hover {
  transform: scale(1.15);
  color: #FFD60A;
}

/* ================= COMPANY COLUMN ================= */

.footer-company {
  display: flex;
  flex-direction: column;
  gap: 0.6rem; 
  max-width: 320px;
}

.footer-logo-wrap {
  display: flex; 
  align-items: center;
  margin-bottom: -8px; 
}

.footer-logo {
  height: 65px; 
  width: auto;
  display: block;
  object-fit: contain;
}

.footer-desc {
  color: #ffffff;
  line-height: 1.6;
  font-size: 0.95rem;
  margin: 0; 
}

.footer-meta {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.9rem;
  color: #ffffff;
  margin-top: 0.3rem;
}

.footer-meta i {
  margin-right: 6px;
  color: #FFD60A;
}

.footer-abn {
  font-size: 0.85rem;
  margin-top: 0.3rem;
}

/* ================= FOOTER BOTTOM ================= */

.footer-bottom {
  width: 100%;
  text-align: center;
  margin-top: 40px;
  padding-top: 15px;
  font-size: 14px;
  border-top: 1px solid rgba(255,255,255,0.15);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
  }

  .footer-column {
    width: 100%;
  }

  .footer-company {
    max-width: 100%;
  }
}

/* ================= RESPONSIVE SYSTEM ================= */

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

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

  .services h2,
  .pricing h2,
  .cta h2 {
    font-size: 1.75rem;
  }

  .navbar {
    padding: 1rem;
  }

  .features {
    flex-direction: column;
  }
}

/* ================= SCROLL ANIMATIONS ================= */

.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.fade-up.show {
  opacity: 1;
  transform: translateY(0);
}

.fade-up.delay-1 { transition-delay: 0.1s; }
.fade-up.delay-2 { transition-delay: 0.2s; }
.fade-up.delay-3 { transition-delay: 0.3s; }
.fade-up.delay-4 { transition-delay: 0.4s; }

/* ================= BOOKING SECTION ================= */

.booking-hero {
  background: linear-gradient(
    to bottom,
    #041541 0%,
    #061a4d 50%,
    #020b2a 100%
  );

  color: #FFFFFF;
  text-align: center;
  padding: 40px 15px 70px;
  overflow: visible;
  height: auto;
}

/* TITLE */
.booking-hero h1 {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 600;
  margin-bottom: 10px;
}

/* SUBTEXT */
.booking-hero p {
  color: rgba(255, 255, 255, 0.85);
  max-width: 600px;
  margin: 0 auto 35px;
  line-height: 1.6;
  font-size: 0.95rem;
}

/* DIVIDER */
.divider {
  width: 70%;
  margin: 25px auto 45px;
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
}


/* ================= FORM ================= */
.booking-form {
  max-width: 800px;
  margin: auto;
  text-align: left;
  padding-bottom: 30px;
}


/* ================= FORM GROUP ================= */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 18px;
}


/* ================= LABEL ================= */
.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: #E2E8F0;
}


/* ================= INPUTS ================= */
.form-group input,
.form-group select {
  width: 100%;
  padding: 13px 14px;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  background-color: #F8FAFC;
  font-size: 0.95rem;
  transition: all 0.2s ease;
  outline: none;
  color: #041541;
}

.form-group input::placeholder {
  color: #64748b;
}

#address {
  position: relative;
  z-index: 10;
}


/* ================= INPUT STATES ================= */
.form-group input:hover,
.form-group select:hover {
  border-color: #94a3b8;
}

.form-group input:focus,
.form-group select:focus {
  border-color: #041541;
  box-shadow: 0 0 0 2px rgba(4, 21, 65, 0.08);
  background-color: #ffffff;
}


/* ================= ERROR ================= */
.form-group .error {
  font-size: 0.75rem;
  color: #ef4444;
  min-height: 14px;
}


/* ================= PHONE FIELD ================= */
.phone-field {
  display: flex;
  align-items: center;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  overflow: hidden;
  background: #ffffff;
}

.phone-prefix {
  background: #F5F7FA;
  padding: 0 12px;
  font-weight: 600;
  color: #1E3A8A;
  border-right: 1px solid #ddd;
}

.phone-field input {
  flex: 1;
  border: none;
  padding: 12px;
  outline: none;
  font-size: 0.95rem;
  color: #041541;
}


/* ================= MANUAL TOGGLE ================= */
.manual-toggle {
  margin-top: 12px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.4);
  color: #ffffff;
  font-size: 0.8rem;
  padding: 6px 14px;
  border-radius: 20px;
  cursor: pointer;
  display: inline-block;
  transition: all 0.2s ease;
}

.manual-toggle:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-1px);
}


/* ================= MANUAL ADDRESS ================= */
.manual-address {
  display: none;
  width: 100%;
  margin-top: 1.5rem;
  padding: 1.5rem;

  background: #ffffff;
  border-radius: 14px;
  border: 1px solid rgba(4, 21, 65, 0.08);
  box-shadow: 0 8px 25px rgba(0,0,0,0.05);

  overflow: hidden;
}


.manual-address {
  scroll-margin-top: 120px;
}

/* SHOW STATE */
.manual-address.show {
  display: flex !important;
  flex-direction: column;
  gap: 12px;
  width: 100%;

  opacity: 1;
  transform: translateY(0);
  animation: fadeIn 0.25s ease;
}

.manual-address .form-group {
  display: flex;
  flex-direction: column; 
  gap: 6px;
  width: 100%;
}

/* INPUT STYLING */
.manual-address label {
  color: #041541;
  font-weight: 500;
}

.manual-address input,
.manual-address select {
  width: 100%;
  background-color: #f8fafc;
  color: #041541;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 10px;
}

.manual-address input::placeholder {
  color: #94a3b8;
}


/* ================= RESPONSIVE GRID ================= */
@media (min-width: 768px) {
  .manual-address.show {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  /* FULL WIDTH FIELDS */
  .manual-address .form-group:nth-child(1),
  .manual-address .form-group:nth-child(2) {
    grid-column: span 2;
  }
}


/* ================= GOOGLE AUTOCOMPLETE ================= */
.pac-container {
  border-radius: 10px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
  font-family: inherit;
  z-index: 9999 !important;
}

.pac-item {
  padding: 10px;
  font-size: 0.9rem;
}

.pac-item:hover {
  background: #f4f6fb;
}


/* ================= CHECKBOX FIX ================= */
.form-group.checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.4;
}

.form-group.checkbox input[type="checkbox"] {
  margin-top: 3px;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.form-group.checkbox label {
  margin: 0;
  cursor: pointer;
}


/* ================= BUTTON ================= */
.btn-submit {
  background-color: #FFD60A;
  color: #041541;
  border: none;
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  margin-top: 25px;
  transition: all 0.25s ease;
}

.btn-submit:hover {
  background-color: #ffe066;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(255, 214, 10, 0.3);
}

.btn-submit:active {
  transform: translateY(0) scale(0.97);
}


/* ================= ANIMATION ================= */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* ================= CONTACT SECTION ================= */

.contact-alt {
  padding: 80px 20px;
  text-align: center;
  background: #f4f6fb;
}

.contact-alt h2 {
  color: #041541;
  margin-bottom: 40px;
  font-size: 32px;
}


/* GRID */
.contact-grid {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}


/* CARD */
.contact-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 25px;
  width: 280px;

  border: 1px solid rgba(4, 21, 65, 0.08);
  box-shadow: 0 15px 35px rgba(4, 21, 65, 0.08);

  transition: 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 50px rgba(4, 21, 65, 0.15);
}


/* ICON */
.icon {
  font-size: 20px;

  background: linear-gradient(
    135deg,
    #041541,
    #0a1f5c
  );

  color: #ffffff;
  width: 50px;
  height: 50px;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;

  box-shadow: 0 6px 15px rgba(4, 21, 65, 0.25);
}


/* TEXT */
.contact-card h3 {
  margin-bottom: 10px;
  color: #041541;
}

.contact-card p {
  font-size: 14px;
  margin-bottom: 10px;
  color: #475569;
}

.contact-card a {
  color: #041541;
  text-decoration: none;
  font-weight: 600;
}

.contact-card a:hover {
  color: #FFD60A;
}


/* ================= SOCIALS ================= */

.socials {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 10px;
}

.socials a {
  color: #041541;
  font-size: 20px;
  transition: 0.3s ease;
}

.socials a:hover {
  color: #FFD60A;
  transform: scale(1.1);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 768px) {
  .booking-hero h1 {
    font-size: 36px;
  }

  .divider {
    width: 90%;
  }

  .booking-form {
    padding: 0 10px;
  }
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(4, 21, 65, 0.7);
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: 0.3s ease;
  z-index: 9999;
}

.modal.show {
  display: flex;
  opacity: 1;
  pointer-events: all;
}

.modal-content {
  background: #ffffff;
  padding: 30px;
  border-radius: 16px;
  text-align: center;
  max-width: 400px;
  width: 90%;

  box-shadow: 0 20px 50px rgba(4, 21, 65, 0.2);
  animation: fadeUp 0.4s ease;
}

.modal-content h2 {
  margin-bottom: 10px;
  color: #041541;
}

.modal-content p {
  color: #475569;
}

/* BUTTON */

.modal-content button {
  margin-top: 15px;
  padding: 10px 20px;
  border: none;
  background: #FFD60A;
  color: #041541;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
}

.modal-content button:hover {
  background: #ffe066;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 214, 10, 0.3);
}

.modal-content button:active {
  transform: translateY(0) scale(0.97);
}
