/* ============================================
   TRUE GLOW CLEANING — Master Stylesheet
   ============================================ */

/* ----- CSS Variables ----- */
:root {
  --salmon: #eaa486;
  --salmon-accessible: #eda07f;
  --salmon-accessible-hover: #e08c66;
  --salmon-dark: #d4895c;
  --salmon-light: #f3c8b0;
  --salmon-bg: #f8ddd0;
  --gold: #ffde7a;
  --gold-light: #ffebb3;
  --gold-bg: #fff4d6;
  --teal: #b8d7da;
  --teal-dark: #5a9da5;
  --navy: #1A2E3B;
  --charcoal: #2D3436;
  --white: #FFFFFF;
  --cream: #FFFBF7;
  --gray: #5A6168;
  --gray-light: #F5F5F5;
  --border-light: #E8E8E8;

  --font-display: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --shadow-sm: 0 2px 8px rgba(26, 46, 59, 0.06);
  --shadow-md: 0 4px 20px rgba(26, 46, 59, 0.08);
  --shadow-lg: 0 8px 40px rgba(26, 46, 59, 0.12);

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;

  --transition: 0.3s ease;
  --transition-slow: 0.5s ease;
}


/* ----- Reset & Base ----- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.7;
  color: var(--navy);
  background-color: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

ul, ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}


/* ----- Typography ----- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  color: var(--navy);
}

h1 { font-size: clamp(2.75rem, 5.5vw, 4.5rem); }
h2 { font-size: clamp(2.25rem, 4.5vw, 3.5rem); }
h3 { font-size: clamp(1.5rem, 2.5vw, 2rem); }
h4 { font-size: clamp(1.2rem, 2vw, 1.45rem); }

p {
  color: var(--gray);
  margin-bottom: 1rem;
}

p:last-child {
  margin-bottom: 0;
}

.text-navy { color: var(--navy); }
.text-white { color: var(--white); }
.text-salmon { color: var(--salmon-dark); }
.text-teal { color: var(--teal); }


/* ----- Layout ----- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.container-wide {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

section {
  padding: 100px 0;
}

.section-label {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--teal-dark);
  margin-bottom: 16px;
  display: block;
}

.section-title {
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 1.15rem;
  color: var(--gray);
  max-width: 650px;
  line-height: 1.8;
}

.section-subtitle.centered {
  margin: 0 auto;
}

.text-center {
  text-align: center;
}


/* ----- Buttons ----- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 16px 36px;
  border-radius: var(--radius-full);
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: 0.3px;
}

.btn-primary {
  background: var(--navy);
  color: var(--white);
}

.btn-primary:hover {
  background: #243d4f;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-salmon {
  background: var(--salmon-accessible);
  color: var(--navy);
}

.btn-salmon:hover {
  background: var(--salmon-accessible-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-teal {
  background: var(--teal-dark);
  color: var(--white);
}

.btn-teal:hover {
  background: #4a8a91;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}

.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--white);
  color: var(--navy);
}

.btn-white:hover {
  background: var(--cream);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-sm {
  padding: 12px 24px;
  font-size: 0.875rem;
}

.btn-lg {
  padding: 20px 44px;
  font-size: 1.05rem;
}


/* ===== NAVIGATION ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 14px 0;
  box-shadow: var(--shadow-sm);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 1001;
}

.nav-logo img.logo-white {
  height: 64px;
  width: auto;
  transition: var(--transition);
}

.nav-logo img.logo-navy {
  height: 52px;
  width: auto;
  transition: var(--transition);
  display: none;
}

.navbar.scrolled .nav-logo img.logo-white {
  display: none;
}

.navbar.scrolled .nav-logo img.logo-navy {
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-links a {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--white);
  position: relative;
  padding: 4px 0;
  transition: var(--transition);
}

.navbar.scrolled .nav-links a {
  color: var(--navy);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--teal);
  transition: var(--transition);
}

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

.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-social {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  color: var(--white);
  transition: var(--transition);
}

.navbar.scrolled .nav-social a {
  border-color: var(--border-light);
  color: var(--navy);
}

.nav-social a:hover {
  background: var(--teal-dark);
  border-color: var(--teal-dark);
  color: var(--white);
}

.nav-social a svg {
  width: 20px;
  height: 20px;
}

.nav-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: var(--radius-full);
  background: var(--salmon-accessible);
  color: var(--navy);
  transition: var(--transition);
}

.nav-phone:hover {
  background: var(--salmon-accessible-hover);
  transform: translateY(-1px);
}

.nav-phone svg {
  width: 14px;
  height: 14px;
}

/* Mobile Menu (hidden at desktop) */
.mobile-menu {
  display: none;
}

/* Mobile Menu Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  z-index: 1001;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--white);
  transition: var(--transition);
  border-radius: 3px;
}

.nav-toggle span:nth-child(2) {
  width: 20px;
}

.navbar.scrolled .nav-toggle span {
  background: var(--navy);
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}


/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 0;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26, 46, 59, 0.82) 0%,
    rgba(26, 46, 59, 0.60) 50%,
    rgba(26, 46, 59, 0.42) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
  padding: 160px 0 100px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  padding: 8px 16px;
  background: rgba(242, 202, 77, 0.12);
  border-radius: var(--radius-full);
  border: 1px solid rgba(242, 202, 77, 0.25);
}

.hero h1 {
  color: var(--white);
  margin-bottom: 24px;
  font-weight: 700;
}

.hero h1 span {
  display: block;
  font-family: var(--font-body);
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  font-weight: 600;
  color: var(--salmon);
  margin-top: 16px;
  letter-spacing: 1px;
}

.hero-description {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 560px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  gap: 16px;
  padding-top: 32px;
}

.hero-stat {
  text-align: center;
  padding: 16px 24px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  min-width: 140px;
}

.hero-stat-number {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 4px;
}

.hero-stat-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}


/* ===== SERVICES PREVIEW ===== */
.services-preview {
  background: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 60px;
}

.service-card {
  position: relative;
  padding: 48px 40px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid var(--border-light);
  background: var(--white);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.service-card-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.service-card-icon.residential {
  background: var(--salmon-bg);
  color: var(--salmon-dark);
}

.service-card-icon.commercial {
  background: #D4EDE7;
  color: var(--teal-dark);
}

.service-card-icon svg {
  width: 28px;
  height: 28px;
}

.service-card h3 {
  margin-bottom: 16px;
}

.service-card p {
  margin-bottom: 24px;
  line-height: 1.8;
}

.service-card-features {
  margin-bottom: 28px;
}

.service-card-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.925rem;
  color: var(--gray);
  padding: 6px 0;
}

.service-card-features li svg {
  width: 16px;
  height: 16px;
  color: var(--teal);
  flex-shrink: 0;
}

.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.925rem;
  font-weight: 600;
  color: var(--navy);
  transition: var(--transition);
}

.service-card-link:hover {
  gap: 12px;
  color: var(--teal);
}

.service-card-link svg {
  width: 16px;
  height: 16px;
  transition: var(--transition);
}


/* ===== TRUST / EXPERIENCE ===== */
.trust-section {
  background: var(--cream);
}

.trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 48px;
}

.trust-badges {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.trust-badge {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  background: var(--white);
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.trust-badge:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.trust-badge-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--gold-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.trust-badge-icon svg {
  width: 24px;
  height: 24px;
  color: var(--salmon-dark);
}

.trust-badge h4 {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--navy);
}

.trust-badge p {
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--gray);
  margin-bottom: 0;
}

.trust-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.trust-image img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  object-position: top;
}


/* ===== IMAGE CAROUSEL ===== */
.carousel-section {
  padding: 60px 0;
  overflow: hidden;
  background: var(--white);
}

.carousel-track {
  display: flex;
  gap: 20px;
  animation: carouselScroll 40s linear infinite;
  width: max-content;
}

.carousel-track:hover {
  animation-play-state: paused;
}

.carousel-item {
  flex-shrink: 0;
  width: 320px;
  height: 400px;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.carousel-item:hover img {
  transform: scale(1.05);
}

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


/* ===== VALUES ===== */
.values-section {
  background: var(--salmon-accessible);
  position: relative;
  overflow: hidden;
}

.values-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
}

.values-section .section-label {
  color: var(--navy);
  opacity: 0.5;
}

.values-section .section-title {
  color: var(--navy);
}

.values-section .section-subtitle {
  color: var(--navy);
  opacity: 0.75;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 60px;
}

.value-card {
  text-align: center;
  padding: 36px 24px;
  background: rgba(255, 255, 255, 0.25);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: var(--transition);
}

.value-card:hover {
  background: rgba(255, 255, 255, 0.4);
  transform: translateY(-4px);
}

.value-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(26, 46, 59, 0.1);
}

.value-icon svg {
  width: 36px;
  height: 36px;
  color: var(--navy);
}

.value-card h4 {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}

.value-card p {
  font-size: 0.95rem;
  color: var(--navy);
  opacity: 0.75;
  line-height: 1.7;
}


/* ===== TESTIMONIALS ===== */
.testimonials-section {
  background: var(--white);
  overflow: hidden;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 16px;
}

.google-rating {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 24px;
  background: var(--gray-light);
  border-radius: var(--radius-full);
  margin-bottom: 40px;
}

.google-rating-stars {
  display: flex;
  gap: 2px;
}

.google-rating-stars svg {
  width: 20px;
  height: 20px;
  color: #FBBC04;
  fill: #FBBC04;
}

.google-rating-text {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy);
}

.testimonials-carousel {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.testimonial-slides {
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.testimonial-slide {
  display: none;
  padding: 52px;
  background: var(--salmon-bg);
  border-radius: var(--radius-lg);
  text-align: center;
}

.testimonial-slide.active {
  display: block;
  animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.testimonial-stars {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-bottom: 24px;
}

.testimonial-stars svg {
  width: 24px;
  height: 24px;
  color: #FBBC04;
  fill: #FBBC04;
}

.testimonial-quote {
  font-family: var(--font-body);
  font-size: 1.2rem;
  font-style: normal;
  line-height: 1.8;
  color: var(--navy);
  font-weight: 500;
  margin-bottom: 24px;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
}

.testimonial-author {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--navy);
}

.testimonial-source {
  font-size: 0.825rem;
  color: var(--gray);
  font-weight: 400;
}

.testimonial-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  margin-top: 32px;
}

.testimonial-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border: 1.5px solid var(--border-light);
  color: var(--navy);
  transition: var(--transition);
}

.testimonial-btn:hover {
  background: var(--teal);
  border-color: var(--teal);
  color: var(--white);
}

.testimonial-btn svg {
  width: 18px;
  height: 18px;
}

.testimonial-dots {
  display: flex;
  gap: 8px;
}

.testimonial-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border-light);
  transition: var(--transition);
  cursor: pointer;
}

.testimonial-dot.active {
  background: var(--teal);
  width: 24px;
  border-radius: 4px;
}


/* ===== QUOTE CTA ===== */
.cta-section {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(91, 181, 162, 0.1);
}

.cta-section::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(217, 164, 132, 0.08);
}

.cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.cta-content h2 {
  color: var(--white);
  margin-bottom: 16px;
}

.cta-content > p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 36px;
}

.quote-steps {
  margin-bottom: 40px;
}

.quote-step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
}

.quote-step-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(91, 181, 162, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.825rem;
  font-weight: 700;
  color: var(--teal);
  flex-shrink: 0;
}

.quote-step-text {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
}

.quote-step-text strong {
  color: var(--white);
}

.cta-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.cta-image img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  object-position: top;
}


/* ===== FOOTER ===== */
.footer {
  background: var(--gold);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1.5fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.footer-logo img {
  height: 44px;
  width: auto;
}

.footer-brand p {
  font-size: 0.9rem;
  color: var(--navy);
  opacity: 0.75;
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-nav-links {
  display: flex;
  gap: 20px;
  margin-bottom: 24px;
}

.footer-nav-links a {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
  text-decoration: underline;
  text-underline-offset: 3px;
}

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

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}

.footer-contact a,
.footer-contact span {
  font-size: 0.875rem;
  color: var(--navy);
  opacity: 0.85;
}

.footer-contact a:hover {
  opacity: 1;
  color: var(--teal-dark);
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: rgba(26, 46, 59, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--navy);
  color: var(--white);
}

.footer-social a svg {
  width: 20px;
  height: 20px;
}

.footer-mission h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin-bottom: 16px;
  color: var(--navy);
}

.footer-mission p {
  font-size: 0.9rem;
  color: var(--navy);
  opacity: 0.75;
  line-height: 1.7;
}

.footer-right h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin-bottom: 16px;
  color: var(--navy);
}

.footer-right p {
  font-size: 0.9rem;
  color: var(--navy);
  opacity: 0.75;
  line-height: 1.7;
  margin-bottom: 24px;
}

.footer-guarantee {
  margin-bottom: 28px;
}

.footer-bottom {
  border-top: 1px solid rgba(26, 46, 59, 0.15);
  padding: 24px 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--navy);
  opacity: 0.6;
  margin-bottom: 0;
}

.footer-bottom .footer-credit {
  display: block;
  font-size: 0.75rem;
  opacity: 0.45;
  margin-top: 6px;
}

.footer-bottom .footer-credit a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Section divider */
.section-divider {
  padding: 0;
  text-align: center;
}

.section-divider hr {
  border: none;
  height: 1px;
  background: var(--border-light);
  max-width: 120px;
  margin: 0 auto;
}


/* ===== OUR STORY PAGE ===== */
.page-hero {
  position: relative;
  padding: 180px 0 80px;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
}

.page-hero .section-label {
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 12px;
}

.page-hero h1 {
  color: var(--white);
  max-width: 700px;
  margin-bottom: 28px;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.82);
  max-width: 640px;
  font-size: 1.1rem;
  line-height: 1.8;
}

.story-section {
  background: var(--white);
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.story-grid.reversed {
  direction: rtl;
}

.story-grid.reversed > * {
  direction: ltr;
}

.story-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.story-image img {
  width: 100%;
  height: 580px;
  object-fit: cover;
  object-position: top;
}

.story-content h2 {
  margin-bottom: 20px;
}

.story-content p {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 16px;
}


/* ===== SERVICES PAGE ===== */
.services-intro {
  background: var(--white);
  text-align: center;
}

.services-intro .section-subtitle {
  max-width: 700px;
}

.service-detail {
  padding: 100px 0;
}

.service-detail:nth-child(even) {
  background: var(--cream);
}

.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.service-detail-grid.reversed {
  direction: rtl;
}

.service-detail-grid.reversed > * {
  direction: ltr;
}

.service-detail-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.service-detail-image img {
  width: 100%;
  height: 580px;
  object-fit: cover;
  object-position: top;
}

.service-detail-content h2 {
  margin-bottom: 16px;
}

.service-detail-content > p {
  margin-bottom: 24px;
  line-height: 1.8;
}

.service-features {
  margin-bottom: 32px;
}

.service-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  font-size: 0.95rem;
  color: var(--gray);
}

.service-features li svg {
  width: 20px;
  height: 20px;
  color: var(--teal);
  flex-shrink: 0;
  margin-top: 2px;
}

/* Quote Process Section */
.quote-process {
  background: var(--gold);
}

.quote-process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 60px;
}

.quote-process-step {
  text-align: center;
  padding: 40px 24px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.quote-process-step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.quote-process-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gold-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0 auto 20px;
}

.quote-process-step h4 {
  font-family: var(--font-body);
  margin-bottom: 12px;
}

.quote-process-step p {
  font-size: 0.9rem;
  line-height: 1.7;
}


/* ===== SCROLL ANIMATIONS ===== */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  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; }


/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  section {
    padding: 80px 0;
  }

  .services-grid {
    gap: 24px;
  }

  .trust-grid {
    gap: 40px;
  }

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .cta-grid {
    gap: 40px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .story-grid,
  .service-detail-grid {
    gap: 48px;
  }
}

@media (max-width: 768px) {
  section {
    padding: 64px 0;
  }

  .container {
    padding: 0 20px;
  }

  /* Navigation */
  .nav-links,
  .nav-social,
  .nav-phone {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  /* Mobile Menu */
  .mobile-menu {
    position: fixed;
    inset: 0;
    background: var(--white);
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
  }

  .mobile-menu.active {
    opacity: 1;
    pointer-events: all;
  }

  .mobile-menu a {
    font-family: var(--font-display);
    font-size: 1.75rem;
    color: var(--navy);
    font-weight: 600;
  }

  .mobile-menu .btn {
    margin-top: 16px;
    font-size: 1rem;
    padding: 16px 40px;
  }

  .mobile-menu .mobile-phone {
    display: none;
  }

  .mobile-menu .mobile-social {
    display: flex;
    gap: 20px;
    margin-top: 20px;
  }

  .mobile-menu .mobile-social a {
    font-size: 0;
    width: 52px;
    height: 52px;
    border-radius: var(--radius-sm);
    border: 1.5px solid var(--border-light);
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .mobile-menu .mobile-social a svg {
    width: 24px;
    height: 24px;
    color: var(--navy);
  }

  /* Hero - Navy overlay with faint image behind */
  .hero {
    min-height: auto;
    display: block;
    position: relative;
  }

  .hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
  }

  .hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(26, 46, 59, 0.85);
  }

  .hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
  }

  .hero-content {
    position: relative;
    z-index: 2;
    background: transparent;
    padding: 100px 24px 32px;
    max-width: none;
  }

  .hero h1 {
    font-size: 2.6rem;
    color: var(--white);
    margin-bottom: 20px;
  }

  .hero-badge {
    font-size: 0.65rem;
    padding: 6px 14px;
    margin-bottom: 16px;
  }

  .hero-description {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.75);
  }

  .hero-buttons {
    margin-bottom: 20px;
  }

  .hero-buttons .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-buttons .btn-outline {
    border-color: rgba(255,255,255,0.3) !important;
    color: white !important;
  }

  .hero-stats {
    gap: 8px;
    padding-top: 16px;
  }

  .hero-stat {
    padding: 12px 8px;
    min-width: auto;
    flex: 1;
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.1);
  }

  .hero-stat-number {
    font-size: 1.2rem;
    color: var(--white);
  }

  .hero-stat-label {
    font-size: 0.6rem;
    color: rgba(255,255,255,0.55);
  }

  .nav-logo img.logo-white {
    height: 60px;
  }

  /* Services */
  .services-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 40px;
  }

  .service-card {
    padding: 32px 28px;
  }

  /* Trust */
  .trust-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .trust-badges {
    grid-template-columns: 1fr 1fr;
  }

  .trust-image {
    order: -1;
  }

  .trust-image img {
    height: 360px;
  }

  /* Carousel */
  .carousel-item {
    width: 260px;
    height: 320px;
  }

  /* Values */
  .values-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 40px;
  }

  /* Testimonials */
  .testimonial-slide {
    padding: 32px 24px;
  }

  .testimonial-quote {
    font-size: 1.05rem;
  }

  /* CTA */
  .cta-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .cta-image {
    order: -1;
  }

  .cta-image img {
    height: 440px;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  /* Story */
  .story-grid,
  .story-grid.reversed,
  .service-detail-grid,
  .service-detail-grid.reversed {
    grid-template-columns: 1fr;
    direction: ltr;
    gap: 32px;
  }

  .story-image img,
  .service-detail-image img {
    height: 440px;
  }

  /* Quote Process */
  .quote-process-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 40px;
  }

  /* Page Hero */
  .page-hero {
    padding: 140px 0 60px;
  }
}

@media (max-width: 480px) {
  .hero-buttons {
    flex-direction: column;
  }

  .hero-stats {
    flex-direction: column;
    gap: 20px;
  }

  .trust-badges {
    grid-template-columns: 1fr;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-nav {
    gap: 16px;
  }
}
