/* =====================================================
   SITE HEADER
===================================================== */
.site-header {
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 3px 12px rgba(0,0,0,0.3);
}

/* Top bar */
.site-topbar {
  background-color: #111;
  border-bottom: 2px solid #fdcf03;
  padding: 14px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
}

.site-topbar-name {
  font-family: 'Special Elite', cursive;
  font-size: 26px;
  color: #fdcf03;
  letter-spacing: 2px;
}

.site-topbar-contact {
  display: flex;
  align-items: center;
  gap: 32px;
}

.site-topbar-contact a {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: 'Special Elite', cursive;
  font-size: 15px;
  color: #fff;
  text-decoration: none;
  transition: color 0.2s;
}

.site-topbar-contact a:hover {
  color: #fdcf03;
}

.site-topbar-contact i {
  color: #fdcf03;
  font-size: 14px;
}

@media (max-width: 900px) {
  .site-topbar {
    padding: 10px 16px;
    gap: 6px;
  }
  .site-topbar-name {
    font-size: 20px;
  }
  .site-topbar-contact {
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .site-topbar-contact a {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .site-topbar {
    padding: 14px 16px;
    gap: 8px;
  }
  .site-topbar-name {
    font-size: 22px;
    letter-spacing: 1px;
  }
  .site-topbar-contact {
    flex-direction: column;
    gap: 8px;
  }
  .site-topbar-contact a {
    font-size: 14px;
  }
}

/* Logo bar */
.site-header-logo-bar {
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
}

.site-logo-link {
  display: inline-block;
  line-height: 0;
}

.site-logo {
  height: 80px;
  width: auto;
  display: block;
}

/* Nav bar */
.site-nav {
  background-color: #000;
  border-top: 4px solid #fdcf03;
  display: flex;
  flex-direction: column;
}

.site-nav-toggle {
  display: none;
}

.site-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: stretch;
  justify-content: center;
}

.site-nav-list li {
  display: flex;
  align-items: center;
}

.site-nav-list li + li {
  border-left: 1px solid rgba(253,207,3,0.25);
}

.site-nav-link {
  display: block;
  font-family: 'Special Elite', cursive;
  font-size: 17px;
  color: #fdcf03;
  text-decoration: none;
  padding: 16px 28px;
  letter-spacing: 1px;
  white-space: nowrap;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.site-nav-link:hover {
  background-color: #fdcf03;
  color: #000;
}

/* Mobile */
@media (max-width: 900px) {
  .site-logo {
    height: 60px;
  }

  .site-nav {
    position: relative;
  }

  .site-nav-toggle {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 14px 16px;
    width: 100%;
  }

  .site-nav-toggle span {
    display: block;
    width: 28px;
    height: 3px;
    background-color: #fdcf03;
    border-radius: 2px;
  }

  .site-nav-list {
    display: none;
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  .site-nav-list.site-nav-open {
    display: flex;
  }

  .site-nav-list li {
    justify-content: center;
    border-left: none;
    border-top: 1px solid #fdcf03;
  }

  .site-nav-list li + li {
    border-left: none;
  }

  .site-nav-link {
    padding: 15px 20px;
    font-size: 18px;
  }
}

/* =====================================================
   SITE FOOTER
===================================================== */
.site-footer {
  background-color: #000;
  border-top: 4px solid #fdcf03;
  padding: 24px;
  text-align: center;
}

.site-footer p {
  font-family: 'Special Elite', cursive;
  font-size: 15px;
  color: rgba(253,207,3,0.7);
  margin: 0;
  line-height: 1.8;
}

@media (max-width: 768px) {
  .site-footer {
    padding: 20px 16px;
  }
  .site-footer p {
    font-size: 13px;
  }
}

.site-footer a {
  color: #fdcf03;
  text-decoration: none;
}

.site-footer a:hover {
  text-decoration: underline;
}

/* =====================================================
   DEFAULT FONT
===================================================== */
/* Default font for whole website */
body {
  font-family: 'Roboto', sans-serif;
  margin: 0;
  padding: 0;
}

/* Headings use Special Elite */
h1, h2 {
  font-family: 'Special Elite', cursive;
}

/* ===== HERO BANNER ===== */
.hero-banner {
position: relative;
height: 100vh;
min-height: 600px;
display: flex;
align-items: center;
justify-content: center;
text-align: center;
padding: 20px;
overflow: hidden;
background:
linear-gradient(
to top,
#fdcf03 0%, 
#fdcf03 10%, 
rgba(255, 251, 0, 0.6) 17%, 
rgba(0,0,0,0.75) 100%, 
rgba(0,0,0,0.9) 30%
        ),
url('https://google-reviewcards.co.uk/wp-content/uploads/2026/02/walkies-with-pets-background.jpeg')
center center / cover no-repeat;
}

.hero-banner-content {
position: relative;
z-index: 2;
max-width: 950px;
color: #fff;
}

/* Headings use Special Elite */
.hero-banner h1,
.hero-banner h2 {
font-family: 'Special Elite', cursive;
font-weight: 400;
}

/* Everything else uses Roboto */
.hero-description,
.hero-btn {
font-family: 'Roboto', sans-serif;
}

.hero-banner h1 {
font-size: 32px;
line-height: 1.1;
margin: 0 0 20px 0;
opacity: 0.9;
}

.hero-banner h2 {
font-size: 64px;
margin: 0 0 25px 0;
background-color: #fdcf03;
color: #000;
display: inline-block;
padding: 12px 20px;
white-space: nowrap;
}

.hero-description {
font-size: 20px;
line-height: 1.7;
opacity: 0.95;
margin: 0 0 35px 0;
}

.hero-btn {
    display: inline-block;
    padding: 14px 36px;
    background-color: #000;
    color: #fdcf03;
    text-decoration: none;
    font-family: 'Special Elite', cursive;
    font-size: 18px;
    font-weight: 700;
    border-radius: 8px;
    border: none;
    box-shadow: 4px 4px 0px rgba(0,0,0,0.3);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hero-btn:hover,
.hero-btn:focus,
.hero-btn:active {
    background-color: #000;
    color: #fdcf03;
    transform: translateY(-3px);
    box-shadow: 6px 6px 0px rgba(0,0,0,0.3);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-banner {
        height: 30vh;
        min-height: 500px;
        padding: 60px 20px 20px 20px;
    }
    .hero-banner h1 {
        font-size: 36px;
    }
    .hero-banner h2 {
        font-size: 20px;
    }
    .hero-description {
        font-size: 18px;
    }
}

/* =====================================================
   SERVICE BANNER
===================================================== */
.service-banner {
  background-color: #f5f0e8;
  border-top: 5px solid #fdcf03;
  border-bottom: 5px solid #fdcf03;
  padding: 52px 24px;
  text-align: center;
}

.service-banner-inner {
  max-width: 860px;
  margin: 0 auto;
}

.service-banner-title {
  font-family: 'Special Elite', cursive;
  font-size: 58px;
  color: #000;
  margin: 0 0 24px 0;
  line-height: 1.1;
  letter-spacing: -1px;
}

.service-banner-divider {
  width: 80px;
  height: 4px;
  background-color: #fdcf03;
  margin: 0 auto 28px;
  border-radius: 2px;
}

.service-banner-text {
  font-family: 'Special Elite', cursive;
  font-size: 20px;
  color: #000;
  line-height: 1.7;
  margin: 0 0 10px 0;
}

.service-banner-text:last-child {
  margin-bottom: 0;
}

.service-banner-text strong {
  color: #000;
}

@media (max-width: 768px) {
  .service-banner-title {
    font-size: 36px;
  }
  .service-banner-text {
    font-size: 17px;
  }
}

/* =====================================================
   DOG TRAINING INFO SECTION
===================================================== */
.dt-section {
  background-color: #fff;
  padding: 80px 24px;
}

.dt-container {
  max-width: 860px;
  margin: 0 auto;
}

/* Bold lead paragraph */
.dt-lead {
  font-family: 'Roboto', sans-serif;
  font-size: 18px;
  line-height: 1.8;
  color: #000;
  text-align: center;
  margin-bottom: 48px;
}

/* Formula block */
.dt-formula {
  display: inline-flex;
  flex-direction: column;
  gap: 10px;
  margin: 0 auto 52px;
  width: 100%;
  align-items: center;
}

.dt-formula-line {
  display: inline-block;
  background-color: #fdcf03;
  color: #000;
  font-family: 'Special Elite', cursive;
  font-size: 26px;
  font-weight: 900;
  padding: 10px 28px;
  line-height: 1.3;
  text-align: center;
}

/* Body paragraphs */
.dt-body {
  font-family: 'Roboto', sans-serif;
  font-size: 17px;
  color: #000;
  line-height: 1.9;
  margin-bottom: 24px;
  text-align: justify;
}

/* Section headings */
.dt-heading {
  font-family: 'Special Elite', cursive;
  font-size: 26px;
  color: #000;
  margin: 48px 0 18px;
  padding-bottom: 8px;
  border-bottom: 3px solid #fdcf03;
  line-height: 1.3;
}

/* Pull quote */
.dt-quote {
  font-family: 'Special Elite', cursive;
  font-size: 26px;
  color: #000;
  text-align: center;
  margin: 40px 0;
  padding: 0;
  border: none;
  font-style: normal;
}

/* Italic paragraphs */
.dt-italic {
  font-family: 'Roboto', sans-serif;
  font-size: 17px;
  color: #000;
  line-height: 1.9;
  margin-bottom: 20px;
  font-style: italic;
  text-align: justify;
}

/* Enquire button */
.dt-enquire-wrap {
  text-align: center;
  margin-top: 52px;
  padding-top: 40px;
  border-top: 3px solid #fdcf03;
}

.dt-enquire-btn {
  display: inline-block;
  padding: 16px 48px;
  background-color: #000;
  color: #fdcf03;
  font-family: 'Special Elite', cursive;
  font-size: 26px;
  text-decoration: none;
  border-radius: 8px;
  box-shadow: 5px 5px 0px #fdcf03;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.dt-enquire-btn:hover {
  transform: translateY(-4px) translateX(-2px);
  box-shadow: 8px 8px 0px #fdcf03;
}

@media (max-width: 768px) {
  .dt-formula-line {
    font-size: 18px;
    padding: 8px 16px;
  }
  .dt-heading {
    font-size: 22px;
  }
  .dt-quote {
    font-size: 22px;
  }
  .dt-enquire-btn {
    font-size: 20px;
    padding: 14px 32px;
  }
  .dt-body,
  .dt-italic {
    text-align: left;
  }
}

/* =====================================================
   TRAINING GALLERY SECTION
===================================================== */
.dt-gallery-section {
  background-color: #000;
  padding: 60px 24px;
}

.dt-gallery-grid {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.dt-gallery-item {
  border: 3px solid #fdcf03;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 6px 6px 0px #fdcf03;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.dt-gallery-item:hover {
  transform: translateY(-6px) translateX(-2px);
  box-shadow: 10px 10px 0px #fdcf03;
}

.dt-gallery-item img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 768px) {
  .dt-gallery-section {
    padding: 40px 16px;
  }
}

/* =====================================================
   DOG WALKING INFO SECTION
===================================================== */
.dw-section {
  background-color: #fdcf03;
  padding: 70px 24px;
}

.dw-container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.dw-title {
  font-family: 'Special Elite', cursive;
  font-size: 52px;
  color: #000;
  margin-bottom: 16px;
  line-height: 1.15;
  letter-spacing: -1px;
}

.dw-coverage {
  font-family: 'Special Elite', cursive;
  font-size: 20px;
  color: #000;
  text-decoration: underline;
  margin-bottom: 48px;
  letter-spacing: 1px;
}

.dw-highlight {
  font-family: 'Roboto', sans-serif;
  font-size: 18px;
  color: #000;
  line-height: 1.8;
  margin-bottom: 24px;
  text-align: center;
}

.dw-body {
  font-family: 'Roboto', sans-serif;
  font-size: 17px;
  color: #000;
  line-height: 1.9;
  margin-bottom: 20px;
  text-align: center;
}

.dw-italic {
  font-family: 'Roboto', sans-serif;
  font-size: 17px;
  color: #000;
  line-height: 1.9;
  margin-bottom: 48px;
  font-style: italic;
  text-align: center;
}

.dw-image-wrap {
  border: 4px solid #000;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 8px 8px 0px #000;
}

.dw-image-wrap img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 768px) {
  .dw-title {
    font-size: 34px;
  }
  .dw-coverage {
    font-size: 16px;
  }
}

/* =====================================================
   DOG WALKING VARIETY SECTION
===================================================== */
.dw-variety-section {
  background-color: #fff;
  padding: 70px 24px;
}

.dw-variety-container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.dw-variety-title {
  font-family: 'Special Elite', cursive;
  font-size: 42px;
  color: #000;
  margin-bottom: 32px;
  line-height: 1.2;
}

.dw-variety-body {
  font-family: 'Roboto', sans-serif;
  font-size: 17px;
  color: #000;
  line-height: 1.9;
  margin-bottom: 20px;
  text-align: center;
}

.dw-variety-bold {
  font-family: 'Roboto', sans-serif;
  font-size: 19px;
  font-weight: 700;
  color: #000;
  margin-bottom: 36px;
  text-align: center;
}

.dw-variety-image-wrap {
  border: 4px solid #000;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 8px 8px 0px #fdcf03;
}

.dw-variety-image-wrap img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 768px) {
  .dw-variety-title {
    font-size: 28px;
  }
}

/* =====================================================
   ALL WALKS INCLUDE SECTION
===================================================== */
.dw-includes-section {
  background-color: #fdcf03;
  padding: 70px 24px 0;
}

.dw-includes-container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  padding-bottom: 60px;
}

.dw-includes-title {
  font-family: 'Special Elite', cursive;
  font-size: 42px;
  color: #000;
  margin-bottom: 32px;
  line-height: 1.2;
}

.dw-includes-list {
  list-style: none;
  padding: 0;
  margin: 0 0 48px;
}

.dw-includes-list li {
  font-family: 'Roboto', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #000;
  line-height: 1.8;
  padding: 6px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.dw-includes-list li::before {
  content: '';
  width: 8px;
  height: 8px;
  background-color: #000;
  border-radius: 1px;
  flex-shrink: 0;
}

.dw-group-title {
  font-family: 'Special Elite', cursive;
  font-size: 28px;
  color: #000;
  margin-bottom: 16px;
  text-decoration: underline;
}

.dw-includes-body {
  font-family: 'Roboto', sans-serif;
  font-size: 17px;
  color: #000;
  line-height: 1.8;
  margin-bottom: 12px;
  text-align: center;
}

.dw-includes-note {
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  color: #000;
  line-height: 1.8;
  margin-top: 20px;
  text-align: center;
}

.dw-includes-image-wrap {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px 60px;
}

.dw-includes-image-wrap img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  border: 4px solid #fdcf03;
  box-shadow: 8px 8px 0px #fdcf03;
}

@media (max-width: 768px) {
  .dw-includes-title {
    font-size: 30px;
  }
  .dw-group-title {
    font-size: 22px;
  }
}

/* =====================================================
   PERKS & BOOKING SECTION
===================================================== */
.dw-perks-section {
  background-color: #f5f0e8;
  padding: 70px 24px;
}

.dw-perks-container {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.dw-perks-box {
  background-color: #fff;
  border: 3px solid #000;
  border-radius: 12px;
  padding: 40px 44px;
  text-align: center;
  box-shadow: 6px 6px 0px #fdcf03;
}

.dw-perks-heading {
  font-family: 'Special Elite', cursive;
  font-size: 26px;
  color: #000;
  margin-bottom: 20px;
  text-decoration: underline;
}

.dw-perks-body {
  font-family: 'Roboto', sans-serif;
  font-size: 17px;
  color: #000;
  line-height: 1.9;
  margin-bottom: 16px;
  text-align: center;
}

.dw-perks-body:last-child {
  margin-bottom: 0;
}

.dw-perks-photos {
  font-family: 'Roboto', sans-serif;
  font-size: 18px;
  color: #000;
  line-height: 1.8;
  margin-top: 8px;
  text-align: center;
}

@media (max-width: 768px) {
  .dw-perks-box {
    padding: 28px 24px;
  }
}

/* =====================================================
   PRICES PAGE
===================================================== */
.prices-section {
  background-color: #fdcf03;
  padding: 60px 24px;
}

.prices-grid {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.prices-card {
  background-color: #fdcf03;
  border: 3px solid #000;
  border-radius: 16px;
  padding: 40px 36px;
  box-shadow: 6px 6px 0px #000;
}

.prices-card-title {
  font-family: 'Special Elite', cursive;
  font-size: 32px;
  color: #000;
  text-align: center;
  margin-bottom: 20px;
  text-decoration: underline;
  line-height: 1.2;
}

.prices-card-intro {
  font-family: 'Special Elite', cursive;
  font-size: 15px;
  color: #000;
  text-align: center;
  line-height: 1.6;
  margin-bottom: 8px;
}

.prices-divider {
  border: none;
  border-top: 2px dashed rgba(0,0,0,0.25);
  margin: 20px 0;
}

.prices-item {
  margin-bottom: 8px;
}

.prices-item-label {
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #000;
  margin-bottom: 6px;
  line-height: 1.5;
}

.prices-item-label i {
  margin-right: 8px;
}

.prices-item-sub {
  font-weight: 400;
  font-size: 14px;
  opacity: 0.75;
}

.prices-item-price {
  font-family: 'Special Elite', cursive;
  font-size: 36px;
  color: #000;
  margin: 4px 0 8px;
  line-height: 1;
}

.prices-item-price span {
  font-size: 18px;
  opacity: 0.7;
}

.prices-note {
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  color: #000;
  margin-bottom: 6px;
  line-height: 1.6;
}

.prices-note-small {
  font-family: 'Roboto', sans-serif;
  font-size: 13px;
  color: #000;
  opacity: 0.75;
  line-height: 1.7;
  margin-bottom: 8px;
}

.prices-note-italic {
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  color: #000;
  font-style: italic;
  font-weight: 700;
  text-align: center;
  margin-top: 16px;
}

.prices-table-wrap {
  margin: 12px 0 16px;
}

/* Special Offer block */
.prices-special-offer {
  background-color: #000;
  border-radius: 12px;
  padding: 28px 24px;
  text-align: center;
}

.prices-special-badge {
  display: inline-block;
  background-color: #fdcf03;
  color: #000;
  font-family: 'Special Elite', cursive;
  font-size: 28px;
  font-weight: 900;
  padding: 8px 28px;
  border-radius: 6px;
  margin-bottom: 12px;
  letter-spacing: 1px;
}

.prices-special-sub {
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 16px;
  text-decoration: underline;
}

.prices-special-offer .prices-item-label {
  color: #fdcf03;
}

.prices-special-offer .prices-note {
  color: rgba(255,255,255,0.85);
  margin-top: 8px;
}

@media (max-width: 768px) {
  .prices-grid {
    grid-template-columns: 1fr;
  }
  .prices-card-title {
    font-size: 26px;
  }
  .prices-item-price {
    font-size: 28px;
  }
}

/* =====================================================
   TERMS & CONDITIONS SECTION
===================================================== */
.tc-section {
  background-color: #fff;
  padding: 70px 24px;
}

.tc-container {
  max-width: 860px;
  margin: 0 auto;
}

.tc-list {
  list-style: none;
  counter-reset: tc-counter;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.tc-item {
  counter-increment: tc-counter;
  background-color: #fff;
  border: 3px solid #000;
  border-radius: 12px;
  padding: 32px 36px;
  box-shadow: 5px 5px 0px #fdcf03;
  position: relative;
  padding-left: 80px;
}

.tc-item::before {
  content: counter(tc-counter);
  position: absolute;
  left: -3px;
  top: -3px;
  background-color: #fdcf03;
  color: #000;
  font-family: 'Special Elite', cursive;
  font-size: 22px;
  font-weight: 900;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px 0 12px 0;
  border-right: 3px solid #000;
  border-bottom: 3px solid #000;
}

.tc-body {
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  color: #000;
  line-height: 1.9;
  margin-bottom: 14px;
}

.tc-body:last-child {
  margin-bottom: 0;
}

.tc-example {
  background-color: #f5f0e8;
  border-left: 4px solid #fdcf03;
  border-radius: 0 8px 8px 0;
  padding: 16px 20px;
  margin-top: 12px;
  font-family: 'Roboto', sans-serif;
  font-size: 15px;
  color: #000;
  line-height: 1.8;
}

.tc-example p {
  margin: 0;
}

@media (max-width: 768px) {
  .tc-item {
    padding: 52px 20px 24px;
  }
  .tc-item::before {
    width: 44px;
    height: 44px;
    font-size: 18px;
  }
  .tc-body {
    font-size: 15px;
  }
}

/* =====================================================
   REVIEWS SECTION
===================================================== */
.reviews-section {
  background-color: #fdcf03;
  padding: 70px 24px;
}

.reviews-container {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.review-card {
  background-color: #fff;
  border: 3px solid #000;
  border-radius: 16px;
  padding: 32px 36px;
  box-shadow: 6px 6px 0px #000;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.review-card:hover {
  transform: translateY(-4px) translateX(-2px);
  box-shadow: 10px 10px 0px #000;
}

.review-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.review-avatar {
  width: 52px;
  height: 52px;
  background-color: #000;
  color: #fdcf03;
  font-family: 'Special Elite', cursive;
  font-size: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.review-name {
  font-family: 'Special Elite', cursive;
  font-size: 18px;
  color: #000;
  margin: 0 0 4px;
}

.review-stars {
  display: flex;
  align-items: center;
  gap: 4px;
  color: #fdcf03;
  font-size: 18px;
  text-shadow: 0 0 0 #000;
}

.review-stars i {
  color: #f5a623;
}

.review-star-label {
  font-family: 'Roboto', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #000;
  margin-left: 4px;
}

.review-google-icon {
  margin-left: auto;
  font-size: 28px;
  color: #4285F4;
  flex-shrink: 0;
}

.review-positive {
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  color: #000;
  opacity: 0.65;
  margin-bottom: 10px;
}

.review-body {
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  color: #000;
  line-height: 1.8;
  margin-bottom: 10px;
}

.review-body:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .review-card {
    padding: 24px 20px;
  }
  .review-name {
    font-size: 16px;
  }
}

/* =====================================================
   GALLERY SECTION
===================================================== */
.gallery-section {
  background-color: #000;
  padding: 60px 24px;
}

.gallery-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.gallery-item {
  border: 3px solid #fdcf03;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 5px 5px 0px #fdcf03;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.gallery-item:hover {
  transform: translateY(-5px) translateX(-2px);
  box-shadow: 9px 9px 0px #fdcf03;
}

.gallery-item img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  transition: opacity 0.2s ease;
}

.gallery-item:hover img {
  opacity: 0.9;
}

/* Lightbox */
.gallery-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background-color: rgba(0,0,0,0.95);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}

.gallery-lightbox.active {
  display: flex;
}

.gallery-lightbox #lightboxImg {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border: 3px solid #fdcf03;
  border-radius: 8px;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: fixed;
  background: #fdcf03;
  color: #000;
  border: none;
  cursor: pointer;
  font-size: 20px;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}

.lightbox-close { top: 20px; right: 20px; }
.lightbox-prev  { left: 16px; top: 50%; transform: translateY(-50%); }
.lightbox-next  { right: 16px; top: 50%; transform: translateY(-50%); }

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: #fff;
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
  .gallery-item img {
    height: 180px;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .gallery-item img {
    height: 240px;
  }
}

/* ===== SERVICES SECTION ===== */
.services-section {
    background-color: #fdcf03;
    padding: 50px 20px;
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

/* Header block */
.services-header {
    margin-bottom: 70px;
}

.services-title {
    font-family: 'Special Elite', cursive;
    font-size: clamp(36px, 8vw, 72px);
    font-weight: 900;
    color: #000;
    margin-bottom: 18px;
    line-height: 1.1;
    letter-spacing: -1px;
}

.services-intro {
    font-family: 'Roboto', sans-serif;
    font-size: 20px;
    color: #000;
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.6;
    opacity: 0.75;
}

/* Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

/* Cards */
.service-card {
    background-color: #fdcf03;
    border: 3px solid #000;
    border-radius: 16px;
    padding: clamp(24px, 5vw, 50px) clamp(20px, 4vw, 40px);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 6px 6px 0px #000;
}

.service-card:hover {
    transform: translateY(-6px) translateX(-2px);
    box-shadow: 10px 10px 0px #000;
}

/* Icon — black circle with white FA icon inside */
.service-icon-wrap {
    width: 90px;
    height: 90px;
    background-color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 28px;
}

.service-icon-wrap i {
    font-size: 38px;
    color: #fff;
}

/* H3 titles */
.service-card h3 {
    font-family: 'Special Elite', cursive;
    font-size: 34px;
    margin-bottom: 18px;
    color: #000;
}

/* Description */
.service-card p {
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    line-height: 1.7;
    color: #000;
}

/* More Info Button */
.service-btn {
    display: inline-block;
    margin-top: 28px;
    padding: 14px 36px;
    background-color: #000;
    color: #fdcf03;
    font-family: 'Special Elite', cursive;
    font-size: 18px;
    border-radius: 8px;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 4px 4px 0px rgba(0,0,0,0.3);
}

.service-btn:hover {
    transform: translateY(-3px);
    box-shadow: 6px 6px 0px rgba(0,0,0,0.3);
}

/* =====================================================
   CTA SECTION
===================================================== */
.cta-section {
  position: relative;
  padding: 40px 24px;
  text-align: center;
  width: 100%;
  margin-left: 0;
  overflow: hidden;
  background: #000;
}

/* Floating Icons Container */
.cta-floating-icons {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.cta-icon {
  position: absolute;
  color: #fdcf03;
  opacity: 0.25;
  animation: floatIcon linear infinite;
}

/* Each icon gets different size, position, speed */
.cta-icon:nth-child(1)  { font-size: 40px; left: 5%;  top: 20%; animation-duration: 6s;  animation-delay: 0s; }
.cta-icon:nth-child(2)  { font-size: 60px; left: 15%; top: 70%; animation-duration: 8s;  animation-delay: 1s; }
.cta-icon:nth-child(3)  { font-size: 30px; left: 25%; top: 40%; animation-duration: 5s;  animation-delay: 0.5s; }
.cta-icon:nth-child(4)  { font-size: 50px; left: 38%; top: 80%; animation-duration: 9s;  animation-delay: 2s; }
.cta-icon:nth-child(5)  { font-size: 35px; left: 50%; top: 15%; animation-duration: 7s;  animation-delay: 0s; }
.cta-icon:nth-child(6)  { font-size: 55px; left: 62%; top: 60%; animation-duration: 6s;  animation-delay: 1.5s; }
.cta-icon:nth-child(7)  { font-size: 28px; left: 72%; top: 30%; animation-duration: 8s;  animation-delay: 3s; }
.cta-icon:nth-child(8)  { font-size: 45px; left: 80%; top: 75%; animation-duration: 5s;  animation-delay: 0.5s; }
.cta-icon:nth-child(9)  { font-size: 32px; left: 88%; top: 45%; animation-duration: 7s;  animation-delay: 2s; }
.cta-icon:nth-child(10) { font-size: 58px; left: 95%; top: 10%; animation-duration: 6s;  animation-delay: 1s; }

@media (max-width: 768px) {
  .cta-floating-icons { display: none; }
}

@keyframes floatIcon {
  0%   { transform: translateY(0px) rotate(0deg); opacity: 0.2; }
  25%  { transform: translateY(-60px) rotate(15deg); opacity: 0.35; }
  50%  { transform: translateY(-20px) rotate(-10deg); opacity: 0.25; }
  75%  { transform: translateY(-80px) rotate(25deg); opacity: 0.35; }
  100% { transform: translateY(0px) rotate(0deg); opacity: 0.2; }
}

/* Keep content above overlay */
.cta-section-inner {
  position: relative;
  z-index: 2;
  max-width: 1000px;
  margin: 0 auto;
}

/* Title */
.cta-title {
  font-family: 'Special Elite', cursive;
  font-size: 46px;
  font-weight: 800;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 28px;
}

.cta-title-highlight {
  background-color: #fdcf03;
  color: #000;
  display: inline;
  padding: 8px 16px;
}

/* Text */
.cta-text {
  font-family: 'Roboto', sans-serif;
  font-size: 20px;
  line-height: 1.7;
  color: #fff;
  max-width: 900px;
  margin: 0 auto 48px auto;
}

/* Buttons */
.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}

.cta-btn {
  display: inline-block;
  padding: 14px 36px;
  background-color: #fdcf03;
  color: #000;
  text-decoration: none;
  font-family: 'Special Elite', cursive;
  font-size: 18px;
  font-weight: 700;
  border-radius: 8px;
  border: none;
  box-shadow: 4px 4px 0px rgba(253, 207, 3, 0.3);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-btn:hover,
.cta-btn:focus,
.cta-btn:active {
  background-color: #fdcf03;
  color: #000;
  transform: translateY(-3px);
  box-shadow: 6px 6px 0px rgba(253, 207, 3, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
  .cta-section {
    padding: 40px 16px;
  }

  .cta-title {
    font-size: 26px;
    line-height: 1.35;
  }

  .cta-title-highlight {
    padding: 6px 10px;
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
  }

  .cta-text {
    font-size: 18px;
  }
  .cta-btn {
    padding: 16px 36px;
    font-size: 18px;
  }
}

/* =====================================================
   NEMO TRAINING SECTION
===================================================== */
.nemo-section {
  background-color: #fdcf03;
  padding: 50px 20px;
}

.nemo-container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

/* Header */
.nemo-intro {
  font-family: 'Special Elite', cursive;
  font-size: 20px;
  color: #000;
  margin-bottom: 16px;
}

.nemo-title {
  font-family: 'Special Elite', cursive;
  font-size: clamp(32px, 7vw, 64px);
  font-weight: 900;
  color: #000;
  margin-bottom: 28px;
  line-height: 1.1;
}

.nemo-title-highlight {
  background-color: #000;
  color: #fdcf03;
  display: inline;
  padding: 8px 16px;
}

.nemo-sub {
  font-family: 'Roboto', sans-serif;
  font-size: 18px;
  color: #000;
  margin-bottom: 10px;
  line-height: 1.6;
}

/* Content */
.nemo-content {
  margin-top: 60px;
}

.nemo-info-title {
  font-family: 'Special Elite', cursive;
  font-size: 36px;
  color: #000;
  margin-bottom: 8px;
}

.nemo-info-sub {
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  color: #000;
  opacity: 0.7;
  margin-bottom: 36px;
}

/* Table */
.nemo-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 32px;
  background-color: #000;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 6px 6px 0px rgba(0,0,0,0.2);
}

.nemo-table thead tr {
  background-color: #000;
}

.nemo-table thead th {
  font-family: 'Special Elite', cursive;
  font-size: 18px;
  color: #fdcf03;
  padding: 18px 24px;
  text-align: center;
  border-bottom: 3px solid #fdcf03;
}

.nemo-table tbody tr {
  background-color: #fff8e1;
  transition: background 0.2s ease;
}

.nemo-table tbody tr:nth-child(even) {
  background-color: #fff3c0;
}

.nemo-table tbody tr:hover {
  background-color: #ffe680;
}

.nemo-table tbody td {
  font-family: 'Roboto', sans-serif;
  font-size: 18px;
  color: #000;
  padding: 16px 24px;
  text-align: center;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.nemo-table tbody tr:last-child td {
  border-bottom: none;
}

.nemo-saving {
  display: inline-block;
  background-color: #000;
  color: #fdcf03;
  font-family: 'Special Elite', cursive;
  font-size: 14px;
  padding: 4px 12px;
  border-radius: 50px;
}

/* Notes */
.nemo-note {
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  color: #000;
  margin-bottom: 10px;
  opacity: 0.8;
}

/* Button */
.nemo-btn {
  display: inline-block;
  margin-top: 32px;
  padding: 14px 36px;
  background-color: #000;
  color: #fdcf03;
  text-decoration: none;
  font-family: 'Special Elite', cursive;
  font-size: 18px;
  font-weight: 700;
  border-radius: 8px;
  border: none;
  box-shadow: 4px 4px 0px rgba(0,0,0,0.3);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.nemo-btn:hover {
  transform: translateY(-3px);
  box-shadow: 6px 6px 0px rgba(0,0,0,0.3);
}

/* Responsive */
@media (max-width: 768px) {
  .nemo-title {
    font-size: 40px;
  }
  .nemo-table thead th,
  .nemo-table tbody td {
    padding: 12px 16px;
    font-size: 16px;
  }
}

/* =====================================================
   ABOUT / PHILOSOPHY SECTION
===================================================== */
.about-section {
  background-color: #000;
  padding: 100px 20px;
}

.about-container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

/* Image */
.about-image-wrap {
  margin-bottom: 60px;
  border-radius: 16px;
  overflow: hidden;
  border: 4px solid #fdcf03;
  box-shadow: 8px 8px 0px #fdcf03;
}

.about-image {
  width: 100%;
  height: 650px;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Big opening question */
.about-question {
  font-family: 'Special Elite', cursive;
  font-size: 28px;
  color: #fdcf03;
  line-height: 1.5;
  margin-bottom: 40px;
  font-weight: 400;
}

/* Lead line */
.about-lead {
  font-family: 'Roboto', sans-serif;
  font-size: 20px;
  color: #fff;
  margin-bottom: 32px;
  line-height: 1.7;
  font-weight: 600;
}

/* Body text */
.about-text {
  font-family: 'Roboto', sans-serif;
  font-size: 18px;
  color: rgba(255,255,255,0.85);
  line-height: 1.9;
  margin-bottom: 28px;
  text-align: left;
}

/* Italic quote paragraph */
.about-italic {
  font-family: 'Roboto', sans-serif;
  font-size: 18px;
  color: rgba(255,255,255,0.85);
  line-height: 1.9;
  margin-bottom: 60px;
  font-style: italic;
  border-left: 4px solid #fdcf03;
  padding-left: 24px;
  text-align: left;
}

/* Formula block */
.about-formula {
  display: inline-flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
}

.about-formula-line {
  display: inline-block;
  background-color: #fdcf03;
  color: #000;
  font-family: 'Special Elite', cursive;
  font-size: 28px;
  font-weight: 900;
  padding: 10px 24px;
  line-height: 1.3;
}

/* Responsive */
@media (max-width: 768px) {
  .about-image {
    height: 350px;
  }
  .about-question {
    font-size: 22px;
  }
  .about-formula-line {
    font-size: 20px;
  }
  .about-text,
  .about-italic {
    font-size: 16px;
  }
}

/* =====================================================
   FAQ SECTION
===================================================== */
.faq-section {
  background-color: #fdcf03;
  padding: 80px 20px;
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-header {
  text-align: center;
  margin-bottom: 60px;
}

.faq-title {
  font-family: 'Special Elite', cursive;
  font-size: clamp(36px, 8vw, 72px);
  font-weight: 900;
  color: #000;
  margin-bottom: 18px;
  line-height: 1.1;
  letter-spacing: -1px;
}

.faq-intro {
  font-family: 'Roboto', sans-serif;
  font-size: 20px;
  color: #000;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.6;
  opacity: 0.75;
}

/* List */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Item */
.faq-item {
  border: 3px solid #000;
  border-radius: 12px;
  background-color: #fdcf03;
  box-shadow: 5px 5px 0px #000;
  overflow: hidden;
  transition: box-shadow 0.2s ease;
}

.faq-item.faq-open {
  box-shadow: 8px 8px 0px #000;
}

/* Question button */
.faq-question {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 28px;
  text-align: left;
  font-family: 'Special Elite', cursive;
  font-size: 22px;
  color: #000;
  line-height: 1.3;
}

.faq-question:hover {
  background-color: rgba(0,0,0,0.05);
}

/* +/- icon */
.faq-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background-color: #000;
  color: #fdcf03;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  font-family: 'Roboto', sans-serif;
  font-weight: 300;
  transition: transform 0.3s ease;
  line-height: 1;
}

.faq-item.faq-open .faq-icon {
  transform: rotate(45deg);
}

/* Answer panel */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 28px;
}

.faq-item.faq-open .faq-answer {
  max-height: 600px;
  padding: 0 28px 28px;
}

.faq-answer p {
  font-family: 'Roboto', sans-serif;
  font-size: 18px;
  color: #000;
  line-height: 1.8;
  margin-bottom: 14px;
  border-top: 2px solid rgba(0,0,0,0.15);
  padding-top: 18px;
}

.faq-answer p:first-child {
  border-top: 2px solid rgba(0,0,0,0.15);
}

.faq-answer p:last-child {
  margin-bottom: 0;
  border-top: none;
  padding-top: 0;
}

.faq-answer p:only-child {
  border-top: 2px solid rgba(0,0,0,0.15);
  padding-top: 18px;
}

/* Responsive */
@media (max-width: 768px) {
  .faq-title {
    font-size: 42px;
  }
  .faq-question {
    font-size: 18px;
    padding: 20px 20px;
  }
  .faq-answer {
    padding: 0 20px;
  }
  .faq-item.faq-open .faq-answer {
    padding: 0 20px 20px;
  }
  .faq-answer p {
    font-size: 16px;
  }
}

/* =====================================================
   CONTACT SECTION
===================================================== */
.contact-section {
  background-color: #000;
  padding: 80px 20px;
}

.contact-container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.contact-header {
  margin-bottom: 60px;
}

.contact-title {
  font-family: 'Special Elite', cursive;
  font-size: 72px;
  font-weight: 900;
  color: #fdcf03;
  margin-bottom: 18px;
  line-height: 1.1;
  letter-spacing: -1px;
}

.contact-intro {
  font-family: 'Roboto', sans-serif;
  font-size: 20px;
  color: rgba(255,255,255,0.75);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Cards row */
.contact-cards {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

/* Individual card */
.contact-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  background-color: #111;
  border: 3px solid #fdcf03;
  border-radius: 16px;
  padding: 44px 48px;
  text-decoration: none;
  box-shadow: 6px 6px 0px #fdcf03;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  flex: 1;
  min-width: 240px;
  max-width: 360px;
}

.contact-card:hover {
  transform: translateY(-5px) translateX(-2px);
  box-shadow: 10px 10px 0px #fdcf03;
}

/* Icon circle */
.contact-icon-wrap {
  width: 80px;
  height: 80px;
  background-color: #fdcf03;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-icon-wrap i {
  font-size: 32px;
  color: #000;
}

.contact-label {
  font-family: 'Roboto', sans-serif;
  font-size: 15px;
  color: rgba(255,255,255,0.55);
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.contact-value {
  font-family: 'Special Elite', cursive;
  font-size: 24px;
  color: #fdcf03;
  margin: 0;
  word-break: break-all;
}

/* "or" divider */
.contact-divider {
  font-family: 'Special Elite', cursive;
  font-size: 28px;
  color: rgba(255,255,255,0.4);
  flex-shrink: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-title {
    font-size: 42px;
  }
  .contact-divider {
    transform: rotate(90deg);
  }
  .contact-value {
    font-size: 19px;
  }
  .contact-card {
    padding: 36px 32px;
  }
}
