/* landing-token: d082 */
/* ============================================================
   PfotenGlück Tierarzt — Theme CSS
   Palette: #2D7D46 (forest-green) | #E8832A (warm-orange)
   ============================================================ */

:root {
  --green: #2D7D46;
  --green-dark: #1f5c32;
  --green-light: #e8f5ed;
  --orange: #E8832A;
  --orange-dark: #c46e1e;
  --orange-light: #fdf3e9;
  --bg: #FAFAFA;
  --text: #2C3E50;
  --text-muted: #6b7c93;
  --white: #ffffff;
  --border: #e0e8e4;
  --shadow: 0 4px 20px rgba(45,125,70,0.12);
  --radius: 8px;
  --radius-lg: 16px;
}

/* ---- Base ---- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Open Sans', sans-serif;
  color: var(--text);
  background: var(--bg);
  font-size: 1rem;
  line-height: 1.65;
  margin: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
}

a { color: var(--green); transition: color 0.2s; }
a:hover { color: var(--green-dark); }

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

/* ---- Utility ---- */
.text-green { color: var(--green); }
.text-orange { color: var(--orange); }
.bg-green { background: var(--green); }
.bg-orange { background: var(--orange); }
.bg-light { background: var(--green-light); }
.section-pad { padding: 5rem 0; }
.section-pad-sm { padding: 3rem 0; }

/* ---- Navigation ---- */
.top-bar {
  background: var(--white) !important;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  padding: 0 1rem;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 3px solid var(--green);
}

.top-bar .top-bar-left,
.top-bar .top-bar-right {
  background: transparent;
}

.top-bar-title {
  padding: 0.75rem 1rem 0.75rem 0;
}

.brand-logo {
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--green) !important;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  white-space: nowrap;
}

.brand-logo svg {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

.top-bar ul {
  background: transparent;
  margin: 0;
}

.top-bar ul li a {
  color: var(--text) !important;
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 1rem 0.85rem;
  transition: color 0.2s;
}

.top-bar ul li a:hover,
.top-bar ul li.active > a {
  color: var(--green) !important;
}

.top-bar .button.cta-nav {
  background: var(--orange);
  color: var(--white) !important;
  border-radius: var(--radius);
  padding: 0.55rem 1.25rem;
  margin: auto 0.5rem;
  font-weight: 700;
  font-size: 0.9rem;
  transition: background 0.2s, transform 0.15s;
}

.top-bar .button.cta-nav:hover {
  background: var(--orange-dark);
  transform: translateY(-1px);
}

.menu-icon { margin: 0.5rem; }

/* ---- Hero / Parallax ---- */
.hero-parallax {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--green-dark);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/tierarzt-praxis-koeln.jpg');
  background-size: cover;
  background-position: center 40%;
  background-attachment: fixed;
  transform: scale(1.05);
  transition: transform 0.1s linear;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(45,125,70,0.82) 0%,
    rgba(44,62,80,0.55) 60%,
    rgba(232,131,42,0.25) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 2rem 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.18);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.35);
  color: var(--white);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-family: 'Quicksand', sans-serif;
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.hero-title span {
  color: #ffd166;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: rgba(255,255,255,0.92);
  margin-bottom: 2.5rem;
  max-width: 560px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--orange);
  color: var(--white) !important;
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  padding: 0.9rem 2rem;
  border-radius: var(--radius);
  text-decoration: none;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(232,131,42,0.4);
}

.btn-primary:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(232,131,42,0.5);
  color: var(--white) !important;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--white) !important;
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius);
  text-decoration: none;
  border: 2px solid rgba(255,255,255,0.7);
  transition: border-color 0.2s, background 0.2s;
}

.btn-secondary:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.12);
  color: var(--white) !important;
}

.btn-green {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--green);
  color: var(--white) !important;
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius);
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  box-shadow: 0 4px 14px rgba(45,125,70,0.3);
}

.btn-green:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  color: var(--white) !important;
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.25);
}

.hero-stat {
  text-align: center;
}

.hero-stat-number {
  display: block;
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  font-size: 2rem;
  color: #ffd166;
  line-height: 1;
}

.hero-stat-label {
  display: block;
  color: rgba(255,255,255,0.82);
  font-size: 0.82rem;
  margin-top: 0.25rem;
}

.hero-image-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.hero-image-card img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}

.hero-card-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: var(--white);
  border-radius: var(--radius);
  padding: 0.85rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.hero-card-badge svg {
  color: var(--orange);
  width: 28px;
  height: 28px;
}

.hero-card-badge strong {
  display: block;
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text);
}

.hero-card-badge small {
  color: var(--text-muted);
  font-size: 0.78rem;
}

/* ---- Section Headers ---- */
.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--green-light);
  color: var(--green);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.35rem 1rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.section-title span { color: var(--green); }

.section-desc {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 580px;
  margin: 0 auto;
}

.divider-paw {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 1.25rem 0 0;
}

.divider-paw::before,
.divider-paw::after {
  content: '';
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--green));
  border-radius: 2px;
}

.divider-paw::after {
  background: linear-gradient(90deg, var(--green), transparent);
}

/* ---- Service Cards ---- */
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--green), var(--orange));
  opacity: 0;
  transition: opacity 0.25s;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(45,125,70,0.18);
  border-color: var(--green);
}

.service-card:hover::before {
  opacity: 1;
}

.service-icon {
  width: 60px;
  height: 60px;
  background: var(--green-light);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  flex-shrink: 0;
}

.service-icon svg {
  width: 30px;
  height: 30px;
  color: var(--green);
}

.service-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.6rem;
  color: var(--text);
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.92rem;
  flex: 1;
  margin: 0;
}

/* ---- Team Cards ---- */
.team-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: transform 0.25s, box-shadow 0.25s;
  text-align: center;
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(45,125,70,0.15);
}

.team-card-img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.team-card-body {
  padding: 1.5rem;
}

.team-card-body h3 {
  font-size: 1.15rem;
  margin-bottom: 0.2rem;
}

.team-card-body .role {
  color: var(--green);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.team-card-body p {
  color: var(--text-muted);
  font-size: 0.88rem;
  margin: 0;
}

/* ---- Feature Section ---- */
.feature-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);
  position: relative;
}

.feature-img-wrap img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.feature-badge {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: var(--orange);
  color: var(--white);
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  padding: 0.35rem 0.85rem;
  border-radius: 50px;
}

.feature-list {
  list-style: none;
  margin: 1.5rem 0;
  padding: 0;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
  font-size: 0.95rem;
}

.feature-list li svg {
  width: 20px;
  height: 20px;
  color: var(--green);
  flex-shrink: 0;
  margin-top: 2px;
}

/* ---- Info Box ---- */
.info-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.info-box h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.info-box h3 svg {
  color: var(--green);
  width: 22px;
  height: 22px;
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
}

.hours-table td {
  padding: 0.4rem 0;
  font-size: 0.9rem;
}

.hours-table td:last-child {
  text-align: right;
  font-weight: 600;
  color: var(--green);
}

/* ---- CTA Banner ---- */
.cta-banner {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: rgba(255,255,255,0.04);
  border-radius: 50%;
}

.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: 5%;
  width: 280px;
  height: 280px;
  background: rgba(232,131,42,0.12);
  border-radius: 50%;
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-banner h2 {
  color: var(--white);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
}

.cta-banner p {
  color: rgba(255,255,255,0.85);
  font-size: 1.05rem;
}

/* ---- Contact Info ---- */
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  margin-bottom: 1rem;
  transition: border-color 0.2s;
}

.contact-item:hover {
  border-color: var(--green);
}

.contact-item-icon {
  width: 44px;
  height: 44px;
  background: var(--green-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-item-icon svg {
  width: 22px;
  height: 22px;
  color: var(--green);
}

.contact-item-text strong {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-bottom: 0.2rem;
}

.contact-item-text a,
.contact-item-text span {
  color: var(--text);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
}

.contact-item-text a:hover {
  color: var(--green);
}

/* ---- Forms ---- */
.form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: 0 8px 40px rgba(45,125,70,0.1);
  border: 1px solid var(--border);
}

label {
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text);
  display: block;
  margin-bottom: 0.4rem;
}

input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  font-family: 'Open Sans', sans-serif;
  font-size: 0.95rem;
  color: var(--text);
  background: var(--bg);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  appearance: none;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
select:focus,
textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(45,125,70,0.12);
}

select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%232D7D46' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

textarea { resize: vertical; min-height: 120px; }

.form-group { margin-bottom: 1.25rem; }

.btn-submit {
  width: 100%;
  padding: 1rem;
  background: var(--orange);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.btn-submit:hover {
  background: var(--orange-dark);
  transform: translateY(-1px);
}

/* ---- Page Hero (inner pages) ---- */
.page-hero {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  padding: 5rem 0 4rem;
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  top: -40%;
  right: -5%;
  width: 350px;
  height: 350px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
}

.page-hero h1 {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 0.75rem;
}

.page-hero p {
  color: rgba(255,255,255,0.85);
  font-size: 1.1rem;
  margin: 0;
}

.breadcrumb-nav {
  margin-bottom: 1.25rem;
}

.breadcrumb-nav a {
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
  text-decoration: none;
}

.breadcrumb-nav a:hover { color: var(--white); }

.breadcrumb-nav span {
  color: rgba(255,255,255,0.5);
  margin: 0 0.5rem;
  font-size: 0.85rem;
}

.breadcrumb-nav .current {
  color: #ffd166;
  font-size: 0.85rem;
}

/* ---- Accordion / FAQ ---- */
.accordion-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
  overflow: hidden;
}

.accordion-item summary {
  padding: 1.1rem 1.25rem;
  cursor: pointer;
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--white);
  color: var(--text);
  transition: background 0.2s;
}

.accordion-item summary:hover { background: var(--green-light); }
.accordion-item summary::-webkit-details-marker { display: none; }

.accordion-item summary::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--green);
  font-weight: 400;
  transition: transform 0.2s;
}

.accordion-item[open] summary::after {
  transform: rotate(45deg);
}

.accordion-item p {
  padding: 1rem 1.25rem;
  margin: 0;
  background: var(--white);
  font-size: 0.93rem;
  color: var(--text-muted);
  border-top: 1px solid var(--border);
}

/* ---- Highlight Box ---- */
.highlight-box {
  background: var(--green-light);
  border-left: 4px solid var(--green);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
}

.highlight-box p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text);
}

.highlight-orange {
  background: var(--orange-light);
  border-left-color: var(--orange);
}

/* ---- Success / Thank You ---- */
.success-wrap {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 0;
}

.success-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 3.5rem 2.5rem;
  text-align: center;
  box-shadow: 0 10px 50px rgba(45,125,70,0.12);
  border: 1px solid var(--border);
  max-width: 560px;
  width: 100%;
}

.success-icon {
  width: 80px;
  height: 80px;
  background: var(--green-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.75rem;
}

.success-icon svg {
  width: 40px;
  height: 40px;
  color: var(--green);
}

.success-card h1 {
  font-size: 1.9rem;
  margin-bottom: 0.75rem;
  color: var(--green);
}

.success-card p {
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

/* ---- Legal Pages ---- */
.legal-content {
  max-width: 820px;
}

.legal-content h2 {
  font-size: 1.5rem;
  color: var(--green);
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--green-light);
}

.legal-content h3 {
  font-size: 1.15rem;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

.legal-content p,
.legal-content li {
  font-size: 0.94rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.legal-content ul,
.legal-content ol {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

/* ---- Paw Decoration ---- */
.paw-decor {
  position: absolute;
  opacity: 0.06;
  pointer-events: none;
}

/* ---- Stats bar ---- */
.stats-bar {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 2.5rem 0;
}

.stat-item {
  text-align: center;
  padding: 1rem;
}

.stat-number {
  display: block;
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  font-size: 2.25rem;
  color: var(--green);
  line-height: 1;
}

.stat-label {
  display: block;
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-top: 0.3rem;
}

/* ---- Testimonial ---- */
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 1rem;
  left: 1.5rem;
  font-size: 5rem;
  color: var(--green-light);
  font-family: serif;
  line-height: 1;
}

.testimonial-stars {
  color: var(--orange);
  margin-bottom: 0.75rem;
  margin-top: 2rem;
}

.testimonial-text {
  font-size: 0.95rem;
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 1.25rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  color: var(--green);
  font-size: 1rem;
  flex-shrink: 0;
}

.testimonial-author-info strong {
  display: block;
  font-size: 0.9rem;
  font-family: 'Quicksand', sans-serif;
}

.testimonial-author-info small {
  color: var(--text-muted);
  font-size: 0.78rem;
}

/* ---- Footer ---- */
.site-footer {
  background: #1a2b1e;
  color: rgba(255,255,255,0.8);
  padding: 4rem 0 0;
}

.footer-brand {
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1rem;
}

.footer-desc {
  font-size: 0.88rem;
  opacity: 0.75;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.footer-heading {
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: rgba(255,255,255,0.7);
  font-size: 0.88rem;
  text-decoration: none;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

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

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-bottom: 0.75rem;
  font-size: 0.88rem;
}

.footer-contact-item svg {
  width: 16px;
  height: 16px;
  color: var(--orange);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact-item a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
}

.footer-contact-item a:hover { color: var(--orange); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.5rem 0;
  margin-top: 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.footer-bottom p {
  margin: 0;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
}

.footer-legal-links {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.footer-legal-links a {
  color: rgba(255,255,255,0.5);
  font-size: 0.82rem;
  text-decoration: none;
  transition: color 0.2s;
}

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

/* ---- Responsive ---- */
@media screen and (max-width: 1023px) {
  .hero-parallax {
    min-height: auto;
    padding: 5rem 0 4rem;
  }
  .hero-bg { background-attachment: scroll; }
  .hero-image-card { display: none; }
  .hero-stats { gap: 1.5rem; }
}

@media screen and (max-width: 639px) {
  .section-pad { padding: 3.5rem 0; }
  .hero-title { font-size: 2rem; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .form-card { padding: 1.5rem; }
  .success-card { padding: 2rem 1.5rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-legal-links { justify-content: center; }
}

/* ---- Foundation overrides ---- */
.grid-container { max-width: 1200px; }
.callout { border-radius: var(--radius); }
.button { font-family: 'Quicksand', sans-serif; font-weight: 700; }
.menu .active > a { color: var(--green) !important; }
.off-canvas { background: var(--white); }
.off-canvas .menu a { color: var(--text); padding: 0.85rem 1.25rem; font-family: 'Quicksand', sans-serif; font-weight: 600; }
.off-canvas .menu a:hover { color: var(--green); background: var(--green-light); }
.close-button { color: var(--text); }
