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

:root {
  --g1: #0f2414;
  --g2: #162e1a;
  --g3: #1e4026;
  --g4: #2a5c36;
  --g5: #3a8a4e;
  --gold: #c8a94a;
  --gold2: #e2c76a;
  --cream: #f7f3ea;
  --cream2: #ede7d6;
  --white: #ffffff;
  --text: #1a2e1e;
  --text-light: #4a6e54;
  --border: rgba(200,169,74,0.2);
  --radius: 14px;
  --radius-sm: 8px;
  --shadow: 0 8px 32px rgba(0,0,0,0.12);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.18);
}

html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; color: var(--text); background: var(--cream); line-height: 1.6; }

/* ── UTILITIES ── */
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.section-tag { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
.gold { color: var(--gold2); }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px; border-radius: 50px; font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem; font-weight: 600; text-decoration: none;
  cursor: pointer; transition: all 0.18s; border: 2px solid transparent;
  white-space: nowrap;
}
.btn-gold { background: var(--gold); color: var(--g1); border-color: var(--gold); }
.btn-gold:hover { background: var(--gold2); border-color: var(--gold2); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(200,169,74,0.35); }
.btn-green { background: var(--g4); color: var(--white); border-color: var(--g4); }
.btn-green:hover { background: var(--g5); border-color: var(--g5); transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.5); }
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }
.btn-outline-dark { background: transparent; color: var(--g3); border-color: var(--g3); }
.btn-outline-dark:hover { background: var(--g3); color: var(--white); }

/* ── HEADER ── */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--g1);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 68px; gap: 20px;
}
.brand-link {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none; flex-shrink: 0;
}
.nav-logo { width: 42px; height: 42px; border-radius: 50%; object-fit: cover; }
.brand-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem; font-weight: 700; color: var(--white);
  line-height: 1.1;
}
.brand-amp { color: var(--gold); }
.brand-pty {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.58rem; font-weight: 500;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.14em; text-transform: uppercase;
}
.nav-links {
  display: flex; align-items: center; gap: 6px;
}
.nav-links a {
  text-decoration: none; color: rgba(255,255,255,0.75);
  font-size: 0.88rem; font-weight: 500; padding: 7px 12px; border-radius: 8px;
  transition: all 0.15s;
}
.nav-links a:hover, .nav-links a.active { color: var(--white); background: rgba(255,255,255,0.08); }
.nav-links a.active { color: var(--gold2); }
.nav-cta {
  background: var(--gold) !important; color: var(--g1) !important;
  border-radius: 50px !important; font-weight: 600 !important;
  padding: 8px 18px !important;
}
.nav-cta:hover { background: var(--gold2) !important; }

/* ── NAV DROPDOWN ── */
.nav-dropdown { position: relative; }
.nav-dropdown-toggle { display: flex !important; align-items: center; gap: 4px; }
.nav-dropdown-arrow { font-size: 0.6rem; opacity: 0.6; transition: transform 0.2s; }
.nav-dropdown:hover .nav-dropdown-arrow { transform: rotate(180deg); }
.nav-dropdown-menu {
  display: none; position: absolute; top: calc(100% + 6px); left: 50%;
  transform: translateX(-50%); min-width: 260px;
  background: var(--g1); border: 1px solid var(--border);
  border-radius: var(--radius-sm); box-shadow: 0 8px 32px rgba(0,0,0,0.35);
  overflow: hidden; z-index: 200;
  padding: 6px 0;
}
.nav-dropdown:hover .nav-dropdown-menu { display: block; }
.nav-dropdown-menu a {
  display: flex !important; align-items: center; gap: 10px;
  padding: 9px 18px !important; color: rgba(255,255,255,0.72) !important;
  font-size: 0.84rem !important; text-decoration: none; transition: all 0.12s;
  border-radius: 0 !important; background: none !important;
}
.nav-dropdown-menu a:hover { background: rgba(255,255,255,0.08) !important; color: var(--white) !important; }
.nav-dropdown-divider { border-top: 1px solid var(--border); margin: 6px 0; }
.nav-dropdown-all { color: var(--gold) !important; font-weight: 600 !important; }
@media (max-width: 768px) {
  .nav-dropdown-menu { display: none; position: static; transform: none; box-shadow: none; border: none; border-radius: 0; padding: 0 0 0 16px; background: transparent; }
  .nav-dropdown.open .nav-dropdown-menu { display: block; }
  .nav-dropdown.open .nav-dropdown-arrow { transform: rotate(180deg); }
  .nav-dropdown-divider { display: none; }
}

/* ── RELATED POSTS (service pages) ── */
.related-posts-section { background: var(--bg, #f0f4f1); padding: 60px 0 70px; border-top: 1px solid var(--border, #d4e0d7); }
.related-posts-section h2 { font-family: 'Playfair Display', serif; font-size: 1.6rem; color: var(--g2, #162e1a); margin-bottom: 6px; }
.related-posts-section .section-sub { font-size: 0.95rem; color: var(--muted, #6b8f74); margin-bottom: 28px; }
.related-posts-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 20px; margin-bottom: 24px; }
.related-post-card { background: var(--white, #fff); border-radius: 12px; overflow: hidden; border: 1px solid var(--border, #d4e0d7); text-decoration: none; display: block; transition: transform 0.2s, box-shadow 0.2s; }
.related-post-card:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(0,0,0,0.12); }
.related-post-card img { width: 100%; aspect-ratio: 3/2; object-fit: cover; display: block; }
.related-post-placeholder { width: 100%; aspect-ratio: 3/2; background: linear-gradient(135deg, #1e4026, #2a5c36); display: flex; align-items: center; justify-content: center; font-size: 2.5rem; }
.related-post-body { padding: 16px 18px 18px; }
.related-post-date { font-size: 0.72rem; color: var(--muted, #6b8f74); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 6px; font-weight: 500; }
.related-post-title { font-size: 0.98rem; font-weight: 600; color: var(--g2, #162e1a); line-height: 1.4; }
.related-posts-all { display: inline-flex; align-items: center; gap: 6px; font-size: 0.88rem; font-weight: 600; color: var(--gold, #c8a94a); text-decoration: none; transition: color 0.15s; }
.related-posts-all:hover { color: var(--g4, #2a5c36); }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 6px;
}
.nav-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--white); border-radius: 2px; transition: all 0.2s;
}

/* ── HERO ── */
.hero {
  position: relative; min-height: 52vh;
  background: linear-gradient(135deg, var(--g1) 0%, var(--g3) 50%, var(--g4) 100%);
  display: flex; align-items: center;
  overflow: hidden;
}
.hero::before {
  content: '';
  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%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M40 0C17.9 0 0 17.9 0 40s17.9 40 40 40 40-17.9 40-40S62.1 0 40 0zm0 70C23.4 70 10 56.6 10 40S23.4 10 40 10s30 13.4 30 30-13.4 30-30 30z'/%3E%3C/g%3E%3C/svg%3E") repeat;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 80% at 60% 50%, rgba(58,138,78,0.15) 0%, transparent 70%);
}
.hero-content {
  position: relative; z-index: 1;
  padding: 48px 24px;
}
.hero-tag {
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 16px;
}
.hero-title-row {
  display: flex; align-items: center; gap: 28px;
  margin-bottom: 22px; flex-wrap: wrap;
}
.hero-title-row .hero-title { margin-bottom: 0; }
.hero-logo {
  width: 160px; height: 160px; border-radius: 50%;
  object-fit: cover; flex-shrink: 0;
  box-shadow: 0 4px 24px rgba(0,0,0,0.35);
  border: 2px solid rgba(200,169,74,0.35);
}
@media (max-width: 600px) { .hero-logo { width: 90px; height: 90px; } }
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 7vw, 5rem);
  font-weight: 900; line-height: 1.1; color: var(--white);
  margin-bottom: 22px;
}
.hero-sub {
  font-size: 1.1rem; color: rgba(255,255,255,0.75);
  max-width: 480px; margin-bottom: 36px; line-height: 1.7;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-phone {
  display: inline-flex; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.6); font-size: 0.95rem; font-weight: 500;
  text-decoration: none; transition: color 0.15s;
}
.hero-phone:hover { color: var(--gold2); }
.hero-phone svg { flex-shrink: 0; }

/* ── SERVICES STRIP ── */
.services-strip {
  background: var(--white);
  padding: 80px 0;
}
.strip-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px; margin-bottom: 40px;
}
.strip-card {
  background: var(--cream); border-radius: var(--radius);
  padding: 32px 24px; text-align: center;
  border: 1px solid var(--cream2);
  transition: all 0.2s;
}
.strip-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: rgba(200,169,74,0.3); }
.strip-icon { font-size: 2.4rem; margin-bottom: 14px; }
.strip-card h3 { font-family: 'Playfair Display', serif; font-size: 1.2rem; color: var(--g2); margin-bottom: 10px; }
.strip-card p { font-size: 0.88rem; color: var(--text-light); line-height: 1.6; }
.strip-footer { text-align: center; }

/* ── ABOUT ── */
.about {
  background: var(--cream);
  padding: 100px 0;
}
.about-inner {
  display: grid; grid-template-columns: 1fr auto;
  gap: 60px; align-items: center;
}
.about-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--g2); margin-bottom: 20px; line-height: 1.25;
}
.about-text p { color: var(--text-light); margin-bottom: 16px; font-size: 1rem; line-height: 1.7; }
.about-text .btn { margin-top: 8px; }
.about-badge { flex-shrink: 0; }
.badge-circle {
  width: 160px; height: 160px; border-radius: 50%;
  background: linear-gradient(135deg, var(--g3), var(--g4));
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  box-shadow: 0 0 0 8px rgba(42,92,54,0.15), var(--shadow-lg);
}
.badge-num { font-family: 'Playfair Display', serif; font-size: 2.2rem; color: var(--gold2); font-weight: 900; }
.badge-label { font-size: 0.7rem; color: rgba(255,255,255,0.7); letter-spacing: 0.12em; text-transform: uppercase; }

/* ── SOCIAL STRIP ── */
.social-strip {
  background: linear-gradient(135deg, var(--g1), var(--g3));
  padding: 70px 0;
}
.social-inner {
  display: flex; align-items: center;
  justify-content: space-between; gap: 40px; flex-wrap: wrap;
}
.social-strip h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.9rem; color: var(--white); margin-bottom: 8px;
}
.social-strip p { color: rgba(255,255,255,0.65); }
.social-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: linear-gradient(135deg, var(--g1), var(--g3));
  padding: 70px 0 60px;
  text-align: center;
}
.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--white); margin-bottom: 12px;
}
.page-hero p { color: rgba(255,255,255,0.7); font-size: 1.05rem; }
.page-hero .section-tag { justify-content: center; }

/* ── SERVICES PAGE ── */
.services-page { padding: 80px 0; background: var(--white); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 28px; }
.service-card {
  background: var(--cream); border-radius: var(--radius);
  padding: 36px 30px; border: 1px solid var(--cream2);
  transition: all 0.2s;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: rgba(200,169,74,0.3); }
.service-card .icon { font-size: 2.8rem; margin-bottom: 18px; }
.service-card h3 { font-family: 'Playfair Display', serif; font-size: 1.35rem; color: var(--g2); margin-bottom: 12px; }
.service-card p { color: var(--text-light); font-size: 0.93rem; line-height: 1.7; }
.services-cta { text-align: center; padding: 60px 0 20px; }
.services-cta h2 { font-family: 'Playfair Display', serif; font-size: 2rem; color: var(--g2); margin-bottom: 12px; }
.services-cta p { color: var(--text-light); margin-bottom: 28px; }
.services-cta .btn-group { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── FACEBOOK FEED PAGE ── */
.feed-page { padding: 60px 0; background: var(--white); }
.feed-wrap {
  max-width: 540px; margin: 0 auto;
  text-align: center;
}
.feed-wrap h2 { font-family: 'Playfair Display', serif; font-size: 1.8rem; color: var(--g2); margin-bottom: 8px; }
.feed-wrap p { color: var(--text-light); margin-bottom: 32px; }
.fb-embed-container {
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-lg); border: 1px solid var(--cream2);
}
.fb-fallback {
  background: var(--cream); border-radius: var(--radius);
  padding: 40px 30px; border: 1px dashed var(--cream2);
  text-align: center; margin-top: 20px;
}
.fb-fallback p { color: var(--text-light); margin-bottom: 20px; }

/* ── CONTACT PAGE ── */
.contact-page { padding: 80px 0; background: var(--white); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 60px; align-items: start; }
.contact-info h2 { font-family: 'Playfair Display', serif; font-size: 1.9rem; color: var(--g2); margin-bottom: 14px; }
.contact-info p { color: var(--text-light); margin-bottom: 28px; line-height: 1.7; }
.contact-detail {
  display: flex; align-items: flex-start; gap: 14px;
  margin-bottom: 20px;
}
.detail-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--g3); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
}
.detail-label { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gold); font-weight: 600; }
.detail-value { font-size: 1rem; color: var(--g2); font-weight: 500; text-decoration: none; }
.detail-value:hover { color: var(--g5); }
.contact-form-card {
  background: var(--cream); border-radius: var(--radius);
  padding: 40px 36px; border: 1px solid var(--cream2);
  box-shadow: var(--shadow);
}
.contact-form-card h3 { font-family: 'Playfair Display', serif; font-size: 1.4rem; color: var(--g2); margin-bottom: 24px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--g3); margin-bottom: 6px; letter-spacing: 0.04em; }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%; padding: 12px 16px; border-radius: var(--radius-sm);
  border: 1.5px solid var(--cream2); background: var(--white);
  font-family: 'DM Sans', sans-serif; font-size: 0.93rem; color: var(--text);
  outline: none; transition: border-color 0.15s;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--g4); }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-submit { width: 100%; }
.form-success {
  display: none; background: rgba(52,199,89,0.1);
  border: 1px solid rgba(52,199,89,0.3); border-radius: var(--radius-sm);
  padding: 14px 18px; color: #1a7a34; font-size: 0.9rem;
  margin-top: 14px; text-align: center;
}

/* ── FOOTER ── */
.site-footer {
  background: var(--g1);
  border-top: 1px solid var(--border);
  padding: 48px 0 0;
}
.footer-inner {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 24px; padding-bottom: 40px;
}
.footer-brand { display: flex; align-items: center; gap: 12px; }
.footer-logo { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; }
.footer-name { font-family: 'Playfair Display', serif; font-size: 1rem; color: var(--white); font-weight: 700; }
.footer-nav { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-nav a { color: rgba(255,255,255,0.55); text-decoration: none; font-size: 0.88rem; transition: color 0.15s; }
.footer-nav a:hover { color: var(--gold2); }
.footer-contact { display: flex; flex-direction: column; gap: 4px; align-items: flex-end; }
.footer-contact a, .footer-contact span { color: rgba(255,255,255,0.55); font-size: 0.88rem; text-decoration: none; transition: color 0.15s; }
.footer-contact a:hover { color: var(--gold2); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 16px 24px; text-align: center;
}
.footer-bottom p { color: rgba(255,255,255,0.3); font-size: 0.78rem; }

/* ── SERVICE CARD LINKS ── */
.strip-card-link, .service-card-link {
  text-decoration: none; color: inherit; display: block;
  cursor: pointer;
}
.strip-card-link:hover, .service-card-link:hover {
  transform: translateY(-4px); box-shadow: var(--shadow);
  border-color: rgba(200,169,74,0.35);
}
.strip-more, .svc-more {
  display: block; margin-top: 12px;
  font-size: 0.82rem; font-weight: 600;
  color: var(--g4); letter-spacing: 0.03em;
  transition: color 0.15s;
}
.strip-card-link:hover .strip-more,
.service-card-link:hover .svc-more { color: var(--g5); }

/* ── REVIEWS SECTION ── */
.reviews-section {
  background: var(--cream);
  padding: 80px 0;
  overflow: hidden;
}
.reviews-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  color: var(--g2); text-align: center;
  margin-bottom: 36px;
}
.reviews-track-wrap { overflow: hidden; position: relative; margin-bottom: 36px; }
.reviews-track-wrap::before, .reviews-track-wrap::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 80px; z-index: 2; pointer-events: none;
}
.reviews-track-wrap::before { left: 0; background: linear-gradient(to right, var(--cream), transparent); }
.reviews-track-wrap::after  { right: 0; background: linear-gradient(to left,  var(--cream), transparent); }
.reviews-grid {
  display: flex; gap: 20px;
  animation: scrollReviews 28s linear infinite;
  width: max-content;
}
.reviews-grid:hover { animation-play-state: paused; }
@keyframes scrollReviews {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.review-card {
  background: var(--white); border-radius: var(--radius);
  padding: 28px 26px; border: 1px solid var(--cream2);
  box-shadow: var(--shadow); display: flex; flex-direction: column; gap: 14px;
  transition: transform 0.2s;
  width: 320px; flex-shrink: 0;
}
.review-card:hover { transform: translateY(-3px); }
.review-stars { font-size: 1.2rem; color: #f5a623; letter-spacing: 2px; }
.review-text {
  font-size: 0.95rem; color: var(--text-light);
  line-height: 1.7; font-style: italic; flex: 1;
}
.review-author {
  display: flex; align-items: center; gap: 12px;
  padding-top: 14px; border-top: 1px solid var(--cream2);
}
.review-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--g4); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1rem; flex-shrink: 0;
}
.review-author strong { font-size: 0.9rem; color: var(--g2); display: block; }
.review-date { font-size: 0.78rem; color: var(--text-light); margin-top: 1px; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-links {
    display: none; position: absolute; top: 68px; left: 0; right: 0;
    background: var(--g1); border-bottom: 1px solid var(--border);
    flex-direction: column; align-items: stretch;
    padding: 12px 16px 20px;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 16px; border-radius: 10px; }
  .site-header { position: relative; }
  .about-inner { grid-template-columns: 1fr; }
  .about-badge { justify-self: center; }
  .social-inner { flex-direction: column; text-align: center; }
  .social-actions { justify-content: center; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .footer-contact { align-items: flex-start; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .strip-grid { grid-template-columns: 1fr 1fr; }
  .contact-form-card { padding: 28px 22px; }
}

/* ── FLOATING WHATSAPP BUTTON ── */
.wa-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 999;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.5);
  text-decoration: none; transition: all 0.2s;
}
.wa-float:hover { background: #1da851; transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,0.6); }
.wa-float svg { width: 28px; height: 28px; }
.wa-float-tooltip {
  position: absolute; right: 68px; top: 50%; transform: translateY(-50%);
  background: rgba(0,0,0,0.75); color: #fff; font-size: 0.78rem;
  padding: 6px 12px; border-radius: 20px; white-space: nowrap;
  opacity: 0; pointer-events: none; transition: opacity 0.2s;
}
.wa-float:hover .wa-float-tooltip { opacity: 1; }
