/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Palette */
  --white: #ffffff;
  --off-white: #fafbfa;
  --gray-50: #f5f6f5;
  --gray-100: #eaece9;
  --gray-200: #d5d8d3;
  --gray-300: #b0b5ad;
  --gray-400: #8a9085;
  --gray-500: #6b726a;
  --gray-600: #4a504a;
  --gray-700: #363b36;
  --gray-800: #252825;
  --gray-900: #1a1c1a;

  --sage: #7c9a8e;
  --sage-light: #a3bdb1;
  --sage-lighter: #dce8e2;
  --sage-dark: #5f7d72;
  --sage-darker: #4a6359;

  /* Typography */
  --font-primary: 'Inter', sans-serif;
  --font-display: 'Outfit', sans-serif;

  /* Spacing */
  --section-padding: 120px 0;
  --container-width: 1140px;

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.08);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-primary);
  color: var(--gray-700);
  background-color: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast);
}

ul {
  list-style: none;
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition: all var(--transition-base);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 14px 0;
  box-shadow: 0 1px 20px rgba(0, 0, 0, 0.05);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar__logo {
  display: flex;
  align-items: center;
}

.navbar__logo-img {
  height: 52px;
  width: auto;
  border-radius: 50%;
}

.navbar__links {
  display: flex;
  gap: 36px;
  align-items: center;
}

.navbar__links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-500);
  letter-spacing: 0.02em;
  position: relative;
  padding-bottom: 2px;
}

.navbar__links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--sage);
  transition: width var(--transition-base);
}

.navbar__links a:hover {
  color: var(--gray-800);
}

.navbar__links a:hover::after {
  width: 100%;
}

.navbar__cta {
  font-size: 0.85rem !important;
  font-weight: 500 !important;
  color: var(--white) !important;
  background: var(--sage);
  padding: 10px 24px;
  border-radius: 50px;
  transition: all var(--transition-fast) !important;
}

.navbar__cta::after {
  display: none !important;
}

.navbar__cta:hover {
  background: var(--sage-dark) !important;
  color: var(--white) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(124, 154, 142, 0.3);
}

/* Mobile Menu Toggle */
.navbar__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.navbar__toggle span {
  width: 22px;
  height: 2px;
  background: var(--gray-700);
  border-radius: 2px;
  transition: all var(--transition-fast);
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--off-white);
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding-top: 80px;
}

.hero__content {
  animation: fadeInUp 1s ease-out 0.2s both;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--sage-lighter);
  color: var(--sage-dark);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.hero__badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--sage);
  border-radius: 50%;
}

.hero__title {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--gray-900);
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.hero__title em {
  font-style: normal;
  color: var(--sage);
}

.hero__subtitle {
  font-size: 1.1rem;
  color: var(--gray-400);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 480px;
}

.hero__actions {
  display: flex;
  gap: 16px;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-primary);
  font-size: 0.95rem;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: all var(--transition-fast);
  border-radius: 50px;
}

.btn--primary {
  background: var(--sage);
  color: var(--white);
  padding: 16px 36px;
  box-shadow: 0 4px 20px rgba(124, 154, 142, 0.3);
}

.btn--primary:hover {
  background: var(--sage-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(124, 154, 142, 0.4);
}

.btn--outline {
  background: transparent;
  color: var(--gray-600);
  padding: 16px 36px;
  border: 1.5px solid var(--gray-200);
}

.btn--outline:hover {
  border-color: var(--sage-light);
  color: var(--sage-dark);
  background: var(--sage-lighter);
}

.hero__image {
  animation: scaleIn 1s ease-out 0.4s both;
  position: relative;
}

.hero__image img {
  border-radius: 24px;
  width: 200%;
  height: 900px;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}

.hero__image::after {
  content: '';
  position: absolute;
  top: -20px;
  right: -20px;
  width: 200px;
  height: 200px;
  border: 2px solid var(--sage-lighter);
  border-radius: 24px;
  z-index: -1;
}

/* Hero Stats */
.hero__stats {
  display: flex;
  gap: 40px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--gray-100);
}

.hero__stat h4 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--sage);
  letter-spacing: -0.02em;
}

.hero__stat p {
  font-size: 0.8rem;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 500;
  margin-top: 2px;
}

/* ===== SECTION COMMON ===== */
.section {
  padding: var(--section-padding);
}

.section--gray {
  background: var(--gray-50);
}

.section__header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 72px;
}

.section__label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 16px;
}

.section__title {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gray-900);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.section__desc {
  font-size: 1.05rem;
  color: var(--gray-400);
  line-height: 1.7;
}

/* ===== ABOUT ===== */
.about .container {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}

.about__image {
  position: relative;
}

.about__image img {
  border-radius: 20px;
  width: 100%;
  height: 500px;
  object-fit: cover;
  box-shadow: var(--shadow-md);
}

.about__image::before {
  content: '';
  position: absolute;
  bottom: -16px;
  left: -16px;
  width: 100px;
  height: 100px;
  background: var(--sage-lighter);
  border-radius: 20px;
  z-index: -1;
}

.about__content {
  padding: 20px 0;
}

.about__label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 16px;
}

.about__title {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--gray-900);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.about__text {
  color: var(--gray-500);
  line-height: 1.8;
  margin-bottom: 16px;
}

.about__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}

.about__feature {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: var(--gray-50);
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-600);
}

.about__feature-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--sage-lighter);
  color: var(--sage-dark);
  border-radius: 10px;
  font-size: 1rem;
  flex-shrink: 0;
}

/* ===== SERVICES ===== */
.services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--white);
  border-radius: 20px;
  padding: 36px 28px;
  border: 1px solid var(--gray-100);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--sage);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-base);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card__icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--sage-lighter);
  color: var(--sage-dark);
  border-radius: 14px;
  font-size: 1.4rem;
  margin-bottom: 24px;
  transition: all var(--transition-base);
}

.service-card:hover .service-card__icon {
  background: var(--sage);
  color: var(--white);
}

.service-card__title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--gray-800);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.service-card__desc {
  font-size: 0.9rem;
  color: var(--gray-400);
  line-height: 1.7;
}

/* ===== BOOKING ===== */
.booking {
  background: var(--off-white);
}

.booking__wrapper {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 60px;
  align-items: start;
}

.booking__calendly {
  background: var(--white);
  border-radius: 20px;
  padding: 8px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-100);
  overflow: hidden;
}

.booking__calendly .calendly-inline-widget {
  border-radius: 16px;
}

/* Contact Form */
.booking__form-wrapper {
  background: var(--white);
  border-radius: 20px;
  padding: 40px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
}

.booking__form-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--gray-800);
  margin-bottom: 8px;
}

.booking__form-desc {
  font-size: 0.9rem;
  color: var(--gray-400);
  margin-bottom: 28px;
  line-height: 1.6;
}

.form__group {
  margin-bottom: 18px;
}

.form__label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gray-600);
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}

.form__input,
.form__textarea {
  width: 100%;
  padding: 14px 18px;
  font-family: var(--font-primary);
  font-size: 0.9rem;
  color: var(--gray-700);
  background: var(--gray-50);
  border: 1.5px solid transparent;
  border-radius: 12px;
  transition: all var(--transition-fast);
  outline: none;
}

.form__input::placeholder,
.form__textarea::placeholder {
  color: var(--gray-300);
}

.form__input:focus,
.form__textarea:focus {
  background: var(--white);
  border-color: var(--sage-light);
  box-shadow: 0 0 0 4px rgba(124, 154, 142, 0.1);
}

.form__textarea {
  resize: vertical;
  min-height: 110px;
}

.form__checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 16px;
  margin-bottom: 24px;
}

.form__checkbox input[type="checkbox"] {
  margin-top: 4px;
  accent-color: var(--sage);
  width: 16px;
  height: 16px;
  cursor: pointer;
  flex-shrink: 0;
}

.form__checkbox label {
  font-size: 0.85rem;
  color: var(--gray-600);
  line-height: 1.5;
  cursor: pointer;
}

.form__checkbox label a {
  color: var(--sage);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

.form__checkbox label a:hover {
  color: var(--sage-dark);
}

.form__submit {
  width: 100%;
  padding: 16px;
  margin-top: 8px;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--gray-900);
  color: var(--gray-300);
  padding: 72px 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__logo-img {
  height: 72px;
  width: auto;
  margin-bottom: 20px;
  border-radius: 50%;
}

.footer__brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--gray-400);
  max-width: 280px;
}

.footer__col-title {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}

.footer__links li {
  margin-bottom: 12px;
}

.footer__links a {
  font-size: 0.9rem;
  color: var(--gray-400);
  transition: color var(--transition-fast);
}

.footer__links a:hover {
  color: var(--sage-light);
}

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 0.9rem;
  color: var(--gray-400);
}

.footer__contact-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  font-size: 0.9rem;
  flex-shrink: 0;
  color: var(--sage-light);
}

.footer__social {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.footer__social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  color: var(--gray-400);
  font-size: 1rem;
  transition: all var(--transition-fast);
}

.footer__social a:hover {
  background: var(--sage);
  color: var(--white);
  transform: translateY(-2px);
}

.footer__bottom {
  padding: 24px 0;
  text-align: center;
  font-size: 0.85rem;
  color: var(--gray-500);
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

.footer__legal-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer__legal-links a {
  color: var(--gray-400);
  transition: color var(--transition-fast);
}

.footer__legal-links a:hover {
  color: var(--sage-light);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }

  .hero__subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero__actions {
    justify-content: center;
  }

  .hero__stats {
    justify-content: center;
  }

  .hero__image {
    order: -1;
  }

  .hero__image img {
    height: 380px;
  }

  .hero__image::after {
    display: none;
  }

  .about .container {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about__image img {
    height: 380px;
  }

  .about__image::before {
    display: none;
  }

  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .booking__wrapper {
    grid-template-columns: 1fr;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 80px 0;
  }

  .navbar__links {
    display: none;
  }

  .navbar__toggle {
    display: flex;
  }

  .navbar__links.active {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    background: var(--white);
    padding: 24px;
    gap: 32px;
    z-index: 990;
  }

  .navbar__links.active a {
    font-size: 1.25rem;
  }

  .navbar__logo,
  .navbar__toggle {
    position: relative;
    z-index: 1000;
  }

  .navbar__toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .navbar__toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .navbar__toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .hero__title {
    font-size: 2.5rem;
  }

  .section__title {
    font-size: 2rem;
  }

  .about__title {
    font-size: 1.8rem;
  }

  .about__features {
    grid-template-columns: 1fr;
  }

  .services__grid {
    grid-template-columns: 1fr;
  }

  .hero__stats {
    gap: 24px;
    flex-wrap: wrap;
  }

  .hero__actions {
    flex-direction: column;
  }

  .footer__grid {
    grid-template-columns: 1fr;
  }
}