/* ===== HOME PAGE STYLES ===== */

/* HERO */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 2rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(26, 58, 42, 0.95) 0%, rgba(26, 58, 42, 0.8) 50%, rgba(45, 90, 64, 0.9) 100%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400'%3E%3Cdefs%3E%3CradialGradient id='g' cx='50%25' cy='50%25' r='50%25'%3E%3Cstop offset='0%25' stop-color='%233d7a56' stop-opacity='0.3'/%3E%3Cstop offset='100%25' stop-color='%231a3a2a' stop-opacity='0'/%3E%3C/radialGradient%3E%3C/defs%3E%3Crect width='400' height='400' fill='url(%23g)'/%3E%3C/svg%3E");
  background-size: cover, 400px 400px;
}

.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 70% 50%, rgba(61, 122, 86, 0.25) 0%, transparent 70%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0h80v80H0z' fill='none'/%3E%3Ccircle cx='40' cy='40' r='1' fill='%23ffffff' fill-opacity='0.04'/%3E%3C/svg%3E");
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  animation: fadeIn 0.6s ease;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(201, 168, 76, 0.15);
  border: 1px solid rgba(201, 168, 76, 0.35);
  color: #e8c97a;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 0.45rem 1.1rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 1.2rem;
}

.hero-title em {
  font-style: italic;
  color: #e8c97a;
}

.hero-desc {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
  max-width: 520px;
  margin: 0 auto 2rem;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding: 1.5rem 2rem;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  backdrop-filter: blur(8px);
  flex-wrap: wrap;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat strong {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}

.stat span {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 0.25rem;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.2);
}

.hero-scroll-cue {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.4);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: float 2.5s ease-in-out infinite;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
}

/* FEATURES STRIP */
.features-strip {
  background: var(--cream);
  padding: 2.5rem 2rem;
  border-bottom: 1px solid var(--border);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  max-width: 1140px;
  margin: 0 auto;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem;
  background: #fff;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.feature-item:hover {
  border-color: var(--sage);
  box-shadow: var(--shadow-soft);
  transform: translateY(-3px);
}

.feature-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
  animation: float 3s ease-in-out infinite;
}

.feature-icon:nth-child(2) { animation-delay: 0.5s; }
.feature-icon:nth-child(3) { animation-delay: 1s; }
.feature-icon:nth-child(4) { animation-delay: 1.5s; }

.feature-item h3 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--forest);
  margin-bottom: 0.15rem;
}

.feature-item p {
  font-size: 0.78rem;
  color: var(--text-light);
  line-height: 1.4;
}

@media (max-width: 900px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 500px) {
  .features-grid { grid-template-columns: 1fr; }
}

/* ABOUT SPLIT */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-visual {
  position: relative;
  min-height: 420px;
}

.about-img-card {
  border-radius: var(--radius);
  overflow: hidden;
  position: absolute;
  box-shadow: var(--shadow-strong);
}

.about-img-card.main {
  width: 70%;
  top: 0;
  left: 0;
}

.about-img-card.secondary {
  width: 55%;
  bottom: 0;
  right: 0;
  border: 4px solid #fff;
}

.img-placeholder {
  padding: 3rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  text-align: center;
  aspect-ratio: 4/3;
}

.img-placeholder.forest { background: linear-gradient(135deg, var(--forest), var(--forest-mid)); }
.img-placeholder.sage { background: linear-gradient(135deg, var(--forest-light), var(--sage)); }

.placeholder-icon { font-size: 3rem; }
.img-placeholder p { color: rgba(255,255,255,0.85); font-size: 0.85rem; font-weight: 600; }

.about-bubble {
  position: absolute;
  top: 50%;
  right: -20px;
  transform: translateY(-50%);
  background: var(--gold);
  color: var(--forest);
  border-radius: 14px;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  box-shadow: 0 8px 30px rgba(201, 168, 76, 0.4);
  animation: pulse-ring 2s infinite;
  z-index: 10;
}

.bubble-icon { font-size: 1.4rem; }
.about-bubble strong { display: block; font-size: 1.4rem; font-weight: 900; line-height: 1; }
.about-bubble span { font-size: 0.7rem; font-weight: 600; opacity: 0.8; }

.about-highlights { display: flex; flex-direction: column; gap: 0.6rem; }

.highlight-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--text-mid);
  font-weight: 500;
}

.highlight-item span {
  color: var(--forest-light);
  font-weight: 700;
  font-size: 1.1rem;
}

@media (max-width: 840px) {
  .about-split { grid-template-columns: 1fr; gap: 2rem; }
  .about-visual { min-height: 280px; margin-bottom: 1rem; }
  .about-bubble { right: 10px; }
}

/* SERVICES PREVIEW */
.services-preview { background: var(--cream); }

.service-card {
  padding: 2rem 1.75rem;
}

.service-icon {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  display: block;
  animation: float 3s ease-in-out infinite;
}

.service-card:nth-child(2) .service-icon { animation-delay: 0.4s; }
.service-card:nth-child(3) .service-icon { animation-delay: 0.8s; }
.service-card:nth-child(4) .service-icon { animation-delay: 1.2s; }
.service-card:nth-child(5) .service-icon { animation-delay: 1.6s; }
.service-card:nth-child(6) .service-icon { animation-delay: 2s; }

.service-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--forest);
  margin-bottom: 0.5rem;
}

.service-card p {
  font-size: 0.875rem;
  color: var(--text-mid);
  line-height: 1.65;
  margin-bottom: 1rem;
}

.service-link {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--forest-light);
  transition: color 0.3s, gap 0.3s;
}

.service-link:hover { color: var(--forest); }

/* TESTIMONIALS */
.testimonials-section { background: #fff; }

.testimonial-card {
  padding: 2rem;
}

.testimonial-text {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.author-avatar {
  width: 40px;
  height: 40px;
  background: var(--forest);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}

.testimonial-author strong {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--forest);
}

.testimonial-author span {
  font-size: 0.78rem;
  color: var(--text-light);
}

/* CTA BANNER */
.cta-banner {
  background: linear-gradient(135deg, var(--forest) 0%, var(--forest-mid) 100%);
  padding: 4rem 2rem;
  position: relative;
  overflow: hidden;
}

.cta-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.05;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 10px,
    rgba(255,255,255,0.1) 10px,
    rgba(255,255,255,0.1) 20px
  );
}

.cta-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  position: relative;
}

.cta-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 900;
  color: #fff;
  margin-bottom: 0.4rem;
}

.cta-content p {
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
}

.cta-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* MAP SECTION */
.map-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 420px;
}

.map-embed { height: 100%; }
.map-embed iframe { height: 100%; }

.map-info {
  background: var(--cream);
  display: flex;
  align-items: center;
  padding: 3rem 2.5rem;
}

.map-info-inner h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--forest);
  margin-bottom: 1.25rem;
}

.map-details {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.map-details li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--text-mid);
}

.map-details li span { flex-shrink: 0; }
.map-details a { color: var(--forest-light); font-weight: 600; }

@media (max-width: 768px) {
  .map-section { grid-template-columns: 1fr; height: auto; }
  .map-embed { height: 300px; }
  .map-info { padding: 2rem; }
}
