/* =======================================
   INNOVARE SPINE & WELLNESS — Main CSS
   ======================================= */

:root {
  --green: #6abf3e;
  --green-dark: #4e9a28;
  --teal: #2bbfc0;
  --teal-dark: #1d9a9b;
  --navy: #0d1b2a;
  --navy-mid: #162236;
  --cream: #f5f3ee;
  --cream-light: #faf9f6;
  --charcoal: #2c2c2c;
  --grey: #6b7280;
  --grey-light: #e5e7eb;
  --white: #ffffff;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --radius: 4px;
  --radius-lg: 12px;
  --shadow: 0 4px 24px rgba(13,27,42,.08);
  --shadow-lg: 0 12px 48px rgba(13,27,42,.16);
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
  --max-w: 1200px;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--charcoal); background: var(--white); line-height: 1.6; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* Typography */
h1, h2, h3, h4, h5 { font-family: var(--font-display); line-height: 1.15; }
h1 { font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 600; }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); font-weight: 600; }
h4 { font-size: 1rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; }
p { font-size: 1rem; line-height: 1.7; color: var(--grey); }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 30px; border-radius: 40px;
  font-family: var(--font-body); font-size: .9rem; font-weight: 600;
  letter-spacing: .03em; transition: var(--transition); white-space: nowrap;
}
.btn-primary { background: var(--green); color: var(--white); }
.btn-primary:hover { background: var(--green-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(106,191,62,.35); }
.btn-secondary { background: var(--teal); color: var(--white); }
.btn-secondary:hover { background: var(--teal-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(43,191,192,.35); }
.btn-outline { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,.6); }
.btn-outline:hover { background: var(--white); color: var(--navy); }
.btn-dark { background: var(--navy); color: var(--white); }
.btn-dark:hover { background: var(--navy-mid); transform: translateY(-2px); }
.btn-sm { padding: 10px 22px; font-size: .82rem; }

/* Layout */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section { padding: 90px 0; }
.section-sm { padding: 60px 0; }

/* Section Labels */
.section-label {
  display: inline-block; font-family: var(--font-body); font-size: .75rem;
  font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  color: var(--green); margin-bottom: 14px;
}
.section-title { margin-bottom: 20px; }
.section-title .accent { color: var(--green); }
.section-intro { max-width: 560px; margin-bottom: 40px; }

/* =======================================
   HEADER
   ======================================= */
.site-header {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 500;
  background: rgba(255,255,255,.96); backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,.06);
  transition: box-shadow 0.3s ease;
}
.site-header.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,.1); }

.header-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; gap: 32px; height: 76px;
}

.logo-link { flex-shrink: 0; }
.logo-img { height: 44px; width: auto; }

.main-nav { flex: 1; }
.main-nav ul { display: flex; align-items: center; gap: 32px; }
.main-nav a {
  font-size: .88rem; font-weight: 500; color: var(--charcoal);
  letter-spacing: .02em; position: relative; transition: color var(--transition);
}
.main-nav a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 2px; background: var(--green); transition: width var(--transition);
}
.main-nav a:hover, .main-nav a.active { color: var(--green); }
.main-nav a:hover::after, .main-nav a.active::after { width: 100%; }

.header-right { margin-left: auto; display: flex; align-items: center; gap: 20px; }
.header-phone { font-size: .88rem; font-weight: 600; color: var(--navy); transition: color var(--transition); }
.header-phone:hover { color: var(--green); }

/* Hamburger — hidden on desktop, shown on mobile */
.nav-toggle {
  display: none;
  flex-direction: column; justify-content: center; align-items: center; gap: 5px;
  width: 40px; height: 40px; padding: 8px;
  background: none; border: none; cursor: pointer;
  position: relative; z-index: 1200; flex-shrink: 0;
}
.nav-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--charcoal); border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease, background 0.3s ease;
  transform-origin: center;
}
.nav-toggle.open span { background: var(--white); }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile fullscreen overlay — lives OUTSIDE the header in the HTML */
.mobile-overlay {
  display: none;
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(13,27,42,0.97);
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}
.mobile-overlay.open {
  opacity: 1; visibility: visible; pointer-events: all;
}
.mobile-nav {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  height: 100%; padding: 90px 24px 40px;
}
.mobile-nav ul {
  display: flex; flex-direction: column;
  width: 100%; max-width: 340px; list-style: none; padding: 0; margin: 0;
}
.mobile-nav ul li { border-bottom: 1px solid rgba(255,255,255,.08); }
.mobile-nav ul li:first-child { border-top: 1px solid rgba(255,255,255,.08); }
.mobile-nav ul li a {
  display: block; padding: 18px 8px;
  font-family: var(--font-display); font-size: 1.6rem; font-weight: 600;
  color: rgba(255,255,255,.75); text-align: center;
  transition: color 0.2s ease, letter-spacing 0.2s ease;
}
.mobile-nav ul li a:hover,
.mobile-nav ul li a.active { color: var(--green); letter-spacing: .04em; }

.mobile-nav-cta {
  display: flex; flex-direction: column; align-items: center;
  gap: 16px; margin-top: 40px; width: 100%; max-width: 300px;
}
.mobile-phone-link {
  font-size: 1rem; font-weight: 600;
  color: rgba(255,255,255,.55); letter-spacing: .03em; transition: color 0.2s;
}
.mobile-phone-link:hover { color: var(--green); }
.mobile-nav-cta .btn { width: 100%; justify-content: center; }

/* Show hamburger + overlay on mobile */
@media (max-width: 900px) {
  .main-nav { display: none; }
  .header-right .btn { display: none; }
  .header-right .header-phone { display: none; }
  .nav-toggle { display: flex; }
  .mobile-overlay { display: block; }
}

/* =======================================
   HERO
   ======================================= */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  background: var(--navy); overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('https://seashell-dog-581931.hostingersite.com/wp-content/uploads/2026/05/wmremove-transformed.jpeg');
  background-size: cover; background-position: center right;
  opacity: .55;
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(13,27,42,.92) 38%, rgba(13,27,42,.4) 70%, transparent 100%);
}
.hero-content {
  position: relative; z-index: 2;
  max-width: var(--max-w); margin: 0 auto; padding: 120px 24px 80px;
  max-width: 640px; margin-left: max(24px, calc(50vw - 600px));
}
.hero-eyebrow {
  display: inline-block; font-size: .78rem; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase; color: var(--green);
  margin-bottom: 20px; border-left: 3px solid var(--green); padding-left: 12px;
}
.hero h1 {
  color: var(--white); font-size: clamp(2.8rem, 6vw, 5rem); margin-bottom: 8px;
  font-weight: 400; font-style: italic; line-height: 1.05;
}
.hero h1 strong { font-weight: 700; font-style: normal; display: block; }
.hero-subtitle {
  font-family: var(--font-display); font-size: 1.1rem; color: rgba(255,255,255,.7);
  letter-spacing: .12em; text-transform: uppercase; margin-bottom: 24px;
}
.hero-desc { color: rgba(255,255,255,.75); font-size: .95rem; margin-bottom: 36px; max-width: 480px; }
.hero-desc p { color: rgba(255,255,255,.75); }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 64px; }

/* Hero Stats */
.hero-stats {
  display: flex; gap: 48px; border-top: 1px solid rgba(255,255,255,.15); padding-top: 36px;
}
.stat-item { text-align: left; }
.stat-number {
  font-family: var(--font-display); font-size: 2.4rem; font-weight: 700;
  color: var(--white); line-height: 1;
}
.stat-number .accent { color: var(--green); }
.stat-label { font-size: .78rem; color: rgba(255,255,255,.6); letter-spacing: .06em; text-transform: uppercase; margin-top: 4px; }

/* Scroll indicator */
.scroll-indicator {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,.5); font-size: .72rem; letter-spacing: .1em; text-transform: uppercase;
  animation: bounce 2s infinite;
}
.scroll-indicator svg { animation: none; }
@keyframes bounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(8px)} }

/* =======================================
   CONDITIONS / SERVICES GRID
   ======================================= */
.conditions-section { background: var(--cream-light); }
.conditions-header {
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; margin-bottom: 60px;
}
.conditions-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.condition-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 32px; box-shadow: var(--shadow);
  border-bottom: 3px solid transparent;
  transition: var(--transition);
}
.condition-card:hover {
  transform: translateY(-4px); box-shadow: var(--shadow-lg);
  border-bottom-color: var(--green);
}
.condition-icon {
  width: 52px; height: 52px; background: linear-gradient(135deg, #e8f5e0, #d1edbb);
  border-radius: 12px; display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; font-size: 1.4rem;
}
.condition-card h3 { font-size: 1.2rem; margin-bottom: 10px; color: var(--navy); }
.condition-card p { font-size: .88rem; margin-bottom: 20px; }
.condition-card .learn-more {
  font-size: .82rem; font-weight: 600; color: var(--green); letter-spacing: .04em;
  display: inline-flex; align-items: center; gap: 6px; transition: gap var(--transition);
}
.condition-card .learn-more:hover { gap: 10px; }

/* =======================================
   WHY US / FEATURES
   ======================================= */
.why-section {
  background: var(--navy);
  position: relative; overflow: hidden;
}
.why-section::before {
  content: ''; position: absolute; right: -100px; top: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(106,191,62,.12) 0%, transparent 70%);
}
.why-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.why-text .section-title { color: var(--white); }
.why-text p { color: rgba(255,255,255,.65); }
.why-text .section-label { color: var(--green); }

.why-cards { display: flex; flex-direction: column; gap: 24px; }
.why-card {
  display: flex; gap: 20px; align-items: flex-start;
  background: rgba(255,255,255,.05); border-radius: var(--radius-lg);
  padding: 24px; border: 1px solid rgba(255,255,255,.08);
  transition: var(--transition);
}
.why-card:hover { background: rgba(255,255,255,.08); border-color: rgba(106,191,62,.3); }
.why-number {
  font-family: var(--font-display); font-size: 2rem; font-weight: 700;
  color: var(--green); line-height: 1; flex-shrink: 0; opacity: .8;
}
.why-card h3 { color: var(--white); font-size: 1.1rem; margin-bottom: 6px; }
.why-card p { font-size: .88rem; color: rgba(255,255,255,.6); }

/* =======================================
   CTA BANNER
   ======================================= */
.cta-banner {
  background: linear-gradient(135deg, var(--green) 0%, #3da828 100%);
  padding: 64px 0;
}
.cta-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 40px;
  flex-wrap: wrap;
}
.cta-text h2 { color: var(--white); font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 6px; }
.cta-text p { color: rgba(255,255,255,.85); }
.cta-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.cta-actions .btn-white {
  background: var(--white); color: var(--green); padding: 14px 30px;
  border-radius: 40px; font-weight: 700; font-size: .9rem;
  transition: var(--transition);
}
.cta-actions .btn-white:hover { background: var(--navy); color: var(--white); transform: translateY(-2px); }
.cta-actions .btn-outline-white {
  background: transparent; color: var(--white); padding: 14px 30px;
  border-radius: 40px; border: 2px solid rgba(255,255,255,.7); font-weight: 600; font-size: .9rem;
  transition: var(--transition);
}
.cta-actions .btn-outline-white:hover { background: rgba(255,255,255,.15); }

/* =======================================
   PAGE HERO (Inner Pages)
   ======================================= */
.page-hero {
  background: var(--navy); padding: 140px 0 80px; text-align: center;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(106,191,62,.08) 0%, transparent 60%);
}
.page-hero h1 { color: var(--white); position: relative; }
.page-hero p { color: rgba(255,255,255,.65); max-width: 560px; margin: 16px auto 0; font-size: 1.05rem; }
.breadcrumb {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  font-size: .82rem; color: rgba(255,255,255,.5); margin-bottom: 16px; position: relative;
}
.breadcrumb a { color: var(--green); transition: opacity var(--transition); }
.breadcrumb a:hover { opacity: .8; }
.breadcrumb span { color: rgba(255,255,255,.3); }

/* =======================================
   SERVICES PAGE
   ======================================= */
.service-section { padding: 80px 0; }
.service-section:nth-child(even) { background: var(--cream-light); }
.service-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.service-section:nth-child(even) .service-inner { direction: rtl; }
.service-section:nth-child(even) .service-content { direction: ltr; }
.service-section:nth-child(even) .service-image { direction: ltr; }
.service-image img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); width: 100%; height: 380px; object-fit: cover; }
.service-content h2 { color: var(--navy); margin-bottom: 16px; }
.service-content p { margin-bottom: 24px; }
.service-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.service-list li {
  display: flex; align-items: flex-start; gap: 12px; font-size: .9rem; color: var(--charcoal);
}
.service-list li::before {
  content: '✓'; color: var(--green); font-weight: 700; flex-shrink: 0;
  width: 20px; height: 20px; background: rgba(106,191,62,.12); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: .75rem;
  margin-top: 1px;
}

/* =======================================
   ABOUT PAGE
   ======================================= */
.about-intro { padding: 90px 0; }
.about-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.about-images { position: relative; height: 480px; }
.about-img-main {
  position: absolute; left: 0; top: 0; width: 70%; height: 80%;
  object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
}
.about-img-secondary {
  position: absolute; right: 0; bottom: 0; width: 55%; height: 55%;
  object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
  border: 4px solid var(--white);
}
.about-content h2 { color: var(--navy); margin-bottom: 20px; }
.about-list { margin: 24px 0 32px; display: flex; flex-direction: column; gap: 12px; }
.about-list li { display: flex; align-items: flex-start; gap: 12px; font-size: .9rem; }
.about-list li::before {
  content: ''; width: 6px; height: 6px; background: var(--green); border-radius: 50%; flex-shrink: 0; margin-top: 8px;
}

/* Values */
.values-section { background: var(--cream-light); }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 50px; }
.value-card {
  background: var(--white); padding: 36px 28px; border-radius: var(--radius-lg);
  box-shadow: var(--shadow); text-align: center; transition: var(--transition);
}
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.value-icon { font-size: 2rem; margin-bottom: 16px; }
.value-card h3 { color: var(--navy); margin-bottom: 10px; font-size: 1.2rem; }

/* =======================================
   CONTACT PAGE
   ======================================= */
.contact-section { padding: 90px 0; }
.contact-inner { display: grid; grid-template-columns: 1fr 1.3fr; gap: 60px; }
.contact-info h2 { color: var(--navy); margin-bottom: 16px; }
.contact-details { margin-top: 32px; display: flex; flex-direction: column; gap: 24px; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-item-icon {
  width: 44px; height: 44px; background: linear-gradient(135deg, #e8f5e0, #d1edbb);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 1.1rem;
}
.contact-item-text h4 { font-size: .85rem; color: var(--navy); margin-bottom: 4px; }
.contact-item-text a, .contact-item-text p { font-size: .9rem; color: var(--grey); }
.contact-item-text a:hover { color: var(--green); }

/* Contact Form */
.contact-form-wrap {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 40px; box-shadow: var(--shadow-lg);
}
.contact-form-wrap h3 { color: var(--navy); margin-bottom: 8px; }
.contact-form-wrap > p { font-size: .88rem; margin-bottom: 28px; }
.form-group { margin-bottom: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
label { display: block; font-size: .82rem; font-weight: 600; color: var(--charcoal); margin-bottom: 6px; letter-spacing: .02em; }
input[type="text"], input[type="email"], input[type="tel"], input[type="date"], select, textarea {
  width: 100%; padding: 12px 16px; border: 1.5px solid var(--grey-light);
  border-radius: var(--radius); font-family: var(--font-body); font-size: .9rem;
  color: var(--charcoal); background: var(--cream-light); transition: var(--transition);
  outline: none;
}
input:focus, select:focus, textarea:focus { border-color: var(--green); background: var(--white); box-shadow: 0 0 0 3px rgba(106,191,62,.15); }
textarea { min-height: 120px; resize: vertical; }
.form-submit { margin-top: 8px; }
.form-submit .btn { width: 100%; justify-content: center; }

/* Alert messages */
.alert {
  padding: 14px 18px; border-radius: var(--radius); margin-bottom: 20px;
  font-size: .88rem; font-weight: 500;
}
.alert-success { background: #d1fae5; color: #065f46; border: 1px solid #6ee7b7; }
.alert-error { background: #fee2e2; color: #991b1b; border: 1px solid #fca5a5; }

/* =======================================
   APPOINTMENT PAGE
   ======================================= */
.appointment-section { padding: 90px 0; background: var(--cream-light); }
.appointment-inner { display: grid; grid-template-columns: 1fr 1.4fr; gap: 60px; }
.appointment-form-wrap {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 40px; box-shadow: var(--shadow-lg);
}

/* Map embed */
.map-embed { margin-top: 32px; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.map-embed iframe { display: block; width: 100%; height: 280px; border: none; }

/* =======================================
   FOOTER
   ======================================= */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,.65);
  padding-top: 72px;
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px 56px;
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.4fr;
  gap: 48px;
}

/* Brand column */
.footer-brand .footer-logo {
  height: 54px;
  width: auto;
  margin-bottom: 20px;
  filter: brightness(0) invert(1);
  opacity: .9;
}

.footer-brand p {
  font-size: .85rem;
  line-height: 1.75;
  color: rgba(255,255,255,.5);
  max-width: 280px;
  margin-bottom: 24px;
}

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

.social-links a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.6);
  transition: var(--transition);
}

.social-links a:hover {
  background: var(--green);
  border-color: var(--green);
  color: var(--white);
  transform: translateY(-2px);
}

/* Footer columns */
.footer-col h4 {
  font-family: var(--font-body);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul li a {
  font-size: .85rem;
  color: rgba(255,255,255,.5);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-col ul li a::before {
  content: '';
  width: 4px;
  height: 4px;
  background: var(--green);
  border-radius: 50%;
  flex-shrink: 0;
  opacity: 0;
  transition: opacity var(--transition);
}

.footer-col ul li a:hover {
  color: var(--white);
  padding-left: 6px;
}

.footer-col ul li a:hover::before {
  opacity: 1;
}

/* Contact column */
.footer-contact h4 {
  font-family: var(--font-body);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.footer-contact p,
.footer-contact a {
  font-size: .85rem;
  color: rgba(255,255,255,.5);
  line-height: 1.6;
  transition: color var(--transition);
  display: block;
}

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

.footer-address {
  margin-bottom: 16px;
}

.contact-label {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--green);
  display: block;
  margin-bottom: 4px;
}

.footer-contact p + p { margin-top: 14px; }

/* Footer bottom bar */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 22px 24px;
  max-width: var(--max-w);
  margin: 0 auto;
}

.footer-bottom p {
  font-size: .78rem;
  color: rgba(255,255,255,.3);
  text-align: center;
  line-height: 1.5;
}

.footer-bottom a {
  color: rgba(255,255,255,.45);
  transition: color var(--transition);
}

.footer-bottom a:hover { color: var(--green); }

/* Footer mobile */
@media (max-width: 960px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
  .footer-brand p { max-width: 100%; }
}

@media (max-width: 600px) {
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-brand { grid-column: auto; }
}

/* =======================================
   SCROLL TO TOP
   ======================================= */
.scroll-top {
  position: fixed; bottom: 28px; right: 28px; z-index: 900;
  width: 44px; height: 44px; background: var(--navy); color: var(--white);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(13,27,42,.2); opacity: 0; pointer-events: none;
  transition: var(--transition);
}
.scroll-top.visible { opacity: 1; pointer-events: all; }
.scroll-top:hover { background: var(--green); transform: translateY(-3px); }

/* =======================================
@media (max-width: 600px) {
  .conditions-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-content { padding: 100px 24px 60px; margin-left: 0; }
}
