:root {
  --orange: #f28c28;
  --orange-dark: #d97706;
  --orange-soft: #fff3e4;

  --green: #7fa760;
  --green-dark: #4f6f3d;
  --green-soft: #f2f8ed;

  --cream: #fffaf3;
  --white: #ffffff;

  --grey-50: #fafafa;
  --grey-100: #f4f4f4;
  --grey-200: #e8e8e8;
  --grey-500: #6b7280;
  --grey-700: #4b5563;
  --grey-800: #2f2f2f;
  --grey-900: #1f1f1f;

  --danger: #c0392b;
  --danger-soft: #fdecec;

  --shadow-sm: 0 8px 22px rgba(31, 31, 31, 0.06);
  --shadow-md: 0 18px 45px rgba(31, 31, 31, 0.1);
  --shadow-lg: 0 28px 70px rgba(31, 31, 31, 0.14);

  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 30px;

  --container: 1180px;
  --transition: 0.25s ease;
}

/* Reset + Base */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  background-color: var(--white);
  color: var(--grey-800);
  line-height: 1.7;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font-family: inherit;
}

button:disabled,
.disabled-btn {
  opacity: 0.65;
  cursor: not-allowed;
}

.container {
  width: min(92%, var(--container));
  margin: 0 auto;
}

/* Top Bar */

.top-bar {
  background-color: var(--green-dark);
  color: var(--white);
  font-size: 0.88rem;
}

.top-bar-content {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.top-links {
  display: flex;
  align-items: center;
  gap: 18px;
}

.top-links a {
  opacity: 0.9;
  transition: var(--transition);
}

.top-links a:hover {
  opacity: 1;
  color: var(--orange-soft);
}

/* Navbar */

.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(232, 232, 232, 0.8);
}

.nav-content {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-logo,
.footer-logo {
  object-fit: contain;
  border-radius: 50%;
}

.brand-logo {
  width: 58px;
  height: 58px;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
  color: var(--grey-900);
  font-size: 0.95rem;
}

.brand-text span {
  color: var(--orange);
  font-weight: 700;
}

.brand-text strong {
  color: var(--green-dark);
  font-size: 1.05rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a {
  padding: 10px 13px;
  color: var(--grey-800);
  font-size: 0.96rem;
  font-weight: 600;
  border-radius: 999px;
  transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--orange-dark);
  background-color: var(--orange-soft);
}

.nav-login {
  border: 1px solid var(--grey-200);
}

.nav-cta {
  background-color: var(--orange) !important;
  color: var(--white) !important;
  box-shadow: 0 8px 20px rgba(242, 140, 40, 0.25);
}

.nav-cta:hover {
  background-color: var(--orange-dark) !important;
}

/* Mobile Menu */

.menu-toggle {
  width: 44px;
  height: 44px;
  display: none;
  border: 1px solid var(--grey-200);
  border-radius: 12px;
  background-color: var(--white);
  cursor: pointer;
}

.menu-toggle span {
  width: 21px;
  height: 2px;
  display: block;
  margin: 5px auto;
  background-color: var(--grey-900);
  border-radius: 999px;
  transition: var(--transition);
}

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

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

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

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.96rem;
  cursor: pointer;
  transition: var(--transition);
}

.btn-primary {
  background-color: var(--orange);
  color: var(--white);
  box-shadow: 0 12px 28px rgba(242, 140, 40, 0.28);
}

.btn-primary:hover {
  background-color: var(--orange-dark);
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: var(--green);
  color: var(--white);
  box-shadow: 0 12px 28px rgba(127, 167, 96, 0.22);
}

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

.btn-outline {
  background-color: var(--white);
  color: var(--green-dark);
  border-color: var(--green);
}

.btn-outline:hover {
  background-color: var(--green-soft);
  transform: translateY(-2px);
}

.full-btn {
  width: 100%;
}

/* Shared Typography */

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--orange-dark);
  font-weight: 900;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.eyebrow::before {
  content: "";
  width: 32px;
  height: 2px;
  background-color: var(--orange);
  border-radius: 999px;
}

.check-list {
  display: grid;
  gap: 12px;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  color: var(--grey-800);
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -1px;
  width: 21px;
  height: 21px;
  display: grid;
  place-items: center;
  background-color: var(--green-soft);
  color: var(--green-dark);
  font-size: 0.8rem;
  font-weight: 900;
  border-radius: 50%;
}

/* Hero */

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(70px, 8vw, 120px) 0;
  background:
    radial-gradient(circle at top left, rgba(242, 140, 40, 0.16), transparent 34%),
    radial-gradient(circle at bottom right, rgba(127, 167, 96, 0.18), transparent 32%),
    linear-gradient(135deg, #fffaf3 0%, #f7fbf2 100%);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: clamp(36px, 5vw, 70px);
}

.hero h1 {
  max-width: 720px;
  color: var(--grey-900);
  font-size: clamp(2.5rem, 6vw, 5.4rem);
  line-height: 0.98;
  letter-spacing: -0.06em;
  margin-bottom: 24px;
}

.hero h1 span {
  color: var(--green-dark);
}

.hero-description {
  max-width: 640px;
  color: var(--grey-500);
  font-size: clamp(1rem, 2vw, 1.18rem);
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.hero-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 42px;
  max-width: 680px;
}

.hero-highlights div {
  padding: 18px;
  background-color: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(232, 232, 232, 0.8);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.hero-highlights strong {
  display: block;
  color: var(--grey-900);
  font-size: 1rem;
}

.hero-highlights span {
  display: block;
  color: var(--grey-500);
  font-size: 0.9rem;
}

.hero-visual {
  display: grid;
  gap: 22px;
  justify-items: center;
}

.hero-image-card,
.main-card {
  width: min(100%, 430px);
}

.hero-image-card {
  min-height: 260px;
  overflow: hidden;
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(242, 140, 40, 0.12), rgba(127, 167, 96, 0.14)),
    var(--cream);
  box-shadow: var(--shadow-lg);
}

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

.nutrition-card {
  background-color: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(232, 232, 232, 0.9);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-lg);
}

.main-card {
  padding: clamp(28px, 4vw, 42px);
}

.card-icon {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  background-color: var(--orange-soft);
  border-radius: 22px;
  font-size: 2rem;
}

.main-card h3 {
  color: var(--grey-900);
  font-size: 1.6rem;
  line-height: 1.2;
  margin-bottom: 12px;
}

.main-card p {
  color: var(--grey-500);
  margin-bottom: 22px;
}

.hero-bg-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  opacity: 0.38;
}

.hero-shape-one {
  width: 360px;
  height: 360px;
  background-color: var(--orange);
  top: -170px;
  right: 12%;
}

.hero-shape-two {
  width: 260px;
  height: 260px;
  background-color: var(--green);
  bottom: -130px;
  left: 8%;
}

/* Sections */

.section,
.split-section {
  padding: clamp(70px, 8vw, 110px) 0;
}

.section-header {
  max-width: 760px;
  margin: 0 auto 48px;
  text-align: center;
}

.section-header h2 {
  color: var(--grey-900);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
  margin-bottom: 16px;
}

.section-header p {
  color: var(--grey-500);
  font-size: 1.05rem;
}

.section-action {
  display: flex;
  justify-content: center;
  margin-top: 38px;
}

.tinted-section {
  background:
    linear-gradient(135deg, rgba(242, 140, 40, 0.08), rgba(127, 167, 96, 0.11)),
    var(--grey-50);
}

.loading-text {
  grid-column: 1 / -1;
  text-align: center;
  color: var(--grey-500);
}

/* Cards + Process */

.cards-grid,
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.card,
.process-card {
  background-color: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.card {
  position: relative;
  overflow: hidden;
  min-height: 240px;
  padding: 28px;
  transition: var(--transition);
}

.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 28px;
  width: 60px;
  height: 4px;
  background-color: var(--orange);
  border-radius: 0 0 999px 999px;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.card h3,
.process-card h3 {
  color: var(--grey-900);
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.card h3 {
  margin-top: 18px;
}

.card p,
.process-card p {
  color: var(--grey-500);
}

.card-link {
  display: inline-flex;
  margin-top: 20px;
  color: var(--orange-dark);
  font-weight: 900;
}

.process-card {
  padding: 32px;
}

.process-card span {
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 22px;
  background-color: var(--green-soft);
  color: var(--green-dark);
  border-radius: 16px;
  font-weight: 900;
}

/* Split Section */

.split-section {
  background-color: var(--green-dark);
  color: var(--white);
}

.split-grid {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  align-items: center;
  gap: 45px;
}

.split-section .eyebrow {
  color: var(--orange-soft);
}

.split-section .eyebrow::before {
  background-color: var(--orange-soft);
}

.split-section h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin-bottom: 16px;
}

.split-section p {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 28px;
}

.info-panel {
  padding: 34px;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(18px);
}

.info-panel h3 {
  margin-bottom: 22px;
}

.info-panel .check-list li {
  color: var(--white);
}

.info-panel .check-list li::before {
  background-color: var(--orange-soft);
  color: var(--orange-dark);
}

/* Image Sections */

.image-frame {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  background:
    linear-gradient(135deg, rgba(242, 140, 40, 0.12), rgba(127, 167, 96, 0.14)),
    var(--cream);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.image-frame img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.image-fallback {
  display: none;
  min-height: inherit;
  place-items: center;
  text-align: center;
  padding: 30px;
  color: var(--green-dark);
  font-weight: 900;
  border: 2px dashed rgba(79, 111, 61, 0.35);
  border-radius: 24px;
  background-color: rgba(255, 255, 255, 0.65);
}

.image-missing .image-fallback {
  display: grid;
}

.hero-image-card .image-fallback {
  min-height: 260px;
}

.large-image {
  min-height: 460px;
}

.image-text-section {
  background-color: var(--white);
}

.image-text-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(32px, 5vw, 70px);
  align-items: center;
}

.image-text-grid h2 {
  color: var(--grey-900);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
  margin-bottom: 18px;
}

.image-text-grid p {
  color: var(--grey-500);
  font-size: 1.05rem;
  margin-bottom: 22px;
}

.image-text-grid .btn {
  margin-top: 28px;
}

/* Contact + Forms */

.contact-section {
  background-color: var(--cream);
}

.contact-grid,
.consultation-grid,
.feedback-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(32px, 5vw, 70px);
  align-items: start;
}

.contact-info h2,
.consultation-grid h2,
.feedback-info h2 {
  color: var(--grey-900);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
  margin-bottom: 16px;
}

.contact-info > p,
.consultation-grid p,
.feedback-info p {
  color: var(--grey-500);
  font-size: 1.05rem;
}

.contact-methods,
.consultation-info-list {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.contact-methods a,
.consultation-info-list div {
  padding: 18px;
  background-color: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.contact-methods a:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.contact-methods span,
.consultation-info-list strong {
  display: block;
  color: var(--orange-dark);
  font-weight: 900;
  font-size: 0.83rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.contact-methods strong {
  display: block;
  color: var(--grey-900);
  word-break: break-word;
}

.consultation-info-list span {
  color: var(--grey-500);
}

.form-card {
  padding: clamp(24px, 4vw, 38px);
  background-color: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.form-card h3 {
  color: var(--grey-900);
  font-size: 1.55rem;
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  color: var(--grey-900);
  font-weight: 800;
  margin-bottom: 8px;
  font-size: 0.92rem;
}

input,
textarea,
select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--grey-200);
  border-radius: 14px;
  outline: none;
  color: var(--grey-900);
  background-color: var(--grey-50);
  font-size: 0.98rem;
  transition: var(--transition);
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--orange);
  background-color: var(--white);
  box-shadow: 0 0 0 4px rgba(242, 140, 40, 0.12);
}

input:invalid,
textarea:invalid,
select:invalid {
  border-color: #e8b4a2;
}

input:focus:invalid,
textarea:focus:invalid,
select:focus:invalid {
  box-shadow: 0 0 0 4px rgba(232, 180, 162, 0.22);
}

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

.input-hint {
  display: block;
  margin-top: -8px;
  margin-bottom: 12px;
  color: var(--grey-500);
  font-size: 0.84rem;
}

.form-message {
  margin-top: 14px;
  font-weight: 800;
}

.success {
  color: var(--green-dark);
}

.error {
  color: var(--danger);
}

/* Footer */

.footer {
  background-color: var(--grey-900);
  color: var(--white);
  padding-top: 64px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.8fr 0.8fr 1fr;
  gap: 34px;
  padding-bottom: 44px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  font-weight: 900;
}

.footer-logo {
  width: 54px;
  height: 54px;
  background-color: var(--white);
}

.footer p {
  max-width: 360px;
  color: rgba(255, 255, 255, 0.7);
}

.footer h4 {
  margin-bottom: 16px;
  color: var(--orange-soft);
}

.footer a {
  display: block;
  width: fit-content;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.76);
  transition: var(--transition);
}

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

.footer-bottom {
  padding: 18px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.7);
}

/* Inner Pages */

.page-hero {
  padding: clamp(60px, 7vw, 95px) 0;
  background:
    radial-gradient(circle at top left, rgba(242, 140, 40, 0.16), transparent 32%),
    linear-gradient(135deg, #fffaf3, #f7fbf2);
}

.page-hero h1 {
  max-width: 800px;
  color: var(--grey-900);
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  line-height: 1;
  letter-spacing: -0.05em;
  margin-bottom: 18px;
}

.page-hero p {
  max-width: 700px;
  color: var(--grey-500);
  font-size: 1.1rem;
}

.page-content {
  padding: clamp(60px, 7vw, 95px) 0;
}

/* About Page */

.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: center;
  gap: clamp(36px, 5vw, 70px);
}

.about-image-card {
  background:
    linear-gradient(135deg, rgba(242, 140, 40, 0.14), rgba(127, 167, 96, 0.16)),
    var(--cream);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: var(--shadow-lg);
}

.image-placeholder {
  min-height: 430px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 30px;
  border: 2px dashed rgba(79, 111, 61, 0.35);
  border-radius: 24px;
  color: var(--green-dark);
  font-weight: 900;
  background-color: rgba(255, 255, 255, 0.65);
}

.about-text h2,
.about-closing h2 {
  color: var(--grey-900);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
  margin-bottom: 18px;
}

.about-text p,
.about-closing p {
  margin-bottom: 16px;
  color: var(--grey-500);
}

.about-text strong {
  color: var(--green-dark);
}

.about-closing {
  max-width: 820px;
  text-align: center;
}

.about-closing .btn {
  margin-top: 18px;
}

.light-panel {
  background-color: var(--white);
  color: var(--grey-800);
  border: 1px solid var(--grey-200);
  box-shadow: var(--shadow-md);
}

.light-panel h3 {
  color: var(--grey-900);
}

.light-panel .check-list li {
  color: var(--grey-800);
}

/* Clean Dynamic Services Page */

.service-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

.service-dynamic-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  min-height: 100%;
  background-color: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.service-dynamic-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.service-dynamic-image {
  width: 100%;
  height: 230px;
  overflow: hidden;
  background-color: var(--cream);
}

.service-dynamic-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-dynamic-content {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 26px;
}

.service-dynamic-labels {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 16px;
}

.service-dynamic-labels span,
.service-status {
  display: inline-flex;
  padding: 7px 11px;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.service-dynamic-labels span {
  background-color: var(--orange-soft);
  color: var(--orange-dark);
}

.service-status.available {
  background-color: var(--green-soft);
  color: var(--green-dark);
}

.service-status.coming-soon {
  background-color: #fff0d9;
  color: var(--orange-dark);
}

.service-status.unavailable {
  background-color: var(--danger-soft);
  color: var(--danger);
}

.service-dynamic-card h3 {
  color: var(--grey-900);
  font-size: 1.35rem;
  line-height: 1.2;
  margin-bottom: 12px;
}

.service-dynamic-card p {
  color: var(--grey-500);
  margin-bottom: 24px;
}

.service-dynamic-card .btn {
  margin-top: auto;
}

/* Auth Pages */

.auth-section {
  min-height: 80vh;
  padding: clamp(60px, 7vw, 100px) 0;
  background:
    radial-gradient(circle at top left, rgba(242, 140, 40, 0.14), transparent 34%),
    radial-gradient(circle at bottom right, rgba(127, 167, 96, 0.16), transparent 32%),
    linear-gradient(135deg, #fffaf3 0%, #f7fbf2 100%);
}

.auth-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: clamp(36px, 5vw, 70px);
  align-items: center;
}

.auth-info h1 {
  color: var(--grey-900);
  font-size: clamp(2.3rem, 5vw, 4.5rem);
  line-height: 1;
  letter-spacing: -0.05em;
  margin-bottom: 20px;
}

.auth-info p,
.forgot-info {
  color: var(--grey-500);
  font-size: 1.08rem;
  margin-bottom: 28px;
  max-width: 650px;
}

.auth-card {
  max-width: 520px;
  width: 100%;
  margin-left: auto;
}

.auth-card .btn + .btn {
  margin-top: 12px;
}

.auth-switch,
.auth-links {
  margin-top: 18px;
  text-align: center;
  color: var(--grey-500);
  font-weight: 700;
}

.auth-switch a,
.auth-links a {
  color: var(--orange-dark);
  font-weight: 900;
}

.auth-links {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.forgot-methods {
  margin-bottom: 22px;
}

.forgot-methods a {
  margin-bottom: 12px;
}

/* Dashboard Shared */

.nav-logout {
  padding: 10px 16px;
  border: none;
  border-radius: 999px;
  background-color: var(--orange);
  color: var(--white);
  font-weight: 800;
  cursor: pointer;
  transition: var(--transition);
}

.nav-logout:hover {
  background-color: var(--orange-dark);
}

.dashboard-grid,
.admin-dashboard-layout {
  display: grid;
  grid-template-columns: 330px 1fr;
  gap: clamp(28px, 4vw, 50px);
  align-items: start;
}

.dashboard-profile-card,
.admin-sidebar {
  position: sticky;
  top: 120px;
}

.dashboard-profile-card {
  padding: 30px;
  background-color: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.dashboard-profile-card h2 {
  color: var(--grey-900);
  font-size: 1.7rem;
  line-height: 1.2;
  margin-bottom: 22px;
}

.profile-info {
  display: grid;
  gap: 14px;
  margin-bottom: 26px;
}

.profile-info div {
  padding: 16px;
  background-color: var(--grey-50);
  border: 1px solid var(--grey-200);
  border-radius: 16px;
}

.profile-info span {
  display: block;
  color: var(--orange-dark);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.profile-info strong {
  display: block;
  color: var(--grey-900);
  word-break: break-word;
  margin-top: 4px;
}

.dashboard-profile-card .btn {
  margin-top: 12px;
}

.dashboard-main {
  display: grid;
  gap: 34px;
}

.dashboard-section {
  padding: clamp(24px, 4vw, 34px);
  background-color: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.dashboard-section-header,
.request-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.dashboard-section-header {
  margin-bottom: 24px;
}

.dashboard-section-header h2 {
  color: var(--grey-900);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  line-height: 1.1;
}

.dashboard-list {
  display: grid;
  gap: 16px;
}

.request-card {
  padding: 22px;
  background-color: var(--grey-50);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-md);
}

.request-card-header {
  margin-bottom: 12px;
}

.request-card h3 {
  color: var(--grey-900);
  font-size: 1.2rem;
}

.request-card p {
  color: var(--grey-500);
}

.request-meta,
.admin-action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.request-meta span {
  padding: 8px 12px;
  background-color: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: 999px;
  color: var(--grey-500);
  font-size: 0.88rem;
  font-weight: 700;
}

.status-badge {
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.status-pending {
  background-color: var(--orange-soft);
  color: var(--orange-dark);
}

.status-replied {
  background-color: var(--green-soft);
  color: var(--green-dark);
}

.status-cancelled {
  background-color: var(--danger-soft);
  color: var(--danger);
}

.reply-note {
  margin-top: 16px;
  padding: 14px 16px;
  background-color: var(--green-soft);
  border-left: 4px solid var(--green);
  border-radius: 14px;
  color: var(--green-dark) !important;
  font-weight: 800;
}

.empty-state {
  padding: 26px;
  text-align: center;
  background-color: var(--grey-50);
  border: 1px dashed var(--grey-200);
  border-radius: var(--radius-md);
}

.empty-state h3 {
  color: var(--grey-900);
  margin-bottom: 8px;
}

.empty-state p {
  color: var(--grey-500);
  margin-bottom: 18px;
}

.error-state {
  border-color: #f3b7b7;
  background-color: #fff5f5;
}

/* Admin */

.admin-stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.admin-stat-card {
  padding: 22px;
  background:
    linear-gradient(135deg, rgba(242, 140, 40, 0.08), rgba(127, 167, 96, 0.1)),
    var(--grey-50);
  border: 1px solid var(--grey-200);
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
}

.admin-stat-card span {
  display: block;
  color: var(--orange-dark);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.admin-stat-card strong {
  display: block;
  color: var(--grey-900);
  font-size: 2rem;
  line-height: 1;
  margin-top: 10px;
}

.admin-action-btn {
  padding: 9px 13px;
  border: none;
  border-radius: 999px;
  font-weight: 900;
  font-size: 0.82rem;
  cursor: pointer;
  transition: var(--transition);
}

.admin-action-btn.view {
  background-color: var(--grey-200);
  color: var(--grey-900);
}

.admin-action-btn.replied {
  background-color: var(--green);
  color: var(--white);
}

.admin-action-btn.pending {
  background-color: var(--orange-soft);
  color: var(--orange-dark);
}

.admin-action-btn.cancelled {
  background-color: var(--danger-soft);
  color: var(--danger);
}

.admin-action-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.admin-detail-list {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.admin-detail-list div {
  padding: 14px 16px;
  background-color: var(--grey-50);
  border: 1px solid var(--grey-200);
  border-radius: 14px;
}

.admin-detail-list span {
  display: block;
  color: var(--orange-dark);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.admin-detail-list strong {
  display: block;
  color: var(--grey-900);
  margin-top: 4px;
  white-space: pre-wrap;
  word-break: break-word;
}

.admin-blog-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(28px, 4vw, 50px);
  align-items: start;
}

.admin-blog-form {
  position: sticky;
  top: 120px;
}

.admin-blog-form textarea#blog_content {
  min-height: 220px;
}

.admin-blog-form textarea#blog_excerpt {
  min-height: 110px;
}

.admin-blog-list-section {
  min-width: 0;
}

/* Blog */

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.blog-card {
  overflow: hidden;
  background-color: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.blog-card-image,
.blog-full-image {
  width: 100%;
  overflow: hidden;
  background-color: var(--cream);
}

.blog-card-image {
  height: 220px;
}

.blog-full-image {
  height: 320px;
  border-radius: 22px;
  margin-bottom: 24px;
}

.blog-card-image img,
.blog-full-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-card-content {
  padding: 26px;
}

.blog-date {
  color: var(--orange-dark);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.blog-card h3 {
  color: var(--grey-900);
  font-size: 1.35rem;
  line-height: 1.2;
  margin-bottom: 12px;
}

.blog-card p,
.blog-full-content p {
  color: var(--grey-500);
}

.blog-read-btn {
  display: inline-flex;
  margin-top: 18px;
  border: none;
  background: transparent;
  color: var(--orange-dark);
  font-weight: 900;
  cursor: pointer;
  font-size: 0.95rem;
}

.blog-read-btn:hover {
  color: var(--green-dark);
}

.blog-modal-card {
  width: min(100%, 840px);
}

.blog-full-post h2 {
  color: var(--grey-900);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.04em;
  margin-bottom: 18px;
}

.blog-full-content p {
  margin-bottom: 16px;
  font-size: 1.02rem;
}

.blog-full-content ul,
.blog-full-content ol {
  padding-left: 22px;
  margin-bottom: 18px;
}

.blog-full-content li {
  margin-bottom: 8px;
}

/* Modal */

.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 22px;
  background-color: rgba(31, 31, 31, 0.58);
  backdrop-filter: blur(8px);
}

.modal-overlay.active {
  display: flex;
}

.modal-card {
  position: relative;
  width: min(100%, 620px);
  max-height: 92vh;
  overflow-y: auto;
  padding: clamp(24px, 4vw, 38px);
  background-color: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.modal-card h2 {
  color: var(--grey-900);
  font-size: clamp(1.8rem, 4vw, 2.7rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}

.modal-description {
  color: var(--grey-500);
  margin-bottom: 24px;
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 38px;
  height: 38px;
  border: none;
  border-radius: 50%;
  background-color: var(--orange-soft);
  color: var(--orange-dark);
  font-size: 1.5rem;
  font-weight: 900;
  cursor: pointer;
  transition: var(--transition);
}

.modal-close:hover {
  background-color: var(--orange);
  color: var(--white);
}

/* Coming Soon Plans Page */

.coming-soon-hero h1 {
  color: var(--grey-900);
  font-size: clamp(2.4rem, 5vw, 4.6rem);
  line-height: 1;
  letter-spacing: -0.05em;
  margin-bottom: 22px;
}

.coming-soon-list {
  margin-bottom: 28px;
}

/* Responsive */

@media (max-width: 1200px) {
  .service-card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .admin-stats-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 1050px) {
  .hero-grid,
  .split-grid,
  .contact-grid,
  .consultation-grid,
  .feedback-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    justify-items: start;
  }

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

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

@media (max-width: 1000px) {
  .admin-blog-grid {
    grid-template-columns: 1fr;
  }

  .admin-blog-form {
    position: static;
  }
}

@media (max-width: 950px) {
  .dashboard-grid,
  .admin-dashboard-layout {
    grid-template-columns: 1fr;
  }

  .dashboard-profile-card,
  .admin-sidebar {
    position: static;
  }
}

@media (max-width: 900px) {
  .about-grid,
  .image-text-grid,
  .reverse-grid {
    grid-template-columns: 1fr;
  }

  .service-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .large-image {
    min-height: 330px;
  }

  .image-placeholder {
    min-height: 300px;
  }
}

@media (max-width: 860px) {
  .top-bar-content {
    flex-direction: column;
    justify-content: center;
    padding: 10px 0;
    text-align: center;
  }

  .top-links {
    flex-wrap: wrap;
    justify-content: center;
  }

  .menu-toggle {
    display: block;
  }

  .nav-content {
    min-height: 76px;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 4%;
    right: 4%;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 18px;
    background-color: var(--white);
    border: 1px solid var(--grey-200);
    border-radius: 0 0 24px 24px;
    box-shadow: var(--shadow-lg);
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links a,
  .nav-logout {
    width: 100%;
    padding: 13px 14px;
    text-align: left;
  }

  .nav-cta {
    text-align: center;
  }

  .hero-highlights {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 650px) {
  .brand-logo {
    width: 48px;
    height: 48px;
  }

  .brand-text {
    font-size: 0.83rem;
  }

  .brand-text strong {
    font-size: 0.95rem;
  }

  .hero {
    padding-top: 55px;
  }

  .hero-actions {
    align-items: stretch;
  }

  .hero-actions .btn,
  .dashboard-section-header .btn {
    width: 100%;
  }

  .cards-grid,
  .process-grid,
  .blog-grid,
  .footer-grid,
  .admin-stats-grid,
  .service-card-grid {
    grid-template-columns: 1fr;
  }

  .card,
  .process-card,
  .form-card,
  .info-panel {
    border-radius: 22px;
  }

  .dashboard-section-header,
  .request-card-header {
    flex-direction: column;
  }

  .top-links {
    gap: 12px;
  }

  .blog-full-image {
    height: 230px;
  }
}

@media (max-width: 520px) {
  .image-frame,
  .large-image {
    min-height: 260px;
  }

  .hero-image-card,
  .hero-image-card img,
  .hero-image-card .image-fallback {
    min-height: 220px;
  }

  .about-closing {
    text-align: left;
  }
}

@media (max-width: 420px) {
  .container {
    width: min(94%, var(--container));
  }

  .brand-text {
    display: none;
  }

  .hero h1 {
    font-size: 2.45rem;
  }

  .section-header h2,
  .contact-info h2,
  .split-section h2 {
    font-size: 2rem;
  }

  .btn {
    padding-inline: 18px;
  }
}

/* Admin Image Upload */

.image-upload-box {
  display: grid;
  place-items: center;
  min-height: 150px;
  padding: 22px;
  text-align: center;
  background:
    linear-gradient(135deg, rgba(242, 140, 40, 0.08), rgba(127, 167, 96, 0.1)),
    var(--grey-50);
  border: 2px dashed rgba(79, 111, 61, 0.35);
  border-radius: 18px;
  cursor: pointer;
  transition: var(--transition);
}

.image-upload-box:hover,
.image-upload-box.drag-over {
  background-color: var(--orange-soft);
  border-color: var(--orange);
}

.image-upload-box strong {
  display: block;
  color: var(--grey-900);
  font-size: 0.98rem;
  margin-bottom: 6px;
}

.image-upload-box span {
  display: block;
  color: var(--grey-500);
  font-size: 0.86rem;
}

.admin-image-preview {
  width: 100%;
  max-height: 220px;
  margin: 14px 0;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid var(--grey-200);
}

/* Mobile Navbar Fix */

@media (max-width: 860px) {
  .navbar {
    z-index: 9999;
  }

  .nav-content {
    position: relative;
  }

  .menu-toggle {
    position: relative;
    z-index: 10001;
    display: block;
    touch-action: manipulation;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    z-index: 10000;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 18px;
    background-color: var(--white);
    border: 1px solid var(--grey-200);
    border-radius: 0 0 24px 24px;
    box-shadow: var(--shadow-lg);
  }

  .nav-links.active {
    display: flex !important;
  }

  .nav-links a {
    width: 100%;
    padding: 14px 16px;
  }

  body.nav-open {
    overflow-x: hidden;
  }
}

/* Strong Mobile Navbar Fix */

@media (max-width: 860px) {
  .navbar {
    z-index: 99999;
  }

  .nav-content {
    position: relative;
  }

  .menu-toggle {
    display: block !important;
    position: relative;
    z-index: 100001;
    touch-action: manipulation;
    pointer-events: auto;
  }

  .nav-links {
    position: fixed !important;
    top: 76px;
    left: 14px;
    right: 14px;
    z-index: 100000;
    display: none !important;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    max-height: calc(100vh - 96px);
    overflow-y: auto;
    padding: 18px;
    background-color: var(--white);
    border: 1px solid var(--grey-200);
    border-radius: 0 0 24px 24px;
    box-shadow: var(--shadow-lg);
  }

  .nav-links.active {
    display: flex !important;
  }

  .nav-links a {
    width: 100%;
    padding: 14px 16px;
  }

  body.nav-open {
    overflow: hidden;
  }
}