/* =====================================================
   REPAIRER HUB — MASTER STYLESHEET
   Premium Waterproofing & Structural Repair Website
   ===================================================== */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400&family=Barlow+Condensed:wght@600;700;800&display=swap');

/* ── CSS Variables ── */
:root {
  --primary: #0d2b4e;
  --primary-light: #1a3f6f;
  --secondary: #e8880a;
  --secondary-dark: #c4720a;
  --accent: #3a8dde;
  --white: #ffffff;
  --background: #f4f7fb;
  --surface: #ffffff;
  --text: #1a1a2e;
  --text-light: #5a6a80;
  --border: #dde4ef;
  --shadow: 0 2px 16px rgba(13, 43, 78, .08);
  --shadow-hover: 0 8px 40px rgba(13, 43, 78, .18);
  --radius: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --transition: 0.3s ease;
  --font-head: 'Barlow Condensed', sans-serif;
  --font-body: 'Barlow', sans-serif;
}

/* ── 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(--background);
  line-height: 1.6;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

/* ── Container ── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ── Section Spacing ── */
.section {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--secondary);
  background: rgba(232, 136, 10, .1);
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 14px;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--primary);
  line-height: 1.15;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ── Row / Grid helpers ── */
.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -16px;
}

.row.align-items-center {
  align-items: center;
}

.row.gy-5>* {
  margin-bottom: 32px;
}

.col-lg-6 {
  padding: 0 16px;
  width: 100%;
}

@media(min-width:992px) {
  .col-lg-6 {
    width: 50%;
  }
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

@media(max-width:768px) {
  .grid-2 {
    grid-template-columns: 1fr;
  }
}

/* ════════════════════════════════════════════
   HERO SLIDER
   ════════════════════════════════════════════ */
.hero-slider-wrap {
  position: relative;
  width: 100%;
  height: 600px;
  overflow: hidden;
  background: var(--primary);
}

@media(max-width:768px) {
  .hero-slider-wrap {
    height: 500px;
  }
}

@media(max-width:480px) {
  .hero-slider-wrap {
    height: 460px;
  }
}

.hs-track {
  position: relative;
  width: 100%;
  height: 100%;
}

.hs-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 0.8s ease, transform 6s ease;
  display: flex;
  align-items: center;
}

.hs-slide.active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}

.hs-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg,
      rgba(13, 43, 78, 0.85) 0%,
      rgba(13, 43, 78, 0.55) 55%,
      rgba(13, 43, 78, 0.25) 100%);
}

.hs-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding: 0 0 100px 80px;
  color: #fff;
}

@media(max-width:768px) {
  .hs-content {
    padding: 0 24px 100px;
  }
}

.hs-eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  background: var(--secondary);
  color: #fff;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 18px;
}

.hs-heading {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 18px;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, .25);
}

.hs-sub {
  font-size: clamp(0.95rem, 1.5vw, 1.15rem);
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 32px;
  line-height: 1.7;
}

.hs-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hs-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--secondary);
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: 50px;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 20px rgba(232, 136, 10, .4);
}

.hs-btn-primary:hover {
  background: var(--secondary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(232, 136, 10, .5);
}

.hs-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 2px solid rgba(255, 255, 255, 0.7);
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 12px 26px;
  border-radius: 50px;
  transition: background var(--transition), border-color var(--transition);
  backdrop-filter: blur(4px);
  background: rgba(255, 255, 255, 0.08);
}

.hs-btn-outline:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: #fff;
}

/* Arrows */
.hs-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  background: rgba(255, 255, 255, 0.15);
  border: 2px solid rgba(255, 255, 255, 0.4);
  color: #fff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
  backdrop-filter: blur(4px);
}

.hs-arrow:hover {
  background: var(--secondary);
  border-color: var(--secondary);
}

.hs-prev {
  left: 20px;
}

.hs-next {
  right: 20px;
}

@media(max-width:480px) {
  .hs-arrow {
    width: 38px;
    height: 38px;
    font-size: 1.4rem;
  }
}

/* Dots */
.hs-dots {
  position: absolute;
  bottom: 64px;
  left: 80px;
  display: flex;
  gap: 8px;
  z-index: 5;
}

@media(max-width:768px) {
  .hs-dots {
    left: 24px;
  }
}

.hs-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.6);
  background: transparent;
  cursor: pointer;
  transition: background var(--transition), width var(--transition);
  padding: 0;
}

.hs-dot.active {
  background: var(--secondary);
  border-color: var(--secondary);
  width: 28px;
  border-radius: 5px;
}

/* Stats bar */
.hs-stats-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(13, 43, 78, 0.92);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  gap: 0;
  z-index: 5;
  border-top: 2px solid var(--secondary);
}

.hs-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #fff;
  padding: 0 30px;
}

.hs-stat strong {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--secondary);
  line-height: 1;
}

.hs-stat span {
  font-size: 0.7rem;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 2px;
  text-transform: uppercase;
}

.hs-stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(255, 255, 255, 0.2);
}

@media(max-width:600px) {
  .hs-stats-bar {
    gap: 0;
    padding: 10px 8px;
  }

  .hs-stat {
    padding: 0 10px;
  }

  .hs-stat strong {
    font-size: 1.1rem;
  }

  .hs-stat span {
    font-size: 0.6rem;
  }

  .hs-stat-divider {
    height: 28px;
  }
}

/* Page-specific slider (non-home pages use condensed version) */
.page-hero-slider .hero-slider-wrap {
  height: 380px;
}

@media(max-width:768px) {
  .page-hero-slider .hero-slider-wrap {
    height: 300px;
  }
}

.page-hero-slider .hs-content {
  padding-bottom: 70px;
}

.page-hero-slider .hs-heading {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
}

.page-hero-slider .hs-stats-bar {
  display: none;
}

/* ════════════════════════════════════════════
   TOP HEADER BAR (Call Us / Email / Social)
   ════════════════════════════════════════════ */
.top-header-bar {
  background: var(--primary);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0;
  margin: 0;
  width: 100%;
  position: relative;
  z-index: 101;
}

.top-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 40px;
  flex-wrap: wrap;
}

.top-header-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.top-header-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.8rem;
  font-weight: 600;
  transition: color var(--transition);
  text-decoration: none;
}

.top-header-item:hover {
  color: var(--secondary);
}

.top-header-item i {
  color: var(--secondary);
  font-size: 0.75rem;
}

.top-header-label {
  font-weight: 700;
  color: rgba(255, 255, 255, 0.65);
}

.top-header-divider {
  display: inline-block;
  width: 1px;
  height: 16px;
  background: rgba(255, 255, 255, 0.2);
}

.top-header-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.top-header-follow {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.top-social-icons {
  display: flex;
  align-items: center;
  gap: 6px;
}

.top-social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 0.7rem;
  transition: background var(--transition), color var(--transition), transform var(--transition);
  text-decoration: none;
}

.top-social-icon:hover {
  transform: translateY(-2px);
  color: #fff;
}

.top-social-fb:hover  { background: #1877f2; }
.top-social-ig:hover  { background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.top-social-yt:hover  { background: #ff0000; }
.top-social-x:hover   { background: #000; }
.top-social-li:hover  { background: #0077b5; }

@media (max-width: 768px) {
  .top-header-bar {
    display: none; /* hide on mobile to save space */
  }
}

/* ════════════════════════════════════════════
   HEADER / NAV
   ════════════════════════════════════════════ */
.site-header {
  background: var(--primary);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 20px rgba(0, 0, 0, .2);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.site-logo {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 800;
  color: #fff;
}

.site-logo span {
  color: var(--secondary);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-link {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 8px 14px;
  border-radius: var(--radius);
  transition: color var(--transition), background var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.nav-cta {
  background: var(--secondary);
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 10px 20px;
  border-radius: 50px;
  transition: background var(--transition);
  margin-left: 8px;
}

.nav-cta:hover {
  background: var(--secondary-dark);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: var(--transition);
}

@media(max-width:900px) {
  .hamburger {
    display: flex;
  }

  .site-nav {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--primary);
    flex-direction: column;
    align-items: stretch;
    padding: 16px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    gap: 4px;
  }

  .site-nav.open {
    display: flex;
  }

  .nav-link {
    padding: 12px 16px;
    border-radius: var(--radius);
  }

  .nav-cta {
    margin: 8px 0 0;
    border-radius: var(--radius);
    text-align: center;
  }
}

/* ════════════════════════════════════════════
   PAGE HEADER (non-slider pages fallback)
   ════════════════════════════════════════════ */
.page-header {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  padding: 60px 0 50px;
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::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");
}

.page-header h1 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
}

.page-header p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.8);
}

.page-breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 16px;
}

.page-breadcrumb a {
  color: var(--secondary);
}

.page-breadcrumb a:hover {
  text-decoration: underline;
}

/* ════════════════════════════════════════════
   BUTTONS
   ════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--secondary);
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 30px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 16px rgba(232, 136, 10, .35);
  text-decoration: none;
}

.btn:hover {
  background: var(--secondary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(232, 136, 10, .45);
}

.btn-primary {
  background: var(--secondary);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  box-shadow: none;
}

.btn-outline:hover {
  background: var(--primary);
  color: #fff;
}

.btn-submit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--secondary);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  padding: 15px 36px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  width: 100%;
  justify-content: center;
  transition: background var(--transition), transform var(--transition);
  box-shadow: 0 4px 20px rgba(232, 136, 10, .35);
}

.btn-submit:hover {
  background: var(--secondary-dark);
  transform: translateY(-2px);
}

/* ════════════════════════════════════════════
   WELCOME / ABOUT SECTIONS
   ════════════════════════════════════════════ */
.welcome-section {
  background: #fff;
  padding: 80px 0;
}

.welcome-eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--secondary);
  background: rgba(232, 136, 10, .1);
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.welcome-title {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  color: var(--primary);
  line-height: 1.2;
  margin-bottom: 22px;
}

.welcome-para {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.85;
  margin-bottom: 16px;
}

.welcome-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0;
}

.welcome-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--background);
  border: 1px solid var(--border);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--primary);
}

.welcome-badge i {
  color: var(--secondary);
}

.btn-welcome {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: #fff;
  font-weight: 700;
  padding: 14px 30px;
  border-radius: 50px;
  transition: background var(--transition), transform var(--transition);
  margin-top: 8px;
}

.btn-welcome:hover {
  background: var(--primary-light);
  transform: translateY(-2px);
}

.welcome-img-wrapper {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.welcome-img {
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-hover);
}

.welcome-img-badge {
  position: absolute;
  bottom: 24px;
  right: 24px;
  background: var(--secondary);
  color: #fff;
  padding: 16px 20px;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: 0 4px 20px rgba(232, 136, 10, .4);
}

.badge-number {
  display: block;
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
}

.badge-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 4px;
}

/* ════════════════════════════════════════════
   WHY CHOOSE US GRID
   ════════════════════════════════════════════ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media(max-width:900px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width:540px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
}

.why-card {
  display: flex;
  gap: 16px;
  background: #fff;
  padding: 28px 24px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
}

.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.why-card-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: rgba(13, 43, 78, .08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary);
  font-size: 1.3rem;
}

.why-card-body h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 6px;
}

.why-card-body p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* ════════════════════════════════════════════
   SERVICES GRID
   ════════════════════════════════════════════ */

@media(max-width:900px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width:540px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

.service-full-card {
  background: #fff;
  border-radius: var(--radius-xl);
  padding: 36px 28px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.service-full-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: var(--secondary);
}

.svc-icon-wrap {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.service-full-card h3 {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--primary);
}

.service-full-card p {
  font-size: 0.93rem;
  color: var(--text-light);
  line-height: 1.75;
  flex: 1;
}

.svc-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--secondary);
  margin-top: 4px;
  transition: gap var(--transition);
}

.svc-link:hover {
  gap: 10px;
}

/* Home service cards */
.service-card {
  border-radius: var(--radius-lg) !important;
  transition: all 0.3s ease !important;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover) !important;
}

.card-icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
}

/* ════════════════════════════════════════════
   PROCESS STEPS
   ════════════════════════════════════════════ */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

@media(max-width:900px) {
  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width:540px) {
  .process-steps {
    grid-template-columns: 1fr;
  }
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 42px;
  left: calc(12.5% + 28px);
  right: calc(12.5% + 28px);
  height: 2px;
  background: linear-gradient(90deg, var(--secondary), var(--accent));
  z-index: 0;
}

@media(max-width:900px) {
  .process-steps::before {
    display: none;
  }
}

.process-step {
  position: relative;
  z-index: 1;
  text-align: center;
  background: #fff;
  border-radius: var(--radius-xl);
  padding: 36px 20px 28px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
}

.process-step:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.process-step i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 50%;
  color: #fff;
  font-size: 1.4rem;
  margin: 0 auto 18px;
  box-shadow: 0 4px 16px rgba(13, 43, 78, .2);
}

.process-step h4 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 10px;
}

.process-step p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* 5-step process variant */
.process-steps-5 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

@media(max-width:1100px) {
  .process-steps-5 {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media(max-width:600px) {
  .process-steps-5 {
    grid-template-columns: 1fr;
  }
}

.process-step-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--secondary);
  border-radius: 50%;
  color: #fff;
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 800;
  margin: 0 auto 14px;
  box-shadow: 0 4px 14px rgba(232, 136, 10, .35);
}

/* ════════════════════════════════════════════
   ABOUT PAGE SPECIFIC
   ════════════════════════════════════════════ */
.about-welcome-section {
  background: #fff;
  padding: 80px 0;
}

.principle-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

@media(max-width:768px) {
  .principle-grid {
    grid-template-columns: 1fr;
  }
}

.principle-card {
  text-align: center;
  background: #fff;
  border-radius: var(--radius-xl);
  padding: 40px 28px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
}

.principle-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.principle-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.6rem;
  margin: 0 auto 20px;
}

.principle-card h3 {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 12px;
}

.principle-card p {
  font-size: 0.93rem;
  color: var(--text-light);
  line-height: 1.75;
}

.check-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 800px;
  margin: 0 auto;
}

@media(max-width:700px) {
  .check-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media(max-width:400px) {
  .check-grid {
    grid-template-columns: 1fr;
  }
}

.check-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  padding: 14px 18px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary);
}

.check-item i {
  color: var(--secondary);
  font-size: 1rem;
}

.about-icon-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.about-icon-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--text);
}

.about-icon-list li i {
  color: var(--secondary);
  margin-top: 2px;
  flex-shrink: 0;
}

.about-cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, #1a3f6f 100%);
  padding: 80px 0;
  text-align: center;
  color: #fff;
}

.about-cta-section h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  margin-bottom: 14px;
}

.about-cta-section p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 36px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.btn-cta-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--secondary);
  color: #fff;
  font-weight: 700;
  padding: 15px 32px;
  border-radius: 50px;
  transition: background var(--transition), transform var(--transition);
  margin: 6px;
}

.btn-cta-white:hover {
  background: var(--secondary-dark);
  transform: translateY(-2px);
}

.btn-cta-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 2px solid rgba(255, 255, 255, 0.7);
  color: #fff;
  font-weight: 700;
  padding: 13px 30px;
  border-radius: 50px;
  transition: background var(--transition), border-color var(--transition);
  margin: 6px;
}

.btn-cta-outline-white:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #fff;
}

/* ════════════════════════════════════════════
   PROJECTS GALLERY
   ════════════════════════════════════════════ */
.projects-gallery,
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media(max-width:900px) {

  .projects-gallery,
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width:540px) {

  .projects-gallery,
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  box-shadow: var(--shadow);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(13, 43, 78, 0.88) 100%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity var(--transition);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay-content {
  color: #fff;
  width: 100%;
}

.gallery-zoom-icon {
  font-size: 1.4rem;
  display: block;
  margin-bottom: 6px;
  color: var(--secondary);
}

.gallery-item-title {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 800;
}

.gallery-item-location {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.75);
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 4px;
}

/* Lightbox */
.gallery-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
}

.gallery-lightbox.active {
  display: block;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
}

.lightbox-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 90vw;
  max-height: 90vh;
  text-align: center;
}

.lightbox-img {
  max-width: 90vw;
  max-height: 80vh;
  border-radius: var(--radius-lg);
  object-fit: contain;
}

.lightbox-caption {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  margin-top: 12px;
}

.lightbox-close {
  position: fixed;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
  z-index: 10000;
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* ════════════════════════════════════════════
   BLOG
   ════════════════════════════════════════════ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

@media(max-width:900px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width:580px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
}

.blog-card {
  background: #fff;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.blog-card-image {
  height: 210px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-card-image {
  transform: scale(1.04);
}

.blog-card-category {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--secondary);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  letter-spacing: 0.5px;
}

.blog-card-content {
  padding: 24px 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.blog-card-date {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--text-light);
}

.blog-card-content h3 {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.3;
}

.blog-card-content p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.7;
  flex: 1;
}

.blog-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.blog-tag {
  background: var(--background);
  color: var(--primary);
  border: 1px solid var(--border);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 50px;
}

.read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--secondary);
  transition: gap var(--transition);
  margin-top: 4px;
}

.read-more:hover {
  gap: 10px;
}

/* Blog topics grid (empty state) */
.blog-topics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media(max-width:900px) {
  .blog-topics-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width:540px) {
  .blog-topics-grid {
    grid-template-columns: 1fr;
  }
}

.blog-topic-tile {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}

.blog-topic-tile:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.blog-topic-tile i {
  font-size: 2rem;
  color: var(--secondary);
  margin-bottom: 14px;
  display: block;
}

.blog-topic-tile h4 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 10px;
}

.blog-topic-tile p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* Blog content (single post) */
.blog-content {
  max-width: 800px;
  margin: 0 auto;
}

.blog-content article {
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--text);
}

.blog-content article h2 {
  font-family: var(--font-head);
  color: var(--primary);
  margin: 36px 0 16px;
  font-size: 1.6rem;
}

.blog-content article h3 {
  font-family: var(--font-head);
  color: var(--primary);
  margin: 28px 0 12px;
  font-size: 1.3rem;
}

.blog-content article p {
  margin-bottom: 18px;
}

/* ════════════════════════════════════════════
   FAQ
   ════════════════════════════════════════════ */
.faq-section {
  background: var(--background);
  padding: 80px 0;
}

.faq-wrapper {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: box-shadow var(--transition);
}

.faq-item.open {
  border-color: var(--secondary);
  box-shadow: 0 4px 24px rgba(232, 136, 10, .12);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  gap: 16px;
  user-select: none;
}

.faq-question-text {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.4;
}

.faq-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background: var(--background);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary);
  font-size: 0.85rem;
  transition: transform var(--transition), background var(--transition);
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--secondary);
  color: #fff;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer-inner {
  padding: 0 24px 22px;
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.8;
  border-top: 1px solid var(--background);
}

/* ════════════════════════════════════════════
   CONTACT PAGE
   ════════════════════════════════════════════ */
.contact-section {
  padding: 80px 0;
  background: var(--background);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: start;
}

@media(max-width:900px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }
}

.contact-info-panel h2 {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 10px;
}

.contact-info-panel .section-sub {
  text-align: left;
  margin: 0 0 32px;
}

.contact-info-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}

.contact-info-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.contact-info-icon {
  width: 46px;
  height: 46px;
  background: rgba(13, 43, 78, .08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-info-body h4 {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-light);
  margin-bottom: 4px;
}

.contact-info-body a,
.contact-info-body p {
  font-size: 0.97rem;
  color: var(--primary);
  font-weight: 500;
  line-height: 1.5;
}

.contact-info-body a:hover {
  color: var(--secondary);
}

.hours-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 22px 24px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  margin-bottom: 28px;
}

.hours-card h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.hours-card h4 i {
  color: var(--secondary);
}

.hours-table {
  width: 100%;
  font-size: 0.88rem;
  border-collapse: collapse;
}

.hours-table td {
  padding: 6px 0;
  color: var(--text-light);
}

.hours-table td:first-child {
  font-weight: 600;
  color: var(--primary);
  width: 50%;
}

.hours-table td.closed {
  color: #e74c3c;
  font-weight: 600;
}

.map-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.contact-form-panel {
  background: #fff;
  border-radius: var(--radius-xl);
  padding: 40px 36px;
  box-shadow: 0 4px 40px rgba(13, 43, 78, .1);
  border: 1px solid var(--border);
}

.contact-form-panel h2 {
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 8px;
}

.contact-form-panel .section-sub {
  text-align: left;
  margin: 0 0 28px;
}

@media(max-width:580px) {
  .contact-form-panel {
    padding: 28px 20px;
  }
}

/* ════════════════════════════════════════════
   FORMS
   ════════════════════════════════════════════ */
.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 7px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--background);
  font-family: var(--font-body);
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--secondary);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(232, 136, 10, .12);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

@media(max-width:540px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

/* Alerts */
.alert {
  padding: 14px 18px;
  border-radius: var(--radius);
  margin-bottom: 20px;
  font-size: 0.93rem;
  font-weight: 600;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.alert-success {
  background: #e8f8ef;
  color: #1a7a3d;
  border: 1px solid #a8e6bf;
}

.alert-error {
  background: #fdecea;
  color: #c0392b;
  border: 1px solid #f5b5b0;
}

/* ════════════════════════════════════════════
   CTA SECTION
   ════════════════════════════════════════════ */
.cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, #1a3f6f 100%);
  border-radius: var(--radius-xl);
  padding: 60px 40px;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(232, 136, 10, .15), transparent 60%);
  pointer-events: none;
}

.cta-section h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 14px;
}

.cta-section p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 580px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

.cta-section .btn {
  background: var(--secondary);
}

.cta-section .btn:hover {
  background: var(--secondary-dark);
}

/* ════════════════════════════════════════════
   BENEFIT CARDS (book page)
   ════════════════════════════════════════════ */
.benefit-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
}

.benefit-item .icon {
  width: 30px;
  height: 30px;
  background: var(--secondary);
  border-radius: 50%;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.benefit-item span {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
}

/* ════════════════════════════════════════════
   REVIEWS / GOOGLE WIDGET
   ════════════════════════════════════════════ */
.gr-widget-section {
  background: var(--background);
  padding: 80px 0;
}

.gr-widget-title {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--primary);
  text-align: center;
  margin-bottom: 32px;
}

.gr-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 18px 24px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  margin-bottom: 28px;
}

.gr-header-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.gr-google-logo {
  width: 32px;
}

.gr-header-label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-light);
}

.gr-header-rating {
  display: flex;
  align-items: center;
  gap: 8px;
}

.gr-rating-number {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--primary);
}

.gr-review-count {
  font-size: 0.85rem;
  color: var(--text-light);
}

.gr-review-btn {
  background: var(--primary);
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 10px 20px;
  border-radius: 50px;
  transition: background var(--transition);
}

.gr-review-btn:hover {
  background: var(--primary-light);
}

.gr-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 22px 20px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  height: 100%;
}

.gr-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.gr-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}

.gr-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--primary);
}

.gr-verified {
  color: #1a73e8;
  font-size: 0.75rem;
}

.gr-date {
  font-size: 0.78rem;
  color: var(--text-light);
  display: block;
}

.gr-card-stars {
  color: #f4b400;
  font-size: 0.85rem;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.gr-text {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 10px;
}

.gr-read-more {
  font-size: 0.82rem;
  font-weight: 700;
  color: #1a73e8;
}

.gr-read-more:hover {
  text-decoration: underline;
}

.gr-arrow {
  position: absolute;
  right: -16px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--primary);
  color: #fff;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: background var(--transition);
  z-index: 5;
}

.gr-arrow:hover {
  background: var(--secondary);
}

/* ════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════ */
.site-footer {
  background: var(--primary);
  color: rgba(255, 255, 255, 0.75);
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 48px;
}

@media(max-width:900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media(max-width:540px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

.footer-logo {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 14px;
}

.footer-logo span {
  color: var(--secondary);
}

.footer-about {
  font-size: 0.88rem;
  line-height: 1.75;
  margin-bottom: 20px;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.footer-social {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  transition: background var(--transition), color var(--transition);
}

.footer-social:hover {
  background: var(--secondary);
  color: #fff;
}

.footer-heading {
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #fff;
  margin-bottom: 18px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.footer-links a {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.65);
  transition: color var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-links a::before {
  content: '›';
  color: var(--secondary);
  font-size: 1rem;
}

.footer-links a:hover {
  color: var(--secondary);
}

.footer-contact-item {
  display: flex;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 0.88rem;
}

.footer-contact-item i {
  color: var(--secondary);
  margin-top: 2px;
  width: 16px;
  flex-shrink: 0;
}

.footer-contact-item a {
  color: rgba(255, 255, 255, 0.75);
}

.footer-contact-item a:hover {
  color: var(--secondary);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 18px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.45);
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.55);
}

.footer-bottom a:hover {
  color: var(--secondary);
}

/* ════════════════════════════════════════════
   UTILITY
   ════════════════════════════════════════════ */
.text-center {
  text-align: center;
}

.mt-5 {
  margin-top: 48px;
}

.bg-light {
  background: var(--background) !important;
}

.img-fluid {
  max-width: 100%;
}

/* About section card alt */
.about-section-alt {
  background: var(--background);
}

/* Benefit cards on home */
.benefit-card:hover {
  transform: translateY(-4px);
}

/* ════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════ */
@media(max-width:768px) {
  .section {
    padding: 56px 0;
  }

  .section-header {
    margin-bottom: 36px;
  }

  .welcome-section {
    padding: 56px 0;
  }

  .process-steps {
    grid-template-columns: 1fr 1fr;
  }

  .process-steps::before {
    display: none;
  }

  .footer-grid {
    gap: 28px;
  }

  .cta-section {
    padding: 44px 24px;
  }

  .contact-form-panel {
    padding: 28px 20px;
  }
}

@media(max-width:480px) {

  .why-grid,
  .services-grid,
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .gr-header {
    flex-direction: column;
    gap: 12px;
  }
}

/* ════════════════════════════════════════════
   TOP HEADER BAR
   ════════════════════════════════════════════ */

.top-header-bar {
  background: #071d36;
  border-bottom: 1px solid rgba(232, 136, 10, .3);
  padding: 0;
  position: relative;
  z-index: 101;
}

.top-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 40px;
  gap: 16px;
}

/* ── Left: contact items ── */
.top-header-left {
  display: flex;
  align-items: center;
  gap: 0;
  flex-shrink: 0;
}

.top-header-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.78rem;
  font-weight: 500;
  text-decoration: none;
  padding: 0 14px 0 0;
  transition: color 0.25s ease;
  white-space: nowrap;
}

.top-header-item:first-child {
  padding-left: 0;
}

.top-header-item i {
  color: var(--secondary);
  font-size: 0.75rem;
  flex-shrink: 0;
}

.top-header-item:hover {
  color: #fff;
}

.top-header-item:hover i {
  color: #ffaa33;
}

.top-header-label {
  font-weight: 700;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.top-header-divider {
  display: block;
  width: 1px;
  height: 16px;
  background: rgba(255, 255, 255, 0.15);
  margin: 0 14px 0 0;
  flex-shrink: 0;
}

/* ── Right: social icons ── */
.top-header-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.top-header-follow {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.4);
  white-space: nowrap;
}

.top-social-icons {
  display: flex;
  align-items: center;
  gap: 4px;
}

.top-social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.65);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.75rem;
  text-decoration: none;
  transition: background 0.25s ease, color 0.25s ease,
    border-color 0.25s ease, transform 0.2s ease;
  flex-shrink: 0;
}

.top-social-icon:hover {
  color: #fff;
  transform: translateY(-2px);
}

/* Brand-specific hover colours */
.top-social-fb:hover {
  background: #1877f2;
  border-color: #1877f2;
}

.top-social-ig:hover {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  border-color: #e6683c;
}

.top-social-yt:hover {
  background: #ff0000;
  border-color: #ff0000;
}

.top-social-x:hover {
  background: #000;
  border-color: #555;
}

.top-social-li:hover {
  background: #0a66c2;
  border-color: #0a66c2;
}

/* ── Sticky: include top bar height in offset ── */
.site-header {
  /* top bar is 40px; header handles its own sticky */
  position: sticky;
  top: 0;
  z-index: 100;
}

/* Top bar itself stays at top when header is sticky */
.top-header-bar {
  position: sticky;
  top: 0;
  z-index: 102;
}

.site-header {
  top: 40px;
  /* sit right below the top bar */
}

/* ── Responsive: top header bar ── */
@media (max-width: 900px) {
  .top-header-follow {
    display: none;
  }

  .top-header-item .top-header-label {
    display: none;
  }

  .top-header-inner {
    height: 38px;
  }

  .top-header-item {
    font-size: 0.75rem;
    padding-right: 10px;
  }

  .top-header-divider {
    margin-right: 10px;
  }
}

@media (max-width: 600px) {
  .top-header-inner {
    height: auto;
    padding: 6px 0;
    flex-wrap: wrap;
    gap: 6px;
  }

  .top-header-left {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 4px;
  }

  .top-header-right {
    width: 100%;
    justify-content: flex-start;
  }

  .top-header-item {
    font-size: 0.72rem;
    gap: 5px;
  }

  .top-header-divider {
    height: 12px;
    margin-right: 8px;
  }

  .top-social-icon {
    width: 26px;
    height: 26px;
    font-size: 0.7rem;
  }

  /* Keep header sticky offset updated */
  .site-header {
    top: 62px;
  }

  /* taller on mobile due to wrapping */
}

@media (max-width: 380px) {
  .top-header-left {
    gap: 2px;
  }

  .top-header-item {
    padding-right: 6px;
  }

  .top-header-divider {
    margin-right: 6px;
  }
}


/* ════════════════════════════════════════════
   FOOTER — SOCIAL MEDIA ROW
   ════════════════════════════════════════════ */

.footer-social-heading {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.35);
  margin: 18px 0 10px;
}

.footer-social-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.footer-social-sm {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  text-decoration: none;
  transition: background 0.25s ease, color 0.25s ease,
    border-color 0.25s ease, transform 0.25s ease,
    box-shadow 0.25s ease;
}

.footer-social-sm:hover {
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, .25);
}

/* Brand hover colours */
.footer-sm-fb:hover {
  background: #1877f2;
  border-color: #1877f2;
}

.footer-sm-ig:hover {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  border-color: #e6683c;
}

.footer-sm-yt:hover {
  background: #ff0000;
  border-color: #ff0000;
}

.footer-sm-x:hover {
  background: #000;
  border-color: #444;
}

.footer-sm-li:hover {
  background: #0a66c2;
  border-color: #0a66c2;
}


/* ═══════════════════════════════════════════════
   RECENT BLOG CARDS – Homepage (below Gallery)
   ═══════════════════════════════════════════════ */
.rh-recent-blogs {
  padding: 80px 0;
}

.rh-blog-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.rh-blog-card {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.rh-blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

/* Image wrapper with zoom effect */
.rh-blog-card-img-wrap {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 16/9;
  text-decoration: none;
}

.rh-blog-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.rh-blog-card:hover .rh-blog-card-img {
  transform: scale(1.07);
}

/* Category badge on image */
.rh-blog-card-cat {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--secondary);
  color: #fff;
  font-size: .7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .6px;
  padding: 4px 12px;
  border-radius: 50px;
  pointer-events: none;
}

/* Card body */
.rh-blog-card-body {
  padding: 24px 22px 26px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.rh-blog-card-date {
  font-size: .75rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 10px;
}

.rh-blog-card-date i {
  color: var(--secondary);
}

.rh-blog-card-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.35;
  margin-bottom: 12px;
  flex: 1;
}

.rh-blog-card-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}

.rh-blog-card-title a:hover {
  color: var(--secondary);
}

.rh-blog-card-excerpt {
  font-size: .87rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 18px;
}

.rh-blog-card-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: .82rem;
  font-weight: 800;
  color: var(--secondary);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-top: auto;
  transition: gap 0.2s, color 0.2s;
}

.rh-blog-card-btn:hover {
  color: var(--primary);
  gap: 12px;
}

/* Responsive */
@media (max-width: 900px) {
  .rh-blog-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 540px) {
  .rh-blog-cards-grid {
    grid-template-columns: 1fr;
  }
}

/* ═══════════════════════════════════════════════════════════
   SERVICE CARDS WITH IMAGES
   ═══════════════════════════════════════════════════════════ */
.rh-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.rh-svc-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.rh-svc-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.rh-svc-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9;
}

.rh-svc-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
  display: block;
}

.rh-svc-card:hover .rh-svc-img {
  transform: scale(1.06);
}

.rh-svc-badge {
  position: absolute;
  bottom: -18px;
  right: 20px;
  width: 44px;
  height: 44px;
  background: var(--secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1rem;
  box-shadow: 0 4px 14px rgba(232, 136, 10, .35);
  border: 3px solid #fff;
  z-index: 2;
}

.rh-svc-body {
  padding: 30px 22px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.rh-svc-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 10px;
}

.rh-svc-desc {
  font-size: .88rem;
  color: var(--text-light);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 16px;
}

.rh-svc-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: .83rem;
  font-weight: 800;
  color: var(--secondary);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .4px;
  transition: gap 0.2s, color 0.2s;
  margin-top: auto;
}

.rh-svc-link:hover {
  color: var(--primary);
  gap: 12px;
}

@media (max-width: 900px) {
  .rh-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 540px) {
  .rh-services-grid {
    grid-template-columns: 1fr;
  }
}

/* ═══════════════════════════════════════════════════════════
   CHEMICAL BRANDS SECTION
   ═══════════════════════════════════════════════════════════ */
.rh-brands-section {
  padding: 80px 0;
  background: #f8fafd;
}

.rh-brands-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  align-items: stretch;
}

.rh-brand-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px 16px 18px;
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.rh-brand-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(13, 43, 78, .12);
  border-color: var(--secondary);
}

.rh-brand-logo-wrap {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 56px;
}

.rh-brand-svg {
  width: 80px;
  height: 40px;
  border-radius: 6px;
}

.rh-brand-name {
  font-size: .9rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.2;
}

.rh-brand-tag {
  font-size: .72rem;
  color: var(--text-light);
  line-height: 1.3;
}

@media (max-width: 1100px) {
  .rh-brands-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 600px) {
  .rh-brands-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
  align-items: stretch;
}

.service-full-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-full-card p {
  flex: 1;
}

/* ═══════════════════════════════════════════════════════════
   Repairer Hub — Ad Slot Styles
   Add these rules to the END of: css/style.css
   ═══════════════════════════════════════════════════════════ */

/* Wrapper section — zero padding/margin when empty (never rendered) */
.rh-ad-section {
  padding: 0;
  margin: 0;
}

/* Ad slot container */
.rh-ad-slot {
  width: 100%;
  text-align: center;
  padding: 18px 0 14px;
  position: relative;
}

/* "Advertisement" micro-label above the ad */
.rh-ad-label {
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #b0bac8;
  margin-bottom: 8px;
  user-select: none;
}

/* Inner content wrapper */
.rh-ad-content {
  display: inline-block;
  max-width: 100%;
  overflow: hidden;
}

/* Banner images — responsive, capped at sensible widths */
.rh-ad-img {
  max-width: 100%;
  height: auto;
  border-radius: 6px;
  display: block;
  margin: 0 auto;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: opacity 0.2s ease;
}

.rh-ad-img:hover {
  opacity: 0.92;
}

/* Code/HTML ad wrapper */
.rh-ad-code-wrap {
  display: inline-block;
  max-width: 100%;
  overflow: hidden;
}

/* Panel 1 — middle section: subtle top border separator */
.rh-ad-panel1 {
  border-top: 1px solid var(--border, #dde4ef);
  border-bottom: 1px solid var(--border, #dde4ef);
  background: rgba(244, 247, 251, 0.5);
}

/* Panel 2 — bottom section: slightly more prominent */
.rh-ad-panel2 {
  background: #f9fafb;
  border-top: 1px solid var(--border, #dde4ef);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .rh-ad-slot {
    padding: 14px 0 10px;
  }
}

/* ═══════════════════════════════════════════════════════════════
   Repairer Hub — Advertisement Slot Styles
   ---------------------------------------------------------------
   Add these rules to the END of:  css/style.css
   ═══════════════════════════════════════════════════════════════ */

/* ── Outer section wrapper ───────────────────────────────────── */
/* Rendered only when an active ad exists; completely absent      */
/* from the DOM when no ad is active → zero layout impact.        */
.rh-ad-section {
  /* Reset any inherited section spacing */
  padding-top: 0;
  padding-bottom: 0;
  margin-top: 0;
  margin-bottom: 0;
}

/* ── Inner centered container ────────────────────────────────── */
.rh-ad-inner {
  max-width: 1200px;
  /* matches .container width */
  margin: 0 auto;
  padding: 20px 16px 16px;
  text-align: center;
}

/* ── "Advertisement" eyebrow label ───────────────────────────── */
.rh-ad-eyebrow {
  display: block;
  font-size: 0.58rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  color: #b8c4d4;
  margin-bottom: 7px;
  user-select: none;
  pointer-events: none;
}

/* ── The 728×90 frame ────────────────────────────────────────── */
.rh-ad-728x90 {
  /* Hard cap at 728px wide, exactly 90px tall */
  width: 728px;
  height: 90px;
  max-width: 100%;
  /* never overflow on narrow screens */

  /* Centre the frame inside .rh-ad-inner */
  margin: 0 auto;

  /* Clean presentation */
  background: #f0f4f8;
  /* fallback bg while ad loads */
  border-radius: 6px;
  overflow: hidden;

  /* Flex so the inner content fills it perfectly */
  display: flex;
  align-items: center;
  justify-content: center;

  /* Subtle styling so the slot is visible when you're testing */
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.06);

  position: relative;
}

/* ── Banner image ─────────────────────────────────────────────── */
.rh-ad-banner-img {
  width: 728px;
  /* native size */
  height: 90px;
  /* native size */
  max-width: 100%;
  /* responsive shrink on small screens */
  height: auto;
  /* maintain aspect ratio when shrinking */
  display: block;
  object-fit: cover;
  /* fill the frame on exact sizes */
  object-position: center;
  transition: opacity 0.2s ease;
}

.rh-ad-img-link {
  display: block;
  line-height: 0;
  /* removes phantom gap below img */
}

.rh-ad-img-link:hover .rh-ad-banner-img {
  opacity: 0.90;
}

/* ── Code / HTML / Google Ads container ──────────────────────── */
.rh-ad-code-container {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Force Google AdSense ins tags to fill the slot */
.rh-ad-code-container ins.adsbygoogle {
  width: 728px !important;
  height: 90px !important;
  max-width: 100% !important;
  display: block !important;
}

/* ── Panel-specific backgrounds ──────────────────────────────── */
/* Panel 1 — Middle of page: sits between content sections */
.rh-ad-panel1 {
  background-color: #f7f9fc;
  border-top: 1px solid var(--border, #dde4ef);
  border-bottom: 1px solid var(--border, #dde4ef);
}

/* Panel 2 — Bottom of page: above footer, slightly warmer */
.rh-ad-panel2 {
  background-color: #f9fafb;
  border-top: 1px solid var(--border, #dde4ef);
}

/* ── Home page visual polish ─────────────────────────────────── */
.rh-ad-home-wrap {
  /* Extra vertical breathing room on the homepage */
  padding-top: 8px;
  padding-bottom: 8px;
}

.rh-ad-home-wrap .rh-ad-inner {
  padding-top: 22px;
  padding-bottom: 18px;
}

/* ── Responsive behaviour ────────────────────────────────────── */
@media (max-width: 768px) {
  .rh-ad-728x90 {
    /* On mobile the frame shrinks fluidly.
       height: auto so the frame height tracks the scaled image. */
    width: 100%;
    height: auto;
    min-height: 40px;
  }

  .rh-ad-home-wrap .rh-ad-inner {
    padding: 14px 12px 10px;
  }

  .rh-ad-banner-img {
    width: 100%;
    height: auto;
  }

  .rh-ad-code-container ins.adsbygoogle {
    width: 100% !important;
    height: auto !important;
  }
}

@media (max-width: 480px) {
  .rh-ad-eyebrow {
    font-size: 0.5rem;
    letter-spacing: 1.2px;
    margin-bottom: 5px;
  }
}

/* ═══════════════════════════════════════════════════════════════
   Repairer Hub — Ad Slot Stylesheet
   ───────────────────────────────────────────────────────────────
   INSTRUCTION: Paste ALL of these rules at the very END of
                css/style.css  (after the last existing rule).
   ═══════════════════════════════════════════════════════════════

   Architecture note
   -----------------
   The ad HTML uses inline styles for the mission-critical sizing
   (width:728px; height:90px on the frame and image).  These CSS
   classes add polish, hover effects, and mobile overrides that
   are safe to handle via a stylesheet.
*/

/* ── Outer strip (background, borders) ──────────────────────── */
.rh-ad-section {
  display: block;
  width: 100%;
  box-sizing: border-box;
  /* No padding here – padding lives on .rh-ad-shell */
}

.rh-ad-panel1 {
  background-color: #f7f9fc;
  border-top: 1px solid var(--border, #dde4ef);
  border-bottom: 1px solid var(--border, #dde4ef);
}

.rh-ad-panel2 {
  background-color: #f9fafb;
  border-top: 1px solid var(--border, #dde4ef);
}

/* ── Shell: flex column, centres the banner frame ────────────── */
.rh-ad-shell {
  display: flex;
  flex-direction: column;
  align-items: center;
  /* ← horizontal centring of the child */
  width: 100%;
  padding: 18px 16px;
  box-sizing: border-box;
}

/* ── "Advertisement" label ───────────────────────────────────── */
/* (styles also live inline for safety; class just adds the reset) */
.rh-ad-shell span:first-child {
  user-select: none;
  pointer-events: none;
}

/* ── The 728 × 90 frame ──────────────────────────────────────── */
/*
  width / height are set inline on the element.
  These class rules add the visual finish.
*/
.rh-ad-728x90 {
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.07);
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.06);
  background: #eef1f6;
  /* visible while ad image loads */
  position: relative;
}

/* ── Image inside the frame ──────────────────────────────────── */
/*
  IMPORTANT: Do NOT set height here.
  style.css has a global  img { max-width:100%; height:auto }  reset
  that would override a class-level height rule.
  The inline style on the <img> tag (height:90px) wins instead.
  This class only adds hover polish.
*/
.rh-ad-728x90 img {
  display: block;
  object-fit: cover;
  object-position: center;
  /*vertical-align: top;*/
  transition: opacity 0.2s ease;
}

.rh-ad-728x90 a:hover img {
  opacity: 0.88;
}

.rh-ad-728x90 a {
  display: block;
  line-height: 0;
  /* kills the 4px phantom gap below inline images */
}

/* ── Google Ads / HTML embed ─────────────────────────────────── */
.rh-ad-728x90 ins.adsbygoogle {
  display: block !important;
  /* width/height come from the wrapping div inline styles */
}

/* ── Responsive: mobile scaling ──────────────────────────────── */
/*
  On screens narrower than 728px the inline  width:728px  is capped
  by  max-width:100%  (also inline), so the frame already shrinks.
  These rules adjust padding and let the height breathe.
*/
@media (max-width: 750px) {
  .rh-ad-shell {
    padding: 12px 10px;
  }

  /* The frame switches from fixed-height to auto on mobile so it
     doesn't clip a scaled-down image */
  .rh-ad-728x90 {
    height: auto !important;
    /* override the inline height:90px */
    min-height: 36px;
  }

  /* The image should also lose its fixed height on small screens */
  .rh-ad-728x90 img {
    width: 100% !important;
    /* override inline width:728px */
    height: auto !important;
    /* override inline height:90px */
  }

  /* Code-based ads */
  .rh-ad-728x90>div {
    width: 100% !important;
    height: auto !important;
  }

  .rh-ad-728x90 ins.adsbygoogle {
    width: 100% !important;
    height: auto !important;
  }

  /* The click wrapper */
  .rh-ad-728x90 a {
    width: 100% !important;
    height: auto !important;
  }

  @media (max-width: 480px) {
    .rh-ad-shell span:first-child {
      font-size: 9px;
      letter-spacing: 1.2px;
      margin-bottom: 4px;
    }
  }
}