/* ==========================================================================
   Ekam Movers - Premium Canadian Moving Experience
   Stylesheet: style.css
   Architecture: Modular BEM-inspired CSS3 with Custom Variables
   ========================================================================== */

/* --------------------------------------------------------------------------
   01. DESIGN TOKENS & CSS VARIABLES
   -------------------------------------------------------------------------- */
:root {
  /* Brand Palette */
  --primary-orange: #F97316;
  --primary-orange-hover: #EA580C;
  --primary-orange-glow: rgba(249, 115, 22, 0.25);
  --sky-blue: #38BDF8;
  --sky-blue-hover: #0EA5E9;
  --sky-blue-glow: rgba(56, 189, 248, 0.25);
  --dark-navy: #0F172A;
  --navy-card: #1E293B;
  --body-white: #FFFFFF;
  --bg-light: #F8FAFC;
  --light-border: #E5E7EB;
  --glass-border: rgba(255, 255, 255, 0.2);
  --success-green: #22C55E;

  /* Typography */
  --font-family: 'Plus Jakarta Sans', 'Outfit', system-ui, -apple-system, sans-serif;
  --hero-title-size: clamp(2.75rem, 5vw + 1rem, 5rem);     /* 44px to 80px */
  --section-title-size: clamp(2.1rem, 3.5vw + 1rem, 3.25rem); /* 34px to 52px */
  --card-title-size: clamp(1.25rem, 1.5vw + 0.8rem, 1.625rem); /* 20px to 26px */
  --body-text-size: 1.125rem;                               /* 18px */
  --small-text-size: 0.9375rem;                             /* 15px */

  /* Spacing System */
  --container-max-width: 1320px;
  --section-padding-desktop: 140px;
  --section-padding-mobile: 70px;

  /* UI Shapes & Glassmorphism */
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --radius-pill: 9999px;
  
  --glass-bg: rgba(255, 255, 255, 0.72);
  --glass-dark-bg: rgba(15, 23, 42, 0.65);
  --glass-blur: blur(16px);
  --glass-blur-heavy: blur(24px);

  /* Shadows */
  --shadow-subtle: 0 10px 30px -10px rgba(15, 23, 42, 0.05);
  --shadow-medium: 0 20px 40px -15px rgba(15, 23, 42, 0.08);
  --shadow-hover: 0 25px 50px -12px rgba(15, 23, 42, 0.18);
  --shadow-orange-glow: 0 15px 35px -10px rgba(249, 115, 22, 0.35);

  /* Transitions */
  --transition-fast: 250ms ease-out;
  --transition-normal: 400ms cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: 700ms cubic-bezier(0.16, 1, 0.3, 1);
}

/* --------------------------------------------------------------------------
   02. RESET & GLOBAL BASE STYLES
   -------------------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-family);
  font-size: var(--body-text-size);
  line-height: 1.65;
  color: var(--dark-navy);
  background-color: var(--bg-light);
  overflow-x: hidden;
}

img, picture, svg, video {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

button, input, select, textarea {
  font: inherit;
  border: none;
  outline: none;
  background: none;
}

ul, ol {
  list-style: none;
}

/* Container */
.container {
  width: 100%;
  max-width: var(--container-max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.relative-z { position: relative; z-index: 2; }
.bg-light { background-color: var(--bg-light); }
.text-center { text-align: center; }
.text-white { color: var(--body-white) !important; }
.text-white-80 { color: rgba(255, 255, 255, 0.8) !important; }
.text-gray { color: #94A3B8 !important; }
.text-highlight-orange { color: var(--primary-orange); }

/* Section Utilities */
.section-padding {
  padding-top: var(--section-padding-desktop);
  padding-bottom: var(--section-padding-desktop);
}
.section-padding-lg {
  padding-top: calc(var(--section-padding-desktop) * 1.2);
  padding-bottom: calc(var(--section-padding-desktop) * 1.2);
}

.section-header {
  max-width: 760px;
  margin: 0 auto 4rem auto;
}

.section-label {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--primary-orange);
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.section-label.orange-pill {
  background: rgba(249, 115, 22, 0.12);
  padding: 0.35rem 1rem;
  border-radius: var(--radius-pill);
}

.section-title {
  font-size: var(--section-title-size);
  font-weight: 800;
  line-height: 1.15;
  color: var(--dark-navy);
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}

.section-subtitle {
  font-size: var(--body-text-size);
  color: #64748B;
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   03. GLASSMORPHISM & UI COMPONENTS
   -------------------------------------------------------------------------- */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-subtle);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal), border-color var(--transition-normal);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  font-weight: 700;
  font-size: 1.05rem;
  padding: 1rem 2.25rem;
  border-radius: var(--radius-pill);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal), background-color var(--transition-fast), border-color var(--transition-fast);
  white-space: nowrap;
}

.btn-lg {
  padding: 1.15rem 2.5rem;
  font-size: 1.1rem;
}

.btn-xl {
  padding: 1.35rem 3rem;
  font-size: 1.2rem;
}

.btn-primary {
  background: var(--primary-orange);
  color: var(--body-white);
  box-shadow: var(--shadow-orange-glow);
}

.btn-primary:hover {
  background: var(--primary-orange-hover);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -10px rgba(249, 115, 22, 0.5);
}

.btn-secondary-glass {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--body-white);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary-glass:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-4px);
  border-color: var(--body-white);
}

.btn-white-pill {
  background: var(--body-white);
  color: var(--dark-navy);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.btn-white-pill:hover {
  background: #F1F5F9;
  transform: translateY(-4px);
  box-shadow: 0 22px 45px rgba(0, 0, 0, 0.22);
}

.btn-outline-white-pill {
  background: transparent;
  color: var(--body-white);
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-outline-white-pill:hover {
  border-color: var(--body-white);
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-4px);
}

.btn-block { width: 100%; }

.btn-icon {
  transition: transform var(--transition-normal);
}

.btn:hover .btn-icon {
  transform: translateX(4px);
}

/* Ripple Effect Class */
.ripple-effect {
  position: relative;
}
.ripple-span {
  position: absolute;
  border-radius: 50%;
  transform: scale(0);
  animation: ripple 600ms linear;
  background-color: rgba(255, 255, 255, 0.35);
  pointer-events: none;
}
@keyframes ripple {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

/* Badge Pill */
.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.45rem 1.1rem;
  border-radius: var(--radius-pill);
  margin-bottom: 1.5rem;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background-color: var(--primary-orange);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--primary-orange);
}

.badge-text {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--body-white);
  letter-spacing: 0.02em;
}

/* --------------------------------------------------------------------------
   04. SECTION 01: HERO SECTION
   -------------------------------------------------------------------------- */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 130px;
  padding-bottom: 80px;
  background-color: var(--dark-navy);
  overflow: hidden;
}

.hero-bg-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.85) contrast(1.1);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(39, 45, 58, 0.966) 0%, rgba(0, 0, 0, 0.1) 50%, rgba(0, 0, 0, 0.1) 100%);
}


.hero-container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem;
  align-items: center;
}

.hero-title {
  font-size: var(--hero-title-size);
  font-weight: 800;
  color: var(--body-white);
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}

.hero-description {
  font-size: var(--body-text-size);
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  max-width: 620px;
  margin-bottom: 2.25rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-bottom: 3rem;
}

.hero-trust-badges {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.trust-badge-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.badge-stars {
  display: flex;
  gap: 2px;
}

.trust-text {
  font-size: var(--small-text-size);
  color: rgba(255, 255, 255, 0.85);
}

.trust-badge-divider {
  width: 1px;
  height: 30px;
  background: rgba(255, 255, 255, 0.2);
}

/* Hero Glass Form Card */
.hero-quote-card {
  background: var(--glass-dark-bg);
  backdrop-filter: var(--glass-blur-heavy);
  -webkit-backdrop-filter: var(--glass-blur-heavy);
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.5);
}

.hero-quote-card .card-title {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--body-white);
  margin-bottom: 0.35rem;
}

.hero-quote-card .card-subtitle {
  font-size: var(--small-text-size);
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.75rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.15rem;
  margin-bottom: 1.5rem;
}

.form-group.full-width {
  grid-column: span 2;
}

.form-label {
  display: block;
  font-size: 0.825rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.input-icon-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.field-icon {
  position: absolute;
  left: 1rem;
  color: var(--primary-orange);
  pointer-events: none;
}

.form-input, .form-select {
  width: 100%;
  height: 52px;
  padding: 0 1rem 0 3rem;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-sm);
  color: var(--body-white);
  font-size: 0.95rem;
  transition: border-color var(--transition-fast), background-color var(--transition-fast);
}

.form-select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23F97316' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
}

.form-select option {
  background-color: var(--dark-navy);
  color: var(--body-white);
}

.form-input::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.form-input:focus, .form-select:focus {
  border-color: var(--primary-orange);
  background: rgba(255, 255, 255, 0.12);
}

.form-privacy-text {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-size: 0.775rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 1rem;
}

/* --------------------------------------------------------------------------
   05. SECTION 02: TRUST STRIP
   -------------------------------------------------------------------------- */
.trust-strip-section {
  position: relative;
  z-index: 10;
  margin-top: -50px;
}

.trust-cards-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
}

.trust-item-card {
  background: var(--body-white);
  border: 1px solid var(--light-border);
  border-radius: var(--radius-md);
  padding: 1.5rem 1.25rem;
  box-shadow: var(--shadow-subtle);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal), border-color var(--transition-normal);
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.trust-item-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: var(--primary-orange);
}

.trust-icon-box {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: rgba(249, 115, 22, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition-fast);
}

.trust-item-card:hover .trust-icon-box {
  transform: scale(1.1) rotate(5deg);
}

.trust-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark-navy);
}

.trust-desc {
  font-size: 0.85rem;
  color: #64748B;
  line-height: 1.45;
}

/* --------------------------------------------------------------------------
   06. SECTION 03: ABOUT EKAM MOVERS
   -------------------------------------------------------------------------- */
.about-grid {
  display: grid;
  grid-template-columns: 0.45fr 0.55fr;
  gap: 4.5rem;
  align-items: center;
}

.about-media {
  position: relative;
}

.about-image-wrapper {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: var(--shadow-medium);
}

.about-image {
  width: 100%;
  height: 580px;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.about-image-wrapper:hover .about-image {
  transform: scale(1.05);
}

/* Floating Badge */
.floating-badge {
  position: absolute;
  bottom: 30px;
  left: -20px;
  background: var(--primary-orange);
  color: var(--body-white);
  padding: 1.25rem 1.75rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-orange-glow);
  display: flex;
  align-items: center;
  gap: 1rem;
  z-index: 5;
}

.badge-icon-box {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.badge-heading {
  display: block;
  font-weight: 800;
  font-size: 1.1rem;
  line-height: 1.2;
}

.badge-subtext {
  font-size: 0.85rem;
  opacity: 0.9;
}

.text-body p {
  margin-bottom: 1.25rem;
  color: #475569;
}

.quote-card {
  margin: 2rem 0;
  padding: 1.75rem 2rem;
  background: rgba(249, 115, 22, 0.04);
  border-left: 4px solid var(--primary-orange);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.quote-text {
  font-size: 1.15rem;
  font-weight: 600;
  font-style: italic;
  color: var(--dark-navy);
  margin-bottom: 0.5rem;
}

.quote-author {
  font-size: var(--small-text-size);
  font-weight: 700;
  color: var(--primary-orange);
}

/* --------------------------------------------------------------------------
   07. SECTION 04: SERVICES
   -------------------------------------------------------------------------- */
.services-section {
  position: relative;
  background-color: var(--bg-light);
  overflow: hidden;
}

.services-bg-blobs {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.15;
}

.blob-1 { width: 450px; height: 450px; background: var(--primary-orange); top: 10%; left: -100px; }
.blob-2 { width: 500px; height: 500px; background: var(--sky-blue); bottom: 10%; right: -100px; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.75rem;
}

.service-card {
  background: var(--body-white);
  border: 1px solid var(--light-border);
  border-radius: 24px;
  padding: 2.25rem 1.75rem;
  box-shadow: var(--shadow-subtle);
  transition: transform 500ms cubic-bezier(0.16, 1, 0.3, 1), box-shadow 500ms, border-color 500ms, background 500ms;
  position: relative;
}

.service-card:hover {
  transform: translateY(-12px);
  box-shadow: var(--shadow-hover);
  border-color: var(--primary-orange);
  background: linear-gradient(180deg, #FFFFFF 0%, #FFF7ED 100%);
}

.service-icon-wrapper {
  width: 68px;
  height: 68px;
  border-radius: 18px;
  background: rgba(249, 115, 22, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: transform 500ms cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card:hover .service-icon-wrapper {
  transform: rotate(6deg) scale(1.08);
}

.service-title {
  font-size: var(--card-title-size);
  font-weight: 700;
  color: var(--dark-navy);
  margin-bottom: 0.85rem;
}

.service-description {
  font-size: 0.95rem;
  color: #64748B;
  margin-bottom: 1.5rem;
  line-height: 1.55;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--primary-orange);
}

.arrow-icon {
  transition: transform 300ms ease;
}

.service-card:hover .arrow-icon {
  transform: translateX(6px);
}

/* --------------------------------------------------------------------------
   08. SECTION 05: HOW IT WORKS
   -------------------------------------------------------------------------- */
.how-it-works-section {
  position: relative;
  background-color: white;
  overflow: hidden;
}

.how-it-works-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.how-it-works-bg .bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.4);
}

.overlay-dark {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  
}

.timeline-wrapper {
  position: relative;
  margin-top: 4rem;
}

.timeline-line-track {
  position: absolute;
  top: 40px;
  left: 5%;
  width: 90%;
  height: 3px;
  background: rgba(255, 255, 255, 0.15);
  z-index: 1;
}

.timeline-line-progress {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--primary-orange), var(--sky-blue));
  transition: width 800ms ease-out;
}

.timeline-steps-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
  position: relative;
  z-index: 2;
}

.step-card {
  background: var(--glass-dark-bg);
  backdrop-filter: var(--glass-blur);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 2rem 1.25rem;
  border-radius: var(--radius-md);
  text-align: center;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.step-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(249, 115, 22, 0.25);
  border-color: var(--primary-orange);
}

.step-number-badge {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-orange), var(--primary-orange-hover));
  color: var(--body-white);
  font-weight: 800;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem auto;
  box-shadow: var(--shadow-orange-glow);
}

.step-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--body-white);
  margin-bottom: 0.75rem;
}

.step-desc {
  font-size: 0.875rem;
  color: #94A3B8;
  line-height: 1.5;
}

/* --------------------------------------------------------------------------
   09. SECTION 06: WHY CHOOSE US
   -------------------------------------------------------------------------- */
.why-grid {
  display: grid;
  grid-template-columns: 0.45fr 0.55fr;
  gap: 4.5rem;
  align-items: center;
}

.why-image-wrapper {
  position: relative;
  border-radius: 30px;
}

.why-image {
  width: 100%;
  height: 580px;
  object-fit: cover;
  border-radius: 30px;
  box-shadow: var(--shadow-medium);
}

.floating-stat-card {
  position: absolute;
  bottom: 40px;
  right: -30px;
  background: var(--body-white);
  padding: 1.75rem 2.25rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-hover);
  border: 1px solid var(--light-border);
  text-align: center;
}

.stat-number-group {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
  color: var(--primary-orange);
}

.stat-label {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--dark-navy);
  margin-top: 0.25rem;
  margin-bottom: 0.5rem;
}

.stat-stars {
  display: flex;
  justify-content: center;
  gap: 3px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}

.feature-card {
  background: var(--body-white);
  border: 1px solid var(--light-border);
  padding: 1.5rem;
  border-radius: 20px;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal), border-color var(--transition-normal);
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: var(--primary-orange);
}

.feature-icon-circle {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--primary-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark-navy);
  margin-bottom: 0.25rem;
}

.feature-desc {
  font-size: 0.85rem;
  color: #64748B;
  line-height: 1.4;
}

/* --------------------------------------------------------------------------
   10. SECTION 07: GALLERY
   -------------------------------------------------------------------------- */
.gallery-masonry-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 240px;
  gap: 1.5rem;
}

.gallery-item {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-subtle);
}

.gallery-item.item-tall { grid-row: span 2; }
.gallery-item.item-wide { grid-column: span 2; }

.gallery-lightbox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0) 40%, rgba(15, 23, 42, 0.85) 100%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-icon-zoom {
  width: 44px;
  height: 44px;
  background: var(--primary-orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: flex-end;
  transform: translateY(-10px);
  transition: transform var(--transition-normal);
}

.gallery-item:hover .gallery-icon-zoom {
  transform: translateY(0);
}

.gallery-title {
  color: var(--body-white);
  font-weight: 700;
  font-size: 1.1rem;
}

/* --------------------------------------------------------------------------
   11. SECTION 08: TESTIMONIALS
   -------------------------------------------------------------------------- */
.testimonials-section {
  position: relative;
  overflow: hidden;
}

.testimonials-bg-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--sky-blue-glow) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.testimonial-slider-container {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.testimonial-slider-track {
  display: flex;
  transition: transform 600ms cubic-bezier(0.16, 1, 0.3, 1);
}

.testimonial-slide {
  min-width: 100%;
  padding: 1rem;
}

.testimonial-card {
  padding: 3rem;
  border-radius: var(--radius-lg);
  background: var(--body-white);
  border: 1px solid var(--light-border);
  box-shadow: var(--shadow-medium);
  position: relative;
}

.watermark-quote {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 8rem;
  font-family: Georgia, serif;
  color: rgba(249, 115, 22, 0.08);
  line-height: 1;
  pointer-events: none;
}

.testimonial-rating {
  color: #F59E0B;
  font-size: 1.25rem;
  letter-spacing: 2px;
  margin-bottom: 1.25rem;
}

.testimonial-text {
  font-size: 1.25rem;
  color: #334155;
  line-height: 1.65;
  margin-bottom: 2rem;
  font-weight: 500;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.author-avatar {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--primary-orange);
}

.author-name {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--dark-navy);
}

.author-location {
  font-size: 0.875rem;
  color: #64748B;
}

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
}

.slider-arrow {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--body-white);
  border: 1px solid var(--light-border);
  color: var(--dark-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color var(--transition-fast), border-color var(--transition-fast);
}

.slider-arrow:hover {
  background: var(--primary-orange);
  color: var(--body-white);
  border-color: var(--primary-orange);
}

.slider-dots {
  display: flex;
  gap: 8px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #CBD5E1;
  cursor: pointer;
  transition: width var(--transition-fast), background-color var(--transition-fast);
}

/* --------------------------------------------------------------------------
   RESPONSIVE TWEAKS
   Hide header 'Get Quote' CTA on mobile to reduce clutter
   -------------------------------------------------------------------------- */
@media (max-width: 767px) {
  .header-cta {
    display: none !important;
  }
}

.dot.active {
  width: 28px;
  border-radius: var(--radius-pill);
  background: var(--primary-orange);
}

.google-review-badge {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
}

.google-logo-wrapper {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 0.95rem;
}

.rating-number {
  font-size: 0.875rem;
  color: #64748B;
}

/* --------------------------------------------------------------------------
   12. SECTION 09: STATS & ACHIEVEMENTS
   -------------------------------------------------------------------------- */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.75rem;
}

.stat-card {
  background: var(--body-white);
  border: 1px solid var(--light-border);
  border-radius: 24px;
  padding: 2.5rem 1.75rem;
  text-align: center;
  box-shadow: var(--shadow-subtle);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.stat-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.stat-number-wrapper {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1;
  color: var(--primary-orange);
  margin-bottom: 0.75rem;
}

.stat-card-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark-navy);
  margin-bottom: 0.5rem;
}

.stat-card-desc {
  font-size: 0.875rem;
  color: #64748B;
  line-height: 1.45;
}

/* --------------------------------------------------------------------------
   13. SECTION 10: FAQ ACCORDION
   -------------------------------------------------------------------------- */
.faq-accordion-container {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.faq-item {
  background: var(--body-white);
  border: 1px solid var(--light-border);
  border-radius: 20px;
  overflow: hidden;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.faq-item:hover {
  border-color: var(--primary-orange);
}

.faq-trigger {
  width: 100%;
  padding: 1.75rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  cursor: pointer;
}

.faq-question {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark-navy);
}

.faq-icon-wrapper {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(249, 115, 22, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-orange);
  transition: transform var(--transition-normal), background-color var(--transition-fast);
}

.faq-chevron {
  transition: transform var(--transition-normal);
}

.faq-item.active .faq-chevron {
  transform: rotate(180deg);
}

.faq-item.active .faq-icon-wrapper {
  background: var(--primary-orange);
  color: var(--body-white);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 400ms cubic-bezier(0.16, 1, 0.3, 1), opacity 400ms ease;
  opacity: 0;
}

.faq-item.active .faq-content {
  opacity: 1;
}

.faq-inner {
  padding: 0 2rem 1.75rem 2rem;
  color: #475569;
  line-height: 1.65;
}

/* --------------------------------------------------------------------------
   14. SECTION 11: FINAL CTA BANNER
   -------------------------------------------------------------------------- */
.cta-banner-wrapper {
  position: relative;
  background: linear-gradient(135deg, var(--primary-orange) 0%, #0EA5E9 100%);
  border-radius: 36px;
  padding: 5rem 3rem;
  overflow: hidden;
  box-shadow: 0 30px 60px -15px rgba(249, 115, 22, 0.4);
}

.cta-glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.3;
  pointer-events: none;
}
.cta-glow-1 { width: 300px; height: 300px; background: #FFFFFF; top: -100px; left: -100px; }
.cta-glow-2 { width: 350px; height: 350px; background: var(--dark-navy); bottom: -100px; right: -100px; }

.cta-heading {
  font-size: clamp(2.25rem, 4vw, 3.5rem);
  font-weight: 800;
  margin-bottom: 1rem;
}

.cta-subtext {
  font-size: 1.2rem;
  max-width: 680px;
  margin: 0 auto 2.5rem auto;
}

.cta-button-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.cta-guarantee-line {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(0, 0, 0, 0.15);
  padding: 0.4rem 1.25rem;
  border-radius: var(--radius-pill);
}

/* --------------------------------------------------------------------------
   15. ANIMATION CLASS HOOKS (JS INTERSECTION OBSERVER)
   -------------------------------------------------------------------------- */
[data-animate] {
  opacity: 0;
  transition: opacity 800ms cubic-bezier(0.16, 1, 0.3, 1), transform 800ms cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

[data-animate="fade-up"] { transform: translateY(40px); }
[data-animate="fade-right"] { transform: translateX(-40px); }
[data-animate="fade-left"] { transform: translateX(40px); }
[data-animate="scale-in"] { transform: scale(0.9); }
[data-animate="slide-up"] { transform: translateY(60px); }

[data-animate].is-visible {
  opacity: 1;
  transform: translate(0) scale(1);
}

/* Delay Helpers */
[data-delay="100"] { transition-delay: 100ms; }
[data-delay="150"] { transition-delay: 150ms; }
[data-delay="200"] { transition-delay: 200ms; }
[data-delay="250"] { transition-delay: 250ms; }
[data-delay="300"] { transition-delay: 300ms; }
[data-delay="350"] { transition-delay: 350ms; }
[data-delay="400"] { transition-delay: 400ms; }
[data-delay="450"] { transition-delay: 450ms; }
[data-delay="500"] { transition-delay: 500ms; }

/* Micro-Animation Keyframes */
.phone-pulse {
  animation: pulse-ring 2s infinite;
}
@keyframes pulse-ring {
  0% { transform: scale(1); }
  50% { transform: scale(1.15); }
  100% { transform: scale(1); }
}

.phone-shake:hover {
  animation: shake 500ms ease;
}
@keyframes shake {
  0%, 100% { transform: rotate(0); }
  20%, 60% { transform: rotate(-12deg); }
  40%, 80% { transform: rotate(12deg); }
}

/* --------------------------------------------------------------------------
   16. RESPONSIVE BREAKPOINTS
   -------------------------------------------------------------------------- */
/* Laptop: 1200px */
@media (max-width: 1200px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .hero-quote-card {
    max-width: 600px;
    margin: 0 auto;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .trust-cards-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-masonry-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 220px;
  }
}

/* Tablet: 992px */
@media (max-width: 992px) {
  :root {
    --section-padding-desktop: 90px;
  }
  .about-grid, .why-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .floating-stat-card {
    right: 10px;
  }
  .timeline-steps-grid {
    grid-template-columns: 1fr;
  }
  .timeline-line-track {
    display: none;
  }
}

/* Mobile: 576px */
@media (max-width: 576px) {
  :root {
    --section-padding-desktop: 60px;
  }
  .trust-cards-grid {
    grid-template-columns: 1fr;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .stats-grid {
    grid-template-columns: 1fr;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .form-group.full-width {
    grid-column: span 1;
  }
  .hero-actions {
    flex-direction: column;
  }
  .btn {
    width: 100%;
  }
  .gallery-masonry-grid {
    grid-template-columns: 1fr;
  }
  .gallery-item.item-tall, .gallery-item.item-wide {
    grid-row: span 1;
    grid-column: span 1;
  }
  .cta-banner-wrapper {
    padding: 3rem 1.5rem;
  }
}
  







/* ==========================================================================
   HEADER & NAVBAR STYLES
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.25rem 0;
  transition: padding 300ms ease, background-color 300ms ease, box-shadow 300ms ease;
}

.site-header.scrolled {
  padding: 0.85rem 0;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid #E5E7EB;
  box-shadow: 0 10px 30px -10px rgba(15, 23, 42, 0.08);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Brand Logo */
.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-icon-box {
  width: 42px;
  height: 42px;
  background: #F97316;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 20px -5px rgba(249, 115, 22, 0.4);
}

.brand-name {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.35rem;
  color: #FFFFFF;
  line-height: 1;
}

.site-header.scrolled .brand-name {
  color: #0F172A;
}

.brand-highlight {
  color: #F97316;
}

.brand-tagline {
  display: block;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  color: #38BDF8;
  margin-top: 0.15rem;
}

/* Navigation Links */
.main-navigation {
  display: flex;
  align-items: center;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2.25rem;
  list-style: none;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.5rem 0;
  transition: color 200ms ease;
}

.site-header.scrolled .nav-link {
  color: #0F172A;
}

.nav-link:hover, .nav-link.active {
  color: #F97316 !important;
}

.chevron-icon {
  transition: transform 250ms ease;
}

/* Dropdown Card */
.nav-item.has-dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(15px);
  width: 580px;
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  padding: 1.25rem;
  box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 250ms ease, transform 250ms ease, visibility 250ms ease;
  z-index: 1100;
}

.site-header.scrolled .dropdown-menu {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid #E5E7EB;
  box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.15);
}

.nav-item.has-dropdown:hover .dropdown-menu,
.nav-item.has-dropdown.open .dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(5px);
}

.nav-item.has-dropdown:hover .chevron-icon,
.nav-item.has-dropdown.open .chevron-icon {
  transform: rotate(180deg);
}

.dropdown-inner-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
}

.dropdown-card {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.75rem;
  border-radius: 12px;
  transition: background-color 200ms ease, transform 200ms ease;
  text-decoration: none;
}

.dropdown-card:hover {
  background: rgba(249, 115, 22, 0.1);
  transform: translateX(3px);
}

.dropdown-card-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(249, 115, 22, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.dropdown-card-title {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: #FFFFFF;
}

.site-header.scrolled .dropdown-card-title {
  color: #0F172A;
}

.dropdown-card-sub {
  display: block;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
}

.site-header.scrolled .dropdown-card-sub {
  color: #64748B;
}

/* Header Actions Right */
.header-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.header-phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: #FFFFFF;
  text-decoration: none;
}

.site-header.scrolled .header-phone {
  color: #0F172A;
}

/* Hamburger Toggle Mobile */
.hamburger-btn {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1200;
}

.hamburger-btn .bar {
  width: 100%;
  height: 2.5px;
  background-color: #FFFFFF;
  border-radius: 4px;
  transition: transform 300ms ease, opacity 300ms ease, background-color 300ms ease;
}

.site-header.scrolled .hamburger-btn .bar {
  background-color: #0F172A;
}

.hamburger-btn.active .line-1 { transform: translateY(8.5px) rotate(45deg); background-color: #FFFFFF !important; }
.hamburger-btn.active .line-2 { opacity: 0; }
.hamburger-btn.active .line-3 { transform: translateY(-8.5px) rotate(-45deg); background-color: #FFFFFF !important; }

/* Mobile Drawer Overlay */
.mobile-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(15, 23, 42, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 1100;
  opacity: 0;
  visibility: hidden;
  transition: opacity 300ms ease, visibility 300ms ease;
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
}

.mobile-drawer.open {
  opacity: 1;
  visibility: visible;
}

.mobile-drawer-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
}

.mobile-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 2rem;
}

.mobile-link {
  font-size: 1.4rem;
  font-weight: 800;
  color: #FFFFFF;
  text-decoration: none;
}

.mobile-dropdown-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1.4rem;
  font-weight: 800;
  color: #FFFFFF;
  background: none;
  border: none;
}

.mobile-submenu {
  list-style: none;
  max-height: 0;
  overflow: hidden;
  transition: max-height 300ms ease;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding-left: 1rem;
}

.mobile-dropdown-group.active .mobile-submenu {
  max-height: 350px;
  margin-top: 0.75rem;
}

.mobile-sublink {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
}

.mobile-drawer-bottom {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mobile-phone-btn {
  text-align: center;
  padding: 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 9999px;
  color: #FFFFFF;
  font-weight: 700;
  text-decoration: none;
}

/* ==========================================================================
   FOOTER STYLES
   ========================================================================== */
.footer-spacer {
  height: 100px;
  background: #F8FAFC;
}

.site-footer {
  background-color: #0F172A;
  color: #94A3B8;
  padding-top: 4.5rem;
  padding-bottom: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}

.footer-logo {
  margin-bottom: 1rem;
  text-decoration: none;
}

.footer-brand-logo {
  display: inline-block;
  max-width: 160px;
  width: auto;
  height: auto;
  border-radius: 8px;
}

.footer-text {
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.social-links {
  display: flex;
  gap: 0.75rem;
}

.social-links a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 200ms ease, transform 200ms ease;
}

.social-links a:hover {
  background: #F97316;
  transform: translateY(-3px);
}

.footer-head {
  font-size: 1.05rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 1.15rem;
}

.footer-menu {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-menu a {
  font-size: 0.875rem;
  color: #94A3B8;
  text-decoration: none;
  transition: color 200ms ease;
}

.footer-menu a:hover {
  color: #F97316;
}

.contact-info-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
}

.contact-info-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
}

.contact-info-list a {
  color: #94A3B8;
  text-decoration: none;
}

.contact-info-list a:hover {
  color: #F97316;
}

/* Newsletter Box */
.newsletter-title {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 0.4rem;
}

.newsletter-form {
  position: relative;
  display: flex;
}

.newsletter-input {
  width: 100%;
  height: 42px;
  padding: 0 2.5rem 0 1rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 9999px;
  color: #FFFFFF;
  font-size: 0.85rem;
  outline: none;
}

.newsletter-input:focus {
  border-color: #F97316;
}

.newsletter-btn {
  position: absolute;
  right: 3px;
  top: 3px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #F97316;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.85rem;
}

.footer-policy-links a {
  color: #94A3B8;
  text-decoration: none;
}

.footer-policy-links a:hover {
  color: #F97316;
}

.footer-policy-links .divider {
  margin: 0 0.5rem;
  color: rgba(255, 255, 255, 0.2);
}

.back-to-top {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #FFFFFF;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 200ms ease, transform 200ms ease;
}

.back-to-top:hover {
  background: #F97316;
  transform: translateY(-3px);
}

/* Breakpoint Responsiveness */
@media (max-width: 992px) {
  .main-navigation, .header-phone {
    display: none;
  }
  .hamburger-btn {
    display: flex;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 576px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}




/* ==========================================================================
   Ekam Movers - Lightweight, Modern Stylesheet
   File: assets/css/style.css
   ========================================================================== */

:root {
  --primary-orange: #F97316;
  --primary-orange-hover: #EA580C;
  --sky-blue: #38BDF8;
  --dark-navy: #0F172A;
  --body-white: #FFFFFF;
  --bg-light: #F8FAFC;
  --light-border: #E5E7EB;
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 30px;
  --radius-pill: 9999px;
  --shadow-subtle: 0 10px 25px -5px rgba(15, 23, 42, 0.05);
  --shadow-hover: 0 20px 40px -10px rgba(15, 23, 42, 0.12);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  color: var(--dark-navy);
  background-color: var(--bg-light);
  line-height: 1.6;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.text-center { text-align: center; }
.text-orange { color: var(--primary-orange); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  padding: 0.85rem 1.85rem;
  border-radius: var(--radius-pill);
  text-decoration: none;
  transition: transform 200ms ease, box-shadow 200ms ease, background 200ms ease;
  cursor: pointer;
}

.btn-primary {
  background: var(--primary-orange);
  color: var(--body-white);
  border: none;
}
.btn-primary:hover {
  background: var(--primary-orange-hover);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(249, 115, 22, 0.3);
}

.btn-outline-dark {
  border: 1px solid var(--dark-navy);
  color: var(--dark-navy);
}
.btn-outline-dark:hover {
  background: var(--dark-navy);
  color: var(--body-white);
  transform: translateY(-3px);
}

.btn-white-pill {
  background: var(--body-white);
  color: var(--dark-navy);
}
.btn-white-pill:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.btn-outline-white {
  border: 1px solid var(--body-white);
  color: var(--body-white);
}
.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-3px);
}

.btn-block { width: 100%; }

/* Clean Cards */
.clean-card {
  background: var(--body-white);
  border: 1px solid var(--light-border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  box-shadow: var(--shadow-subtle);
  transition: transform 250ms ease, border-color 250ms ease, box-shadow 250ms ease;
}

.clean-card:hover {
  transform: translateY(-6px);
  border-color: var(--primary-orange);
  box-shadow: var(--shadow-hover);
}

/* Glass Card */
.glass-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: var(--shadow-subtle);
  transition: transform 250ms ease, box-shadow 250ms ease, border-color 250ms ease;
}

.glass-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

/* Page Spacing & Typography */
.sub-label {
  display: inline-block;
  font-size: 0.825rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--primary-orange);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.sub-label.orange-pill {
  background: rgba(249, 115, 22, 0.15);
  padding: 0.3rem 1rem;
  border-radius: var(--radius-pill);
}

h1, h2, h3, h4 {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  line-height: 1.2;
}

.section-head { margin-bottom: 3rem; }
.section-head.white-text h2 { color: var(--body-white); }

/* ==========================================================================
   HOMEPAGE (SIMPLE) STYLES
   ========================================================================== */
.hero-section-simple {
  padding: 140px 0 80px 0;
  background: linear-gradient(180deg, #F1F5F9 0%, var(--bg-light) 100%);
}

.hero-simple-container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
}

.pill-tag {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary-orange);
  background: rgba(249, 115, 22, 0.1);
  padding: 0.35rem 1rem;
  border-radius: var(--radius-pill);
  margin-bottom: 1rem;
}

.hero-simple-title {
  font-size: clamp(2.5rem, 4vw, 3.8rem);
  margin-bottom: 1.25rem;
}

.hero-simple-desc {
  font-size: 1.1rem;
  color: #475569;
  margin-bottom: 2rem;
}

.hero-btn-group { display: flex; gap: 1rem; }

.form-card .form-title { font-size: 1.5rem; margin-bottom: 0.25rem; }
.form-card .form-subtitle { font-size: 0.875rem; color: #64748B; margin-bottom: 1.5rem; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
  margin-bottom: 0.85rem;
}

.simple-input, .simple-select {
  width: 100%;
  height: 48px;
  padding: 0 1rem;
  border: 1px solid var(--light-border);
  border-radius: var(--radius-sm);
  background: var(--bg-light);
  font-size: 0.9rem;
}

.simple-input:focus, .simple-select:focus {
  outline: none;
  border-color: var(--primary-orange);
}

.trust-strip-simple {
  padding: 2.5rem 0;
  background: var(--body-white);
  border-top: 1px solid var(--light-border);
  border-bottom: 1px solid var(--light-border);
}

.trust-grid-simple {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.trust-box {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  font-size: 0.95rem;
}

.section-simple { padding: 90px 0; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

.service-box .icon-circle {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(249, 115, 22, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.service-box h3 { font-size: 1.2rem; margin-bottom: 0.5rem; }
.service-box p { font-size: 0.875rem; color: #64748B; }

.cta-simple-section { padding: 60px 0; }
.cta-simple-box {
  background: var(--dark-navy);
  color: var(--body-white);
  padding: 4rem 2rem;
  border-radius: var(--radius-lg);
}

.cta-simple-box h2 { font-size: 2.25rem; margin-bottom: 0.75rem; }
.cta-simple-box p { color: #94A3B8; margin-bottom: 2rem; }

/* ==========================================================================
   ABOUT PAGE DIRECT (STRICTLY NO HERO/BREADCRUMBS)
   ========================================================================== */
.page-about-direct {
  padding-top: 130px; /* Clears floating navbar */
}

.about-section-main {
  padding: 80px 0;
  background: linear-gradient(180deg, #FFFFFF 0%, var(--bg-light) 100%);
}

.asymmetric-layout {
  display: grid;
  grid-template-columns: 0.45fr 0.55fr;
  gap: 4rem;
  align-items: center;
}

.image-wrapper-parallax {
  position: relative;
}

.about-main-img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 30px;
  box-shadow: var(--shadow-hover);
}

.badge-orange-floating {
  position: absolute;
  bottom: 25px;
  right: -20px;
  background: var(--primary-orange);
  color: var(--body-white);
  padding: 1rem 1.5rem;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 0.85rem;
  box-shadow: 0 15px 30px rgba(249, 115, 22, 0.4);
}

.badge-num { font-size: 2rem; font-weight: 800; line-height: 1; }
.badge-txt strong { display: block; font-size: 0.95rem; }
.badge-txt span { font-size: 0.75rem; opacity: 0.9; }

.main-heading { font-size: clamp(2.1rem, 3.5vw, 3rem); margin-bottom: 1.5rem; }
.story-text p { color: #475569; margin-bottom: 1.25rem; font-size: 1.05rem; }

.highlight-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.spec-card {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1.15rem;
}

.spec-card h4 { font-size: 0.95rem; }
.spec-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(249, 115, 22, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Mission & Vision */
.mission-vision-section {
  padding: 90px 0;
  background: #F1F5F9;
}

.split-mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.mv-box .mv-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(249, 115, 22, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.mv-box h2 { font-size: 1.75rem; margin-bottom: 1rem; }
.mv-box p { color: #475569; font-size: 1rem; }

/* Why Choose Us */
.why-choose-section { padding: 100px 0; }
.why-split-grid {
  display: grid;
  grid-template-columns: 0.55fr 0.45fr;
  gap: 4rem;
  align-items: center;
}

.feature-simple-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}

.feature-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.25rem;
}

.feature-item .feature-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(249, 115, 22, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-item h4 { font-size: 1rem; margin-bottom: 0.25rem; }
.feature-item p { font-size: 0.825rem; color: #64748B; }

.why-right-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 30px;
  box-shadow: var(--shadow-medium);
}

/* Milestones */
.milestones-section {
  padding: 100px 0;
  background: var(--dark-navy);
  color: var(--body-white);
}

.milestones-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.milestone-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
}

.milestone-card .stat-number, .milestone-card .stat-symbol, .milestone-card .stat-number-text {
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary-orange);
}

.milestone-card h3 { font-size: 1.15rem; color: var(--body-white); margin: 0.5rem 0 0.25rem 0; }
.milestone-card p { font-size: 0.85rem; color: #94A3B8; }

/* Final CTA Banner */
.cta-banner-section { padding: 90px 0; }
.cta-gradient-box {
  background: linear-gradient(135deg, var(--primary-orange) 0%, var(--sky-blue) 100%);
  color: var(--body-white);
  padding: 4.5rem 2rem;
  border-radius: 36px;
  box-shadow: 0 20px 40px rgba(249, 115, 22, 0.3);
}

.cta-gradient-box h2 { font-size: clamp(2rem, 3.5vw, 2.75rem); margin-bottom: 0.85rem; }
.cta-gradient-box p { font-size: 1.1rem; opacity: 0.9; margin-bottom: 2.25rem; }
.cta-btn-group { display: flex; justify-content: center; gap: 1.25rem; }

/* Animations */
[data-animate] {
  opacity: 0;
  transition: opacity 700ms ease, transform 700ms ease;
}

[data-animate="fade-right"] { transform: translateX(-30px); }
[data-animate="fade-left"] { transform: translateX(30px); }
[data-animate="fade-up"] { transform: translateY(30px); }
[data-animate="scale-in"] { transform: scale(0.92); }

[data-animate].is-visible {
  opacity: 1;
  transform: translate(0) scale(1);
}

/* Responsive */
@media (max-width: 992px) {
  .hero-simple-container, .asymmetric-layout, .why-split-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .split-mv-grid, .trust-grid-simple, .grid-4, .milestones-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .badge-orange-floating { right: 10px; }
}

@media (max-width: 576px) {
  .trust-grid-simple, .grid-4, .highlight-cards-grid, .feature-simple-grid, .split-mv-grid, .milestones-grid {
    grid-template-columns: 1fr;
  }
  .form-row { grid-template-columns: 1fr; }
  .cta-btn-group { flex-direction: column; }
  .btn { width: 100%; }
}



/* ==========================================================================
   FULL-WIDTH CENTERED BREADCRUMB HERO WITH OVERLAY IMAGE
   ========================================================================== */
.breadcrumb-hero-section {
  position: relative;
  width: 100%;
  padding: 160px 0 80px 0; /* Space for fixed navigation header */
  background-color: var(--dark-navy);
  overflow: hidden;
}

.breadcrumb-bg-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.breadcrumb-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.65);
}

.breadcrumb-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.88) 0%, rgba(15, 23, 42, 0.50) 100%);
}

.breadcrumb-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.breadcrumb-hero-content .page-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.25rem, 4vw, 3.25rem);
  font-weight: 800;
  color: var(--body-white);
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

.breadcrumb-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  list-style: none;
  font-size: 0.95rem;
  font-weight: 600;
}

.breadcrumb-item a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 200ms ease;
}

.breadcrumb-item a:hover {
  color: var(--primary-orange);
}

.breadcrumb-separator {
  display: flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.4);
}

.breadcrumb-item.active span {
  color: var(--primary-orange);
  font-weight: 700;
}




/* ==========================================================================
   Ekam Movers - Master Stylesheet
   File: assets/css/style.css
   Architecture: Unified Vanilla CSS3 Architecture
   ========================================================================== */

/* --------------------------------------------------------------------------
   01. DESIGN TOKENS & CSS VARIABLES
   -------------------------------------------------------------------------- */
:root {
  /* Colors */
  --primary-orange: #F97316;
  --primary-orange-hover: #EA580C;
  --primary-orange-glow: rgba(249, 115, 22, 0.28);
  --sky-blue: #38BDF8;
  --sky-blue-hover: #0EA5E9;
  --dark-navy: #0F172A;
  --navy-card: #1E293B;
  --body-white: #FFFFFF;
  --bg-light: #F8FAFC;
  --light-border: #E5E7EB;
  --glass-border: rgba(255, 255, 255, 0.2);
  --success-green: #22C55E;

  /* Typography */
  --font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --heading-font: 'Outfit', 'Plus Jakarta Sans', sans-serif;

  /* UI Shapes & Border Radii */
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 30px;
  --radius-pill: 9999px;

  /* Glassmorphism & Shadows */
  --glass-bg: rgba(255, 255, 255, 0.85);
  --glass-dark-bg: rgba(15, 23, 42, 0.88);
  --glass-blur: blur(16px);
  --shadow-subtle: 0 10px 25px -5px rgba(15, 23, 42, 0.05);
  --shadow-hover: 0 20px 45px -10px rgba(15, 23, 42, 0.12);
  --shadow-orange-glow: 0 15px 30px -5px rgba(249, 115, 22, 0.35);

  /* Transitions */
  --transition-fast: 200ms ease;
  --transition-normal: 350ms cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: 600ms cubic-bezier(0.16, 1, 0.3, 1);
}

/* --------------------------------------------------------------------------
   02. RESET & GLOBAL BASE STYLES
   -------------------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-family);
  color: var(--dark-navy);
  background-color: var(--bg-light);
  line-height: 1.6;
  overflow-x: hidden;
}

img, svg {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

button, input, select, textarea {
  font: inherit;
  border: none;
  outline: none;
  background: none;
}

ul, ol {
  list-style: none;
}

/* Layout Utilities */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.text-center { text-align: center; }
.text-white { color: var(--body-white) !important; }
.text-white-80 { color: rgba(255, 255, 255, 0.8) !important; }
.text-orange { color: var(--primary-orange); }
.bg-light { background-color: var(--bg-light); }
.relative-z { position: relative; z-index: 2; }

/* Section Utilities */
.section-padding {
  padding-top: 100px;
  padding-bottom: 100px;
}

.section-head {
  max-width: 720px;
  margin: 0 auto 3.5rem auto;
}

.sub-label {
  display: inline-block;
  font-size: 0.825rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--primary-orange);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.sub-label.orange-pill {
  background: rgba(249, 115, 22, 0.12);
  padding: 0.35rem 1rem;
  border-radius: var(--radius-pill);
}

h1, h2, h3, h4 {
  font-family: var(--heading-font);
  font-weight: 800;
  line-height: 1.2;
  color: var(--dark-navy);
}

h1.main-heading {
  font-size: clamp(2.2rem, 3.8vw, 3.2rem);
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.85rem, 3vw, 2.5rem);
  letter-spacing: -0.01em;
}

/* --------------------------------------------------------------------------
   03. BUTTONS & UI COMPONENTS
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  font-weight: 700;
  font-size: 1rem;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-pill);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal), background-color var(--transition-fast);
  white-space: nowrap;
}

.btn-sm { padding: 0.6rem 1.25rem; font-size: 0.875rem; }
.btn-lg { padding: 1.1rem 2.5rem; font-size: 1.1rem; }

.btn-primary {
  background: var(--primary-orange);
  color: var(--body-white);
  box-shadow: var(--shadow-orange-glow);
}

.btn-primary:hover {
  background: var(--primary-orange-hover);
  transform: translateY(-3px);
  box-shadow: 0 18px 35px -5px rgba(249, 115, 22, 0.45);
}

.btn-outline-dark {
  border: 1px solid var(--dark-navy);
  color: var(--dark-navy);
}

.btn-outline-dark:hover {
  background: var(--dark-navy);
  color: var(--body-white);
  transform: translateY(-3px);
}

.btn-white-pill {
  background: var(--body-white);
  color: var(--dark-navy);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.btn-white-pill:hover {
  background: #F1F5F9;
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.btn-outline-white {
  border: 1px solid rgba(255, 255, 255, 0.6);
  color: var(--body-white);
}

.btn-outline-white:hover {
  border-color: var(--body-white);
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-3px);
}

.btn-block { width: 100%; }

/* Card Presets */
.clean-card {
  background: var(--body-white);
  border: 1px solid var(--light-border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  box-shadow: var(--shadow-subtle);
  transition: transform var(--transition-normal), border-color var(--transition-normal), box-shadow var(--transition-normal);
}

.clean-card:hover {
  transform: translateY(-6px);
  border-color: var(--primary-orange);
  box-shadow: var(--shadow-hover);
}

.glass-card {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: var(--radius-md);
  padding: 2.25rem;
  box-shadow: var(--shadow-subtle);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal), border-color var(--transition-normal);
}

/* --------------------------------------------------------------------------
   04. HEADER & STICKY NAVIGATION
   -------------------------------------------------------------------------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.25rem 0;
  transition: padding var(--transition-normal), background-color var(--transition-normal), box-shadow var(--transition-normal);
}

.site-header.scrolled {
  padding: 0.85rem 0;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--light-border);
  box-shadow: 0 10px 30px -10px rgba(15, 23, 42, 0.08);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-icon-box {
  width: 42px;
  height: 42px;
  background: var(--primary-orange);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-orange-glow);
}

.brand-name {
  font-family: var(--heading-font);
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--dark-navy);
  line-height: 1;
}

.brand-highlight { color: var(--primary-orange); }

.brand-tagline {
  display: block;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  color: var(--sky-blue);
  margin-top: 0.15rem;
}

.main-navigation { display: flex; align-items: center; }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2.25rem;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--dark-navy);
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.5rem 0;
  transition: color var(--transition-fast);
}

.nav-link:hover, .nav-link.active { color: var(--primary-orange) !important; }

/* Header Dropdown */
.nav-item.has-dropdown { position: relative; }

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(15px);
  width: 560px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--light-border);
  border-radius: 20px;
  padding: 1.25rem;
  box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.15);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 250ms ease, transform 250ms ease, visibility 250ms ease;
  z-index: 1100;
}

.nav-item.has-dropdown:hover .dropdown-menu,
.nav-item.has-dropdown.open .dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(5px);
}

.dropdown-inner-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
}

.dropdown-card {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.75rem;
  border-radius: 12px;
  transition: background-color var(--transition-fast), transform var(--transition-fast);
}

.dropdown-card:hover {
  background: rgba(249, 115, 22, 0.08);
  transform: translateX(3px);
}

.dropdown-card-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(249, 115, 22, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.dropdown-card-title {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--dark-navy);
}

.dropdown-card-sub {
  display: block;
  font-size: 0.75rem;
  color: #64748B;
}

.header-actions { display: flex; align-items: center; gap: 1.25rem; }

.header-phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--dark-navy);
}

.hamburger-btn {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  cursor: pointer;
  z-index: 1200;
}

.hamburger-btn .bar {
  width: 100%;
  height: 2.5px;
  background-color: var(--dark-navy);
  border-radius: 4px;
  transition: transform 300ms ease, opacity 300ms ease;
}

/* Mobile Drawer Overlay */
.mobile-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(15, 23, 42, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 1100;
  opacity: 0;
  visibility: hidden;
  transition: opacity 300ms ease, visibility 300ms ease;
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
}

.mobile-drawer.open { opacity: 1; visibility: visible; }

.mobile-drawer-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
}

.mobile-nav-list { display: flex; flex-direction: column; gap: 1.25rem; margin-top: 2rem; }
.mobile-link { font-size: 1.4rem; font-weight: 800; color: var(--body-white); }

.mobile-dropdown-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--body-white);
}

.mobile-submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 300ms ease;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding-left: 1rem;
}

.mobile-dropdown-group.active .mobile-submenu { max-height: 350px; margin-top: 0.75rem; }
.mobile-sublink { font-size: 1rem; color: rgba(255, 255, 255, 0.8); }
.mobile-drawer-bottom { display: flex; flex-direction: column; gap: 1rem; }

.mobile-phone-btn {
  text-align: center;
  padding: 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-pill);
  color: var(--body-white);
  font-weight: 700;
}

/* --------------------------------------------------------------------------
   05. HOMEPAGE (SIMPLE & LIGHTWEIGHT)
   -------------------------------------------------------------------------- */
.hero-section-simple {
  padding: 150px 0 80px 0;
  background: linear-gradient(180deg, #F1F5F9 0%, var(--bg-light) 100%);
}

.hero-simple-container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3.5rem;
  align-items: center;
}

.pill-tag {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary-orange);
  background: rgba(249, 115, 22, 0.1);
  padding: 0.35rem 1rem;
  border-radius: var(--radius-pill);
  margin-bottom: 1rem;
}

.hero-simple-title {
  font-size: clamp(2.5rem, 4vw, 3.8rem);
  margin-bottom: 1.25rem;
}

.hero-simple-desc {
  font-size: 1.1rem;
  color: #475569;
  margin-bottom: 2rem;
}

.hero-btn-group { display: flex; gap: 1rem; }

.form-card .form-title { font-size: 1.5rem; margin-bottom: 0.25rem; }
.form-card .form-subtitle { font-size: 0.875rem; color: #64748B; margin-bottom: 1.5rem; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
  margin-bottom: 0.85rem;
}

.simple-input, .simple-select {
  width: 100%;
  height: 48px;
  padding: 0 1rem;
  border: 1px solid var(--light-border);
  border-radius: var(--radius-sm);
  background: var(--bg-light);
  font-size: 0.9rem;
  color: var(--dark-navy);
}

.simple-input:focus, .simple-select:focus {
  outline: none;
  border-color: var(--primary-orange);
  background: var(--body-white);
}

.trust-strip-simple {
  padding: 2.25rem 0;
  background: var(--body-white);
  border-top: 1px solid var(--light-border);
  border-bottom: 1px solid var(--light-border);
}

.trust-grid-simple {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.trust-box {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  font-size: 0.95rem;
}

.section-simple { padding: 90px 0; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

.service-box .icon-circle {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(249, 115, 22, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.service-box h3 { font-size: 1.2rem; margin-bottom: 0.5rem; }
.service-box p { font-size: 0.875rem; color: #64748B; }

.cta-simple-section { padding: 60px 0 100px 0; }
.cta-simple-box {
  background: var(--dark-navy);
  color: var(--body-white);
  padding: 4rem 2rem;
  border-radius: var(--radius-lg);
}

.cta-simple-box h2 { font-size: 2.25rem; margin-bottom: 0.75rem; color: var(--body-white); }
.cta-simple-box p { color: #94A3B8; margin-bottom: 2rem; }

/* --------------------------------------------------------------------------
   06. ABOUT PAGE DIRECT (NO HERO/BREADCRUMBS)
   -------------------------------------------------------------------------- */
.page-about-direct {
  padding-top: 110px; /* Offset for sticky header */
}

.about-section-main {
  padding: 70px 0 90px 0;
  background: linear-gradient(180deg, #FFFFFF 0%, var(--bg-light) 100%);
}

.asymmetric-layout {
  display: grid;
  grid-template-columns: 0.45fr 0.55fr;
  gap: 4rem;
  align-items: center;
}

.image-wrapper-parallax { position: relative; }

.about-main-img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 30px;
  box-shadow: var(--shadow-hover);
}

.badge-orange-floating {
  position: absolute;
  bottom: 25px;
  right: -20px;
  background: var(--primary-orange);
  color: var(--body-white);
  padding: 1rem 1.5rem;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 0.85rem;
  box-shadow: 0 15px 30px rgba(249, 115, 22, 0.4);
}

.badge-num { font-size: 2rem; font-weight: 800; line-height: 1; }
.badge-txt strong { display: block; font-size: 0.95rem; }
.badge-txt span { font-size: 0.75rem; opacity: 0.9; }

.story-text p { color: #475569; margin-bottom: 1.25rem; font-size: 1.05rem; }

.highlight-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.spec-card {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1.15rem;
}

.spec-card h4 { font-size: 0.95rem; }

.spec-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(249, 115, 22, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Mission & Vision */
.mission-vision-section {
  padding: 90px 0;
  background: #F1F5F9;
}

.split-mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.mv-box .mv-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(249, 115, 22, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.mv-box h2 { font-size: 1.75rem; margin-bottom: 1rem; }
.mv-box p { color: #475569; font-size: 1rem; }

/* Why Choose Us */
.why-choose-section { padding: 100px 0; }

.why-split-grid {
  display: grid;
  grid-template-columns: 0.55fr 0.45fr;
  gap: 4rem;
  align-items: center;
}

.feature-simple-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}

.feature-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.25rem;
}

.feature-item .feature-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(249, 115, 22, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-item h4 { font-size: 1rem; margin-bottom: 0.25rem; }
.feature-item p { font-size: 0.825rem; color: #64748B; }

.why-right-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 30px;
  box-shadow: var(--shadow-hover);
}

/* Milestones */
.milestones-section {
  padding: 100px 0;
  background: var(--dark-navy);
  color: var(--body-white);
}

.milestones-timeline { position: relative; }

.milestones-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.milestone-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
}

.milestone-card .stat-number, .milestone-card .stat-symbol, .milestone-card .stat-number-text {
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary-orange);
}

.milestone-card h3 { font-size: 1.15rem; color: var(--body-white); margin: 0.5rem 0 0.25rem 0; }
.milestone-card p { font-size: 0.85rem; color: #94A3B8; }

/* Final CTA Banner */
.cta-banner-section { padding: 90px 0; }

.cta-gradient-box {
  background: linear-gradient(135deg, var(--primary-orange) 0%, var(--sky-blue) 100%);
  color: var(--body-white);
  padding: 4.5rem 2rem;
  border-radius: 36px;
  box-shadow: 0 20px 40px rgba(249, 115, 22, 0.3);
}

.cta-gradient-box h2 { font-size: clamp(2rem, 3.5vw, 2.75rem); margin-bottom: 0.85rem; color: var(--body-white); }
.cta-gradient-box p { font-size: 1.1rem; opacity: 0.9; margin-bottom: 2.25rem; }
.cta-btn-group { display: flex; justify-content: center; gap: 1.25rem; }

/* --------------------------------------------------------------------------
   07. CONTACT PAGE DIRECT (NO HERO/BREADCRUMBS)
   -------------------------------------------------------------------------- */
.page-contact-direct {
  padding-top: 110px; /* Offset for sticky navigation header */
}

.contact-main-section {
  padding: 70px 0 90px 0;
  background: linear-gradient(180deg, #FFFFFF 0%, var(--bg-light) 100%);
}

.contact-split-grid {
  display: grid;
  grid-template-columns: 0.48fr 0.52fr;
  gap: 3.5rem;
  align-items: flex-start;
}

.contact-intro {
  font-size: 1.05rem;
  color: #475569;
  margin-bottom: 2rem;
  line-height: 1.65;
}

.contact-cards-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-info-card {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.25rem 1.5rem;
  border-radius: 18px;
  text-decoration: none;
}

.contact-info-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary-orange);
  box-shadow: var(--shadow-hover);
}

.contact-card-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(249, 115, 22, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.card-label {
  display: block;
  font-size: 0.775rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #64748B;
  letter-spacing: 0.05em;
}

.card-value {
  display: block;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--dark-navy);
}

/* Contact Quote Form */
.contact-quote-card {
  background: var(--body-white);
  border: 1px solid var(--light-border);
  border-radius: 28px;
  padding: 2.5rem;
  box-shadow: var(--shadow-hover);
}

.form-header { margin-bottom: 1.75rem; }
.form-header .form-title { font-size: 1.75rem; margin-bottom: 0.25rem; }
.form-header .form-subtitle { font-size: 0.9rem; color: #64748B; }

.form-field-group {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
  margin-bottom: 1.5rem;
}

.field-wrapper { display: flex; flex-direction: column; gap: 0.35rem; }
.field-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.field-label {
  font-size: 0.825rem;
  font-weight: 700;
  color: var(--dark-navy);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid var(--light-border);
  border-radius: var(--radius-sm);
  background: var(--bg-light);
  font-size: 0.95rem;
  color: var(--dark-navy);
  transition: border-color var(--transition-fast), background-color var(--transition-fast);
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--primary-orange);
  background: var(--body-white);
}

.form-textarea { resize: vertical; min-height: 110px; }

/* Service Areas Grid */
.service-areas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.area-location-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
}

.area-location-card h3 { font-size: 1.1rem; }

.area-card-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(249, 115, 22, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* FAQ Accordion */
.faq-accordion-wrapper {
  max-width: 880px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-accordion-card {
  padding: 0;
  overflow: hidden;
}

.faq-accordion-trigger {
  width: 100%;
  padding: 1.5rem 1.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  cursor: pointer;
  background: none;
}

.faq-accordion-question {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark-navy);
}

.faq-chevron-box {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(249, 115, 22, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-orange);
  flex-shrink: 0;
  transition: transform var(--transition-normal), background var(--transition-fast);
}

.faq-chevron { transition: transform var(--transition-normal); }

.faq-accordion-card.active .faq-chevron { transform: rotate(180deg); }
.faq-accordion-card.active .faq-chevron-box { background: var(--primary-orange); color: var(--body-white); }

.faq-accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 350ms ease, opacity 350ms ease;
  opacity: 0;
}

.faq-accordion-card.active .faq-accordion-content { opacity: 1; }
.faq-accordion-inner { padding: 0 1.75rem 1.5rem 1.75rem; color: #475569; font-size: 0.975rem; line-height: 1.6; }

/* Map Container Box */
.map-container-box {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-hover);
  height: 500px;
}

.google-map-iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: contrast(1.02);
}

.map-overlay-card {
  position: absolute;
  bottom: 25px;
  left: 25px;
  background: rgba(15, 23, 42, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 1.25rem 1.75rem;
  border-radius: 18px;
  color: var(--body-white);
  display: flex;
  align-items: center;
  gap: 1.5rem;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.map-info strong { display: block; font-size: 1rem; }
.map-info span { font-size: 0.825rem; color: #94A3B8; }

/* --------------------------------------------------------------------------
   08. FOOTER & NEWSLETTER
   -------------------------------------------------------------------------- */
.footer-spacer { height: 90px; background: var(--bg-light); }

.site-footer {
  background-color: var(--dark-navy);
  color: #94A3B8;
  padding-top: 4.5rem;
  padding-bottom: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}

.footer-text { font-size: 0.9rem; line-height: 1.6; margin-bottom: 1.25rem; }

.social-links { display: flex; gap: 0.75rem; }

.social-links a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--body-white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color var(--transition-fast), transform var(--transition-fast);
}

.social-links a:hover { background: var(--primary-orange); transform: translateY(-3px); }
.footer-head { font-size: 1.05rem; font-weight: 700; color: var(--body-white); margin-bottom: 1.15rem; }

.footer-menu { display: flex; flex-direction: column; gap: 0.65rem; }
.footer-menu a { font-size: 0.875rem; color: #94A3B8; transition: color var(--transition-fast); }
.footer-menu a:hover { color: var(--primary-orange); }

.contact-info-list { display: flex; flex-direction: column; gap: 0.85rem; font-size: 0.875rem; margin-bottom: 1.5rem; }
.contact-info-list li { display: flex; align-items: flex-start; gap: 0.65rem; }
.contact-info-list a { color: #94A3B8; }
.contact-info-list a:hover { color: var(--primary-orange); }

.newsletter-title { display: block; font-size: 0.8rem; font-weight: 700; color: var(--body-white); margin-bottom: 0.4rem; }
.newsletter-form { position: relative; display: flex; }

.newsletter-input {
  width: 100%;
  height: 42px;
  padding: 0 2.5rem 0 1rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-pill);
  color: var(--body-white);
  font-size: 0.85rem;
}

.newsletter-btn {
  position: absolute;
  right: 3px;
  top: 3px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--primary-orange);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.85rem;
}

.footer-policy-links a { color: #94A3B8; }
.footer-policy-links a:hover { color: var(--primary-orange); }
.footer-policy-links .divider { margin: 0 0.5rem; color: rgba(255, 255, 255, 0.2); }

.back-to-top {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--body-white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color var(--transition-fast), transform var(--transition-fast);
}

.back-to-top:hover { background: var(--primary-orange); transform: translateY(-3px); }

/* --------------------------------------------------------------------------
   09. ANIMATION HOOKS
   -------------------------------------------------------------------------- */
[data-animate] {
  opacity: 0;
  transition: opacity 700ms ease, transform 700ms ease;
}

[data-animate="fade-right"] { transform: translateX(-30px); }
[data-animate="fade-left"] { transform: translateX(30px); }
[data-animate="fade-up"] { transform: translateY(30px); }
[data-animate="scale-in"] { transform: scale(0.92); }

[data-animate].is-visible {
  opacity: 1;
  transform: translate(0) scale(1);
}

/* Delay Helpers */
[data-delay="100"] { transition-delay: 100ms; }
[data-delay="150"] { transition-delay: 150ms; }
[data-delay="200"] { transition-delay: 200ms; }
[data-delay="250"] { transition-delay: 250ms; }
[data-delay="300"] { transition-delay: 300ms; }
[data-delay="350"] { transition-delay: 350ms; }
[data-delay="400"] { transition-delay: 400ms; }
[data-delay="450"] { transition-delay: 450ms; }

/* --------------------------------------------------------------------------
   10. RESPONSIVE BREAKPOINTS
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .hero-simple-container, .asymmetric-layout, .why-split-grid, .contact-split-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .service-areas-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}

@media (max-width: 992px) {
  .main-navigation, .header-phone { display: none; }
  .hamburger-btn { display: flex; }
  .split-mv-grid, .trust-grid-simple, .grid-4, .milestones-grid { grid-template-columns: repeat(2, 1fr); }
  .badge-orange-floating { right: 10px; }
}

@media (max-width: 576px) {
  .trust-grid-simple, .grid-4, .highlight-cards-grid, .feature-simple-grid, 
  .split-mv-grid, .milestones-grid, .service-areas-grid, .field-grid-2 {
    grid-template-columns: 1fr;
  }
  .form-row { grid-template-columns: 1fr; }
  .cta-btn-group { flex-direction: column; }
  .btn { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
  .map-overlay-card { position: relative; bottom: 0; left: 0; margin-top: 1rem; width: 100%; flex-direction: column; }
}










/* ==========================================================================
   GALLERY PAGE SPECIFIC STYLES
   ========================================================================== */
.page-gallery-direct {
  padding-top: 110px; /* Clears floating header */
}

.gallery-main-section {
  padding: 60px 0 90px 0;
  background: var(--bg-light);
}

/* Gallery Filter Navigation Pills */
.gallery-filter-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.filter-btn {
  font-size: 0.9rem;
  font-weight: 700;
  padding: 0.65rem 1.4rem;
  border-radius: var(--radius-pill);
  background: var(--body-white);
  border: 1px solid var(--light-border);
  color: var(--dark-navy);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.filter-btn:hover, .filter-btn.active {
  background: var(--primary-orange);
  color: var(--body-white);
  border-color: var(--primary-orange);
  box-shadow: var(--shadow-orange-glow);
}

/* Masonry Grid Layout */
.gallery-masonry-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 250px;
  gap: 1.5rem;
}

.gallery-item {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-subtle);
  transition: transform var(--transition-normal), opacity var(--transition-normal);
}

.gallery-item.item-tall { grid-row: span 2; }
.gallery-item.item-wide { grid-column: span 2; }

.gallery-card {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  text-decoration: none;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.1) 20%, rgba(15, 23, 42, 0.88) 100%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-category-tag {
  align-self: flex-start;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--body-white);
  background: var(--primary-orange);
  padding: 0.25rem 0.85rem;
  border-radius: var(--radius-pill);
}

.gallery-details .gallery-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--body-white);
  margin-bottom: 0.15rem;
}

.gallery-location {
  font-size: 0.825rem;
  color: rgba(255, 255, 255, 0.75);
}

.gallery-zoom-icon {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(-8px);
  transition: transform var(--transition-fast);
}

.gallery-item:hover .gallery-zoom-icon {
  transform: translateY(0);
}

/* Gallery Filter JavaScript Behavior */
.gallery-item.hide {
  display: none;
}

/* Quality Standards Section */
.gallery-standards-section {
  padding: 90px 0;
}

.standard-box h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.standard-box p {
  font-size: 0.875rem;
  color: #64748B;
  line-height: 1.5;
}

/* Responsive Gallery Queries */
@media (max-width: 1024px) {
  .gallery-masonry-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 230px;
  }
}

@media (max-width: 576px) {
  .gallery-masonry-grid {
    grid-template-columns: 1fr;
  }
  .gallery-item.item-tall, .gallery-item.item-wide {
    grid-row: span 1;
    grid-column: span 1;
  }
  .gallery-filter-nav {
    gap: 0.5rem;
  }
  .filter-btn {
    padding: 0.5rem 1rem;
    font-size: 0.825rem;
  }
}



/* ==========================================================================
   Ekam Movers - Complete Master Stylesheet
   File: assets/css/style.css
   Architecture: Unified Vanilla CSS3 System
   ========================================================================== */

/* --------------------------------------------------------------------------
   01. DESIGN TOKENS & CSS VARIABLES
   -------------------------------------------------------------------------- */
:root {
  /* Colors */
  --primary-orange: #F97316;
  --primary-orange-hover: #EA580C;
  --primary-orange-glow: rgba(249, 115, 22, 0.28);
  --sky-blue: #38BDF8;
  --sky-blue-hover: #0EA5E9;
  --dark-navy: #0F172A;
  --navy-card: #1E293B;
  --body-white: #FFFFFF;
  --bg-light: #F8FAFC;
  --light-border: #E5E7EB;
  --glass-border: rgba(255, 255, 255, 0.2);
  --success-green: #22C55E;

  /* Typography */
  --font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --heading-font: 'Outfit', 'Plus Jakarta Sans', sans-serif;

  /* UI Shapes & Border Radii */
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 30px;
  --radius-pill: 9999px;

  /* Glassmorphism & Shadows */
  --glass-bg: rgba(255, 255, 255, 0.85);
  --glass-dark-bg: rgba(15, 23, 42, 0.88);
  --glass-blur: blur(16px);
  --shadow-subtle: 0 10px 25px -5px rgba(15, 23, 42, 0.05);
  --shadow-hover: 0 20px 45px -10px rgba(15, 23, 42, 0.12);
  --shadow-orange-glow: 0 15px 30px -5px rgba(249, 115, 22, 0.35);

  /* Transitions */
  --transition-fast: 200ms ease;
  --transition-normal: 350ms cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: 600ms cubic-bezier(0.16, 1, 0.3, 1);
}

/* --------------------------------------------------------------------------
   02. RESET & GLOBAL BASE STYLES
   -------------------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-family);
  color: var(--dark-navy);
  background-color: var(--bg-light);
  line-height: 1.6;
  overflow-x: hidden;
}

img, svg {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

button, input, select, textarea {
  font: inherit;
  border: none;
  outline: none;
  background: none;
}

ul, ol {
  list-style: none;
}

/* Layout Utilities */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.text-center { text-align: center; }
.text-white { color: var(--body-white) !important; }
.text-white-80 { color: rgba(255, 255, 255, 0.8) !important; }
.text-gray { color: #94A3B8 !important; }
.text-orange { color: var(--primary-orange); }
.bg-light { background-color: var(--bg-light); }
.relative-z { position: relative; z-index: 2; }
.mx-auto { margin-left: auto; margin-right: auto; }
.align-items-center { align-items: center; }

/* Section Utilities */
.section-padding {
  padding-top: 100px;
  padding-bottom: 100px;
}

.section-head {
  max-width: 720px;
  margin: 0 auto 3.5rem auto;
}

.sub-label {
  display: inline-block;
  font-size: 0.825rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--primary-orange);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.sub-label.orange-pill {
  background: rgba(249, 115, 22, 0.12);
  padding: 0.35rem 1rem;
  border-radius: var(--radius-pill);
}

h1, h2, h3, h4 {
  font-family: var(--heading-font);
  font-weight: 800;
  line-height: 1.2;
  color: var(--dark-navy);
}

h1.main-heading {
  font-size: clamp(2.2rem, 3.8vw, 3.2rem);
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.85rem, 3vw, 2.5rem);
  letter-spacing: -0.01em;
}

.section-subtitle {
  font-size: 1.05rem;
  color: #64748B;
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   03. BUTTONS & UI CARDS
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  font-weight: 700;
  font-size: 1rem;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-pill);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal), background-color var(--transition-fast);
  white-space: nowrap;
}

.btn-sm { padding: 0.6rem 1.25rem; font-size: 0.875rem; }
.btn-lg { padding: 1.1rem 2.5rem; font-size: 1.1rem; }

.btn-primary {
  background: var(--primary-orange);
  color: var(--body-white);
  box-shadow: var(--shadow-orange-glow);
}

.btn-primary:hover {
  background: var(--primary-orange-hover);
  transform: translateY(-3px);
  box-shadow: 0 18px 35px -5px rgba(249, 115, 22, 0.45);
}

.btn-outline-dark {
  border: 1px solid var(--dark-navy);
  color: var(--dark-navy);
}

.btn-outline-dark:hover {
  background: var(--dark-navy);
  color: var(--body-white);
  transform: translateY(-3px);
}

.btn-white-pill {
  background: var(--body-white);
  color: var(--dark-navy);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.btn-white-pill:hover {
  background: #F1F5F9;
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.btn-outline-white {
  border: 1px solid rgba(255, 255, 255, 0.6);
  color: var(--body-white);
}

.btn-outline-white:hover {
  border-color: var(--body-white);
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-3px);
}

.btn-block { width: 100%; }

/* Card Presets */
.clean-card {
  background: var(--body-white);
  border: 1px solid var(--light-border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  box-shadow: var(--shadow-subtle);
  transition: transform var(--transition-normal), border-color var(--transition-normal), box-shadow var(--transition-normal);
}

.clean-card:hover {
  transform: translateY(-6px);
  border-color: var(--primary-orange);
  box-shadow: var(--shadow-hover);
}

.glass-card {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: var(--radius-md);
  padding: 2.25rem;
  box-shadow: var(--shadow-subtle);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal), border-color var(--transition-normal);
}

/* --------------------------------------------------------------------------
   04. HEADER & STICKY NAVIGATION
   -------------------------------------------------------------------------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.25rem 0;
  transition: padding var(--transition-normal), background-color var(--transition-normal), box-shadow var(--transition-normal);
}

.site-header.scrolled {
  padding: 0.85rem 0;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--light-border);
  box-shadow: 0 10px 30px -10px rgba(15, 23, 42, 0.08);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-logo-img {
  max-height: 52px;
  width: auto;
  display: block;
  border-radius: 5px;
}

.mobile-logo-img {
  max-height: 42px;
  border-radius: 5px;
}

.logo-icon-box {
  width: 42px;
  height: 42px;
  background: var(--primary-orange);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-orange-glow);
}

.brand-name {
  font-family: var(--heading-font);
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--dark-navy);
  line-height: 1;
}

.brand-highlight { color: var(--primary-orange); }

.brand-tagline {
  display: block;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  color: var(--sky-blue);
  margin-top: 0.15rem;
}

.main-navigation { display: flex; align-items: center; }
.nav-menu { display: flex; align-items: center; gap: 2.25rem; }

.nav-link {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--dark-navy);
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.5rem 0;
  transition: color var(--transition-fast);
}

.nav-link:hover, .nav-link.active { color: var(--primary-orange) !important; }

/* Header Dropdown */
.nav-item.has-dropdown { position: relative; }

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(15px);
  width: 560px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--light-border);
  border-radius: 20px;
  padding: 1.25rem;
  box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.15);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 250ms ease, transform 250ms ease, visibility 250ms ease;
  z-index: 1100;
}

.nav-item.has-dropdown:hover .dropdown-menu,
.nav-item.has-dropdown.open .dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(5px);
}

.dropdown-inner-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
}

.dropdown-card {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.75rem;
  border-radius: 12px;
  transition: background-color var(--transition-fast), transform var(--transition-fast);
}

.dropdown-card:hover {
  background: rgba(249, 115, 22, 0.08);
  transform: translateX(3px);
}

.dropdown-card-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(249, 115, 22, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.dropdown-card-title { display: block; font-size: 0.9rem; font-weight: 700; color: var(--dark-navy); }
.dropdown-card-sub { display: block; font-size: 0.75rem; color: #64748B; }

.header-actions { display: flex; align-items: center; gap: 1.25rem; }

.header-phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--dark-navy);
}

.hamburger-btn {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  cursor: pointer;
  z-index: 1200;
}

.hamburger-btn .bar {
  width: 100%;
  height: 2.5px;
  background-color: var(--dark-navy);
  border-radius: 4px;
  transition: transform 300ms ease, opacity 300ms ease;
}

/* Mobile Drawer Overlay */
.mobile-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(15, 23, 42, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 1100;
  opacity: 0;
  visibility: hidden;
  transition: opacity 300ms ease, visibility 300ms ease;
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
}

.mobile-drawer.open { opacity: 1; visibility: visible; }
.mobile-drawer-inner { display: flex; flex-direction: column; height: 100%; justify-content: space-between; }
.mobile-nav-list { display: flex; flex-direction: column; gap: 1.25rem; margin-top: 2rem; }
.mobile-link { font-size: 1.4rem; font-weight: 800; color: var(--body-white); }

.mobile-dropdown-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--body-white);
}

.mobile-submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 300ms ease;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding-left: 1rem;
}

.mobile-dropdown-group.active .mobile-submenu { max-height: 350px; margin-top: 0.75rem; }
.mobile-sublink { font-size: 1rem; color: rgba(255, 255, 255, 0.8); }
.mobile-drawer-bottom { display: flex; flex-direction: column; gap: 1rem; }

.mobile-phone-btn {
  text-align: center;
  padding: 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-pill);
  color: var(--body-white);
  font-weight: 700;
}

/* --------------------------------------------------------------------------
   05. HOMEPAGE STYLES
   -------------------------------------------------------------------------- */
.hero-section-simple {
  padding: 150px 0 80px 0;
  background: linear-gradient(180deg, #F1F5F9 0%, var(--bg-light) 100%);
}

.hero-simple-container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3.5rem;
  align-items: center;
}

.pill-tag {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary-orange);
  background: rgba(249, 115, 22, 0.1);
  padding: 0.35rem 1rem;
  border-radius: var(--radius-pill);
  margin-bottom: 1rem;
}

.hero-simple-title { font-size: clamp(2.5rem, 4vw, 3.8rem); margin-bottom: 1.25rem; }
.hero-simple-desc { font-size: 1.1rem; color: #475569; margin-bottom: 2rem; }
.hero-btn-group { display: flex; gap: 1rem; }

.form-card .form-title { font-size: 1.5rem; margin-bottom: 0.25rem; }
.form-card .form-subtitle { font-size: 0.875rem; color: #64748B; margin-bottom: 1.5rem; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
  margin-bottom: 0.85rem;
}

.simple-input, .simple-select {
  width: 100%;
  height: 48px;
  padding: 0 1rem;
  border: 1px solid var(--light-border);
  border-radius: var(--radius-sm);
  background: var(--bg-light);
  font-size: 0.9rem;
  color: var(--dark-navy);
}

.simple-input:focus, .simple-select:focus {
  outline: none;
  border-color: var(--primary-orange);
  background: var(--body-white);
}

.trust-strip-simple {
  padding: 2.25rem 0;
  background: var(--body-white);
  border-top: 1px solid var(--light-border);
  border-bottom: 1px solid var(--light-border);
}

.trust-grid-simple {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.trust-box { display: flex; align-items: center; gap: 0.75rem; font-weight: 700; font-size: 0.95rem; }

.section-simple { padding: 90px 0; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

.service-box .icon-circle {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(249, 115, 22, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.service-box h3 { font-size: 1.2rem; margin-bottom: 0.5rem; }
.service-box p { font-size: 0.875rem; color: #64748B; }

.cta-simple-section { padding: 60px 0 100px 0; }
.cta-simple-box {
  background: var(--dark-navy);
  color: var(--body-white);
  padding: 4rem 2rem;
  border-radius: var(--radius-lg);
}

.cta-simple-box h2 { font-size: 2.25rem; margin-bottom: 0.75rem; color: var(--body-white); }
.cta-simple-box p { color: #94A3B8; margin-bottom: 2rem; }

/* --------------------------------------------------------------------------
   06. ABOUT PAGE STYLES
   -------------------------------------------------------------------------- */
.page-about-direct { padding-top: 110px; }

.about-section-main {
  padding: 70px 0 90px 0;
  background: linear-gradient(180deg, #FFFFFF 0%, var(--bg-light) 100%);
}

.asymmetric-layout {
  display: grid;
  grid-template-columns: 0.45fr 0.55fr;
  gap: 4rem;
  align-items: center;
}

.image-wrapper-parallax { position: relative; }

.about-main-img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 30px;
  box-shadow: var(--shadow-hover);
}

.badge-orange-floating {
  position: absolute;
  bottom: 25px;
  right: -20px;
  background: var(--primary-orange);
  color: var(--body-white);
  padding: 1rem 1.5rem;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 0.85rem;
  box-shadow: 0 15px 30px rgba(249, 115, 22, 0.4);
}

.badge-num { font-size: 2rem; font-weight: 800; line-height: 1; }
.badge-txt strong { display: block; font-size: 0.95rem; }
.badge-txt span { font-size: 0.75rem; opacity: 0.9; }

.story-text p { color: #475569; margin-bottom: 1.25rem; font-size: 1.05rem; }

.highlight-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.spec-card {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1.15rem;
}

.spec-card h4 { font-size: 0.95rem; }
.spec-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(249, 115, 22, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.mission-vision-section { padding: 90px 0; background: #F1F5F9; }

.split-mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.mv-box .mv-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(249, 115, 22, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.mv-box h2 { font-size: 1.75rem; margin-bottom: 1rem; }
.mv-box p { color: #475569; font-size: 1rem; }

.why-choose-section { padding: 100px 0; }

.why-split-grid {
  display: grid;
  grid-template-columns: 0.55fr 0.45fr;
  gap: 4rem;
  align-items: center;
}

.feature-simple-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}

.feature-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.25rem;
}

.feature-item .feature-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(249, 115, 22, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-item h4 { font-size: 1rem; margin-bottom: 0.25rem; }
.feature-item p { font-size: 0.825rem; color: #64748B; }

.why-right-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 30px;
  box-shadow: var(--shadow-hover);
}

.milestones-section {
  padding: 100px 0;
  background: var(--dark-navy);
  color: var(--body-white);
}

.milestones-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.milestone-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
}

.milestone-card .stat-number, .milestone-card .stat-symbol, .milestone-card .stat-number-text {
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary-orange);
}

.milestone-card h3 { font-size: 1.15rem; color: var(--body-white); margin: 0.5rem 0 0.25rem 0; }
.milestone-card p { font-size: 0.85rem; color: #94A3B8; }

.cta-banner-section { padding: 90px 0; }

.cta-gradient-box {
  background: linear-gradient(135deg, var(--primary-orange) 0%, var(--sky-blue) 100%);
  color: var(--body-white);
  padding: 4.5rem 2rem;
  border-radius: 36px;
  box-shadow: 0 20px 40px rgba(249, 115, 22, 0.3);
}

.cta-gradient-box h2 { font-size: clamp(2rem, 3.5vw, 2.75rem); margin-bottom: 0.85rem; color: var(--body-white); }
.cta-gradient-box p { font-size: 1.1rem; opacity: 0.9; margin-bottom: 2.25rem; }
.cta-btn-group { display: flex; justify-content: center; gap: 1.25rem; }

/* --------------------------------------------------------------------------
   07. SERVICES PAGE STYLES (DETAILED)
   -------------------------------------------------------------------------- */
.page-services-direct {
  padding-top: 110px; /* Offset for sticky navigation header */
}

.services-intro-section {
  padding: 60px 0 40px 0;
  background: var(--bg-light);
}

.moving-services-section {
  padding: 60px 0 100px 0;
}

.services-detailed-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.25rem;
}

.service-detail-card {
  border-radius: 30px;
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-subtle);
  border: 1px solid var(--light-border);
  transition: transform var(--transition-normal), border-color var(--transition-normal), box-shadow var(--transition-normal);
}

.service-detail-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary-orange);
  box-shadow: var(--shadow-hover);
}

.card-media-box {
  position: relative;
  width: 100%;
  height: 260px;
  overflow: hidden;
}

.card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.service-detail-card:hover .card-img {
  transform: scale(1.08);
}

.card-icon-floating {
  position: absolute;
  bottom: 15px;
  right: 20px;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: var(--body-white);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-body-box {
  padding: 2.25rem 2rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.card-service-title {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--dark-navy);
  margin-bottom: 0.75rem;
}

.card-service-desc {
  font-size: 0.975rem;
  color: #475569;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.service-feature-bullets {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--light-border);
}

.service-feature-bullets li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.925rem;
  font-weight: 600;
  color: var(--dark-navy);
}

.service-card-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: auto; /* Pushes buttons to bottom */
}

/* Why Choose Our Services */
.why-services-section {
  padding: 100px 0;
  background: var(--body-white);
}

.why-intro-p {
  font-size: 1.05rem;
  color: #475569;
  margin-top: 0.5rem;
}

.why-right-media .why-image-wrapper {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: var(--shadow-hover);
}

/* 5-Step Process Timeline */
.moving-process-section {
  position: relative;
  background-color: var(--dark-navy);
  padding: 100px 0;
}

.moving-process-section.dark-theme { color: var(--body-white); }

.process-timeline-wrapper {
  position: relative;
  margin-top: 3.5rem;
}

.process-line-track {
  position: absolute;
  top: 35px;
  left: 5%;
  width: 90%;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-orange), var(--sky-blue));
  z-index: 1;
}

.process-steps-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
  position: relative;
  z-index: 2;
}

.process-glass-card {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 2rem 1.25rem;
  border-radius: var(--radius-md);
  text-align: center;
  transition: transform var(--transition-normal), border-color var(--transition-normal);
}

.process-glass-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary-orange);
  background: rgba(255, 255, 255, 0.1);
}

.step-num-pill {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-orange), var(--primary-orange-hover));
  color: var(--body-white);
  font-weight: 800;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem auto;
  box-shadow: var(--shadow-orange-glow);
}

.step-heading {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--body-white);
  margin-bottom: 0.65rem;
}

.step-text {
  font-size: 0.875rem;
  color: #94A3B8;
  line-height: 1.5;
}

.services-cta-section {
  padding: 90px 0;
}

/* --------------------------------------------------------------------------
   08. GALLERY PAGE STYLES
   -------------------------------------------------------------------------- */
.page-gallery-direct { padding-top: 110px; }
.gallery-main-section { padding: 60px 0 90px 0; background: var(--bg-light); }

.gallery-filter-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.filter-btn {
  font-size: 0.9rem;
  font-weight: 700;
  padding: 0.65rem 1.4rem;
  border-radius: var(--radius-pill);
  background: var(--body-white);
  border: 1px solid var(--light-border);
  color: var(--dark-navy);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.filter-btn:hover, .filter-btn.active {
  background: var(--primary-orange);
  color: var(--body-white);
  border-color: var(--primary-orange);
  box-shadow: var(--shadow-orange-glow);
}

.gallery-masonry-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 250px;
  gap: 1.5rem;
}

.gallery-item {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-subtle);
  transition: transform var(--transition-normal);
}

.gallery-item.item-tall { grid-row: span 2; }
.gallery-item.item-wide { grid-column: span 2; }

.gallery-card { display: block; width: 100%; height: 100%; position: relative; }

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.1) 20%, rgba(15, 23, 42, 0.88) 100%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.gallery-item:hover img { transform: scale(1.08); }
.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-category-tag {
  align-self: flex-start;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--body-white);
  background: var(--primary-orange);
  padding: 0.25rem 0.85rem;
  border-radius: var(--radius-pill);
}

.gallery-details .gallery-title { font-size: 1.15rem; font-weight: 800; color: var(--body-white); margin-bottom: 0.15rem; }
.gallery-location { font-size: 0.825rem; color: rgba(255, 255, 255, 0.75); }

.gallery-zoom-icon {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-item.hide { display: none; }

/* --------------------------------------------------------------------------
   09. CONTACT PAGE STYLES
   -------------------------------------------------------------------------- */
.page-contact-direct { padding-top: 110px; }

.contact-main-section {
  padding: 70px 0 90px 0;
  background: linear-gradient(180deg, #FFFFFF 0%, var(--bg-light) 100%);
}

.contact-split-grid {
  display: grid;
  grid-template-columns: 0.48fr 0.52fr;
  gap: 3.5rem;
  align-items: flex-start;
}

.contact-intro { font-size: 1.05rem; color: #475569; margin-bottom: 2rem; line-height: 1.65; }

.contact-cards-list { display: flex; flex-direction: column; gap: 1rem; }

.contact-info-card {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.25rem 1.5rem;
  border-radius: 18px;
}

.contact-card-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(249, 115, 22, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.card-label { font-size: 0.775rem; font-weight: 700; text-transform: uppercase; color: #64748B; letter-spacing: 0.05em; }
.card-value { font-size: 1.05rem; font-weight: 800; color: var(--dark-navy); }

.contact-quote-card {
  background: var(--body-white);
  border: 1px solid var(--light-border);
  border-radius: 28px;
  padding: 2.5rem;
  box-shadow: var(--shadow-hover);
}

.form-header { margin-bottom: 1.75rem; }
.form-header .form-title { font-size: 1.75rem; margin-bottom: 0.25rem; }
.form-header .form-subtitle { font-size: 0.9rem; color: #64748B; }

.form-field-group { display: flex; flex-direction: column; gap: 1.15rem; margin-bottom: 1.5rem; }
.field-wrapper { display: flex; flex-direction: column; gap: 0.35rem; }
.field-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.field-label { font-size: 0.825rem; font-weight: 700; color: var(--dark-navy); text-transform: uppercase; letter-spacing: 0.03em; }

.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid var(--light-border);
  border-radius: var(--radius-sm);
  background: var(--bg-light);
  font-size: 0.95rem;
  color: var(--dark-navy);
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--primary-orange);
  background: var(--body-white);
}

.form-textarea { resize: vertical; min-height: 110px; }

/* Service Areas Grid */
.service-areas-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
.area-location-card { display: flex; align-items: center; gap: 1rem; padding: 1.25rem 1.5rem; }
.area-location-card h3 { font-size: 1.1rem; }

.area-card-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(249, 115, 22, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* FAQ Accordion */
.faq-accordion-wrapper { max-width: 880px; margin: 0 auto; display: flex; flex-direction: column; gap: 1rem; }
.faq-accordion-card { padding: 0; overflow: hidden; }

.faq-accordion-trigger {
  width: 100%;
  padding: 1.5rem 1.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  cursor: pointer;
}

.faq-accordion-question { font-size: 1.15rem; font-weight: 700; color: var(--dark-navy); }

.faq-chevron-box {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(249, 115, 22, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-orange);
  flex-shrink: 0;
}

.faq-chevron { transition: transform var(--transition-normal); }
.faq-accordion-card.active .faq-chevron { transform: rotate(180deg); }
.faq-accordion-card.active .faq-chevron-box { background: var(--primary-orange); color: var(--body-white); }

.faq-accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 350ms ease, opacity 350ms ease;
  opacity: 0;
}

.faq-accordion-card.active .faq-accordion-content { opacity: 1; }
.faq-accordion-inner { padding: 0 1.75rem 1.5rem 1.75rem; color: #475569; font-size: 0.975rem; line-height: 1.6; }

/* Map Container Box */
.map-container-box {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-hover);
  height: 500px;
}

.google-map-iframe { width: 100%; height: 100%; border: 0; }

.map-overlay-card {
  position: absolute;
  bottom: 25px;
  left: 25px;
  background: rgba(15, 23, 42, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 1.25rem 1.75rem;
  border-radius: 18px;
  color: var(--body-white);
  display: flex;
  align-items: center;
  gap: 1.5rem;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.map-info strong { display: block; font-size: 1rem; }
.map-info span { font-size: 0.825rem; color: #94A3B8; }

/* --------------------------------------------------------------------------
   10. FOOTER & NEWSLETTER
   -------------------------------------------------------------------------- */
.footer-spacer { height: 90px; background: var(--bg-light); }

.site-footer {
  background-color: var(--dark-navy);
  color: #94A3B8;
  padding-top: 4.5rem;
  padding-bottom: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}

.footer-text { font-size: 0.9rem; line-height: 1.6; margin-bottom: 1.25rem; }
.social-links { display: flex; gap: 0.75rem; }

.social-links a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--body-white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color var(--transition-fast), transform var(--transition-fast);
}

.social-links a:hover { background: var(--primary-orange); transform: translateY(-3px); }
.footer-head { font-size: 1.05rem; font-weight: 700; color: var(--body-white); margin-bottom: 1.15rem; }

.footer-menu { display: flex; flex-direction: column; gap: 0.65rem; }
.footer-menu a { font-size: 0.875rem; color: #94A3B8; }
.footer-menu a:hover { color: var(--primary-orange); }

.contact-info-list { display: flex; flex-direction: column; gap: 0.85rem; font-size: 0.875rem; margin-bottom: 1.5rem; }
.contact-info-list li { display: flex; align-items: flex-start; gap: 0.65rem; }
.contact-info-list a { color: #94A3B8; }
.contact-info-list a:hover { color: var(--primary-orange); }

.newsletter-title { display: block; font-size: 0.8rem; font-weight: 700; color: var(--body-white); margin-bottom: 0.4rem; }
.newsletter-form { position: relative; display: flex; }

.newsletter-input {
  width: 100%;
  height: 42px;
  padding: 0 2.5rem 0 1rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-pill);
  color: var(--body-white);
  font-size: 0.85rem;
}

.newsletter-btn {
  position: absolute;
  right: 3px;
  top: 3px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--primary-orange);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.85rem;
}

.footer-policy-links a { color: #94A3B8; }
.footer-policy-links a:hover { color: var(--primary-orange); }
.footer-policy-links .divider { margin: 0 0.5rem; color: rgba(255, 255, 255, 0.2); }

.back-to-top {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--body-white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color var(--transition-fast), transform var(--transition-fast);
}

.back-to-top:hover { background: var(--primary-orange); transform: translateY(-3px); }

/* --------------------------------------------------------------------------
   11. ANIMATIONS & INTERACTION HOOKS
   -------------------------------------------------------------------------- */
[data-animate] {
  opacity: 0;
  transition: opacity 700ms ease, transform 700ms ease;
}

[data-animate="fade-right"] { transform: translateX(-30px); }
[data-animate="fade-left"] { transform: translateX(30px); }
[data-animate="fade-up"] { transform: translateY(30px); }
[data-animate="scale-in"] { transform: scale(0.92); }

[data-animate].is-visible {
  opacity: 1;
  transform: translate(0) scale(1);
}

/* Delay Classes */
[data-delay="100"] { transition-delay: 100ms; }
[data-delay="150"] { transition-delay: 150ms; }
[data-delay="200"] { transition-delay: 200ms; }
[data-delay="250"] { transition-delay: 250ms; }
[data-delay="300"] { transition-delay: 300ms; }
[data-delay="350"] { transition-delay: 350ms; }
[data-delay="400"] { transition-delay: 400ms; }
[data-delay="450"] { transition-delay: 450ms; }
[data-delay="500"] { transition-delay: 500ms; }

/* --------------------------------------------------------------------------
   12. RESPONSIVE MEDIA QUERIES
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .hero-simple-container, .asymmetric-layout, .why-split-grid, 
  .contact-split-grid, .services-detailed-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .service-areas-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .gallery-masonry-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 230px; }
  .process-steps-grid { grid-template-columns: repeat(2, 1fr); }
  .process-line-track { display: none; }
}

@media (max-width: 992px) {
  .main-navigation, .header-phone { display: none; }
  .hamburger-btn { display: flex; }
  .split-mv-grid, .trust-grid-simple, .grid-4, .milestones-grid { grid-template-columns: repeat(2, 1fr); }
  .badge-orange-floating { right: 10px; }
}

@media (max-width: 576px) {
  .trust-grid-simple, .grid-4, .highlight-cards-grid, .feature-simple-grid, 
  .split-mv-grid, .milestones-grid, .service-areas-grid, .field-grid-2, 
  .process-steps-grid, .gallery-masonry-grid {
    grid-template-columns: 1fr;
  }
  .gallery-item.item-tall, .gallery-item.item-wide { grid-row: span 1; grid-column: span 1; }
  .form-row { grid-template-columns: 1fr; }
  .cta-btn-group, .service-card-actions { flex-direction: column; }
  .btn { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
  .map-overlay-card { position: relative; bottom: 0; left: 0; margin-top: 1rem; width: 100%; flex-direction: column; }
}



/* ==========================================================================
   FLOATING WHATSAPP BUTTON (BOTTOM RIGHT)
   ========================================================================== */
.whatsapp-float-btn {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 9999;
  display: flex;
  align-items: center;
  text-decoration: none;
}

.whatsapp-icon-box {
  position: relative;
  width: 58px;
  height: 58px;
  background-color: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.45);
  transition: transform 300ms ease, box-shadow 300ms ease;
  z-index: 2;
}

.whatsapp-float-btn:hover .whatsapp-icon-box {
  transform: scale(1.1);
  box-shadow: 0 15px 35px rgba(37, 211, 102, 0.6);
}

/* Pulsing Glow Animation */
.whatsapp-pulse {
  position: absolute;
  width: 58px;
  height: 58px;
  background-color: #25D366;
  border-radius: 50%;
  opacity: 0.75;
  animation: whatsapp-glow 2s infinite ease-out;
  z-index: 1;
}

@keyframes whatsapp-glow {
  0% {
    transform: scale(1);
    opacity: 0.75;
  }
  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}

/* Hover Tooltip */
.whatsapp-tooltip {
  position: absolute;
  right: 70px;
  background: var(--dark-navy);
  color: var(--body-white);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0.45rem 0.9rem;
  border-radius: var(--radius-pill);
  white-space: nowrap;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  opacity: 0;
  visibility: hidden;
  transform: translateX(10px);
  transition: opacity 250ms ease, transform 250ms ease, visibility 250ms ease;
  pointer-events: none;
}

.whatsapp-float-btn:hover .whatsapp-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

/* Mobile Responsiveness */
@media (max-width: 576px) {
  .whatsapp-float-btn {
    bottom: 20px;
    right: 20px;
  }
  .whatsapp-icon-box, .whatsapp-pulse {
    width: 52px;
    height: 52px;
  }
  .whatsapp-tooltip {
    display: none; /* Hide hover text on mobile touch screens */
  }
}


/* ==========================================================================
   UPDATED FLOATING WHATSAPP BUTTON (MOVED SLIGHTLY UPWARD)
   ========================================================================== */
.whatsapp-float-btn {
  position: fixed;
  bottom: 60px; /* Increased from 25px to move slightly upward */
  right: 25px;
  z-index: 9999;
  display: flex;
  align-items: center;
  text-decoration: none;
}

/* Mobile Responsiveness Adjustment */
@media (max-width: 576px) {
  .whatsapp-float-btn {
    bottom: 35px; /* Increased from 20px for mobile screens */
    right: 20px;
  }
}



/* ==========================================================================
   CONTACT FORM ALIGNMENT & DARK TEXT FIX (CSS ONLY)
   ========================================================================== */

/* 1. Make Form Title & Subtitle Black */
.hero-quote-card .card-title {
  color: #0F172A !important;
  font-weight: 800;
}

.hero-quote-card .card-subtitle {
  color: #475569 !important;
  font-weight: 600;
}

/* 2. Make All Field Labels Crisp Dark Black */
.hero-quote-card .form-label,
.contact-quote-card .field-label {
  color: #0F172A !important;
  font-weight: 800;
  letter-spacing: 0.04em;
}

/* 3. Fix Icon Position Centering */
.hero-quote-card .input-icon-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}

.hero-quote-card .field-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  pointer-events: none;
}

/* 4. Fix Text Alignment & Indentation (Pushes text to the right of icons) */
.hero-quote-card .form-input,
.hero-quote-card .form-select {
  width: 100%;
  height: 52px;
  padding-left: 3.25rem !important; /* Prevents text from overlapping the orange icon */
  padding-right: 1.25rem;
  color: #0F172A !important; /* Typed text & selected value in dark black */
  background-color: #FFFFFF !important; /* Solid clean white background */
  border: 1px solid #CBD5E1 !important;
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 600;
}

/* 5. Make Placeholders Visible (Dark Slate Gray) */
.hero-quote-card .form-input::placeholder {
  color: #64748B !important;
  opacity: 1;
}

/* Date Field Text Color Fix */
.hero-quote-card input[type="date"].form-input {
  color: #0F172A !important;
}

/* Dropdown Options Text Color Fix */
.hero-quote-card .form-select option {
  color: #0F172A !important;
  background-color: #FFFFFF !important;
}

/* 6. Make Privacy Text at Bottom Readable */
.hero-quote-card .form-privacy-text {
  color: #475569 !important;
  font-weight: 600;
}

.hero-quote-card .form-privacy-text svg {
  stroke: #475569 !important;
}



/* ==========================================================================
   TIMELINE STEP CARDS: REMOVE HORIZONTAL LINE & MAKE TEXT BLACK
   ========================================================================== */

/* 1. Hide the Horizontal Background Line */
.timeline-line-track,
.timeline-line-progress,
.process-line-track,
.timeline-line {
  display: none !important;
}

/* 2. Set White Card Background for High Contrast */
.step-card,
.process-glass-card {
  background: #FFFFFF !important; /* Pure white background */
  border: 1px solid #E5E7EB !important;
}

/* 3. Make Step Titles Crisp Black */
.step-title,
.step-heading,
.step-card h3,
.process-glass-card h3 {
  color: #0F172A !important; /* Black / Dark Navy */
  font-weight: 800 !important;
}

/* 4. Make Step Description Text Dark Black / Slate */
.step-desc,
.step-text,
.step-card p,
.process-glass-card p {
  color: #334155 !important; /* Dark readable text */
  font-weight: 500 !important;
}





/* ==========================================================================
   GLOBAL HEADER TEXT (DEFAULT: BLACK / DARK NAVY ON ALL INNER PAGES)
   ========================================================================== */

/* All pages default to dark text */
.site-header .nav-link,
.site-header .brand-name,
.site-header .header-phone,
.site-header .header-phone-link {
  color: #0F172A !important; /* Black/Dark Navy on inner pages */
}

.site-header .nav-link.active {
  color: #F97316 !important; /* Active link is Orange */
}

.site-header .nav-link:hover {
  color: #F97316 !important; /* Hover turns Orange */
}

.site-header .chevron-icon {
  stroke: #0F172A !important;
}

.site-header .hamburger-btn .bar {
  background-color: #0F172A !important;
}


/* ==========================================================================
   HOMEPAGE ONLY: WHITE TEXT AT THE TOP (WHEN OVER DARK HERO IMAGE)
   ========================================================================== */

/* When on Homepage AND header is at top (not scrolled) */
body:has(.hero-section) .site-header:not(.scrolled) .nav-link,
body:has(.hero-section-simple) .site-header:not(.scrolled) .nav-link,
body:has(.hero-section) .site-header:not(.scrolled) .brand-name,
body:has(.hero-section-simple) .site-header:not(.scrolled) .brand-name,
body:has(.hero-section) .site-header:not(.scrolled) .header-phone,
body:has(.hero-section-simple) .site-header:not(.scrolled) .header-phone {
  color: #FFFFFF !important; /* White text over dark hero background */
}

body:has(.hero-section) .site-header:not(.scrolled) .nav-link.active,
body:has(.hero-section-simple) .site-header:not(.scrolled) .nav-link.active {
  color: #F97316 !important; /* Active link Orange */
}

body:has(.hero-section) .site-header:not(.scrolled) .chevron-icon,
body:has(.hero-section-simple) .site-header:not(.scrolled) .chevron-icon {
  stroke: #FFFFFF !important; /* White chevron */
}

body:has(.hero-section) .site-header:not(.scrolled) .hamburger-btn .bar,
body:has(.hero-section-simple) .site-header:not(.scrolled) .hamburger-btn .bar {
  background-color: #FFFFFF !important; /* White mobile menu lines */
}





.gallery-masonry-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 240px;
  gap: 1.5rem;
  grid-auto-flow: dense; /* <--- ADD THIS LINE */
}




/* ==========================================================================
   TRUST STRIP CARDS: CENTER ALIGN ICONS & TEXT
   ========================================================================== */

/* 1. Center Align Everything Inside the Card */
.trust-item-card,
.trust-card,
.trust-box {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important; /* Centers icon and content horizontally */
  text-align: center !important;  /* Centers title and description text */
}

/* 2. Center the Icon Box */
.trust-icon-box {
  margin-left: auto !important;
  margin-right: auto !important;
  margin-bottom: 1rem !important;
}

/* 3. Center Text Content Blocks */
.trust-content,
.trust-title,
.trust-desc {
  text-align: center !important;
  width: 100% !important;
}



/* Center Icon Only */
.standard-box .icon-circle,
.gallery-standards-section .icon-circle {
  margin-left: auto !important;
  margin-right: auto !important;
  margin-bottom: 1.25rem !important;
}


/* ==========================================================================
   SEMI-TRANSPARENT GLASSMORPHISM CONTACT FORM CARD
   ========================================================================== */

.hero-quote-card,
.contact-quote-card,
.form-card {
  background: rgba(194, 194, 194, 0.78) !important; /* 0% white transparency */
  backdrop-filter: blur(16px) !important;            /* Blurs the background image behind the card */
  -webkit-backdrop-filter: blur(16px) !important;    /* Safari browser support */
  border: 1px solid rgba(255, 255, 255, 0.6) !important;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.2) !important;
}

/* Slightly Translucent Input Fields for Extra Depth */
.hero-quote-card .form-input,
.hero-quote-card .form-select,
.contact-quote-card .form-input,
.contact-quote-card .form-select {
  background-color: rgba(255, 255, 255, 0.92) !important;
  border: 1px solid #CBD5E1 !important;
}



/* ==========================================================================
   GOOGLE REVIEW TAG STYLES INSIDE CARDS
   ========================================================================== */
.card-top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

.google-badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--dark-navy);
  background: var(--bg-light);
  border: 1px solid var(--light-border);
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-pill);
}

.google-badge-tag span {
  opacity: 0.85;
}