/* ============================================================
   LRH ROOFING LTD — DESIGN SYSTEM
   Co. Meath, Ireland | lrhroofing.com
   ============================================================ */

:root {
  /* Brand Palette */
  --navy:          #0a1e3d;       /* Deep navy – primary brand */
  --navy-dark:     #060f21;       /* Darker navy for overlays */
  --navy-mid:      #102952;       /* Mid-navy for hover states */
  --slate-blue:    #1a3a6b;       /* Slate-blue for nav/footer */
  --gold:          #d4a017;       /* Rich Irish Gold – accent */
  --gold-light:    #f0c040;       /* Bright gold for highlights */
  --gold-pale:     #fdf6e3;       /* Pale gold bg tint */
  --red-irish:     #c0392b;       /* Emergency accent red */
  --white:         #ffffff;
  --off-white:     #f8f9fb;
  --grey-light:    #eef1f5;
  --grey-mid:      #8c95a4;
  --slate-text:    #2c3545;
  --border:        #dde3ed;
  --whatsapp:      #25D366;

  /* Typography */
  --font-display:  'Outfit', sans-serif;
  --font-body:     'Inter', sans-serif;

  /* Sizing */
  --container-max: 1200px;
  --nav-height:    72px;

  /* Shadows */
  --shadow-sm:  0 2px 8px rgba(10,30,61,0.07);
  --shadow-md:  0 6px 24px rgba(10,30,61,0.10);
  --shadow-lg:  0 16px 48px rgba(10,30,61,0.14);
  --shadow-xl:  0 24px 64px rgba(10,30,61,0.18);

  /* Radii */
  --r-sm:  6px;
  --r-md:  12px;
  --r-lg:  20px;
  --r-xl:  32px;

  /* Transitions */
  --ease: all 0.3s cubic-bezier(0.4,0,0.2,1);
  --ease-fast: all 0.18s ease-out;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  /* overflow-x: clip does NOT create a scroll container — fixes sticky navbar */
  overflow-x: clip;
}

body {
  overflow-x: clip;
  max-width: 100%;
}

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--slate-text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  /* Top bar (~38px) + navbar height is fixed, so we offset with padding */
  padding-top: calc(var(--topbar-h, 38px) + var(--nav-height));
}

a { color: inherit; text-decoration: none; transition: var(--ease-fast); }
img { display: block; max-width: 100%; }
ul { list-style: none; }

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

h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.3rem); }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.5rem); }
h4 { font-size: clamp(1rem, 2vw, 1.2rem); }

p { margin-bottom: 1rem; color: var(--slate-text); }
p:last-child { margin-bottom: 0; }

.lead {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: #4a5568;
  line-height: 1.75;
}

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

.section-pad { padding: clamp(4rem, 8vw, 7rem) 0; }
.section-pad-sm { padding: clamp(2.5rem, 5vw, 4rem) 0; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gold-pale);
  border: 1px solid rgba(212,160,23,0.3);
  border-radius: var(--r-xl);
  padding: 0.35rem 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: #8b6914;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}

.section-label::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
}

.section-header {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.section-header h2 { margin-bottom: 1rem; }

.section-header .lead {
  max-width: 620px;
  margin: 0 auto;
}

.text-gold { color: var(--gold); }
.text-white { color: var(--white); }
.text-center { text-align: center; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  border-radius: var(--r-md);
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--ease);
  white-space: nowrap;
  line-height: 1;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy-dark);
  border-color: var(--gold);
}

.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212,160,23,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.55);
}

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

.btn-navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.btn-navy:hover {
  background: var(--navy-mid);
  border-color: var(--navy-mid);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-lg {
  padding: 1rem 2.2rem;
  font-size: 1.05rem;
}

.btn-sm {
  padding: 0.6rem 1.2rem;
  font-size: 0.85rem;
}

/* ============================================================
   TOP BAR
   ============================================================ */
.top-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;  /* Above navbar */
  background: var(--navy-dark);
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  height: var(--topbar-h, 38px);
  display: flex;
  align-items: center;
}

/* Navbar shifts down below top-bar */
.navbar {
  top: var(--topbar-h, 38px) !important;
}

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

.top-bar-item {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.78);
  transition: var(--ease-fast);
}

.top-bar-item:hover { color: var(--gold-light); }

.top-bar-item svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  stroke: var(--gold);
}

.top-bar-left, .top-bar-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.top-bar-badge {
  background: var(--gold);
  color: var(--navy-dark);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.2rem 0.65rem;
  border-radius: var(--r-xl);
  letter-spacing: 0.04em;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s ease,
              background 0.3s ease;
}

/* Elevated shadow when scrolled */
.navbar.scrolled {
  box-shadow: 0 4px 24px rgba(10,30,61,0.13);
  background: rgba(255,255,255,0.99);
}

.navbar.scrolled .nav-logo-img {
  height: 42px;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
}

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

.nav-logo-img {
  height: 50px;
  width: auto;
  object-fit: contain;
  transition: height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.nav-logo-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.nav-logo-sub {
  font-size: 0.7rem;
  color: var(--grey-mid);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

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

.nav-link {
  padding: 0.5rem 0.85rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--slate-text);
  border-radius: var(--r-sm);
  transition: var(--ease-fast);
  position: relative;
}

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

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 20px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center;
}

.nav-link:hover::after, .nav-link.active::after {
  transform: translateX(-50%) scaleX(1);
}

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

.nav-phone {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--navy);
  transition: var(--ease-fast);
}

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

.nav-phone svg {
  width: 16px;
  height: 16px;
  stroke: var(--gold);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  border: none;
  background: transparent;
  padding: 6px;
  border-radius: var(--r-sm);
  transition: var(--ease-fast);
}

.hamburger:hover { background: var(--off-white); }

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--ease);
  transform-origin: center;
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--navy-dark);
  z-index: 999;
  flex-direction: column;
  padding: 5rem 1.5rem 2rem;
  gap: 0.5rem;
  overflow-y: auto;
  animation: slideIn 0.3s ease;
}

@keyframes slideIn {
  from { opacity: 0; transform: translateX(100%); }
  to   { opacity: 1; transform: translateX(0); }
}

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

.mobile-menu-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(255,255,255,0.1);
  border: none;
  color: var(--white);
  width: 44px;
  height: 44px;
  border-radius: var(--r-md);
  font-size: 1.4rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-link {
  display: block;
  padding: 1rem 1.25rem;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  border-radius: var(--r-md);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: var(--ease-fast);
}

.mobile-link:hover { background: rgba(255,255,255,0.08); color: var(--gold-light); }

.mobile-cta-group {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mobile-contact {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  background: rgba(255,255,255,0.06);
  border-radius: var(--r-md);
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 600;
}

.mobile-contact svg {
  width: 20px;
  height: 20px;
  stroke: var(--gold);
  flex-shrink: 0;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: clamp(520px, 90vh, 820px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy-dark);
}

.hero-bg {
  position: absolute;
  inset: 0;
  /* Gradient fallback (shows when image isn't loaded) */
  background:
    linear-gradient(135deg, #0a1e3d 0%, #102952 40%, #1a3a6b 70%, #0a1e3d 100%);
  background-image:
    radial-gradient(circle at 20% 50%, rgba(212,160,23,0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(26,58,107,0.5) 0%, transparent 50%),
    url('images/lrh_hero_bg.png');
  background-size: cover, cover, cover;
  background-position: center, center, center top;
  background-repeat: no-repeat;
  transform: scale(1.05);
  transition: transform 8s ease;
}

/* Slate texture pattern overlay when no image */
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 2px,
      rgba(255,255,255,0.012) 2px,
      rgba(255,255,255,0.012) 4px
    );
  pointer-events: none;
  z-index: 0;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(6,15,33,0.9) 0%,
    rgba(6,15,33,0.75) 50%,
    rgba(6,15,33,0.5) 100%
  );
  z-index: 1;
}

.hero:hover .hero-bg { transform: scale(1.0); }

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: clamp(3rem,8vw,6rem) 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(212,160,23,0.18);
  border: 1px solid rgba(212,160,23,0.45);
  border-radius: var(--r-xl);
  padding: 0.45rem 1.1rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gold-light);
  letter-spacing: 0.09em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hero h1 span { color: var(--gold-light); }

.hero-lead {
  font-size: clamp(0.97rem, 2vw, 1.12rem);
  color: rgba(255,255,255,0.82);
  margin-bottom: 2rem;
  max-width: 560px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.7);
  font-size: 0.83rem;
  font-weight: 500;
}

.hero-trust-item svg {
  width: 16px;
  height: 16px;
  stroke: var(--gold);
}

/* Stars */
.stars {
  display: flex;
  align-items: center;
  gap: 2px;
  color: var(--gold);
  font-size: 0.95rem;
}

.star { color: var(--gold); }

/* Hero scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255,255,255,0.4);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.scroll-dot {
  width: 20px;
  height: 32px;
  border: 2px solid rgba(255,255,255,0.25);
  border-radius: 10px;
  position: relative;
}

.scroll-dot::after {
  content: '';
  position: absolute;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  background: rgba(255,255,255,0.6);
  border-radius: 50%;
  animation: scrollDot 1.8s ease-in-out infinite;
}

@keyframes scrollDot {
  0%, 100% { opacity: 1; top: 5px; }
  50% { opacity: 0.3; top: 16px; }
}

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust-strip {
  background: var(--navy);
  padding: 1.4rem 0;
  border-bottom: 3px solid var(--gold);
}

.trust-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: rgba(255,255,255,0.85);
  font-size: 0.88rem;
  font-weight: 600;
}

.trust-item svg {
  width: 20px;
  height: 20px;
  stroke: var(--gold);
  flex-shrink: 0;
}

.trust-divider {
  width: 1px;
  height: 24px;
  background: rgba(255,255,255,0.15);
  flex-shrink: 0;
}

/* ============================================================
   SERVICES SECTION
   ============================================================ */
.services-section { background: var(--off-white); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

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

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(212,160,23,0.25);
}

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

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

.service-card-img-wrap {
  overflow: hidden;
  position: relative;
}

.service-card-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--gold);
  color: var(--navy-dark);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.25rem 0.7rem;
  border-radius: var(--r-xl);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.service-card-body,
.service-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-icon {
  width: 44px;
  height: 44px;
  background: var(--gold-pale);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  flex-shrink: 0;
}

.service-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--gold);
  stroke-width: 1.8;
}

.service-card h3 { margin-bottom: 0.65rem; font-size: 1.1rem; }

.service-card p { font-size: 0.9rem; color: var(--grey-mid); margin-bottom: 1.25rem; flex: 1; }

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--navy);
  transition: var(--ease-fast);
  margin-top: auto;
}

.service-link:hover { color: var(--gold); gap: 0.7rem; }

.service-link svg { width: 14px; height: 14px; stroke: currentColor; }

/* ============================================================
   ABOUT / WHY CHOOSE US
   ============================================================ */
.about-section { background: var(--white); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.about-img-wrap {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.about-img {
  width: 100%;
  height: clamp(320px, 50vw, 520px);
  object-fit: cover;
  display: block;
}

.about-badge-float {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 1rem 1.25rem;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.about-badge-icon {
  width: 48px;
  height: 48px;
  background: var(--gold);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.about-badge-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--navy-dark);
}

.about-badge-text strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--navy);
}

.about-badge-text span {
  font-size: 0.78rem;
  color: var(--grey-mid);
  font-weight: 500;
}

.about-content { padding: 0.5rem 0; }
.about-content h2 { margin-bottom: 1.25rem; }
.about-content .lead { margin-bottom: 1.75rem; }

.about-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
}

.feature-bullet {
  width: 32px;
  height: 32px;
  background: var(--gold-pale);
  border: 2px solid rgba(212,160,23,0.3);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.feature-bullet svg {
  width: 16px;
  height: 16px;
  stroke: var(--gold);
  stroke-width: 2.5;
}

.feature-text strong {
  display: block;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.2rem;
  font-size: 0.95rem;
}

.feature-text p { font-size: 0.88rem; color: var(--grey-mid); margin: 0; }

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--slate-blue) 100%);
  padding: clamp(3rem, 6vw, 5rem) 0;
}

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

.stat-item {
  text-align: center;
  padding: 1.5rem 1rem;
  border-right: 1px solid rgba(255,255,255,0.12);
}

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

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.stat-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  font-weight: 500;
}

/* ============================================================
   REVIEWS / TESTIMONIALS
   ============================================================ */
.reviews-section { background: var(--off-white); }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

.review-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--ease);
  position: relative;
}

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

.review-card::before {
  content: '\201C';
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-size: 4rem;
  color: rgba(212,160,23,0.15);
  font-family: Georgia, serif;
  line-height: 1;
}

.review-stars { display: flex; gap: 3px; margin-bottom: 0.85rem; }

.review-stars svg {
  width: 16px;
  height: 16px;
  fill: var(--gold);
  stroke: none;
}

.review-text {
  font-size: 0.92rem;
  color: var(--slate-text);
  line-height: 1.7;
  margin-bottom: 1.25rem;
  font-style: italic;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.review-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy) 0%, var(--slate-blue) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}

.review-name {
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--navy);
  margin-bottom: 0.15rem;
}

.review-meta {
  font-size: 0.78rem;
  color: var(--grey-mid);
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.review-meta svg {
  width: 12px;
  height: 12px;
}

.google-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 0.5rem 1.25rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--slate-text);
  box-shadow: var(--shadow-sm);
}

.google-badge .g-icon {
  width: 18px;
  height: 18px;
  border-radius: 50%;
}

/* ============================================================
   INSTAGRAM / WORK GALLERY
   ============================================================ */
.gallery-section { background: var(--white); }

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

.gallery-item {
  position: relative;
  border-radius: var(--r-md);
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: var(--grey-light);
}

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

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,30,61,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--ease);
}

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

.gallery-overlay svg {
  width: 32px;
  height: 32px;
  stroke: var(--white);
}

/* Instagram Feed Placeholder */
.insta-feed {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.insta-post-placeholder {
  aspect-ratio: 1/1;
  background: var(--grey-light);
  border-radius: var(--r-md);
  overflow: hidden;
  position: relative;
}

.insta-post-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact-section { background: var(--off-white); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.contact-info h2 { margin-bottom: 1.25rem; }
.contact-info .lead { margin-bottom: 2rem; }

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 1.1rem 1.25rem;
  transition: var(--ease);
}

.contact-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-sm);
  transform: translateX(4px);
}

.contact-card-icon {
  width: 44px;
  height: 44px;
  background: var(--gold-pale);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-card-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--gold);
  stroke-width: 1.8;
}

.contact-card-label {
  font-size: 0.75rem;
  color: var(--grey-mid);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.2rem;
}

.contact-card-value {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
}

.social-links {
  display: flex;
  gap: 0.75rem;
}

.social-link {
  width: 42px;
  height: 42px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--ease-fast);
  color: var(--slate-text);
}

.social-link:hover {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}

.social-link svg { width: 18px; height: 18px; stroke: currentColor; }

/* Contact Form */
.contact-form-card {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: clamp(1.5rem, 4vw, 2.5rem);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}

.form-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.4rem;
}

.form-subtitle {
  font-size: 0.88rem;
  color: var(--grey-mid);
  margin-bottom: 1.75rem;
}

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

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

.form-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.45rem;
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--slate-text);
  background: var(--off-white);
  transition: var(--ease-fast);
  outline: none;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--navy);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(10,30,61,0.08);
}

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

.form-btn {
  width: 100%;
  padding: 0.95rem;
  font-size: 1rem;
}

/* ============================================================
   MAP SECTION
   ============================================================ */
.map-section { background: var(--white); }

.map-wrap {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  height: 400px;
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-section {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--slate-blue) 100%);
  padding: clamp(3.5rem, 7vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(212,160,23,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}

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

.cta-inner .lead {
  color: rgba(255,255,255,0.72);
  margin-bottom: 2.5rem;
}

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

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.75);
  padding-top: clamp(3rem, 6vw, 5rem);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.1fr 1fr 1.1fr;
  gap: clamp(1.25rem, 3vw, 2.5rem);
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand-logo {
  height: 52px;
  width: auto;
  margin-bottom: 1rem;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.95;
}

.footer-brand-desc {
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.6);
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  gap: 0.6rem;
}

.footer-social-link {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.65);
  transition: var(--ease-fast);
}

.footer-social-link:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy-dark);
}

.footer-social-link svg { width: 16px; height: 16px; stroke: currentColor; }

.footer-heading {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

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

.footer-link {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  transition: var(--ease-fast);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.footer-link:hover { color: var(--gold-light); padding-left: 4px; }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 0.9rem;
  line-height: 1.5;
}

.footer-contact-item svg {
  width: 16px;
  height: 16px;
  stroke: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

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

.footer-copyright {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}

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

.footer-bottom-link {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
  transition: var(--ease-fast);
}

.footer-bottom-link:hover { color: var(--gold-light); }

/* ============================================================
   FLOATING WHATSAPP
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  background: var(--whatsapp);
  color: var(--white);
  border-radius: var(--r-xl);
  padding: 0.8rem 1.25rem 0.8rem 1rem;
  box-shadow: 0 8px 28px rgba(37,211,102,0.4);
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 600;
  transition: var(--ease);
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 12px 36px rgba(37,211,102,0.5);
  color: var(--white);
}

.whatsapp-float svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
  flex-shrink: 0;
}

.wa-pulse {
  width: 8px;
  height: 8px;
  background: #fff;
  border-radius: 50%;
  animation: waPulse 2s ease-in-out infinite;
  flex-shrink: 0;
}

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

/* ============================================================
   BACK TO TOP
   ============================================================ */
.back-top {
  position: fixed;
  bottom: 1.75rem;
  left: 1.75rem;
  z-index: 999;
  width: 44px;
  height: 44px;
  background: var(--navy);
  color: var(--white);
  border: none;
  border-radius: var(--r-md);
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  transition: var(--ease);
}

.back-top.visible { display: flex; }
.back-top:hover { background: var(--gold); transform: translateY(-3px); }
.back-top svg { width: 18px; height: 18px; stroke: currentColor; }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--slate-blue) 100%);
  padding: clamp(3rem, 7vw, 5.5rem) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('images/lrh_hero_bg.png') center/cover no-repeat;
  opacity: 0.12;
}

.page-hero-content { position: relative; z-index: 1; }

.page-hero h1 { color: var(--white); margin-bottom: 0.75rem; }

.page-hero .lead { color: rgba(255,255,255,0.75); }

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
}

.breadcrumb a { color: rgba(255,255,255,0.6); }
.breadcrumb a:hover { color: var(--gold-light); }
.breadcrumb-sep { color: rgba(255,255,255,0.3); }

/* ============================================================
   FADE-IN ANIMATION
   ============================================================ */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* ============================================================
   EMERGENCY BADGE
   ============================================================ */
.emergency-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(192,57,43,0.12);
  border: 1px solid rgba(192,57,43,0.3);
  border-radius: var(--r-xl);
  padding: 0.4rem 1rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: #e74c3c;
  margin-bottom: 1rem;
}

.emergency-pill::before {
  content: '';
  width: 7px;
  height: 7px;
  background: #e74c3c;
  border-radius: 50%;
  animation: blink 1.2s ease infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.2; }
}

/* ============================================================
   RESPONSIVE — TABLET (≤ 900px)
   ============================================================ */
@media (max-width: 900px) {
  .nav-links, .nav-phone { display: none; }
  .hamburger { display: flex; }
  .nav-cta .btn { display: none; }

  .about-grid { grid-template-columns: 1fr; }
  .about-img-wrap { max-height: 360px; }
  .about-img { height: 360px; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }

  .contact-grid { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr 1fr; }

  .gallery-grid, .insta-feed { grid-template-columns: repeat(3, 1fr); }

  .top-bar-right { display: none; }
}

/* ============================================================
   RESPONSIVE — MOBILE (≤ 600px)
   ============================================================ */
@media (max-width: 600px) {
  :root { --nav-height: 60px; }

  .hero { min-height: 100svh; }

  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-actions .btn { width: 100%; justify-content: center; }

  .hero-trust { gap: 1rem; }

  .services-grid { grid-template-columns: 1fr; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 0; }
  .stat-item {
    border-right: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding: 1.25rem;
  }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-bottom: none; }
  .stat-item:nth-child(4) { border-right: none; border-bottom: none; }

  .reviews-grid { grid-template-columns: 1fr; }

  .gallery-grid, .insta-feed { grid-template-columns: repeat(2, 1fr); }

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

  .footer-grid { grid-template-columns: 1fr; }

  .footer-bottom { flex-direction: column; align-items: center; text-align: center; }

  .trust-strip-inner { gap: 1rem; }
  .trust-divider { display: none; }

  .cta-actions { flex-direction: column; align-items: center; }
  .cta-actions .btn { width: 100%; justify-content: center; }

  .top-bar-left { gap: 1rem; }

  .map-wrap { height: 280px; }

  .whatsapp-float { padding: 0.8rem; border-radius: 50%; }
  .whatsapp-float span { display: none; }
  .wa-pulse { display: none; }

  .section-pad { padding: clamp(3rem, 7vw, 5rem) 0; }
}

/* ============================================================
   LANDING & EMERGENCY HERO HEADING VISIBILITY
   ============================================================ */
.landing-hero h1,
.emergency-hero h1 {
  color: var(--white) !important;
  text-shadow: 0 2px 20px rgba(0,0,0,0.35);
}

/* ============================================================
   PRINT STYLES
   ============================================================ */
@media print {
  .navbar, .top-bar, .whatsapp-float, .back-top, .mobile-menu { display: none !important; }
  .hero { min-height: auto; padding: 2rem 0; }
}
