
/* ============ RESET & BASE ============ */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --walnut: #6B4423;
  --walnut-dark: #4a2f18;
  --walnut-light: #8b5a2b;
  --sage: #7A8F6B;
  --sage-dark: #5d6e52;
  --sage-light: #9bb08a;
  --cream: #FAF7F2;
  --stone: #6B7280;
  --stone-light: #9CA3AF;
  --sand: #E5D3B3;
  --sand-light: #f0e3cc;
  --white: #ffffff;
  --shadow-sm: 0 4px 20px rgba(107, 68, 35, 0.08);
  --shadow-md: 0 10px 40px rgba(107, 68, 35, 0.12);
  --shadow-lg: 0 20px 60px rgba(107, 68, 35, 0.18);
  --shadow-glow: 0 0 40px rgba(122, 143, 107, 0.25);
  --gradient-primary: linear-gradient(135deg, #6B4423 0%, #8b5a2b 100%);
  --gradient-sage: linear-gradient(135deg, #7A8F6B 0%, #9bb08a 100%);
  --gradient-sand: linear-gradient(135deg, #FAF7F2 0%, #E5D3B3 100%);
  --gradient-glow: linear-gradient(135deg, rgba(122, 143, 107, 0.15) 0%, rgba(107, 68, 35, 0.1) 100%);
  --glass-bg: rgba(255, 255, 255, 0.6);
  --glass-border: rgba(255, 255, 255, 0.3);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 30px;
  --radius-xl: 40px;
  --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.25s ease;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--stone);
  background: var(--cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.nav-menu li{
    margin-left:25px !important;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; font-family: inherit; }
ul { list-style: none; }

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

section {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}

/* ============ TYPOGRAPHY ============ */
h1, h2, h3, h4, h5, h6 {
  color: var(--walnut);
  font-weight: 700;
  line-height: 1.2;
}

h1 { font-size: clamp(40px, 6vw, 64px); font-weight: 700; }
h2 { font-size: clamp(32px, 4.5vw, 48px); font-weight: 700; }
h3 { font-size: clamp(24px, 3vw, 32px); font-weight: 600; }
h4 { font-size: 22px; font-weight: 600; }

.section-label {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--sage);
  background: rgba(122, 143, 107, 0.12);
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 20px;
}

.section-title {
  margin-bottom: 20px;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: 18px;
  color: var(--stone);
  max-width: 700px;
  margin: 0 auto 60px;
  text-align: center;
}

.section-header {
  text-align: center;
  margin-bottom: 70px;
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 50px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gradient-primary);
  color: var(--white);
  box-shadow: 0 10px 30px rgba(107, 68, 35, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(107, 68, 35, 0.4);
}

.btn-secondary {
  background: var(--white);
  color: var(--walnut);
  border: 2px solid var(--sand);
}

.btn-secondary:hover {
  background: var(--sand);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.btn-sage {
  background: var(--gradient-sage);
  color: var(--white);
  box-shadow: 0 10px 30px rgba(122, 143, 107, 0.35);
}

.btn-sage:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(122, 143, 107, 0.5);
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.6s;
}

.btn:hover::before { left: 100%; }

/* ============ FLOATING BACKGROUND ELEMENTS ============ */
.floating-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.4;
  pointer-events: none;
  z-index: 0;
}

.shape-1 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--sage-light), transparent);
  top: -100px;
  right: -100px;
  animation: float 15s ease-in-out infinite;
}

.shape-2 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, var(--sand), transparent);
  bottom: -50px;
  left: -50px;
  animation: float 20s ease-in-out infinite reverse;
}

.shape-3 {
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, var(--walnut-light), transparent);
  top: 50%;
  left: 50%;
  opacity: 0.2;
  animation: float 18s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(40px, -40px) scale(1.1); }
  66% { transform: translate(-30px, 30px) scale(0.95); }
}

@keyframes float-slow {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-30px) rotate(180deg); }
}

@keyframes float-icon {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 20px rgba(122, 143, 107, 0.3); }
  50% { box-shadow: 0 0 50px rgba(122, 143, 107, 0.6); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

/* ============ SCROLL REVEAL ============ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-left.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-right.active {
  opacity: 1;
  transform: translateX(0);
}

/* ============ NAVIGATION ============ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
  background: rgba(250, 247, 242, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.navbar.scrolled {
  padding: 12px 0;
  background: rgba(250, 247, 242, 0.95);
  box-shadow: var(--shadow-sm);
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 22px;
  font-weight: 700;
  color: var(--walnut);
  z-index: 1001;
}

.logo-icon {
  width: 48px;
  height: 48px;
  background: var(--gradient-primary);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 22px;
  box-shadow: 0 8px 20px rgba(107, 68, 35, 0.3);
  transition: var(--transition);
}

.logo:hover .logo-icon {
  transform: rotate(-8deg) scale(1.05);
}

.logo-text span {
  color: var(--sage);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-menu a {
  padding: 10px 18px;
  font-size: 16px;
  font-weight: 500;
  color: var(--stone);
  border-radius: 12px;
  transition: var(--transition-fast);
  position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--walnut);
  background: rgba(107, 68, 35, 0.06);
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--sage);
  transition: var(--transition-fast);
  transform: translateX(-50%);
}

.nav-menu a:hover::after { width: 50%; }

.nav-cta {
  padding: 12px 28px !important;
  background: var(--gradient-primary) !important;
  color: var(--white) !important;
  border-radius: 50px !important;
  box-shadow: 0 8px 20px rgba(107, 68, 35, 0.25);
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(107, 68, 35, 0.35) !important;
  background: var(--gradient-primary) !important;
}

.nav-cta::after { display: none; }

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  z-index: 1001;
  padding: 8px;
}

.menu-toggle span {
  width: 28px;
  height: 3px;
  background: var(--walnut);
  border-radius: 3px;
  transition: var(--transition);
}

.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(7px, -7px); }

/* ============ HERO SECTION ============ */
.hero {
  min-height: 100vh;
  padding: 140px 0 80px;
  background: var(--gradient-sand);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(122, 143, 107, 0.15), transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(107, 68, 35, 0.1), transparent 50%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  color: var(--walnut);
  margin-bottom: 24px;
  animation: fadeInUp 0.8s ease;
}

.hero-badge i {
  color: var(--sage);
  animation: float-icon 3s ease-in-out infinite;
}

.hero-title {
  font-size: clamp(38px, 5.5vw, 64px);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 24px;
  color: var(--walnut);
  animation: fadeInUp 0.8s ease 0.1s backwards;
}

.hero-title .highlight {
  background: var(--gradient-sage);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  display: inline-block;
}

.hero-title .highlight::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 8px;
  background: var(--sand);
  border-radius: 10px;
  z-index: -1;
  opacity: 0.6;
}

.hero-desc {
  font-size: 19px;
  color: var(--stone);
  margin-bottom: 36px;
  max-width: 540px;
  animation: fadeInUp 0.8s ease 0.2s backwards;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 50px;
  animation: fadeInUp 0.8s ease 0.3s backwards;
}

.hero-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.4s backwards;
}

.hero-stat {
  display: flex;
  flex-direction: column;
}

.hero-stat-num {
  font-size: 36px;
  font-weight: 700;
  color: var(--walnut);
  line-height: 1;
}

.hero-stat-num span { color: var(--sage); }

.hero-stat-label {
  font-size: 14px;
  color: var(--stone);
  margin-top: 4px;
}

.hero-image {
  position: relative;
  animation: fadeInRight 1s ease 0.3s backwards;
}

.hero-image-main {
  width: 100%;
  height: 560px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.hero-image-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-float-card {
  position: absolute;
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  box-shadow: var(--shadow-md);
  animation: float-icon 4s ease-in-out infinite;
}

.hero-card-1 {
  top: 30px;
  left: -30px;
  display: flex;
  align-items: center;
  gap: 14px;
  animation-delay: 0s;
}

.hero-card-2 {
  bottom: 50px;
  right: -20px;
  animation-delay: 1s;
}

.hero-card-3 {
  top: 50%;
  right: -40px;
  animation-delay: 2s;
}

.hero-card-icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: var(--gradient-sage);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 20px;
}

.hero-card-title {
  font-size: 14px;
  color: var(--stone);
}

.hero-card-value {
  font-size: 18px;
  font-weight: 700;
  color: var(--walnut);
}

.hero-rating {
  display: flex;
  gap: 3px;
  color: #f5b942;
  font-size: 14px;
  margin-top: 4px;
}

/* ============ ABOUT SECTION ============ */
.about {
  background: var(--cream);
  position: relative;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image {
  position: relative;
}

.about-img-main {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
  height: 520px;
}

.about-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.about-img-main:hover img { transform: scale(1.05); }

.about-img-secondary {
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 220px;
  height: 220px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 8px solid var(--cream);
}

.about-img-secondary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-experience {
  position: absolute;
  top: -30px;
  left: -30px;
  background: var(--gradient-primary);
  color: var(--white);
  padding: 24px 30px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  text-align: center;
  animation: float-icon 5s ease-in-out infinite;
}

.about-experience-num {
  font-size: 48px;
  font-weight: 700;
  line-height: 1;
}

.about-experience-label {
  font-size: 14px;
  opacity: 0.9;
  margin-top: 4px;
}

.about-content h2 {
  margin-bottom: 24px;
}

.about-desc {
  font-size: 17px;
  margin-bottom: 30px;
}

.about-vmv {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 30px;
}

.vmv-card {
  padding: 24px;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--sand-light);
  transition: var(--transition);
}

.vmv-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--sage-light);
}

.vmv-icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: var(--gradient-sage);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 20px;
  margin-bottom: 14px;
}

.vmv-card h4 {
  font-size: 18px;
  margin-bottom: 8px;
}

.vmv-card p {
  font-size: 14px;
  color: var(--stone);
  line-height: 1.6;
}

.about-values {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.value-tag {
  padding: 8px 18px;
  background: var(--sand-light);
  color: var(--walnut);
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  transition: var(--transition);
}

.value-tag:hover {
  background: var(--sage);
  color: var(--white);
  transform: translateY(-3px);
}

/* ============ MILESTONES SECTION ============ */
.milestones {
  background: var(--gradient-primary);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.milestones::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(122, 143, 107, 0.3), transparent 40%),
    radial-gradient(circle at 80% 50%, rgba(229, 211, 179, 0.2), transparent 40%);
}

.milestones .container { position: relative; z-index: 2; }

.milestones .section-label {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
}

.milestones .section-title {
  background: linear-gradient(135deg, #ffffff 0%, #E5D3B3 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.milestones .section-subtitle {
  color: rgba(255, 255, 255, 0.85);
}

.milestones-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.milestone-card {
  text-align: center;
  padding: 40px 24px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.milestone-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.milestone-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  background: var(--gradient-sage);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--white);
  box-shadow: 0 10px 30px rgba(122, 143, 107, 0.4);
}

.milestone-num {
  font-size: 52px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 8px;
  color: var(--white);
}

.milestone-label {
  font-size: 15px;
  opacity: 0.9;
  letter-spacing: 1px;
}

/* ============ FEATURES SECTION ============ */
.features {
  background: var(--cream);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.feature-card {
  padding: 40px 32px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--sand-light);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-sage);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: var(--sage-light);
}

.feature-card:hover::before { transform: scaleX(1); }

.feature-icon {
  width: 70px;
  height: 70px;
  border-radius: 20px;
  background: var(--gradient-sand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--walnut);
  margin-bottom: 24px;
  transition: var(--transition);
}

.feature-card:hover .feature-icon {
  background: var(--gradient-sage);
  color: var(--white);
  transform: rotate(-8deg) scale(1.1);
}

.feature-card h3 {
  font-size: 22px;
  margin-bottom: 14px;
}

.feature-card p {
  font-size: 16px;
  color: var(--stone);
}

/* ============ PROCESS SECTION ============ */
.process {
  background: var(--sand-light);
  position: relative;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  position: relative;
}

.process-step {
  text-align: center;
  padding: 40px 24px;
  background: var(--white);
  border-radius: var(--radius-lg);
  position: relative;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.process-step:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.process-num {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  box-shadow: 0 10px 25px rgba(107, 68, 35, 0.3);
}

.process-icon {
  width: 80px;
  height: 80px;
  margin: 20px auto 24px;
  background: var(--gradient-sage);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: var(--white);
  box-shadow: 0 10px 30px rgba(122, 143, 107, 0.3);
}

.process-step h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.process-step p {
  font-size: 15px;
  color: var(--stone);
}

/* ============ SERVICES SECTION ============ */
.services {
  background: var(--cream);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid var(--sand-light);
  position: relative;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.service-img {
  height: 240px;
  overflow: hidden;
  position: relative;
}

.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.service-card:hover .service-img img { transform: scale(1.1); }

.service-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(107, 68, 35, 0.6) 100%);
}

.service-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 6px 14px;
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  color: var(--walnut);
  z-index: 2;
}

.service-content {
  padding: 30px;
}

.service-icon-wrap {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: var(--gradient-sage);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 24px;
  margin-bottom: 20px;
  margin-top: -50px;
  position: relative;
  z-index: 2;
  box-shadow: var(--shadow-md);
}

.service-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

.service-card p {
  font-size: 15px;
  color: var(--stone);
  margin-bottom: 20px;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 600;
  color: var(--walnut);
  transition: var(--transition);
}

.service-link:hover {
  color: var(--sage);
  gap: 14px;
}

/* ============ CTA SECTION ============ */
.cta-section {
  background: var(--gradient-primary);
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(122, 143, 107, 0.4), transparent 40%),
    radial-gradient(circle at 80% 50%, rgba(229, 211, 179, 0.3), transparent 40%);
}

.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  max-width: 800px;
  margin: 0 auto;
}

.cta-content h2 {
  color: var(--white);
  font-size: clamp(32px, 4vw, 48px);
  margin-bottom: 20px;
}

.cta-content p {
  font-size: 19px;
  opacity: 0.95;
  margin-bottom: 36px;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-btn-white {
  background: var(--white);
  color: var(--walnut);
  padding: 16px 36px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cta-btn-white:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.cta-btn-outline {
  background: transparent;
  color: var(--white);
  padding: 14px 36px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition);
  border: 2px solid rgba(255, 255, 255, 0.4);
}

.cta-btn-outline:hover {
  background: var(--white);
  color: var(--walnut);
  border-color: var(--white);
}

/* ============ HEALTH INSURANCE SECTION ============ */
.health-insurance {
  background: var(--sand-light);
  position: relative;
}

.health-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.health-content h2 { margin-bottom: 20px; }

.health-content p {
  font-size: 17px;
  margin-bottom: 30px;
}

.health-features {
  display: grid;
  gap: 16px;
  margin-bottom: 30px;
}

.health-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px;
  background: var(--white);
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.health-feature:hover {
  transform: translateX(8px);
  box-shadow: var(--shadow-sm);
}

.health-feature-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 12px;
  background: var(--gradient-sage);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 18px;
}

.health-feature h4 {
  font-size: 16px;
  margin-bottom: 4px;
}

.health-feature p {
  font-size: 14px;
  margin: 0;
  color: var(--stone);
}

.health-image {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  height: 500px;
}

.health-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============ PRICING SECTION ============ */
.pricing {
  background: var(--cream);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.pricing-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  border: 2px solid var(--sand-light);
  transition: var(--transition);
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.pricing-card.featured {
  background: var(--gradient-primary);
  color: var(--white);
  border-color: var(--walnut);
  transform: scale(1.05);
}

.pricing-card.featured:hover { transform: scale(1.05) translateY(-10px); }

.pricing-card.featured h3,
.pricing-card.featured .pricing-price,
.pricing-card.featured .pricing-features li { color: var(--white); }

.pricing-card.featured .pricing-features li::before { color: var(--sand); }

.pricing-popular {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 20px;
  background: var(--gradient-sage);
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  border-radius: 50px;
  letter-spacing: 1px;
}

.pricing-name {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 12px;
}

.pricing-card.featured .pricing-name { color: var(--sand); }

.pricing-price {
  font-size: 52px;
  font-weight: 700;
  color: var(--walnut);
  line-height: 1;
  margin-bottom: 8px;
}

.pricing-price span {
  font-size: 18px;
  font-weight: 400;
  opacity: 0.7;
}

.pricing-desc {
  font-size: 15px;
  margin-bottom: 30px;
  opacity: 0.8;
}

.pricing-features {
  margin-bottom: 30px;
}

.pricing-features li {
  padding: 10px 0;
  font-size: 15px;
  color: var(--stone);
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid rgba(107, 68, 35, 0.08);
}

.pricing-card.featured .pricing-features li { border-bottom-color: rgba(255, 255, 255, 0.15); }

.pricing-features li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: var(--sage);
  font-size: 14px;
}

.pricing-card .btn {
  width: 100%;
  justify-content: center;
}

.pricing-card.featured .btn-secondary {
  background: var(--white);
  color: var(--walnut);
  border-color: var(--white);
}

/* ============ BOOKING FORM SECTION ============ */
.booking {
  background: var(--gradient-sand);
  position: relative;
}

.booking-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}

.booking-info h2 { margin-bottom: 20px; }

.booking-info p {
  font-size: 17px;
  margin-bottom: 30px;
}

.booking-benefits {
  display: grid;
  gap: 16px;
}

.booking-benefit {
  display: flex;
  gap: 16px;
  align-items: center;
}

.benefit-check {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  background: var(--gradient-sage);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 14px;
}

.booking-form-wrap {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--sand-light);
}

.booking-form-wrap h3 {
  margin-bottom: 8px;
}

.booking-form-wrap > p {
  font-size: 15px;
  color: var(--stone);
  margin-bottom: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--walnut);
  margin-bottom: 8px;
}

.form-control {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--sand-light);
  border-radius: 14px;
  font-family: inherit;
  font-size: 15px;
  color: var(--walnut);
  background: var(--cream);
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--sage);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(122, 143, 107, 0.1);
}

textarea.form-control {
  resize: vertical;
  min-height: 110px;
}

.form-submit {
  width: 100%;
  justify-content: center;
  margin-top: 8px;
}

/* ============ REVIEWS SECTION ============ */
.reviews {
  background: var(--cream);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.review-card {
  background: var(--white);
  padding: 36px 30px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--sand-light);
  transition: var(--transition);
  position: relative;
}

.review-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--sage-light);
}

.review-quote {
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 50px;
  color: var(--sand);
  line-height: 1;
  font-family: Georgia, serif;
}

.review-stars {
  display: flex;
  gap: 3px;
  color: #f5b942;
  margin-bottom: 16px;
  font-size: 15px;
}

.review-text {
  font-size: 15px;
  color: var(--stone);
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.review-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--gradient-sage);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 18px;
}

.review-author-info h4 {
  font-size: 16px;
  margin-bottom: 2px;
}

.review-author-info p {
  font-size: 13px;
  color: var(--stone);
}

/* ============ FAQ SECTION ============ */
.faq {
  background: var(--sand-light);
}

.faq-grid {
  max-width: 860px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius-md);
  margin-bottom: 16px;
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid transparent;
}

.faq-item.active {
  border-color: var(--sage-light);
  box-shadow: var(--shadow-sm);
}

.faq-question {
  width: 100%;
  padding: 24px 28px;
  background: none;
  text-align: left;
  font-size: 17px;
  font-weight: 600;
  color: var(--walnut);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: var(--transition);
}

.faq-question:hover { background: rgba(122, 143, 107, 0.05); }

.faq-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--gradient-sage);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: transform 0.4s ease;
}

.faq-item.active .faq-icon { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 28px;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 28px 24px;
}

.faq-answer p {
  font-size: 15px;
  color: var(--stone);
  line-height: 1.7;
}

/* ============ CONTACT SECTION ============ */
.contact {
  background: var(--cream);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 50px;
}

.contact-info-cards {
  display: grid;
  gap: 20px;
}

.contact-card {
  padding: 28px;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--sand-light);
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: var(--transition);
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--sage-light);
}

.contact-card-icon {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  border-radius: 16px;
  background: var(--gradient-sage);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 22px;
}

.contact-card h4 {
  font-size: 16px;
  margin-bottom: 6px;
}

.contact-card p, .contact-card a {
  font-size: 15px;
  color: var(--stone);
  line-height: 1.6;
  transition: var(--transition);
}

.contact-card a:hover { color: var(--sage); }

.contact-form-wrap {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
}

.contact-form-wrap h3 { margin-bottom: 8px; }

.contact-form-wrap > p {
  font-size: 15px;
  color: var(--stone);
  margin-bottom: 24px;
}

/* ============ NEWSLETTER SECTION ============ */
.newsletter {
  background: var(--gradient-primary);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.newsletter::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(122, 143, 107, 0.4), transparent 40%),
    radial-gradient(circle at 80% 50%, rgba(229, 211, 179, 0.3), transparent 40%);
}

.newsletter .container { position: relative; z-index: 2; }

.newsletter-content {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.newsletter .section-label {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
}

.newsletter h2 {
  color: var(--white);
  margin-bottom: 16px;
}

.newsletter > .container > .newsletter-content > p {
  font-size: 17px;
  opacity: 0.95;
  margin-bottom: 36px;
}

.newsletter-form {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 36px;
  border-radius: var(--radius-xl);
}

.newsletter-form .form-row {
  margin-bottom: 0;
}

.newsletter-form .form-group { margin-bottom: 16px; }

.newsletter-form .form-group label {
  color: var(--white);
  text-align: left;
}

.newsletter-form .form-control {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--white);
}

.newsletter-form .form-control::placeholder { color: rgba(255, 255, 255, 0.6); }

.newsletter-form .form-control:focus {
  background: rgba(255, 255, 255, 0.25);
  border-color: var(--white);
}

.newsletter-consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 16px 0 24px;
  text-align: left;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
}

.newsletter-consent input {
  margin-top: 4px;
  width: 18px;
  height: 18px;
  accent-color: var(--sage);
}

.newsletter-success {
  display: none;
  padding: 20px;
  background: rgba(122, 143, 107, 0.3);
  border: 1px solid rgba(122, 143, 107, 0.5);
  border-radius: var(--radius-md);
  color: var(--white);
  margin-top: 20px;
  animation: fadeInUp 0.5s ease;
}

.newsletter-success.show { display: block; }

/* ============ POLICY SECTIONS ============ */
.policy-section {
  background: var(--cream);
  padding: 80px 0;
}

.policy-content {
  max-width: 900px;
  margin: 0 auto;
  background: var(--white);
  padding: 50px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
}

.policy-content h2 {
  margin-bottom: 24px;
  text-align: center;
}

.policy-content h3 {
  font-size: 20px;
  margin: 24px 0 12px;
  color: var(--walnut);
}

.policy-content p {
  font-size: 15px;
  margin-bottom: 14px;
  color: var(--stone);
}

.policy-content ul {
  padding-left: 20px;
  margin-bottom: 14px;
}

.policy-content ul li {
  list-style: disc;
  font-size: 15px;
  color: var(--stone);
  margin-bottom: 6px;
}

/* ============ FOOTER ============ */
.footer {
  background: #2a1a0e;
  color: rgba(255, 255, 255, 0.8);
  padding: 80px 0 0;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-sage);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
  gap: 50px;
  margin-bottom: 60px;
}

.footer-about .logo {
  color: var(--white);
  margin-bottom: 20px;
}

.footer-about p {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 24px;
  opacity: 0.85;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--gradient-sage);
  transform: translateY(-3px);
}

.footer-col h4 {
  color: var(--white);
  font-size: 18px;
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 12px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--gradient-sage);
  border-radius: 3px;
}

.footer-links li { margin-bottom: 12px; }

.footer-links a {
  font-size: 15px;
  opacity: 0.8;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-links a::before {
  content: '\f105';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 12px;
  color: var(--sage);
}

.footer-links a:hover {
  opacity: 1;
  color: var(--sage-light);
  transform: translateX(5px);
}

.footer-newsletter p {
  font-size: 14px;
  margin-bottom: 16px;
  opacity: 0.85;
}

.footer-newsletter-form {
  display: flex;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50px;
  padding: 5px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-newsletter-form input {
  flex: 1;
  background: none;
  border: none;
  padding: 10px 18px;
  color: var(--white);
  font-family: inherit;
  font-size: 14px;
  outline: none;
}

.footer-newsletter-form input::placeholder { color: rgba(255, 255, 255, 0.5); }

.footer-newsletter-form button {
  padding: 10px 22px;
  background: var(--gradient-sage);
  color: var(--white);
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  transition: var(--transition);
}

.footer-newsletter-form button:hover {
  transform: scale(1.05);
}

.footer-bottom {
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  font-size: 14px;
  opacity: 0.7;
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  font-size: 14px;
  opacity: 0.7;
  transition: var(--transition);
}

.footer-bottom-links a:hover { opacity: 1; color: var(--sage-light); }

/* ============ BACK TO TOP ============ */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 999;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .hero-grid, .about-grid, .health-grid, .booking-grid, .contact-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .milestones-grid, .process-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid, .services-grid, .reviews-grid, .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  
  .hero-image-main { height: 450px; }
  
  .pricing-card.featured { transform: scale(1); }
  .pricing-card.featured:hover { transform: translateY(-10px); }
}

@media (max-width: 768px) {
  section { padding: 70px 0; }
  
  .menu-toggle { display: flex; }
  
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 360px;
    height: 100vh;
    background: var(--cream);
    flex-direction: column;
    align-items: stretch;
    padding: 100px 30px 30px;
    gap: 4px;
    transition: right 0.4s ease;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
  }
  
  .nav-menu.active { right: 0; }
  
  .nav-menu a {
    padding: 14px 20px;
    font-size: 17px;
    border-radius: 12px;
  }
  
  .nav-cta { text-align: center; margin-top: 16px; }
  
  .milestones-grid, .process-grid, .features-grid, .services-grid, .reviews-grid, .pricing-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  
  .hero { padding: 120px 0 60px; }
  .hero-image-main { height: 380px; }
  
  .hero-float-card { display: none; }
  
  .about-img-secondary { width: 160px; height: 160px; right: -10px; bottom: -20px; }
  .about-experience { padding: 18px 22px; left: -10px; top: -20px; }
  .about-experience-num { font-size: 36px; }
  
  .about-vmv { grid-template-columns: 1fr; }
  
  .form-row { grid-template-columns: 1fr; }
  
  .booking-form-wrap, .contact-form-wrap, .newsletter-form { padding: 28px 22px; }
  
  .policy-content { padding: 30px 24px; }
  
  .footer-bottom { flex-direction: column; text-align: center; }
  
  .hero-stats { gap: 24px; }
  .hero-stat-num { font-size: 28px; }
  
  .milestone-num { font-size: 40px; }
}

@media (max-width: 480px) {
  .container { padding: 0 18px; }
  
  h1 { font-size: 36px; }
  h2 { font-size: 28px; }
  
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; justify-content: center; }
  
  .cta-buttons { flex-direction: column; }
  .cta-buttons .cta-btn-white, .cta-buttons .cta-btn-outline { width: 100%; justify-content: center; }
  
  .hero-image-main { height: 320px; }
  
  .milestone-card { padding: 30px 20px; }
  .milestone-num { font-size: 36px; }
  
  .pricing-price { font-size: 42px; }
}
