*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Lato', sans-serif; }

/* ════════════════════════════════
   TOP BAR
════════════════════════════════ */
.top-bar {
  background: #f5f0eb;
  padding: 8px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: #4a4a4a;
}

/* ════════════════════════════════
   NAVBAR
════════════════════════════════ */
.navbar {
  background: #fff;
  padding: 18px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #ede8e2;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo-text h2 { font-size: 20px; color: #4a8c82; font-family: 'Lato', sans-serif; font-weight: 700; }
.logo-text h2 span { color: #2c6b63; }
.logo-text p { font-size: 11px; color: #888; }
.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; font-size: 14px; color: #333; }
.nav-links li { cursor: pointer; transition: color 0.2s; }
.nav-links li:hover { color: #4a8c82; }
.social-icons { display: flex; gap: 8px; }
.social-icon {
  width: 32px; height: 32px; border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700; color: #fff; cursor: pointer;
}
.si-fb { background: #3b5998; }
.si-ig { background: #c13584; }
.si-yt { background: #c4302b; }

.mobile-menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(24, 69, 46, 0.2);
  background: #fff;
  border-radius: 10px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.mobile-menu-toggle span {
  width: 20px;
  height: 2px;
  background: #18452e;
  border-radius: 4px;
}

.mobile-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(9, 22, 16, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
  z-index: 120;
}

.mobile-drawer {
  position: fixed;
  left: 0;
  top: 0;
  width: min(86vw, 340px);
  height: 100vh;
  background: linear-gradient(180deg, #ffffff 0%, #f6f1e5 100%);
  border-right: 1px solid rgba(24, 69, 46, 0.14);
  transform: translateX(-105%);
  transition: transform 0.35s ease;
  z-index: 130;
  padding: 22px 20px 28px;
  display: flex;
  flex-direction: column;
}

.mobile-drawer.open {
  transform: translateX(0);
}

.mobile-drawer-overlay.open {
  opacity: 1;
  visibility: visible;
}

.mobile-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 24px;
}

.mobile-drawer-logo {
  width: 170px;
  height: auto;
}

.mobile-drawer-close {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  border: 1px solid rgba(24, 69, 46, 0.2);
  background: #fff;
  color: #18452e;
  font-size: 16px;
  cursor: pointer;
}

.mobile-drawer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mobile-drawer-links a {
  display: block;
  text-decoration: none;
  color: #18452e;
  font-weight: 700;
  font-size: 16px;
  padding: 12px 10px;
  border-radius: 8px;
}

.mobile-drawer-links a:hover {
  background: rgba(220, 164, 67, 0.2);
}

.mobile-drawer-contact {
  margin-top: 12px;
  padding-top: 18px;
  border-top: 1px solid rgba(24, 69, 46, 0.16);
  display: grid;
  gap: 8px;
}

.mobile-drawer-contact a {
  text-decoration: none;
  color: #18452e;
  font-size: 14px;
  font-weight: 700;
}

/* ════════════════════════════════
   HERO
════════════════════════════════ */
.hero {
  position: relative;
  width: 100%;
  height: 680px;
  overflow: hidden;
  background: #e8e0d5;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(232,224,213,0.97) 38%, rgba(232,224,213,0.6) 60%, rgba(232,224,213,0.1) 100%);
  z-index: 1;
}
.hero-img-wrap {
  position: absolute; right: 0; top: 0; width: 72%; height: 100%; z-index: 0;
}
.hero-photo-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #c9b99a 0%, #b5a080 30%, #a08060 60%, #8a6040 100%);
}
.hero-content {
  position: absolute; left: 60px; top: 50%; transform: translateY(-50%);
  z-index: 2; max-width: 540px;
}
.hero-tagline {
  font-family: 'Playfair Display', serif;
  font-style: italic; font-size: 17px; color: #5a5040; margin-bottom: 12px;
}
.hero-divider { width: 28px; height: 2px; background: #7a7060; margin-bottom: 24px; }
.hero-heading {
  font-family: 'Playfair Display', serif;
  font-size: 60px; font-weight: 700; color: #2a2520;
  line-height: 1.1; margin-bottom: 20px;
}
.hero-subtext {
  font-size: 15px; color: #5a5040; line-height: 1.7;
  margin-bottom: 36px; max-width: 420px;
}
.hero-btn {
  display: inline-block; padding: 14px 32px;
  background: #c87941; color: #fff;
  font-size: 14px; font-weight: 700; border: none;
  cursor: pointer; border-radius: 2px; transition: background 0.2s;
}
.hero-btn:hover { background: #b06835; }

/* ════════════════════════════════
   WHAT WE OFFER
════════════════════════════════ */
.offers-section {
  background: #f0ece3;
  padding: 70px 60px 80px;
  text-align: center;
}
.offers-subtitle {
  font-family: 'Playfair Display', serif;
  font-style: italic; font-size: 18px; color: #7ab3c0; margin-bottom: 16px;
}
.offers-heading {
  font-family: 'Playfair Display', serif;
  font-size: 52px; font-weight: 700; color: #2a2520;
  margin-bottom: 24px;
}
.offers-desc {
  font-size: 15px; color: #666;
  max-width: 660px; margin: 0 auto 48px; line-height: 1.7;
}
.cards-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; max-width: 1100px; margin: 0 auto;
}
.card {
  background: #fff; border-radius: 4px;
  padding: 48px 36px 40px;
  display: flex; flex-direction: column; align-items: center; text-align: center;
}
.card-icon-wrap {
  width: 100px; height: 100px; border-radius: 50%;
  background: #c8dfe6;
  display: flex; align-items: center; justify-content: center; margin-bottom: 28px;
}
.card-title {
  font-family: 'Playfair Display', serif;
  font-size: 22px; font-weight: 700; color: #2a2520; margin-bottom: 12px;
}
.card-divider { width: 28px; height: 2px; background: #b0c4c8; margin: 0 auto 18px; }
.card-text { font-size: 14px; color: #888; line-height: 1.7; margin-bottom: 36px; flex: 1; }
.card-btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 13px 28px; background: #c9867a; color: #fff;
  font-size: 13px; font-weight: 700; border: none;
  cursor: pointer; border-radius: 2px; width: 100%; justify-content: center;
  transition: background 0.2s;
}
.card-btn:hover { background: #b57468; }

/* ════════════════════════════════
   ABOUT US
════════════════════════════════ */
.about-section {
  background: #fff;
  padding: 80px 60px;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center; max-width: 1200px; margin: 0 auto;
}
.about-img-placeholder {
  width: 100%; height: 560px; border-radius: 4px;
  background: linear-gradient(135deg, #e8d8c4 0%, #c9b090 40%, #a88060 100%);
}
.about-subtitle {
  font-family: 'Playfair Display', serif;
  font-style: italic; font-size: 17px; color: #c9867a; margin-bottom: 18px;
}
.about-heading {
  font-family: 'Playfair Display', serif;
  font-size: 48px; font-weight: 700; color: #2a2520;
  line-height: 1.15; margin-bottom: 28px;
}
.about-desc { font-size: 15px; color: #555; line-height: 1.75; margin-bottom: 28px; }
.about-list { list-style: none; display: flex; flex-direction: column; gap: 16px; }
.about-list li { display: flex; align-items: flex-start; gap: 14px; font-size: 14.5px; color: #444; line-height: 1.6; }
.check { color: #7ab3a0; font-size: 16px; margin-top: 1px; flex-shrink: 0; }

/* ════════════════════════════════
   SERVICES SLIDER
════════════════════════════════ */
.services-section {
  background: #f0ece3;
  padding: 70px 0 80px;
  text-align: center;
  overflow: hidden;
}
.services-subtitle {
  font-family: 'Playfair Display', serif;
  font-style: italic; font-size: 18px; color: #7ab3c0; margin-bottom: 16px;
}
.services-heading {
  font-family: 'Playfair Display', serif;
  font-size: 52px; font-weight: 700; color: #2a2520;
  line-height: 1.15; margin-bottom: 18px;
}
.services-desc { font-size: 15px; color: #666; margin-bottom: 44px; }
.slider-wrapper { position: relative; display: flex; align-items: center; }
.arrow {
  position: absolute; top: 38%; z-index: 10;
  background: transparent; border: none;
  font-size: 36px; color: #888; cursor: pointer;
  padding: 8px 14px; user-select: none; transition: color 0.2s;
}
.arrow:hover { color: #333; }
.arrow-left { left: 10px; }
.arrow-right { right: 10px; }
.slider-track-outer { overflow: hidden; width: 100%; padding: 0 60px; }
.slider-track { display: flex; gap: 28px; transition: transform 0.4s ease; }
.service-card { flex: 0 0 calc(33.333% - 19px); text-align: left; }
.service-card-img {
  width: 100%; height: 240px; border-radius: 2px; margin-bottom: 20px; overflow: hidden;
}
.service-card-img-inner { width: 100%; height: 100%; }
.service-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 26px; font-weight: 700; color: #2a2520; margin-bottom: 12px;
}
.service-card p { font-size: 14px; color: #666; line-height: 1.7; margin-bottom: 28px; }
.service-btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 13px 24px; background: #c9867a; color: #fff;
  font-size: 13px; font-weight: 700; border: none;
  cursor: pointer; border-radius: 2px; transition: background 0.2s;
}
.service-btn:hover { background: #b57468; }

/* ════════════════════════════════
   CTA BANNER
════════════════════════════════ */
.cta-section {
  position: relative; width: 100%; height: 480px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; overflow: hidden;
}
.cta-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #8a9ea8 0%, #6a8090 40%, #9aacb4 100%);
  z-index: 0;
}
.cta-overlay { position: absolute; inset: 0; background: rgba(70,85,95,0.55); z-index: 1; }
.cta-content { position: relative; z-index: 2; max-width: 800px; padding: 0 40px; }
.cta-heading {
  font-family: 'Playfair Display', serif;
  font-size: 58px; font-weight: 700; color: #fff;
  line-height: 1.15; margin-bottom: 24px;
}
.cta-desc { font-size: 16px; color: rgba(255,255,255,0.88); margin-bottom: 36px; }
.cta-btn {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 15px 40px; background: #7ec8d8; color: #fff;
  font-size: 14px; font-weight: 700; border: none;
  cursor: pointer; border-radius: 2px; transition: background 0.2s;
}
.cta-btn:hover { background: #6ab8c8; }

/* ════════════════════════════════
   STEPS
════════════════════════════════ */
.steps-outer { background: #fff; }
.steps-section {
  padding: 80px 60px;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
  max-width: 1200px; margin: 0 auto;
}
.steps-img-placeholder {
  width: 100%; height: 540px; border-radius: 4px;
  background: linear-gradient(135deg, #e0cdb8 0%, #b89878 50%, #a08060 100%);
}
.steps-subtitle {
  font-family: 'Playfair Display', serif;
  font-style: italic; font-size: 17px; color: #c9867a; margin-bottom: 16px;
}
.steps-heading {
  font-family: 'Playfair Display', serif;
  font-size: 48px; font-weight: 700; color: #2a2520;
  line-height: 1.15; margin-bottom: 44px;
}
.steps-list { display: flex; flex-direction: column; gap: 36px; }
.step-item { display: flex; align-items: flex-start; gap: 22px; }
.step-num {
  flex-shrink: 0; width: 56px; height: 56px; border-radius: 50%;
  background: #c9867a; color: #fff;
  font-size: 15px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.step-title {
  font-family: 'Playfair Display', serif;
  font-size: 20px; font-weight: 700; color: #2a2520; margin-bottom: 8px;
}
.step-desc { font-size: 14px; color: #777; line-height: 1.75; }

/* ════════════════════════════════
   UNIQUE POINTS
════════════════════════════════ */
.unique-section { display: grid; grid-template-columns: 1fr 1fr; min-height: 520px; }
.unique-img {
  background: linear-gradient(135deg, #e8d8c4 0%, #b89878 60%, #907050 100%);
}
.unique-content {
  background: #c9867a; padding: 70px 60px;
  display: flex; flex-direction: column; justify-content: center;
}
.unique-subtitle {
  font-family: 'Playfair Display', serif;
  font-style: italic; font-size: 17px;
  color: rgba(255,255,255,0.85); margin-bottom: 18px;
}
.unique-heading {
  font-family: 'Playfair Display', serif;
  font-size: 46px; font-weight: 700; color: #fff;
  line-height: 1.15; margin-bottom: 22px;
}
.unique-desc { font-size: 14.5px; color: rgba(255,255,255,0.88); line-height: 1.75; margin-bottom: 30px; }
.unique-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.unique-list li {
  display: flex; align-items: center; gap: 12px;
  font-size: 14.5px; font-weight: 700; color: #fff;
}
.ck { color: rgba(255,255,255,0.8); font-size: 15px; }

/* ════════════════════════════════
   FAQ + CONTACT
════════════════════════════════ */
.faq-contact-section {
  background: #f0ece3; padding: 80px 60px;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: start;
}
.faq-label { font-size: 15px; color: #7ab3c0; margin-bottom: 14px; }
.faq-heading {
  font-family: 'Playfair Display', serif;
  font-size: 46px; font-weight: 700; color: #2a2520;
  line-height: 1.15; margin-bottom: 40px;
}
.faq-item { border-bottom: 1px solid #ccc; }
.faq-question {
  width: 100%; background: none; border: none;
  padding: 18px 0;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 15px; color: #333; cursor: pointer; text-align: left; gap: 12px;
  transition: color 0.2s;
}
.faq-question:hover { color: var(--brand-secondary); }
.faq-icon { font-size: 20px; color: #888; flex-shrink: 0; transition: transform 0.3s; }
.faq-answer {
  font-size: 14px; color: #666; line-height: 1.7;
  max-height: 0; overflow: hidden;
  transition: max-height 0.35s ease, padding 0.3s; padding: 0;
}
.faq-answer.open { max-height: 200px; padding-bottom: 16px; }
.faq-icon.open { transform: rotate(45deg); }
.contact-card { background: #fff; padding: 48px 44px; border-radius: 4px; }
.contact-label {
  font-family: 'Playfair Display', serif;
  font-style: italic; font-size: 15px; color: #7ab3c0;
  text-align: center; margin-bottom: 10px;
}
.contact-heading {
  font-family: 'Playfair Display', serif;
  font-size: 28px; font-weight: 700; color: #2a2520;
  text-align: center; margin-bottom: 8px;
}
.contact-sub { font-size: 14px; color: #888; text-align: center; margin-bottom: 28px; }
.contact-input {
  width: 100%; padding: 14px 16px;
  background: #f0ece3; border: none; border-radius: 2px;
  font-size: 14px; color: #555; margin-bottom: 14px; outline: none;
  transition: background 0.2s;
}
.contact-input::placeholder { color: #aaa; }
.contact-input:focus { background: #e8e0d5; }
.contact-btn {
  width: 100%; padding: 15px; background: #c9867a; color: #fff;
  font-size: 14px; font-weight: 700; border: none;
  border-radius: 2px; cursor: pointer; margin-top: 6px; transition: background 0.2s;
}
.contact-btn:hover { background: #b57468; }

/* ════════════════════════════════
   FOOTER
════════════════════════════════ */
.footer { background: #2d2d2d; padding: 60px 60px 0; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px; padding-bottom: 50px; border-bottom: 1px solid #444;
}
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 18px; }
.footer-logo-text h2 { font-size: 20px; font-weight: 700; color: #c9867a; }
.footer-logo-text h2 span { color: #fff; }
.footer-logo-text p { font-size: 11px; color: #aaa; }
.footer-desc { font-size: 13.5px; color: #aaa; line-height: 1.7; margin-bottom: 24px; }
.footer-socials { display: flex; gap: 10px; }
.footer-social {
  width: 36px; height: 36px; border: 1px solid #666; border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  color: #ccc; font-size: 13px; cursor: pointer; transition: all 0.2s;
}
.footer-social:hover { border-color: #c9867a; color: #c9867a; }
.footer-nav-col h4 { font-size: 13px; color: #fff; font-weight: 700; margin-bottom: 16px; text-transform: uppercase; letter-spacing: 0.5px; }
.footer-nav { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-nav li { font-size: 14px; color: #bbb; cursor: pointer; transition: color 0.2s; }
.footer-nav li:hover { color: #fff; }
.footer-sub-label { font-size: 13px; color: #fff; font-weight: 700; margin-bottom: 16px; text-transform: uppercase; letter-spacing: 0.5px; }
.footer-sub-input {
  width: 100%; padding: 13px 16px;
  background: #3a3a3a; border: none; border-radius: 2px;
  font-size: 14px; color: #ccc; margin-bottom: 10px; outline: none;
}
.footer-sub-input::placeholder { color: #777; }
.footer-sub-btn {
  width: 100%; padding: 13px; background: #7ab3c0; color: #fff;
  font-size: 14px; font-weight: 700; border: none; cursor: pointer;
  border-radius: 2px; transition: background 0.2s;
}
.footer-sub-btn:hover { background: #6aa3b0; }
.footer-bottom {
  padding: 20px 0; display: flex;
  justify-content: space-between; align-items: center;
}
.footer-bottom p { font-size: 13px; color: #888; }
.footer-bottom a { color: #7ab3c0; text-decoration: none; }
.footer-bottom a:hover { color: #fff; }

/* ========================================
   BRAND REFRESH + NEW SECTIONS
======================================== */
:root {
  --brand-main: #18452e;
  --brand-secondary: #dca443;
  --ink-900: #1b1f1d;
  --ink-700: #3d4a42;
  --ink-500: #5f6e64;
  --paper: #f7f3ea;
  --paper-2: #f2efe7;
  --white: #ffffff;
  --shadow-soft: 0 14px 40px rgba(24, 69, 46, 0.12);
}

body {
  color: var(--ink-900);
  background: linear-gradient(180deg, #f9f6ef 0%, #ffffff 30%);
}

.top-bar {
  background: #ebefe8;
  color: var(--brand-main);
  border-bottom: 1px solid rgba(24, 69, 46, 0.12);
}

.navbar {
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid rgba(24, 69, 46, 0.1);
  backdrop-filter: blur(6px);
}

.logo {
  gap: 14px;
}

.logo-img {
  width: 270px;
  max-width: 45vw;
  height: auto;
  display: block;
}

.logo-text {
  display: none;
}

.nav-links {
  color: var(--ink-700);
  font-weight: 700;
  letter-spacing: 0.2px;
}

.nav-links li:hover,
.nav-links li a:hover {
  color: var(--brand-main) !important;
}

.social-icon {
  border-radius: 999px;
}

.si-fb,
.si-ig,
.si-yt {
  background: var(--brand-main);
}

.hero {
  background: radial-gradient(circle at 10% 0%, #f5ead2 0%, #e8e0d5 55%, #d9d2c6 100%);
}

.hero-bg {
  background: linear-gradient(to right, rgba(245, 234, 210, 0.94) 35%, rgba(245, 234, 210, 0.55) 65%, rgba(245, 234, 210, 0.05) 100%);
}

.hero-tagline {
  color: var(--brand-main);
  min-height: 30px;
}

.hero-typewriter {
  display: inline-block;
  white-space: nowrap;
  border-right: 2px solid var(--brand-secondary);
  padding-right: 4px;
  animation: hero-caret-blink 0.8s step-end infinite;
}

@keyframes hero-caret-blink {
  0%, 100% { border-right-color: transparent; }
  50% { border-right-color: var(--brand-secondary); }
}

.hero-divider {
  background: var(--brand-secondary);
  width: 60px;
}

.hero-heading {
  color: var(--brand-main);
}

.hero-subtext {
  color: var(--ink-700);
}

.hero-btn,
.card-btn,
.service-btn,
.cta-btn,
.contact-btn,
.footer-sub-btn {
  background: var(--brand-main);
  color: #fff;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-btn-secondary {
  background: var(--brand-secondary);
  color: #1f1a0f;
  border: none;
}

.hero-btn-secondary:hover {
  background: #c99736;
  color: #1f1a0f;
}

.hero-btn:hover,
.card-btn:hover,
.service-btn:hover,
.cta-btn:hover,
.contact-btn:hover,
.footer-sub-btn:hover {
  background: #0f3523;
}

.about-wrap {
  background: #ffffff;
}

.about-section {
  padding-top: 88px;
}

.about-subtitle,
.steps-subtitle,
.faq-label,
.contact-label,
.services-subtitle,
.offers-subtitle,
.testimonials-subtitle,
.career-subtitle {
  color: var(--brand-secondary);
}

.about-heading,
.steps-heading,
.services-heading,
.offers-heading,
.faq-heading,
.contact-heading,
.testimonials-heading,
.career-heading {
  color: var(--brand-main);
}

.check,
.ck {
  color: var(--brand-secondary);
}

.offers-section {
  position: relative;
  background: linear-gradient(160deg, #f6f3ea 0%, #ece6d9 100%);
  padding: 88px 60px;
}

.offers-desc {
  color: var(--ink-500);
}

.mvv-grid {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.mvv-card {
  background: #fff;
  border: 1px solid rgba(24, 69, 46, 0.12);
  border-top: 6px solid var(--brand-main);
  border-radius: 16px;
  padding: 30px 28px;
  text-align: left;
  box-shadow: var(--shadow-soft);
}

.mvv-kicker {
  text-transform: uppercase;
  letter-spacing: 0.11em;
  font-weight: 700;
  font-size: 12px;
  color: var(--brand-secondary) !important;
  margin-bottom: 10px;
}

.mvv-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 30px;
  line-height: 1.1;
  color: var(--brand-main);
  margin-bottom: 14px;
}

.mvv-card p {
  color: var(--ink-700);
  line-height: 1.75;
  font-size: 15px;
}

.core-values {
  background: linear-gradient(170deg, #fff 0%, #f3efe3 100%);
}

.core-values ul {
  list-style: none;
  margin-top: 8px;
  display: grid;
  gap: 12px;
}

.core-values li {
  color: var(--ink-700);
  position: relative;
  padding-left: 20px;
  font-size: 14px;
  line-height: 1.6;
}

.core-values li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 99px;
  background: var(--brand-secondary);
  position: absolute;
  left: 0;
  top: 8px;
}

.services-section,
.faq-contact-section {
  background: var(--paper);
}

.services-desc,
.faq-answer,
.contact-sub,
.service-card p,
.step-desc {
  color: var(--ink-500);
}

.service-btn {
  border-radius: 999px;
  padding-inline: 20px;
  text-decoration: none;
}

.service-card {
  position: relative;
  flex: 0 0 calc(33.333% - 19px);
  text-align: left;
  background: linear-gradient(165deg, #ffffff 0%, #f8f4ea 100%);
  border: 1px solid rgba(24, 69, 46, 0.1);
  border-radius: 16px;
  padding: 14px 16px 22px;
  box-shadow: 0 10px 30px rgba(24, 69, 46, 0.08);
}

.service-card-img {
  width: 100%;
  height: 220px;
  border-radius: 12px;
  margin-bottom: 18px;
  overflow: hidden;
}

.service-card h3 {
  font-size: 25px;
  color: var(--brand-main);
}

.service-card p {
  margin-bottom: 22px;
}

.arrow {
  color: var(--brand-main);
}

.arrow:hover {
  color: #0f3523;
}

.cta-bg {
  background: linear-gradient(130deg, #153d29 0%, #18452e 50%, #2b6347 100%);
}

.cta-overlay {
  background: linear-gradient(180deg, rgba(9, 22, 16, 0.25) 0%, rgba(9, 22, 16, 0.55) 100%);
}

.cta-btn {
  background: var(--brand-secondary);
  color: #1f1a0f;
}

.cta-btn:hover {
  background: #c89a37;
}

.step-num {
  background: var(--brand-main);
}

.unique-content {
  background: var(--brand-main);
}

.unique-subtitle {
  color: rgba(220, 164, 67, 0.95);
  display: block;
  opacity: 1;
}

.testimonials-section {
  background: linear-gradient(180deg, #f9f7f4 0%, #fff 100%);
  padding: 100px 60px;
  text-align: center;
}

.testimonials-heading {
  font-family: 'Playfair Display', serif;
  font-size: 52px;
  font-weight: 700;
  color: #2a2520;
  margin-bottom: 14px;
}

.testimonials-subtitle {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 18px;
  color: #7ab3c0;
  margin-bottom: 12px;
}

.testimonial-slider-wrapper {
  position: relative;
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  align-items: center;
}

.testimonial-track-outer {
  width: 100%;
  overflow: hidden;
  padding: 0 46px;
  touch-action: pan-y;
  cursor: grab;
}

.testimonial-track {
  display: flex;
  gap: 24px;
  transition: transform 0.45s ease;
  will-change: transform;
}

.testimonial-arrow {
  position: absolute;
  top: 42%;
  border: none;
  background: rgba(24, 69, 46, 0.08);
  color: var(--brand-main);
  width: 42px;
  height: 42px;
  border-radius: 999px;
  font-size: 28px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
}

.testimonial-arrow-left {
  left: 0;
}

.testimonial-arrow-right {
  right: 0;
}

.testimonial-arrow:hover {
  background: rgba(24, 69, 46, 0.16);
}

.testimonials-grid,
.testimonial-track {
  max-width: 1120px;
  margin: 0 auto;
}

.testimonial-card {
  flex: 0 0 100%;
  background: transparent;
  border: none;
  border-radius: 0;
  text-align: center;
  padding: 54px 40px;
  box-shadow: none;
  position: relative;
}

.testimonial-card::before {
  content: '\"';
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 80px;
  color: rgba(122, 179, 192, 0.25);
  line-height: 1;
  margin-bottom: 16px;
  font-weight: 700;
}

.testimonial-text {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  line-height: 1.6;
  color: #2a2520;
  margin-bottom: 32px;
  font-style: italic;
  font-weight: 400;
}

.testimonial-meta {
  border-top: none;
  padding-top: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.testimonial-meta strong {
  display: block;
  color: #18452e;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 0;
}

.testimonial-meta span {
  color: #888;
  font-size: 14px;
  font-weight: 400;
}

.career-section {
  background: linear-gradient(130deg, #173f2b 0%, #1e5338 55%, #19472f 100%);
  padding: 70px 60px 82px;
}

.career-inner {
  max-width: 1000px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(220, 164, 67, 0.4);
  border-radius: 18px;
  padding: 42px;
}

.career-heading {
  color: #fff;
  font-family: 'Playfair Display', serif;
  font-size: 52px;
  line-height: 1.12;
  margin-bottom: 14px;
}

.career-text {
  color: rgba(255, 255, 255, 0.86);
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 24px;
}

.career-cta-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.career-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  background: var(--brand-secondary);
  color: #1f1a0f;
  font-weight: 700;
  border-radius: 999px;
  padding: 14px 28px;
}

.career-btn:hover {
  background: #c89a37;
}

.career-note {
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
}

.contact-input,
.footer-sub-input {
  border: 1px solid rgba(24, 69, 46, 0.08);
}

.contact-input:focus,
.footer-sub-input:focus {
  border-color: rgba(24, 69, 46, 0.3);
}

.footer {
  background: #132d21;
}

.footer-logo {
  align-items: flex-start;
}

.footer-logo-img {
  width: 240px;
  height: auto;
  background: #fff;
  border-radius: 10px;
  padding: 8px 10px;
}

.footer-logo-text {
  display: none;
}

.footer-sub-btn {
  background: var(--brand-secondary);
  color: #1f1a0f;
}

.footer-sub-btn:hover {
  background: #c89a37;
}

.footer-bottom a {
  color: var(--brand-secondary);
}

.footer-nav li a {
  color: #bbb;
  text-decoration: none;
}

.footer-nav li a:hover {
  color: #fff;
}

.scroll-actions {
  position: fixed;
  right: 18px;
  bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 120;
}

.phone-float-btn {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--brand-secondary);
  color: #1f1a0f;
  text-decoration: none;
  font-size: 20px;
  box-shadow: 0 0 0 rgba(220, 164, 67, 0.65);
  animation: phone-pop 1.3s ease-in-out infinite;
}

.phone-float-btn:hover {
  background: #c99736;
}

@keyframes phone-pop {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(220, 164, 67, 0.65);
  }
  70% {
    transform: scale(1.12);
    box-shadow: 0 0 0 14px rgba(220, 164, 67, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(220, 164, 67, 0);
  }
}

.scroll-action-btn {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: none;
  background: var(--brand-main);
  color: #fff;
  font-size: 19px;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.22);
  transition: opacity 0.25s ease, transform 0.25s ease, background 0.2s;
}

.scroll-action-btn.is-hidden {
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
}

.scroll-action-btn:hover {
  background: #0f3523;
}

.footer-contact-block {
  margin-top: 16px;
  margin-bottom: 22px;
  display: grid;
  gap: 8px;
}

.footer-contact-block p {
  font-size: 13.5px;
  line-height: 1.55;
  color: #d4d7d5;
}

.footer-contact-block strong {
  color: #fff;
}

@media (max-width: 1100px) {
  .navbar,
  .top-bar,
  .offers-section,
  .about-section,
  .steps-section,
  .faq-contact-section,
  .testimonials-section,
  .career-section,
  .footer {
    padding-left: 28px;
    padding-right: 28px;
  }

  .mvv-grid {
    grid-template-columns: 1fr;
  }

  .about-section,
  .steps-section,
  .faq-contact-section,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    height: auto;
    min-height: 640px;
  }

  .hero-content {
    position: relative;
    left: 0;
    top: auto;
    transform: none;
    padding: 80px 28px;
    max-width: 640px;
  }

  .hero-img-wrap {
    width: 100%;
    opacity: 0.35;
  }

  .hero-heading,
  .offers-heading,
  .services-heading,
  .steps-heading,
  .faq-heading,
  .testimonials-heading,
  .career-heading {
    font-size: 38px;
  }

  .slider-track-outer {
    padding: 0 20px;
  }

  .services-section .slider-track-outer {
    padding: 0 56px;
  }

  .services-section .arrow {
    top: 34%;
    width: 46px;
    height: 46px;
    border-radius: 999px;
    border: 1px solid rgba(24, 69, 46, 0.22);
    background: rgba(255, 255, 255, 0.96);
    color: #18452e;
    font-size: 30px;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    box-shadow: 0 8px 20px rgba(9, 22, 16, 0.2);
  }

  .services-section .arrow-left {
    left: 4px;
  }

  .services-section .arrow-right {
    right: 4px;
  }

  .services-section .arrow:hover {
    color: #0f3523;
    background: #fff;
  }

  .service-card {
    flex-basis: calc(100% - 4px);
  }

  .faq-contact-section {
    gap: 30px;
  }

  .contact-card {
    padding: 36px 30px;
  }

  .contact-input,
  .contact-btn {
    width: 100%;
    font-size: 15px;
    padding: 16px 18px;
  }

  .testimonials-section {
    padding: 80px 28px;
  }

  .testimonials-heading {
    font-size: 38px;
  }

  .testimonial-track-outer {
    padding: 0 56px;
  }

  .testimonial-card {
    flex-basis: 100%;
    padding: 40px 24px;
  }

  .testimonial-card::before {
    font-size: 60px;
    margin-bottom: 12px;
  }

  .testimonial-text {
    font-size: 22px;
    line-height: 1.5;
    margin-bottom: 24px;
  }

  .testimonial-arrow {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border: 1px solid rgba(24, 69, 46, 0.22);
    background: rgba(255, 255, 255, 0.96);
    color: #18452e;
    font-size: 28px;
    box-shadow: 0 8px 20px rgba(9, 22, 16, 0.2);
  }

  .testimonial-arrow-left {
    left: 4px;
  }

  .testimonial-arrow-right {
    right: 4px;
  }

  .testimonial-arrow:hover {
    background: #fff;
    color: #0f3523;
  }

  .logo-img {
    width: 220px;
    max-width: 56vw;
  }

  .nav-links {
    display: none;
  }

  .mobile-menu-toggle {
    display: inline-flex;
  }
}

@media (max-width: 640px) {
  .top-bar {
    padding-top: 10px;
    padding-bottom: 10px;
    flex-direction: column;
    gap: 6px;
    text-align: center;
  }

  .navbar {
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .logo-img {
    width: 190px;
    max-width: 64vw;
  }

  .hero-content {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .services-section .slider-track-outer {
    padding: 0 52px;
  }

  .services-section .arrow {
    width: 44px;
    height: 44px;
    font-size: 28px;
    top: 32%;
  }

  .testimonials-section {
    padding: 64px 20px;
  }

  .testimonials-heading {
    font-size: 32px;
    margin-bottom: 10px;
  }

  .testimonials-subtitle {
    font-size: 16px;
    margin-bottom: 8px;
  }

  .testimonial-track-outer {
    padding: 0 48px;
  }

  .testimonial-card {
    padding: 32px 16px;
  }

  .testimonial-card::before {
    font-size: 52px;
    margin-bottom: 10px;
  }

  .testimonial-text {
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 20px;
  }

  .testimonial-meta strong {
    font-size: 15px;
  }

  .testimonial-meta span {
    font-size: 13px;
  }

  .testimonial-arrow-left {
    left: 4px;
  }

  .testimonial-arrow-right {
    right: 4px;
  }

  .cta-section {
    height: auto;
    min-height: 100vh;
    padding: 56px 0;
  }

  .cta-content {
    padding: 34px 22px;
  }

  .hero-btn,
  .career-btn,
  .cta-btn {
    width: 100%;
  }

  .contact-card {
    padding: 30px 22px;
    border-radius: 12px;
  }

  .contact-input,
  .contact-btn {
    font-size: 15px;
    padding: 17px 16px;
  }

  .hero-cta-group {
    width: 100%;
  }

  .career-inner {
    padding: 28px;
  }

  .footer-logo-img {
    width: 200px;
  }

  .scroll-actions {
    right: 12px;
    bottom: 14px;
  }

  .phone-float-btn {
    width: 44px;
    height: 44px;
  }
}
