/* ===================================================
   MONDAL PACKERS & MOVERS — TRUST-FIRST MODERN CSS
   Clean, Warm, Photo-Driven Relocation Design System
   =================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Poppins:wght@600;700;800&display=swap');

/* ---- Brand Colors & Design Tokens ---- */
:root {
  /* Brand Palette */
  --brand-red:      #B5292E;   /* Primary: Urgent/Contact CTAs, Phone numbers */
  --brand-red-hover:#961E23;
  --brand-red-light:#FDF2F2;   /* Icon tint background */
  
  --brand-yellow:   #F4B400;   /* Secondary: Conversion CTA, Badges, Highlights */
  --brand-yellow-hover:#D99B00;
  --brand-yellow-light:#FEF9E7;/* Icon tint background */
  
  /* Backgrounds */
  --bg-base:        #FAFAF9;   /* Page Background (Warm Light, NOT black) */
  --bg-surface:     #FFFFFF;   /* White Cards & Panels */
  --bg-dark:        #1A1210;   /* Dark Footer & Dark Banner Only */
  
  /* Typography */
  --text-heading:   #1A1210;   /* Warm near-black */
  --text-body:      #5B5450;   /* Warm gray for paragraphs */
  --text-light:     #8C847E;   /* Secondary text */
  --text-white:     #FFFFFF;
  
  /* Borders & Shadows */
  --border-light:   #E8E4DE;   /* Card borders, dividers */
  --border-medium:  #D6D0C7;
  
  --shadow-sm:   0 2px 6px rgba(26, 18, 16, 0.04);
  --shadow-card: 0 4px 16px rgba(26, 18, 16, 0.06);
  --shadow-hover:0 12px 28px rgba(26, 18, 16, 0.12);
  --shadow-form: 0 16px 36px rgba(26, 18, 16, 0.12);
  
  /* Radii */
  --radius-sm: 8px;
  --radius:    12px;
  --radius-lg: 16px;
  --radius-full: 9999px;
  
  /* Transitions */
  --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text-body);
  background: var(--bg-base);
  line-height: 1.6;
  font-size: 1rem;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body.mobile-menu-active {
  overflow: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  color: var(--text-heading);
  line-height: 1.25;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.5rem, 5vw, 3.75rem); font-weight: 700; }
h2 { font-size: clamp(1.85rem, 3.5vw, 2.5rem); font-weight: 700; }
h3 { font-size: 1.35rem; font-weight: 600; }

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

ul { list-style: none; }

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

button, input, textarea, select {
  font-family: inherit;
  outline: none;
  border: none;
}

button { cursor: pointer; }

/* ---- Layout Components ---- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section { padding: 5.5rem 0; }
.section-sm { padding: 3.5rem 0; }

.text-center { text-align: center; }
.text-primary { color: var(--brand-red); }
.text-secondary { color: var(--brand-yellow); }
.text-white { color: var(--text-white); }

.bg-base { background: var(--bg-base); }
.bg-surface { background: var(--bg-surface); }
.bg-dark { background: var(--bg-dark); }
.bg-light-red { background: var(--brand-red-light); }

.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.grid { display: grid; }
.hidden { display: none; }

/* ---- Section Headers ---- */
.section-header { margin-bottom: 3.5rem; }
.section-header.centered { text-align: center; }
.section-header.centered .section-subtitle { margin: 0 auto; }

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-body);
  max-width: 600px;
  line-height: 1.65;
  margin-top: 0.75rem;
}

/* ---- Badges & Pills ---- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  background: var(--brand-yellow-light);
  color: var(--text-heading);
  border: 1px solid var(--brand-yellow);
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 1.25rem;
}

.trust-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1.1rem;
  background: var(--bg-surface);
  color: var(--text-heading);
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  margin-bottom: 1.25rem;
}

.trust-badge-pill .stars {
  color: var(--brand-yellow);
  font-weight: 700;
}

/* ---- Flat Buttons (Strict Hierarchy: Red = Call/Urgent, Yellow = Free Quote) ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.9rem 2rem;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 600;
  transition: var(--transition);
  white-space: nowrap;
  cursor: pointer;
}

.btn:hover {
  transform: scale(1.02);
}

/* Red Button (Call Now / Phone) */
.btn-primary, .btn-red {
  background: var(--brand-red);
  color: var(--text-white);
  box-shadow: 0 4px 14px rgba(181, 41, 46, 0.2);
}

.btn-primary:hover, .btn-red:hover {
  background: var(--brand-red-hover);
  color: var(--text-white);
}

/* Yellow Button (Get Free Quote) */
.btn-secondary, .btn-yellow {
  background: var(--brand-yellow);
  color: var(--text-heading);
  box-shadow: 0 4px 14px rgba(244, 180, 0, 0.25);
  font-weight: 700;
}

.btn-secondary:hover, .btn-yellow:hover {
  background: var(--brand-yellow-hover);
  color: var(--text-heading);
}

/* White Outline Button (WhatsApp) */
.btn-outline {
  background: var(--bg-surface);
  color: var(--text-heading);
  border: 1.5px solid var(--border-medium);
  box-shadow: var(--shadow-sm);
}

.btn-outline:hover {
  border-color: var(--text-heading);
  background: var(--bg-base);
}

.btn-outline-white {
  background: transparent;
  color: var(--text-white);
  border: 1.5px solid rgba(255, 255, 255, 0.4);
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--text-white);
}

.btn-sm {
  padding: 0.6rem 1.25rem;
  font-size: 0.875rem;
}

.btn-lg {
  padding: 1.1rem 2.4rem;
  font-size: 1.05rem;
}

.btn-full { width: 100%; }

/* ---- Sticky Header ---- */
.navbar {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  padding: 0.85rem 0;
  transition: var(--transition);
}

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

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.navbar-brand .brand-logo-img, .brand-logo-img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--brand-red);
}

.navbar-brand .brand-text .name {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-heading);
  line-height: 1.15;
}

.navbar-brand .brand-text .tagline {
  font-size: 0.7rem;
  color: var(--text-light);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 500;
}

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

.nav-link {
  padding: 0.55rem 0.9rem;
  color: var(--text-heading);
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.nav-link:hover {
  color: var(--brand-red);
  background: var(--brand-red-light);
}

.nav-link.active {
  color: var(--text-heading);
  background: var(--brand-yellow);
  font-weight: 600;
}

/* Dropdown Menu */
.nav-item { position: relative; }

.dropdown-menu {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  background: var(--bg-surface);
  border-radius: var(--radius);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-card);
  min-width: 230px;
  padding: 0.5rem;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  z-index: 100;
}

.nav-item:hover .dropdown-menu {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 0.85rem;
  color: var(--text-heading);
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.dropdown-item:hover {
  background: var(--brand-red-light);
  color: var(--brand-red);
}

.dropdown-item .icon { font-size: 1rem; width: 20px; }

.nav-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-phone {
  color: var(--brand-red);
  font-size: 0.9rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.nav-phone:hover {
  color: var(--brand-red-hover);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
}

.hamburger span {
  width: 24px;
  height: 2.5px;
  background: var(--text-heading);
  border-radius: 2px;
}

/* Mobile Menu */
.navbar-mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 340px;
  height: 100vh;
  background: var(--bg-surface);
  z-index: 2000;
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  box-shadow: -8px 0 30px rgba(0, 0, 0, 0.15);
  transition: var(--transition);
}

.navbar-mobile-menu.open { right: 0; }

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-light);
}

.mobile-close {
  background: var(--bg-base);
  color: var(--text-heading);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.mobile-nav-link {
  padding: 0.75rem 1rem;
  color: var(--text-heading);
  font-size: 1rem;
  font-weight: 500;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.mobile-nav-link:hover {
  background: var(--brand-red-light);
  color: var(--brand-red);
}

/* ---- Top Announcement Ticker Bar (Seamless Right to Left Marquee) ---- */
.top-ticker-bar {
  background: var(--bg-dark);
  color: var(--text-white);
  font-size: 0.85rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  overflow: hidden;
  position: relative;
  width: 100%;
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: marquee-left 25s linear infinite;
}

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

.ticker-content {
  display: flex;
  align-items: center;
  gap: 3rem;
  padding-right: 3rem;
  white-space: nowrap;
}

.top-ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
  white-space: nowrap;
}

.top-ticker-item .highlight-yellow { color: var(--brand-yellow); font-weight: 700; }
.top-ticker-item .highlight-red { color: #EF4444; font-weight: 700; }

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

/* ---- Sticky Header (Clean Single Line Layout) ---- */
.navbar {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  padding: 0.75rem 0;
}

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

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
  white-space: nowrap;
}

.navbar-brand .name {
  font-family: 'Poppins', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-heading);
  white-space: nowrap;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  white-space: nowrap;
}

.nav-link {
  padding: 0.5rem 0.75rem;
  color: var(--text-heading);
  font-size: 0.875rem;
  font-weight: 600;
  white-space: nowrap;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
  white-space: nowrap;
}

.nav-phone {
  color: var(--brand-red);
  font-size: 0.9rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  white-space: nowrap;
}

/* ---- Hero Section with High-Res Sliding Background Images & Sleek Theme ---- */
.hero-ss-style {
  position: relative;
  padding: 5rem 0 5rem;
  color: var(--text-white);
  overflow: hidden;
  min-height: 560px;
}

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

.hero-bg-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  animation: hero-slide-fade 10s ease-in-out infinite;
}

.hero-bg-slide.slide-1 {
  background-image: url('../Packers and movers hero section image.png');
  animation-delay: 0s;
}

.hero-bg-slide.slide-2 {
  background-image: url('https://airmarineindia.com/wp-content/uploads/2023/09/Freight-Services-img2.jpg');
  animation-delay: 5s;
}

@keyframes hero-slide-fade {
  0% { opacity: 0; transform: scale(1.06); }
  10% { opacity: 1; transform: scale(1.02); }
  50% { opacity: 1; transform: scale(1); }
  60% { opacity: 0; transform: scale(1.02); }
  100% { opacity: 0; transform: scale(1.06); }
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.75) 0%, rgba(15, 23, 42, 0.85) 100%);
  z-index: 2;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3.5rem;
  align-items: center;
  margin-bottom: 0;
  position: relative;
  z-index: 3;
}

.hero-top-content {
  position: relative;
  z-index: 3;
}

.hero-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 800;
  line-height: 1.18;
  color: #FFFFFF;
  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.85);
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

.underline-accent {
  position: relative;
  display: inline-block;
  color: var(--brand-yellow);
}

.underline-accent::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--brand-yellow);
  box-shadow: 0 2px 8px rgba(244, 180, 0, 0.6);
  border-radius: 2px;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.75);
  line-height: 1.65;
  margin-bottom: 2rem;
  font-weight: 400;
  max-width: 520px;
}

.hero-rating-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(244, 180, 0, 0.15);
  border: 1px solid rgba(244, 180, 0, 0.5);
  color: #FFFFFF;
  padding: 0.45rem 1.1rem;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.35rem;
}

.star-gold {
  color: var(--brand-yellow);
  font-weight: 800;
}

/* Form row side-by-side */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

/* Trust line below CTA button */
.micro-trust-line {
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-light);
  margin-top: 0.75rem;
  font-weight: 500;
}

/* Floating Lead Form Card on Right Column */
.hero-lead-form-card {
  background: var(--bg-surface);
  border-radius: var(--radius-lg);
  padding: 2rem;
  color: var(--text-heading);
  border: 1px solid var(--border-light);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
  position: relative;
  z-index: 20;
}

.hero-lead-form-card h3 {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 0.25rem;
}

.hero-lead-form-card p {
  font-size: 0.875rem;
  color: var(--text-body);
  margin-bottom: 1.25rem;
}

.hero-lead-form-card .form-group {
  margin-bottom: 0.85rem;
}

.hero-lead-form-card label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-heading);
  margin-bottom: 0.3rem;
  display: block;
}

.hero-lead-form-card input,
.hero-lead-form-card select {
  width: 100%;
  padding: 0.75rem 0.9rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-light);
  background: var(--bg-base);
  font-size: 0.875rem;
  color: var(--text-heading);
  transition: var(--transition);
}

.hero-lead-form-card input:focus,
.hero-lead-form-card select:focus {
  border-color: var(--brand-red);
  background: var(--bg-surface);
  box-shadow: 0 0 0 3px rgba(181, 41, 46, 0.12);
}

/* ---- About Us Section (Homepage) ---- */
.about-home-section {
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border-light);
}

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

.about-home-image-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: visible;
}

.about-img-main {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-light);
  aspect-ratio: 4/3;
  object-fit: cover;
}

.about-experience-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--brand-red);
  color: var(--text-white);
  padding: 1.5rem 1.75rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-hover);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border: 3px solid var(--bg-surface);
}

.about-experience-badge .exp-num {
  font-family: 'Poppins', sans-serif;
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1;
  color: var(--brand-yellow);
}

.about-experience-badge .exp-text {
  font-size: 0.825rem;
  font-weight: 600;
  margin-top: 0.25rem;
  max-width: 120px;
  line-height: 1.3;
}

.about-home-content .about-lead {
  font-size: 1.1rem;
  color: var(--text-heading);
  line-height: 1.65;
  margin-bottom: 1rem;
  font-weight: 500;
}

.about-home-content .about-text {
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.65;
  margin-bottom: 2rem;
}

.about-features-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2.25rem;
}

.af-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.af-icon {
  font-size: 1.4rem;
  min-width: 44px;
  height: 44px;
  background: var(--brand-red-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.af-item h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 0.2rem;
}

.af-item p {
  font-size: 0.875rem;
  color: var(--text-body);
  line-height: 1.5;
}

.about-cta-row {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.about-phone-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-heading);
  transition: var(--transition);
}

.about-phone-link:hover {
  color: var(--brand-red);
}

.about-phone-link .icon {
  font-size: 1.25rem;
  width: 42px;
  height: 42px;
  background: var(--brand-yellow-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-red);
}

.about-phone-link .sub {
  font-size: 0.75rem;
  color: var(--text-light);
  display: block;
  font-weight: 500;
}

.about-phone-link .num {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--brand-red);
}

@media (max-width: 1024px) {
  .about-home-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-experience-badge { right: 1rem; bottom: -1rem; }
}

/* ---- Services Continuous Sliding Marquee (Right to Left) ---- */
.services-slider-container {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 1.5rem 0 3rem;
}

.services-slider-track {
  display: flex;
  width: max-content;
  animation: services-slide-left 32s linear infinite;
}

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

.services-slider-content {
  display: flex;
  gap: 1.75rem;
  padding-right: 1.75rem;
}

.services-slider-content .service-ss-card {
  width: 320px;
  flex-shrink: 0;
}

@keyframes services-slide-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.service-ss-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), 
              box-shadow 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), 
              border-color 0.3s ease;
  display: flex;
  flex-direction: column;
  position: relative;
  cursor: pointer;
}

.service-ss-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 40px rgba(181, 41, 46, 0.12), 0 8px 16px rgba(0, 0, 0, 0.06);
  border-color: var(--brand-red);
}

.service-ss-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.service-ss-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1), filter 0.4s ease;
}

/* Photo Zoom & Slight Brightness Boost on Hover */
.service-ss-card:hover .service-ss-img {
  transform: scale(1.12);
  filter: brightness(1.05);
}

/* Light Sheen Sweep Overlay */
.service-ss-img-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transform: skewX(-25deg);
  transition: left 0.75s ease;
  pointer-events: none;
}

.service-ss-card:hover .service-ss-img-wrap::after {
  left: 140%;
}

/* Animated Pulsing Badge */
.service-ss-badge {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  background: var(--brand-red);
  color: #FFFFFF;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(181, 41, 46, 0.35);
  z-index: 2;
  transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease;
}

.service-ss-card:hover .service-ss-badge {
  background: var(--brand-yellow);
  color: var(--bg-dark);
  transform: scale(1.08);
  box-shadow: 0 4px 14px rgba(244, 180, 0, 0.5);
}

.service-ss-body {
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  position: relative;
}

.service-ss-body h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 0.65rem;
  transition: color 0.3s ease;
}

.service-ss-card:hover .service-ss-body h3 {
  color: var(--brand-red);
}

.service-ss-body p {
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.65;
  margin-bottom: 1.35rem;
  flex: 1;
}

.service-ss-link {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--brand-red);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: auto;
  transition: all 0.3s ease;
  position: relative;
  width: max-content;
}

.service-ss-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--brand-red);
  transition: width 0.3s ease;
}

.service-ss-card:hover .service-ss-link {
  color: var(--brand-red);
  transform: translateX(4px);
}

.service-ss-card:hover .service-ss-link::after {
  width: 100%;
}

/* ---- Why Choose Us Modern 3-Column Grid ---- */
.why-us-section {
  background: var(--bg-surface);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  padding: 5rem 0;
}

.why-us-modern-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2.5rem;
}

.why-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: transparent;
  transition: background-color 0.35s ease;
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 32px rgba(181, 41, 46, 0.1);
  border-color: var(--border-medium);
}

.why-card:hover::before {
  background: var(--brand-red);
}

.why-icon-box {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: var(--brand-red-light);
  color: var(--brand-red);
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: transform 0.35s ease, background-color 0.35s ease, color 0.35s ease;
}

.why-card:hover .why-icon-box {
  transform: scale(1.1) rotate(4deg);
  background: var(--brand-red);
  color: var(--text-white);
}

.why-card-content h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}

.why-card:hover .why-card-content h3 {
  color: var(--brand-red);
}

.why-card-content p {
  font-size: 0.925rem;
  color: var(--text-body);
  line-height: 1.65;
}

@media (max-width: 1024px) {
  .why-us-modern-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .why-us-modern-grid { grid-template-columns: 1fr; }
}

/* ---- Our Seamless Moving Workflow (Brand Red & Yellow Light Theme) ---- */
.workflow-section-brand {
  background: var(--bg-surface);
  color: var(--text-heading);
  padding: 5.5rem 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.workflow-timeline-wrapper {
  position: relative;
  margin-top: 4.5rem;
}

.workflow-central-line {
  position: absolute;
  top: 50%;
  left: 6%;
  right: 6%;
  height: 4px;
  background: linear-gradient(90deg, var(--brand-red) 0%, var(--brand-yellow) 50%, var(--brand-red) 100%);
  transform: translateY(-50%);
  z-index: 1;
  border-radius: 4px;
  opacity: 0.45;
}

.workflow-steps-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  position: relative;
  z-index: 2;
  min-height: 480px;
}

.workflow-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.workflow-col.col-top {
  justify-content: flex-start;
}

.workflow-col.col-bottom {
  justify-content: flex-end;
}

.workflow-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.25rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  text-align: center;
  width: 100%;
  position: relative;
  z-index: 3;
}

.workflow-col:hover .workflow-card {
  transform: translateY(-8px);
  border-color: var(--brand-red);
  box-shadow: 0 16px 32px rgba(181, 41, 46, 0.12);
}

.wf-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--brand-red-light);
  font-size: 1.4rem;
  margin: 0 auto 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.35s ease, background-color 0.35s ease;
}

.workflow-col:hover .wf-icon {
  transform: scale(1.1);
  background: var(--brand-yellow-light);
}

.workflow-card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 0.5rem;
  line-height: 1.35;
  transition: color 0.3s ease;
}

.workflow-col:hover .workflow-card h3 {
  color: var(--brand-red);
}

.workflow-card p {
  font-size: 0.85rem;
  color: var(--text-body);
  line-height: 1.55;
}

.wf-stem {
  width: 2px;
  height: 42px;
  background: var(--border-medium);
  transition: background-color 0.3s ease;
}

.workflow-col:hover .wf-stem {
  background: var(--brand-red);
}

.wf-node-circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--brand-red);
  color: var(--text-white);
  font-family: 'Poppins', sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(181, 41, 46, 0.3);
  transition: all 0.35s ease;
  border: 4px solid var(--bg-surface);
  z-index: 4;
}

.wf-node-circle.active-node,
.workflow-col:hover .wf-node-circle {
  background: var(--brand-yellow);
  color: var(--bg-dark);
  transform: scale(1.15);
  box-shadow: 0 0 20px rgba(244, 180, 0, 0.5);
}

@media (max-width: 1200px) {
  .workflow-steps-grid { grid-template-columns: repeat(3, 1fr); gap: 2.5rem 1.5rem; min-height: auto; }
  .workflow-central-line { display: none; }
  .wf-stem { display: none; }
  .workflow-col.col-bottom { justify-content: flex-start; }
}

@media (max-width: 768px) {
  .workflow-steps-grid { grid-template-columns: 1fr; }
}

/* ---- Reviews Marquee Section (Left to Right Slide Animation) ---- */
.reviews-marquee-section {
  background: var(--bg-surface);
  padding: 5.5rem 0;
  border-bottom: 1px solid var(--border-light);
  overflow: hidden;
}

.main-review-heading {
  font-family: 'Poppins', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--text-heading);
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}

.google-rating-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 1.5rem;
  gap: 0.2rem;
}

.g-logo-text {
  font-family: 'Poppins', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.g-rating-score {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-heading);
}

.g-stars {
  color: #F59E0B;
  font-size: 1.25rem;
  letter-spacing: 0.15em;
}

.reviews-marquee-container {
  width: 100%;
  overflow: hidden;
  position: relative;
  margin-top: 2.5rem;
  padding: 1rem 0;
}

.reviews-marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-slide-right 30s linear infinite;
}

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

.reviews-marquee-content {
  display: flex;
  gap: 1.75rem;
  padding-right: 1.75rem;
}

.review-ss-card {
  width: 360px;
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.04);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
}

.review-ss-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(181, 41, 46, 0.1);
  border-color: var(--brand-red);
}

.review-user-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.review-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}

.review-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: #0284C7;
  margin-bottom: 0.15rem;
}

.review-badge {
  font-size: 0.78rem;
  font-weight: 600;
  color: #16A34A;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.review-quote {
  font-size: 0.925rem;
  color: var(--text-body);
  line-height: 1.6;
  font-style: normal;
}

/* LEFT TO RIGHT ANIMATION KEYFRAMES */
@keyframes marquee-slide-right {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0%); }
}

/* ---- Recent Shifting Portfolio Gallery (Right to Left Slide Animation) ---- */
.gallery-portfolio-section {
  background: var(--bg-surface);
  padding: 5.5rem 0;
  border-bottom: 1px solid var(--border-light);
  overflow: hidden;
}

.gallery-slider-container {
  width: 100%;
  overflow: hidden;
  position: relative;
  margin-top: 3rem;
}

.gallery-slider-track {
  display: flex;
  width: max-content;
  animation: gallery-slide-left 32s linear infinite;
}

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

.gallery-slider-content {
  display: flex;
  gap: 1.5rem;
  padding-right: 1.5rem;
}

.gallery-portfolio-card {
  width: 320px;
  height: 220px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  border: 1px solid var(--border-light);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
  flex-shrink: 0;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.gallery-portfolio-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(181, 41, 46, 0.15);
}

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

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

.gallery-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.2) 60%, rgba(0,0,0,0) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.25rem;
  color: #FFFFFF;
  opacity: 0.9;
  transition: opacity 0.35s ease;
}

.gallery-card-tag {
  background: var(--brand-red);
  color: #FFFFFF;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-full);
  align-self: flex-start;
  margin-bottom: 0.4rem;
  text-transform: uppercase;
}

.gallery-card-overlay h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #FFFFFF;
  margin: 0;
}

/* RIGHT TO LEFT ANIMATION KEYFRAMES */
@keyframes gallery-slide-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ---- Areas We Serve (Destination Image Grid matching screenshot) ---- */
.areas-section-ss {
  background: var(--bg-surface);
  padding: 5.5rem 0;
  border-bottom: 1px solid var(--border-light);
}

.areas-ss-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.75rem;
  margin-top: 3rem;
}

.area-ss-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  padding: 0.65rem 0.65rem 1.25rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  position: relative;
}

.area-ss-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 32px rgba(181, 41, 46, 0.12);
  border-color: var(--brand-red);
}

.area-ss-img-wrap {
  width: 100%;
  height: 165px;
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
}

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

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

.gmaps-pin-badge {
  position: absolute;
  bottom: -10px;
  right: 12px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #FFFFFF;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.area-ss-card:hover .gmaps-pin-badge {
  transform: scale(1.15) rotate(6deg);
  box-shadow: 0 6px 16px rgba(234, 67, 53, 0.35);
}

.area-ss-title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-top: 1.25rem;
  margin-bottom: 0;
  text-align: center;
  transition: color 0.3s ease;
}

.area-ss-card:hover .area-ss-title {
  color: var(--brand-red);
}

@media (max-width: 1024px) {
  .areas-ss-grid { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
}

@media (max-width: 768px) {
  .areas-ss-grid { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
}

@media (max-width: 480px) {
  .areas-ss-grid { grid-template-columns: 1fr; }
}

@media (max-width: 1200px) {
  .services-ss-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
  .services-ss-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 580px) {
  .services-ss-grid { grid-template-columns: 1fr; }
}

.hero-bottom-card {
  padding: 2.25rem 2rem;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.hero-bottom-card:hover {
  transform: translateY(-6px);
}

.hero-bottom-card .card-head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.hero-bottom-card .card-head .icon {
  font-size: 1.6rem;
}

.hero-bottom-card h4 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-white);
}

.hero-bottom-card p {
  font-size: 0.925rem;
  line-height: 1.6;
  opacity: 0.9;
  flex: 1;
}

/* Card 1: Dark Navy Card */
.hero-bottom-card.card-dark {
  background: #0F172A;
  color: var(--text-white);
  border-radius: 20px;
}

/* Card 2: Blue Card */
.hero-bottom-card.card-blue {
  background: #0284C7;
  color: var(--text-white);
  border-radius: 20px;
}

/* Card 3: Featured Red Card */
.hero-bottom-card.card-red {
  background: #E53935;
  color: var(--text-white);
  border-radius: 24px 24px 20px 20px;
}

.card-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  color: var(--text-white);
  padding: 0.25rem 0.75rem;
  border-radius: 4px;
  font-size: 0.725rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  margin-bottom: 1rem;
  align-self: flex-start;
}

.card-btn-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--bg-surface);
  color: var(--text-heading);
  padding: 0.55rem 1.25rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  margin-top: 1.25rem;
  align-self: flex-start;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: var(--transition);
}

.card-btn-pill:hover {
  background: var(--brand-yellow);
  color: var(--text-heading);
}

.stats-section {
  padding-top: 5rem;
}
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-heading);
  margin-bottom: 0.35rem;
  display: block;
}

.hero-form-card input,
.hero-form-card select {
  width: 100%;
  padding: 0.8rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-light);
  background: var(--bg-base);
  font-size: 0.925rem;
  color: var(--text-heading);
  transition: var(--transition);
}

.hero-form-card input:focus,
.hero-form-card select:focus {
  border-color: var(--brand-red);
  background: var(--bg-surface);
  box-shadow: 0 0 0 3px rgba(181, 41, 46, 0.1);
}

.hero-form-card button[type="submit"] {
  width: 100%;
  margin-top: 0.5rem;
}

.micro-trust-line {
  font-size: 0.78rem;
  color: var(--text-light);
  text-align: center;
  margin-top: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}

/* Stats Strip (Below Hero: Plain Icon + Number + Label, No Card Styling) */
.stats-section {
  background: var(--bg-surface);
  padding: 2.5rem 0;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

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

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-number {
  font-family: 'Poppins', sans-serif;
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--brand-red);
  line-height: 1.1;
  margin-bottom: 0.35rem;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-body);
  font-weight: 500;
}

/* ---- Cards Component (Services, Gallery, Blog, Areas) ---- */
/* Rule: white bg, 1px --border-light border, 16px radius, soft shadow on hover only (translateY(-4px) + shadow deepens), icon in light red/yellow circle */

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

.service-card, .blog-card, .testimonial-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.service-card:hover, .blog-card:hover, .testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: var(--border-medium);
}

.card-icon {
  width: 52px;
  height: 52px;
  background: var(--brand-red-light);
  color: var(--brand-red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}

.service-card h3, .blog-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-heading);
  margin-bottom: 0.75rem;
}

.service-card p, .blog-card p {
  font-size: 0.925rem;
  color: var(--text-body);
  line-height: 1.6;
  margin-bottom: 1.25rem;
  flex: 1;
}

.card-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--brand-red);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: auto;
}

.card-link:hover {
  color: var(--brand-red-hover);
  gap: 0.6rem;
}

/* Feature Cards (Why Choose Us) */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.feature-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.feature-icon {
  width: 56px;
  height: 56px;
  background: var(--brand-yellow-light);
  color: var(--brand-yellow-hover);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 1.25rem;
}

.feature-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.feature-card p {
  font-size: 0.875rem;
  color: var(--text-body);
}

/* Areas Grid */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.area-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  font-weight: 600;
  color: var(--text-heading);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.area-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: var(--brand-red);
  color: var(--brand-red);
}

/* Testimonials */
.reviewer-info {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1rem;
}

.reviewer-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--brand-red);
  color: var(--text-white);
  font-weight: 700;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.reviewer-name {
  font-weight: 600;
  color: var(--text-heading);
  font-size: 0.975rem;
}

.reviewer-date {
  font-size: 0.775rem;
  color: var(--text-light);
}

.stars {
  color: var(--brand-yellow);
  font-size: 1rem;
  letter-spacing: 1px;
  margin-bottom: 0.85rem;
}

.testimonial-text {
  font-size: 0.925rem;
  color: var(--text-body);
  line-height: 1.65;
  flex: 1;
}

/* FAQ Accordions */
.faq-grid {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}

.faq-question {
  padding: 1.25rem 1.5rem;
  font-family: 'Poppins', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-heading);
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.faq-question:hover { color: var(--brand-red); }

.faq-icon {
  width: 28px;
  height: 28px;
  background: var(--bg-base);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 600;
  transition: var(--transition);
}

.faq-item.active .faq-icon {
  background: var(--brand-yellow);
  color: var(--text-heading);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
  padding: 0 1.5rem;
  color: var(--text-body);
  font-size: 0.925rem;
  line-height: 1.65;
}

.faq-item.active .faq-answer {
  padding: 0 1.5rem 1.35rem 1.5rem;
  max-height: 250px;
}

/* Dark Banner Section (Only 1 Dark Section permitted by design system) */
.cta-section {
  background: var(--bg-dark);
  padding: 5rem 0;
  color: var(--text-white);
  text-align: center;
}

.cta-content {
  max-width: 720px;
  margin: 0 auto;
}

.cta-title {
  color: var(--text-white);
  margin-bottom: 1rem;
}

.cta-subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2.25rem;
}

.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

/* ---- Dark Footer ---- */
.footer {
  background: var(--bg-dark);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.footer-main {
  padding: 4.5rem 0 3.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 3rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.footer-brand-name {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-white);
}

.footer-brand-tagline {
  font-size: 0.68rem;
  color: var(--brand-yellow);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-desc {
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

.footer-contact-mini {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-contact-mini a {
  color: var(--text-white);
  font-weight: 600;
}

.footer-contact-mini a:hover { color: var(--brand-yellow); }

.footer-col h4 {
  font-family: 'Poppins', sans-serif;
  color: var(--text-white);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--brand-yellow);
}

.footer-bottom {
  padding: 1.5rem 0;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-bottom-links {
  display: flex;
  gap: 1.25rem;
}

.footer-bottom-links a:hover { color: var(--text-white); }

/* Floating Action Buttons */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 56px;
  height: 56px;
  background: #25D366;
  color: var(--text-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
  z-index: 999;
  transition: var(--transition);
}

.whatsapp-float:hover {
  transform: scale(1.05);
}

#backToTop {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  width: 44px;
  height: 44px;
  background: var(--bg-surface);
  color: var(--text-heading);
  border: 1px solid var(--border-medium);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  z-index: 999;
  box-shadow: var(--shadow-sm);
}

#backToTop.visible {
  opacity: 1;
  pointer-events: all;
}

#backToTop:hover {
  background: var(--brand-red);
  color: var(--text-white);
  border-color: var(--brand-red);
}

/* Gallery Filter */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}

.gallery-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--brand-red);
  color: var(--text-white);
  font-size: 2.8rem;
  transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-placeholder { transform: scale(1.04); }

.gallery-placeholder span {
  font-size: 0.875rem;
  font-weight: 500;
  margin-top: 0.4rem;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 18, 16, 0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-overlay-btn {
  background: var(--bg-surface);
  color: var(--text-heading);
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
}

.gallery-filter {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
  justify-content: center;
}

.filter-btn {
  padding: 0.5rem 1.25rem;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  background: var(--bg-surface);
  color: var(--text-body);
  transition: var(--transition);
}

.filter-btn.active, .filter-btn:hover {
  background: var(--brand-yellow);
  border-color: var(--brand-yellow);
  color: var(--text-heading);
}

/* Contact Grid & Form */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3.5rem;
  align-items: start;
}

.contact-info-card {
  background: var(--bg-dark);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  color: var(--text-white);
}

.contact-info-card h3 {
  color: var(--text-white);
  margin-bottom: 0.5rem;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.c-icon {
  font-size: 1.25rem;
  min-width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.c-value {
  color: var(--text-white);
  font-size: 0.925rem;
  font-weight: 500;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
}

.form-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-heading);
  margin-bottom: 0.35rem;
}

.form-control {
  padding: 0.75rem 1rem;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  color: var(--text-heading);
  background: var(--bg-surface);
  transition: var(--transition);
  width: 100%;
}

.form-control:focus {
  border-color: var(--brand-red);
  box-shadow: 0 0 0 3px rgba(181, 41, 46, 0.1);
}

textarea.form-control { height: 120px; resize: vertical; }

.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 400px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Animations */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }

/* Responsive Adjustments */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .features-grid, .services-grid, .testimonials-grid, .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .areas-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-menu, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .section { padding: 3.5rem 0; }
  .stats-grid, .services-grid, .testimonials-grid, .gallery-grid, .blog-grid { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero { padding: 3.5rem 0; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; width: 100%; }
  .hero-actions .btn { width: 100%; }
  .features-grid, .areas-grid { grid-template-columns: 1fr; }
}

/* ---- Dedicated Gallery Grid & Filter System ---- */
.gallery-filter {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.filter-btn {
  padding: 0.6rem 1.4rem;
  border-radius: var(--radius-full);
  background: var(--bg-surface);
  color: var(--text-heading);
  border: 1px solid var(--border-light);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn:hover, .filter-btn.active {
  background: var(--brand-red);
  color: #FFFFFF;
  border-color: var(--brand-red);
  box-shadow: 0 4px 14px rgba(181, 41, 46, 0.25);
}

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

.gallery-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-card);
  aspect-ratio: 4/3;
  background: var(--bg-surface);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.gallery-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(181, 41, 46, 0.15);
  border-color: var(--brand-red);
}

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

.gallery-item:hover .gallery-item-img {
  transform: scale(1.08);
}

.gallery-item-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem 1.25rem;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0) 100%);
  color: #FFFFFF;
  font-size: 0.875rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.gallery-item-tag {
  background: var(--brand-yellow);
  color: var(--bg-dark);
  font-size: 0.7rem;
  font-weight: 800;
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-full);
  text-transform: uppercase;
}

@media (max-width: 1024px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .gallery-grid { grid-template-columns: 1fr; }
}

/* ---- Professional Footer Enhancements (No Emojis) ---- */
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.7);
}

.footer-contact li a {
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
}

.footer-contact li a:hover {
  color: var(--brand-yellow);
}

.footer-contact .footer-icon {
  margin-top: 3.5px;
  flex-shrink: 0;
  color: var(--brand-yellow);
}

.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.social-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.social-icon:hover {
  background: var(--brand-yellow);
  color: var(--bg-dark);
  transform: translateY(-2px);
}
