/* ==========================================================================
   BHOOMI NEER AGRO WELL CONSTRUCTION — ULTRA-PREMIUM HUMAN DESIGN SYSTEM
   ========================================================================== */

:root {
  /* Brand Palette Sampled From Bhoomi Neer Logo */
  --brand-blue-deep: #1A4FA0;
  /* Outer logo ring & primary CTAs */
  --brand-blue-mid: #2E86C1;
  /* Droplet gradient & borders */
  --brand-navy: #0B1F3A;
  /* "BHOOMI NEER" text & deep background */
  --brand-rust: #A0522D;
  /* Farmer silhouette earth color */
  --brand-soil: #7B3F1D;
  /* Ploughed field brown */
  --brand-green: #2E8B3D;
  /* Agronomist silhouette green */
  --brand-green-field: #4CA64C;
  /* Green field curve */
  --brand-green-wa: #25D366;
  /* WhatsApp direct action button */
  --bg-white: #FFFFFF;
  /* Background clean white */
  --ink-grey: #2D3748;
  /* Body typography high contrast */
  --ink-light: #64748B;
  /* Muted text */
  --bg-light: #F8FAFC;
  /* Light section fill */
  --bg-tint-blue: #F0F6FE;
  /* Subtle blue tint card fill */
  --bg-tint-green: #F0FDF4;
  /* Subtle green tint card fill */
  --bg-tint-rust: #FDF8F5;
  /* Subtle rust tint card fill */
  --border-light: #E2E8F0;
  /* Border subtle stroke */

  /* Typography — Professional Dual-Font System */
  --font-heading: 'Plus Jakarta Sans', 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-main: var(--font-body);

  /* Dimensions & Shadows */
  --container-max: 1280px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  --shadow-sm: 0 4px 12px rgba(11, 31, 58, 0.04);
  --shadow-md: 0 10px 30px rgba(11, 31, 58, 0.08);
  --shadow-lg: 0 20px 48px rgba(11, 31, 58, 0.14);
  --transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset & Core Setup */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  touch-action: manipulation;
  overflow-x: hidden;
  max-width: 100vw;
}

body {
  font-family: var(--font-body);
  font-feature-settings: 'cv02', 'cv03', 'cv04', 'cv11';
  color: var(--ink-grey);
  background-color: var(--bg-white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  max-width: 100vw;
}

.btn,
.service-card,
.project-tile,
.nav-mobile-overlay,
.article-modal-card,
#preloader,
.hamburger,
.tab-btn,
.btn-download {
  transform: translateZ(0);
  backface-visibility: hidden;
  will-change: transform, opacity;
}

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

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

ul,
ol {
  list-style: none;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* Typography Utilities */
h1,
h2,
h3,
h4,
h5,
h6,
.hero-title,
.section-title,
.brand-logo-title,
.card-title,
.stat-num,
.nav-link,
.btn,
.section-subtitle {
  font-family: var(--font-heading);
  letter-spacing: -0.025em;
}

h1,
.hero-title {
  color: var(--brand-navy);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.035em;
}

h2,
.section-title {
  color: var(--brand-navy);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

h3,
h4,
h5,
h6 {
  color: var(--brand-navy);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.text-green {
  color: var(--brand-green);
}

.text-blue {
  color: var(--brand-blue-deep);
}

.text-rust {
  color: var(--brand-rust);
}

.section-subtitle {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--brand-green);
  background: var(--bg-tint-green);
  padding: 0.4rem 1.1rem;
  border-radius: var(--radius-full);
  margin-bottom: 0.85rem;
  border: 1px solid rgba(46, 139, 61, 0.2);
}

.section-title {
  font-size: 2.35rem;
  font-weight: 800;
  color: var(--brand-navy);
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
}

.section-desc {
  font-size: 1.1rem;
  color: var(--ink-light);
  max-width: 700px;
  margin-bottom: 2.5rem;
}

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

.center-desc {
  margin-left: auto;
  margin-right: auto;
}

/* Buttons & CTAs */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.9rem 1.85rem;
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  box-shadow: var(--shadow-sm);
}

.btn-primary {
  background: linear-gradient(135deg, var(--brand-blue-deep) 0%, var(--brand-navy) 100%);
  color: var(--bg-white);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.btn-secondary {
  background: linear-gradient(135deg, var(--brand-rust) 0%, var(--brand-soil) 100%);
  color: var(--bg-white);
}

.btn-secondary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.btn-green {
  background: var(--brand-green);
  color: var(--bg-white);
}

.btn-green:hover {
  background: #246e30;
  transform: translateY(-3px);
}

.btn-whatsapp {
  background: var(--brand-green-wa);
  color: var(--bg-white);
}

.btn-whatsapp:hover {
  background: #1eb956;
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  border-color: var(--brand-blue-deep);
  color: var(--brand-blue-deep);
}

.btn-outline:hover {
  background: var(--brand-blue-deep);
  color: var(--bg-white);
}

.btn-outline-white {
  background: transparent;
  border-color: var(--bg-white);
  color: var(--bg-white);
}

.btn-outline-white:hover {
  background: var(--bg-white);
  color: var(--brand-navy);
}

.btn-sm {
  padding: 0.55rem 1.1rem;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 1.15rem 2.35rem;
  font-size: 1.05rem;
}

/* ==========================================================================
   1. TOP CONTACT BAR & LIVE PROJECT TICKER
   ========================================================================== */
.top-bar {
  background-color: var(--brand-navy);
  color: #CBD5E1;
  font-size: 0.85rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar-info {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.top-bar-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.top-bar-social {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.top-bar-social a {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
}

.top-bar-social a:hover {
  background: var(--brand-green);
  color: #FFFFFF;
}

/* Live Project Ticker Strip */
.project-ticker-strip {
  background: #071526;
  color: #94A3B8;
  font-size: 0.8rem;
  padding: 0.35rem 0;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.ticker-content {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.ticker-badge {
  background: var(--brand-rust);
  color: white;
  font-weight: 800;
  font-size: 0.7rem;
  padding: 0.15rem 0.6rem;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ==========================================================================
   2. MAIN NAVIGATION
   ========================================================================== */
.header-main {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 20px rgba(11, 31, 58, 0.06);
  transition: var(--transition);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1.25rem;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
}

.brand-logo img {
  height: 72px;
  width: 72px;
  object-fit: cover;
  border-radius: 50%;
  padding: 2px;
  background: linear-gradient(135deg, var(--brand-blue-deep) 0%, #D4AF37 100%);
  box-shadow: 0 4px 18px rgba(11, 31, 58, 0.18), 0 0 12px rgba(46, 134, 193, 0.25);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
  image-rendering: -webkit-optimize-contrast;
}

.brand-logo:hover img {
  transform: scale(1.08) rotate(2deg);
  box-shadow: 0 6px 24px rgba(11, 31, 58, 0.28), 0 0 20px rgba(212, 175, 55, 0.45);
}

.brand-logo-text {
  display: flex;
  flex-direction: column;
}

.brand-logo-title {
  font-size: 1.65rem;
  font-weight: 900;
  color: var(--brand-navy);
  letter-spacing: -0.6px;
  line-height: 1;
  font-family: var(--font-heading);
}

.brand-logo-sub {
  font-size: 0.76rem;
  font-weight: 800;
  color: var(--brand-blue-deep);
  letter-spacing: 0.6px;
  text-transform: uppercase;
  margin-top: 2px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.nav-actions .btn-primary {
  padding: 0.5rem 1.15rem;
  font-size: 0.85rem;
  border-radius: var(--radius-sm);
  letter-spacing: 0.2px;
  box-shadow: 0 2px 8px rgba(26, 79, 160, 0.2);
}

.nav-actions .btn-primary:hover {
  transform: translateY(-2px);
}

.nav-link {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--brand-navy);
  padding: 0.5rem 0;
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: var(--brand-green);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--brand-green);
  border-radius: 2px;
}

.hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: var(--brand-navy);
  cursor: pointer;
  padding: 0.25rem;
  align-items: center;
  justify-content: center;
}

/* ==========================================================================
   3. HERO SECTION
   ========================================================================== */
.hero {
  position: relative;
  background: linear-gradient(135deg, #F8FAFC 0%, var(--bg-tint-blue) 100%);
  padding: 4.5rem 0 5.5rem;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--bg-white);
  border: 1px solid rgba(46, 139, 61, 0.3);
  color: var(--brand-green);
  font-weight: 800;
  font-size: 0.88rem;
  padding: 0.45rem 1.15rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-sm);
}

.hero-title {
  font-size: 3.25rem;
  font-weight: 900;
  color: var(--brand-navy);
  line-height: 1.15;
  margin-bottom: 1.35rem;
  letter-spacing: -1px;
}

.hero-desc {
  font-size: 1.15rem;
  color: var(--ink-grey);
  margin-bottom: 2.25rem;
  line-height: 1.65;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.25rem;
}

.hero-trust-badges {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--border-light);
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--brand-navy);
}

.hero-image-wrapper {
  position: relative;
}

.hero-image-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 6px solid var(--bg-white);
}

.hero-image-card img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
}

.hero-floating-glass-card {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: rgba(11, 31, 58, 0.92);
  backdrop-filter: blur(12px);
  color: var(--bg-white);
  padding: 1.1rem 1.5rem;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: var(--shadow-md);
}

.badge-num {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--brand-green-field);
  line-height: 1;
}

.badge-text {
  font-size: 0.85rem;
  font-weight: 700;
  line-height: 1.3;
}

/* ==========================================================================
   4. TRUST / STATISTICS BAR
   ========================================================================== */
.stats-section {
  background: linear-gradient(135deg, var(--brand-navy) 0%, #071526 100%);
  color: var(--bg-white);
  padding: 2.75rem 0;
  margin-top: -2.5rem;
  position: relative;
  z-index: 10;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  box-shadow: var(--shadow-md);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-item {
  padding: 1rem;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item:last-child {
  border-right: none;
}

.stat-num {
  font-size: 3rem;
  font-weight: 900;
  color: #38BDF8;
  line-height: 1;
  margin-bottom: 0.4rem;
}

.stat-label {
  font-size: 0.95rem;
  font-weight: 700;
  color: #E2E8F0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ==========================================================================
   INTERACTIVE FARMER ESTIMATOR WIDGET
   ========================================================================== */
.estimator-section {
  padding: 4.5rem 0;
  background: var(--bg-white);
}

.estimator-card {
  background: linear-gradient(135deg, var(--bg-tint-blue) 0%, var(--bg-tint-green) 100%);
  border-radius: var(--radius-lg);
  padding: 3rem 2.5rem;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-md);
}

.estimator-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.estimator-inputs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.estimator-result-box {
  background: var(--brand-navy);
  color: white;
  border-radius: var(--radius-md);
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.estimator-output-val {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--brand-green-field);
  margin: 0.5rem 0;
}

/* ==========================================================================
   5. WHY CHOOSE US
   ========================================================================== */
.why-section {
  padding: 5rem 0;
  background-color: var(--bg-white);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.why-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.why-image img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.benefits-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin: 1.75rem 0 2.25rem;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--bg-light);
  padding: 0.9rem 1.2rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--brand-navy);
  border: 1px solid var(--border-light);
}

.benefit-icon {
  width: 24px;
  height: 24px;
  background: var(--brand-green);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.75rem;
}

/* ==========================================================================
   6. OUR SERVICES GRID (16 Cards & Category Filters)
   ========================================================================== */
.services-section {
  padding: 5.5rem 0;
  background-color: var(--bg-light);
}

.services-filter-tabs {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: var(--bg-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--brand-blue-mid);
}

.service-card-img {
  position: relative;
  height: 190px;
  overflow: hidden;
}

.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .service-card-img img {
  transform: scale(1.08);
}

.service-chip-badge {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 800;
  box-shadow: var(--shadow-sm);
}

.chip-blue {
  background-color: var(--brand-blue-deep);
}

.chip-rust {
  background-color: var(--brand-rust);
}

.chip-green {
  background-color: var(--brand-green);
}

.service-card-content {
  padding: 1.35rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-card-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--brand-navy);
  margin-bottom: 0.5rem;
}

.service-card-desc {
  font-size: 0.88rem;
  color: var(--ink-light);
  margin-bottom: 1.25rem;
  flex-grow: 1;
  line-height: 1.55;
}

.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 800;
  font-size: 0.88rem;
  color: var(--brand-blue-deep);
}

.service-card:hover .service-card-link {
  color: var(--brand-green);
}

/* ==========================================================================
   7. RECENT PROJECTS GALLERY
   ========================================================================== */
.projects-section {
  padding: 5.5rem 0;
  background: var(--bg-white);
}

.project-filter-tabs {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.tab-btn {
  padding: 0.65rem 1.65rem;
  border-radius: var(--radius-full);
  background: var(--bg-light);
  border: 1px solid var(--border-light);
  font-weight: 800;
  font-size: 0.9rem;
  color: var(--brand-navy);
  cursor: pointer;
  transition: var(--transition);
}

.tab-btn:hover,
.tab-btn.active {
  background: var(--brand-navy);
  color: var(--bg-white);
  border-color: var(--brand-navy);
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.project-tile {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  height: 290px;
}

.project-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.project-tile-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11, 31, 58, 0.92) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.35rem;
  color: white;
  opacity: 0.95;
  transition: var(--transition);
}

.project-tile:hover img {
  transform: scale(1.08);
}

.project-category {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--brand-green-field);
  letter-spacing: 1px;
}

.project-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: white;
}

/* ==========================================================================
   8. OUR 5-STEP PROCESS
   ========================================================================== */
.process-section {
  padding: 5.5rem 0;
  background: var(--bg-tint-blue);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.process-card {
  background: var(--bg-white);
  padding: 2rem 1.25rem;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
}

.process-num-badge {
  width: 50px;
  height: 50px;
  background: var(--brand-navy);
  color: var(--bg-white);
  font-weight: 900;
  font-size: 1.15rem;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.process-num-badge span {
  transform: rotate(45deg);
}

.process-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--brand-navy);
  margin-bottom: 0.5rem;
}

.process-desc {
  font-size: 0.85rem;
  color: var(--ink-light);
  line-height: 1.5;
}

/* ==========================================================================
   9 & 10. REVIEWS & TESTIMONIALS
   ========================================================================== */
.reviews-section {
  padding: 5.5rem 0;
  background: var(--bg-white);
}

.google-trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background: var(--bg-light);
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-full);
  margin-bottom: 2rem;
  border: 1px solid var(--border-light);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.testimonial-card {
  background: var(--bg-white);
  padding: 2.25rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-text {
  font-size: 0.98rem;
  font-style: italic;
  color: var(--ink-grey);
  margin-bottom: 1.5rem;
  line-height: 1.65;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--brand-blue-deep);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
}

/* ==========================================================================
   11. FREE SITE INSPECTION / QUOTE SECTION
   ========================================================================== */
.inspection-section {
  padding: 5.5rem 0;
  background: var(--bg-light);
}

.inspection-card {
  background: var(--brand-navy);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.inspection-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.inspection-form-wrapper {
  padding: 3.5rem 3rem;
  color: white;
}

.inspection-form-wrapper h2 {
  color: white;
  font-size: 2.25rem;
  margin-bottom: 0.5rem;
}

.inspection-form-wrapper p {
  color: #CBD5E1;
  margin-bottom: 2rem;
}

.form-group {
  margin-bottom: 1.35rem;
}

.form-label {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: #E2E8F0;
  margin-bottom: 0.4rem;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.9rem 1.1rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  color: white;
  font-family: var(--font-main);
  font-size: 0.95rem;
  transition: var(--transition);
}

.form-select option {
  background-color: var(--brand-navy);
  color: white;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--brand-green-field);
  background: rgba(255, 255, 255, 0.15);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.inspection-map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
  min-height: 480px;
}

/* ==========================================================================
   12. SERVICE AREAS
   ========================================================================== */
.areas-section {
  padding: 5.5rem 0;
  background: var(--bg-white);
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.area-card {
  background: var(--bg-light);
  padding: 2rem 1.35rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  text-align: center;
  transition: var(--transition);
}

.area-card:hover {
  background: var(--brand-navy);
  color: white;
  transform: translateY(-6px);
}

.area-card:hover h3 {
  color: white;
}

.area-card:hover p {
  color: #CBD5E1;
}

.area-icon {
  font-size: 2.2rem;
  margin-bottom: 0.85rem;
}

/* ==========================================================================
   13 & 14. CTA BANNER & FOOTER
   ========================================================================== */
.cta-banner {
  background: linear-gradient(135deg, var(--brand-blue-deep) 0%, var(--brand-navy) 100%);
  color: white;
  padding: 5rem 0;
  text-align: center;
}

.cta-banner h2 {
  color: white;
  font-size: 2.65rem;
  margin-bottom: 1rem;
}

.footer-main {
  background: var(--brand-navy);
  color: #CBD5E1;
  padding: 4.5rem 0 2rem;
  border-top: 5px solid var(--brand-green);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3.5rem;
  margin-bottom: 3.5rem;
}

.footer-col h3 {
  color: white;
  font-size: 1.2rem;
  margin-bottom: 1.35rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-col h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 35px;
  height: 3px;
  background: var(--brand-green);
}

.footer-links li {
  margin-bottom: 0.65rem;
}

.footer-links a {
  color: #94A3B8;
  font-size: 0.92rem;
}

.footer-links a:hover {
  color: var(--brand-green-field);
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: #94A3B8;
}

/* Mobile Fixed Sticky Bar */
.mobile-sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: var(--bg-white);
  border-top: 1px solid var(--border-light);
  padding: 0.65rem 1rem;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.12);
}

.mobile-sticky-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.nav-mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(11, 31, 58, 0.96);
  backdrop-filter: blur(16px);
  z-index: 2000;
  padding: 2rem;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.75rem;
}

.nav-mobile-overlay.active {
  display: flex;
}

.nav-mobile-link {
  font-size: 1.5rem;
  font-weight: 800;
  color: white;
}

.nav-mobile-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: white;
  font-size: 2.5rem;
  cursor: pointer;
}

/* Social Media Buttons */
.social-links-group {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  color: #FFFFFF !important;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.social-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.social-btn.instagram {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-btn.facebook {
  background: #1877F2;
}

.social-icon-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: #FFFFFF !important;
  text-decoration: none;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.social-icon-circle:hover {
  transform: translateY(-2px) scale(1.08);
  opacity: 0.9;
}

.social-icon-circle.instagram {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-icon-circle.facebook {
  background: #1877F2;
}

.social-icon-circle.youtube {
  background: #FF0000;
}

.social-icon-circle.twitter {
  background: #1DA1F2;
}

.social-icon-circle.linkedin {
  background: #0A66C2;
}

/* Mobile Touch Target Size Optimization (44px min height/width for SEO & Mobile Usability) */
@media (max-width: 768px) {
  a, button, .btn, input, select, textarea {
    min-height: 44px;
    touch-action: manipulation;
  }

  input, select, textarea {
    font-size: 16px !important; /* Prevents auto-zoom on mobile safari */
  }

  .social-icon-circle {
    width: 40px;
    height: 40px;
  }
}

/* ==========================================================================
   VISION & MISSION AUTO-SLIDER CAROUSEL
   ========================================================================== */
.vm-slider-wrapper {
  position: relative;
  max-width: 860px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 16px;
  padding: 0.25rem 0;
}

.vm-slider-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
}

.vm-slide {
  min-width: 100%;
  box-sizing: border-box;
  padding: 2.25rem 2.5rem;
  border-radius: 16px;
  transition: opacity 0.4s ease, transform 0.4s ease;
  position: relative;
  box-shadow: 0 10px 30px rgba(11, 31, 58, 0.06);
}

.vm-slide.vision-slide {
  background: linear-gradient(135deg, #F0F7FF 0%, #E0F2FE 100%);
  border-left: 6px solid var(--brand-blue-deep);
}

.vm-slide.mission-slide {
  background: linear-gradient(135deg, #ECFDF5 0%, #D1FAE5 100%);
  border-left: 6px solid #10B981;
}

.vm-slide.commitment-slide {
  background: linear-gradient(135deg, #FFFBEB 0%, #FEF3C7 100%);
  border-left: 6px solid #D4AF37;
}

.vm-slide-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  margin-bottom: 0.85rem;
}

.vision-slide .vm-slide-badge {
  background: rgba(46, 134, 193, 0.15);
  color: var(--brand-blue-deep);
}

.mission-slide .vm-slide-badge {
  background: rgba(16, 185, 129, 0.15);
  color: #059669;
}

.commitment-slide .vm-slide-badge {
  background: rgba(212, 175, 55, 0.2);
  color: #B45309;
}

.vm-slide-title {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--brand-navy);
  margin-bottom: 0.6rem;
  line-height: 1.25;
}

.vm-slide-text {
  font-size: 1.05rem;
  color: #334155;
  line-height: 1.7;
}

/* Dots Navigation */
.vm-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.6rem;
  margin-top: 1.25rem;
}

.vm-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #CBD5E1;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.vm-dot.active {
  width: 32px;
  border-radius: 12px;
  background: var(--brand-blue-deep);
}


/* ==========================================================================
   GOLD HIGHLIGHT TREATMENT (50+ YEARS EXPERIENCE & TRUST)
   ========================================================================== */
.gold-highlight {
  background: linear-gradient(135deg, #BF953F 0%, #FCF6BA 25%, #B38728 50%, #FBF5B7 75%, #AA771C 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 900;
}

.gold-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #2B210B 0%, #151004 100%);
  color: #FDF0A6;
  border: 1px solid #D4AF37;
  padding: 0.35rem 0.95rem;
  border-radius: var(--radius-full);
  font-weight: 800;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.25);
}

.gold-badge-icon {
  color: #D4AF37;
}

.gold-num {
  background: linear-gradient(135deg, #FFE885 0%, #D4AF37 50%, #997415 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 900;
}

.gold-floating-card {
  background: rgba(8, 18, 36, 0.88) !important;
  backdrop-filter: blur(16px) !important;
  border: 1.5px solid rgba(212, 175, 55, 0.7) !important;
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2), 0 4px 20px rgba(0, 0, 0, 0.6) !important;
}

.stat-item.gold-stat {
  border-color: rgba(212, 175, 55, 0.5);
  background: rgba(11, 31, 58, 0.35);
  border-radius: var(--radius-sm);
}

.stat-item.gold-stat .stat-num {
  background: linear-gradient(135deg, #FFE885 0%, #D4AF37 40%, #B8860B 80%, #FFD700 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: none;
}

/* ==========================================================================
   FOUNDERS / LEADERSHIP SECTION (ABOUT US)
   ========================================================================== */
.founders-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  margin-top: 2.5rem;
}

.founder-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
  transition: var(--transition);
}

.founder-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.founder-img-wrapper {
  width: 100%;
  height: 360px;
  overflow: hidden;
  position: relative;
  background: #0B1F3A;
}

.founder-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: var(--transition);
}

.founder-card:hover .founder-img-wrapper img {
  transform: scale(1.04);
}

.founder-content {
  padding: 1.75rem;
}

.founder-name {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--brand-navy);
  margin-bottom: 0.25rem;
}

.founder-role {
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--brand-green);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.85rem;
}

.founder-bio {
  font-size: 0.95rem;
  color: var(--ink-grey);
  line-height: 1.6;
}

/* ==========================================================================
   SERVICE AREAS VISUAL CARDS
   ========================================================================== */
.area-card-with-img {
  background: var(--bg-white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.area-card-with-img:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--brand-blue-mid);
}

.area-card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.area-card-body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.area-card-body h3 {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--brand-navy);
  margin-bottom: 0.6rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.area-card-body p {
  font-size: 0.95rem;
  color: var(--ink-grey);
  line-height: 1.6;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

/* ==========================================================================
   BLOG DOWNLOAD ACTION BUTTON
   ========================================================================== */
.btn-download {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: var(--bg-tint-blue);
  color: var(--brand-blue-deep);
  border: 1px solid rgba(26, 79, 160, 0.25);
  padding: 0.5rem 1.1rem;
  font-size: 0.85rem;
  font-weight: 700;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  cursor: pointer;
}

.btn-download:hover {
  background: var(--brand-blue-deep);
  color: white;
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

/* ==========================================================================
   ARTICLE MODAL READER SYSTEM
   ========================================================================== */
.article-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(6px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.article-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.article-modal-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  max-width: 860px;
  width: 100%;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-lg);
  transform: translateY(20px);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}

.article-modal-overlay.active .article-modal-card {
  transform: translateY(0);
}

.article-modal-header {
  padding: 1.5rem 2rem;
  background: linear-gradient(135deg, var(--brand-navy) 0%, #1E293B 100%);
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  border-bottom: 3px solid var(--brand-rust);
}

.article-modal-title {
  font-size: 1.4rem;
  font-weight: 800;
  color: white;
  margin-bottom: 0.35rem;
  line-height: 1.3;
}

.article-modal-meta {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  font-size: 0.85rem;
  color: #94A3B8;
}

.article-modal-close {
  background: rgba(255, 255, 255, 0.15);
  border: none;
  color: white;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.4rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  flex-shrink: 0;
  margin-left: 1rem;
}

.article-modal-close:hover {
  background: var(--brand-rust);
  transform: rotate(90deg);
}

.article-modal-body {
  padding: 2.25rem;
  overflow-y: auto;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--ink-dark);
}

.article-modal-body h2 {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--brand-navy);
  margin: 1.75rem 0 0.75rem;
  padding-bottom: 0.4rem;
  border-bottom: 2px solid var(--bg-tint-blue);
}

.article-modal-body h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--brand-blue-deep);
  margin: 1.25rem 0 0.5rem;
}

.article-modal-body p {
  margin-bottom: 1rem;
}

.article-modal-body ul,
.article-modal-body ol {
  margin: 0.75rem 0 1.25rem 1.5rem;
}

.article-modal-body li {
  margin-bottom: 0.4rem;
}

.article-modal-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: 0.95rem;
}

.article-modal-table th,
.article-modal-table td {
  padding: 0.75rem 1rem;
  border: 1px solid var(--border-light);
  text-align: left;
}

.article-modal-table th {
  background: var(--brand-navy);
  color: white;
  font-weight: 700;
}

.article-modal-table tr:nth-child(even) {
  background: var(--bg-light);
}

.article-callout-box {
  background: var(--bg-tint-green);
  border-left: 4px solid var(--brand-green);
  padding: 1.25rem;
  border-radius: var(--radius-sm);
  margin: 1.5rem 0;
  font-weight: 500;
}

.article-modal-footer {
  padding: 1.25rem 2rem;
  background: var(--bg-light);
  border-top: 1px solid var(--border-light);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

/* ==========================================================================
   LIGHTWEIGHT WATER-DROP PRELOADER
   ========================================================================== */
#preloader {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  background: var(--brand-navy, #0B1F3A);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

#preloader-drop {
  display: block;
  animation: dropBob 0.9s ease-in-out infinite;
  transform-origin: bottom center;
}

#preloader-ripple {
  width: 60px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid var(--brand-blue-mid, #38BDF8);
  margin-top: -10px;
  animation: rippleExpand 0.9s ease-in-out infinite;
  opacity: 0;
}

#preloader-text {
  color: #FFFFFF;
  opacity: 0.7;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 3px;
  margin-top: 1.5rem;
  text-transform: uppercase;
  font-family: 'Outfit', sans-serif;
}

#preloader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

@keyframes dropBob {
  0%, 100% {
    transform: translateY(-12px) scale(1, 1);
  }
  50% {
    transform: translateY(12px) scale(1.08, 0.92);
  }
}

@keyframes rippleExpand {
  0%, 35% {
    transform: scale(0.3);
    opacity: 0;
  }
  50% {
    transform: scale(0.7);
    opacity: 1;
  }
  100% {
    transform: scale(1.8);
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  #preloader-drop,
  #preloader-ripple {
    animation: none !important;
  }
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
  .hero-title { font-size: 2.5rem; }
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .estimator-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .founders-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .top-bar { display: none; }
  .nav-menu { display: none; }
  .nav-actions { display: none !important; }
  .hamburger {
    display: flex !important;
    order: -1;
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
  }
  .nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 60px;
  }
  .hero-grid { grid-template-columns: 1fr; gap: 2rem; }
  .hero-title { font-size: clamp(1.6rem, 5.5vw, 2.2rem); }
  .section-title { font-size: clamp(1.4rem, 4.5vw, 1.8rem); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr !important; }
  .projects-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .inspection-grid { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: 1fr !important; }
  .founders-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .mobile-sticky-bar { display: block; }
  body { padding-bottom: 70px; }

  /* iOS Safari Auto-Zoom Fix for Form Inputs */
  .form-input,
  .form-select,
  .form-textarea {
    font-size: 16px !important;
    min-height: 44px;
  }

  .btn {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  /* Article Modal Mobile Styles */
  .article-modal-card {
    max-height: 95vh;
    max-width: 100%;
    border-radius: var(--radius-md);
  }
  .article-modal-header {
    padding: 1.25rem 1rem;
  }
  .article-modal-title {
    font-size: 1.15rem;
  }
  .article-modal-body {
    padding: 1.25rem 1rem;
    font-size: 0.95rem;
  }
  .article-modal-footer {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
    text-align: center;
  }
  .article-modal-footer .btn {
    width: 100%;
    justify-content: center;
  }
  .article-modal-table {
    display: block;
    overflow-x: auto;
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr !important; }
  .areas-grid { grid-template-columns: 1fr !important; }
  .estimator-inputs { grid-template-columns: 1fr; }
  .container { padding: 0 1rem; }
}

/* ==========================================================================
   CUSTOM WATER-DROP CURSOR (Task 9)
   ========================================================================== */
#custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 36px;
  height: 36px;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%) translateZ(0);
  will-change: transform;
  transition: opacity 0.2s ease;
}

#custom-cursor .cursor-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(46, 134, 193, 0.55);
  transition: transform 0.12s ease, border-color 0.2s ease;
}

#custom-cursor .cursor-dot {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 14px;
  background: linear-gradient(180deg, #2E86C1 0%, #1A4FA0 100%);
  clip-path: polygon(50% 0%, 100% 55%, 75% 100%, 25% 100%, 0% 55%);
  transform: translate(-50%, -50%) translateZ(0);
  transition: transform 0.15s ease;
}

#custom-cursor.cursor-hover .cursor-ring {
  transform: scale(1.6);
  border-color: rgba(46, 139, 61, 0.7);
}

#custom-cursor.cursor-hover .cursor-dot {
  transform: translate(-50%, -50%) scale(0.7) translateZ(0);
}

@media (pointer: coarse) {
  #custom-cursor { display: none !important; }
}

/* ==========================================================================
   WHATSAPP FLOATING WIDGET (Task 5)
   ========================================================================== */
.wa-float-widget {
  position: fixed;
  bottom: 90px;
  right: 22px;
  z-index: 9990;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  transform: translateZ(0);
  will-change: transform;
}

.wa-float-btn {
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  cursor: pointer;
  position: relative;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  border: none;
  outline: none;
}

.wa-float-btn:hover {
  transform: scale(1.12) translateZ(0);
}

.wa-float-btn::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.4);
  animation: wa-pulse 2s ease-in-out infinite;
}

@keyframes wa-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.25); opacity: 0; }
}

.wa-float-menu {
  display: flex;
  flex-direction: column;
  gap: 8px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px) scale(0.95) translateZ(0);
  transition: opacity 0.25s ease, transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
  align-items: flex-end;
}

.wa-float-widget:hover .wa-float-menu,
.wa-float-widget.open .wa-float-menu {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0) scale(1) translateZ(0);
}

.wa-float-option {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border-radius: 30px;
  padding: 8px 16px 8px 10px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.14);
  text-decoration: none;
  color: #1a1a1a;
  font-weight: 600;
  font-size: 0.88rem;
  white-space: nowrap;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  font-family: var(--font-body);
}

.wa-float-option:hover {
  transform: translateX(-4px) translateZ(0);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.25);
}

.wa-float-option-icon {
  width: 32px;
  height: 32px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.wa-float-label {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.wa-float-label small {
  font-size: 0.72rem;
  font-weight: 400;
  color: #666;
}

/* Hide on mobile - mobile sticky bar covers it */
@media (max-width: 768px) {
  .wa-float-widget { display: none; }
}

/* ==========================================================================
   ENQUIRY POPUP FORM (Task 10)
   ========================================================================== */
#enquiry-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(11, 31, 58, 0.65);
  backdrop-filter: blur(6px);
  z-index: 99998;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

#enquiry-popup-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.enquiry-popup-card {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: 0 25px 60px rgba(11, 31, 58, 0.3);
  width: 100%;
  max-width: 480px;
  overflow: hidden;
  transform: translateY(30px) scale(0.96) translateZ(0);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  will-change: transform;
}

#enquiry-popup-overlay.active .enquiry-popup-card {
  transform: translateY(0) scale(1) translateZ(0);
}

.enquiry-popup-header {
  background: linear-gradient(135deg, var(--brand-navy) 0%, var(--brand-blue-deep) 100%);
  color: #fff;
  padding: 1.5rem 1.75rem 1.25rem;
  position: relative;
}

.enquiry-popup-header h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 0.25rem;
  letter-spacing: -0.02em;
}

.enquiry-popup-header p {
  font-size: 0.88rem;
  opacity: 0.8;
  margin: 0;
}

.enquiry-popup-close {
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  background: rgba(255,255,255,0.15);
  border: none;
  color: #fff;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  line-height: 1;
}

.enquiry-popup-close:hover {
  background: rgba(255,255,255,0.3);
}

.enquiry-popup-body {
  padding: 1.5rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.enquiry-popup-body .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.875rem;
}

.enquiry-popup-body input,
.enquiry-popup-body select {
  width: 100%;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 0.65rem 0.9rem;
  font-size: 0.92rem;
  font-family: var(--font-body);
  color: var(--ink-grey);
  outline: none;
  transition: border-color 0.2s ease;
  background: #f8fafc;
}

.enquiry-popup-body input:focus,
.enquiry-popup-body select:focus {
  border-color: var(--brand-blue-mid);
  background: #fff;
}

.enquiry-popup-submit {
  width: 100%;
  background: linear-gradient(135deg, var(--brand-blue-deep) 0%, var(--brand-blue-mid) 100%);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  padding: 0.85rem 1rem;
  font-weight: 700;
  font-size: 1rem;
  font-family: var(--font-heading);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.enquiry-popup-submit:hover {
  transform: translateY(-2px) translateZ(0);
  box-shadow: 0 8px 20px rgba(26, 79, 160, 0.35);
}

.enquiry-popup-note {
  text-align: center;
  font-size: 0.78rem;
  color: var(--ink-light);
  margin-top: -0.25rem;
}

@media (max-width: 520px) {
  .enquiry-popup-body .form-row {
    grid-template-columns: 1fr;
  }
  .enquiry-popup-card {
    border-radius: var(--radius-md);
  }
}

/* ==========================================================================
   SERVICE DETAIL MODAL (Task 2)
   ========================================================================== */
#service-detail-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(11, 31, 58, 0.65);
  backdrop-filter: blur(8px);
  z-index: 99997;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

#service-detail-modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.svc-modal-card {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 80px rgba(11, 31, 58, 0.35);
  width: 100%;
  max-width: 680px;
  max-height: 90vh;
  overflow-y: auto;
  transform: translateY(24px) scale(0.97) translateZ(0);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  will-change: transform;
}

#service-detail-modal-overlay.active .svc-modal-card {
  transform: translateY(0) scale(1) translateZ(0);
}

.svc-modal-image {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.svc-modal-body {
  padding: 1.75rem 2rem 2rem;
}

.svc-modal-badge {
  display: inline-block;
  background: var(--bg-tint-blue);
  color: var(--brand-blue-deep);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-light);
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.svc-modal-title {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--brand-navy);
  letter-spacing: -0.025em;
  margin-bottom: 0.75rem;
  line-height: 1.25;
}

.svc-modal-desc {
  color: var(--ink-light);
  font-size: 0.98rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.svc-modal-features {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
}

.svc-modal-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink-grey);
}

.svc-modal-features li::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand-green);
  flex-shrink: 0;
}

.svc-modal-footer {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}

.svc-modal-close-btn {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(0,0,0,0.4);
  border: none;
  color: #fff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  z-index: 2;
}

.svc-modal-close-btn:hover {
  background: rgba(0,0,0,0.7);
}

.svc-modal-image-wrap {
  position: relative;
}

@media (max-width: 600px) {
  .svc-modal-body { padding: 1.25rem 1.25rem 1.5rem; }
  .svc-modal-image { height: 200px; }
  .svc-modal-title { font-size: 1.3rem; }
  .svc-modal-features { grid-template-columns: 1fr; }
  .svc-modal-footer { flex-direction: column; }
  .svc-modal-footer .btn { width: 100%; justify-content: center; }
}

/* ==========================================================================
   BLOG ARTICLE CATEGORY TAG (Task 6 — replaces image badge)
   ========================================================================== */
.blog-category-tag {
  display: inline-block;
  background: var(--bg-tint-blue);
  color: var(--brand-blue-deep);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(46, 134, 193, 0.2);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.5rem;
}

/* ==========================================================================
   ADMIN MOBILE SIDEBAR TOGGLE (Task 7)
   ========================================================================== */
.admin-mobile-toggle {
  display: none;
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 200;
  background: var(--admin-primary);
  color: #fff;
  border: none;
  border-radius: 8px;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

@media (max-width: 768px) {
  .admin-mobile-toggle { display: flex; }
}