*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --green-50: #e1f5ee;
  --green-100: #9fe1cb;
  --green-400: #27334b;
  --green-600: #27334b;
  --green-800: #27334b;
  --green-900: #27334b;
  --blue-50: #e6f1fb;
  --blue-400: #378add;
  --blue-600: #185fa5;
  --amber-400: #ef9f27;
  --gray-50: #f1efe8;
  --gray-100: #d3d1c7;
  --gray-400: #888780;
  --gray-800: #444441;
  --white: #ffffff;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "poppins", sans-serif;
  color: #1a1a1a;
  background: #ffffff;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: "poppins", sans-serif;
}

/* ─── TOP BAR ─── */
.topbar {
  background: var(--green-900);
  color: var(--green-100);
  font-size: 13px;
  padding: 10px 0;
}
.topbar .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.topbar a {
  color: var(--green-100);
  text-decoration: none;
}
.topbar a:hover {
  color: #fff;
}
.topbar-right {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.topbar-right span {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ─── NAVBAR ─── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid #e8e8e8;
  padding: 0 24px;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.logo {
  font-family: "Syne", sans-serif;
  font-size: 26px;
  font-weight: 800;
  color: var(--green-600);
  text-decoration: none;
  letter-spacing: -1px;
}
.logo span {
  color: var(--amber-400);
}
.nav-links {
  display: flex;
  list-style: none;
  gap: 4px;
  align-items: center;
}
.nav-links a {
  text-decoration: none;
  color: #444;
  font-size: 14.5px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: background 0.2s, color 0.2s;
}
.nav-links a:hover {
  background: var(--green-50);
  color: var(--green-600);
}
.nav-cta {
  background: var(--green-600) !important;
  color: #fff !important;
  border-radius: 50px !important;
  padding: 10px 22px !important;
}
.nav-cta:hover {
  background: var(--green-800) !important;
}

/* ─── HERO ─── */
.hero {
  background: linear-gradient(
    135deg,
    var(--green-900) 0%,
    #576161 50%,
    #27334b 100%
  );
  color: #fff;
  padding: 100px 24px 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(29, 158, 117, 0.3) 0%,
    transparent 70%
  );
  border-radius: 50%;
}
.hero::after {
  content: "";
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(239, 159, 39, 0.15) 0%,
    transparent 70%
  );
  border-radius: 50%;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  padding: 6px 16px;
  font-size: 13px;
  color: var(--green-100);
  margin-bottom: 24px;
  backdrop-filter: blur(4px);
}
.hero-badge::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--amber-400);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.3);
  }
}
.hero h1 {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -1.5px;
}
.hero h1 em {
  font-style: normal;
  color: var(--amber-400);
}
.hero p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 480px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.btn-primary {
  background: var(--amber-400);
  color: #1a1a1a;
  font-weight: 700;
  font-family: "Syne", sans-serif;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: 50px;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  display: inline-block;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(239, 159, 39, 0.4);
}
.btn-outline {
  background: transparent;
  color: #fff;
  font-weight: 500;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: 50px;
  text-decoration: none;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  transition: background 0.2s, border-color 0.2s;
  display: inline-block;
}
.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.6);
}
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-xl);
  padding: 32px;
  width: 100%;
  max-width: 380px;
  backdrop-filter: blur(8px);
}
.hero-card-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 8px;
}
.hero-card-amount {
  font-family: "Syne", sans-serif;
  font-size: 42px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -2px;
  margin-bottom: 24px;
}
.hero-card-amount span {
  font-size: 20px;
  color: var(--green-100);
}
.hero-card-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 14px;
}
.hero-card-row .label {
  color: rgba(255, 255, 255, 0.55);
}
.hero-card-row .value {
  color: #fff;
  font-weight: 500;
}
.badge-success {
  background: rgba(29, 158, 117, 0.25);
  color: var(--green-100);
  border: 1px solid rgba(29, 158, 117, 0.4);
  border-radius: 50px;
  padding: 3px 10px;
  font-size: 12px;
  font-weight: 500;
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 24px;
}
.hero-stat {
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-sm);
  padding: 12px;
  text-align: center;
}
.hero-stat .num {
  font-family: "Syne", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--amber-400);
}
.hero-stat .lbl {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 2px;
}

/* ─── PARTNERS STRIP ─── */
.partners {
  background: var(--gray-50);
  padding: 28px 24px;
  text-align: center;
}
.partners p {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gray-400);
  margin-bottom: 20px;
  font-weight: 500;
}
.partners-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.partner-logo {
  font-family: "Syne", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--gray-400);
  opacity: 0.6;
  letter-spacing: -0.5px;
}

/* ─── SECTION COMMONS ─── */
section {
  padding: 80px 24px;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
}
.section-tag {
  display: inline-block;
  background: var(--green-50);
  color: var(--green-600);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.section-title {
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.15;
  color: #111;
  margin-bottom: 16px;
}
.section-sub {
  font-size: 17px;
  color: #666;
  line-height: 1.7;
  max-width: 540px;
}

/* ─── ABOUT ─── */
#about {
  background: #fff;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-visual {
  position: relative;
}
.about-big-card {
  background: var(--green-900);
  border-radius: var(--radius-xl);
  padding: 40px;
  color: #fff;
}
.about-big-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
}
.about-big-card p {
  color: var(--green-100);
  font-size: 14px;
  margin-bottom: 28px;
}
.progress-item {
  margin-bottom: 20px;
}
.progress-label {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.7);
}
.progress-label span:last-child {
  color: var(--green-100);
  font-weight: 600;
}
.progress-bar {
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  overflow: hidden;
}
.progress-fill {
  height: 100%;
  background: var(--amber-400);
  border-radius: 3px;
  transition: width 1s ease;
}
.about-float-card {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
  display: flex;
  align-items: center;
  gap: 14px;
}
.about-float-icon {
  width: 48px;
  height: 48px;
  background: var(--green-50);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}
.about-float-card p {
  font-size: 12px;
  color: #888;
  margin: 0;
}
.about-float-card strong {
  font-size: 16px;
  font-weight: 700;
  color: #111;
}
.checkmarks {
  list-style: none;
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.checkmarks li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: #444;
  line-height: 1.5;
}
.checkmarks li::before {
  content: "✓";
  width: 22px;
  height: 22px;
  background: var(--green-50);
  color: var(--green-600);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ─── SERVICES ─── */
#services {
  background: #f8f9fa;
}
.services-header {
  text-align: center;
  margin-bottom: 56px;
}
.services-header .section-sub {
  margin: 0 auto;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.service-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid #efefef;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
  cursor: default;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.09);
  border-color: var(--green-100);
}
.service-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 20px;
}
.service-card h3 {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #111;
}
.service-card p {
  font-size: 14.5px;
  color: #666;
  line-height: 1.7;
}

/* ─── PRICING ─── */
#pricing {
  background: #fff;
}
.pricing-header {
  text-align: center;
  margin-bottom: 56px;
}
.pricing-header .section-sub {
  margin: 0 auto;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}
.pricing-card {
  border-radius: var(--radius-lg);
  padding: 36px;
  border: 1.5px solid #efefef;
  position: relative;
}
.pricing-card.featured {
  background: var(--green-900);
  border-color: var(--green-900);
  color: #fff;
}
.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--amber-400);
  color: #1a1a1a;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 50px;
  white-space: nowrap;
}
.pricing-plan {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--green-600);
  margin-bottom: 12px;
}
.pricing-card.featured .pricing-plan {
  color: var(--green-100);
}
.pricing-amount {
  font-family: "Syne", sans-serif;
  font-size: 40px;
  font-weight: 800;
  color: #111;
  letter-spacing: -2px;
  margin-bottom: 4px;
}
.pricing-card.featured .pricing-amount {
  color: #fff;
}
.pricing-amount span {
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0;
}
.pricing-desc {
  font-size: 14px;
  color: #888;
  margin-bottom: 28px;
}
.pricing-card.featured .pricing-desc {
  color: rgba(255, 255, 255, 0.6);
}
.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}
.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14.5px;
  color: #444;
}
.pricing-card.featured .pricing-features li {
  color: rgba(255, 255, 255, 0.8);
}
.pricing-features li::before {
  content: "✓";
  width: 20px;
  height: 20px;
  background: var(--green-50);
  color: var(--green-600);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.pricing-card.featured .pricing-features li::before {
  background: rgba(255, 255, 255, 0.15);
  color: var(--green-100);
}
.pricing-btn {
  display: block;
  text-align: center;
  padding: 13px;
  border-radius: 50px;
  font-weight: 600;
  font-family: "Syne", sans-serif;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.2s;
  border: 1.5px solid var(--green-600);
  color: var(--green-600);
}
.pricing-btn:hover {
  background: var(--green-600);
  color: #fff;
}
.pricing-card.featured .pricing-btn {
  background: var(--amber-400);
  border-color: var(--amber-400);
  color: #1a1a1a;
}
.pricing-card.featured .pricing-btn:hover {
  background: #f5a615;
  border-color: #f5a615;
}

/* ─── APPOINTMENT ─── */
#appointment {
  background: linear-gradient(135deg, var(--green-900) 0%, #ef9f27 100%);
  color: #fff;
}
.appointment-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.appointment-left h2 {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 16px;
}
.appointment-left p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 32px;
}
.appointment-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.appointment-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.8);
}
.appointment-features li span {
  width: 24px;
  height: 24px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: var(--green-100);
  flex-shrink: 0;
}
.form-card {
  background: #fff;
  border-radius: var(--radius-xl);
  padding: 40px;
}
.form-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: #111;
  margin-bottom: 28px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  margin-bottom: 16px;
}
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: #555;
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid #e8e8e8;
  border-radius: var(--radius-sm);
  font-size: 14.5px;
  font-family: "DM Sans", sans-serif;
  color: #222;
  background: #fff;
  transition: border-color 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green-400);
}
.form-group textarea {
  resize: vertical;
  min-height: 100px;
}
.form-submit {
  width: 100%;
  padding: 14px;
  background: var(--green-600);
  color: #fff;
  border: none;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 700;
  font-family: "Syne", sans-serif;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  margin-top: 4px;
}
.form-submit:hover {
  background: var(--green-800);
  transform: translateY(-1px);
}

/* ─── FOOTER ─── */
footer {
  background: #0e0f0e;
  color: rgba(255, 255, 255, 0.65);
  padding: 60px 24px 32px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.footer-top {
  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: 32px;
}
.footer-brand .logo {
  color: #fff;
  display: block;
  margin-bottom: 14px;
}
.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  max-width: 260px;
}
.footer-contact {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-contact a {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  font-size: 14px;
}
.footer-contact a:hover {
  color: #fff;
}
.footer-col h5 {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 16px;
  letter-spacing: 0.3px;
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-col ul a {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}
.footer-col ul a:hover {
  color: #fff;
}
.opening-hours {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 13.5px;
}
.hours-row .day {
  color: rgba(255, 255, 255, 0.55);
}
.hours-row .time {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
}
.social-links {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.social-link {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 16px;
  transition: background 0.2s, color 0.2s;
}
.social-link:hover {
  background: var(--green-600);
  color: #fff;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.35);
}
.back-to-top {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  font-size: 18px;
  transition: background 0.2s, color 0.2s;
}
.back-to-top:hover {
  background: var(--green-600);
  color: #fff;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }
  .hero-visual {
    display: none;
  }
  .about-grid {
    grid-template-columns: 1fr;
  }
  .about-float-card {
    position: static;
    margin-top: 16px;
  }
  .appointment-inner {
    grid-template-columns: 1fr;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 600px) {
  .topbar-right {
    display: none;
  }
  .nav-links {
    display: none;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .footer-top {
    grid-template-columns: 1fr;
  }
}
