/* ── HERO ── */
.hero {
  min-height: 100vh;
  background: var(--navy);
  display: flex; align-items: center;
  padding: 4rem 2rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(800px circle at 110% -10%, rgba(28,170,90,0.14) 0%, transparent 55%),
    radial-gradient(800px circle at -10% -10%, rgba(27,58,125,0.18) 0%, transparent 55%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--green), var(--yellow), var(--green));
}
.hero-inner {
  max-width: 1400px; margin: 0 auto; width: 100%;
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 1.4fr;
  gap: 4rem;
  align-items: center;
  padding: 0 3rem;
}
.hero-profile {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
.hero-logo {
  width: 220px;
  height: auto;
  filter: drop-shadow(0 10px 30px rgba(28,170,90,0.3));
}
.hero-photo {
  max-width: 100%;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  border: 4px solid var(--green);
  box-shadow: 0 20px 60px rgba(28,170,90,0.25);
  position: relative;
}
.hero-photo img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}
.vfa-award {
  background: linear-gradient(135deg, rgba(255,215,0,0.15) 0%, rgba(28,170,90,0.15) 100%);
  border: 2px solid var(--yellow);
  border-radius: 12px;
  padding: 1.2rem;
  text-align: center;
  margin-top: 1.5rem;
}
.vfa-award-title {
  font-family: var(--display);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--yellow);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
}
.vfa-award-subtitle {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 0.8rem;
  line-height: 1.5;
}
.vfa-award-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--yellow);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 600;
  transition: color 0.2s;
}
.vfa-award-link:hover {
  color: #fff;
}
.hero-content {
  display: flex;
  flex-direction: column;
}
.hero h1 {
  font-family: var(--display);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 700; line-height: 1.2;
  color: #fff;
  letter-spacing: -0.03em;
  margin-bottom: 0.5rem;
}
.hero-credentials {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 2rem;
}
.credential-badge {
  color: var(--yellow);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.03em;
}
.credential-divider {
  color: rgba(255,255,255,0.3);
  font-size: 0.85rem;
}
.hero-sub {
  font-size: 1.1rem; color: rgba(255,255,255,0.75);
  max-width: 600px; margin-bottom: 2.5rem;
  line-height: 1.8;
}
.hero-sub em {
  color: var(--yellow);
  font-style: normal;
  font-weight: 600;
}
.hero-actions {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.btn-primary {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: var(--green); color: #fff;
  font-family: var(--display);
  font-weight: 600; font-size: 1rem;
  padding: 1.1rem 2.4rem; border-radius: 8px;
  text-decoration: none;
  transition: all 0.2s;
  border: none; cursor: pointer;
  box-shadow: 0 10px 30px rgba(28,170,90,0.3);
  overflow: visible;
}
.btn-primary svg, .btn-secondary svg { flex-shrink: 0; }
.btn-primary:hover {
  background: var(--blue);
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(27,58,125,0.4);
}
.btn-secondary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: transparent;
  color: #fff;
  font-family: var(--display);
  font-weight: 600; font-size: 1rem;
  padding: 1rem 2.2rem; border-radius: 8px;
  text-decoration: none; border: 2px solid var(--yellow);
  transition: all 0.2s;
}
.btn-secondary:hover {
  background: var(--yellow);
  color: var(--navy);
  transform: translateY(-2px);
}
.hero-stats {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
  padding-top: 2rem;
  border-top: 1px solid rgba(28,170,90,0.3);
  justify-content: flex-start;
}
.hero-stat {
  display: flex; flex-direction: column;
}
.hero-stat strong {
  font-family: var(--display);
  font-size: 2.2rem; font-weight: 700;
  color: var(--yellow);
  line-height: 1;
  margin-bottom: 0.3rem;
}
.hero-stat span {
  font-size: 0.85rem; color: rgba(255,255,255,0.6);
  text-transform: uppercase; letter-spacing: 0.08em;
  font-weight: 500;
}

/* ── SECTION SHARED ── */
section { padding: 5rem 2rem; scroll-margin-top: 64px; }

/* ── SERVICES ── */
/* One full-width row per service: icon | description | price + booking. */
.services { background: var(--off-white); }
.services-list {
  display: flex; flex-direction: column;
  gap: 1.5rem;
}
.service-row {
  display: grid;
  grid-template-columns: auto 1fr minmax(240px, 280px);
  gap: 2rem;
  align-items: start;
  background: var(--card-white);
  border-radius: 12px;
  padding: 2.4rem;
  border: 1px solid var(--border);
  transition: box-shadow 0.25s, transform 0.2s;
  scroll-margin-top: 84px;
}
.service-row:hover {
  box-shadow: 0 8px 30px rgba(22,34,66,0.08);
  transform: translateY(-3px);
}
.service-icon {
  width: 48px; height: 48px;
  background: var(--navy);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
}
.service-icon svg { width: 24px; height: 24px; }
.service-tag {
  display: inline-block;
  margin-bottom: 0.5rem;
  font-size: 0.78rem; font-weight: 600;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.service-row h3 {
  font-family: var(--display);
  font-size: 1.35rem; font-weight: 600;
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}
.service-row p {
  color: var(--text-secondary);
  font-size: 0.95rem; line-height: 1.7;
}
.service-body p + p,
.service-body .service-points + p { margin-top: 0.8rem; }
.service-points {
  list-style: none;
  margin-top: 0.9rem;
  display: flex; flex-direction: column; gap: 0.45rem;
}
.service-points li {
  display: flex; align-items: flex-start; gap: 0.55rem;
  font-size: 0.93rem; color: var(--text-primary);
}
.service-points svg { color: var(--green); flex-shrink: 0; margin-top: 0.2rem; }
.service-points strong { font-weight: 600; }
.service-aside {
  display: flex; flex-direction: column; align-items: stretch;
  gap: 0.8rem;
  padding-left: 2rem;
  border-left: 1px solid var(--border);
}
.service-row .service-price {
  font-family: var(--display);
  color: var(--text-secondary); font-size: 0.95rem;
  line-height: 1.2;
}
.service-price strong {
  font-size: 2.2rem; font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}
.service-price strong.price-text { font-size: 1.6rem; }
.service-row .service-note { font-size: 0.88rem; line-height: 1.5; }
.service-aside .btn-primary {
  justify-content: center;
  padding: 0.9rem 1.4rem;
  font-size: 0.95rem;
  box-shadow: none;
  margin-top: 0.4rem;
}
.service-link {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  color: var(--green); text-decoration: none;
  font-weight: 600; font-size: 0.9rem;
}
.service-link:hover { text-decoration: underline; }
@media (max-width: 860px) {
  .service-row { grid-template-columns: auto 1fr; gap: 1.5rem; padding: 2rem 1.6rem; }
  .service-aside {
    grid-column: 1 / -1;
    padding-left: 0; padding-top: 1.5rem;
    border-left: none; border-top: 1px solid var(--border);
  }
}
@media (max-width: 480px) {
  .service-row { grid-template-columns: 1fr; }
}

/* ── BRIDGE DIVIDER ── */
.bridge-divider {
  background: var(--navy);
  padding: 4rem 2rem;
  text-align: center;
  position: relative;
}
.bridge-divider::before,
.bridge-divider::after {
  content: '';
  position: absolute; left: 50%; transform: translateX(-50%);
  width: 120px; height: 3px;
  background: var(--yellow);
}
.bridge-divider::before { top: 0; }
.bridge-divider::after { bottom: 0; }
.bridge-quote {
  font-family: var(--display);
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  color: rgba(255,255,255,0.9);
  font-weight: 500;
  max-width: 700px; margin: 0 auto;
  letter-spacing: -0.01em;
  line-height: 1.5;
}
.bridge-quote em {
  font-style: normal;
  color: var(--yellow);
}

/* ── ABOUT ── */
.about { background: var(--off-white); }
.about .section-label { text-align: center; }
.about-content { max-width: 800px; margin: 0 auto; }
.about-photo-wrap {
  display: flex;
  justify-content: center;
  margin: 1.5rem 0;
}
.about-photo-wrap img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  border: 4px solid var(--green);
  box-shadow: 0 8px 30px rgba(28,170,90,0.2);
}
.about-content h2 {
  text-align: center;
  font-family: var(--display);
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  font-weight: 700; line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}
.about-content p {
  color: var(--text-secondary);
  font-size: 1rem; line-height: 1.8;
  margin-bottom: 1.2rem;
}
.about-content .about-linkedin { text-align: center; margin: 2rem 0 0; }
.about-linkedin a {
  display: inline-flex; align-items: center; gap: 0.6rem;
  color: var(--green); text-decoration: none; font-weight: 600;
}
.about-linkedin a:hover { text-decoration: underline; }
@media (max-width: 600px) {
  .about-photo-wrap img { width: 140px; height: 140px; }
}

/* ── TESTIMONIALS ── */
.testimonials { background: var(--card-white); }
.testimonials-more { text-align: center; margin-top: 3rem; }

/* ── HOW IT WORKS ── */
.process { background: var(--off-white); }
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(220px, 100%), 1fr));
  gap: 2rem;
  margin-top: 2rem;
}
.process-step {
  text-align: center;
  padding: 1.5rem 1rem;
}
.step-number {
  font-family: var(--display);
  font-size: 2.5rem; font-weight: 700;
  color: var(--green);
  line-height: 1;
  margin-bottom: 1rem;
}
.process-step h3 {
  font-family: var(--display);
  font-size: 1.05rem; font-weight: 600;
  margin-bottom: 0.6rem;
}
.process-step p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ── CTA ── */
.cta-section {
  background: var(--navy);
  padding: 5rem 2rem;
  text-align: center;
  position: relative;
}
.cta-section::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--green), var(--yellow), var(--green));
}
.cta-section h2 {
  font-family: var(--display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700; color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}
.cta-section p {
  color: rgba(255,255,255,0.65);
  font-size: 1.05rem;
  max-width: 500px; margin: 0 auto 2.5rem;
  line-height: 1.7;
}

/* ── CONTACT FORM ── */
.contact { background: var(--off-white); }
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: start;
}
.contact-info h2 {
  font-family: var(--display);
  font-size: 1.8rem; font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}
.contact-info p {
  color: var(--text-secondary);
  font-size: 0.95rem; line-height: 1.7;
  margin-bottom: 2rem;
}
.contact-detail {
  display: flex; align-items: center; gap: 0.75rem;
  margin-bottom: 1rem;
}
.contact-detail-icon {
  width: 40px; height: 40px;
  background: rgba(22,34,66,0.06);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-detail-icon svg { width: 18px; height: 18px; color: var(--navy); }
.contact-detail-text {
  font-size: 0.9rem;
  color: var(--text-secondary);
}
.contact-detail-text strong {
  display: block;
  color: var(--text-primary);
  font-size: 0.85rem;
}
.contact-detail-text a { color: var(--green); text-decoration: none; font-weight: 600; }
.contact-detail-text a:not(:last-child) { display: block; margin-bottom: 0.3rem; }
.contact-detail-icon.icon-linkedin { background: #0A66C2; }
.contact-detail-icon.icon-instagram { background: linear-gradient(45deg, #F58529 0%, #DD2A7B 50%, #8134AF 78%, #515BD4 100%); }
.contact-detail-icon.icon-youtube { background: #FF0000; }

/* Separates the "how to reach me" rows from the "where to follow" rows. */
.contact-social-label {
  font-family: var(--display);
  font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--text-light);
  border-top: 1px solid var(--border);
  padding-top: 1.6rem;
  margin: 1.8rem 0 1rem;
}
.contact-form {
  background: var(--card-white);
  border-radius: 14px;
  padding: 2.5rem;
  border: 1px solid var(--border);
  box-shadow: 0 4px 20px rgba(28,170,90,0.08);
}
.form-group { display: grid; gap: 0.5rem; margin-bottom: 1.2rem; }
.form-group label {
  display: block;
  font-size: 0.85rem; font-weight: 600;
  margin-bottom: 0.4rem;
  color: var(--text-primary);
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid #ddd;
  border-radius: 8px;
  font-family: var(--body);
  font-size: 0.9rem;
  color: var(--text-primary);
  background: #fafafa;
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--green);
  background: #fff;
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin: 1.5rem 0;
  font-size: 0.9rem;
  color: var(--text-secondary);
}
.form-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  cursor: pointer;
  accent-color: var(--green);
}
.form-checkbox label { margin: 0; cursor: pointer; }
.form-checkbox a {
  color: var(--green);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}
.form-checkbox a:hover { color: var(--blue); }
.privacy-notice {
  background: rgba(28,170,90,0.05);
  border-left: 4px solid var(--green);
  padding: 1rem;
  border-radius: 6px;
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-top: 1rem;
}
.privacy-notice a {
  color: var(--green);
  text-decoration: none;
  font-weight: 600;
}
.privacy-notice a:hover { text-decoration: underline; }
.form-submit {
  width: 100%;
  margin-top: 0.5rem;
  padding: 1.1rem 2.4rem !important;
  justify-content: center;
}
.form-submit svg {
  width: 18px;
  height: 18px;
}

/* ── RESPONSIVE ── */
@media (max-width: 992px) {
  .hero { min-height: auto; padding: 6.5rem 1.5rem 2rem; }
  .hero-inner { grid-template-columns: 1fr; gap: 2rem; text-align: center; padding: 0 1rem; }
  .hero-profile { align-items: center; }
  .hero-logo { width: 160px; }
  .hero-photo { max-width: 280px; margin: 0 auto; }
  .hero h1 { font-size: 2rem; }
  .hero-credentials { justify-content: center; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; gap: 1.5rem; }
  .contact-layout { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .btn-primary, .btn-secondary { justify-content: center; width: 100%; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
}
