/* ══════════════════════════════════════════════════════════
   Advanced Wildlife Control — Main Stylesheet
   ══════════════════════════════════════════════════════════ */

:root {
  /* Core brand — pulled from logo: dark navy, bright blue, orange accent */
  --navy:       #0d1b2e;       /* deep navy (logo background/text) */
  --blue:       #1a5fa8;       /* bright blue (ADVANCED in logo) */
  --blue-light: #2e7fd4;       /* hover / lighter blue */
  --orange:     #c85a1e;       /* orange CTA accent */
  --orange-dark:#a04416;       /* orange hover */
  --forest:     #0d1b2e;       /* aliased to navy for backwards compat */
  --bark:       #2a1a0e;
  --moss:       #1a5fa8;       /* aliased to blue */
  --sage:       #4a8fd4;
  --cream:      #f4f1eb;
  --tan:        #d4b896;
  --rust:       #c85a1e;       /* aliased to orange */
  --sky:        #1a5fa8;       /* aliased to blue */
  --sky-light:  #2e7fd4;
  --gold:       #c9942a;
  --white:      #ffffff;
  --text-dark:  #111827;
  --text-mid:   #374151;
  --text-light: #6b7280;
  --border:     #e0d8cc;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Source Sans 3', sans-serif; color: var(--text-dark); background: var(--cream); font-size: 17px; line-height: 1.7; }
img { max-width: 100%; height: auto; }
a { color: var(--sky); }

/* ══ TOP BAR ════════════════════════════════════════════════ */
.topbar { background: #080f1a; color: rgba(255,255,255,0.55); font-size: 13px; padding: 6px 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
.topbar-inner { max-width: 1200px; margin: auto; padding: 0 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 6px; }
.topbar a { color: rgba(255,255,255,0.55); text-decoration: none; }
.topbar a:hover { color: var(--tan); }
.topbar-left { display: flex; gap: 20px; align-items: center; }
.topbar-right { display: flex; gap: 16px; align-items: center; }
.topbar .phone { color: var(--tan); font-weight: 600; font-size: 14px; }

/* ══ SITE HEADER ════════════════════════════════════════════ */
#masthead {
  background: var(--navy);
  border-bottom: 3px solid var(--orange);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 16px rgba(0,0,0,0.35);
}
.header-inner { max-width: 1200px; margin: auto; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; height: 80px; }
.site-branding { display: flex; align-items: center; gap: 0; text-decoration: none; flex-shrink: 0; }
.site-logo-img {
  height: 64px;
  width: auto;
  max-width: 260px;
  display: block;
  object-fit: contain;
  /* Logos on dark bg — drop-shadow to pop if it has transparency */
  filter: drop-shadow(0 1px 3px rgba(0,0,0,0.4));
}
/* WP custom logo */
.site-branding .custom-logo-link img,
.site-branding .custom-logo {
  height: 64px;
  width: auto;
  max-width: 260px;
  display: block;
}
.logo-text .logo-main { font-family: 'Oswald', sans-serif; font-size: 20px; font-weight: 700; color: var(--sky); text-transform: uppercase; letter-spacing: 1px; line-height: 1.1; display: block; }
.logo-text .logo-sub  { font-size: 11px; color: rgba(255,255,255,0.5); letter-spacing: 2px; text-transform: uppercase; display: block; }

/* ══ PRIMARY NAVIGATION ═════════════════════════════════════ */
#site-navigation { display: flex; align-items: center; }

#site-navigation ul { list-style: none; display: flex; align-items: center; gap: 2px; margin: 0; padding: 0; }

/* Top-level links */
#site-navigation > ul > li > a {
  font-family: 'Oswald', sans-serif; font-size: 15px; font-weight: 500;
  letter-spacing: 0.5px; color: rgba(255,255,255,0.88); text-decoration: none;
  padding: 8px 13px; border-radius: 4px; display: block; white-space: nowrap;
  transition: background 0.18s, color 0.18s;
}
#site-navigation > ul > li > a:hover,
#site-navigation > ul > li.current-menu-item > a,
#site-navigation > ul > li.current-menu-ancestor > a { background: var(--blue); color: white; }

/* Contact Us CTA */
#site-navigation > ul > li > a.nav-cta,
#site-navigation > ul > li:last-child > a { background: var(--orange); color: white !important; margin-left: 6px; padding: 8px 18px; }
#site-navigation > ul > li > a.nav-cta:hover,
#site-navigation > ul > li:last-child > a:hover { background: var(--orange-dark); color: white !important; }

/* Dropdown caret */
#site-navigation ul li.menu-item-has-children > a::after { content: ' \25be'; font-size: 10px; opacity: 0.6; }

/* All items need position:relative for dropdowns */
#site-navigation ul li { position: relative; }

/* ── Level 1 dropdown ── */
#site-navigation > ul > li > ul.sub-menu {
  display: none;
  position: absolute; top: calc(100% + 3px); left: 0;
  background: #fff;
  border: 1px solid var(--border); border-top: 3px solid var(--moss);
  box-shadow: 0 8px 28px rgba(0,0,0,0.14);
  min-width: 220px; z-index: 1100;
  border-radius: 0 0 6px 6px; padding: 6px 0;
}
#site-navigation > ul > li:hover > ul.sub-menu { display: block; }

#site-navigation > ul > li > ul.sub-menu > li > a {
  font-family: 'Oswald', sans-serif; font-size: 14px; color: var(--text-dark);
  padding: 10px 18px; display: block; text-decoration: none;
  border-bottom: 1px solid var(--border); white-space: nowrap;
  transition: background 0.15s; background: none;
}
#site-navigation > ul > li > ul.sub-menu > li:last-child > a { border-bottom: none; }
#site-navigation > ul > li > ul.sub-menu > li > a:hover { background: var(--cream); color: var(--forest); }
#site-navigation > ul > li > ul.sub-menu > li.menu-item-has-children > a { color: var(--sky); font-weight: 600; }

/* ── Level 2 animal flyout ── */
#site-navigation > ul > li > ul.sub-menu > li > ul.sub-menu {
  display: none !important;
  position: absolute; top: -6px; left: 100%;
  background: var(--forest);
  border: 1px solid rgba(255,255,255,0.12); border-top: 3px solid var(--rust);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  width: 380px; z-index: 1200;
  border-radius: 0 6px 6px 6px; padding: 8px 0;
  flex-wrap: wrap;
}
#site-navigation > ul > li > ul.sub-menu > li:hover > ul.sub-menu { display: flex !important; }

#site-navigation > ul > li > ul.sub-menu > li > ul.sub-menu > li { width: 50%; }
#site-navigation > ul > li > ul.sub-menu > li > ul.sub-menu > li > a {
  font-family: 'Oswald', sans-serif; font-size: 14px; color: rgba(255,255,255,0.85);
  padding: 9px 16px; display: block; text-decoration: none; white-space: nowrap;
  border-bottom: 1px solid rgba(255,255,255,0.07); border-right: none;
  transition: background 0.15s, color 0.15s; background: none;
}
#site-navigation > ul > li > ul.sub-menu > li > ul.sub-menu > li > a:hover { background: rgba(255,255,255,0.1); color: var(--tan); }

.menu-toggle { display: none; background: none; border: 2px solid rgba(255,255,255,0.4); border-radius: 4px; padding: 6px 10px; cursor: pointer; font-size: 20px; color: white; line-height: 1; }

/* ══ BUTTONS ════════════════════════════════════════════════ */
.btn { display: inline-block; padding: 12px 26px; font-family: 'Oswald', sans-serif; font-size: 15px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; border-radius: 4px; cursor: pointer; border: none; text-decoration: none; transition: all 0.2s; }
.btn-primary { background: var(--rust); color: white !important; }
.btn-primary:hover { background: #9e4d22; transform: translateY(-1px); box-shadow: 0 4px 14px rgba(0,0,0,0.25); }
.btn-outline { background: transparent; color: white; border: 2px solid rgba(255,255,255,0.7); }
.btn-outline:hover { background: rgba(255,255,255,0.15); }

/* ══ HOME HERO ══════════════════════════════════════════════ */
.site-hero { position: relative; min-height: 520px; display: flex; align-items: center; overflow: hidden; }
.site-hero .hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; filter: brightness(0.42); }
.site-hero .hero-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(26,46,26,0.65) 0%, rgba(37,99,168,0.25) 100%); }
.site-hero .hero-content { position: relative; z-index: 2; max-width: 1100px; margin: auto; padding: 60px 24px; width: 100%; }
.hero-badge { display: inline-block; background: var(--rust); color: white; font-family: 'Oswald', sans-serif; font-size: 12px; letter-spacing: 3px; text-transform: uppercase; padding: 4px 14px; margin-bottom: 16px; border-radius: 2px; }
.site-hero h1 { font-family: 'Oswald', sans-serif; font-size: clamp(36px, 6vw, 68px); font-weight: 700; color: white; line-height: 1.05; text-shadow: 0 2px 20px rgba(0,0,0,0.5); max-width: 700px; margin-bottom: 18px; }
.site-hero .hero-sub { font-size: 19px; color: rgba(255,255,255,0.88); max-width: 560px; margin-bottom: 32px; font-family: 'Merriweather', serif; font-weight: 300; font-style: italic; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* ══════════════════════════════════════════════════════════
   PAGE HERO  —  centred content, raccoon bg, darkened
   ══════════════════════════════════════════════════════════ */
.page-hero {
  position: relative;
  height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
}

/* Background image is set via inline style on the element — see page.php */
.page-hero .hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 35%;
  filter: brightness(0.28);
}

.page-hero .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20,36,20,0.55) 0%, rgba(10,18,10,0.72) 100%);
}

/* Everything inside hero-content is centred */
.page-hero .hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0 32px;
}

.page-hero h1 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(34px, 5vw, 58px);
  font-weight: 700;
  color: #ffffff;
  text-shadow: 0 3px 28px rgba(0,0,0,0.75);
  margin: 0 0 14px;
  text-align: center;
  line-height: 1.08;
}

.breadcrumb {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 16px;
  letter-spacing: 0.4px;
  text-align: center;
  order: -1; /* breadcrumb above h1 */
}
.breadcrumb a { color: rgba(255,255,255,0.6); text-decoration: none; }
.breadcrumb a:hover { color: var(--tan); text-decoration: underline; }

/* ══ QUICKBAR ═══════════════════════════════════════════════ */
.quickbar { background: var(--sky); }
.quickbar-inner { max-width: 1200px; margin: auto; display: grid; grid-template-columns: repeat(4, 1fr); }
.qb-item { display: flex; align-items: center; gap: 14px; padding: 20px 24px; border-right: 1px solid rgba(255,255,255,0.15); color: white; text-decoration: none; transition: background 0.2s; }
.qb-item:last-child { border-right: none; }
.qb-item:hover { background: rgba(255,255,255,0.1); }
.qb-icon { font-size: 26px; flex-shrink: 0; }
.qb-label { font-size: 12px; text-transform: uppercase; letter-spacing: 1px; opacity: 0.75; }
.qb-value { font-family: 'Oswald', sans-serif; font-size: 16px; font-weight: 600; }

/* ══ SECTIONS ═══════════════════════════════════════════════ */
.section { padding: 72px 24px; }
.section-inner { max-width: 1100px; margin: auto; }
.section-label { font-size: 12px; letter-spacing: 3px; text-transform: uppercase; color: var(--orange); font-weight: 600; margin-bottom: 10px; }
.section-title { font-family: 'Oswald', sans-serif; font-size: clamp(28px, 4vw, 42px); font-weight: 700; color: var(--navy); line-height: 1.15; margin-bottom: 16px; }
.section-divider { width: 60px; height: 4px; background: var(--orange); margin-bottom: 24px; border-radius: 2px; }
.section-intro { font-size: 18px; color: var(--text-mid); max-width: 680px; margin-bottom: 48px; font-family: 'Merriweather', serif; font-weight: 300; line-height: 1.8; }
.section-alt { background: var(--navy); }
.section-alt .section-title { color: var(--cream); }
.section-alt .section-label { color: var(--tan); }
.section-alt .section-divider { background: var(--tan); }
.section-alt .section-intro { color: rgba(255,255,255,0.75); }
.section-tan { background: #ede5d8; }
.section-white { background: white; }

/* ══ SERVICE CARDS ══════════════════════════════════════════ */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; }
.service-card { background: white; border: 1px solid var(--border); border-radius: 6px; overflow: hidden; transition: transform 0.2s, box-shadow 0.2s; }
.service-card:hover { transform: translateY(-4px); box-shadow: 0 8px 30px rgba(0,0,0,0.12); }
.service-card-img { height: 180px; background-size: cover; background-position: center; }
.service-card-body { padding: 22px; }
.service-card h3 { font-family: 'Oswald', sans-serif; font-size: 20px; color: var(--forest); margin-bottom: 10px; }
.service-card p { color: var(--text-mid); font-size: 15px; line-height: 1.65; }
.service-card .card-link { display: inline-flex; align-items: center; gap: 6px; color: var(--sky); font-weight: 600; font-size: 14px; margin-top: 14px; text-decoration: none; font-family: 'Oswald', sans-serif; letter-spacing: 0.5px; text-transform: uppercase; }

/* ══ TWO COLUMN ═════════════════════════════════════════════ */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.two-col-img { border-radius: 6px; overflow: hidden; box-shadow: 0 6px 30px rgba(0,0,0,0.15); }
.two-col-img img { width: 100%; display: block; height: 380px; object-fit: cover; }

/* ══ TESTIMONIALS ═══════════════════════════════════════════ */
.testimonial-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.testimonial { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12); border-radius: 6px; padding: 28px; }
.testimonial .stars { color: var(--gold); font-size: 18px; margin-bottom: 14px; }
.testimonial p { color: rgba(255,255,255,0.85); font-style: italic; font-family: 'Merriweather', serif; font-size: 15px; line-height: 1.75; }
.testimonial .author { color: var(--tan); font-weight: 600; margin-top: 16px; font-style: normal; font-family: 'Oswald', sans-serif; letter-spacing: 1px; }

/* ══ PROCESS STEPS ══════════════════════════════════════════ */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin-top: 48px; position: relative; }
.steps::before { content: ''; position: absolute; top: 32px; left: 12.5%; right: 12.5%; height: 2px; background: var(--border); }
.step { text-align: center; padding: 0 16px; }
.step-num { width: 64px; height: 64px; border-radius: 50%; background: var(--forest); color: white; font-family: 'Oswald', sans-serif; font-size: 22px; font-weight: 700; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; position: relative; z-index: 2; border: 3px solid var(--cream); box-shadow: 0 0 0 3px var(--moss); }
.step h4 { font-family: 'Oswald', sans-serif; font-size: 17px; color: var(--forest); margin-bottom: 8px; }
.step p { font-size: 14px; color: var(--text-light); }

/* ══ BADGES ═════════════════════════════════════════════════ */
.badge-row { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 28px; }
.badge { background: var(--forest); color: white; padding: 8px 16px; border-radius: 4px; font-size: 13px; font-weight: 600; letter-spacing: 0.5px; display: flex; align-items: center; gap: 8px; }
.animal-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 16px; }
.animal-tag { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.85); padding: 6px 14px; border-radius: 100px; font-size: 14px; font-weight: 500; }

/* ══ ARTICLE CONTENT ════════════════════════════════════════ */
.article-section { background: white; }
.content-wrap { max-width: 1100px; margin: auto; padding: 64px 24px; display: grid; grid-template-columns: 1fr 320px; gap: 56px; align-items: start; }
.entry-content h2 { font-family: 'Oswald', sans-serif; font-size: 28px; color: var(--navy); margin: 36px 0 14px; padding-bottom: 10px; border-bottom: 2px solid var(--border); }
.entry-content h2:first-child { margin-top: 0; }
.entry-content h3 { font-family: 'Oswald', sans-serif; font-size: 20px; color: var(--blue); margin: 24px 0 10px; }
.entry-content p { color: var(--text-mid); margin-bottom: 18px; line-height: 1.8; }
.entry-content ul { color: var(--text-mid); padding-left: 22px; margin-bottom: 18px; }
.entry-content ul li { margin-bottom: 8px; line-height: 1.7; }
.entry-content strong { color: var(--bark); }
.sidebar-box { background: var(--navy); color: white; border-radius: 6px; padding: 22px; margin-bottom: 18px; border-left: 4px solid var(--orange); }
.sidebar-box h4 { font-family: 'Oswald', sans-serif; font-size: 17px; color: var(--tan); margin-bottom: 12px; letter-spacing: 0.5px; }
.sidebar-box p { font-size: 15px; color: rgba(255,255,255,0.8); line-height: 1.65; }
.sidebar-phone { font-size: 22px; font-family: 'Oswald', sans-serif; color: white; margin-top: 10px; display: block; }

/* ══ GALLERY ════════════════════════════════════════════════ */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.gallery-item { aspect-ratio: 4/3; background: var(--forest); border-radius: 6px; overflow: hidden; display: flex; align-items: center; justify-content: center; font-size: 48px; transition: transform 0.2s; position: relative; }
.gallery-item:hover { transform: scale(1.02); box-shadow: 0 8px 24px rgba(0,0,0,0.2); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.gallery-item-label { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(transparent, rgba(0,0,0,0.7)); color: white; padding: 20px 14px 14px; font-size: 14px; font-weight: 600; font-family: 'Oswald', sans-serif; letter-spacing: 0.5px; z-index: 2; }

/* ══ SERVICE AREAS ══════════════════════════════════════════ */
.areas-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 8px; margin-top: 32px; }
.area-pill { background: white; border: 1px solid var(--border); border-radius: 4px; padding: 8px 12px; font-size: 13px; text-align: center; color: var(--text-mid); }

/* ══ CONTACT PAGE ═══════════════════════════════════════════ */
.contact-page-wrap { max-width: 1100px; margin: auto; padding: 64px 24px; }
.contact-page-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 56px; align-items: start; }
.contact-info-box { background: var(--navy); border-radius: 8px; padding: 36px; color: white; border-left: 4px solid var(--orange); }
.contact-info-box h3 { font-family: 'Oswald', sans-serif; font-size: 24px; color: var(--tan); margin-bottom: 28px; }
.ci-item { display: flex; gap: 14px; margin-bottom: 24px; align-items: flex-start; }
.ci-icon { font-size: 22px; flex-shrink: 0; margin-top: 2px; }
.ci-label { font-size: 11px; text-transform: uppercase; letter-spacing: 1.5px; color: rgba(255,255,255,0.5); margin-bottom: 4px; }
.ci-value { font-size: 16px; color: white; font-weight: 500; }
.contact-form-box { background: white; border-radius: 8px; padding: 36px; box-shadow: 0 4px 24px rgba(0,0,0,0.08); }
.contact-form-box h3 { font-family: 'Oswald', sans-serif; font-size: 24px; color: var(--forest); margin-bottom: 6px; }
.contact-form-box .form-note { font-size: 13px; color: var(--text-light); margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field { margin-bottom: 16px; }
.form-field label { display: block; font-size: 12px; font-weight: 700; color: var(--text-mid); margin-bottom: 6px; letter-spacing: 0.8px; text-transform: uppercase; }
.form-field input,
.form-field textarea,
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form textarea { width: 100%; padding: 11px 14px; border: 1.5px solid var(--border); border-radius: 4px; font-size: 15px; font-family: inherit; background: #fafaf7; color: var(--text-dark); transition: border 0.2s; outline: none; display: block; }
.form-field input:focus,
.form-field textarea:focus,
.wpcf7-form input:focus,
.wpcf7-form textarea:focus { border-color: var(--sky); background: white; }
.form-field textarea { height: 120px; resize: vertical; }
.form-submit,
.wpcf7-submit { width: 100%; background: var(--rust); color: white; font-family: 'Oswald', sans-serif; font-size: 15px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; padding: 14px; border-radius: 4px; border: none; cursor: pointer; transition: background 0.2s; margin-top: 8px; display: block; }
.form-submit:hover,
.wpcf7-submit:hover { background: #9e4d22; }
.required { color: var(--rust); }

/* ══ CERT CARDS ═════════════════════════════════════════════ */
.cert-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px,1fr)); gap: 20px; margin-top: 32px; }
.cert-card { background: white; border: 1px solid var(--border); border-radius: 6px; padding: 24px; text-align: center; }
.cert-card .cert-icon { font-size: 40px; margin-bottom: 12px; }
.cert-card h4 { font-family: 'Oswald', sans-serif; font-size: 17px; color: var(--forest); margin-bottom: 8px; }
.cert-card p { font-size: 14px; color: var(--text-mid); }

/* ══ FOOTER ═════════════════════════════════════════════════ */
#colophon { background: #060e1a; color: rgba(255,255,255,0.65); padding: 56px 24px 0; }
.footer-inner { max-width: 1100px; margin: auto; display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-widget h4,
.footer-widget .widget-title { font-family: 'Oswald', sans-serif; color: white; font-size: 15px; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 18px; padding-bottom: 10px; border-bottom: 2px solid var(--rust); display: inline-block; }
.footer-widget p { font-size: 14px; line-height: 1.75; margin-bottom: 16px; }
.footer-widget ul { list-style: none; }
.footer-widget ul li { margin-bottom: 9px; }
.footer-widget ul li a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 14px; transition: color 0.2s; }
.footer-widget ul li a:hover { color: var(--tan); }
.footer-logo-text { font-family: 'Oswald', sans-serif; font-size: 18px; color: white; display: block; margin-bottom: 8px; }
.footer-phone { font-family: 'Oswald', sans-serif; font-size: 20px; color: var(--tan); display: block; margin-bottom: 8px; text-decoration: none; }
.site-info { max-width: 1100px; margin: 0 auto; padding: 18px 0; display: flex; justify-content: space-between; align-items: center; font-size: 12px; color: rgba(255,255,255,0.35); flex-wrap: wrap; gap: 8px; }
.site-info a { color: rgba(255,255,255,0.45); text-decoration: none; }
.site-info a:hover { color: var(--tan); }

/* ══ RESPONSIVE ═════════════════════════════════════════════
   Breakpoints:
     1100px  — large tablet / small laptop
      960px  — tablet landscape
      768px  — tablet portrait
      640px  — large phone
      480px  — small phone
   ═════════════════════════════════════════════════════════ */

/* ── Large tablet / small laptop (≤1100px) ── */
@media (max-width: 1100px) {
  .header-inner { padding: 0 16px; }
  .content-wrap { padding: 48px 20px; gap: 36px; }
  .footer-inner { gap: 28px; }
  .two-col { gap: 40px; }
  .site-hero .hero-content { padding: 48px 20px; }
}

/* ── Tablet landscape (≤960px) ── */
@media (max-width: 960px) {
  /* Layouts */
  .two-col { grid-template-columns: 1fr; gap: 32px; }
  .two-col-img img { height: 280px; }
  .content-wrap { grid-template-columns: 1fr; gap: 32px; padding: 48px 20px; }
  .content-wrap .animal-sidebar { display: none; } /* sidebar collapses — use inline nav instead */
  .contact-page-grid { grid-template-columns: 1fr; gap: 32px; }
  .steps { grid-template-columns: 1fr 1fr; }
  .steps::before { display: none; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .quickbar-inner { grid-template-columns: 1fr 1fr; }
  .areas-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  /* Hero */
  .site-hero { min-height: 420px; }
  .page-hero { height: 280px; }
  /* Section padding */
  .section-pad { padding: 56px 20px; }
}

/* ── Tablet portrait (≤768px) ── */
@media (max-width: 768px) {
  /* Navigation — switch to hamburger */
  .header-inner { height: auto; padding: 12px 16px; flex-wrap: wrap; gap: 8px; }
  .menu-toggle { display: block; }
  #site-navigation {
    width: 100%;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.35s ease;
  }
  #site-navigation.toggled { max-height: 700px; }
  #site-navigation > ul {
    flex-direction: column;
    width: 100%;
    align-items: flex-start;
    padding: 8px 0;
    gap: 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 4px;
  }
  #site-navigation > ul > li { width: 100%; }
  #site-navigation > ul > li > a {
    padding: 11px 16px;
    border-radius: 0;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    font-size: 16px;
  }
  #site-navigation > ul > li:last-child > a {
    margin-left: 0;
    border-radius: 0;
  }
  /* Hide all dropdowns on mobile — use page links instead */
  #site-navigation ul ul { display: none !important; }
  /* Hero */
  .site-hero { min-height: 360px; }
  .site-hero h1 { font-size: clamp(28px, 7vw, 48px); }
  .site-hero .hero-sub { font-size: 16px; }
  .hero-btns { flex-direction: column; gap: 10px; align-items: flex-start; }
  .hero-btns .btn { width: auto; }
  .page-hero { height: 240px; }
  .page-hero h1 { font-size: clamp(22px, 6vw, 36px); }
  /* Quickbar */
  .quickbar-inner { grid-template-columns: 1fr 1fr; }
  /* Steps */
  .steps { grid-template-columns: 1fr 1fr; gap: 24px; }
  /* Footer */
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-inner { padding: 40px 20px; }
  /* Areas */
  .areas-grid { grid-template-columns: repeat(3, 1fr); }
  /* Our Work */
  .ourwork-grid { grid-template-columns: repeat(2, 1fr); }
  /* Topbar */
  .topbar-left { display: none; }
  .topbar-inner { justify-content: center; }
  /* Page content */
  .section-pad { padding: 44px 16px; }
  .content-main { padding: 0; }
  /* Services cards */
  .services-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  /* Cert badges */
  .cert-badges { grid-template-columns: repeat(4, 1fr); gap: 16px; }
  .cert-badge img { width: 90px; height: 90px; }
}

/* ── Large phone (≤640px) ── */
@media (max-width: 640px) {
  /* Header */
  .site-logo-img,
  .site-branding .custom-logo-link img,
  .site-branding .custom-logo { height: 52px; }
  /* Hero */
  .site-hero { min-height: 300px; }
  .page-hero { height: 210px; }
  .page-hero h1 { font-size: 24px; }
  .hero-tagline { font-size: 14px; }
  /* Steps */
  .steps { grid-template-columns: 1fr; gap: 20px; }
  /* Footer */
  .footer-inner { grid-template-columns: 1fr; }
  .site-info { flex-direction: column; text-align: center; gap: 4px; }
  /* Forms */
  .form-row { grid-template-columns: 1fr; }
  /* Areas */
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
  /* Services */
  .services-grid { grid-template-columns: 1fr; }
  /* Cert badges */
  .cert-badges { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .cert-badge img { width: 100px; height: 100px; }
  /* Two-col image height */
  .two-col-img img { height: 220px; }
  /* Section padding tighter */
  .section-pad { padding: 36px 16px; }
  /* Breadcrumb smaller */
  .breadcrumb { font-size: 12px; }
  /* Testimonials */
  .testimonial-grid { grid-template-columns: 1fr; }
}

/* ── Small phone (≤480px) ── */
@media (max-width: 480px) {
  body { font-size: 15px; }
  .page-hero { height: 190px; }
  .page-hero h1 { font-size: 20px; }
  .hero-tagline { font-size: 13px; max-width: 90%; }
  .site-hero { min-height: 260px; }
  .site-hero h1 { font-size: 26px; }
  .section-title { font-size: 24px; }
  .quickbar-inner { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
  .cert-badges { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .cert-badge img { width: 80px; height: 80px; }
  .ourwork-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .btn { padding: 11px 20px; font-size: 14px; }
  .contact-form { padding: 24px 16px; }
  .topbar { display: none; } /* hide topbar entirely on tiny screens */
}

/* ══ HOMEPAGE CONTACT SECTION ═══════════════════════════════ */
.contact-section {
  background: var(--sky);
}
.contact-inner {
  max-width: 1100px;
  margin: auto;
  padding: 64px 24px;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 60px;
  align-items: start;
}
.contact-info h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 36px;
  color: white;
  margin-bottom: 10px;
}
.contact-info > p {
  color: rgba(255,255,255,0.8);
  margin-bottom: 32px;
  font-size: 16px;
}
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 22px;
}
.contact-detail-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.contact-detail-text .label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 3px;
}
.contact-detail-text .value {
  color: white;
  font-weight: 600;
  font-size: 15px;
  line-height: 1.5;
}
.contact-form {
  background: white;
  border-radius: 8px;
  padding: 36px;
  box-shadow: 0 4px 30px rgba(0,0,0,0.15);
}
.contact-form h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 24px;
  color: var(--forest);
  margin-bottom: 22px;
}

@media (max-width: 760px) {
  .contact-grid { grid-template-columns: 1fr; }
  .contact-inner { padding: 40px 20px; }
}

/* ══ CERTIFICATION BADGES ═══════════════════════════════════ */
.cert-badges {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px 24px;
  align-items: center;
  justify-items: center;
  max-width: 900px;
  margin: 0 auto;
}
.cert-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  border-radius: 8px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.cert-badge:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}
.cert-badge img {
  width: 120px;
  height: 120px;
  object-fit: contain;
  display: block;
}
@media (max-width: 700px) {
  .cert-badges { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .cert-badge img { width: 100px; height: 100px; }
}

/* ══ PAGE HERO TAGLINE ══════════════════════════════════════ */
.hero-tagline {
  font-family: 'Merriweather', serif;
  font-size: 16px;
  font-weight: 300;
  font-style: italic;
  color: rgba(255,255,255,0.78);
  margin: 4px 0 0;
  text-align: center;
  max-width: 600px;
}

/* ══ OUR WORK PHOTO GRID ════════════════════════════════════ */
.ourwork-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 8px;
}
.ourwork-item {
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 4/3;
  background: var(--navy);
}
.ourwork-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.ourwork-item:hover img {
  transform: scale(1.05);
}
@media (max-width: 768px) {
  .ourwork-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .ourwork-grid { grid-template-columns: 1fr; }
}
