/* ================================================================
   Hopespring Healthcare Ltd. — Shared Stylesheet
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;900&family=DM+Sans:wght@300;400;500;600&display=swap');

:root {
  --navy: #1a3a4a;
  --teal: #1d4d63;
  --green: #4caf1f;
  --green-light: #6dd630;
  --red: #cc2020;
  --white: #ffffff;
  --cream: #f7f9f6;
  --grey: #e8ede9;
  --text: #1a3a4a;
  --muted: #5a7a8a;
  --shadow: 0 8px 40px rgba(26, 58, 74, 0.12);
  --radius: 16px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; color: var(--text); background: var(--white); overflow-x: hidden; }

/* ── NAV ─────────────────────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; width: 100%;
  z-index: 1000;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(76,175,31,0.15);
  transition: box-shadow 0.3s;
}
nav.scrolled { box-shadow: 0 4px 24px rgba(26,58,74,0.1); }

.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 32px;
  display: flex; align-items: center; justify-content: space-between;
  height: 80px;
}
.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav-logo img { height: 85px; width: auto; }

.nav-links { display: flex; align-items: center; gap: 36px; list-style: none; }
.nav-links a {
  text-decoration: none; color: var(--teal); font-weight: 500;
  font-size: 0.95rem; letter-spacing: 0.02em;
  position: relative; transition: color 0.2s;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 2px; background: var(--green); transition: width 0.3s;
}
.nav-links a:hover { color: var(--green); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--green); }
.nav-links a.active::after { width: 100%; }

.nav-cta {
  background: var(--green); color: var(--white) !important;
  padding: 10px 24px; border-radius: 50px; font-weight: 600 !important;
  transition: background 0.2s, transform 0.2s !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--green-light) !important; transform: translateY(-1px); }
.nav-cta.active { background: var(--green-light) !important; }

.hamburger { display: none; cursor: pointer; flex-direction: column; gap: 5px; padding: 4px; }
.hamburger span { display: block; width: 26px; height: 2px; background: var(--navy); border-radius: 2px; transition: all 0.3s; }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

.mobile-menu {
  display: none; position: fixed; top: 80px; left: 0; width: 100%;
  background: white; padding: 24px 32px; box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  z-index: 999; flex-direction: column; gap: 20px;
  animation: slideDown 0.3s ease;
}
.mobile-menu.active { display: flex; }
.mobile-menu a {
  text-decoration: none; color: var(--teal); font-weight: 500;
  font-size: 1.05rem; padding: 8px 0; border-bottom: 1px solid var(--grey);
}
.mobile-menu a:last-child { border: none; }

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── PAGE HERO (inner pages) ─────────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, #0d2b38 0%, #1a3a4a 50%, #1d5c3e 100%);
  padding: 160px 0 90px;
  position: relative; overflow: hidden; text-align: center;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(76,175,31,0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(109,214,48,0.06) 0%, transparent 40%);
}
.page-hero-inner { position: relative; z-index: 2; max-width: 700px; margin: 0 auto; padding: 0 32px; }
.page-hero .section-label { color: var(--green-light); margin-bottom: 16px; }
.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 700;
  color: white; line-height: 1.2; margin-bottom: 16px;
}
.page-hero h1 span { color: var(--green-light); }
.page-hero p { color: rgba(255,255,255,0.7); font-size: 1.05rem; line-height: 1.8; }

/* ── HERO (home) ─────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #0d2b38 0%, #1a3a4a 50%, #1d5c3e 100%);
  position: relative; overflow: hidden;
  display: flex; align-items: center;
  padding-top: 80px;
}
.hero-bg-pattern {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(76,175,31,0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(109,214,48,0.06) 0%, transparent 40%),
    radial-gradient(circle at 60% 80%, rgba(29,77,99,0.4) 0%, transparent 50%);
}
.hero-circles { position: absolute; inset: 0; pointer-events: none; }
.hero-circle { position: absolute; border-radius: 50%; border: 1px solid rgba(76,175,31,0.15); animation: pulse 6s ease-in-out infinite; }
.hero-circle:nth-child(1) { width: 500px; height: 500px; top: -100px; right: -100px; animation-delay: 0s; }
.hero-circle:nth-child(2) { width: 350px; height: 350px; top: 50px; right: 50px; animation-delay: 1s; }
.hero-circle:nth-child(3) { width: 200px; height: 200px; top: 150px; right: 150px; animation-delay: 2s; }

@keyframes pulse {
  0%, 100% { opacity: 0.3; transform: scale(1); }
  50%       { opacity: 0.6; transform: scale(1.03); }
}

.hero-inner {
  max-width: 1200px; margin: 0 auto; padding: 80px 32px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
  align-items: center; position: relative; z-index: 2;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(76,175,31,0.15); border: 1px solid rgba(76,175,31,0.3);
  color: var(--green-light); padding: 8px 18px; border-radius: 50px;
  font-size: 0.82rem; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; margin-bottom: 24px;
  animation: fadeUp 0.8s ease both;
}
.hero-badge::before {
  content: ''; width: 8px; height: 8px;
  background: var(--green); border-radius: 50%; animation: blink 2s infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.3} }

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 4vw, 3.6rem); font-weight: 700;
  color: white; line-height: 1.15; margin-bottom: 20px;
  animation: fadeUp 0.8s 0.2s ease both;
}
.hero h1 span { color: var(--green-light); }
.hero p {
  color: rgba(255,255,255,0.75); font-size: 1.05rem; line-height: 1.8;
  margin-bottom: 36px; animation: fadeUp 0.8s 0.4s ease both;
}
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; animation: fadeUp 0.8s 0.6s ease both; }

.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--green); color: white; text-decoration: none;
  padding: 14px 30px; border-radius: 50px; font-weight: 600; font-size: 0.95rem;
  transition: all 0.3s; box-shadow: 0 4px 20px rgba(76,175,31,0.35);
}
.btn-primary:hover { background: var(--green-light); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(76,175,31,0.45); }

.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  border: 2px solid rgba(255,255,255,0.4); color: white; text-decoration: none;
  padding: 12px 28px; border-radius: 50px; font-weight: 500; font-size: 0.95rem;
  transition: all 0.3s;
}
.btn-outline:hover { border-color: white; background: rgba(255,255,255,0.08); }

.hero-card {
  background: rgba(255,255,255,0.07); backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.1); border-radius: 24px; padding: 40px;
  animation: fadeUp 0.8s 0.3s ease both;
}
.hero-stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.hero-stat {
  background: rgba(255,255,255,0.06); border-radius: 16px; padding: 24px;
  text-align: center; border: 1px solid rgba(255,255,255,0.08); transition: background 0.3s;
}
.hero-stat:hover { background: rgba(76,175,31,0.12); }
.hero-stat .num { font-family: 'Playfair Display', serif; font-size: 2.2rem; font-weight: 700; color: var(--green-light); display: block; }
.hero-stat .label { font-size: 0.82rem; color: rgba(255,255,255,0.65); margin-top: 4px; line-height: 1.4; }

.cqc-badge {
  margin-top: 24px; display: flex; align-items: center; gap: 14px;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px; padding: 16px 20px;
}
.cqc-icon {
  width: 48px; height: 48px; border-radius: 10px; background: var(--red);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  font-weight: 900; font-size: 0.75rem; color: white; letter-spacing: 0.05em;
}
.cqc-text { font-size: 0.82rem; color: rgba(255,255,255,0.7); line-height: 1.5; }
.cqc-text strong { color: white; display: block; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── SHARED SECTION ──────────────────────────────────────────── */
section { padding: 100px 0; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }

.section-label {
  display: inline-block; color: var(--green); font-size: 0.8rem;
  font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 12px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.9rem, 3vw, 2.8rem); font-weight: 700;
  color: var(--navy); line-height: 1.2; margin-bottom: 16px;
}
.section-sub { color: var(--muted); font-size: 1rem; line-height: 1.8; max-width: 580px; }

/* ── ABOUT ───────────────────────────────────────────────────── */
.about { background: var(--cream); }
.about-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }

.about-img-wrap {
  border-radius: 24px; overflow: hidden;
  background: linear-gradient(135deg, var(--navy) 0%, var(--teal) 100%);
  aspect-ratio: 4/3; display: flex; align-items: center; justify-content: center;
  position: relative;
}
.about-icon-scene { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.about-float {
  position: absolute; background: white; border-radius: 16px;
  padding: 14px 20px; box-shadow: var(--shadow); display: flex; align-items: center; gap: 10px;
}
.about-float-tl { top: -20px; left: -20px; }
.about-float-br { bottom: -20px; right: -20px; }
.about-float .dot { width: 36px; height: 36px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; }
.about-float .dot.green { background: rgba(76,175,31,0.1); }
.about-float .dot.red   { background: rgba(204,32,32,0.1); }
.about-float p { font-size: 0.8rem; color: var(--muted); }
.about-float strong { font-size: 0.95rem; color: var(--navy); display: block; }

.about-content .section-sub { max-width: none; margin-bottom: 32px; }
.value-list { list-style: none; display: flex; flex-direction: column; gap: 16px; }
.value-list li {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 16px 20px; background: white; border-radius: 12px;
  border-left: 3px solid var(--green); font-size: 0.95rem; color: var(--text); line-height: 1.6;
}
.value-list li span { font-size: 1.3rem; flex-shrink: 0; margin-top: 1px; }

/* ── TEAM ────────────────────────────────────────────────────── */
.team { background: white; }
.team-header { text-align: center; margin-bottom: 60px; }
.team-header .section-sub { margin: 0 auto; }
.team-layout {
  display: flex; align-items: center; justify-content: center;
  gap: 20px; flex-wrap: wrap; margin-top: 40px;
}
.team-member {
  background: var(--cream); border-radius: 20px; padding: 24px 16px;
  text-align: center; transition: all 0.4s; border: 1px solid transparent;
  flex: 1; min-width: 150px;
}
.team-member:hover { transform: translateY(-6px); background: white; box-shadow: var(--shadow); border-color: rgba(76,175,31,0.1); }
.team-img {
  width: 120px; height: 160px; border-radius: 12px; object-fit: cover;
  margin: 0 auto 16px; border: 4px solid white;
  box-shadow: 0 8px 24px rgba(26,58,74,0.1); transition: transform 0.4s;
}
.team-member:hover .team-img { transform: scale(1.05); }
.team-member h3 { font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.team-member p.role { font-size: 0.75rem; color: var(--green); font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; }

.team-member.ceo {
  background: linear-gradient(160deg, var(--navy) 0%, var(--teal) 100%);
  flex: 1.4; min-width: 240px; padding: 36px 20px;
  border: 2px solid rgba(76,175,31,0.4); margin: 0 10px;
}
.team-member.ceo:hover { background: linear-gradient(160deg, var(--navy) 0%, var(--teal) 100%); border-color: var(--green-light); box-shadow: 0 12px 32px rgba(26,58,74,0.3); }
.team-member.ceo .team-img { width: 180px; height: 240px; border-radius: 16px; border: 6px solid rgba(255,255,255,0.15); box-shadow: 0 12px 32px rgba(0,0,0,0.2); margin-bottom: 24px; }
.team-member.ceo h3 { color: white; font-size: 1.5rem; margin-bottom: 8px; }
.team-member.ceo p.role { color: var(--green-light); font-size: 0.9rem; }

/* ── SERVICES ────────────────────────────────────────────────── */
.services { background: white; }
.services-header { text-align: center; margin-bottom: 60px; }
.services-header .section-sub { margin: 0 auto; }
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }

.service-card {
  background: var(--cream); border-radius: 20px; padding: 36px 28px;
  transition: all 0.4s; position: relative; overflow: hidden;
  border: 1px solid transparent; cursor: default;
}
.service-card::before {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px; background: var(--green); transform: scaleX(0); transition: transform 0.4s;
}
.service-card:hover { transform: translateY(-6px); background: white; box-shadow: var(--shadow); border-color: rgba(76,175,31,0.1); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 64px; height: 64px; border-radius: 16px;
  background: linear-gradient(135deg, rgba(76,175,31,0.12), rgba(76,175,31,0.06));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; margin-bottom: 22px;
  border: 1px solid rgba(76,175,31,0.15); transition: background 0.3s;
}
.service-card:hover .service-icon { background: linear-gradient(135deg, rgba(76,175,31,0.2), rgba(76,175,31,0.1)); }
.service-card h3 { font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 700; color: var(--navy); margin-bottom: 12px; }
.service-card p { font-size: 0.92rem; color: var(--muted); line-height: 1.7; }

/* ── WHY US ──────────────────────────────────────────────────── */
.why { background: linear-gradient(135deg, #0d2b38 0%, #1a3a4a 100%); position: relative; overflow: hidden; }
.why::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 70% 50%, rgba(76,175,31,0.07) 0%, transparent 60%); }
.why-inner { position: relative; z-index: 2; }
.why-header { text-align: center; margin-bottom: 60px; }
.why-header .section-label { color: var(--green-light); }
.why-header .section-title { color: white; }
.why-header .section-sub { color: rgba(255,255,255,0.6); margin: 0 auto; }
.why-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.why-card {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px; padding: 32px 24px; text-align: center; transition: all 0.3s;
}
.why-card:hover { background: rgba(76,175,31,0.1); border-color: rgba(76,175,31,0.25); transform: translateY(-4px); }
.why-num { font-family: 'Playfair Display', serif; font-size: 3rem; font-weight: 900; color: rgba(76,175,31,0.25); line-height: 1; margin-bottom: 16px; }
.why-card h3 { color: white; font-size: 1.05rem; font-weight: 600; margin-bottom: 10px; }
.why-card p { color: rgba(255,255,255,0.55); font-size: 0.88rem; line-height: 1.7; }

/* ── CARE PLANS ──────────────────────────────────────────────── */
.plans { background: var(--cream); }
.plans-header { margin-bottom: 56px; }
.plans-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }

.plan-card { background: white; border-radius: 24px; padding: 40px 32px; border: 2px solid transparent; transition: all 0.4s; position: relative; }
.plan-card.featured { background: linear-gradient(160deg, var(--navy) 0%, var(--teal) 100%); border-color: var(--green); }
.plan-card:not(.featured):hover { border-color: var(--green); box-shadow: var(--shadow); transform: translateY(-4px); }

.plan-badge { display: inline-block; background: var(--green); color: white; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 5px 14px; border-radius: 50px; margin-bottom: 20px; }
.plan-card h3 { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 700; margin-bottom: 8px; }
.plan-card:not(.featured) h3 { color: var(--navy); }
.plan-card.featured h3 { color: white; }
.plan-card > p { font-size: 0.9rem; line-height: 1.7; margin-bottom: 24px; }
.plan-card:not(.featured) > p { color: var(--muted); }
.plan-card.featured > p { color: rgba(255,255,255,0.7); }

.plan-features { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.plan-features li { display: flex; align-items: center; gap: 10px; font-size: 0.88rem; }
.plan-card:not(.featured) .plan-features li { color: var(--text); }
.plan-card.featured .plan-features li { color: rgba(255,255,255,0.8); }
.plan-features li::before {
  content: '✓'; width: 22px; height: 22px; background: rgba(76,175,31,0.15);
  color: var(--green); border-radius: 50%; display: flex; align-items: center;
  justify-content: center; font-size: 0.75rem; font-weight: 700; flex-shrink: 0;
}
.plan-card.featured .plan-features li::before { background: rgba(76,175,31,0.25); color: var(--green-light); }

/* ── PROMISE ─────────────────────────────────────────────────── */
.promise { background: white; }
.promise-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.promise-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 40px; }
.p-stat { padding: 28px 24px; border-radius: 16px; border: 1px solid var(--grey); text-align: center; transition: all 0.3s; }
.p-stat:hover { border-color: var(--green); box-shadow: 0 4px 20px rgba(76,175,31,0.1); }
.p-stat .val { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700; color: var(--green); }
.p-stat .desc { font-size: 0.82rem; color: var(--muted); margin-top: 4px; }

.promise-visual { background: linear-gradient(160deg, var(--cream) 0%, white 100%); border-radius: 28px; padding: 48px 40px; border: 1px solid var(--grey); }
.promise-visual h3 { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 700; color: var(--navy); margin-bottom: 24px; }
.promise-list { list-style: none; display: flex; flex-direction: column; gap: 18px; }
.promise-list li { display: flex; align-items: flex-start; gap: 14px; }
.p-icon { width: 42px; height: 42px; flex-shrink: 0; border-radius: 12px; background: rgba(76,175,31,0.1); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; }
.p-text strong { font-size: 0.95rem; color: var(--navy); display: block; margin-bottom: 2px; }
.p-text span { font-size: 0.85rem; color: var(--muted); line-height: 1.5; }

/* ── CTA BAND ────────────────────────────────────────────────── */
.cta-band {
  background: linear-gradient(135deg, var(--green) 0%, #3a9a10 100%);
  padding: 80px 0; text-align: center; position: relative; overflow: hidden;
}
.cta-band::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(255,255,255,0.08) 0%, transparent 60%);
}
.cta-band-inner { position: relative; z-index: 2; max-width: 700px; margin: 0 auto; padding: 0 32px; }
.cta-band h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 700; color: white; margin-bottom: 16px; line-height: 1.25; }
.cta-band p { color: rgba(255,255,255,0.85); font-size: 1rem; line-height: 1.8; margin-bottom: 36px; }
.btn-white { display: inline-flex; align-items: center; gap: 8px; background: white; color: var(--green); text-decoration: none; padding: 14px 32px; border-radius: 50px; font-weight: 700; font-size: 0.95rem; transition: all 0.3s; box-shadow: 0 4px 20px rgba(0,0,0,0.15); }
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,0,0,0.2); }

/* ── CONTACT ─────────────────────────────────────────────────── */
.contact { background: linear-gradient(135deg, #0d2b38 0%, #1a3a4a 100%); position: relative; overflow: hidden; }
.contact::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 30% 70%, rgba(76,175,31,0.06) 0%, transparent 50%); }
.contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; position: relative; z-index: 2; }
.contact-info .section-label { color: var(--green-light); }
.contact-info .section-title { color: white; margin-bottom: 12px; }
.contact-info .section-sub { color: rgba(255,255,255,0.6); margin-bottom: 48px; }
.contact-cards { display: flex; flex-direction: column; gap: 20px; }
.contact-card {
  display: flex; align-items: flex-start; gap: 16px;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px; padding: 20px 24px; transition: all 0.3s;
}
.contact-card:hover { background: rgba(76,175,31,0.1); border-color: rgba(76,175,31,0.2); }
.c-icon { width: 44px; height: 44px; border-radius: 12px; background: rgba(76,175,31,0.15); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; }
.c-label { font-size: 0.75rem; color: rgba(255,255,255,0.45); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 4px; }
.c-val { color: white; font-size: 0.95rem; line-height: 1.6; }
.c-val a { color: var(--green-light); text-decoration: none; }
.c-val a:hover { text-decoration: underline; }

.contact-form { background: rgba(255,255,255,0.05); backdrop-filter: blur(20px); border: 1px solid rgba(255,255,255,0.1); border-radius: 24px; padding: 40px; }
.contact-form h3 { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 700; color: white; margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.82rem; font-weight: 600; color: rgba(255,255,255,0.6); margin-bottom: 8px; letter-spacing: 0.04em; text-transform: uppercase; }
.form-group input, .form-group select, .form-group textarea { width: 100%; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); border-radius: 10px; padding: 12px 16px; color: white; font-family: 'DM Sans', sans-serif; font-size: 0.95rem; outline: none; transition: border-color 0.3s; }
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(255,255,255,0.3); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--green); }
.form-group select option { background: var(--navy); }
.form-group textarea { resize: vertical; min-height: 110px; }
.btn-submit { width: 100%; background: var(--green); color: white; border: none; padding: 14px; border-radius: 10px; font-family: 'DM Sans', sans-serif; font-size: 1rem; font-weight: 600; cursor: pointer; transition: all 0.3s; letter-spacing: 0.02em; }
.btn-submit:hover { background: var(--green-light); transform: translateY(-2px); }
.form-success { display: none; text-align: center; padding: 20px; color: var(--green-light); font-size: 1rem; font-weight: 600; }

/* ── FOOTER ──────────────────────────────────────────────────── */
footer { background: #07171f; padding: 60px 0 28px; }
.footer-inner {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px;
  padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.08); margin-bottom: 28px;
}
.footer-brand img { height: 64px; width: auto; margin-bottom: 20px; }
.footer-brand p { color: rgba(255,255,255,0.45); font-size: 0.88rem; line-height: 1.8; margin-bottom: 20px; }
.footer-social { display: flex; gap: 12px; }
.social-btn {
  width: 38px; height: 38px; border-radius: 10px;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5); text-decoration: none; font-size: 0.95rem; transition: all 0.3s;
}
.social-btn:hover { background: var(--green); border-color: var(--green); color: white; }
.social-btn.facebook { background: #1877F2; border-color: #1877F2; color: white; }
.social-btn.facebook:hover { background: #166fe5; border-color: #166fe5; }
.social-btn.instagram { background: linear-gradient(45deg,#f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%); border-color: transparent; color: white; }
.social-btn.instagram:hover { filter: brightness(1.1); }
.social-btn.youtube { background: #FF0000; border-color: #FF0000; color: white; }
.social-btn.youtube:hover { background: #e60000; border-color: #e60000; }
.social-btn.tiktok { background: #000; border-color: #333; color: white; }
.social-btn.tiktok:hover { background: #222; border-color: #444; }

.footer-col h4 { color: white; font-size: 0.9rem; font-weight: 700; margin-bottom: 20px; letter-spacing: 0.04em; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { color: rgba(255,255,255,0.45); text-decoration: none; font-size: 0.88rem; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--green-light); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { color: rgba(255,255,255,0.3); font-size: 0.82rem; }
.footer-bottom a { color: var(--green); text-decoration: none; }

/* ── REVEAL ANIMATION ────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── BACK TO TOP ─────────────────────────────────────────────── */
.back-top {
  position: fixed; bottom: 32px; right: 32px;
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--green); color: white;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; box-shadow: 0 4px 20px rgba(76,175,31,0.4);
  opacity: 0; transform: translateY(10px); transition: all 0.3s;
  border: none; font-size: 1.2rem; z-index: 999;
}
.back-top.show { opacity: 1; transform: translateY(0); }
.back-top:hover { background: var(--green-light); transform: translateY(-3px); }

/* ── RESPONSIVE ──────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-card { max-width: 500px; }
  .about-inner, .promise-inner, .contact-inner { grid-template-columns: 1fr; gap: 48px; }
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .why-grid { grid-template-columns: repeat(2,1fr); }
  .plans-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .team-layout { justify-content: center; gap: 20px; }
  .team-member { min-width: calc(33.333% - 20px); }
  .team-member.ceo { min-width: 100%; order: -1; margin: 0 0 20px 0; max-width: 480px; }
}

@media (max-width: 768px) {
  section { padding: 70px 0; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .team-member { min-width: calc(50% - 20px); }
  .page-hero { padding: 130px 0 60px; }
}

@media (max-width: 500px) {
  .hero-buttons { flex-direction: column; }
  .team-member { min-width: 100%; }
}
