*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: #faf8f2;
  color: #2c2c2c;
}

/* ── NAVBAR ── */
.navbar {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 0 48px;
  height: 66px;
  background: #ffffff;
  border-bottom: 2px solid #f4b233;
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-left {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.nav-logo {
  height: 42px;
  width: auto;
}

.nav-logo-fallback {
  font-size: 28px;
}

.nav-menu {
  display: flex;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
  flex: 1;
}

.nav-menu a {
  color: #1a4a30;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
  position: relative;
  padding-bottom: 3px;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #f4b233;
  transition: width 0.25s ease;
}

.nav-menu a:hover { color: #f4b233; }
.nav-menu a:hover::after { width: 100%; }

.nav-cta {
  flex-shrink: 0;
  margin-left: auto;
}

.btn-gold-nav {
  background: #f4b233;
  color: white;
  text-decoration: none;
  padding: 9px 20px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  transition: background 0.2s, transform 0.1s;
  white-space: nowrap;
}

.btn-gold-nav:hover {
  background: #d49a20;
  transform: translateY(-1px);
}

/* ── HAMBURGER ── */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #1a4a30;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── HERO ── */
.hero {
  background: linear-gradient(150deg, #0f3d2e 0%, #1a5c42 45%, #b5cba8 100%);
  position: relative;
  overflow: hidden;
}

.hero-inner {
  display: flex;
  align-items: center;
  gap: 48px;
  padding: 72px 80px 56px;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-block;
  background: rgba(244,178,51,0.18);
  border: 1px solid rgba(244,178,51,0.5);
  color: #f4b233;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
  letter-spacing: 0.4px;
}

.hero-text { flex: 1; z-index: 1; }

.hero-text h1 {
  font-family: 'Playfair Display', serif;
  font-size: 46px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 16px;
  line-height: 1.15;
}

.hero-text p {
  font-size: 15px;
  color: rgba(255,255,255,0.82);
  line-height: 1.85;
  margin: 0 0 28px;
  max-width: 520px;
}

.stats {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.stat-box {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(244,178,51,0.45);
  border-radius: 10px;
  padding: 12px 18px;
  backdrop-filter: blur(6px);
}

.stat-icon { font-size: 22px; }

.stat-text {
  display: flex;
  flex-direction: column;
}

.stat-text strong {
  font-size: 20px;
  font-weight: 700;
  color: #f4b233;
  line-height: 1;
}

.stat-text span {
  font-size: 12px;
  color: rgba(255,255,255,0.75);
  margin-top: 2px;
}

/* ── HERO CTA BUTTONS ── */
.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.btn-gold-hero {
  background: #f4b233;
  color: white;
  text-decoration: none;
  padding: 13px 28px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  transition: background 0.2s, transform 0.1s;
  display: inline-block;
}

.btn-gold-hero:hover {
  background: #d49a20;
  transform: translateY(-1px);
}

.btn-outline-hero {
  background: transparent;
  color: white;
  text-decoration: none;
  padding: 13px 28px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  border: 2px solid rgba(255,255,255,0.55);
  transition: border-color 0.2s, background 0.2s, transform 0.1s;
  display: inline-block;
}

.btn-outline-hero:hover {
  border-color: white;
  background: rgba(255,255,255,0.08);
  transform: translateY(-1px);
}

/* ── HERO IMAGE ── */
.hero-img-wrap {
  flex-shrink: 0;
  width: 460px;
  z-index: 1;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.3), 0 0 0 4px rgba(244,178,51,0.35);
}

.hero-img-wrap img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: top center;
  display: block;
  border-radius: 16px;
  animation: heroZoom 6s ease-in-out infinite;
}

@keyframes heroZoom {
  0%, 100% { transform: scale(1);    }
  50%       { transform: scale(1.06); }
}

.hero-wave { width: 100%; line-height: 0; display: block; }
.hero-wave svg { display: block; width: 100%; height: 60px; }

/* ── SECTION TITLES ── */
.section-title {
  text-align: center;
  margin-bottom: 44px;
}

.title-line-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 6px;
}

.title-line {
  flex: 1;
  max-width: 100px;
  height: 1.5px;
  background: linear-gradient(90deg, transparent, #f4b233, transparent);
  display: block;
}

.title-line.short {
  max-width: 50px;
  background: linear-gradient(90deg, transparent, #aaa, transparent);
}

.section-title h2 {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  color: #0f3d2e;
  margin: 0;
  white-space: nowrap;
}

.subtitle-wrap { margin-top: 4px; }

.subtitle {
  color: #888;
  font-size: 14px;
  margin: 0;
  white-space: nowrap;
}

/* ── TESTIMONIALS ── */
.testimonials {
  padding: 76px 40px 60px;
  background: #faf8f2;
}

.cards {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  max-width: 1060px;
  margin: 0 auto;
}

.card {
  background: white;
  border: 1px solid #e8e2d0;
  border-radius: 16px;
  padding: 0 28px 28px;
  width: 300px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 36px rgba(0,0,0,0.10);
}

.card-photo-wrap {
  margin-top: -36px;
  margin-bottom: 16px;
}

.card-photo {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #f4b233;
  box-shadow: 0 4px 14px rgba(244,178,51,0.25);
  display: block;
}

.card-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #0f3d2e;
  color: #f4b233;
  font-size: 20px;
  font-weight: 700;
  border: 3px solid #f4b233;
  box-shadow: 0 4px 14px rgba(244,178,51,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-stars {
  color: #f4b233;
  font-size: 15px;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.card p {
  font-size: 14px;
  color: #555;
  line-height: 1.75;
  font-style: italic;
  margin: 0 0 14px;
}

.card-name {
  font-size: 13px;
  font-weight: 600;
  color: #0f3d2e;
  margin-top: auto;
}

/* ── PROGRAMMES ── */
.programs {
  position: relative;
  padding: 76px 40px 84px;
  overflow: hidden;
}

.programs-bg {
  position: absolute;
  inset: 0;
  background-color: #f2f7ee;
  background-image:
    radial-gradient(ellipse at 8%  85%, rgba(244,178,51,0.07) 0%, transparent 50%),
    radial-gradient(ellipse at 92% 80%, rgba(26,92,66,0.08)   0%, transparent 50%),
    radial-gradient(ellipse at 50% 100%,rgba(180,220,190,0.20) 0%, transparent 60%);
  pointer-events: none;
}

.programs-content {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
}

.program-cards {
  display: flex;
  gap: 22px;
  justify-content: center;
  flex-wrap: wrap;
}

.program {
  background: white;
  width: 238px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #e4ddc8;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.program:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.11);
}

.program-img-wrap {
  width: 100%;
  height: 130px;
  overflow: hidden;
  background: linear-gradient(135deg, #1a5c42, #0f3d2e);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.program-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: absolute;
  inset: 0;
}

.program-img-placeholder {
  font-size: 38px;
  z-index: 1;
  pointer-events: none;
}

/* ── COMING SOON CARD ── */
.program-soon {
  opacity: 0.88;
  position: relative;
}

.program-soon-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #f4b233;
  color: white;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  letter-spacing: 0.5px;
  z-index: 2;
  text-transform: uppercase;
}

.btn-coming-soon {
  background: #d8d0bc;
  color: #888;
  border: none;
  padding: 10px 22px;
  border-radius: 7px;
  font-size: 13px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  cursor: not-allowed;
  width: 100%;
}

.program-header {
  background: #0f3d2e;
  border-top: 3px solid #f4b233;
  padding: 13px 16px;
}

.program-header h3 {
  color: white;
  font-size: 14px;
  font-weight: 600;
  margin: 0;
}

.program-body {
  padding: 16px 18px 20px;
  text-align: center;
}

.program-body p {
  color: #666;
  font-size: 13px;
  margin: 0 0 16px;
  line-height: 1.5;
}

/* ── BUTTONS ── */
.btn-gold {
  background: #f4b233;
  color: white;
  border: none;
  padding: 10px 22px;
  border-radius: 7px;
  font-size: 13px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
}

.btn-gold:hover {
  background: #d49a20;
  transform: translateY(-1px);
}

.btn-gold:active { transform: translateY(0); }

.btn-wide {
  padding: 13px 52px;
  font-size: 15px;
  border-radius: 8px;
}

/* ── CONTACT ── */
.contact {
  padding: 76px 40px;
  background: #faf8f2;
}

.contact-form {
  max-width: 620px;
  margin: 0 auto;
  background: white;
  border: 1px solid #e4ddc8;
  border-radius: 16px;
  padding: 40px 44px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.05);
}

.form-row {
  display: flex;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  flex: 1;
  margin-bottom: 18px;
}

.form-group label {
  font-size: 13px;
  font-weight: 500;
  color: #555;
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea,
.modal select {
  padding: 11px 14px;
  border: 1px solid #d8d0bc;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #333;
  background: #fdfcf8;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
}

.form-group input:focus,
.form-group textarea:focus,
.modal select:focus {
  outline: none;
  border-color: #f4b233;
  box-shadow: 0 0 0 3px rgba(244,178,51,0.12);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-submit {
  text-align: center;
  margin-top: 8px;
}

/* ── FORM STATUS ── */
.form-status {
  text-align: center;
  margin-top: 14px;
  font-size: 14px;
  font-weight: 500;
  min-height: 20px;
}

.form-status.success { color: #1a5c42; }
.form-status.error   { color: #c0392b; }

/* ── FOOTER ── */
footer {
  background: #0a2e20;
  color: white;
  padding: 48px 40px 28px;
}

.footer-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.footer-brand {
  font-size: 22px;
  font-weight: 700;
  color: #f4b233;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

.footer-logo {
  height: 52px;
  width: auto;
  display: block;
  margin: 0 auto 4px;
}

.footer-whatsapp {
  display: flex;
  align-items: center;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 36px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.footer-links a,
.footer-links span {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}

.footer-links a:hover { color: #f4b233; }

.footer-copy {
  color: rgba(255,255,255,0.28);
  font-size: 12px;
  margin: 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
}

/* ── MODAL OVERLAY ── */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10, 30, 20, 0.65);
  backdrop-filter: blur(4px);
  z-index: 500;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-overlay.open { display: flex; }

/* ── MODAL BOX ── */
.modal {
  background: white;
  border-radius: 18px;
  width: 100%;
  max-width: 560px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 40px 44px 36px;
  position: relative;
  box-shadow: 0 32px 80px rgba(0,0,0,0.25);
  animation: modalIn 0.25s ease;
}

@keyframes modalIn {
  from { opacity: 0; transform: translateY(24px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0)    scale(1);    }
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  font-size: 26px;
  color: #aaa;
  cursor: pointer;
  line-height: 1;
  padding: 4px 8px;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
}

.modal-close:hover {
  color: #333;
  background: #fdf5e4;
}

.modal-header {
  text-align: center;
  margin-bottom: 28px;
}

.modal-icon {
  font-size: 36px;
  margin-bottom: 10px;
}

.modal-logo {
  height: 80px;
  width: auto;
  display: block;
  margin: 0 auto;
}

.modal-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: #0f3d2e;
  margin: 0 0 6px;
}

.modal-header p {
  color: #888;
  font-size: 14px;
  margin: 0;
}

.modal .form-group { margin-bottom: 16px; }

.modal select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23f4b233' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-color: #fdfcf8;
}

.modal-submit { width: 100%; margin-top: 8px; }

/* ── RESPONSIVE TABLET (max 960px) ── */
@media (max-width: 960px) {
  .navbar { padding: 0 28px; gap: 24px; }
  .hero-inner { padding: 56px 48px 48px; gap: 32px; }
  .hero-text h1 { font-size: 36px; }
  .hero-img-wrap { width: 360px; }
  .hero-img-wrap img { height: 440px; }
  .nav-menu { gap: 18px; }
}

/* ── RESPONSIVE MOBILE (max 680px) ── */
@media (max-width: 680px) {

  .navbar { padding: 0 20px; height: 60px; gap: 0; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }

  .nav-menu {
    display: none;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    flex-direction: column;
    background: white;
    border-bottom: 2px solid #f4b233;
    padding: 10px 0 18px;
    gap: 0;
    align-items: stretch;
    box-shadow: 0 8px 24px rgba(0,0,0,0.09);
    z-index: 99;
  }

  .nav-menu.open { display: flex; }
  .nav-menu li { width: 100%; }

  .nav-menu a {
    display: block;
    padding: 13px 24px;
    font-size: 15px;
    border-bottom: 1px solid #f5f0e4;
  }

  .nav-menu a::after { display: none; }

  .hero-inner {
    flex-direction: column;
    padding: 44px 24px 36px;
    gap: 32px;
    text-align: center;
  }

  .hero-text h1 { font-size: 28px; }
  .hero-text p  { font-size: 14px; max-width: 100%; }
  .stats { justify-content: center; }
  .hero-cta { justify-content: center; }

  .hero-img-wrap {
    width: 100%;
    max-width: 360px;
    margin: 0 auto;
  }

  .hero-img-wrap img { height: 380px; }

  .testimonials { padding: 64px 20px 52px; }
  .cards { flex-direction: column; align-items: center; }
  .card { width: 100%; max-width: 340px; }

  .programs { padding: 64px 20px 72px; }
  .program-cards { flex-direction: column; align-items: center; }
  .program { width: 100%; max-width: 340px; }

  .contact { padding: 64px 20px; }
  .contact-form { padding: 28px 20px; }
  .form-row { flex-direction: column; gap: 0; }

  footer { padding: 36px 20px 20px; }
  .footer-links { flex-direction: column; gap: 12px; align-items: center; }

  .section-title h2 { font-size: 24px; white-space: normal; }
  .subtitle { white-space: normal; }
  .title-line { max-width: 50px; }

  .modal { padding: 32px 20px 28px; border-radius: 14px; }
  .modal-header h2 { font-size: 19px; }
  .modal .form-row { flex-direction: column; gap: 0; }
}
/* ── PROGRAMME BUTTON GROUP ── */
.program-btn-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.program-btn-group .btn-gold {
  width: 100%;
}

.btn-outline-program {
  width: 100%;
  background: transparent;
  color: #0f3d2e;
  border: 1.5px solid #0f3d2e;
  padding: 9px 22px;
  border-radius: 7px;
  font-size: 13px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.btn-outline-program:hover {
  background: #0f3d2e;
  color: white;
}

/* ── DETAILS MODAL BODY ── */
.details-body {
  margin-bottom: 24px;
}

.details-section {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #f0ebe0;
}

.details-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.details-section h4 {
  font-family: 'Playfair Display', serif;
  font-size: 15px;
  color: #0f3d2e;
  margin: 0 0 10px;
}

.details-section p {
  font-size: 14px;
  color: #555;
  line-height: 1.7;
  margin: 0;
}

.details-section ul {
  margin: 0;
  padding-left: 18px;
}

.details-section ul li {
  font-size: 14px;
  color: #555;
  line-height: 1.8;
}

.details-coming-soon-note {
  background: rgba(244,178,51,0.1);
  border: 1px solid rgba(244,178,51,0.35);
  border-radius: 10px;
  padding: 14px 16px !important;
}

.details-coming-soon-note p {
  color: #8a6200 !important;
  font-weight: 500;
}

/* ── DETAILS MODAL FOOTER ── */
.details-footer {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  border-top: 1px solid #f0ebe0;
  padding-top: 20px;
  margin-top: 4px;
}

.btn-outline-modal {
  background: transparent;
  color: #666;
  border: 1.5px solid #ccc;
  padding: 11px 24px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}

.btn-outline-modal:hover {
  border-color: #888;
  color: #333;
}

@media (max-width: 680px) {
  .details-footer {
    flex-direction: column-reverse;
  }

  .btn-outline-modal {
    width: 100%;
    text-align: center;
  }
}
/* ── WHATSAPP NAV BUTTON ── */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
  flex-shrink: 0;
}

.btn-whatsapp-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #25D366;
  color: white;
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  transition: background 0.2s, transform 0.1s;
  white-space: nowrap;
}

.btn-whatsapp-nav:hover {
  background: #1ebe5a;
  transform: translateY(-1px);
}

/* ── FOOTER INSTAGRAM ── */
.footer-insta {
  display: flex;
  align-items: center;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}

.footer-insta:hover {
  color: #f4b233;
}

/* ── PROGRAMME BUTTON GROUP ── */
.program-btn-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.program-btn-group .btn-gold {
  width: 100%;
}

.btn-outline-program {
  width: 100%;
  background: transparent;
  color: #0f3d2e;
  border: 1.5px solid #0f3d2e;
  padding: 9px 22px;
  border-radius: 7px;
  font-size: 13px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.btn-outline-program:hover {
  background: #0f3d2e;
  color: white;
}

/* ── DETAILS MODAL BODY ── */
.details-body {
  margin-bottom: 24px;
}

.details-section {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #f0ebe0;
}

.details-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.details-section h4 {
  font-family: 'Playfair Display', serif;
  font-size: 15px;
  color: #0f3d2e;
  margin: 0 0 10px;
}

.details-section p {
  font-size: 14px;
  color: #555;
  line-height: 1.7;
  margin: 0;
}

.details-section ul {
  margin: 0;
  padding-left: 18px;
}

.details-section ul li {
  font-size: 14px;
  color: #555;
  line-height: 1.9;
}

.details-coming-soon-note {
  background: rgba(244,178,51,0.1);
  border: 1px solid rgba(244,178,51,0.35);
  border-radius: 10px;
  padding: 14px 16px !important;
}

.details-coming-soon-note p {
  color: #8a6200 !important;
  font-weight: 500;
}

/* ── DETAILS MODAL FOOTER ── */
.details-footer {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  border-top: 1px solid #f0ebe0;
  padding-top: 20px;
}

.btn-outline-modal {
  background: transparent;
  color: #666;
  border: 1.5px solid #ccc;
  padding: 11px 24px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}

.btn-outline-modal:hover {
  border-color: #888;
  color: #333;
}

/* ── MOBILE UPDATES ── */
@media (max-width: 960px) {
  .nav-actions { gap: 8px; }
  .btn-whatsapp-nav { padding: 7px 12px; font-size: 12px; }
}

@media (max-width: 680px) {
  .nav-actions { display: none; }

  .nav-menu.open ~ .nav-actions,
  .nav-menu.open + .nav-actions {
    display: none;
  }

  .details-footer {
    flex-direction: column-reverse;
  }

  .btn-outline-modal {
    width: 100%;
    text-align: center;
  }
}
/* ── FOOTER SOCIAL BUTTONS ── */
.footer-social {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-bottom: 24px;
}

.footer-social-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, opacity 0.2s ease;
  flex-shrink: 0;
}

.footer-social-btn:hover {
  transform: translateY(-3px);
  opacity: 0.88;
}

.footer-social-wa {
  background: #25D366;
  color: white;
}

.footer-social-email {
  background: #f4b233;
  color: white;
}

.footer-social-insta {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
  color: white;
}