
/* Theme Variables */
:root {
  --primary: #2f5d6f;
  --primary-dark: #244a57;
  --secondary: #86b5b0;
  --accent: #dfeee9;
  --white: #ffffff;
  --background: #f5f7f8;
  --surface: #ffffff;
  --surface-alt: #f2f4f6;
  --border: #e4e8eb;
  --text: #17232c;
  --text-light: #4d606a;
  --shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
  --shadow-hover: 0 16px 36px rgba(47, 93, 111, 0.10);
  --radius: 20px;
  --transition: 0.3s ease;
  --hero-photo: url('../assets/images/clean-living-room-melbourne.jpg');
  --section-photo: url('../assets/images/clean-living-space.jpg');
  --section-photo-2: url('../assets/images/bright-residential-cleaning.jpg');
  --section-photo-3: url('../assets/images/residential-cleaning-result.jpg');
}

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: 'Inter', sans-serif;
  background: linear-gradient(180deg, #f7f9fa 0%, #eef4f6 100%);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.75;
}
img {
  display: block;
  width: 100%;
}
a {
  text-decoration: none;
}
ul {
  list-style: none;
}
.container {
  width: min(1160px, 92%);
  margin: auto;
}

/* Shared page layout */
.page-section {
  padding: 100px 0;
  background: rgba(255, 255, 255, 0.9);
  border-bottom: none;
}
.page-section-alt {
  padding: 90px 0;
  background: rgba(238, 246, 251, 0.88);
  border-bottom: none;
}
.page-section-sm {
  padding: 70px 0;
  background: rgba(247, 251, 253, 0.9);
  border-bottom: none;
}
.page-section .section-title,
.page-section-alt .section-title,
.page-section-sm .section-title {
  margin-bottom: 30px;
}
.page-card,
.hero-card,
.service-card,
.why-card,
.price-card,
.testimonial-card,
.faq-item,
.contact-form,
.cta-banner-inner {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 24px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

/* Typography */
h1, h2, h3, h4 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  color: var(--text);
}
p {
  color: var(--text-light);
}

/* Buttons */
.primary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 32px;
  background: var(--primary);
  color: white;
  font-weight: 600;
  border-radius: 999px;
  transition: var(--transition);
  box-shadow: none;
}
.primary-btn:hover {
  transform: translateY(-2px);
  background: var(--primary-dark);
}
.secondary-btn {
  padding: 15px 32px;
  border: 1px solid var(--border);
  color: var(--primary);
  border-radius: 999px;
  transition: 0.3s;
  background: var(--surface);
}
.secondary-btn:hover {
  background: var(--surface-alt);
  color: var(--primary-dark);
  border-color: var(--primary);
}

/* Section Title */
.section-title {
  text-align: center;
  margin-bottom: 60px;
}
.section-title span {
  display: inline-block;
  padding: 7px 14px;
  border-radius: 999px;
  background: var(--surface-alt);
  color: var(--primary);
  font-weight: 600;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
  border: 1px solid var(--border);
}
.section-title h2 {
  font-size: clamp(1.9rem, 3vw, 2.7rem);
  margin-bottom: 16px;
}
.section-title p {
  max-width: 650px;
  margin: auto;
  font-size: 1rem;
}

/* Floating Bubbles */
.floating-bubbles {
  position: fixed;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: -1;
}
.floating-bubbles span {
  position: absolute;
  bottom: -100px;
  width: 28px;
  height: 28px;
  background: rgba(0, 180, 216, 0.12);
  border-radius: 50%;
  animation: float 20s linear infinite;
}
.floating-bubbles span:nth-child(1) { left: 10%; animation-duration: 14s; }
.floating-bubbles span:nth-child(2) { left: 25%; width: 40px; height: 40px; animation-duration: 18s; }
.floating-bubbles span:nth-child(3) { left: 42%; animation-duration: 16s; }
.floating-bubbles span:nth-child(4) { left: 60%; width: 20px; height: 20px; animation-duration: 13s; }
.floating-bubbles span:nth-child(5) { left: 78%; animation-duration: 17s; }
.floating-bubbles span:nth-child(6) { left: 90%; width: 45px; height: 45px; animation-duration: 21s; }

@keyframes float {
  0% { transform: translateY(0) rotate(0); opacity: 0; }
  20% { opacity: 1; }
  100% { transform: translateY(-120vh) rotate(360deg); opacity: 0; }
}

/* Navbar */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background: rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(18px) saturate(120%);
  border-bottom: 1px solid rgba(47, 93, 111, 0.1);
  box-shadow: 0 4px 20px rgba(26, 61, 73, 0.05);
  transition: background 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.navbar {
  width: min(1200px, 94%);
  margin: auto;
  height: 130px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  
}
.logo {
  display: flex;
  align-items: center;
  height: 130px;
  transition: transform 0.3s ease;
          
  width: 150px;
  border-radius: 50%;
}

.logo:hover {
  transform: translateY(-1px);
}

.logo img {
  height: 130px;
  width: auto;
  display: block;
  object-fit: contain;
}
.logo i {
  font-size: 28px;
  color: var(--primary);
}
.logo h2 {
  font-size: 28px;
}
.logo span {
  color: var(--primary);
}
.nav-links {
  display: flex;
  gap: 8px;
}
.nav-links :active{
border-radius: 20px;

}
.nav-links a {
  display: inline-block;
  padding: 10px 13px;
  color: var(--text);
  font-weight: 500;
  border-radius: 10px;
  transition: color 0.3s ease, background 0.3s ease, transform 0.3s ease;
  position: relative;
}
.nav-links a:hover {
  background: rgba(47, 93, 111, 0.07);
  transform: translateY(-2px);
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--primary);
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: 0.3s;
}
.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}
.quote-btn {
  padding: 14px 30px;
  background: var(--primary);
  border-radius: 999px;
  color: white;
  transition: 0.3s;
}
.quote-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

@keyframes navbarReveal {
  from { opacity: 0; transform: translateY(-12px); }
  to { opacity: 1; transform: translateY(0); }
}

header .logo,
header .nav-links,
header .nav-buttons {
  animation: navbarReveal 0.7s ease both;
}
header .nav-links { animation-delay: 0.08s; }
header .nav-buttons { animation-delay: 0.16s; }

@media (prefers-reduced-motion: reduce) {
  header .logo,
  header .nav-links,
  header .nav-buttons {
    animation: none;
  }
}
/* ==============================
   MOBILE NAVIGATION
================================= */

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 24px;
  color: #222;
}

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

  .navbar {
    position: relative;
  }

  .hamburger {
    display: block;
    z-index: 1001;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;

    display: none;
    flex-direction: column;
    align-items: center;

    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(18px);
    padding: 20px 0;
    margin: 0;

    border: 1px solid rgba(47, 93, 111, 0.1);
    border-top: 0;
    border-radius: 0 0 16px 16px;
    box-shadow: 0 16px 35px rgba(26, 61, 73, 0.1);
    z-index: 1000;
  }

  /* When JavaScript adds .active */
  .nav-links.active {
    border-radius: 20px;

    display: flex;
    
  }

  .nav-links li {
    width: 100%;
    text-align: center;
  }

  .nav-links li a {
    display: block;
    width: 100%;
    padding: 13px 20px;
    border-radius: 0;
  }

  .nav-buttons {
    display: none;
  }
}

/* Hero */
.hero {
  min-height: 100vh;
  padding-top: 140px;
  display: flex;
  align-items: center;
  background: transparent;
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
#hero {
  --hero-photo: url('../assets/images/clean-living-room-melbourne.jpg');
}
#about-hero {
  --hero-photo: url('../assets/images/bright-residential-cleaning.jpg');
}
#services-hero {
  --hero-photo: url('../assets/images/everclean-cleaner-spray-window.jpg');
}
#pricing-hero {
  --hero-photo: url('../assets/images/clean-living-space.jpg');
}
#gallery-hero {
  --hero-photo: url('../assets/images/bright-residential-cleaning.jpg');
}
#contact-hero {
  --hero-photo: url('../assets/images/everclean-cleaner-spray-window.jpg');
}
#privacy-hero {
  --hero-photo: url('../assets/images/clean-living-room-melbourne.jpg');
}
#terms-hero {
  --hero-photo: url('../assets/images/clean-living-space.jpg');
}
#error-hero {
  --hero-photo: url('../assets/images/bright-residential-cleaning.jpg');
}
body:has(#hero) {
  --section-photo: url('../assets/images/clean-living-space.jpg');
  --section-photo-2: url('../assets/images/bright-residential-cleaning.jpg');
  --section-photo-3: url('../assets/images/residential-cleaning-result.jpg');
}
body:has(#about-hero) { --section-photo: url('../assets/images/clean-living-space.jpg'); --section-photo-2: url('../assets/images/bright-residential-cleaning.jpg'); }
body:has(#services-hero) { --section-photo: url('../assets/images/professional-home-cleaner.jpg'); --section-photo-2: url('../assets/images/professional-window-cleaning-melbourne.jpg'); }
body:has(#pricing-hero) { --section-photo: url('../assets/images/clean-living-room-melbourne.jpg'); --section-photo-2: url('../assets/images/residential-cleaning-result.jpg'); }
body:has(#gallery-hero) { --section-photo: url('../assets/images/bright-residential-cleaning.jpg'); --section-photo-2: url('../assets/images/clean-living-space.jpg'); }
body:has(#contact-hero) { --section-photo: url('../assets/images/cleaning-service-contact.jpg'); --section-photo-2: url('../assets/images/clean-living-room-melbourne.jpg'); }
body:has(#privacy-hero) { --section-photo: url('../assets/images/clean-living-room-melbourne.jpg'); }
body:has(#terms-hero) { --section-photo: url('../assets/images/clean-living-space.jpg'); }
body:has(#error-hero) { --section-photo: url('../assets/images/bright-residential-cleaning.jpg'); }
.hero-background {
  position: absolute;
  z-index: 0;
  inset: 0;
  display: none;
}
.hero::before {
  content: '';
  position: absolute;
  inset: -20px;
  z-index: 0;
  background: var(--hero-photo) center / cover no-repeat;
  filter: blur(10px);
  opacity: 0.88;
  transform: scale(1.04);
}
.hero-background::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(248, 252, 252, 0.92) 0%, rgba(248, 252, 252, 0.74) 52%, rgba(248, 252, 252, 0.28) 100%),
    rgba(242, 248, 248, 0.2);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.34) 0%, rgba(223, 238, 233, 0.28) 100%);
  pointer-events: none;
}
.hero-content {
  width: min(1240px, 92%);
  margin: auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero-left {
  padding: clamp(24px, 4vw, 42px);
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 24px;
  box-shadow: 0 18px 45px rgba(26, 61, 73, 0.08);
  backdrop-filter: blur(12px);
}
.hero .fade-left,
.hero .fade-right,
.hero .fade-up,
.hero .zoom-in {
  opacity: 1;
  transform: none;
}
.hero-tag {
  display: inline-block;
  padding: 9px 15px;
  border-radius: 999px;
  background: var(--surface-alt);
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 20px;
  border: 1px solid var(--border);
}
.hero h1 {
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  line-height: 1.08;
  margin-bottom: 18px;
  max-width: 620px;
}
.hero h1 span {
  color: var(--primary);
}
.hero p {
  font-size: 1.02rem;
  margin-bottom: 24px;
  max-width: 600px;
  color: #304b58;
  font-weight: 500;
}
.hero-buttons {
  display: flex;
  gap: 14px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.hero-badges span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--surface);
  color: var(--text);
  font-size: 14px;
  border: 1px solid var(--border);
}
.hero-badges i {
  color: var(--secondary);
}
.hero-card {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.78);
  padding: 24px;
  border-radius: 20px;
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.12);
}
.hero-card img {
  border-radius: 18px;
  height: 300px;
  object-fit: cover;
  margin: 18px 0;
}
.hero-card-top {
  margin-bottom: 6px;
}
.hero-card-label {
  display: inline-block;
  margin-bottom: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--primary);
}
.hero-card h3 {
  font-size: 1.45rem;
  line-height: 1.25;
}
.hero-card-list {
  display: grid;
  gap: 10px;
  margin-top: 8px;
}
.hero-card-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 13px;
  border-radius: 12px;
  background: var(--surface-alt);
  color: var(--text);
  font-weight: 500;
}
.hero-card-list i {
  color: var(--primary);
}

.trust-bar {
  padding: 0 0 60px;
}
.trust-bar-inner {
  width: min(1200px, 92%);
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.trust-card {
  background: var(--surface);
  padding: 22px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.trust-card h3 {
  font-size: 1.1rem;
  margin-bottom: 6px;
}
.trust-card p {
  margin: 0;
}

body > section:not(.hero) {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
body > section:not(.hero)::before {
  content: '';
  position: absolute;
  inset: -18px;
  z-index: 0;
  background: var(--section-photo) center / cover no-repeat;
  filter: blur(16px);
  opacity: 0.23;
  transform: scale(1.04);
}
body:has(#hero) > section:nth-of-type(n+4)::before { background-image: var(--section-photo-2); }
body:has(#hero) > section:nth-of-type(n+8)::before { background-image: var(--section-photo-3); }
body:has(#hero) > section:nth-of-type(2)::before { background-image: url('../assets/images/clean-living-space.jpg'); }
body:has(#hero) > section:nth-of-type(3)::before { background-image: url('../assets/images/professional-home-cleaner.jpg'); }
body:has(#hero) > section:nth-of-type(4)::before { background-image: url('../assets/images/bright-residential-cleaning.jpg'); }
body:has(#hero) > section:nth-of-type(5)::before { background-image: url('../assets/images/clean-living-room-melbourne.jpg'); }
body:has(#hero) > section:nth-of-type(6)::before { background-image: url('../assets/images/everclean-cleaner-spray-window.jpg'); }
body:has(#hero) > section:nth-of-type(7)::before { background-image: url('../assets/images/residential-cleaning-result.jpg'); }
body:has(#hero) > section:nth-of-type(8)::before { background-image: url('../assets/images/professional-window-cleaning-melbourne.jpg'); }
body:has(#hero) > section:nth-of-type(9)::before { background-image: url('../assets/images/clean-living-space.jpg'); }
body:has(#hero) > section:nth-of-type(10)::before { background-image: url('../assets/images/bright-residential-cleaning.jpg'); }
body:has(#hero) > section:nth-of-type(11)::before { background-image: url('../assets/images/clean-living-room-melbourne.jpg'); }
body:has(#hero) > section:nth-of-type(12)::before { background-image: url('../assets/images/professional-home-cleaner.jpg'); }
body:has(#hero) > section:nth-of-type(13)::before { background-image: url('../assets/images/residential-cleaning-result.jpg'); }
body:has(#about-hero) > section:nth-of-type(n+4)::before,
body:has(#services-hero) > section:nth-of-type(n+4)::before,
body:has(#pricing-hero) > section:nth-of-type(n+4)::before,
body:has(#gallery-hero) > section:nth-of-type(n+3)::before,
body:has(#contact-hero) > section:nth-of-type(n+4)::before { background-image: var(--section-photo-2); }
body > section:not(.hero)::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.76) 0%, rgba(238, 246, 251, 0.79) 100%);
  pointer-events: none;
}
body > section:not(.hero) > * {
  position: relative;
  z-index: 2;
}

/* Process */
.process {
  padding: 80px 0 100px;
  background: transparent;
}
.process-grid {
  width: min(1180px, 92%);
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.process-card {
  background: var(--surface);
  padding: 24px 22px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.process-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--surface-alt);
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 16px;
}
.process-card h3 {
  margin-bottom: 8px;
  font-size: 1.15rem;
}

/* About */
.about {
  padding: 120px 0;
  background: transparent;
}
.about .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  box-shadow: var(--shadow);
}
.image-wrapper img {
  height: 650px;
  object-fit: cover;
  transition: 0.6s;
}
.image-wrapper:hover img {
  transform: scale(1.08);
}
.experience-card {
  position: absolute;
  bottom: 30px;
  left: 30px;
  background: white;
  padding: 28px;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}
.experience-card h2 {
  font-size: 42px;
  color: var(--primary);
}
.about-content h2 {
  font-size: 52px;
  margin: 20px 0;
  line-height: 1.2;
}
.about-content p {
  font-size: 18px;
  margin-bottom:100px;
}
.section-tag {
  display: inline-block;
  padding: 10px 20px;
  background: #E8F7FF;
  border-radius: 100px;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: 1px;
  
}
.about-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-bottom: 40px;
}
.about-features div {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
}
.about-features i {
  color: var(--secondary);
  font-size: 20px;
}

/* Services */
.services {
  padding: 100px 0;
  background: transparent;
}
.services-grid {
  width: min(1200px, 92%);
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  padding: 30px 26px;
  border-radius: 18px;
  transition: 0.3s;
  position: relative;
  overflow: hidden;
}
.service-card:hover,
.why-card:hover,
.price-card:hover,
.testimonial-card:hover,
.faq-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: var(--primary);
}
.service-card i {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  border-radius: 16px;
  background: var(--surface-alt);
  color: var(--primary);
  margin-bottom: 18px;
}
.service-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}
.service-card p {
  font-size: 0.95rem;
}

/* Why Choose Us */
.why-us {
  padding: 100px 0;
  background: transparent;
}
.why-grid {
  width: min(1200px, 92%);
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.why-card {
  padding: 32px 24px;
  border-radius: 18px;
  text-align: center;
  transition: 0.3s;
}
.why-card i {
  font-size: 34px;
  color: var(--primary);
  margin-bottom: 18px;
}
.why-card h3 {
  margin-bottom: 10px;
  font-size: 1.12rem;
}

/* Statistics */
.stats {
  padding: 80px 0;
  background: transparent;
}
section.stats::before {
  opacity: 0.62;
}
section.stats::after {
  background: linear-gradient(135deg, rgba(27, 62, 74, 0.84) 0%, rgba(47, 93, 111, 0.72) 100%);
}
.stats-grid {
  width: min(1200px, 92%);
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.stat-box {
  text-align: center;
  background: var(--surface);
  padding: 32px 22px;
  border-radius: 18px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.stat-box h2 {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 6px;
}
.stat-box p {
  color: var(--text-light);
  font-size: 0.95rem;
  margin: 0;
}
section.stats .stat-box h2 {
  color: var(--primary);
}
section.stats .stat-box p {
  color: var(--text-light);
}

/* Gallery */
.gallery {
  padding: 100px 0;
  background: transparent;
}
.gallery-grid {
  width: min(1200px, 92%);
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: var(--shadow);
  cursor: pointer;
  border: 1px solid var(--border);
}
.gallery-item img {
  height: 320px;
  object-fit: cover;
  transition: 0.35s;
}
.gallery-item:hover img {
  transform: scale(1.04);
}
.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(47, 93, 111, 0.22));
  opacity: 0;
  transition: 0.3s;
}
.gallery-item:hover::after {
  opacity: 1;
}

/* Pricing */
.pricing {
  padding: 100px 0;
  background: transparent;
}
.pricing-grid {
  width: min(1200px, 92%);
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.price-card {
  padding: 36px 30px;
  border-radius: 18px;
  text-align: center;
  position: relative;
  transition: 0.3s;
  display: flex;
  flex-direction: column;
}
.price-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.price-card h3 {
  font-size: 1.2rem;
  margin-bottom: 16px;
}
.price-card h1 {
  font-size: 2.4rem;
  color: var(--primary);
  margin-bottom: 8px;
}
.price-card p {
  margin-bottom: 20px;
}
.price-card ul {
  margin: 24px 0 0;
  text-align: left;
  flex: 1;
}
.price-card .primary-btn {
  margin-top: 24px;
  align-self: center;
}
.price-card li {
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-weight: 500;
}
.featured {
  transform: none;
  border: 1px solid var(--primary);
}
.featured:hover {
  transform: translateY(-4px);
}
.badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  padding: 8px 16px;
  background: var(--primary);
  color: white;
  font-weight: 600;
  border-radius: 999px;
  font-size: 0.85rem;
}

/* Testimonials */
.testimonials {
  padding: 100px 0;
  background: transparent;
}
.testimonial-grid {
  width: min(1200px, 92%);
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  padding: 30px;
  border-radius: 18px;
  transition: 0.3s;
}
.testimonial-card:first-line {
  color: #f4b942;
  font-size: 20px;
}
.testimonial-card p {
  margin: 16px 0;
}
.testimonial-card h4 {
  color: var(--primary);
}

/* FAQ */
.faq {
  padding: 100px 0;
  background: transparent;
}
.faq-container {
  width: min(900px, 92%);
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.faq-item {
  padding: 24px 28px;
  border-radius: 18px;
}
.faq-item h3 {
  margin-bottom: 8px;
  font-size: 1.08rem;
}

/* CTA Banner */
.cta-banner {
  padding: 40px 0 70px;
  margin-top: 40px;
  background: transparent;
}
.cta-banner-inner {
  width: min(1180px, 92%);
  margin: auto;
  padding: 30px 34px;
  border-radius: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}
.cta-banner span {
  display: inline-block;
  margin-bottom: 18px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--primary);
}
.cta-banner h2 {
  font-size: 1.6rem;
  color: var(--text);
  line-height: 1.25;
}

/* Contact */
.contact {
  padding: 100px 0;
  background: transparent;
}
.contact-container {
  width: min(1200px, 92%);
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.contact-container > * {
  min-width: 0;
}
.contact-info span {
  display: inline-block;
  padding: 10px 18px;
  background: #EAF7FF;
  border-radius: 100px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 20px;
}
.contact-info h2 {
  margin-bottom: 20px;
}
.contact-info p {
  margin-bottom: 35px;
}
.contact-info div {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 25px;
  font-size: 18px;
  font-weight: 500;
}
.contact-info i {
  width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: #EAF7FF;
  color: var(--primary);
}
.contact-form {
  padding: 45px;
  min-width: 0;
  border-radius: 30px;
}
.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  min-width: 0;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-width: 0;
  padding: 18px;
  border-radius: 16px;
  border: 1px solid #d9e3eb;
  font-size: 16px;
  font-family: inherit;
  outline: none;
  transition: 0.3s;
}
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(0, 119, 182, 0.12);
}
.contact-form textarea {
  resize: none;
}

/* Footer */
footer {
  background: #16252f;
  color: white;
  padding: 50px 0 10px;
}
.footer-container {
  width: min(1200px, 92%);
  margin: auto;
  display: grid;
  grid-template-columns: 5fr 1fr 2fr ;
  gap: 50px;
}
footer h2,
footer h3 {
  color: white;
  margin-bottom: 18px;
}
footer span {
footer .social-coming-soon {
  font-size: 0.86rem;
  margin-bottom: 10px;
}
footer .social-link {
  display: inline-block;
  color: inherit;
}
footer .social-link i {
  margin-right: 12px;
}
  color: var(--accent);
}
footer p {
  color: #c8d2d7;
}
footer a {
  display: block;
  margin-bottom: 10px;
  color: #c8d2d7;
  transition: 0.3s;
}
footer a:hover {
  color: white;
  padding-left: 6px;
}
footer i {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  margin-right: 10px;
  transition: 0.3s;
  cursor: pointer;
}
footer i:hover {
  background: var(--primary);
  transform: translateY(-3px);
}
.copyright {
  margin-top: 48px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  color: #9eb0b7;
}

/* Scroll Progress */
.progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(90deg, #0077B6, #2ECC71);
  width: 0;
  z-index: 99999;
}

.fade-up,
.fade-left,
.fade-right {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.85s ease, transform 0.85s ease;
}

.fade-left { transform: translateX(-35px); }
.fade-right { transform: translateX(35px); }
.zoom-in { transform: scale(0.95); opacity: 0; }

.fade-up.show,
.fade-left.show,
.fade-right.show,
.zoom-in.show {
  opacity: 1;
  transform: translate(0, 0) scale(1);
}

.float-soft {
  animation: float-soft 10s ease-in-out infinite alternate;
}

.pulse-glow {
  animation: pulse-glow 3.8s ease-in-out infinite;
}

@keyframes float-soft {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-16px); }
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 0 rgba(47, 93, 111, 0); }
  50% { box-shadow: 0 0 48px rgba(47, 93, 111, 0.18); }
}

/* Back To Top */
.back-top {
  position: fixed;
  right: 30px;
  bottom: 40px;
  width: 56px;
  height: 56px;
  border: none;
  border-radius: 50%;
  background: #2f5d6f;
  color: white;
  font-size: 20px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: 0.35s;
  box-shadow: 0 15px 35px rgba(47, 93, 111, 0.2);
  z-index: 999;
}
.back-top.show {
  opacity: 1;
  visibility: visible;
}
.back-top:hover {
  transform: translateY(-8px);
  background: #005F99;
}

/* Active Nav */
.nav-links a.active {
  color: #0077B6;
  font-weight: 700;
}

/* Sticky Navbar */
header.sticky {
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.92);
}

/* Mobile Navigation */
@media (max-width: 992px) {
  .nav-links {
    position: absolute;
    top: 85px;
    left: 0;
    width: 100%;
    background: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    padding: 35px 0;
    transform: translateY(-120%);
    transition: 0.35s;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  }
  .nav-links.active {
    transform: translateY(0);
  }

  .hero-content {
    grid-template-columns: 1fr;
  }
  .trust-bar-inner {
    grid-template-columns: 1fr;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .cta-banner-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Gallery Filters */
.gallery-filter {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}
.filter-btn {
  padding: 14px 28px;
  border: none;
  border-radius: 100px;
  background: #EAF7FF;
  cursor: pointer;
  font-weight: 600;
  transition: 0.35s;
}
.filter-btn.active,
.filter-btn:hover {
  background: #0077B6;
  color: white;
}

/* Gallery Overlay */
.gallery-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 119, 182, 0.65);
  color: white;
  font-size: 24px;
  opacity: 0;
  transition: 0.35s;
}
.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 99999;
}
.lightbox.active {
  display: flex;
}
#lightbox-image {
  max-width: 90%;
  max-height: 85vh;
  border-radius: 18px;
}
.close-lightbox {
  position: absolute;
  top: 35px;
  right: 45px;
  font-size: 60px;
  color: white;
  cursor: pointer;
}

/* Google Map */
iframe {
  box-shadow: var(--shadow);
  border-radius: 24px;
}

/* Contact Cards Hover */
.service-card:hover i {
  transform: rotate(8deg) scale(1.1);
  transition: 0.35s;
}

/* Let the blurred supporting photo remain visible behind the section overlay. */
body > section:not(.hero) {
  background: transparent !important;
}
/* =========================
   MOBILE FOOTER
   ========================= */
@media (max-width: 768px) {

  footer {
    padding: 40px 20px 15px;
  }

  .footer-container {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 35px;
    text-align: center;
  }

  /* Logo + description */
  .footer-container > div:first-child {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 20px !important;
    max-width: 100% !important;
  }

  .footer-container > div:first-child > div {
    width: 130px !important;
    height: 130px !important;
  }

  .footer-container > div:first-child p {
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.6;
  }

  /* Footer headings */
  footer h3 {
    margin-bottom: 15px;
  }

  /* Footer links */
  footer a {
    margin-bottom: 12px;
  }

  /* Business hours */
  .footer-container > div p {
    margin-bottom: 8px;
  }

  /* Copyright */
  .copyright {
    text-align: center;
    padding: 15px 10px;
    font-size: 14px;
  }
}

/* =========================================================
   PRICING COMPARISON TABLE
   ========================================================= */

.pricing-table-wrapper {
  width: 100%;
  margin: 40px auto 0;
  overflow-x: auto;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}


/* =========================================================
   TABLE
   ========================================================= */

.pricing-comparison {
  width: 100%;
  min-width: 750px;
  border-collapse: collapse;
  background: #ffffff;
  table-layout: fixed;
}


/* =========================================================
   TABLE HEADER
   ========================================================= */

.pricing-comparison thead {
  background: #2f5d6f;
  color: #ffffff;
}

.pricing-comparison th {
  padding: 20px 15px;
  font-size: 17px;
  font-weight: 700;
  text-align: center;
  vertical-align: middle;
}

.pricing-comparison th:first-child {
  text-align: left;
}


/* =========================================================
   COLUMN WIDTHS
   ========================================================= */

.pricing-comparison .feature-column {
  width: 34%;
}

.pricing-comparison th:not(:first-child),
.pricing-comparison td:not(:first-child) {
  width: 22%;
}


/* =========================================================
   TABLE CELLS
   ========================================================= */

.pricing-comparison td {
  padding: 17px 15px;
  border-bottom: 1px solid #e3e8eb;
  font-size: 15px;
  color: #263640;
  text-align: center;
  vertical-align: middle;
}


/* Feature names */
.pricing-comparison td:first-child {
  text-align: left;
  font-weight: 600;
}


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

.pricing-comparison .price-row td {
  padding: 22px 15px;
  font-weight: 700;
  color: #2f5d6f;
  background: #f5f8f9;
}

.pricing-comparison .price-row td:not(:first-child) {
  font-size: 18px;
}


/* =========================================================
   CHECKMARKS
   ========================================================= */

.pricing-comparison td:not(:first-child) {
  font-weight: 600;
}

.pricing-comparison td:first-child {
  color: #263640;
}


/* =========================================================
   HOVER EFFECT
   ========================================================= */

.pricing-comparison tbody tr:not(.price-row):hover {
  background: #f7fafb;
}


/* =========================================================
   LAST ROW
   ========================================================= */

.pricing-comparison tbody tr:last-child td {
  border-bottom: none;
}


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

@media (max-width: 768px) {

  .pricing-table-wrapper {
    margin-top: 30px;
    border-radius: 15px;
  }

  .pricing-comparison {
    min-width: 700px;
  }

  .pricing-comparison th {
    padding: 16px 12px;
    font-size: 15px;
  }

  .pricing-comparison td {
    padding: 14px 12px;
    font-size: 14px;
  }

  .pricing-comparison .price-row td:not(:first-child) {
    font-size: 16px;
  }
}