:root {
  --color-background-base: #FDF4DE;
  --color-notepad-background: #FAF5E9;
  --color-text-primary: #523916;
  --color-text-on-dark: #FFFFFF;
  --color-text-gold: #f2ce93;
  --color-accent-green: #2B5738;
  --color-accent-yellow: #f3c64a;
  --color-accent-red-banner: #BD4F3C;
  --color-border-dark: #523916;
  --color-icon-fill: #2B5738;

  --font-head: 'Fraunces', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', system-ui, sans-serif;
  --shadow-sm: 0 4px 14px rgba(82, 57, 22, 0.08);
  --shadow-md: 0 10px 30px rgba(82, 57, 22, 0.12);
  --shadow-lg: 0 20px 50px rgba(82, 57, 22, 0.18);
  --radius: 18px;
  --radius-sm: 12px;
}

* { box-sizing: border-box; }

html, body {
  overflow-x: hidden;
  max-width: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  background-color: var(--color-background-base);
  color: var(--color-text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

section { overflow-x: hidden; }

h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  font-weight: 600;
  line-height: 1.2;
  color: var(--color-text-primary);
}

a { text-decoration: none; color: var(--color-accent-green); }
img { max-width: 100%; display: block; }

/* ===== Section helpers ===== */
.section { padding: 6rem 0; position: relative; overflow: hidden;}
.section-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-accent-green);
  background: rgba(43, 87, 56, 0.1);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}
.section-title {
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  margin-bottom: 1rem;
}
.section-lead {
  color: rgba(82, 57, 22, 0.7);
  font-size: 1.1rem;
  max-width: 620px;
  margin: 0 auto;
}
.section-header { max-width: 720px; margin: 0 auto; }

/* ===== Buttons ===== */
.btn {
  font-family: var(--font-body);
  font-weight: 600;
  border-radius: 50px;
  padding: 0.8rem 1.8rem;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.btn-primary-cta {
  background: var(--color-accent-yellow);
  color: var(--color-text-primary);
  border-color: var(--color-accent-yellow);
  box-shadow: 0 6px 20px rgba(254, 212, 48, 0.4);
}
.btn-primary-cta:hover {
  background: #ffd84a;
  border-color: #ffd84a;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(254, 212, 48, 0.5);
  color: var(--color-text-primary);
}
.btn-wa-cta, .btn-wa-nav {
  background: var(--color-accent-green);
  color: var(--color-text-on-dark);
  border-color: var(--color-accent-yellow);
}
.btn-wa-cta:hover, .btn-wa-nav:hover {
  background: #1f4129;
  border-color: #1f4129;
  color: var(--color-text-on-dark);
  transform: translateY(-2px);
}
.btn-wa-nav {
  padding: 0.5rem 1.2rem;
  font-size: 0.9rem;
}

/* Отменяем бутстраповское потемнение для первой желтой кнопки при клике */
.btn-primary-cta:active,
.btn-primary-cta:first-child:active,
.btn-primary-cta:focus {
  background: var(--color-accent-yellow) !important;
  border-color: var(--color-accent-yellow) !important;
  color: var(--color-text-primary) !important;
  /* Делаем легкий эффект вдавливания вместо грязно-черного цвета */
  transform: translateY(1px) !important; 
  box-shadow: 0 4px 12px rgba(254, 212, 48, 0.3) !important;
}

/* На всякий случай гасим потемнение и для зеленой кнопки WhatsApp при клике */
.btn-wa-cta:active,
.btn-wa-cta:focus,
.btn-wa-nav:active,
.btn-wa-nav:focus {
  background: var(--color-accent-green) !important;
  border-color: var(--color-accent-green) !important;
  color: var(--color-text-on-dark) !important;
  transform: translateY(1px) !important;
}

/* ===== Navbar ===== */
#mainNav {
  /* Задаем чуть больше паддинга изначально, чтобы была разница при скролле */
  padding: 0.1rem 0; 
  transition: padding 0.4s cubic-bezier(0.25, 1, 0.5, 1), background-color 0.4s ease, box-shadow 0.4s ease;
  background: transparent;
}

#mainNav.scrolled {
  background: var(--color-accent-green);
  /* Сужаем сам navbar за счет уменьшения паддингов */
  padding: 0.4rem 0; 
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

#mainNav .nav-link {
  color: var(--color-text-on-dark);
  font-weight: 500;
  position: relative;
  padding: 0.5rem 0.2rem !important;
}
#mainNav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--color-accent-yellow);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}
#mainNav .nav-link:hover::after,
#mainNav .nav-link.active::after { width: 100%; }
#mainNav .nav-link:hover { color: var(--color-accent-yellow); }
#mainNav .navbar-toggler {
  border-color: rgba(255, 255, 255, 0.5);
  color: white;
}
#mainNav .navbar-toggler-icon { filter: invert(1); }

/* ===== LOGO ANIMATION ===== */
#mainNav .navbar-brand img {
  border-radius: 10px;
}

.top-logo {
  /* Анимируем физическую высоту. Чтобы не было рывков, 
     используем тот же cubic-bezier, что и на самом навибаре */
  height: 110px; 
  width: auto;
  display: block;
  transition: height 0.4s cubic-bezier(0.25, 1, 0.5, 1), transform 0.3s ease;
}

/* Эффект ховера оставляем, он будет отлично работать */
#mainNav .navbar-brand:hover img { 
  transform: scale(1.05); 
}

/* Когда навибар получает класс .scrolled, физически уменьшаем высоту картинки.
   Благодаря плавному безье-таймингу, это произойдет синхронно с сужением навибара */
#mainNav.scrolled .top-logo {
  height: 50px; 
}
/* ===== Hero ===== */
.hero-section {
  min-height: 100vh;
  position: relative;
  background: url('https://pets.erphy.me/resources/img/slide.webp') center/cover no-repeat;
  display: flex;
  align-items: center;
  padding-top: 100px;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(20, 40, 25, 0.85) 0%, rgba(20, 40, 25, 0.55) 50%, rgba(20, 40, 25, 0.2) 100%);
}
.hero-content { position: relative; z-index: 2; }
.hero-overline {
  display: inline-block;
  color: var(--color-accent-yellow);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
  padding: 0.4rem 1rem;
  border: 1.5px solid rgba(254, 212, 48, 0.5);
  border-radius: 50px;
}
.hero-title {
  color: var(--color-text-on-dark);
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}
.hero-subtitle {
  color: var(--color-text-gold);
  font-size: 1.2rem;
  font-weight: 300;
  max-width: 540px;
  margin-bottom: 2rem;
  line-height: 1.7;
}
.hero-cta-group { margin-bottom: 2rem; }
.hero-badges {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
  font-weight: 500;
}
.hero-badges span { display: inline-flex; align-items: center; gap: 0.5rem; }
.hero-badges i { color: var(--color-accent-yellow); }
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  font-size: 1.5rem;
  z-index: 2;
  animation: bounce 2s infinite;
  opacity: 0.8;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ===== About ===== */
.about-section { background: var(--color-background-base); }
.about-image-wrap { position: relative; padding: 0 1rem 1rem 0; }
.about-image-frame {
  /* border-radius: var(--radius); */
  overflow: visible;
  /* box-shadow: var(--shadow-lg);
  border: 3px solid var(--color-border-dark); */
  position: relative;
}
/* .about-image-frame::before {
  content: '';
  position: absolute;
  inset: -12px -12px -12px -12px;
  border: 2px dashed var(--color-accent-green);
  border-radius: calc(var(--radius) + 8px);
  z-index: -1;
  opacity: 0.4;
} */
.about-image-frame img {
  height: 80%;
  width: auto;
  /* aspect-ratio: 4/3; */
  object-fit: cover;
  transition: transform 0.6s ease;
  max-height: 555px;
  margin: 0 auto;
}
.about-image-wrap:hover .about-image-frame img { transform: scale(1.04); }
.about-credential-badge {
  position: absolute;
  bottom: -1rem;
  left: -1rem;
  background: var(--color-accent-green);
  color: white;
  padding: 1rem 1.3rem;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  gap: 0.8rem;
  box-shadow: var(--shadow-md);
  max-width: 260px;
}
.about-credential-badge i { font-size: 1.8rem; color: var(--color-accent-yellow); }
.about-credential-badge strong { display: block; font-size: 0.85rem; font-family: var(--font-body); }
.about-credential-badge span { font-size: 0.78rem; opacity: 0.85; }
.credential-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(43, 87, 56, 0.1);
  color: var(--color-accent-green);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}
.about-text { color: rgba(82, 57, 22, 0.8); margin-bottom: 1rem; }

.about-features { margin-top: 3.5rem; }
.feature-box {
  background: white;
  border: 1.5px solid rgba(82, 57, 22, 0.12);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  height: 100%;
  transition: all 0.35s ease;
  box-shadow: var(--shadow-sm);
}
.feature-box:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-accent-green);
}
.feature-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1rem;
  background: var(--color-accent-green);
  color: var(--color-accent-yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transition: transform 0.35s ease;
}
.feature-box:hover .feature-icon { transform: rotate(-8deg) scale(1.08); }
.feature-box h3 { font-size: 1.25rem; margin-bottom: 0.5rem; }
.feature-box p { color: rgba(82, 57, 22, 0.7); margin: 0; font-size: 0.95rem; }


.paw-bg-about {
  width: 320px;
  height: 320px;
  position: absolute;
  bottom: 0;
  left: 1%;
  opacity: 0.04;
  transform: rotate(38deg);
  pointer-events: none;
}
.paw-bg-about-top {
  position: absolute;
  left: unset;
  transform: rotate(42deg);
  right: 1%;
  top: 22px;
}
@media (max-width: 768px) {
  .paw-bg-about-top {
  width: 220px;
  height: 220px;
  }}
@media (max-width: 575px) {
  .paw-bg-about-top {
  width: 120px;
  height: 120px;
  }}

/* ===== Services ===== */
.services-section {
  background: linear-gradient(180deg, #f7ecd0 0%, var(--color-background-base) 100%);
}
.service-card {
  background: white;
  border: 1.5px solid rgba(82, 57, 22, 0.12);
  border-radius: var(--radius);
  padding: 2.5rem 1.8rem;
  height: 100%;
  text-align: center;
  transition: all 0.35s ease;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 5px;
  background: var(--color-accent-yellow);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-accent-green);
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: var(--color-accent-green);
  color: var(--color-accent-yellow);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  transition: all 0.35s ease;
}
.service-card:hover .service-icon {
  border-radius: 50%;
  transform: rotate(10deg);
}
.service-card h3 { font-size: 1.3rem; margin-bottom: 0.8rem; }
.service-card p { color: rgba(82, 57, 22, 0.7); margin-bottom: 1.5rem; font-size: 0.95rem; }
.btn-read-more {
  background: transparent;
  border: 2px solid var(--color-accent-green);
  color: var(--color-accent-green);
  border-radius: 50px;
  padding: 0.5rem 1.3rem;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}
.btn-read-more:hover {
  background: var(--color-accent-green);
  color: white;
  transform: translateY(-2px);
}

/* ===== Modals (shared) ===== */
.modal-content {
  border-radius: var(--radius);
  border: 2px solid var(--color-border-dark);
  box-shadow: var(--shadow-lg);
}
.service-modal .modal-header,
.policy-modal .modal-header {
  background: var(--color-accent-green);
  color: white;
  border-radius: calc(var(--radius) - 2px) calc(var(--radius) - 2px) 0 0;
}
.service-modal .modal-title,
.policy-modal .modal-title {
  color: white;
  font-family: var(--font-head);
  font-size: 1.3rem;
}
.service-modal .modal-body p,
.policy-modal .modal-body p { color: rgba(82, 57, 22, 0.85); }
.service-modal .btn-close,
.policy-modal .btn-close { filter: invert(1) brightness(2); }
.policy-list { list-style: none; padding: 0; }
.policy-list li {
  position: relative;
  padding-left: 1.8rem;
  margin-bottom: 1rem;
  color: rgba(82, 57, 22, 0.85);
}
.policy-list li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 0;
  color: var(--color-accent-green);
}

/* ===== Team ===== */
.team-section { background: var(--color-background-base); }
.teamSwiper { padding: 1rem 0 3rem; }
.team-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  border: 2px solid var(--color-border-dark);
  aspect-ratio: 1;
}
.team-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.team-card:hover img { transform: scale(1.08); }
.team-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(43, 87, 56, 0.92) 0%, rgba(43, 87, 56, 0.4) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.8rem;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.team-card:hover .team-overlay { opacity: 1; }
.team-overlay h3 { color: white; margin: 0; font-size: 1.6rem; }
.team-overlay p { color: var(--color-text-gold); margin: 0.3rem 0 0; font-size: 0.95rem; }
.team-zoom {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  width: 42px;
  height: 42px;
  background: var(--color-accent-yellow);
  color: var(--color-text-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}
.team-modal .modal-content {
  background: transparent;
  border: none;
  box-shadow: none;
}
.team-modal .modal-content img {
  border-radius: var(--radius) var(--radius) 0 0;
  width: 100%;
  max-height: 60vh;
  object-fit: cover;
}
.team-modal .team-modal-body {
  background: white;
  padding: 2rem;
  border-radius: 0 0 var(--radius) var(--radius);
  border: 2px solid var(--color-border-dark);
  border-top: none;
}
.team-modal .team-modal-body h3 { font-size: 1.6rem; margin-bottom: 0.8rem; }
.team-modal .team-modal-body p { color: rgba(82, 57, 22, 0.8); margin: 0; }
.team-close {
    position: absolute;
    padding: 10px;
    top: 12px;
    right: 12px;
    opacity: 1;
    background-color: var(--color-accent-yellow);
}
.swiper-button-next, .swiper-button-prev { color: var(--color-accent-green); }
.swiper-pagination-bullet-active { background: var(--color-accent-green); }

/* ===== Prices ===== */
.prices-section {
  background: linear-gradient(180deg, var(--color-background-base) 0%, #f7ecd0 100%);
}
.notepad {
  background: var(--color-notepad-background);
  border: 2.5px solid var(--color-border-dark);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  max-width: 960px;
  margin: 0 auto;
  position: relative;
}
.notepad::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 6px;
  background: var(--color-accent-red-banner);
}
.notepad-header {
  text-align: center;
  padding: 1.8rem 1rem 1.4rem;
  border-bottom: 2px dashed rgba(82, 57, 22, 0.25);
  background: rgba(189, 79, 60, 0.06);
}
.notepad-brand {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--color-accent-red-banner);
  letter-spacing: 0.1em;
}
.notepad-divider { color: var(--color-text-primary); margin: 0 0.5rem; }
.notepad-sub {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  color: var(--color-text-primary);
  text-transform: uppercase;
}
.notepad-col { padding: 2.2rem 2rem; }
.notepad-col-left { border-right: 2px dashed rgba(82, 57, 22, 0.25); }
.notepad-heading {
  font-size: 1.3rem;
  color: var(--color-accent-green);
  margin-bottom: 1.5rem;
  padding-bottom: 0.6rem;
  border-bottom: 2px solid var(--color-accent-yellow);
  display: inline-block;
}
.notepad-heading i { color: var(--color-accent-yellow); background: var(--color-accent-green); padding: 0.4rem; border-radius: 8px; font-size: 1rem; }
.price-group { margin-bottom: 1.6rem; }
.price-group h4 {
  font-size: 1rem;
  font-family: var(--font-body);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 0.6rem;
}
.price-line {
  display: flex;
  align-items: baseline;
  font-size: 0.95rem;
  color: rgba(82, 57, 22, 0.85);
  padding: 0.25rem 0;
}
.price-dot {
  flex: 1;
  border-bottom: 1.5px dotted rgba(82, 57, 22, 0.3);
  margin: 0 0.6rem;
  transform: translateY(-4px);
}
.price-amount { font-weight: 700; color: var(--color-accent-green); white-space: nowrap; }
.price-amount small { font-weight: 400; font-size: 0.78rem; color: rgba(82, 57, 22, 0.6); }
.price-line-feature {
  background: rgba(254, 212, 48, 0.18);
  padding: 0.5rem 0.6rem;
  border-radius: 8px;
  margin-top: 0.3rem;
}
.price-line-feature .price-amount { font-size: 1.05rem; }


.paw-bg-prices {
  width: 320px;
  height: 320px;
  position: absolute;
  bottom: 0;
  right: 4%;
  opacity: 0.04;
  transform: rotate(38deg);
  pointer-events: none;
}
@media (max-width: 768px) {
  .paw-bg-prices {
  width: 220px;
  height: 220px;
  }}
@media (max-width: 575px) {
  .paw-bg-prices {
  width: 120px;
  height: 120px;
  }}

.paw-bg-prices-top {
  position: absolute;
  top: -18px;
  left: 5%;
  transform: rotate(139deg);
}
@media (max-width: 768px) {
  .paw-bg-prices-top {
  left: 1%;
  }}
@media (max-width: 575px) {
  .paw-bg-prices-top {
  left: 4%;
  }}


/* ===== FAQ ===== */
.faq-section { background: var(--color-background-base); }
.custom-accordion .accordion-item {
  border: 1.5px solid rgba(82, 57, 22, 0.15);
  border-radius: var(--radius-sm) !important;
  margin-bottom: 1rem;
  overflow: hidden;
  background: white;
  box-shadow: var(--shadow-sm);
}
.custom-accordion .accordion-button {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--color-text-primary);
  padding: 1.2rem 1.5rem;
  width: 100%;
  text-align: left;
  background: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.custom-accordion .accordion-button:not(.collapsed) {
  background: var(--color-accent-green);
  color: white;
}
.custom-accordion .accordion-button:focus { box-shadow: none; }
.custom-accordion .accordion-button::after { display: none; }
.faq-arrow {
  transition: transform 0.3s ease;
  color: var(--color-accent-green);
}
.custom-accordion .accordion-button:not(.collapsed) .faq-arrow { transform: rotate(180deg); color: var(--color-accent-yellow); }
.custom-accordion .accordion-body {
  padding: 1.2rem 1.5rem;
  color: rgba(82, 57, 22, 0.8);
}

/* ===== Contact ===== */
.contact-section {
  background: linear-gradient(180deg, #f7ecd0 0%, var(--color-background-base) 100%);
}
.contact-card {
  background: white;
  border: 2px solid var(--color-border-dark);
  border-radius: var(--radius);
  padding: 2.5rem;
  height: 100%;
  box-shadow: var(--shadow-md);
}
.contact-card h3 { font-size: 1.6rem; margin-bottom: 0.8rem; }
.contact-intro { color: rgba(82, 57, 22, 0.7); margin-bottom: 1.8rem; }
.contact-list { list-style: none; padding: 0; margin: 0; }
.contact-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.9rem 0;
  border-bottom: 1px dashed rgba(82, 57, 22, 0.2);
}
.contact-list li:last-child { border-bottom: none; }
.contact-ic {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: var(--color-accent-green);
  color: var(--color-accent-yellow);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}
.contact-label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(82, 57, 22, 0.55);
  font-weight: 600;
}
.contact-list a {
  color: var(--color-text-primary);
  font-weight: 600;
  font-size: 1.05rem;
  transition: color 0.2s ease;
}
.contact-list a:hover { color: var(--color-accent-green); }
.map-wrap {
  border: 2px solid var(--color-border-dark);
  border-radius: var(--radius);
  overflow: hidden;
  height: 100%;
  min-height: 420px;
  box-shadow: var(--shadow-md);
  background: white;
}
.map-wrap iframe { min-height: 420px; }

/* ===== Footer ===== */
.footer {
  background: var(--color-accent-green);
  color: rgba(255, 255, 255, 0.85);
  overflow: hidden;
  position: relative;
}
.footer-logo { border-radius: 10px; }
.footer-desc { font-size: 0.92rem; line-height: 1.7; color: rgba(255, 255, 255, 0.75); max-width: 320px; }
.footer-title {
  color: var(--color-accent-yellow);
  font-size: 1.1rem;
  margin-bottom: 1.2rem;
  font-family: var(--font-head);
}
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 0.6rem; }
.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  transition: all 0.2s ease;
}
.footer-links a:hover { color: var(--color-accent-yellow); padding-left: 4px; }
.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.footer-social a:hover {
  background: var(--color-accent-yellow);
  color: var(--color-accent-green);
  transform: translateY(-3px);
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  margin-top: 1rem;
}
.footer-copy { font-size: 0.85rem; color: rgba(255, 255, 255, 0.7); }

/* ===== Responsive ===== */
@media (max-width: 991px) {
  .section { padding: 4rem 0; }
  #mainNav .navbar-collapse {
    background: var(--color-accent-green);
    padding: 1.5rem;
    border-radius: var(--radius-sm);
    margin-top: 1rem;
  }
  #mainNav.scrolled .navbar-collapse { background: var(--color-accent-green); }
  .about-credential-badge { position: relative; bottom: 0; left: 0; margin-top: 1.5rem; max-width: 100%; }
  .about-image-wrap { padding: 0; }
  .notepad-col-left { border-right: none; border-bottom: 2px dashed rgba(82, 57, 22, 0.25); }
  .map-wrap { min-height: 320px; }
  .map-wrap iframe { min-height: 320px; }
}
@media (max-width: 575px) {
  .hero-section { min-height: 100vh; }
  .hero-title { font-size: 2rem; }
  .hero-subtitle { font-size: 1.05rem; }
  .notepad-col { padding: 1.5rem 1.2rem; }
  .contact-card { padding: 1.8rem; }
  .hero-cta-group .btn { width: 100%; }
}
