/* ============================================
   EXTENSIVE COPIER - Design System
   Colors: Navy Blue #0A1F5C, White, Red #CC0000
   ============================================ */

:root {
  --navy: #0A1F5C;
  --navy-dark: #061240;
  --navy-mid: #1a3575;
  --red: #CC0000;
  --red-hover: #aa0000;
  --white: #ffffff;
  --off-white: #f5f7fc;
  --gray-light: #e8ecf5;
  --gray: #8a93a8;
  --gray-dark: #444b5e;
  --text: #1a1a2e;
  --shadow: 0 4px 24px rgba(10, 31, 92, 0.12);
  --shadow-hover: 0 8px 36px rgba(10, 31, 92, 0.22);
  --radius: 10px;
  --radius-lg: 18px;
  --font-display: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;
  --transition: all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ====== RESET & BASE ====== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

h1,h2,h3,h4,h5 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
}

/* ====== UTILITY ====== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 72px 0; }
.section-alt { background: var(--off-white); }

.badge {
  display: inline-block;
  background: rgba(204,0,0,0.1);
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--navy);
  margin-bottom: 8px;
}
.rental-machine-image{
  width: 180px;
  height: auto;
  display: block;
  margin: 0 auto 20px;
  object-fit: contain;
}

.section-subtitle {
  color: var(--gray-dark);
  font-size: 1.05rem;
  max-width: 560px;
  margin-bottom: 40px;
}

/* ====== BUTTONS ====== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.03em;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
}

/* Primary Red Button */
.btn-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(204, 0, 0, 0.3);
}

.btn-primary:hover {
  background: var(--red-hover);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(204, 0, 0, 0.4);
}

/* White Outline Button */
.btn-outline-light {
  background: transparent;
  border: 2px solid var(--white);
  color: var(--white);
}

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

/* Navy Button */
.btn-navy {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(10, 31, 92, 0.25);
}

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

/* Button Sizes */
.btn-lg {
  padding: 16px 36px;
  font-size: 1rem;
}

.btn-sm {
  padding: 9px 20px;
  font-size: 0.82rem;
}

/* ====== HERO ACTION BUTTONS ====== */

.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* ====== HERO ACTION BUTTONS - MOBILE ====== */

@media (max-width: 600px) {

  .hero-actions {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 10px;
    width: 100%;
    flex-wrap: nowrap;
  }

  .hero-actions .btn {
    flex: 1 1 0;
    width: 0;
    min-width: 0;
    padding: 13px 6px;
    font-size: 0.82rem;
    justify-content: center;
    text-align: center;
    white-space: nowrap;
  }

}

/* ====== VERY SMALL PHONES ====== */

@media (max-width: 340px) {

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
  }

}

/* ====== TOP BAR ====== */
.topbar {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.85);
  font-size: 0.82rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.topbar-left,
.topbar-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.topbar a {
  color: rgba(255,255,255,0.85);
  transition: color 0.2s;
}

.topbar a:hover {
  color: var(--white);
}

.topbar-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.topbar-item svg {
  width: 13px;
  height: 13px;
  opacity: 0.75;
}


/* ====== MOBILE TOP BAR ====== */
@media (max-width: 600px) {

  .topbar {
    padding: 7px 0;
    font-size: 0.68rem;
  }

  .topbar .container {
    padding-left: 14px;
    padding-right: 14px;
  }

  .topbar-inner {
    flex-wrap: nowrap;
    gap: 12px;
  }

  .topbar-left,
  .topbar-right {
    gap: 8px;
    min-width: 0;
  }

  .topbar-left {
    flex-shrink: 0;
  }

  .topbar-right {
    flex: 1;
    justify-content: flex-end;
  }

  .topbar-item {
    gap: 4px;
    white-space: nowrap;
  }

  .topbar-item svg {
    width: 11px;
    height: 11px;
    flex-shrink: 0;
  }

  .topbar a {
    font-size: 0.68rem;
    white-space: nowrap;
  }
}

/* ====== NAVBAR ====== */
.navbar {
  background: var(--white);
  box-shadow: 0 2px 16px rgba(10,31,92,0.09);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: var(--transition);
}

.navbar.scrolled {
  box-shadow: 0 4px 28px rgba(10,31,92,0.16);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 6px;
}
/* ====== BRAND LOGO ====== */
.navbar-logo-img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}

.footer-logo-img {
  width: 64px;
  height: 54px;
  object-fit: contain;
  display: block;
  flex-shrink: 0;

  background: #ffffff;
  padding: 2px;
  border-radius: 7px;
}

.logo-text { display: flex; flex-direction: column; line-height: 1.15; }
.logo-text strong {
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
  white-space: nowrap;
}
.logo-text span {
  font-size: 0.68rem;
  color: #6f7890;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
}

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

.nav-links a {
    font-family: var(--font-display);
    font-size: 0.87rem;
    font-weight: 600;
    color: var(--gray-dark);
    padding: 8px 12px;
    border-radius: 8px;
    transition: var(--transition);
    position: relative;
    white-space: nowrap;      /* Prevent text from wrapping */
    flex-shrink: 0;           /* Prevent link from shrinking */
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--navy);
    background: var(--off-white);
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 18px;
    height: 2px;
    background: var(--red);
    border-radius: 2px;
}

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown > a { cursor: pointer; }
.nav-dropdown > a:focus-visible {
  outline: 2px solid var(--navy);
  outline-offset: 2px;
  border-radius: 6px;
}
.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius);
  box-shadow: var(--shadow-hover);
  min-width: 200px;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: var(--transition);
  z-index: 100;
}
.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-menu a {
  display: block;
  padding: 9px 14px;
  font-size: 0.85rem;
  color: var(--gray-dark);
  border-radius: 6px;
}
.dropdown-menu a:hover { background: var(--off-white); color: var(--navy); }

.nav-cta { display: flex; align-items: center; gap: 10px; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 10px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
}

/* ====== HERO ====== */
.hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 45%, var(--navy-mid) 100%);
  color: var(--white);
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(204,0,0,0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -120px; left: -60px;
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(255,255,255,0.04) 0%, transparent 70%);
  border-radius: 50%;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50px;
  padding: 6px 16px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 16px;
  color: rgba(255,255,255,0.9);
}

.hero-badge .dot {
  width: 6px; height: 6px;
  background: var(--red);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.15;
}

.hero h1 .accent { color: var(--red); }

.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 28px;
  line-height: 1.65;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}

.hero-pill {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.9);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 50px;
}

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.12);
}

.hero-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.hero-stat span {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.65);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-card-wrap {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
  backdrop-filter: blur(8px);
  width: 460px;
}
.hero-machine-image{
  width: 280px;
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto 24px;
}

.hero-card-tagline {
  color: rgba(255,255,255,0.9);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.hero-brand-logos {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.hero-brand {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.85);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 6px;
  letter-spacing: 0.05em;
}

/* ====== MARQUEE STRIP ====== */
.marquee-strip {
  background: var(--red);
  color: var(--white);
  padding: 12px 0;
  overflow: hidden;
}

.marquee-track {
  display: flex;
  gap: 40px;
  animation: marquee 25s linear infinite;
  width: max-content;
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}
.marquee-item::before { content: '✦'; opacity: 0.7; }

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ====== SERVICE CARDS ====== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

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

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: var(--navy);
  border-radius: 4px 0 0 4px;
  transition: var(--transition);
}

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

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

.service-icon {
  width: 52px; height: 52px;
  background: var(--off-white);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 18px;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: var(--navy);
}

.service-card h3 {
  font-size: 1.08rem;
  margin-bottom: 8px;
  color: var(--navy);
}

.service-card p {
  font-size: 0.88rem;
  color: var(--gray-dark);
  line-height: 1.6;
  margin-bottom: 18px;
}

.service-link {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--red);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: var(--transition);
}
.service-link:hover { gap: 10px; }

/* ====== WHY CHOOSE US ====== */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.why-list { display: flex; flex-direction: column; gap: 20px; }

.why-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 20px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--gray-light);
  transition: var(--transition);
}
.why-item:hover { box-shadow: var(--shadow); border-color: var(--navy); }

.why-icon-wrap {
  width: 44px; height: 44px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--white);
}

.why-item h4 {
  font-size: 0.95rem;
  margin-bottom: 4px;
  color: var(--navy);
}
.why-item p {
  font-size: 0.84rem;
  color: var(--gray-dark);
  line-height: 1.5;
}
.machine-type-icon{
    width: 48px;
    height: 48px;
    object-fit: contain;
    flex-shrink: 0;
}
.machine-icon{
    width: 110px;
    height: 110px;
    object-fit: contain;
    display: block;
    margin: 0 auto 20px;
}
.why-visual {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  color: var(--white);
}

.why-stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 28px;
}

.why-stat-box {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
}
.why-stat-box strong {
  display: block;
  font-size: 1.8rem;
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 4px;
}
.why-stat-box span {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.gstin-box {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.7);
}
.gstin-box strong {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 0.9rem;
  letter-spacing: 0.04em;
}

/* ====== PRODUCT CATALOG ====== */
.catalog-filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.filter-btn {
  padding: 8px 20px;
  border-radius: 50px;
  border: 2px solid var(--gray-light);
  background: var(--white);
  color: var(--gray-dark);
  font-family: var(--font-display);
  font-size: 0.83rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}
.filter-btn:hover, .filter-btn.active {
  border-color: var(--navy);
  background: var(--navy);
  color: var(--white);
}

/* ---- Brand section wrapper (groups each brand's models together) ---- */
.brand-showcase {
  margin-bottom: 56px;
}
.brand-showcase:last-child {
  margin-bottom: 0;
}

.brand-showcase-header {
  margin-bottom: 22px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--gray-light);
}

.brand-showcase-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}

.brand-showcase-title h2 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--navy);
  margin: 0;
}

.brand-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
}

.brand-count {
  font-size: 0.73rem;
  font-weight: 700;
  color: var(--gray-dark);
  background: var(--off-white);
  padding: 3px 12px;
  border-radius: 50px;
  letter-spacing: 0.03em;
}

.brand-showcase-header p {
  font-size: 0.88rem;
  color: var(--gray-dark);
  margin: 0;
  max-width: 640px;
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}

.product-card {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
  border-color: var(--navy);
}

/* ---- Refurbished / RC section ---- */
.catalog-section-divider {
  margin: 12px 0 40px;
  padding-top: 32px;
  border-top: 2px dashed var(--gray-light);
  text-align: center;
}
.catalog-section-divider h2 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
}
.catalog-section-divider p {
  font-size: 0.9rem;
  color: var(--gray-dark);
  max-width: 620px;
  margin: 0 auto;
}

/* Ribbon flagging a card as a used/serviced unit rather than new stock —
   deliberately a different colour (amber) from the brand/tier colours so it
   can't be mistaken for a feature tag. */
.rc-ribbon {
  background: #b45309;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-align: center;
  padding: 6px 10px;
}

.product-img-wrap {
  background: var(--off-white);
  padding: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 240px;
  font-size: 4.5rem;
  position: relative;
  overflow: hidden;
}

/* Forces every product photo to the same footprint regardless of its native size/aspect ratio,
   so cards line up evenly across the grid instead of each image rendering at its own size. */
.product-img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

.product-brand-badge {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--navy);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 50px;
  letter-spacing: 0.06em;
}

.product-type-badge {
  position: absolute;
  top: 12px; right: 12px;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 50px;
}
/* Mono = greyscale tone, Colour = green tone — the colour itself hints at the badge's meaning */
.type-mono { background: rgba(100,116,139,0.14); color: #475569; }
.type-colour { background: rgba(0,180,100,0.12); color: #009955; }

.product-info {
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

/* Small uppercase label identifying the segment/tier (Entry Level, Production, etc.) */
.product-kicker {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 6px;
}

.product-info h3 {
  font-size: 1rem;
  margin-bottom: 6px;
  color: var(--navy);
}

.product-info p {
  font-size: 0.82rem;
  color: var(--gray-dark);
  margin-bottom: 14px;
  line-height: 1.5;
}

.product-features {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 14px;
}

.product-tag {
  background: var(--off-white);
  color: var(--gray-dark);
  font-size: 0.73rem;
  padding: 3px 10px;
  border-radius: 50px;
  font-weight: 600;
}

/* Short, scannable callout answering "is this machine right for me?" */
.product-best-for {
  font-size: 0.79rem;
  color: var(--gray-dark);
  background: var(--off-white);
  border-left: 3px solid var(--navy);
  padding: 8px 12px;
  border-radius: 6px;
  margin-bottom: 16px;
  line-height: 1.5;
}
.product-best-for strong {
  color: var(--navy);
}

.product-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: auto;
}

.product-actions-row {
  display: flex;
  gap: 8px;
}

/* Utility class replacing the old repeated inline style="flex:1;justify-content:center;" */
.btn-fill {
  flex: 1;
  justify-content: center;
}

/* Secondary/tertiary action style (used for the Brochure button) — outlined rather than filled,
   so it doesn't visually compete with the primary "Get Quote" CTA. */
.btn-outline {
  background: transparent;
  border: 2px solid var(--navy);
  color: var(--navy);
}
.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
}

/* ====== BRANDS ====== */
.brands-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 20px;
}

.brand-card {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  transition: var(--transition);
  cursor: pointer;
}
.brand-card:hover {
  border-color: var(--navy);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.brand-logo-text {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 6px;
}

.brand-card span {
  font-size: 0.75rem;
  color: var(--gray);
}

/* ====== SECTORS ====== */
.sectors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.sector-card {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: center;
  transition: var(--transition);
}
.sector-card:hover {
  border-color: var(--navy);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.sector-icon {
  font-size: 2.5rem;
  margin-bottom: 12px;
  display: block;
}
.sector-card h4 {
  font-size: 0.95rem;
  color: var(--navy);
  margin-bottom: 6px;
}
.sector-card p {
  font-size: 0.8rem;
  color: var(--gray-dark);
}

/* ====== TESTIMONIALS ====== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: var(--transition);
  position: relative;
}
.testimonial-card:hover {
  box-shadow: var(--shadow);
  border-color: var(--navy);
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 18px; right: 24px;
  font-size: 4rem;
  font-family: Georgia, serif;
  color: var(--navy);
  opacity: 0.1;
  line-height: 1;
}

.star-row {
  display: flex;
  gap: 3px;
  margin-bottom: 14px;
  color: #f5a623;
  font-size: 1rem;
}

.testimonial-card p {
  font-size: 0.9rem;
  color: var(--gray-dark);
  line-height: 1.65;
  margin-bottom: 20px;
  font-style: italic;
}

.reviewer {
  display: flex;
  align-items: center;
  gap: 12px;
}

.reviewer-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  color: var(--white);
  flex-shrink: 0;
}

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

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

.reviewer strong { display: block; font-size: 0.9rem; color: var(--navy); }
.reviewer span { font-size: 0.78rem; color: var(--gray); }

/* ====== FAQ ====== */
.faq-list { max-width: 800px; }

.faq-item {
  border: 1px solid var(--gray-light);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  transition: var(--transition);
}
.faq-item.open { border-color: var(--navy); box-shadow: var(--shadow); }

.faq-question {
  padding: 18px 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  background: var(--white);
  gap: 16px;
}

.faq-question h4 {
  font-size: 0.95rem;
  color: var(--navy);
  font-weight: 600;
  line-height: 1.4;
}

.faq-toggle {
  width: 28px; height: 28px; flex-shrink: 0;
  border-radius: 50%;
  background: var(--off-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--navy);
  transition: var(--transition);
}
.faq-item.open .faq-toggle {
  background: var(--navy);
  color: var(--white);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-item.open .faq-answer { max-height: 300px; }

.faq-answer p {
  padding: 0 22px 20px;
  font-size: 0.88rem;
  color: var(--gray-dark);
  line-height: 1.7;
}

/* ===== Proprietor Card ===== */

.founder-card{
    background: var(--navy);
    border-radius: var(--radius-lg);
    padding: 32px;
    text-align: center;
    color: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.founder-photo{
    width: 90px;
    height: 90px;
    margin: 0 auto 16px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid rgba(255,255,255,0.25);
    background: rgba(255,255,255,0.10);
    box-shadow: 0 8px 24px rgba(0,0,0,0.25);
}

.founder-photo img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.founder-card h3{
    color: #fff;
    font-size: 1.4rem;
    margin-bottom: 6px;
    font-weight: 700;
}

.founder-role{
    color: rgba(255,255,255,0.70);
    font-size: 0.95rem;
    margin-bottom: 22px;
    font-weight: 500;
}

.founder-actions{
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.founder-call,
.founder-whatsapp{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 16px;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.founder-call{
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.15);
    color: #fff;
}

.founder-call:hover{
    background: rgba(255,255,255,0.18);
    transform: translateY(-2px);
}

.founder-whatsapp{
    background: #25D366;
    color: #fff;
}

.founder-whatsapp:hover{
    background: #1ebe5d;
    transform: translateY(-2px);
}

/* Mobile */
@media (max-width: 480px){

    .founder-card{
        padding: 24px;
    }

    .founder-photo{
        width: 80px;
        height: 80px;
    }

    .founder-card h3{
        font-size: 1.2rem;
    }
}

/* ====== CONTACT / QUOTE FORM ====== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 48px;
  align-items: start;
}
 
.contact-grid > * {
  min-width: 0; /* prevents children from blowing out grid columns */
}
 
 
/* ── Contact info column ──────────────────────────────────── */
 
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
 
.contact-heading {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 2px;
}
 
.contact-subheading {
  font-size: 0.875rem;
  color: var(--gray-dark);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
 
.contact-badge {
  display: inline-block;
  background: #DCFCE7;
  color: #15803D;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 20px;
  letter-spacing: 0.03em;
}
 
 
/* ── Contact card block ───────────────────────────────────── */
 
.contact-block {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--white);
  padding: 16px 18px;
  border-radius: var(--radius);
  border: 1px solid var(--gray-light);
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease,
              box-shadow 0.25s ease,
              border-color 0.25s ease;
}
 
/* Animated left accent bar */
.contact-block::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: var(--navy);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.25s ease;
  border-radius: 0;
}
 
.contact-block:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(13, 42, 107, 0.10);
  border-color: rgba(13, 42, 107, 0.18);
}
 
.contact-block:hover::before {
  transform: scaleY(1);
}
 
/* Clickable blocks (phone, email) styled as links */
.contact-block--link {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
 
/* Ensure inner divs don't overflow */
.contact-block > div,
.contact-block__body {
  min-width: 0;
}
 
.contact-block__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
 
 
/* ── Icon ─────────────────────────────────────────────────── */
 
.contact-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy);
  color: #fff;
  border-radius: 14px;
  font-size: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  transition: transform 0.25s ease,
              box-shadow 0.25s ease;
  flex-shrink: 0;
}
 
/* Light variant for GST block */
.contact-icon--light {
  background: #EFF6FF;
  color: var(--navy);
  box-shadow: none;
  border: 1px solid rgba(13, 42, 107, 0.12);
}
 
.contact-block:hover .contact-icon {
  transform: scale(1.07);
  box-shadow: 0 8px 18px rgba(13, 42, 107, 0.18);
}
 
.contact-block:hover .contact-icon--light {
  transform: scale(1.07);
  box-shadow: 0 4px 12px rgba(13, 42, 107, 0.10);
}
 
.contact-icon i {
  line-height: 1;
}
 
 
/* ── Block label (h4) ─────────────────────────────────────── */
 
.contact-block h4 {
  font-size: 0.72rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 3px;
  font-weight: 700;
}
 
 
/* ── Block content ────────────────────────────────────────── */
 
.contact-block__main {
  font-size: 0.92rem;
  color: var(--navy);
  font-weight: 700;
  overflow-wrap: break-word;
  word-break: break-word;
  text-decoration: none;
  transition: color 0.2s ease;
}
 
/* Large variant — phone number */
.contact-block__main--lg {
  font-size: 1.2rem;
  letter-spacing: 0.01em;
}
 
/* Normal weight variant — addresses */
.contact-block__main--normal {
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--navy);
}
 
.contact-block--link:hover .contact-block__main {
  color: var(--primary);
}
 
.contact-block__sub {
  font-size: 0.78rem;
  color: var(--gray-dark);
  font-weight: 500;
  margin-top: 2px;
  overflow-wrap: break-word;
  word-break: break-word;
}
 
/* Arrow indicator on clickable blocks */
.contact-block__arrow {
  align-self: center;
  font-size: 1.3rem;
  color: #CBD5E1;
  flex-shrink: 0;
  transition: color 0.2s ease, transform 0.2s ease;
  margin-left: 4px;
  line-height: 1;
}
 
.contact-block--link:hover .contact-block__arrow {
  color: var(--primary);
  transform: translateX(3px);
}
 
 
/* ── GST number ───────────────────────────────────────────── */
 
.contact-gst {
  display: inline-block;
  font-family: 'Courier New', Courier, monospace;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #1D4ED8;
  background: #EFF6FF;
  padding: 4px 10px;
  border-radius: 6px;
  margin-top: 3px;
}
 
 
/* ── WhatsApp CTA button ──────────────────────────────────── */
 
.btn-whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #25D366;
  color: #fff;
  font-size: 0.92rem;
  font-weight: 700;
  border-radius: var(--radius);
  padding: 14px 20px;
  text-decoration: none;
  margin-top: 6px;
  letter-spacing: 0.01em;
  transition: background 0.2s ease, transform 0.15s ease;
}
 
.btn-whatsapp i {
  font-size: 22px;
  line-height: 1;
}
 
.btn-whatsapp:hover {
  background: #1eb85a;
  transform: translateY(-2px);
}
 
.btn-whatsapp:active {
  transform: translateY(0);
}
 
 
/* ── Map embed ────────────────────────────────────────────── */
 
.contact-map {
  margin-top: 8px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-light);
}
 
.contact-map iframe {
  display: block;
  width: 100%;
  height: 240px;
  border: 0;
}
 
 
/* ── Mobile ───────────────────────────────────────────────── */
 
@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
 
  .contact-block:hover {
    transform: none;
  }
 
  .contact-block:hover .contact-icon,
  .contact-block:hover .contact-icon--light {
    transform: none;
  }
}

.quote-form {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow);
}

.quote-form h3 {
  font-size: 1.3rem;
  margin-bottom: 6px;
  color: var(--navy);
}
.quote-form .form-sub {
  font-size: 0.88rem;
  color: var(--gray-dark);
  margin-bottom: 28px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full { grid-column: 1 / -1; }

.form-group label {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.03em;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  min-width: 0;
  max-width: 100%;
  box-sizing: border-box;
  padding: 11px 16px;
  border: 1.5px solid var(--gray-light);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(10,31,92,0.08);
}

.form-group textarea { resize: vertical; min-height: 110px; }

.form-submit { margin-top: 8px; width: 100%; justify-content: center; }

/* ====== CTA BAND ====== */
.cta-band {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  padding: 64px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-band h2 {
  color: var(--white);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  margin-bottom: 14px;
  position: relative;
}

.cta-band p {
  color: rgba(255,255,255,0.75);
  font-size: 1rem;
  margin-bottom: 32px;
  position: relative;
}

.cta-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

/* ====== FOOTER ====== */
.footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.8);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 48px;
}

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.7;
  margin: 14px 0 20px;
  color: rgba(255,255,255,0.65);
}

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

.footer-logo .logo-text strong {
  color: var(--white);
  font-size: 1.18rem;
  font-weight: 800;
  white-space: nowrap;
}
.footer-logo .logo-text span {
 color: rgba(255,255,255,0.4); 
}

.footer h4 {
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}

.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 0.87rem;
  color: rgba(255,255,255,0.65);
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-links a::before { content: '→'; font-size: 0.75rem; opacity: 0.5; }
.footer-links a:hover { color: var(--white); }

.footer-contact { display: flex; flex-direction: column; gap: 12px; }
.footer-contact-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
}

.gstin-footer {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 6px 14px;
  border-radius: 6px;
  font-family: var(--font-display);
  font-size: 0.78rem;
  color: rgba(255,255,255,0.6);
}

/* ====== FLOATING BUTTONS ====== */
.floating-actions {
  position: fixed;
  bottom: 28px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 9999;
}

.fab {
  width: 54px; height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
  transition: var(--transition);
  position: relative;
}
.fab:hover { transform: scale(1.1); box-shadow: 0 8px 28px rgba(0,0,0,0.35); }

.fab-wa { background: #25D366; }
.fab-call { background: var(--red); }

.fab-tooltip {
  position: absolute;
  right: 64px;
  background: var(--navy-dark);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}
.fab:hover .fab-tooltip { opacity: 1; }

.fab svg { width: 24px; height: 24px; fill: white; }

/* ====== PAGE HERO (inner pages) ====== */
.page-hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  padding: 56px 0 48px;
  color: var(--white);
}
.page-hero h1 { color: var(--white); font-size: clamp(1.8rem, 3.5vw, 2.6rem); margin-bottom: 8px; }
.page-hero p { color: rgba(255,255,255,0.75); font-size: 1rem; }

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 16px;
}
.breadcrumb a { color: rgba(255,255,255,0.7); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb .sep { opacity: 0.4; }

/* ====== COVERAGE BAND ====== */
.coverage-band {
  background: var(--off-white);
  padding: 32px 0;
  border-top: 1px solid var(--gray-light);
  border-bottom: 1px solid var(--gray-light);
}
.coverage-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.coverage-label {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.85rem;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  flex-shrink: 0;
}
.coverage-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.coverage-pill {
  background: var(--white);
  border: 1px solid var(--gray-light);
  color: var(--gray-dark);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 4px 14px;
  border-radius: 50px;
  transition: var(--transition);
}
.coverage-pill:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

/* ====== DOWNLOAD BROCHURE BUTTON ====== */
.brochure-bar {
  background: var(--off-white);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 32px;
}
.brochure-bar div strong {
  display: block;
  color: var(--navy);
  font-size: 0.95rem;
  margin-bottom: 2px;
}
.brochure-bar div span { font-size: 0.82rem; color: var(--gray-dark); }

/* ====== AMC PLANS ====== */
.plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.plan-card {
  background: var(--white);
  border: 2px solid var(--gray-light);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: var(--transition);
  position: relative;
  text-align: center;
  box-shadow: var(--shadow-hover);
}
.plan-card.featured {
  border-color: var(--navy);
  box-shadow: var(--shadow-hover);
}
.plan-card.featured::before {
  content: 'MOST POPULAR';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--red);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  padding: 4px 16px;
  border-radius: 50px;
}
.plan-card.best-value {
  border-color: var(--gray-light);
  box-shadow: var(--shadow-hover);
}

.plan-card.best-value::before { 
  content: 'BEST VALUE';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #00a854;
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  padding: 4px 16px;
  border-radius: 50px;
}
.btn-best-value {
  background: #00a854;
  color: #fff;
  border: 2px solid #00a854;
}

.btn-best-value:hover {
  background: #008a45;
  border-color: #008a45;
  color: #fff;
  transform: translateY(-4px);
}
.plan-card:hover {
  border-color: var(--navy);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}
.plan-icon {
  font-size: 2.2rem;
  margin-bottom: 12px;
  display: block;
}
.plan-card h3 { color: var(--navy); margin-bottom: 8px; }
.plan-card p { font-size: 0.85rem; color: var(--gray-dark); margin-bottom: 20px; line-height: 1.6; }
.plan-features { text-align: left; display: flex; flex-direction: column; gap: 9px; margin-bottom: 24px; }
.plan-feature {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--gray-dark);
}
.plan-check { color: #00a854; font-weight: 700; flex-shrink: 0; }

/* ====== PROCESS STEPS ====== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  position: relative;
}

.step-card {
  text-align: center;
  padding: 28px 20px;
  position: relative;
}

.step-number {
  width: 52px; height: 52px;
  background: var(--navy);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  margin: 0 auto 16px;
  position: relative;
  z-index: 1;
}
/* ========================
   MACHINE PREPARATION PROCESS
======================== */

.wcu-process-header{
  text-align:center;
  max-width:700px;
  margin:0 auto 60px;
}

.wcu-timeline{
  display:flex;
  align-items:flex-start;
  justify-content:center;
  flex-wrap:wrap;
  gap: 20px;;
}

.wcu-step{
  min-width:140px;
  text-align:center;
  flex-shrink:0;
}

.wcu-step-icon{
  width:80px;
  height:80px;
  margin:0 auto 16px;
  border-radius:50%;
  background:var(--white);
  border:2px solid var(--gray-light);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:2rem;
  transition:var(--transition);
  box-shadow:var(--shadow);
}

.wcu-step:hover .wcu-step-icon{
  border-color:var(--navy);
  transform:translateY(-4px);
}

.wcu-final{
  border-color:var(--red);
}

.wcu-step h4{
  font-size:0.9rem;
  color:var(--navy);
  line-height:1.4;
}

.wcu-line{
  width:40px;
  height:2px;
  background:var(--navy);
  opacity:.25;
  margin-top:40px;
}

/* Mobile */

@media (max-width:768px){

  .wcu-timeline{
    flex-direction:column;
    align-items:center;
    overflow:visible;
  }

  .wcu-line{
    width:2px;
    height:40px;
    margin:10px 0;
  }

.wcu-step{
  width:140px;
  text-align:center;
}

}

/* ========================
   WORKSHOP INFRASTRUCTURE
======================== */

.wcu-workshop-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 52px;
}

/* Gallery Grid */
.wcu-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* Gallery Card */
.wcu-gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  height: 400px;
  background: var(--off-white);
  box-shadow: 0 6px 24px rgba(10, 31, 92, 0.12);
  border: 1px solid var(--gray-light);
  transition: transform 0.35s ease,
              box-shadow 0.35s ease,
              border-color 0.35s ease;
}

/* Image */
.wcu-gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s ease;
}

/* Card Hover */
.wcu-gallery-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(10, 31, 92, 0.25);
}

.wcu-gallery-card:hover img {
  transform: scale(1.07);
}

/* Dark Gradient Overlay */
.wcu-gallery-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 70px 26px 26px;
  background: linear-gradient(
    to top,
    rgba(6, 18, 64, 0.96) 0%,
    rgba(6, 18, 64, 0.82) 45%,
    rgba(6, 18, 64, 0) 100%
  );
}

/* Card Title */
.wcu-gallery-overlay h3 {
  color: var(--white);
  font-size: 1.08rem;
  font-weight: 700;
  margin-bottom: 7px;
}

/* Card Description */
.wcu-gallery-overlay p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.86rem;
  line-height: 1.55;
  margin: 0;
}


/* ========================
   TABLET
======================== */

@media (max-width: 900px) {

  .wcu-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
  }

  .wcu-gallery-card {
    height: 370px;
  }
}


/* ========================
   MOBILE
======================== */

@media (max-width: 600px) {

  .wcu-gallery-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .wcu-gallery-card {
    height: 340px;
  }

  .wcu-gallery-overlay {
    padding: 60px 22px 22px;
  }

  .wcu-gallery-overlay h3 {
    font-size: 1rem;
  }

  .wcu-gallery-overlay p {
    font-size: 0.82rem;
  }
}

/* ========================
   SERVICE STANDARDS
======================== */

.wcu-service-header{
  text-align:center;
  max-width:700px;
  margin:0 auto 50px;
}

.wcu-service-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}

.wcu-service-card{
  background:var(--white);
  border:1px solid var(--gray-light);
  border-radius:var(--radius-lg);
  padding:30px 24px;
  text-align:center;
  transition:var(--transition);
}

.wcu-service-card:hover{
  transform:translateY(-5px);
  border-color:var(--navy);
  box-shadow:var(--shadow-hover);
}

.wcu-service-icon{
  width:70px;
  height:70px;
  margin:0 auto 18px;
  border-radius:50%;
  background:var(--off-white);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:2rem;
}

.wcu-service-card h3{
  font-size:1rem;
  margin-bottom:8px;
}

.wcu-service-card p{
  font-size:.85rem;
  color:var(--gray-dark);
  line-height:1.6;
}

/* Tablet */

@media (max-width:900px){

  .wcu-service-grid{
    grid-template-columns:repeat(2,1fr);
  }

}

/* Mobile */

@media (max-width:600px){

  .wcu-service-grid{
    grid-template-columns:1fr;
  }

}

/* ========================
   WHY BUSINESSES STAY WITH US
======================== */

.wcu-retention-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:24px 40px;
  max-width:1000px;
  margin:0 auto;
}

.wcu-retention-item{
  display:flex;
  align-items:flex-start;
  gap:16px;
  padding:20px;
  background:var(--white);
  border:1px solid var(--gray-light);
  border-radius:var(--radius-lg);
  transition:var(--transition);
}

.wcu-retention-item:hover{
  border-color:var(--navy);
  box-shadow:var(--shadow);
}

.wcu-retention-item span{
  width:36px;
  height:36px;
  flex-shrink:0;
  border-radius:50%;
  background:#00a854;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:700;
}

.wcu-retention-item h3{
  font-size:1rem;
  margin-bottom:4px;
}

.wcu-retention-item p{
  font-size:.85rem;
  color:var(--gray-dark);
  line-height:1.6;
}

@media (max-width:768px){

  .wcu-retention-grid{
    grid-template-columns:1fr;
  }

}

.step-card h4 { font-size: 0.95rem; color: var(--navy); margin-bottom: 6px; }
.step-card p { font-size: 0.83rem; color: var(--gray-dark); line-height: 1.5; }

/* ====== RESPONSIVE LAYOUT UTILITIES ======
   Reusable two-column layout patterns used across the inner pages
   (intro sections, FAQ blocks, brand cards, feature/stat pairs).
   Defining these as classes lets the breakpoints below collapse
   them to a single column for mobile-first stacking. */
.cols-2      { display: grid; grid-template-columns: 1fr 1fr; }
.cols-2-lead { display: grid; grid-template-columns: 1.2fr 1fr; }
.cols-faq    { display: grid; grid-template-columns: 1fr 1.8fr; gap: 64px; }
.cols-brand  { display: grid; grid-template-columns: 220px 1fr; }
.cols-pairs  { display: grid; grid-template-columns: 1fr 1fr; }

/* ====== RESPONSIVE ====== */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .why-grid { grid-template-columns: 1fr; }
  .why-visual { order: -1; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-links, .nav-cta .btn-navy { display: none; }
  .hamburger { display: flex; }

  /* Collapse two-column content layouts to a single stacked column */
  .cols-2, .cols-2-lead, .cols-faq, .cols-brand {
    grid-template-columns: 1fr;
  }
  .cols-faq { gap: 32px; }
  /* Keep the brand identity card from stretching full-width once stacked */
  .cols-brand > div:first-child {
    max-width: 240px;
    margin: 0 auto;
  }
}

@media (max-width: 600px) {
  .section { padding: 48px 0; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .topbar-right { display: none; }
  .hero { padding: 56px 0 40px; }

  /* Long labels on full-width buttons (Submit Quote, WhatsApp, etc.)
     should wrap instead of forcing the page to overflow horizontally */
  .btn { white-space: normal; text-align: center; }
}

@media (max-width: 480px) {
  /* Stack small paired items (stat boxes, brand pills, feature checklists)
     into a single column for readability on narrow phones */
  .cols-pairs { grid-template-columns: 1fr; }

  /* Prevent the logo + nav buttons from overflowing on small phones */
 .logo-text span {
  display: none;
}

.navbar-logo-img {
  width: 48px;
  height: 48px;
}

.logo-text strong {
  font-size: 1rem;
}
.nav-cta .btn-primary { 
    display: none; 
}
}

/* ===== MOBILE NAVIGATION ===== */

.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-top: 1px solid var(--gray-light);
  padding: 16px 24px 24px;
  gap: 4px;
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav a {
  display: block;
  padding: 10px 16px;
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gray-dark);
  transition: var(--transition);
}

.mobile-nav a:hover,
.mobile-nav a.active {
  background: var(--off-white);
  color: var(--navy);
}

/* Mobile CTA Buttons */
.mobile-nav .btn {
  margin-top: 12px;
  width: 100%;
  justify-content: center;
  color: #ffffff;
}

/* Phone Button */
.mobile-nav a.btn-navy,
.mobile-nav a.btn-navy:hover,
.mobile-nav a.btn-navy:focus,
.mobile-nav a.btn-navy:active {
  background: var(--navy);
  color: #ffffff;
}

/* Get Free Quote Button */
.mobile-nav a.btn-red,
.mobile-nav a.btn-red:hover,
.mobile-nav a.btn-red:focus,
.mobile-nav a.btn-red:active {
  background: var(--red);
  color: #ffffff;
}

/* ====== BACK TO TOP ====== */
.back-to-top {
  position: fixed;
  bottom: 28px;
  left: 24px;
  width: 44px; height: 44px;
  background: var(--navy);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  z-index: 999;
  border: none;
  font-size: 1.1rem;
}
.back-to-top.visible { opacity: 1; pointer-events: all; }
.back-to-top:hover { background: var(--red); transform: translateY(-2px); }

/* ====== NOTIFICATION TOAST ====== */
.toast {
  position: fixed;
  top: 80px;
  right: 24px;
  background: var(--navy);
  color: var(--white);
  padding: 14px 22px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-hover);
  font-size: 0.9rem;
  font-weight: 600;
  z-index: 9999;

  display: flex;
  align-items: center;
  gap: 10px;

  max-width: 320px;
  width: calc(100% - 48px);

  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);

  transition:
    opacity 0.35s ease,
    transform 0.35s ease,
    visibility 0.35s ease;
}

.toast.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.toast-icon {
  font-size: 1.2rem;
}

/* ====== COVERAGE MAP VISUAL ====== */
.coverage-map {
  background: var(--off-white);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
  font-size: 0.9rem;
  color: var(--gray-dark);
  position: relative;
  overflow: hidden;
}

.coverage-map::before {
  content: '🗺️';
  font-size: 5rem;
  display: block;
  margin-bottom: 16px;
  opacity: 0.6;
}

/* ====== SEO META BOX ====== */
.seo-note {
  background: rgba(10,31,92,0.04);
  border-left: 4px solid var(--navy);
  padding: 14px 18px;
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 0.83rem;
  color: var(--gray-dark);
  margin-top: 8px;
}

/* ====== PRINT ====== */
@media print {
  .floating-actions, .back-to-top, .topbar, .navbar, .footer { display: none; }
}