/* ============================================================
   BIG BLUE PROPERTY PREPPERS — Global Styles
   Palette: Navy #0b1f38 | Charcoal #1c2b3a | Orange #f47c20
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Barlow+Condensed:wght@400;600;700;800&family=Barlow:wght@400;500;600&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:    #0b1f38;
  --charcoal:#1c2b3a;
  --steel:   #2a3f54;
  --orange:  #f47c20;
  --orange2: #ffaa55;
  --gold:    #c9933a;
  --offwhite:#f0ebe2;
  --gray:    #7a8fa0;
  --light:   #cdd8e3;
  --dark:    #060e1a;
  --border:  rgba(255,255,255,0.07);
}

html { scroll-behavior: smooth; }

/* Prevent browser default blue link override */
a { color: inherit; }
a:visited { color: inherit; }

body {
  font-family: 'Barlow', sans-serif;
  background: var(--dark);
  color: var(--offwhite);
  overflow-x: hidden;
  min-height: 100vh;
}

/* ── TEXTURE OVERLAY ── */
body::before {
  content: '';
  position: fixed; inset: 0;
  background-image:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 2px,
      rgba(255,255,255,0.012) 2px,
      rgba(255,255,255,0.012) 4px
    );
  pointer-events: none;
  z-index: 0;
}

/* ── TYPOGRAPHY ── */
h1,h2,h3,h4 {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.04em;
  line-height: 1;
}

.label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}

.label::before {
  content: '';
  display: block;
  width: 24px; height: 2px;
  background: var(--orange);
}

/* ── NAV ── */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 40px;
  background: rgba(6,14,26,0.96);
  backdrop-filter: blur(16px);
  border-bottom: 2px solid var(--orange);
}

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

.nav-logo img {
  width: 54px;
  height: auto;
  filter: drop-shadow(0 2px 8px rgba(244,124,32,0.5));
}

.nav-brand {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.3rem;
  letter-spacing: 0.08em;
  color: var(--offwhite);
  line-height: 1.1;
}

.nav-brand small {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  color: var(--orange);
  font-weight: 700;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
}

.nav-links a {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--light);
  text-decoration: none;
  padding: 6px 12px;
  border-radius: 2px;
  transition: color 0.2s, background 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--orange);
  background: rgba(244,124,32,0.08);
}

.nav-fb {
  color: var(--light);
  opacity: 0.7;
  transition: opacity 0.2s, color 0.2s;
  padding: 6px 10px;
}

.nav-fb:hover { opacity: 1; color: #1877f2; }

.nav-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  color: #fff !important;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 2px;
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
  box-shadow: 0 2px 14px rgba(244,124,32,0.35);
}

.nav-cta:hover { background: #d46a10; transform: translateY(-1px); }

/* Mobile nav */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--offwhite);
  cursor: pointer;
  padding: 4px;
}

@media (max-width: 900px) {
  .site-nav { padding: 10px 18px; }
  .nav-links, .nav-fb { display: none; }
  .nav-toggle { display: flex; align-items: center; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 64px; left: 0; right: 0;
    background: rgba(6,14,26,0.98);
    padding: 20px;
    gap: 4px;
    border-bottom: 2px solid var(--orange);
    z-index: 899;
  }
  .nav-links.open a { padding: 12px 16px; font-size: 1rem; }
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 110px 40px 80px;
  overflow: hidden;
  z-index: 1;
}

.hero-bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(135deg, rgba(6,14,26,0.97) 0%, rgba(11,31,56,0.92) 50%, rgba(6,14,26,0.95) 100%);
  z-index: 1;
}

.hero-grid-lines {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(244,124,32,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244,124,32,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 1;
}

.hero-diagonal {
  position: absolute;
  top: 0; right: 0;
  width: 45%; height: 100%;
  background: linear-gradient(180deg, rgba(244,124,32,0.06) 0%, rgba(28,43,58,0.15) 100%);
  clip-path: polygon(15% 0%, 100% 0%, 100% 100%, 0% 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 860px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.76rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 18px;
  opacity: 0;
  animation: fadeUp 0.6s 0.1s forwards;
}

.hero-eyebrow::before { content: ''; width: 28px; height: 2px; background: var(--orange); }

.hero-h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3.2rem, 9vw, 7.5rem);
  line-height: 0.92;
  color: var(--offwhite);
  margin-bottom: 6px;
  opacity: 0;
  animation: fadeUp 0.6s 0.25s forwards;
}

.hero-h1 .accent { color: var(--orange); display: block; }

.hero-sub-head {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 0.6s 0.4s forwards;
}

.hero-body {
  font-size: 1.05rem;
  color: var(--gray);
  line-height: 1.75;
  max-width: 520px;
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeUp 0.6s 0.55s forwards;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.6s 0.7s forwards;
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--orange);
  color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 15px 30px;
  border-radius: 2px;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 24px rgba(244,124,32,0.45);
  border: none; cursor: pointer;
}

.btn-primary:hover { background: #d46a10; transform: translateY(-2px); box-shadow: 0 8px 32px rgba(244,124,32,0.55); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--offwhite);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 15px 30px;
  border-radius: 2px;
  border: 2px solid rgba(255,255,255,0.2);
  transition: border-color 0.2s, color 0.2s, transform 0.15s;
}

.btn-secondary:hover { border-color: var(--orange); color: var(--orange2); transform: translateY(-2px); }

/* ── TRUST BAR ── */
.trust-bar {
  position: relative; z-index: 2;
  background: var(--orange);
  padding: 14px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 44px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
}

/* ── SECTION SHARED ── */
.section {
  position: relative; z-index: 2;
  padding: 96px 40px;
}

.section-inner { max-width: 1160px; margin: 0 auto; }

.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  color: var(--offwhite);
  margin-bottom: 16px;
}

.section-body {
  font-size: 1.03rem;
  color: var(--gray);
  line-height: 1.76;
  max-width: 600px;
}

/* ── SERVICE CARDS ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2px;
  margin-top: 52px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
}

.service-card {
  background: var(--charcoal);
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: background 0.25s;
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}

.service-card:hover { background: rgba(42,63,84,0.9); }
.service-card:hover::after { transform: scaleX(1); }

.service-icon {
  width: 44px; height: 44px;
  background: rgba(244,124,32,0.1);
  border: 1px solid rgba(244,124,32,0.22);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--orange);
}

.service-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.45rem;
  letter-spacing: 0.06em;
  color: var(--offwhite);
  margin-bottom: 8px;
}

.service-card p { font-size: 0.9rem; color: var(--gray); line-height: 1.65; }

/* ── CTA BAND ── */
.cta-band {
  background: linear-gradient(135deg, var(--orange) 0%, #c96a10 100%);
  padding: 60px 40px;
  text-align: center;
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 20px,
      rgba(0,0,0,0.06) 20px,
      rgba(0,0,0,0.06) 22px
    );
}

.cta-band h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: #fff;
  margin-bottom: 10px;
  position: relative;
}

.cta-band p { color: rgba(255,255,255,0.85); margin-bottom: 28px; font-size: 1.05rem; position: relative; }

.cta-band .btn-white {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: var(--orange);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 16px 36px;
  border-radius: 2px;
  transition: transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  position: relative;
}

.cta-band .btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,0.3); }

/* ── FOOTER ── */
.site-footer {
  background: var(--dark);
  border-top: 2px solid var(--orange);
  padding: 60px 40px 30px;
  position: relative; z-index: 2;
}

.footer-grid {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 48px;
}

.footer-brand img {
  width: 90px;
  margin-bottom: 16px;
  filter: drop-shadow(0 2px 12px rgba(244,124,32,0.4));
}

.footer-brand h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.06em;
  color: var(--offwhite);
  margin-bottom: 6px;
}

.footer-brand p { font-size: 0.88rem; color: var(--gray); line-height: 1.65; max-width: 260px; }

.footer-col h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.74rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }

.footer-col a {
  font-size: 0.9rem;
  color: var(--gray);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--orange2); }

.footer-nap { font-size: 0.9rem; color: var(--gray); line-height: 1.8; }
.footer-nap strong { color: var(--offwhite); display: block; margin-bottom: 4px; }

.footer-nap a { color: var(--orange2); text-decoration: none; }
.footer-nap a:hover { text-decoration: underline; }

.footer-social { display: flex; gap: 10px; margin-top: 14px; }

.footer-social a {
  width: 36px; height: 36px;
  background: var(--steel);
  border: 1px solid var(--border);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.footer-social a:hover { background: #1877f2; color: #fff; border-color: #1877f2; }

.footer-bottom {
  max-width: 1160px;
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-bottom p { font-size: 0.78rem; color: var(--gray); }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }

/* ── CONTACT FORM ── */
.contact-form { display: flex; flex-direction: column; gap: 14px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 5px; }

.form-group label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray);
}

.form-group input,
.form-group textarea,
.form-group select {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 2px;
  color: var(--offwhite);
  font-family: 'Barlow', sans-serif;
  font-size: 0.95rem;
  padding: 11px 14px;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--orange); }

.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(122,143,160,0.4); }

.form-group textarea { resize: vertical; min-height: 115px; }
.form-group select option { background: var(--navy); }

/* ── PAGE HERO (subpages) ── */
.page-hero {
  position: relative;
  padding: 130px 40px 70px;
  background: linear-gradient(135deg, var(--dark) 0%, var(--navy) 100%);
  border-bottom: 2px solid var(--orange);
  overflow: hidden;
  z-index: 1;
}

.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(244,124,32,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244,124,32,0.03) 1px, transparent 1px);
  background-size: 50px 50px;
}

.page-hero-inner { max-width: 1160px; margin: 0 auto; position: relative; z-index: 2; }

.page-hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  color: var(--offwhite);
  margin-bottom: 10px;
}

.page-hero h1 span { color: var(--orange); }

.page-hero p {
  font-size: 1.05rem;
  color: var(--gray);
  max-width: 560px;
}

/* ── AREA CARDS ── */
.area-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 2px;
  margin-top: 48px;
  background: var(--border);
  border-radius: 4px;
  overflow: hidden;
}

.area-card {
  background: var(--charcoal);
  padding: 28px 24px;
  transition: background 0.25s;
}

.area-card:hover { background: var(--steel); }

.area-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  color: var(--offwhite);
  margin-bottom: 6px;
}

.area-card p { font-size: 0.85rem; color: var(--gray); line-height: 1.6; }

.area-badge {
  display: inline-block;
  background: rgba(244,124,32,0.12);
  border: 1px solid rgba(244,124,32,0.25);
  color: var(--orange);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 2px;
  margin-bottom: 10px;
}

/* ── BEFORE/AFTER ── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 16px;
  margin-top: 48px;
}

.gallery-placeholder {
  background: var(--charcoal);
  border: 2px dashed rgba(244,124,32,0.25);
  border-radius: 4px;
  aspect-ratio: 4/3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--gray);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.gallery-placeholder svg { color: rgba(244,124,32,0.3); }

/* ── FB PLUGIN ── */
.fb-section {
  background: var(--charcoal);
  padding: 60px 40px;
  position: relative; z-index: 2;
  overflow-x: hidden;
}

.fb-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.fb-plugin-wrap {
  background: var(--dark);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  min-height: 600px;
  width: 100%;
  max-width: 100%;
  display: block;
  position: relative;
}

/* Force FB iframe to fill the wrapper fully */
.fb-plugin-wrap .fb-page {
  display: block !important;
  width: 100% !important;
}

.fb-plugin-wrap .fb-page > span {
  display: block !important;
  width: 100% !important;
}

.fb-plugin-wrap .fb-page > span > iframe {
  display: block !important;
  width: 100% !important;
  min-width: 100% !important;
  border: none !important;
}

.fb-plugin-wrap iframe {
  max-width: 100%;
  border: none;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .section { padding: 72px 18px; }
  .trust-bar { padding: 12px 18px; gap: 18px; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero { padding: 100px 18px 60px; }
  .page-hero { padding: 110px 18px 56px; }
  .form-row { grid-template-columns: 1fr; }
  .cta-band { padding: 48px 18px; }
  .fb-inner { grid-template-columns: 1fr; }
  .fb-section { padding: 56px 18px; }
  .site-footer { padding: 48px 18px 24px; }

  /* Fix inline grids that don't have class-based overrides */
  .section-inner [style*="grid-template-columns:1fr 1fr"],
  .section-inner [style*="grid-template-columns: 1fr 1fr"] {
    grid-template-columns: 1fr !important;
    gap: 36px !important;
  }

  /* Ray's owner badge text wrap */
  .section-inner [style*="display:flex;align-items:center;gap:16px"] {
    flex-wrap: wrap;
  }

  /* Logo image in about section */
  .section-inner [style*="max-width:320px"] {
    max-width: 200px !important;
    margin: 0 auto;
  }

  /* Area strip grid */
  .area-grid { grid-template-columns: 1fr !important; }
}

@media (max-width: 500px) {
  /* Facebook plugin container needs to shrink to phone width */
  .fb-plugin-wrap { min-height: 200px; }
  .fb-plugin-wrap .fb-page { min-width: 0 !important; }

  /* Trust bar wrap tighter */
  .trust-bar { gap: 10px; padding: 12px 14px; }
  .trust-item { font-size: 0.7rem; }
}

@media (max-width: 480px) {
  .trust-bar { gap: 14px; }
  .trust-item { font-size: 0.72rem; }
}

/* ── ABOUT TWO-COL & AREA HOME GRID ── */
.about-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.area-grid-home {
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
}

@media (max-width: 768px) {
  .about-two-col {
    grid-template-columns: 1fr !important;
    gap: 36px !important;
    direction: ltr !important;
  }

  .about-two-col img {
    max-width: 200px !important;
    margin: 0 auto;
    display: block;
  }

  .about-two-col .reveal[style*="display:flex;align-items:center"] {
    flex-wrap: wrap;
  }
}

/* ── LEARN MORE BUTTON ── */
.learn-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #f47c20 !important;
  text-decoration: none !important;
  padding: 8px 16px;
  border: 1.5px solid rgba(244,124,32,0.4);
  border-radius: 2px;
  background: rgba(244,124,32,0.08);
  transition: background 0.2s, border-color 0.2s;
}

.learn-more-btn:hover {
  background: rgba(244,124,32,0.18);
  border-color: rgba(244,124,32,0.7);
  color: #ffaa55 !important;
}

.learn-more-btn:visited {
  color: #f47c20 !important;
}

/* ── GALLERY PHOTO CARDS ── */
.gallery-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

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

.gallery-card-img {
  overflow: hidden;
}

/* Service detail image with real photo */
.service-detail-img img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  display: block;
  border-radius: 3px;
}

@media (max-width: 800px) {
  .service-detail-img img {
    height: 240px;
  }
  #pond-img-wrap {
    grid-template-columns: 1fr !important;
  }
  #pond-img-wrap img {
    height: 200px !important;
  }
}
