/* =============================================
   SUNSHINE CLEAN – style.css
   ============================================= */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --dark-blue: #1a2e4a;
  --mid-blue:  #1f3a5f;
  --yellow:    #f4b400;
  --yellow-dk: #d9a000;
  --text-dark: #1a2e4a;
  --text-gray: #6b7280;
  --bg-light:  #f9fafb;
  --white:     #ffffff;
  --card-bg:   #ffffff;
  --radius:    14px;
  --shadow:    0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
}

/* ── UTILITY ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

.btn-primary {
  display: inline-block;
  background: var(--yellow);
  color: var(--dark-blue);
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  font-size: 0.95rem;
  transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover { background: var(--yellow-dk); transform: translateY(-1px); }

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--dark-blue);
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 10px;
  border: 2px solid var(--dark-blue);
  text-decoration: none;
  font-size: 0.95rem;
  transition: background 0.2s;
}
.btn-outline:hover { background: rgba(0,0,0,0.06); }

.btn-outline-dark {
  display: inline-block;
  background: transparent;
  color: var(--dark-blue);
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 10px;
  border: 1.5px solid #d1d5db;
  text-decoration: none;
  font-size: 0.9rem;
  transition: border-color 0.2s;
  width: 100%;
  text-align: center;
}
.btn-outline-dark:hover { border-color: var(--yellow); }

.section-header { text-align: center; margin-bottom: 35px; }
.section-header h2 { font-size: 2rem; font-weight: 800; color: var(--dark-blue); margin-bottom: 12px; }
.section-header p  { color: var(--text-gray); max-width: 600px; margin: 0 auto; font-size: 1rem; }

.section-tag {
  display: inline-block;
  background: #e8f0fe;
  color: #2563eb;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
}
.section-tag::before { content: '● '; }

/* ── FADE IN ── */
.fade-in { opacity: 0; transform: translateY(28px); transition: opacity 0.65s ease, transform 0.65s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* =============================================
   NAVBAR
   ============================================= */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;

  background: transparent;   /* 👈 default transparent */
  border-bottom: none;
  box-shadow: none;
  backdrop-filter: none;

  transition: all 0.3s ease;
}

/* On scroll */
#navbar.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 4px 24px rgba(0,0,0,0.1);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.logo-card {
  /* background: var(--white); */
  border-radius: 12px;
  display: flex;
  align-items: center;
  padding: 10px;
  min-width: 80px;
}
.logo-card img { height: 70px; width: auto; }
 

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links a {
  text-decoration: none;
  color: var(--text-dark);
  font-size: 0.88rem;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--yellow-dk); }

.nav-phone { font-size: 0.88rem; font-weight: 600; color: var(--dark-blue); }

.btn-book-nav {
  background: var(--yellow) !important;
  color: var(--dark-blue) !important;
  font-weight: 700 !important;
  padding: 10px 20px !important;
  border-radius: 8px;
}
.btn-book-nav:hover { background: var(--yellow-dk) !important; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--dark-blue);
  border-radius: 2px;
  transition: all 0.3s;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* =============================================
   HERO
   ============================================= */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: url('https://images.unsplash.com/photo-1560185007-cde436f6a4d0?w=1400&q=80') center/cover no-repeat;
  padding-top: 72px;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(255,255,255,0.92) 50%, rgba(255,255,255,0.3) 100%);
}
.hero-content {
  position: relative;
  max-width: 620px;
  padding: 80px 24px 80px 80px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fffbea;
  border: 1px solid #f4b400;
  color: #7a5b00;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 24px;
}
#hero h1 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 800;
  color: var(--dark-blue);
  line-height: 1.15;
  margin-bottom: 20px;
}
.yellow-highlight { color: var(--yellow); position: relative; }
.yellow-highlight::after {
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  width: 100%; height: 4px;
  background: var(--yellow);
  border-radius: 2px;
  opacity: 0.4;
}
#hero p { color: var(--text-gray); font-size: 1rem; line-height: 1.7; margin-bottom: 32px; max-width: 480px; }
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }

/* =============================================
   SHOWCASE
   ============================================= */
#showcase {
  position: relative;
  height: 675px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.showcase-video {
  position: absolute;
  top: 50%;
  left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
  transform: translate(-50%, -50%);
 
  z-index: 0;
    display: block;
}

.showcase-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.1) 60%);
  z-index: 1;
}

.showcase-text {
  position: relative;
  z-index: 2;
  text-align: center;
  padding-bottom: 56px;
  color: white;
}
/* =============================================
   ABOUT
   ============================================= */
#about { padding: 100px 0; background: var(--white); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-image-wrap { position: relative; }
.about-image-wrap img {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
  height: 480px;
  display: block;
}
.about-rating-badge {
  position: absolute;
  bottom: 24px; right: -20px;
  background: white;
  border-radius: 14px;
  box-shadow: var(--shadow-lg);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.85rem;
}
.rating-star { font-size: 1.4rem; }
.about-rating-badge strong { display: block; font-size: 1.1rem; font-weight: 700; color: var(--dark-blue); }
.about-rating-badge small { color: var(--text-gray); }

.about-content h2 { font-size: 2.2rem; font-weight: 800; color: var(--dark-blue); margin-bottom: 20px; line-height: 1.2; }
.about-content p { color: var(--text-gray); line-height: 1.75; margin-bottom: 14px; }

.about-list { list-style: none; margin: 24px 0 32px; display: flex; flex-direction: column; gap: 12px; }
.about-list li { display: flex; align-items: center; gap: 12px; font-weight: 500; font-size: 0.95rem; }
.check-icon {
  color: var(--yellow);
  background: #fffbea;
  border-radius: 50%;
  width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
  flex-shrink: 0;
}

/* =============================================
   SERVICES
   ============================================= */
#services { padding: 100px 0; background: var(--bg-light); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  box-shadow: var(--shadow);
  transition: transform 0.25s, box-shadow 0.25s;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.service-icon {
  width: 56px; height: 56px;
  background: #fffbea;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}
.service-card h3 { font-size: 1rem; font-weight: 700; color: var(--dark-blue); margin-bottom: 10px; }
.service-card p  { color: var(--text-gray); font-size: 0.88rem; line-height: 1.65; }

/* =============================================
   WHY CHOOSE US
   ============================================= */
#why { padding: 100px 0; background: var(--dark-blue); color: white; }
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.why-content h2 { font-size: 2.2rem; font-weight: 800; margin-bottom: 16px; }
.why-content > p { color: rgba(255,255,255,0.7); margin-bottom: 40px; line-height: 1.7; }

.why-features { display: flex; flex-direction: column; gap: 24px; }
.why-feature { display: flex; align-items: flex-start; gap: 16px; }
.why-icon {
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.1);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.why-feature strong { display: block; font-weight: 700; margin-bottom: 4px; font-size: 0.95rem; }
.why-feature p { color: rgba(255,255,255,0.65); font-size: 0.85rem; line-height: 1.5; }

.why-image img {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
  height: 500px;
  border: 3px solid var(--yellow);
  box-shadow: 0 0 0 8px rgba(244,180,0,0.15);
}

/* =============================================
   HOW IT WORKS
   ============================================= */
#how { padding: 100px 0; background: var(--white); }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-bottom: 48px;
}
.step { text-align: center; }
.step-num {
  width: 72px; height: 72px;
  border-radius: 50%;
  border: 2px solid #e5e7eb;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  color: #9ca3af;
  margin: 0 auto 20px;
}
.step h3 { font-size: 1rem; font-weight: 700; color: var(--dark-blue); margin-bottom: 8px; }
.step p  { color: var(--text-gray); font-size: 0.88rem; line-height: 1.6; }
.how-cta { text-align: center; }

/* =============================================
   PRICING
   ============================================= */
#pricing { padding: 100px 0; background: var(--bg-light); }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}
.pricing-card {
  background: var(--white);
  border-radius: 18px;
  padding: 36px 28px;
  box-shadow: var(--shadow);
  position: relative;
}
.pricing-card.featured {
  border: 2px solid var(--yellow);
  box-shadow: 0 8px 40px rgba(244,180,0,0.18);
}
.featured-badge {
  background: var(--yellow);
  color: var(--dark-blue);
  font-size: 0.72rem;
  font-weight: 800;
  padding: 5px 14px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 16px;
  letter-spacing: 0.05em;
}
.pricing-card h3 { font-size: 1.15rem; font-weight: 700; color: var(--dark-blue); margin-bottom: 10px; }
.price { margin-bottom: 14px; }
.price-amount { font-size: 2.8rem; font-weight: 800; color: var(--dark-blue); }
.price-unit { font-size: 0.9rem; color: var(--text-gray); font-weight: 500; }
.pricing-card > p { color: var(--text-gray); font-size: 0.85rem; line-height: 1.65; margin-bottom: 20px; }
.pricing-card ul {
  list-style: none;
  margin-bottom: 28px;
  display: flex; flex-direction: column; gap: 10px;
}
.pricing-card ul li { font-size: 0.88rem; color: var(--text-gray); }
.pricing-card ul li::before { content: none; }

/* =============================================
   REVIEWS
   ============================================= */
#reviews { padding: 100px 0; background: var(--white); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.review-card {
  background: var(--white);
  border: 1px solid #f1f3f5;
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
  position: relative;
}
.review-card::after {
  content: '❞';
  position: absolute;
  top: 20px; right: 24px;
  font-size: 3rem;
  color: #f4b40020;
  line-height: 1;
}
.stars { color: var(--yellow); font-size: 1.1rem; margin-bottom: 16px; }
.review-card > p {
  font-size: 0.88rem;
  color: var(--text-gray);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}
.reviewer strong { display: block; font-weight: 700; color: var(--dark-blue); font-size: 0.9rem; }
.reviewer span { color: var(--text-gray); font-size: 0.8rem; }

/* =============================================
   CONTACT
   ============================================= */
#contact { padding: 100px 0; background: var(--bg-light); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: start;
}
.contact-info h2 { font-size: 2.4rem; font-weight: 800; color: var(--dark-blue); margin-bottom: 16px; line-height: 1.15; }
.contact-info > p { color: var(--text-gray); line-height: 1.7; margin-bottom: 40px; }

.contact-details { display: flex; flex-direction: column; gap: 20px; }
.contact-item { display: flex; align-items: center; gap: 16px; }
.contact-icon {
  width: 44px; height: 44px;
  background: #fffbea;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-item small { color: var(--text-gray); font-size: 0.78rem; display: block; }
.contact-item strong { color: var(--dark-blue); font-size: 0.95rem; }
.coming-soon { color: var(--text-gray); font-size: 0.82rem; font-weight: 400; }

/* Contact form */
.contact-form-wrap {
  background: var(--white);
  border-radius: 20px;
  padding: 40px;
  box-shadow: var(--shadow-lg);
}
.contact-form-wrap h3 { font-size: 1.2rem; font-weight: 700; color: var(--dark-blue); margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--dark-blue); margin-bottom: 6px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #e5e7eb;
  border-radius: 10px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.88rem;
  color: var(--dark-blue);
  background: white;
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--yellow); }
.form-group select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236b7280' d='M6 8L1 3h10z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }
.form-group textarea { resize: vertical; }
.btn-send {
  width: 100%;
  padding: 16px;
  background: var(--yellow);
  color: var(--dark-blue);
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: background 0.2s;
  margin-top: 8px;
}
.btn-send:hover { background: var(--yellow-dk); }
.form-success { margin-top: 14px; color: #16a34a; font-size: 0.9rem; font-weight: 500; }

/* =============================================
   FOOTER
   ============================================= */
footer { background: var(--dark-blue); color: rgba(255,255,255,0.75); padding: 64px 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.4fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-logo { background: rgba(255,255,255,0.08) !important; box-shadow: none !important; margin-bottom: 20px; }
.footer-logo .logo-text { color: white; }
.footer-brand p { font-size: 0.85rem; line-height: 1.7; color: rgba(255,255,255,0.6); }
.social-links { display: flex; gap: 10px; margin-top: 20px; }
.social-links a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.1);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: white;
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 700;
  transition: background 0.2s;
}
.social-links a:hover { background: var(--yellow); color: var(--dark-blue); }

.footer-links h4, .footer-contact h4 { color: white; font-size: 0.9rem; font-weight: 700; margin-bottom: 16px; }
.footer-links { display: flex; flex-direction: column; gap: 2px; }
.footer-links a {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  font-size: 0.87rem;
  padding: 5px 0;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--yellow); }
.footer-contact p { font-size: 0.87rem; margin-bottom: 8px; color: rgba(255,255,255,0.65); }

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}
.footer-bottom a { color: rgba(255,255,255,0.4); text-decoration: none; }
.footer-bottom a:hover { color: rgba(255,255,255,0.7); }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .reviews-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
}

@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 72px; left: 0; right: 0;
    background: white;
    flex-direction: column;
    padding: 20px 24px 28px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    gap: 16px;
    align-items: flex-start;
  }
  .nav-links.open { display: flex; }

  .hero-content { padding: 60px 24px; }

  .about-grid,
  .why-grid,
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }

  .about-rating-badge { right: 0; bottom: 16px; }
  .about-image-wrap img { height: 320px; }
  .why-image img { height: 280px; }

  .services-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

  #showcase { height: 360px; }
  .section-header h2 { font-size: 1.7rem; }
}

@media (max-width: 480px) {
  .steps-grid { grid-template-columns: 1fr; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn-primary, .hero-buttons .btn-outline { width: 100%; text-align: center; }
  .contact-form-wrap { padding: 24px 20px; }
}


@media (max-width: 768px) {
  .showcase-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

.swiper {
    width: 100%;
    padding: 40px 5px;
    box-shadow: none;
}

.swiper-slide {
    display: flex;
    justify-content: center;
    box-shadow: none;
    
}

.pricing-card,
.review-card {
    width: 100%;
    box-shadow: none;
    /* max-width: 350px; */
}