/* ==========================================================================
   Steelnbricks Design System & Core Stylesheet
   Color Palette:
   - Primary Yellow: #ffdb00
   - Primary Yellow Hover: #ffdb00
   - Dark Navy (Logo Text/Accents): #031E36
   - Deep Navy Dark: #011224
   - Light Background: #FFFFFF (Mostly white as requested)
   - Soft Off-White / Muted BG: #F8FAFC
   - Text Primary: #0F172A
   - Text Muted: #475569
   - Border Color: #E2E8F0
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Outfit:wght@500;600;700;800&display=swap');

:root {
  --color-primary-yellow: #ffdb00;
  --color-yellow-hover: #ffdb00;
  --color-yellow-light: #FFFBE6;
  --color-dark-navy: #031E36;
  --color-navy-darker: #011224;
  --color-navy-light: #073157;

  --color-bg-main: #FFFFFF;
  --color-bg-subtle: #F8FAFC;
  --color-bg-card: #FFFFFF;

  --color-text-main: #0F172A;
  --color-text-muted: #475569;
  --color-text-light: #64748B;

  --color-border: #E2E8F0;
  --color-border-hover: #CBD5E1;

  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --shadow-sm: 0 1px 3px rgba(3, 30, 54, 0.05);
  --shadow-md: 0 4px 14px rgba(3, 30, 54, 0.08);
  --shadow-lg: 0 10px 30px rgba(3, 30, 54, 0.12);
  --shadow-yellow: 0 8px 25px rgba(255, 219, 0, 0.35);

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-full: 9999px;

  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 85px;
  font-size: 16px;
}

[id] {
  scroll-margin-top: 85px;
}

#home,
.hero-section {
  scroll-margin-top: 0;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-bg-main);
  color: var(--color-text-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: clip;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Typography Utilities */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--color-dark-navy);
  font-weight: 700;
  line-height: 1.2;
}

/* Main Container */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(20px, 3vw, 40px);
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */

#header-placeholder {
  display: contents;
}

.header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #FFFFFF;
  z-index: 1000;
  transition: all var(--transition-normal);
  border-bottom: 1px solid #F1F5F9;
}

.header.scrolled {
  background-color: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(3, 30, 54, 0.08);
  border-bottom-color: transparent;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo-link {
  display: flex;
  align-items: center;
  height: 48px;
  max-width: 220px;
  flex-shrink: 0;
}

.logo-img {
  height: 44px;
  max-height: 44px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  display: block;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: clamp(14px, 1.8vw, 32px);
  list-style: none;
}

.nav-link {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--color-dark-navy);
  padding: 8px 0;
  position: relative;
  transition: color var(--transition-fast);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background-color: var(--color-primary-yellow);
  border-radius: 2px;
  transition: width var(--transition-fast);
}

.nav-link:hover,
.nav-link.active {
  color: var(--color-dark-navy);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header-desktop-cta {
  display: inline-flex;
}

.nav-menu-cta {
  display: none;
}

.mobile-toggle {
  display: none;
  width: 38px;
  height: 38px;
  background: transparent;
  border: none;
  cursor: pointer;
  position: relative;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  gap: 5px;
  padding: 4px;
  transition: all 0.25s ease;
  z-index: 1001;
}

.hamburger-bar {
  display: block;
  height: 2.8px;
  background-color: #031E36;
  border-radius: 4px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  transform-origin: center;
}

/* Staggered Right-Aligned Hamburger Icon (Exact Match to Screenshot) */
.bar-1 {
  width: 14px;
  align-self: flex-end;
}

.bar-2 {
  width: 22px;
  align-self: flex-end;
}

.bar-3 {
  width: 22px;
  align-self: flex-end;
}

.mobile-toggle:hover .hamburger-bar {
  background-color: #ffdb00;
}

/* Transform smoothly to a bright, unmistakable "X" */
.mobile-toggle.active,
.mobile-toggle[aria-expanded="true"] {
  background-color: transparent !important;
  border-color: transparent !important;
}

.mobile-toggle.active .bar-1,
.mobile-toggle[aria-expanded="true"] .bar-1 {
  width: 22px;
  transform: translateY(7.8px) rotate(45deg);
  background-color: #031E36 !important;
}

.mobile-toggle.active .bar-2,
.mobile-toggle[aria-expanded="true"] .bar-2 {
  opacity: 0 !important;
  transform: scaleX(0) !important;
}

.mobile-toggle.active .bar-3,
.mobile-toggle[aria-expanded="true"] .bar-3 {
  width: 22px;
  transform: translateY(-7.8px) rotate(-45deg);
  background-color: #031E36 !important;
}

/* ==========================================================================
   Button System
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 13px 26px;
  border-radius: var(--radius-md);
  cursor: pointer;
  border: none;
  transition: all var(--transition-normal);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--color-primary-yellow);
  color: var(--color-dark-navy);
  box-shadow: 0 4px 12px rgba(255, 219, 0, 0.3);
}

.btn-primary:hover {
  background-color: var(--color-yellow-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 219, 0, 0.45);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-secondary {
  background-color: var(--color-dark-navy);
  color: #FFFFFF;
  box-shadow: 0 4px 12px rgba(3, 30, 54, 0.15);
}

.btn-secondary:hover {
  background-color: var(--color-navy-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(3, 30, 54, 0.25);
  color: #FFFFFF;
}

.btn-outline {
  background-color: transparent;
  border: 2px solid var(--color-dark-navy);
  color: var(--color-dark-navy);
}

.btn-outline:hover {
  background-color: var(--color-dark-navy);
  color: #FFFFFF;
  transform: translateY(-2px);
}

.btn-arrow {
  transition: transform var(--transition-fast);
}

.btn:hover .btn-arrow {
  transform: translateX(4px);
}

/* ==========================================================================
   Hero Section with Crystal-Clear Background Image (hero.png)
   ========================================================================== */

.hero-section {
  position: relative;
  width: 100%;
  min-height: 640px;
  background-color: #F8FAFC;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 56px 0;
}

.hero-bg-wrapper {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-bg-wrapper picture {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right top;
  display: block;
}

/* Zero darkening overlay - The image is 100% natural, crisp, and crystal clear */
.hero-bg-overlay {
  display: none;
}

.hero-container {
  position: relative;
  z-index: 3;
  width: 100%;
}

.hero-content {
  max-width: 600px;
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
  display: flex;
  flex-direction: column;
}

.hero-top-yellow-line {
  width: 54px;
  height: 4px;
  background: linear-gradient(90deg, #ffdb00 0%, #eed000 100%);
  border-radius: 2px;
  margin-bottom: 14px;
  box-shadow: 0 2px 8px rgba(255, 219, 0, 0.4);
}

.hero-stats-ticker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 750;
  color: #031E36;
  margin-bottom: 14px;
  width: fit-content;
}

.hero-stats-ticker strong {
  font-weight: 850;
  color: #031E36;
}

.stat-diamond {
  color: #D97706;
  font-size: 0.72rem;
  line-height: 1;
  display: inline-block;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 3.3rem;
  font-weight: 850;
  color: #031E36;
  line-height: 1.12;
  letter-spacing: -0.025em;
  margin-bottom: 16px;
}

.hero-title .text-gold,
.hero-title .text-yellow {
  color: #FFFFFF;
  display: inline-block;
  font-weight: 850;
  text-shadow: 0 2px 4px rgba(3, 30, 54, 0.8), 0 4px 14px rgba(3, 30, 54, 0.5), 0 1px 2px rgba(0, 0, 0, 0.7);
}

.hero-bottom-yellow-dash {
  width: 36px;
  height: 3px;
  background: linear-gradient(90deg, #ffdb00 0%, #eed000 100%);
  border-radius: 2px;
  margin-bottom: 18px;
}

.hero-desc {
  font-size: 0.98rem;
  font-weight: 500;
  color: #0F172A;
  line-height: 1.65;
  margin-bottom: 26px;
}

/* Action CTAs Pair */
.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.btn-hero-primary {
  background: linear-gradient(135deg, #ffdb00 0%, #eed000 100%);
  color: #031E36;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 800;
  padding: 12px 24px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 16px rgba(255, 219, 0, 0.35);
}

.btn-hero-primary:hover {
  background: #031E36;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(3, 30, 54, 0.3);
}

.btn-text-short {
  display: none;
}

.btn-text-full {
  display: inline;
}

.btn-hero-star-link {
  background: #FFFFFF;
  border: 1.5px solid #ffdb00;
  color: #031E36;
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 750;
  padding: 11px 20px;
  border-radius: 10px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.25s ease;
  box-shadow: 0 2px 8px rgba(255, 219, 0, 0.1);
}

.btn-hero-star-link .star-icon {
  color: #D97706;
  font-size: 1.05rem;
}

.btn-hero-star-link:hover {
  border-color: #ffdb00;
  background: #FFFDF0;
  color: #031E36;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(255, 219, 0, 0.25);
}

.hero-features-strip {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  box-shadow: 0 2px 10px rgba(3, 30, 54, 0.04);
  margin-bottom: 24px;
}

.strip-feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: default;
  transition: transform 0.2s ease;
}

.strip-feature-item:hover {
  transform: translateY(-1px);
}

.strip-icon-box {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: #FFFDF0;
  border: 1.5px solid #ffdb00;
  color: #031E36;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.25s ease;
}

.strip-feature-item:hover .strip-icon-box {
  background: #ffdb00;
  color: #031E36;
  transform: translateY(-1px) scale(1.05);
}

.strip-label {
  font-size: 0.72rem;
  font-weight: 750;
  color: #1E293B;
  line-height: 1.25;
  transition: color 0.2s ease;
}

.strip-feature-item:hover .strip-label {
  color: #031E36;
}

.strip-divider {
  width: 1px;
  height: 24px;
  background-color: #E2E8F0;
}

/* ==========================================================================
   About Section
   ========================================================================== */

/* ==========================================================================
   Compact About Section
   ========================================================================== */

.about-section {
  padding: 48px 0;
  background-color: #FFFFFF;
  border-top: 1px solid #EEF2F6;
  border-bottom: 1px solid #EEF2F6;
  position: relative;
}

.about-compact-grid {
  display: grid;
  grid-template-columns: 350px 1fr;
  gap: 36px;
  align-items: center;
}

.about-compact-media {
  position: relative;
}

.about-compact-img-box {
  width: 100%;
  height: 250px;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  border: 2px solid #ffdb00;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
}

.about-compact-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.about-compact-img-box:hover .about-compact-img {
  transform: scale(1.05);
}

.about-compact-badge {
  position: absolute;
  bottom: 12px;
  left: 12px;
  right: 12px;
  background: rgba(15, 23, 42, 0.92);
  backdrop-filter: blur(8px);
  color: #FFFFFF;
  padding: 8px 14px;
  border-radius: 10px;
  font-size: 0.78rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  border-left: 3.5px solid #ffdb00;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
}

.about-experience-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: linear-gradient(135deg, #ffdb00, #ffdb00);
  color: #0F172A;
  padding: 6px 12px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 14px rgba(255, 192, 0, 0.35);
}

.exp-num {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  line-height: 1;
}

.exp-label {
  font-size: 0.65rem;
  font-weight: 800;
  line-height: 1.1;
  text-transform: uppercase;
}

.about-compact-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.about-compact-text {
  font-size: 0.88rem;
  color: #475569;
  line-height: 1.6;
  margin-bottom: 16px;
}

.about-features-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  width: 100%;
  margin-bottom: 18px;
}

.about-feature-card {
  background-color: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.03);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.about-feature-card:hover {
  transform: translateY(-2px);
  border-color: #ffdb00;
}

.feature-card-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background-color: #FFFDF0;
  border: 1px solid #ffdb00;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-card-info {
  display: flex;
  flex-direction: column;
}

.feature-card-title {
  font-size: 0.82rem;
  font-weight: 800;
  color: #0F172A;
  line-height: 1.2;
}

.feature-card-sub {
  font-size: 0.72rem;
  color: #64748B;
  line-height: 1.2;
}

.about-action-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-about-yellow {
  background-color: #ffdb00;
  color: #0F172A;
  font-family: var(--font-heading);
  font-size: 0.86rem;
  font-weight: 800;
  padding: 10px 20px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.25s ease;
  box-shadow: 0 4px 14px rgba(255, 192, 0, 0.25);
}

.btn-about-yellow:hover {
  background-color: #0F172A;
  color: #FFFFFF;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.3);
}

/* ==========================================================================
   Core Values Section (1,2 / 3,logo,4 / 5,6 Grid Architecture)
   ========================================================================== */

.core-values-section {
  position: relative;
  width: 100%;
  padding: 56px 0;
  background: url('https://images.unsplash.com/photo-1497366216548-37526070297c?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.core-values-bg-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.78);
  z-index: 1;
}

.core-values-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.core-values-row {
  display: grid;
  width: 100%;
  gap: 16px;
}

.values-row-2col {
  grid-template-columns: repeat(2, 1fr);
}

.values-row-3col {
  grid-template-columns: 1.15fr 0.85fr 1.15fr;
  align-items: stretch;
}

.core-value-cell {
  background-color: rgba(15, 23, 42, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  padding: 24px 30px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.core-value-cell:hover {
  background-color: rgba(212, 155, 0, 0.94);
  border-color: #ffdb00;
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(255, 192, 0, 0.25);
}

.value-cell-content {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.value-cell-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.3;
  margin-bottom: 6px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

.value-cell-desc {
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.45;
  margin: 0;
}

.core-value-logo-cell {
  background: #FFFFFF;
  border: 2px solid #FFC000;
  border-radius: 14px;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.35), 0 0 20px rgba(255, 192, 0, 0.25);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.core-value-logo-cell:hover {
  transform: scale(1.03);
  border-color: #FFD700;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4), 0 0 25px rgba(255, 192, 0, 0.35);
}

.core-logo-img {
  max-height: 52px;
  width: auto;
  display: block;
}

/* ==========================================================================
   Construction Packages / Plans Section (Compact Luxury Design)
   ========================================================================== */

.plans-section {
  padding: 38px 0 42px 0;
  background-color: #F8FAFC;
  border-top: 1px solid #E2E8F0;
  border-bottom: 1px solid #E2E8F0;
  position: relative;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  align-items: stretch;
  padding-top: 10px;
}

.plan-card {
  background-color: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 14px;
  overflow: visible;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.04);
}

.plan-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
  border-color: #CBD5E1;
}

.plan-top-accent {
  height: 4px;
  width: 100%;
  background: #0F172A;
  border-radius: 13px 13px 0 0;
}

.plan-top-accent.accent-gold {
  background: linear-gradient(90deg, #ffdb00, #ffdb00);
}

.plan-card-body {
  padding: 16px 16px 16px 16px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.plan-head-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4px;
}

.plan-tag {
  font-size: 0.68rem;
  font-weight: 800;
  color: #64748B;
  letter-spacing: 0.8px;
}

.plan-tag.tag-gold {
  color: #ffdb00;
}

.plan-tag-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #CBD5E1;
}

.plan-tag-dot.dot-gold {
  background-color: #ffdb00;
}

.plan-title {
  font-family: var(--font-heading);
  font-size: 1.18rem;
  font-weight: 800;
  color: #0F172A;
  margin-bottom: 8px;
  line-height: 1.2;
}

/* Compact Highlight Price Pill */
.plan-price-pill {
  background-color: #F1F5F9;
  border-radius: 8px;
  padding: 6px 12px;
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 8px;
  width: fit-content;
}

.plan-price-pill.pill-gold {
  background: linear-gradient(135deg, #0F172A, #1E293B);
  border: 1px solid rgba(255, 192, 0, 0.4);
}

.plan-price {
  font-family: var(--font-heading);
  font-size: 1.55rem;
  font-weight: 800;
  color: #0F172A;
  line-height: 1;
}

.plan-price.text-yellow {
  color: #ffdb00;
}

.plan-unit {
  font-size: 0.76rem;
  color: #64748B;
  font-weight: 600;
}

.plan-unit.text-dark {
  color: #94A3B8;
}

.plan-desc {
  font-size: 0.78rem;
  color: #64748B;
  line-height: 1.4;
  margin-bottom: 14px;
}

.plan-divider {
  width: 100%;
  height: 1px;
  background-color: #F1F5F9;
  margin-bottom: 14px;
}

.plan-divider.divider-gold {
  background-color: rgba(255, 192, 0, 0.25);
}

/* Featured Plan Card Highlight */
.plan-card-featured {
  background-color: #FFFDF5;
  border: 2px solid #ffdb00;
  box-shadow: 0 8px 24px rgba(255, 192, 0, 0.16);
}

.featured-badge-top {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #ffdb00;
  color: #0F172A;
  font-family: var(--font-heading);
  font-size: 0.68rem;
  font-weight: 800;
  padding: 3px 12px;
  border-radius: 12px;
  letter-spacing: 0.6px;
  white-space: nowrap;
  box-shadow: 0 4px 10px rgba(255, 192, 0, 0.35);
  z-index: 30;
}

.plan-features-list {
  list-style: none;
  padding: 0;
  margin: 0 0 18px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.plan-features-list li {
  font-size: 0.76rem;
  color: #334155;
  line-height: 1.35;
  display: flex;
  align-items: flex-start;
  gap: 7px;
}

.plan-check-circle {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background-color: #F1F5F9;
  color: #0F172A;
  font-weight: 800;
  font-size: 0.65rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.plan-check-circle.check-gold {
  background-color: #FEF3C7;
  color: #ffdb00;
}

.btn-plan-action {
  width: 100%;
  background-color: #FFFFFF;
  color: #0F172A;
  border: 1.5px solid #CBD5E1;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 800;
  padding: 8px 14px;
  border-radius: 20px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: all 0.2s ease;
}

.btn-plan-action:hover {
  background-color: #0F172A;
  color: #FFFFFF;
  border-color: #0F172A;
}

.btn-plan-action.btn-gold {
  background-color: #ffdb00;
  color: #0F172A;
  border: none;
  box-shadow: 0 4px 12px rgba(255, 192, 0, 0.25);
}

.btn-plan-action.btn-gold:hover {
  background-color: #0F172A;
  color: #FFFFFF;
}

/* Bottom Action Row with 2 Action Buttons */
.plans-bottom-actions {
  margin-top: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.about-link-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--color-dark-navy);
  background-color: var(--color-bg-subtle);
  border: 1px solid var(--color-border);
  padding: 10px 20px;
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}

.about-link-btn:hover {
  background-color: var(--color-dark-navy);
  color: #FFFFFF;
  border-color: var(--color-dark-navy);
}

/* ==========================================================================
   Services Section (Horizontal Scroll Slider)
   ========================================================================== */

.services-section {
  padding: 60px 0 70px 0;
  background-color: #FFFFFF;
  position: relative;
  border-bottom: 1px solid #EEF2F6;
}

.services-header-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 32px;
}

.services-header-left {
  flex: 1;
}

.services-header-right {
  margin-bottom: 12px;
  flex-shrink: 0;
}

.services-main-grid {
  display: grid;
  grid-template-columns: 0.95fr 2.05fr;
  gap: 22px;
  align-items: stretch;
  margin-bottom: 28px;
}

/* Left Featured Card (Spaces that stand the test of time) */
.service-left-featured {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(3, 30, 54, 0.14);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px 26px;
  min-height: 480px;
  cursor: pointer;
  background-color: #0B1528;
}

.featured-card-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
  z-index: 1;
}

.service-left-featured:hover .featured-card-img {
  transform: scale(1.05);
}

.featured-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6, 16, 30, 0.96) 0%, rgba(6, 16, 30, 0.65) 45%, rgba(6, 16, 30, 0.1) 75%, transparent 100%);
  z-index: 2;
}

.featured-card-body {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.featured-yellow-line {
  width: 34px;
  height: 3px;
  background-color: #ffdb00;
  border-radius: 2px;
  margin-bottom: 8px;
}

.featured-tag {
  font-size: 0.78rem;
  font-weight: 800;
  color: #ffdb00;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 8px;
  display: block;
}

.featured-title {
  font-family: var(--font-heading);
  font-size: 1.95rem;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.2;
  margin-bottom: 10px;
  letter-spacing: -0.4px;
}

.featured-desc {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.45;
  margin-bottom: 18px;
  max-width: 280px;
}

.btn-know-more {
  background: rgba(11, 21, 40, 0.85);
  backdrop-filter: blur(4px);
  color: #FFFFFF;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  font-family: var(--font-body);
  font-size: 0.84rem;
  font-weight: 700;
  padding: 9px 18px;
  border-radius: 8px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.25s ease;
}

.btn-arrow-yellow {
  color: #ffdb00;
  font-weight: 800;
}

.service-left-featured:hover .btn-know-more {
  background: #ffdb00;
  border-color: #ffdb00;
  color: #0F172A;
}

.service-left-featured:hover .btn-arrow-yellow {
  color: #0F172A;
}

/* Right Side: 6 Full-Image Overlay Cards Grid (3 Columns x 2 Rows) */
.services-6cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.service-overlay-card {
  position: relative;
  height: 225px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(3, 30, 54, 0.08);
  cursor: pointer;
  background-color: #0F172A;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.service-overlay-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 35px rgba(3, 30, 54, 0.18);
}

.overlay-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.service-overlay-card:hover .overlay-card-img {
  transform: scale(1.06);
}

.overlay-card-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6, 16, 30, 0.95) 0%, rgba(6, 16, 30, 0.5) 45%, transparent 80%);
  z-index: 2;
}

.overlay-card-content {
  position: absolute;
  bottom: 18px;
  left: 18px;
  right: 18px;
  z-index: 3;
  display: flex;
  align-items: center;
}

.overlay-card-num {
  font-family: var(--font-heading);
  font-size: 2.1rem;
  font-weight: 800;
  color: #ffdb00;
  line-height: 1;
  flex-shrink: 0;
}

.overlay-card-divider {
  width: 1.5px;
  height: 28px;
  background-color: #ffdb00;
  margin: 0 12px;
  flex-shrink: 0;
  opacity: 0.85;
}

.overlay-card-title {
  font-family: var(--font-heading);
  font-size: 1.02rem;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.2;
}

/* Bottom Trust Promise Strip (Below Grid) */
.services-trust-strip {
  background-color: #FFFDF0;
  border: 1px solid #ffdb00;
  border-radius: 16px;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 24px;
}

.trust-strip-item {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
}

.trust-strip-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #FFFFFF;
  border: 1px solid #ffdb00;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.trust-strip-text {
  display: flex;
  flex-direction: column;
}

.trust-title {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 800;
  color: #0F172A;
  line-height: 1.2;
}

.trust-desc {
  font-size: 0.78rem;
  color: #64748B;
  line-height: 1.2;
  margin-top: 2px;
}

.trust-strip-divider {
  width: 1px;
  height: 32px;
  background: rgba(255, 192, 0, 0.3);
  margin: 0 16px;
  flex-shrink: 0;
}

.services-footer-cta {
  display: flex;
  justify-content: center;
  margin-top: 36px;
}

/* ==========================================================================
   Serviceable Areas Section (Bangalore & Chikkamagaluru)
   ========================================================================== */

.serviceable-areas-section {
  padding: 40px 0 46px 0;
  background: linear-gradient(180deg, #F8FAFC 0%, #FFFFFF 100%);
  position: relative;
  border-bottom: 1px solid #EEF2F6;
}

.areas-main-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.area-showcase-card {
  background: #FFFFFF;
  border-radius: 16px;
  border: 1.5px solid #E2E8F0;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(3, 30, 54, 0.06);
  display: flex;
  flex-direction: column;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.area-showcase-card:hover {
  transform: translateY(-4px);
  border-color: #ffdb00;
  box-shadow: 0 14px 32px rgba(3, 30, 54, 0.12), 0 0 0 1px #ffdb00;
}

/* Card Banner Image */
.area-card-banner {
  position: relative;
  height: 220px;
  overflow: hidden;
  background-color: #031E36;
}

.area-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.area-showcase-card:hover .area-card-img {
  transform: scale(1.06);
}

.area-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(3, 30, 54, 0.35) 0%, rgba(3, 30, 54, 0.1) 40%, rgba(1, 18, 36, 0.9) 100%);
  z-index: 2;
}

.area-banner-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(3, 30, 54, 0.88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 219, 0, 0.5);
  color: #ffdb00;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 5px 12px;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.badge-dot-yellow {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #ffdb00;
  box-shadow: 0 0 8px #ffdb00;
  display: inline-block;
}

.area-banner-title-box {
  position: absolute;
  bottom: 14px;
  left: 16px;
  right: 16px;
  z-index: 3;
}

.area-city-name {
  font-family: var(--font-heading);
  font-size: 1.65rem;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.1;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

/* Card Body */
.area-card-body {
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
  background: #FFFFFF;
}

.area-card-desc {
  font-size: 0.86rem;
  color: #475569;
  line-height: 1.5;
  margin-bottom: 16px;
}

/* Card Action Buttons */
.area-card-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid #F1F5F9;
}

.btn-area-primary {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: #ffdb00;
  color: #031E36;
  font-family: var(--font-heading);
  font-size: 0.86rem;
  font-weight: 800;
  padding: 10px 16px;
  border-radius: 9px;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 4px 14px rgba(255, 219, 0, 0.35);
  text-align: center;
}

.btn-area-primary:hover {
  background-color: #eed000;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(255, 219, 0, 0.45);
}

.btn-area-primary .btn-arrow {
  transition: transform 0.2s ease;
}

.btn-area-primary:hover .btn-arrow {
  transform: translateX(3px);
}

.btn-area-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background-color: #031E36;
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 10px 14px;
  border-radius: 9px;
  border: 1px solid #031E36;
  cursor: pointer;
  transition: all 0.25s ease;
  text-decoration: none;
  flex-shrink: 0;
  white-space: nowrap;
}

.btn-area-secondary:hover {
  background-color: #073157;
  border-color: #073157;
  color: #ffdb00;
  transform: translateY(-2px);
}

/* ==========================================================================
   Process Section
   ========================================================================== */

/* ==========================================================================
   Process Section (Full-Width Layout & Optimized Spacing)
   ========================================================================== */

.process-section {
  padding: 56px 0 64px 0;
  background-color: #FFFFFF;
  position: relative;
  border-top: 1px solid #EEF2F6;
  border-bottom: 1px solid #EEF2F6;
}

.process-section .container {
  max-width: 1400px;
  padding: 0 20px;
}

/* 6 Step Cards Row - Seamless Side-by-Side with Seam Arrows */
.process-steps-row {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 16px;
  margin-top: 14px;
  margin-bottom: 32px;
}

.process-step-card {
  flex: 1;
  background-color: #FFFFFF;
  border: 1.5px solid #E2E8F0;
  border-radius: 16px;
  box-shadow: 0 4px 18px rgba(3, 30, 54, 0.04);
  padding: 16px 12px 12px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.process-step-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(255, 192, 0, 0.15), 0 4px 12px rgba(15, 23, 42, 0.06);
  border-color: #ffdb00;
}

.card-step-arrow {
  position: absolute;
  right: -13px;
  top: 33px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: #FFFFFF;
  border: 1.5px solid #ffdb00;
  color: #ffdb00;
  font-size: 0.85rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(255, 192, 0, 0.2);
  z-index: 10;
  transition: all 0.25s ease;
}

.process-step-card:hover .card-step-arrow {
  background-color: #ffdb00;
  color: #0F172A;
  transform: scale(1.12);
  box-shadow: 0 4px 12px rgba(255, 192, 0, 0.4);
}

.process-step-card:last-child .card-step-arrow {
  display: none;
}

.step-num-badge {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffdb00 0%, #ffdb00 100%);
  color: #0F172A;
  font-family: var(--font-heading);
  font-size: 0.76rem;
  font-weight: 850;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 12px;
  left: 12px;
  box-shadow: 0 2px 8px rgba(255, 192, 0, 0.35);
}

.step-icon-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FFFDF0 0%, #FEF3C7 100%);
  border: 1.5px solid #ffdb00;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 4px;
  margin-bottom: 10px;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(255, 192, 0, 0.12);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.process-step-card:hover .step-icon-circle {
  transform: scale(1.08);
  box-shadow: 0 8px 20px rgba(255, 192, 0, 0.25);
  border-color: #ffdb00;
}

.step-icon-circle svg {
  width: 36px;
  height: 36px;
  transition: transform 0.3s ease;
}

.process-step-card:hover .step-icon-circle svg {
  transform: scale(1.05);
}

.step-title {
  font-family: var(--font-heading);
  font-size: 0.94rem;
  font-weight: 800;
  color: #0F172A;
  margin-bottom: 4px;
  line-height: 1.2;
}

.step-title-dash {
  width: 24px;
  height: 2.5px;
  background: linear-gradient(90deg, #ffdb00, #ffdb00);
  border-radius: 2px;
  margin-bottom: 8px;
}

.step-desc {
  font-size: 0.74rem;
  color: #64748B;
  line-height: 1.4;
  margin-bottom: 12px;
  flex: 1;
}

.step-img-box {
  width: 100%;
  height: 105px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.08);
}

.step-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.process-step-card:hover .step-img {
  transform: scale(1.06);
}

/* Bottom Row Banners - Ultra Compact & Balanced */
.process-bottom-row {
  display: flex;
  gap: 16px;
  align-items: stretch;
  margin-top: 20px;
}

.process-guarantees-banner {
  flex: 2.1;
  background: linear-gradient(135deg, #FFFDF5 0%, #FEF9EB 100%);
  border: 1.5px solid #ffdb00;
  border-radius: 16px;
  padding: 14px 20px 12px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 4px 18px rgba(255, 192, 0, 0.08);
}

.guarantees-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.guarantee-item {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  transition: transform 0.2s ease;
}

.guarantee-item:hover {
  transform: translateY(-1px);
}

.guarantee-divider {
  width: 1px;
  height: 32px;
  background-color: rgba(255, 192, 0, 0.28);
  flex-shrink: 0;
}

.guarantee-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: #FFFFFF;
  border: 1.5px solid #ffdb00;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(255, 192, 0, 0.12);
  transition: all 0.25s ease;
}

.guarantee-item:hover .guarantee-icon {
  background: #ffdb00;
  border-color: #ffdb00;
  transform: scale(1.08);
}

.guarantee-item:hover .guarantee-icon svg {
  stroke: #0F172A;
}

.guarantee-text {
  display: flex;
  flex-direction: column;
}

.guarantee-title {
  font-family: var(--font-heading);
  font-size: 0.84rem;
  font-weight: 800;
  color: #0F172A;
  line-height: 1.2;
}

.guarantee-desc {
  font-size: 0.72rem;
  color: #64748B;
  line-height: 1.2;
  margin-top: 1px;
}

.guarantees-tagline-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 10px;
}

.tagline-line {
  flex: 1;
  height: 1px;
  background: rgba(255, 192, 0, 0.35);
}

.tagline-text {
  font-family: var(--font-heading);
  font-size: 0.84rem;
  font-weight: 700;
  color: #0F172A;
  text-align: center;
}

/* Free Site Visit Right Card - Ultra Compact */
.process-visit-card {
  flex: 1;
  background: linear-gradient(135deg, #FFFDF0 0%, #FEF3C7 100%);
  border: 1.5px solid #ffdb00;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  align-items: stretch;
  cursor: pointer;
  box-shadow: 0 4px 18px rgba(255, 192, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.process-visit-card:hover {
  transform: translateY(-4px);
  border-color: #ffdb00;
  box-shadow: 0 12px 28px rgba(255, 192, 0, 0.2);
}

.visit-card-img-box {
  width: 155px;
  flex-shrink: 0;
  overflow: hidden;
}

.visit-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.visit-card-content {
  padding: 10px 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  flex: 1;
}

.visit-tag {
  font-size: 0.68rem;
  font-weight: 800;
  color: #ffdb00;
  letter-spacing: 1.2px;
  margin-bottom: 2px;
}

.visit-title {
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 800;
  color: #0F172A;
  line-height: 1.2;
  margin-bottom: 2px;
}

.visit-desc {
  font-size: 0.72rem;
  color: #64748B;
  margin-bottom: 8px;
  line-height: 1.3;
}

.btn-visit-yellow {
  background-color: #ffdb00;
  color: #0F172A;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 800;
  padding: 6px 14px;
  border-radius: 20px;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.process-visit-card:hover .btn-visit-yellow {
  background-color: #0F172A;
  color: #FFFFFF;
}

.brand-highlight {
  color: #ffdb00;
  font-weight: 800;
}

/* ==========================================================================
   Modal / Quote Form
   ========================================================================== */

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(3, 30, 54, 0.6);
  backdrop-filter: blur(4px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
  padding: 20px;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-card {
  background: #FFFFFF;
  width: 100%;
  max-width: 520px;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 50px rgba(3, 30, 54, 0.25);
  overflow: hidden;
  transform: translateY(20px);
  transition: transform var(--transition-normal);
}

.modal-overlay.active .modal-card {
  transform: translateY(0);
}

.modal-header {
  background-color: var(--color-dark-navy);
  color: #FFFFFF;
  padding: 24px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-title {
  color: #FFFFFF;
  font-size: 1.35rem;
}

.modal-close {
  background: rgba(255, 255, 255, 0.15);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-size: 1.4rem;
  cursor: pointer;
  line-height: 1;
  padding: 0;
  transition: all var(--transition-fast);
}

.modal-close:hover {
  background-color: #ffdb00;
  border-color: #ffdb00;
  color: #0F172A;
  transform: rotate(90deg) scale(1.05);
}

.modal-close svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
}

.modal-body {
  padding: 28px;
}

.form-group {
  margin-bottom: 18px;
}

.form-label {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--color-dark-navy);
  margin-bottom: 6px;
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-text-main);
  background-color: #FFFFFF;
  transition: border-color var(--transition-fast);
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--color-dark-navy);
}

/* ==========================================================================
   Why Us Section
   ========================================================================== */

.why-us-section {
  padding: 40px 0 35px 0;
  background-color: #FFFFFF;
  position: relative;
  overflow: hidden;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 36px;
  align-items: start;
  position: relative;
  z-index: 2;
}

.why-left-content {
  display: flex;
  flex-direction: column;
}

.why-tag-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 6px;
  position: relative;
}

.why-dots-pattern {
  position: absolute;
  top: -14px;
  left: -12px;
  width: 38px;
  height: 38px;
  background-image: radial-gradient(#ffdb00 1.8px, transparent 1.8px);
  background-size: 7px 7px;
  opacity: 0.45;
  pointer-events: none;
}

.why-tag-text {
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #475569;
  position: relative;
  z-index: 2;
}

.why-yellow-dash {
  width: 44px;
  height: 3px;
  background-color: #ffdb00;
  margin-top: 4px;
  border-radius: 2px;
}

.why-heading {
  font-family: var(--font-heading);
  font-size: 2.1rem;
  font-weight: 800;
  line-height: 1.16;
  color: #0F172A;
  margin-bottom: 10px;
  letter-spacing: -0.4px;
}

.why-heading .text-yellow {
  color: #ffdb00;
  position: relative;
}

.why-description {
  font-size: 0.9rem;
  color: #64748B;
  line-height: 1.5;
  margin-bottom: 8px;
  max-width: 440px;
}

.why-description-line {
  width: 36px;
  height: 3px;
  background-color: #ffdb00;
  border-radius: 2px;
  margin-bottom: 12px;
}

.why-mini-badges {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 10px;
}

.why-mini-badge {
  display: flex;
  align-items: center;
  gap: 6px;
}

.mini-badge-hex {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.mini-badge-label {
  font-size: 0.72rem;
  font-weight: 700;
  color: #0F172A;
  line-height: 1.2;
}

.why-sketch-wrapper {
  margin-top: 6px;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 165px;
  border: 1px solid #F1F5F9;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.why-sketch-img {
  width: 100%;
  height: 165px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.why-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.why-card {
  background-color: #FFFFFF;
  border: 1px solid #EEF2F6;
  border-radius: 14px;
  padding: 22px 14px 18px 14px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 3px 14px rgba(0, 0, 0, 0.03);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.why-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.07);
  border-color: #CBD5E1;
}

.why-card-number {
  position: absolute;
  top: 12px;
  right: 14px;
  font-size: 0.8rem;
  font-weight: 800;
  color: #ffdb00;
}

.why-card-icon-box {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #F1F5F9;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  border: none;
}

.why-card-title {
  font-family: var(--font-heading);
  font-size: 0.98rem;
  font-weight: 700;
  color: #0F172A;
  margin-bottom: 8px;
  line-height: 1.25;
}

.why-card-desc {
  font-size: 0.8rem;
  color: #64748B;
  line-height: 1.45;
}

.why-card-pill {
  width: 28px;
  height: 3.5px;
  background-color: #ffdb00;
  border-radius: 2px;
  margin-top: 12px;
}

.why-bottom-banner {
  background: #0B1528;
  border-radius: 16px;
  padding: 20px 36px;
  margin-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 4px solid #ffdb00;
  box-shadow: 0 12px 32px rgba(11, 21, 40, 0.25);
  position: relative;
}

.banner-stat-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.stat-icon-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffdb00;
  flex-shrink: 0;
}

.stat-text-group {
  display: flex;
  flex-direction: column;
}

.stat-num-yellow {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: #ffdb00;
  line-height: 1.2;
}

.stat-label-white {
  font-size: 0.88rem;
  font-weight: 600;
  color: #FFFFFF;
  line-height: 1.2;
}

.banner-divider {
  width: 1px;
  height: 34px;
  background: rgba(255, 255, 255, 0.15);
}

/* ==========================================================================
   Design Inspiration Section (Why Us Header Theme)
   ========================================================================== */

.inspiration-section {
  padding: 50px 0 60px 0;
  background-color: #FFFFFF;
  position: relative;
  border-top: 1px solid #F1F5F9;
  overflow: hidden;
}

.inspiration-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 24px;
}

.inspiration-header-left {
  flex: 1;
}

.inspiration-header-right {
  margin-bottom: 8px;
  flex-shrink: 0;
}

.inspiration-marquee-container {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 10px 0;
}

.inspiration-track-inner {
  display: flex;
  gap: 20px;
  width: max-content;
  will-change: transform;
  animation: inspirationAutoScroll 30s linear infinite;
}

.inspiration-track-inner:hover {
  animation-play-state: paused;
}

@keyframes inspirationAutoScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-50% - 10px)); }
}

.inspiration-card {
  position: relative;
  min-width: 310px;
  max-width: 320px;
  height: 340px;
  flex-shrink: 0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(3, 30, 54, 0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  cursor: pointer;
  background-color: #0F172A;
}

.inspiration-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 35px rgba(3, 30, 54, 0.18);
}

.inspiration-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.inspiration-card:hover .inspiration-card-img {
  transform: scale(1.06);
}

.inspiration-overlay-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(1, 18, 36, 0.92) 0%, rgba(3, 30, 54, 0.45) 50%, rgba(3, 30, 54, 0.1) 100%);
  transition: opacity 0.3s ease;
  z-index: 2;
}

.inspiration-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 22px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.inspiration-card-tag {
  font-size: 0.78rem;
  font-weight: 800;
  color: #ffdb00;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.inspiration-card-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.3;
}

/* ==========================================================================
   Responsive Styles: Laptop & Tablet Screen Architectures
   ========================================================================== */

/* Laptop Screens (1201px to 1366px - standard 13.3", 14", 15.6" HD & Full-HD at 125%/150% scaling) */
@media (max-width: 1366px) {
  .nav-menu {
    gap: clamp(14px, 1.6vw, 24px);
  }

  .nav-link {
    font-size: 0.9rem;
  }

  .header-desktop-cta {
    padding: 10px 18px;
    font-size: 0.88rem;
  }

  .hero-section {
    min-height: 560px;
    padding: 48px 0;
  }

  .hero-content {
    max-width: 560px;
  }

  .hero-title {
    font-size: 2.9rem;
  }

  .hero-features-strip {
    padding: 10px 18px;
    gap: 16px;
  }

  .strip-label {
    font-size: 0.70rem;
  }

  /* About Section on Laptops */
  .about-compact-grid {
    grid-template-columns: 310px 1fr;
    gap: 28px;
  }

  .about-features-row {
    gap: 10px;
  }

  .about-feature-card {
    padding: 8px 10px;
    gap: 8px;
  }

  .feature-card-title {
    font-size: 0.78rem;
  }

  .feature-card-sub {
    font-size: 0.70rem;
  }

  /* Services Section on Laptops */
  .services-main-grid {
    grid-template-columns: 290px 1fr;
    gap: 18px;
  }

  .service-left-featured {
    padding: 26px 20px;
    min-height: 440px;
  }

  .featured-title {
    font-size: 1.75rem;
  }

  .services-6cards-grid {
    gap: 12px;
  }

  .service-overlay-card {
    height: 200px;
  }

  .overlay-card-title {
    font-size: 0.95rem;
  }

  .services-trust-strip {
    padding: 14px 18px;
    gap: 10px;
  }

  .trust-title {
    font-size: 0.82rem;
  }

  .trust-desc {
    font-size: 0.70rem;
  }

  /* Process Section on Laptops: All 6 Steps in ONE Single Line */
  .process-steps-row {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: clamp(6px, 1vw, 14px);
    margin-bottom: 28px;
  }

  .process-step-card {
    flex: 1;
    min-width: 0;
    padding: 12px 6px 10px 6px;
  }

  .step-num-badge {
    width: 22px;
    height: 22px;
    font-size: 0.70rem;
    top: 8px;
    left: 8px;
  }

  .step-icon-circle {
    width: 44px;
    height: 44px;
    margin-top: 2px;
    margin-bottom: 6px;
  }

  .step-icon-circle svg {
    width: 26px;
    height: 26px;
  }

  .step-title {
    font-size: clamp(0.78rem, 0.9vw, 0.88rem);
    white-space: nowrap;
    margin-bottom: 2px;
  }

  .step-title-dash {
    width: 18px;
    height: 2px;
    margin-bottom: 6px;
  }

  .step-desc {
    font-size: 0.68rem;
    line-height: 1.3;
    margin-bottom: 8px;
  }

  .step-img-box {
    height: 75px;
    width: 100%;
  }

  .card-step-arrow {
    right: -10px;
    top: 26px;
    width: 20px;
    height: 20px;
    font-size: 0.75rem;
  }

  /* Why Us Section on Laptops */
  .why-grid {
    grid-template-columns: 1fr 1.25fr;
    gap: 28px;
  }

  .why-cards-grid {
    gap: 12px;
  }

  .why-card {
    padding: 18px 10px 14px 10px;
  }

  .why-card-icon-box {
    width: 52px;
    height: 52px;
    margin-bottom: 10px;
  }

  .why-card-title {
    font-size: 0.92rem;
  }

  .why-card-desc {
    font-size: 0.76rem;
  }

  .why-bottom-banner {
    padding: 16px 24px;
  }

  .banner-stat-item {
    gap: 10px;
  }

  .stat-num-yellow {
    font-size: 1.05rem;
  }

  .stat-label-white {
    font-size: 0.82rem;
  }

  /* Packages on Laptops */
  .plans-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
}

/* Medium Laptops & Small Desktops (1025px to 1200px) */
@media (max-width: 1200px) {
  .nav-menu {
    gap: 14px;
  }

  .nav-link {
    font-size: 0.86rem;
  }

  .header-desktop-cta {
    padding: 9px 15px;
    font-size: 0.84rem;
  }

  .hero-title {
    font-size: 2.6rem;
  }

  .about-compact-grid {
    grid-template-columns: 280px 1fr;
    gap: 24px;
  }

  .services-main-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .service-left-featured {
    min-height: 300px;
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .why-description {
    max-width: 100%;
  }

  .why-sketch-wrapper {
    max-width: 100%;
    height: 180px;
  }

  .why-cards-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
  }

  .core-values-container {
    max-width: 100%;
  }

  .values-row-3col {
    grid-template-columns: 1fr 0.8fr 1fr;
    gap: 12px;
  }

  .core-value-cell {
    padding: 18px 20px;
  }

  .value-cell-title {
    font-size: 1.05rem;
  }

  .value-cell-desc {
    font-size: 0.80rem;
  }
}

/* Small Laptops & Large Tablets (993px to 1024px) */
@media (max-width: 1024px) {
  .container {
    padding: 0 24px;
  }

  .nav-menu {
    gap: 12px;
  }

  .nav-link {
    font-size: 0.84rem;
  }

  .hero-title {
    font-size: 2.4rem;
  }

  .about-compact-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .about-compact-img-box {
    height: 280px;
  }

  .areas-main-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .process-bottom-row {
    flex-direction: column;
    gap: 16px;
  }

  .process-guarantees-banner,
  .process-visit-card {
    width: 100%;
  }

  .why-bottom-banner {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .banner-divider {
    display: none;
  }
}

@media (max-width: 992px) {
  .container {
    padding: 0 24px;
  }

  /* Header Navigation & Mobile Drawer */
  .header-desktop-cta {
    display: none !important;
  }

  .logo-link {
    height: 42px;
    max-width: 190px;
  }

  .logo-img {
    height: 38px;
    max-height: 38px;
    max-width: 100%;
  }

  .mobile-toggle {
    display: flex !important;
    align-items: flex-end;
    justify-content: center;
  }

  .nav-menu {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    background-color: #FFFFFF;
    flex-direction: column;
    align-items: stretch;
    padding: 20px 24px 28px 24px;
    gap: 12px;
    box-shadow: 0 16px 36px rgba(3, 30, 54, 0.15);
    border-bottom: 2px solid var(--color-primary-yellow);
    transform: translateY(-150%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    max-height: calc(100vh - 80px);
    overflow-y: auto;
    z-index: 1000;
  }

  .nav-menu.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-menu li {
    width: 100%;
  }

  .nav-link {
    display: block;
    width: 100%;
    padding: 8px 0;
    font-size: 1.05rem;
  }

  .nav-menu-cta {
    display: block;
    width: 100%;
    margin-top: 8px;
    padding-top: 12px;
    border-top: 1px solid #F1F5F9;
  }

  .nav-quote-btn {
    width: 100%;
    justify-content: center;
    padding: 13px 20px;
    font-size: 0.95rem;
    border-radius: 10px;
    box-shadow: 0 4px 16px rgba(255, 192, 0, 0.35);
  }

  /* Hero Section - Tablet & Medium Screens */
  .hero-section {
    min-height: auto;
    padding: 40px 0;
  }

  .hero-content {
    max-width: 100%;
    padding: 0;
    background: transparent;
  }

  .hero-title {
    font-size: 2.6rem;
  }

  .hero-features-strip {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .strip-feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .strip-icon-box {
    width: 34px;
    height: 34px;
    flex-shrink: 0;
  }

  .strip-label {
    font-size: 0.72rem;
    line-height: 1.25;
  }

  .strip-divider {
    display: none;
  }

  /* About Section - Tablet & Medium Screens */
  .about-section {
    padding: 44px 0;
  }

  .about-compact-grid {
    grid-template-columns: 320px 1fr;
    gap: 28px;
    align-items: center;
  }

  .about-compact-img-box {
    height: 250px;
  }

  .about-features-row {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }

  .about-feature-card {
    padding: 8px 10px;
  }

  /* Services Section - Tablet & Medium Screens */
  .services-section {
    padding: 48px 0;
  }

  .services-header-row {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 28px;
  }

  .services-main-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 24px;
  }

  .service-left-featured {
    min-height: 320px;
    padding: 28px 24px;
    border-radius: 18px;
  }

  .featured-title {
    font-size: 1.7rem;
  }

  .services-6cards-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
  }

  .service-overlay-card {
    height: 195px;
    border-radius: 14px;
  }

  .overlay-card-num {
    font-size: 1.8rem;
  }

  .overlay-card-title {
    font-size: 0.92rem;
  }

  .services-trust-strip {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    padding: 18px 20px;
    border-radius: 14px;
  }

  .trust-strip-divider {
    display: none;
  }

  .trust-strip-item {
    gap: 10px;
  }

  /* Serviceable Areas Section - Tablet & Medium Screens */
  .serviceable-areas-section {
    padding: 30px 0 36px 0;
  }

  .areas-main-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .area-card-banner {
    height: 200px;
  }

  .area-card-body {
    padding: 16px 18px;
  }

  /* Process Section - Tablet & Medium Screens */
  .process-section {
    padding: 48px 0;
  }

  .process-steps-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 24px;
  }

  .process-step-card {
    padding: 16px 14px;
  }

  .card-step-arrow {
    display: none;
  }

  .step-icon-circle {
    width: 52px;
    height: 52px;
  }

  .step-title {
    font-size: 0.92rem;
  }

  .step-desc {
    font-size: 0.74rem;
  }

  .step-img-box {
    height: 95px;
  }

  .process-bottom-row {
    flex-direction: column;
    gap: 16px;
  }

  .process-guarantees-banner {
    width: 100%;
    padding: 16px 20px;
  }

  .guarantees-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .guarantee-divider {
    display: none;
  }

  .process-visit-card {
    width: 100%;
  }

  .visit-card-img-box {
    width: 180px;
  }

  /* Why Steelnbricks - Tablet & Medium Screens */
  .why-us-section {
    padding: 48px 0;
  }

  .why-bg-polygon {
    width: 75px;
    left: -15px;
    opacity: 0.95;
    height: 420px;
  }

  .why-left-content {
    padding-left: 48px;
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .why-heading {
    font-size: 1.95rem;
    line-height: 1.2;
  }

  .why-description {
    max-width: 100%;
    margin-bottom: 12px;
  }

  .why-mini-badges {
    display: flex;
    gap: 16px;
    margin-bottom: 14px;
  }

  .why-sketch-wrapper {
    height: 170px;
    width: 100%;
  }

  .why-cards-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
  }

  .why-card {
    padding: 18px 12px;
  }

  .why-card-icon-box {
    width: 52px;
    height: 52px;
  }

  .why-card-icon-box svg {
    width: 34px;
    height: 34px;
  }

  .why-card-title {
    font-size: 0.92rem;
  }

  .why-card-desc {
    font-size: 0.78rem;
  }

  .why-bottom-banner {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    padding: 20px 24px;
    border-radius: 14px;
  }

  .banner-divider {
    display: none;
  }

  /* Plans Section - Tablet & Medium Screens */
  .plans-section {
    padding: 48px 0;
  }

  .plans-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    padding-top: 14px;
  }

  .plan-card {
    border-radius: 14px;
  }

  .plan-card-body {
    padding: 18px 16px;
  }

  .plan-title {
    font-size: 1.18rem;
  }

  .plan-price {
    font-size: 1.55rem;
  }

  .plan-desc {
    font-size: 0.80rem;
    margin-bottom: 12px;
  }

  .btn-plan-action {
    padding: 9px 16px;
    font-size: 0.82rem;
  }

  .plans-bottom-actions {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-top: 24px;
  }

  /* Inspiration Section - Tablet & Medium Screens */
  .inspiration-section {
    padding: 44px 0 50px 0;
  }

  .inspiration-header {
    margin-bottom: 20px;
  }

  .inspiration-card {
    min-width: 270px;
    max-width: 280px;
    height: 300px;
    border-radius: 14px;
  }

  .inspiration-card-content {
    padding: 18px;
  }

  .inspiration-card-title {
    font-size: 1.08rem;
  }

  .inspiration-track-inner {
    gap: 16px;
  }

  /* Core Values Section - Tablet & Medium Screens */
  .core-values-section {
    padding: 44px 0;
  }

  .core-values-container {
    gap: 12px;
  }

  .core-values-row {
    gap: 12px;
  }

  .values-row-3col {
    grid-template-columns: 1fr 0.85fr 1fr;
  }

  .core-value-cell {
    padding: 20px 22px;
    border-radius: 12px;
  }

  .value-cell-title {
    font-size: 1.08rem;
  }

  .value-cell-desc {
    font-size: 0.80rem;
  }

  .core-logo-img {
    max-height: 44px;
  }

  /* Compact CTA Section - Tablet & Medium Screens */
  .cta-compact-section {
    padding: 36px 0;
  }

  .cta-compact-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding: 24px;
  }

  .cta-compact-right {
    width: 100%;
    display: flex;
    gap: 12px;
  }

  .cta-compact-right .btn-about-yellow,
  .cta-compact-right .btn-cta-phone {
    flex: 1;
    justify-content: center;
  }
}

@media (max-width: 868px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-title {
    font-size: 2.4rem;
  }

  .hero-image {
    height: 400px;
  }

  .hero-floating-card {
    left: 10px;
  }

  .hero-floating-card-right {
    right: 10px;
  }

  .services-header-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .services-heading {
    font-size: 1.85rem;
  }

  .service-card {
    min-width: 280px;
    max-width: 300px;
  }
}

@media (max-width: 640px) {
  .hero-title {
    font-size: 2rem;
  }

  .process-step-card {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .process-heading-center {
    font-size: 1.85rem;
  }

  .process-commitment-box {
    flex-direction: column;
    align-items: flex-start;
    padding: 14px 18px;
    gap: 12px;
  }

  .commitment-divider {
    display: none;
  }

  .why-heading {
    font-size: 2rem;
  }

  .why-mini-badges {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .why-cards-grid {
    grid-template-columns: 1fr;
  }

  .banner-stat-item {
    flex: 0 0 100%;
  }
}

@media (max-width: 1100px) {
  .services-main-grid {
    grid-template-columns: 1fr;
  }

  .service-left-featured {
    min-height: 380px;
  }

  .process-steps-row {
    flex-wrap: wrap;
    gap: 16px;
  }

  .process-step-card {
    flex: 0 0 calc(33.333% - 11px);
  }

  .step-connector {
    display: none;
  }

  .process-bottom-row {
    flex-direction: column;
  }
}

@media (max-width: 900px) {
  .services-6cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-trust-strip {
    flex-wrap: wrap;
    gap: 16px;
  }

  .trust-strip-divider {
    display: none;
  }

  .trust-strip-item {
    flex: 0 0 calc(50% - 10px);
  }

  .guarantees-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-ctas .btn {
    width: 100%;
  }

  .hero-trust-items {
    flex-direction: column;
    align-items: flex-start;
  }

  .trust-pill {
    width: 100%;
  }

  .services-6cards-grid {
    grid-template-columns: 1fr;
  }

  .trust-strip-item {
    flex: 0 0 100%;
  }

  .process-step-card {
    flex: 0 0 100%;
  }

  .guarantees-grid {
    grid-template-columns: 1fr;
  }

  .process-visit-card {
    flex-direction: column;
  }

  .visit-card-img-box {
    width: 100%;
    height: 160px;
  }
}

/* ==========================================================================
   Call-to-Action (CTA) & Footer Section
   ========================================================================== */

.cta-compact-section {
  padding: 32px 0 40px 0;
  background-color: #F8FAFC;
  border-top: 1px solid #E2E8F0;
  position: relative;
}

.cta-compact-card {
  background-color: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-left: 5px solid #ffdb00;
  border-radius: 16px;
  padding: 24px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.cta-compact-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
  border-color: #CBD5E1;
}

.cta-compact-left {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.cta-compact-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.btn-cta-phone {
  background-color: #F1F5F9;
  color: #0F172A;
  font-family: inherit;
  font-weight: 700;
  font-size: 0.92rem;
  padding: 11px 20px;
  border-radius: 10px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid #CBD5E1;
  transition: all 0.25s ease;
}

.btn-cta-phone:hover {
  background-color: #0F172A;
  color: #FFFFFF;
  border-color: #0F172A;
}

/* Footer Styling (Clean White Theme) */
.main-footer {
  background-color: #FFFFFF;
  border-top: 1px solid #E2E8F0;
  padding: 50px 0 28px 0;
  color: #475569;
  font-size: 0.92rem;
}

.footer-top-row {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-logo-img {
  height: 44px;
  width: auto;
  margin-bottom: 14px;
  display: block;
}

.footer-tagline {
  line-height: 1.6;
  color: #64748B;
  max-width: 320px;
  font-size: 0.88rem;
}

.footer-col-title {
  color: #0F172A;
  font-size: 1.02rem;
  font-weight: 700;
  margin-bottom: 18px;
  position: relative;
  padding-bottom: 10px;
}

.footer-col-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 24px;
  height: 2px;
  background-color: #ffdb00;
  border-radius: 2px;
}

.footer-links-list, .footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links-list a {
  color: #475569;
  text-decoration: none;
  transition: all 0.2s ease;
  font-size: 0.9rem;
}

.footer-links-list a:hover {
  color: #ffdb00;
  padding-left: 4px;
}

.footer-contact-list li {
  color: #334155;
  line-height: 1.5;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #334155;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.2s ease;
}

.footer-contact-link:hover {
  color: #0F172A;
  transform: translateX(2px);
}

.footer-icon-badge {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  color: #0F172A;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.25s ease;
}

.footer-icon-badge svg {
  display: block;
  flex-shrink: 0;
  width: 15px;
  height: 15px;
  transition: all 0.2s ease;
}

.footer-icon-badge svg,
.footer-icon-badge svg path,
.footer-icon-badge svg rect,
.footer-icon-badge svg circle,
.footer-icon-badge svg polyline {
  fill: none !important;
  stroke: currentColor !important;
}

.footer-contact-link:hover .footer-icon-badge {
  background: #0F172A;
  border-color: #0F172A;
  color: #ffdb00;
}

.footer-quick-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
}

.btn-footer-call, .btn-footer-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 650;
  text-decoration: none;
  transition: all 0.25s ease;
}

/* Professional Primary Call Button */
.btn-footer-call {
  background: #0F172A;
  color: #FFFFFF !important;
  border: 1px solid #0F172A;
}

.btn-footer-call svg {
  stroke: #ffdb00;
}

.btn-footer-call:hover {
  background: #ffdb00;
  color: #0F172A !important;
  border-color: #ffdb00;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 219, 0, 0.3);
}

.btn-footer-call:hover svg {
  stroke: #0F172A;
}

/* Professional Secondary WhatsApp Button */
.btn-footer-whatsapp {
  background: #F8FAFC;
  color: #0F172A !important;
  border: 1px solid #CBD5E1;
}

.btn-footer-whatsapp svg,
.btn-footer-whatsapp svg path {
  fill: none !important;
  stroke: #0F172A !important;
}

.btn-footer-whatsapp:hover {
  background: #0F172A;
  color: #FFFFFF !important;
  border-color: #0F172A;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.25);
}

.btn-footer-whatsapp:hover svg,
.btn-footer-whatsapp:hover svg path {
  fill: none !important;
  stroke: #ffdb00 !important;
}

/* Footer Social Links Row */
.footer-social-row {
  margin-top: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-social-row .social-label {
  font-size: 0.8rem;
  font-weight: 700;
  color: #64748B;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-social-icons {
  display: flex;
  align-items: center;
  gap: 8px;
}

.social-btn {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.social-btn svg {
  fill: none !important;
  transition: stroke 0.2s ease, transform 0.2s ease;
}

/* Facebook Official Blue */
.facebook-btn {
  background: #EFF6FF;
  border: 1px solid rgba(24, 119, 242, 0.25);
  color: #1877F2;
}

.facebook-btn svg {
  stroke: #1877F2 !important;
}

.facebook-btn:hover {
  background: #1877F2;
  border-color: #1877F2;
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(24, 119, 242, 0.4);
}

.facebook-btn:hover svg {
  stroke: #FFFFFF !important;
  transform: scale(1.1);
}

/* Instagram Official Gradient / Magenta */
.instagram-btn {
  background: #FDF2F8;
  border: 1px solid rgba(225, 48, 108, 0.25);
  color: #E1306C;
}

.instagram-btn svg {
  stroke: #E1306C !important;
}

.instagram-btn:hover {
  background: linear-gradient(45deg, #F58529, #DD2A7B, #8134AF);
  border-color: #DD2A7B;
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(221, 42, 123, 0.4);
}

.instagram-btn:hover svg {
  stroke: #FFFFFF !important;
  transform: scale(1.1);
}

/* WhatsApp Official Green */
.whatsapp-btn {
  background: #ECFDF5;
  border: 1px solid rgba(37, 211, 102, 0.25);
  color: #25D366;
}

.whatsapp-btn svg {
  stroke: #25D366 !important;
}

.whatsapp-btn:hover {
  background: #25D366;
  border-color: #25D366;
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.4);
}

.whatsapp-btn:hover svg {
  stroke: #FFFFFF !important;
  transform: scale(1.1);
}

/* Contact Page Social Connect Card */
.contact-social-card {
  background-color: #FFFFFF;
  border: 1.5px solid #E2E8F0;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.04);
}

.social-card-header {
  margin-bottom: 12px;
}

.social-card-badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #0F172A;
  background-color: #ffdb00;
  padding: 2px 8px;
  border-radius: 6px;
  margin-bottom: 6px;
}

.contact-social-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 800;
  color: #0F172A;
  margin-bottom: 4px;
}

.contact-social-desc {
  font-size: 0.8rem;
  color: #64748B;
  line-height: 1.4;
  margin-bottom: 0;
}

.contact-social-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 12px;
}

.btn-social-connect {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 8px 10px;
  border-radius: 10px;
  font-size: 0.78rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn-social-connect svg {
  fill: none !important;
  transition: stroke 0.2s ease;
}

/* Contact Page Brand Variants */
.fb-connect {
  background: #EFF6FF;
  border: 1.5px solid rgba(24, 119, 242, 0.3);
  color: #1877F2;
}

.fb-connect svg {
  stroke: #1877F2 !important;
}

.fb-connect:hover {
  background: #1877F2;
  color: #FFFFFF !important;
  border-color: #1877F2;
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(24, 119, 242, 0.35);
}

.fb-connect:hover svg {
  stroke: #FFFFFF !important;
}

.insta-connect {
  background: #FDF2F8;
  border: 1.5px solid rgba(225, 48, 108, 0.3);
  color: #E1306C;
}

.insta-connect svg {
  stroke: #E1306C !important;
}

.insta-connect:hover {
  background: linear-gradient(45deg, #F58529, #DD2A7B, #8134AF);
  color: #FFFFFF !important;
  border-color: #DD2A7B;
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(221, 42, 123, 0.35);
}

.insta-connect:hover svg {
  stroke: #FFFFFF !important;
}

.wa-connect {
  background: #ECFDF5;
  border: 1.5px solid rgba(37, 211, 102, 0.3);
  color: #059669;
}

.wa-connect svg {
  stroke: #25D366 !important;
}

.wa-connect:hover {
  background: #25D366;
  color: #FFFFFF !important;
  border-color: #25D366;
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
}

.wa-connect:hover svg {
  stroke: #FFFFFF !important;
}

/* Footer Bottom Bar & Designed By Niyan IT Solutions */
.footer-bottom-bar {
  border-top: 1px solid #E2E8F0;
  margin-top: 40px;
  padding-top: 22px;
  padding-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.85rem;
  color: #64748B;
}

.copyright-text {
  margin: 0;
  color: #64748B;
}

.footer-designed-by {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-weight: 500;
  color: #475569;
  font-size: 0.84rem;
}

.footer-designed-by .heart-icon {
  display: inline-block;
  animation: pulse-heart 1.5s ease infinite;
  color: #EF4444;
  font-size: 0.70rem;
  line-height: 1;
  vertical-align: middle;
}

@keyframes pulse-heart {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.15);
  }
}

.footer-designed-by .designer-link,
.footer-designed-by .designer-name {
  font-weight: 700;
  color: #0F172A;
  text-decoration: none;
  letter-spacing: 0.2px;
  transition: color 0.2s ease;
}

.footer-designed-by .designer-link:hover {
  color: #D97706;
  text-decoration: underline;
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-bottom-links a {
  color: #64748B;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-bottom-links a:hover {
  color: #0F172A;
}

.dot-sep {
  color: #CBD5E1;
}

@media (max-width: 768px) {
  .footer-bottom-bar {
    flex-direction: column;
    text-align: center;
    gap: 12px;
    align-items: center;
  }
}

/* Global Floating WhatsApp & Call Quick Connect Widget */
.floating-contact-widget {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 99999;
}

.float-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  position: relative;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.float-btn:hover {
  transform: scale(1.12) translateY(-2px);
}

.float-whatsapp {
  background: #25D366;
  border: 2px solid #FFFFFF;
}

.float-whatsapp:hover {
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.55);
}

.float-phone {
  background: #0F172A;
  border: 2px solid #ffdb00;
}

.float-phone:hover {
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.5);
  background: #ffdb00;
}

.float-phone:hover svg {
  stroke: #0F172A;
}

.float-tooltip {
  position: absolute;
  right: 60px;
  background: #0F172A;
  color: #FFFFFF;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: all 0.2s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.float-btn:hover .float-tooltip {
  opacity: 1;
  right: 64px;
}

@media (max-width: 768px) {
  .floating-contact-widget {
    bottom: 18px;
    right: 16px;
    gap: 10px;
  }
  .float-btn {
    width: 44px;
    height: 44px;
  }
  .float-btn svg {
    width: 22px;
    height: 22px;
  }
  .float-tooltip {
    display: none;
  }
}

.footer-bottom-bar {
  border-top: 1px solid #E2E8F0;
  padding-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.copyright-text {
  color: #64748B;
  font-size: 0.84rem;
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-bottom-links a {
  color: #64748B;
  text-decoration: none;
  font-size: 0.84rem;
  transition: color 0.2s ease;
}

.footer-bottom-links a:hover {
  color: #ffdb00;
}

.dot-sep {
  color: #CBD5E1;
}

/* CTA & Footer Responsive */
@media (max-width: 992px) {
  .cta-compact-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
  }

  .cta-compact-right {
    width: 100%;
    margin-top: 8px;
  }

  .footer-top-row {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 576px) {
  .cta-compact-right {
    flex-direction: column;
    width: 100%;
  }

  .cta-compact-right .btn-about-yellow, .btn-cta-phone {
    width: 100%;
    justify-content: center;
  }

  .footer-top-row {
    grid-template-columns: 1fr;
  }

  .footer-bottom-bar {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ==========================================================================
   Smooth Scroll Reveal Animations System
   ========================================================================== */

.reveal,
.reveal-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1), transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal-left {
  opacity: 0;
  transform: translateX(-35px);
  transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1), transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal-right {
  opacity: 0;
  transform: translateX(35px);
  transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1), transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.95) translateY(20px);
  transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1), transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal-fade {
  opacity: 0;
  transition: opacity 0.8s ease;
  will-change: opacity;
}

/* Active State Triggers */
.reveal.active,
.reveal-up.active,
.reveal-left.active,
.reveal-right.active,
.reveal-scale.active,
.reveal-fade.active {
  opacity: 1;
  transform: translate(0, 0) scale(1);
}

/* Stagger Children Container */
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1), transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal-stagger.active > *:nth-child(1) { transition-delay: 0.05s; opacity: 1; transform: translateY(0); }
.reveal-stagger.active > *:nth-child(2) { transition-delay: 0.12s; opacity: 1; transform: translateY(0); }
.reveal-stagger.active > *:nth-child(3) { transition-delay: 0.19s; opacity: 1; transform: translateY(0); }
.reveal-stagger.active > *:nth-child(4) { transition-delay: 0.26s; opacity: 1; transform: translateY(0); }
.reveal-stagger.active > *:nth-child(5) { transition-delay: 0.33s; opacity: 1; transform: translateY(0); }
.reveal-stagger.active > *:nth-child(6) { transition-delay: 0.40s; opacity: 1; transform: translateY(0); }
.reveal-stagger.active > *:nth-child(7) { transition-delay: 0.47s; opacity: 1; transform: translateY(0); }
.reveal-stagger.active > *:nth-child(8) { transition-delay: 0.54s; opacity: 1; transform: translateY(0); }

/* Disable animations for users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-up, .reveal-left, .reveal-right, .reveal-scale, .reveal-fade, .reveal-stagger > * {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* ==========================================================================
   Comprehensive Global Responsive Audit & Presentation Polish
   ========================================================================== */

/* Prevent Horizontal Overflow Globally */
html, body {
  overflow-x: clip;
  max-width: 100%;
}

/* Tablet & Laptop Enhancements (max-width: 992px) */
@media (max-width: 992px) {
  .plans-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .why-cards-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .about-compact-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .about-compact-media {
    max-width: 480px;
    margin: 0 auto;
  }

  .services-main-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .service-left-featured {
    height: 320px;
  }
}

/* Mobile Devices (max-width: 768px) */
@media (max-width: 768px) {
  .container {
    padding: 0 18px;
  }

  /* Header Navigation - Mobile */
  .nav-container {
    height: 68px;
  }

  .logo-link {
    height: 36px;
    max-width: 160px;
  }

  .logo-img {
    height: 34px;
    max-height: 34px;
    max-width: 100%;
  }

  .nav-menu {
    top: 68px;
    max-height: calc(100vh - 68px);
  }

  .footer-logo-img {
    height: 36px;
    max-width: 160px;
  }

  /* Hero Section - Mobile Devices (Exact Match to Reference Screenshot) */
  .hero-section {
    min-height: 640px;
    padding: 24px 0 22px 0;
    display: flex;
    align-items: stretch;
  }

  .hero-bg-img {
    object-position: center top;
  }

  .hero-container {
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 590px;
  }

  .hero-content {
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 590px;
    padding: 0;
    background: transparent;
    border: none;
    box-shadow: none;
  }

  .hero-top-yellow-line {
    width: 44px;
    height: 3.5px;
    margin-bottom: 10px;
  }

  .hero-stats-ticker {
    font-size: 0.84rem;
    gap: 8px;
    margin-bottom: 10px;
  }

  .stat-diamond {
    font-size: 0.65rem;
  }

  .hero-title {
    font-size: 2.25rem !important;
    line-height: 1.15 !important;
    letter-spacing: -0.02em;
    margin-bottom: 10px;
  }

  .hero-title .text-gold,
  .hero-title .text-yellow {
    color: #FFB800 !important;
  }

  .hero-bottom-yellow-dash {
    width: 28px;
    height: 2.5px;
    margin-bottom: 12px;
  }

  .hero-desc {
    font-size: 0.88rem;
    line-height: 1.55;
    color: #0F172A;
    font-weight: 500;
    max-width: 320px;
    margin-bottom: 20px;
  }

  /* 4 Vertical Circular Feature Badges (Left Aligned on Lawn) */
  .hero-features-strip {
    display: flex !important;
    flex-direction: column !important;
    gap: 12px;
    max-width: 210px;
    width: fit-content;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
    margin-bottom: auto;
  }

  .strip-feature-item {
    display: grid !important;
    grid-template-columns: 42px 1fr !important;
    align-items: center !important;
    gap: 12px !important;
    padding: 0 !important;
    background: transparent !important;
    border: none !important;
    width: 100%;
  }

  .strip-icon-box {
    width: 42px !important;
    height: 42px !important;
    min-width: 42px !important;
    border-radius: 50% !important;
    background: #FFFFFF !important;
    border: 2px solid #FFB800 !important;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0 !important;
    color: #FFB800 !important;
  }

  .strip-icon-box svg {
    width: 20px !important;
    height: 20px !important;
    stroke: #FFB800 !important;
    stroke-width: 2.2 !important;
  }

  .strip-label {
    font-size: 0.82rem !important;
    font-weight: 750 !important;
    color: #FFFFFF !important;
    line-height: 1.15 !important;
    text-align: left !important;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.95), 0 2px 8px rgba(0, 0, 0, 0.75) !important;
    white-space: nowrap !important;
  }

  .strip-divider {
    display: none !important;
  }

  /* Bottom Actions Card - Side by Side */
  .hero-actions {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    width: 100%;
    background: #FFFFFF;
    border-radius: 18px;
    padding: 10px 12px;
    box-shadow: 0 10px 30px rgba(3, 30, 54, 0.16);
    border: 1.5px solid #E2E8F0;
    margin-top: 20px;
    margin-bottom: 6px;
  }

  .btn-text-short {
    display: inline;
  }

  .btn-text-full {
    display: none;
  }

  .btn-hero-primary {
    flex: 1;
    min-width: 0;
    width: auto;
    justify-content: center;
    padding: 12px 10px;
    font-size: 0.85rem;
    border-radius: 10px;
    font-weight: 800;
    white-space: nowrap;
    gap: 4px;
  }

  .btn-hero-star-link {
    flex: 1;
    min-width: 0;
    width: auto;
    justify-content: center;
    padding: 11px 10px;
    font-size: 0.82rem;
    border-radius: 10px;
    background: #031E36;
    color: #FFFFFF;
    border: none;
    font-weight: 750;
    white-space: nowrap;
    gap: 4px;
  }

  .btn-hero-star-link:hover {
    background: #FFB800;
    color: #031E36;
  }

  /* About Section - Mobile Devices */
  .about-section {
    padding: 36px 0;
  }

  .about-compact-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .about-compact-media {
    width: 100%;
    max-width: 460px;
    margin: 0 auto;
  }

  .about-compact-img-box {
    height: 220px;
    width: 100%;
  }

  .about-compact-badge {
    font-size: 0.72rem;
    padding: 7px 12px;
    bottom: 10px;
    left: 10px;
    right: 10px;
  }

  .about-experience-badge {
    padding: 5px 10px;
    top: 10px;
    right: 10px;
  }

  .about-compact-content {
    width: 100%;
  }

  .about-compact-text {
    font-size: 0.86rem;
    line-height: 1.55;
    margin-bottom: 16px;
  }

  .about-features-row {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-bottom: 18px;
  }

  .about-feature-card {
    padding: 10px 14px;
    width: 100%;
  }

  .about-action-row {
    flex-direction: column;
    width: 100%;
    gap: 10px;
  }

  .btn-about-yellow {
    width: 100%;
    justify-content: center;
    padding: 12px 20px;
    font-size: 0.90rem;
  }

  .btn-cta-phone {
    width: 100%;
    justify-content: center;
    padding: 11px 20px;
    font-size: 0.88rem;
  }

  /* Services Section - Mobile Devices */
  .services-section {
    padding: 38px 0;
  }

  .services-header-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 22px;
  }

  .services-header-right {
    width: 100%;
    margin-bottom: 0;
  }

  .services-header-right .btn {
    width: 100%;
    justify-content: center;
    padding: 12px 20px;
    font-size: 0.92rem;
  }

  .services-main-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 20px;
  }

  .service-left-featured {
    min-height: 270px;
    padding: 22px 18px;
    border-radius: 16px;
  }

  .featured-title {
    font-size: 1.42rem;
    line-height: 1.25;
    margin-bottom: 8px;
  }

  .featured-desc {
    font-size: 0.82rem;
    max-width: 100%;
    margin-bottom: 14px;
  }

  .btn-know-more {
    width: 100%;
    justify-content: center;
    padding: 10px 16px;
    font-size: 0.84rem;
  }

  .services-6cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .service-overlay-card {
    height: 165px;
    border-radius: 12px;
  }

  .overlay-card-content {
    bottom: 12px;
    left: 12px;
    right: 12px;
  }

  .overlay-card-num {
    font-size: 1.5rem;
  }

  .overlay-card-divider {
    height: 20px;
    margin: 0 8px;
  }

  .overlay-card-title {
    font-size: 0.82rem;
    line-height: 1.2;
  }

  .services-trust-strip {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    padding: 14px;
    border-radius: 12px;
  }

  .trust-strip-icon {
    width: 34px;
    height: 34px;
  }

  .trust-strip-icon svg {
    width: 18px;
    height: 18px;
  }

  .trust-title {
    font-size: 0.80rem;
  }

  .trust-desc {
    font-size: 0.70rem;
  }

  /* Serviceable Areas Section - Mobile Devices */
  .serviceable-areas-section {
    padding: 26px 0 30px 0;
  }

  .areas-main-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .area-card-banner {
    height: 180px;
  }

  .area-city-name {
    font-size: 1.45rem;
  }

  .area-card-body {
    padding: 14px 16px;
  }

  .area-card-desc {
    font-size: 0.82rem;
    margin-bottom: 12px;
  }

  .area-card-actions {
    flex-direction: column;
    gap: 8px;
  }

  .btn-area-primary,
  .btn-area-secondary {
    width: 100%;
    justify-content: center;
    padding: 10px 14px;
  }

  /* Process Section - Mobile Devices */
  .process-section {
    padding: 38px 0;
  }

  .process-steps-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 20px;
  }

  .process-step-card {
    padding: 14px 10px 10px 10px;
    border-radius: 14px;
  }

  .step-num-badge {
    width: 22px;
    height: 22px;
    font-size: 0.70rem;
    top: 8px;
    left: 8px;
  }

  .step-icon-circle {
    width: 44px;
    height: 44px;
    margin-bottom: 8px;
  }

  .step-icon-circle svg {
    width: 26px;
    height: 26px;
  }

  .step-title {
    font-size: 0.85rem;
    margin-bottom: 2px;
  }

  .step-title-dash {
    width: 18px;
    height: 2px;
    margin-bottom: 6px;
  }

  .step-desc {
    font-size: 0.70rem;
    line-height: 1.35;
    margin-bottom: 8px;
  }

  .step-img-box {
    height: 80px;
    border-radius: 8px;
  }

  .card-step-arrow {
    display: none;
  }

  .process-bottom-row {
    flex-direction: column;
    gap: 14px;
  }

  .process-guarantees-banner {
    padding: 16px 14px;
    border-radius: 14px;
    width: 100%;
  }

  .guarantees-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .guarantee-item {
    gap: 8px;
  }

  .guarantee-icon {
    width: 30px;
    height: 30px;
    border-radius: 8px;
  }

  .guarantee-icon svg {
    width: 16px;
    height: 16px;
  }

  .guarantee-title {
    font-size: 0.80rem;
  }

  .guarantee-desc {
    font-size: 0.68rem;
  }

  .tagline-text {
    font-size: 0.78rem;
  }

  .process-visit-card {
    flex-direction: column;
    width: 100%;
    border-radius: 14px;
  }

  .visit-card-img-box {
    width: 100%;
    height: 140px;
  }

  .visit-card-content {
    padding: 16px;
  }

  .visit-title {
    font-size: 1.05rem;
  }

  .btn-visit-yellow {
    width: 100%;
    justify-content: center;
    padding: 11px 16px;
  }

  /* Why Steelnbricks - Mobile Devices */
  .why-us-section {
    padding: 38px 0;
  }

  .why-bg-polygon {
    width: 65px;
    left: -10px;
    opacity: 0.95;
    height: 390px;
  }

  .why-left-content {
    padding-left: 44px;
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .why-heading {
    font-size: 1.6rem !important;
    line-height: 1.22 !important;
  }

  .why-description {
    font-size: 0.86rem;
    line-height: 1.5;
  }

  .why-mini-badges {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-bottom: 12px;
  }

  .why-mini-badge {
    flex-direction: column;
    text-align: center;
    gap: 4px;
    padding: 8px 4px;
    background: #FFFFFF;
    border: 1px solid #EEF2F6;
    border-radius: 10px;
  }

  .mini-badge-hex {
    width: 32px;
    height: 32px;
  }

  .mini-badge-hex svg {
    width: 28px;
    height: 28px;
  }

  .mini-badge-label {
    font-size: 0.68rem;
    line-height: 1.15;
  }

  .why-sketch-wrapper {
    height: 135px;
    border-radius: 10px;
  }

  .why-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .why-card {
    padding: 16px 10px 14px 10px;
    border-radius: 12px;
  }

  .why-card-number {
    font-size: 0.75rem;
    top: 8px;
    right: 10px;
  }

  .why-card-icon-box {
    width: 44px;
    height: 44px;
    margin-bottom: 8px;
  }

  .why-card-icon-box svg {
    width: 28px;
    height: 28px;
  }

  .why-card-title {
    font-size: 0.84rem;
    margin-bottom: 4px;
  }

  .why-card-desc {
    font-size: 0.72rem;
    line-height: 1.35;
  }

  .why-card-pill {
    width: 22px;
    height: 2.5px;
    margin-top: 8px;
  }

  .why-bottom-banner {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    padding: 16px;
    border-radius: 14px;
  }

  .banner-stat-item {
    gap: 10px;
  }

  .stat-icon-circle {
    width: 36px;
    height: 36px;
  }

  .stat-icon-circle svg {
    width: 18px;
    height: 18px;
  }

  .stat-num-yellow {
    font-size: 1.15rem;
  }

  .stat-label-white {
    font-size: 0.75rem;
  }

  /* Plans Section - Mobile Devices */
  .plans-section {
    padding: 38px 0;
  }

  .plans-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    padding-top: 14px;
  }

  .plan-card {
    border-radius: 12px;
  }

  .plan-card-body {
    padding: 14px 12px;
  }

  .plan-tag {
    font-size: 0.62rem;
  }

  .plan-title {
    font-size: 1.02rem;
    margin-bottom: 6px;
  }

  .plan-price-pill {
    padding: 4px 8px;
    margin-bottom: 6px;
    border-radius: 6px;
  }

  .plan-price {
    font-size: 1.35rem;
  }

  .plan-unit {
    font-size: 0.68rem;
  }

  .plan-desc {
    font-size: 0.70rem;
    line-height: 1.35;
    margin-bottom: 10px;
  }

  .btn-plan-action {
    padding: 8px 10px;
    font-size: 0.76rem;
    border-radius: 8px;
  }

  .featured-badge-top {
    font-size: 0.60rem;
    padding: 2px 8px;
    top: -10px;
  }

  .plans-bottom-actions {
    flex-direction: column;
    width: 100%;
    gap: 10px;
    margin-top: 20px;
  }

  .plans-bottom-actions .btn {
    width: 100%;
    justify-content: center;
    padding: 12px 20px;
    font-size: 0.90rem;
    border-radius: 10px;
  }

  /* Inspiration Section - Mobile Devices */
  .inspiration-section {
    padding: 36px 0 42px 0;
  }

  .inspiration-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 18px;
  }

  .inspiration-header-right {
    width: 100%;
    margin-bottom: 0;
  }

  .inspiration-header-right .btn {
    width: 100%;
    justify-content: center;
    padding: 11px 20px;
    font-size: 0.90rem;
    border-radius: 10px;
  }

  .inspiration-card {
    min-width: 230px;
    max-width: 240px;
    height: 260px;
    border-radius: 12px;
  }

  .inspiration-card-content {
    padding: 14px;
  }

  .inspiration-card-tag {
    font-size: 0.70rem;
    letter-spacing: 0.8px;
    margin-bottom: 4px;
  }

  .inspiration-card-title {
    font-size: 0.96rem;
    line-height: 1.25;
  }

  .inspiration-track-inner {
    gap: 12px;
  }

  /* Core Values Section - Mobile Devices */
  .core-values-section {
    padding: 36px 0;
  }

  .core-values-container {
    gap: 10px;
    padding: 0 14px;
  }

  .core-values-row {
    gap: 10px;
  }

  .values-row-2col {
    grid-template-columns: 1fr 1fr;
  }

  .values-row-3col {
    grid-template-columns: 1fr;
  }

  .core-value-cell {
    padding: 16px 14px;
    border-radius: 10px;
  }

  .value-cell-title {
    font-size: 0.95rem;
    margin-bottom: 4px;
  }

  .value-cell-desc {
    font-size: 0.74rem;
    line-height: 1.35;
  }

  .core-value-logo-cell {
    padding: 14px;
    border-radius: 10px;
  }

  .core-logo-img {
    max-height: 40px;
  }

  /* Compact CTA Section - Mobile Devices */
  .cta-compact-section {
    padding: 28px 0;
  }

  .cta-compact-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 18px 16px;
    border-radius: 14px;
  }

  .cta-compact-card .why-heading {
    font-size: 1.35rem !important;
    line-height: 1.25 !important;
  }

  .cta-compact-card .why-description {
    font-size: 0.84rem;
    line-height: 1.45;
  }

  .cta-compact-right {
    flex-direction: column;
    width: 100%;
    gap: 10px;
  }

  .cta-compact-right .btn-about-yellow,
  .cta-compact-right .btn-cta-phone {
    width: 100%;
    justify-content: center;
    padding: 12px 20px;
    font-size: 0.90rem;
  }

  /* Quote Modal - Mobile */
  .modal-card {
    margin: 16px;
    width: calc(100% - 32px);
    max-height: 90vh;
    overflow-y: auto;
    border-radius: 16px;
  }

  .modal-header {
    padding: 18px 20px;
  }

  .modal-title {
    font-size: 1.18rem;
  }

  .modal-body {
    padding: 18px 20px;
  }
}

/* Small Screens / Mobile Phones (max-width: 480px) */
@media (max-width: 480px) {
  .container {
    padding: 0 14px;
  }

  /* Header Navigation - Small Mobile */
  .nav-container {
    height: 62px;
  }

  .logo-link {
    height: 32px;
    max-width: 135px;
  }

  .logo-img {
    height: 30px;
    max-height: 30px;
    max-width: 100%;
  }

  .mobile-toggle {
    width: 38px;
    height: 38px;
  }

  .nav-menu {
    top: 62px;
    max-height: calc(100vh - 62px);
  }

  .footer-logo-img {
    height: 32px;
    max-width: 135px;
  }

  /* Hero Section - Small Mobile Screens */
  .hero-section {
    min-height: 580px;
    padding: 20px 0 18px 0;
    display: flex;
    align-items: stretch;
  }

  .hero-container {
    min-height: 540px;
    height: 100%;
  }

  .hero-content {
    min-height: 540px;
    height: 100%;
  }

  .hero-top-yellow-line {
    width: 36px;
    height: 3px;
    margin-bottom: 8px;
  }

  .hero-stats-ticker {
    font-size: 0.78rem;
    gap: 6px;
    margin-bottom: 8px;
  }

  .stat-diamond {
    font-size: 0.60rem;
  }

  .hero-title {
    font-size: 2.0rem !important;
    line-height: 1.15 !important;
    margin-bottom: 8px;
  }

  .hero-desc {
    font-size: 0.84rem;
    line-height: 1.5;
    max-width: 290px;
    margin-bottom: 16px;
  }

  .hero-features-strip {
    gap: 10px;
    max-width: 190px;
    margin-bottom: auto;
  }

  .strip-feature-item {
    grid-template-columns: 36px 1fr !important;
    gap: 10px !important;
  }

  .strip-icon-box {
    width: 36px !important;
    height: 36px !important;
    min-width: 36px !important;
  }

  .strip-icon-box svg {
    width: 17px !important;
    height: 17px !important;
  }

  .strip-label {
    font-size: 0.76rem !important;
    line-height: 1.15 !important;
  }

  .hero-actions {
    padding: 8px 10px;
    gap: 8px;
    border-radius: 16px;
    margin-top: 16px;
    margin-bottom: 4px;
  }

  .btn-hero-primary {
    padding: 11px 8px;
    font-size: 0.78rem;
  }

  .btn-hero-star-link {
    padding: 10px 8px;
    font-size: 0.75rem;
  }

  /* About Section - Small Mobile Screens */
  .about-section {
    padding: 30px 0;
  }

  .about-compact-img-box {
    height: 190px;
  }

  .about-compact-badge {
    font-size: 0.68rem;
    padding: 6px 10px;
  }

  .exp-num {
    font-size: 1rem;
  }

  .exp-label {
    font-size: 0.60rem;
  }

  .about-feature-card {
    padding: 8px 12px;
    gap: 10px;
  }

  .feature-card-icon {
    width: 28px;
    height: 28px;
  }

  .feature-card-icon svg {
    width: 15px;
    height: 15px;
  }

  .feature-card-title {
    font-size: 0.80rem;
  }

  .feature-card-sub {
    font-size: 0.68rem;
  }

  /* Services Section - Small Mobile Screens */
  .services-section {
    padding: 32px 0;
  }

  .service-left-featured {
    min-height: 240px;
    padding: 18px 14px;
  }

  .featured-title {
    font-size: 1.28rem;
  }

  .services-6cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .service-overlay-card {
    height: 145px;
  }

  .overlay-card-content {
    bottom: 10px;
    left: 10px;
    right: 10px;
  }

  .overlay-card-num {
    font-size: 1.3rem;
  }

  .overlay-card-divider {
    height: 16px;
    margin: 0 5px;
  }

  .overlay-card-title {
    font-size: 0.75rem;
  }

  .services-trust-strip {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 12px;
  }

  /* Serviceable Areas Section - Small Mobile Screens */
  .serviceable-areas-section {
    padding: 22px 0 26px 0;
  }

  .area-card-banner {
    height: 165px;
  }

  .area-banner-badge {
    font-size: 0.65rem;
    padding: 4px 9px;
  }

  .area-city-name {
    font-size: 1.3rem;
  }

  .area-card-body {
    padding: 12px 14px;
  }

  .area-card-desc {
    font-size: 0.80rem;
    margin-bottom: 12px;
  }

  .btn-area-primary {
    font-size: 0.82rem;
  }

  /* Process Section - Small Mobile Screens */
  .process-section {
    padding: 30px 0;
  }

  .process-steps-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .process-step-card {
    padding: 12px 8px 8px 8px;
  }

  .step-icon-circle {
    width: 38px;
    height: 38px;
  }

  .step-icon-circle svg {
    width: 22px;
    height: 22px;
  }

  .step-title {
    font-size: 0.78rem;
  }

  .step-desc {
    font-size: 0.66rem;
    line-height: 1.25;
  }

  .step-img-box {
    height: 70px;
  }

  .guarantees-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .process-visit-card .visit-card-img-box {
    height: 120px;
  }

  .visit-title {
    font-size: 0.95rem;
  }

  /* Why Steelnbricks - Small Mobile Screens */
  .why-us-section {
    padding: 30px 0;
  }

  .why-bg-polygon {
    width: 52px;
    left: -10px;
    opacity: 0.95;
    height: 340px;
  }

  .why-left-content {
    padding-left: 36px;
  }

  .why-heading {
    font-size: 1.38rem !important;
  }

  .why-mini-badges {
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
  }

  .mini-badge-label {
    font-size: 0.64rem;
  }

  .why-sketch-wrapper {
    height: 115px;
  }

  .why-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .why-card {
    padding: 12px 8px 10px 8px;
  }

  .why-card-icon-box {
    width: 38px;
    height: 38px;
  }

  .why-card-icon-box svg {
    width: 24px;
    height: 24px;
  }

  .why-card-title {
    font-size: 0.78rem;
  }

  .why-card-desc {
    font-size: 0.68rem;
    line-height: 1.25;
  }

  .why-bottom-banner {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px 8px;
    padding: 14px 10px;
    border-radius: 12px;
  }

  .banner-stat-item {
    gap: 8px;
    align-items: center;
    width: auto;
  }

  .banner-stat-item .stat-icon-circle {
    width: 32px;
    height: 32px;
  }

  .banner-stat-item .stat-icon-circle svg {
    width: 16px;
    height: 16px;
  }

  .banner-stat-item .stat-num-yellow {
    font-size: 0.98rem;
  }

  .banner-stat-item .stat-label-white {
    font-size: 0.68rem;
    line-height: 1.15;
  }

  /* Plans Section - Small Mobile Screens */
  .plans-section {
    padding: 30px 0;
  }

  .plans-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    padding-top: 14px;
  }

  .plan-card-body {
    padding: 16px 16px;
  }

  .plan-title {
    font-size: 1.15rem;
  }

  .plan-price {
    font-size: 1.5rem;
  }

  .plan-desc {
    font-size: 0.78rem;
    margin-bottom: 12px;
  }

  .btn-plan-action {
    padding: 10px 16px;
    font-size: 0.82rem;
  }

  .plans-bottom-actions {
    flex-direction: column;
    width: 100%;
    gap: 8px;
  }

  .plans-bottom-actions .btn {
    width: 100%;
  }

  /* Inspiration Section - Small Mobile Screens */
  .inspiration-section {
    padding: 28px 0 36px 0;
  }

  .inspiration-card {
    min-width: 200px;
    max-width: 210px;
    height: 230px;
  }

  .inspiration-card-content {
    padding: 12px;
  }

  .inspiration-card-title {
    font-size: 0.88rem;
  }

  /* Core Values Section - Small Mobile Screens */
  .core-values-section {
    padding: 30px 0;
  }

  .core-values-container {
    gap: 8px;
    padding: 0 12px;
  }

  .core-values-row {
    gap: 8px;
  }

  .values-row-2col {
    grid-template-columns: 1fr;
  }

  .values-row-3col {
    grid-template-columns: 1fr;
  }

  .core-value-cell {
    padding: 14px 12px;
  }

  .value-cell-title {
    font-size: 0.90rem;
  }

  .value-cell-desc {
    font-size: 0.72rem;
  }

  .core-logo-img {
    max-height: 36px;
  }

  /* Compact CTA Section - Small Mobile Screens */
  .cta-compact-card {
    padding: 16px 12px;
  }

  .cta-compact-card .why-heading {
    font-size: 1.22rem !important;
  }

  .cta-compact-card .why-description {
    font-size: 0.78rem;
  }
}

/* Extra Small Screens (max-width: 360px) */
@media (max-width: 360px) {
  .container {
    padding: 0 10px;
  }

  .nav-container {
    height: 56px;
  }

  .logo-link {
    height: 28px;
    max-width: 115px;
  }

  .logo-img {
    height: 26px;
    max-height: 26px;
    max-width: 100%;
  }

  .mobile-toggle {
    width: 34px;
    height: 34px;
  }

  .nav-menu {
    top: 56px;
    max-height: calc(100vh - 56px);
  }

  .footer-logo-img {
    height: 28px;
    max-width: 115px;
  }
}

/* ==========================================================================
   Toast Notification & EmailJS Form Feedback
   ========================================================================== */
@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.form-toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  max-width: 420px;
  background: #0F172A;
  color: #FFFFFF;
  border-radius: 14px;
  padding: 16px 20px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
  border-left: 5px solid #ffdb00;
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 999999;
  transform: translateY(120px);
  opacity: 0;
  pointer-events: none;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  font-family: var(--font-body, 'Plus Jakarta Sans', sans-serif);
}

.form-toast.show {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.form-toast.toast-success {
  border-left-color: #10B981;
}

.form-toast.toast-error {
  border-left-color: #EF4444;
}

.form-toast-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.toast-success .form-toast-icon {
  background: rgba(16, 185, 129, 0.18);
  color: #10B981;
}

.toast-error .form-toast-icon {
  background: rgba(239, 68, 68, 0.18);
  color: #EF4444;
}

.form-toast-content {
  flex: 1;
}

.form-toast-title {
  font-family: var(--font-heading, 'Outfit', sans-serif);
  font-size: 0.95rem;
  font-weight: 750;
  color: #FFFFFF;
  margin-bottom: 2px;
}

.form-toast-msg {
  font-size: 0.82rem;
  color: #CBD5E1;
  line-height: 1.45;
}

.form-toast-close {
  background: none;
  border: none;
  color: #64748B;
  font-size: 1.4rem;
  cursor: pointer;
  padding: 0 4px;
  line-height: 1;
  transition: color 0.2s;
}

.form-toast-close:hover {
  color: #FFFFFF;
}

@media (max-width: 480px) {
  .form-toast {
    left: 16px;
    right: 16px;
    bottom: 16px;
    max-width: calc(100% - 32px);
    padding: 14px 16px;
  }
}