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

/* ============================================
   CUSTOM PROPERTIES
   ============================================ */
:root {
  --ocean-blue: #1A5FA8;
  --sky-blue: #3D87CC;
  --mist: #EBF3FB;
  --white: #FFFFFF;
  --amber: #F5A623;
  --navy: #1C2B3A;
  --font: 'Montserrat', sans-serif;

  --shadow-card: 0 4px 16px rgba(26, 95, 168, 0.08);
  --shadow-card-hover: 0 8px 32px rgba(26, 95, 168, 0.16);
  --shadow-nav: 0 2px 20px rgba(26, 95, 168, 0.13);
  --border-card: 1px solid #D0E4F5;
  --radius-card: 12px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--navy);
  background: var(--white);
  line-height: 1.7;
}

img { max-width: 100%; display: block; }

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--white);
  padding: 0 48px;
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: box-shadow 0.3s ease;
}

.nav.scrolled { box-shadow: var(--shadow-nav); }

.nav-logo-wrapper {
  height: 56px;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.nav-logo { height: 56px; width: auto; }

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

.nav-logo-img {
  height: 56px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  flex: 1;
  justify-content: center;
}

.nav-links a {
  font-family: var(--font);
  font-weight: 600;
  font-size: 11.5px;
  color: var(--navy);
  text-decoration: none;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.nav-links a:hover { color: var(--sky-blue); }

.nav-links a.active {
  color: var(--ocean-blue);
  border-bottom-color: var(--amber);
}

.btn-book {
  background: var(--amber);
  color: var(--white);
  font-family: var(--font);
  font-weight: 700;
  font-size: 11.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 10px 22px;
  border-radius: 4px;
  flex-shrink: 0;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn-book:hover {
  background: #d98f1a;
  box-shadow: 0 4px 14px rgba(245, 166, 35, 0.4);
}

/* Mobile hamburger */
.nav-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all 0.25s ease;
}

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

.mobile-menu {
  display: none;
  position: fixed;
  top: 74px; left: 0; right: 0;
  background: var(--white);
  padding: 20px 24px 28px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  z-index: 998;
  flex-direction: column;
  gap: 4px;
}

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

.mobile-menu a {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  text-decoration: none;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 12px 0;
  border-bottom: 1px solid #EEF4FB;
  transition: color 0.2s ease;
}

.mobile-menu a:hover,
.mobile-menu a.active { color: var(--ocean-blue); }

.mobile-menu .btn-book-mobile {
  margin-top: 8px;
  display: inline-block;
  background: var(--amber);
  color: var(--white);
  padding: 12px 24px;
  border-radius: 4px;
  text-align: center;
  font-weight: 700;
  border-bottom: none;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--ocean-blue);
  color: var(--white);
  padding: 64px 48px 32px;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand h3 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.footer-brand p {
  font-size: 14px;
  opacity: 0.72;
  line-height: 1.7;
}

.footer-col-title {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 18px;
  opacity: 0.55;
}

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

.footer-links a {
  color: rgba(255,255,255,0.78);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s ease;
}

.footer-links a:hover { color: var(--amber); }

.social-icons {
  display: flex;
  gap: 10px;
}

.social-icon {
  width: 36px;
  height: 36px;
  background: var(--sky-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-decoration: none;
  transition: all 0.2s ease;
}

.social-icon svg { width: 16px; height: 16px; }

.social-icon:hover {
  background: rgba(255,255,255,0.22);
  transform: translateY(-2px);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.16);
  padding-top: 28px;
  text-align: center;
  font-size: 13px;
  opacity: 0.5;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn-primary {
  background: var(--amber);
  color: var(--white);
  font-family: var(--font);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 16px 42px;
  border-radius: 4px;
  display: inline-block;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-primary:hover {
  background: #d98f1a;
  transform: scale(1.03);
  box-shadow: 0 6px 24px rgba(245, 166, 35, 0.45);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  font-family: var(--font);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 40px;
  border-radius: 4px;
  border: 2px solid rgba(255,255,255,0.75);
  display: inline-block;
  cursor: pointer;
  transition: all 0.2s ease;
}

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

/* ============================================
   IMAGE PLACEHOLDERS
   ============================================ */
.img-placeholder {
  background: var(--mist);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  color: var(--sky-blue);
}

.img-placeholder svg { opacity: 0.35; }

.img-placeholder.img-circle {
  border-radius: 50%;
  border: 6px solid var(--white);
  box-shadow: 0 8px 32px rgba(26, 95, 168, 0.2);
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* ============================================
   PAGE HEADER (interior pages)
   ============================================ */
.page-header {
  background: var(--ocean-blue);
  padding: 128px 48px 64px;
  text-align: center;
}

.page-header h1 {
  font-size: 44px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}

.page-header p {
  font-size: 18px;
  color: rgba(255,255,255,0.72);
  font-weight: 400;
}

.amber-divider {
  width: 60px;
  height: 3px;
  background: var(--amber);
  border-radius: 2px;
  margin: 16px auto 0;
}

/* ============================================
   SECTION UTILITIES
   ============================================ */
.section-white { background: var(--white); padding: 88px 48px; }
.section-mist  { background: var(--mist);  padding: 88px 48px; }
.section-blue  { background: var(--ocean-blue); padding: 88px 48px; }

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

.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sky-blue);
  margin-bottom: 10px;
}

.section-title {
  font-weight: 800;
  color: var(--ocean-blue);
  letter-spacing: -0.02em;
  line-height: 1.15;
}

/* ============================================
   HOME — HERO
   ============================================ */
.hero {
  min-height: 100vh;
  background:
    linear-gradient(to bottom, rgba(37,112,190,0.72) 0%, rgba(26,95,168,0.80) 50%, rgba(21,78,140,0.90) 100%),
    url('images/photo_group_dogs.png') center 30% / cover no-repeat;
  display: flex;
  flex-direction: column;
  position: relative;
  padding-top: 74px;
}

.hero-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 40px 40px;
  max-width: 700px;
  margin: 0 auto;
  width: 100%;
}

.hero h1 {
  font-size: 52px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero p.hero-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.82);
  line-height: 1.75;
  margin-bottom: 40px;
  max-width: 560px;
}

.hero-wave {
  width: 100%;
  line-height: 0;
  display: block;
}

.hero-wave svg {
  display: block;
  width: 100%;
}

/* ============================================
   HOME — SOCIAL
   ============================================ */
.social-section {
  background: var(--mist);
  padding: 56px 48px;
  text-align: center;
}

.social-section h2 {
  font-size: 20px;
  font-weight: 600;
  color: var(--ocean-blue);
  letter-spacing: 0.02em;
  margin-bottom: 28px;
}

.social-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  align-items: center;
}

.social-btn {
  width: 44px;
  height: 44px;
  background: var(--sky-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-decoration: none;
  transition: all 0.2s ease;
}

.social-btn svg { width: 20px; height: 20px; }

.social-btn:hover {
  background: var(--ocean-blue);
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(26, 95, 168, 0.25);
}

/* ============================================
   HOME — SERVICES TEASER
   ============================================ */
.services-teaser {
  background: var(--white);
  padding: 88px 48px;
}

.services-teaser-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.services-teaser-header {
  text-align: center;
  margin-bottom: 52px;
}

.services-teaser-header h2 {
  font-size: 34px;
  font-weight: 800;
  color: var(--ocean-blue);
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}

.services-teaser-header p {
  font-size: 16px;
  color: var(--navy);
  opacity: 0.75;
  max-width: 520px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  background: var(--white);
  border: var(--border-card);
  border-radius: var(--radius-card);
  padding: 36px 28px;
  box-shadow: var(--shadow-card);
  transition: all 0.25s ease;
}

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

.service-icon {
  width: 52px;
  height: 52px;
  color: var(--ocean-blue);
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--ocean-blue);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.service-card p {
  font-size: 14px;
  color: var(--navy);
  line-height: 1.75;
  margin-bottom: 22px;
}

.learn-more {
  font-size: 13px;
  font-weight: 600;
  color: var(--sky-blue);
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.learn-more:hover { text-decoration: underline; }

/* ============================================
   SERVICES PAGE
   ============================================ */
.services-layout {
  display: grid;
  grid-template-columns: 40% 1fr;
  gap: 64px;
  align-items: stretch;
}

.services-img-col {
  display: flex;
}

.services-img-photo {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  object-position: center top;
  border-radius: 16px;
  display: block;
}

.service-block {
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid #D0E4F5;
}

.service-block:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.service-block h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--ocean-blue);
  margin-bottom: 10px;
}

.service-block-line {
  width: 40px;
  height: 2px;
  background: var(--sky-blue);
  margin-bottom: 18px;
  border-radius: 2px;
}

.service-block p {
  font-size: 15px;
  color: var(--navy);
  line-height: 1.8;
}

/* Menu / Price List */
.menu-title {
  font-size: 36px;
  font-weight: 700;
  color: var(--ocean-blue);
  text-align: center;
  letter-spacing: -0.01em;
  font-style: italic;
  margin-bottom: 10px;
}

.menu-title-line {
  width: 60px;
  height: 1px;
  background: var(--sky-blue);
  margin: 0 auto 52px;
  opacity: 0.5;
}

.menu-category { margin-bottom: 40px; }

.menu-cat-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--sky-blue);
  margin-bottom: 6px;
}

.menu-cat-desc {
  font-size: 13px;
  color: var(--navy);
  opacity: 0.6;
  margin-bottom: 20px;
}

.menu-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 64px;
}

.menu-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.menu-entry {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
}

.menu-entry-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.menu-entry-name {
  font-size: 16px;
  font-weight: 500;
  color: var(--navy);
}

.menu-entry-desc {
  font-size: 13px;
  color: var(--navy);
  opacity: 0.6;
}

.menu-entry-price {
  font-size: 18px;
  font-weight: 600;
  color: var(--navy);
  white-space: nowrap;
}

.menu-separator {
  border: none;
  border-top: 1px solid #D0E4F5;
  margin: 12px 0 40px;
}

.menu-footnote {
  font-size: 13px;
  color: var(--navy);
  opacity: 0.6;
  text-align: center;
  margin-top: 40px;
  font-style: italic;
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-hero-img {
  display: flex;
  justify-content: center;
  padding: 72px 48px 56px;
  background: var(--white);
}

.about-img-circle {
  width: 480px;
  height: 480px;
  background: var(--mist);
  border-radius: 50%;
  border: 6px solid var(--white);
  box-shadow: 0 8px 48px rgba(26, 95, 168, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sky-blue);
}

.about-img-circle svg { opacity: 0.3; }

.mission-section {
  background: var(--white);
  padding: 0 48px 88px;
  text-align: center;
}

.mission-section h2 {
  font-size: 36px;
  font-weight: 700;
  color: var(--ocean-blue);
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  line-height: 1.2;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.mission-section p {
  font-size: 16.5px;
  color: var(--navy);
  line-height: 1.85;
  max-width: 720px;
  margin: 0 auto;
}

.feature-section {
  background: var(--mist);
  padding: 88px 48px;
}

.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  max-width: 1000px;
  margin: 0 auto;
}

.feature-col { text-align: center; }

.feature-img-circle {
  width: 280px;
  height: 280px;
  background: var(--white);
  border-radius: 50%;
  border: 6px solid var(--white);
  box-shadow: 0 8px 32px rgba(26, 95, 168, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sky-blue);
  margin: 0 auto 32px;
}

.feature-img-circle svg { opacity: 0.3; }

.feature-circle-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  border-radius: 50%;
  display: block;
}


.feature-col h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--ocean-blue);
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}

.feature-col p {
  font-size: 15px;
  color: var(--navy);
  line-height: 1.8;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-section {
  background: var(--mist);
  padding: 80px 48px;
}

.contact-form-wrapper {
  max-width: 640px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 16px;
  padding: 52px;
  box-shadow: 0 4px 24px rgba(26, 95, 168, 0.1);
}

.form-group { margin-bottom: 22px; }

.form-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.form-input,
.form-textarea {
  width: 100%;
  border: 1.5px solid #D0E4F5;
  border-radius: 8px;
  padding: 13px 16px;
  font-family: var(--font);
  font-size: 15px;
  color: var(--navy);
  background: var(--white);
  transition: all 0.2s ease;
  outline: none;
  appearance: none;
}

.form-input:focus,
.form-textarea:focus {
  border-color: var(--ocean-blue);
  box-shadow: 0 0 0 3px rgba(26, 95, 168, 0.12);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: #9DB5CC;
}

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

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 28px;
}

.form-checkbox input[type="checkbox"] {
  margin-top: 2px;
  accent-color: var(--ocean-blue);
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  cursor: pointer;
}

.form-checkbox label {
  font-size: 14px;
  color: var(--navy);
  cursor: pointer;
  line-height: 1.55;
}

.btn-submit {
  width: 100%;
  background: var(--amber);
  color: var(--white);
  font-family: var(--font);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  border-radius: 8px;
  padding: 18px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-submit:hover {
  background: #d98f1a;
  box-shadow: 0 6px 20px rgba(245, 166, 35, 0.4);
}

/* ============================================
   BOOKING PAGE
   ============================================ */
.booking-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.booking-card {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 28px 24px;
  box-shadow: var(--shadow-card);
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
}

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

.booking-badge {
  display: inline-block;
  background: var(--sky-blue);
  color: var(--white);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 16px;
  width: fit-content;
}

.booking-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--ocean-blue);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.booking-price {
  font-size: 28px;
  font-weight: 800;
  color: var(--amber);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
  flex: 1;
}

.btn-book-card {
  display: block;
  background: var(--ocean-blue);
  color: var(--white);
  font-family: var(--font);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 13px;
  border-radius: 6px;
  text-align: center;
  transition: all 0.2s ease;
}

.btn-book-card:hover { background: var(--sky-blue); }

.payment-section {
  background: var(--white);
  padding: 64px 48px;
  text-align: center;
}

.payment-section h2 {
  font-size: 24px;
  font-weight: 600;
  color: var(--ocean-blue);
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}

.payment-section p {
  font-size: 16px;
  color: var(--navy);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ============================================
   THANK YOU PAGE
   ============================================ */
.thankyou-hero {
  min-height: 80vh;
  background: radial-gradient(ellipse at 50% 40%, #2570be 0%, #1A5FA8 55%, #154e8c 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 48px 80px;
}

.thankyou-check {
  width: 88px;
  height: 88px;
  background: var(--amber);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 36px;
  box-shadow: 0 8px 32px rgba(245, 166, 35, 0.4);
}

.thankyou-check svg {
  width: 44px;
  height: 44px;
  color: var(--white);
}

.thankyou-hero h1 {
  font-size: 44px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  max-width: 600px;
  line-height: 1.15;
}

.thankyou-hero p {
  font-size: 18px;
  color: rgba(255,255,255,0.78);
  max-width: 500px;
  margin: 0 auto 44px;
  line-height: 1.75;
}

.thankyou-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================
   TRUST STRIP — WHY PAWZ RIVERSIDE
   ============================================ */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  align-items: stretch;
  text-align: center;
}

.trust-card {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ============================================
   RESPONSIVE — TABLET
   ============================================ */
@media (max-width: 900px) {
  .nav { padding: 0 24px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }

  .hero h1 { font-size: 36px; }
  .hero p.hero-sub { font-size: 16px; }

  .services-grid { grid-template-columns: 1fr; }
  .services-layout { grid-template-columns: 1fr; }
  .services-img-col { position: static; }
  .services-img-photo { height: 260px; }

  .feature-grid { grid-template-columns: 1fr; gap: 52px; }

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

  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }

  .section-white,
  .section-mist,
  .section-blue,
  .services-teaser,
  .contact-section,
  .payment-section { padding: 64px 24px; }

  .page-header { padding: 112px 24px 52px; }
  .page-header h1 { font-size: 34px; }

  .contact-form-wrapper { padding: 32px 24px; }

  .about-hero-img { padding: 52px 24px 40px; }
  .about-img-circle { width: 320px; height: 320px; }

  .mission-section { padding: 0 24px 72px; }
  .mission-section h2 { font-size: 28px; }

  .feature-section { padding: 64px 24px; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 28px; }
  .hero-content { padding: 40px 24px 24px; }

  .btn-primary,
  .btn-outline-white { padding: 14px 28px; font-size: 13px; }

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

  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .footer { padding: 48px 24px 24px; }

  .about-img-circle { width: 240px; height: 240px; }
  .feature-img-circle { width: 220px; height: 220px; }

  .thankyou-hero h1 { font-size: 30px; }
  .thankyou-btns { flex-direction: column; align-items: center; }

  .menu-row { grid-template-columns: 1fr; gap: 20px; }
  .menu-title { font-size: 28px; }

  .trust-grid { grid-template-columns: 1fr; gap: 24px; }

.services-teaser-header h2 { font-size: 26px; }
}
