  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --green:        #2f5f4f;
    --green-dark:   #1e3d32;
    --green-soft:   #4a7c6a;
    --gold:         #c9a961;
    --gold-warm:    #d4b97a;
    --cream:        #fdf8f2;
    --warm-white:   #ffffff;
    --warm-gray:    #f2ede6;
    --text:         #2c2c2c;
    --text-soft:    #5c5c5c;
    --text-muted:   #9a9a9a;
    --border:       rgba(47,95,79,0.12);
  }

  body {
    background: var(--cream);
    font-family: 'Nunito', sans-serif;
    color: var(--text);
    line-height: 1.6;
  }

  /* ── HEADER ── */
  .header {
    background: var(--warm-white);
    border-bottom: 1px solid var(--border);
    padding: 20px 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  }

  .header img.logo {
    height: 130px;
    width: auto;
  }

  .header-nav {
    display: flex;
    gap: 12px;
    align-items: center;
  }

  .nav-btn {
    padding: 10px 22px;
    border-radius: 50px;
    font-family: 'Nunito', sans-serif;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: all 0.2s ease;
    display: inline-block;
  }

  .nav-btn.outline {
    border: 2px solid var(--green);
    color: var(--green);
    background: transparent;
  }

  .nav-btn.outline:hover {
    background: var(--green);
    color: white;
  }

  .nav-btn.solid {
    background: var(--gold);
    color: var(--green-dark);
    border: 2px solid var(--gold);
  }

  .nav-btn.solid:hover {
    background: var(--gold-warm);
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(201,169,97,0.4);
  }

  /* ── HERO ── */
  .hero {
    background: linear-gradient(160deg, var(--green-dark) 0%, var(--green) 100%);
    padding: 80px 48px 72px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  .hero::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0; right: 0;
    height: 60px;
    background: var(--cream);
    clip-path: ellipse(55% 100% at 50% 100%);
  }

  .hero-inner { position: relative; z-index: 1; max-width: 680px; margin: 0 auto; }

  .hero-tag {
    display: inline-block;
    background: rgba(201,169,97,0.18);
    border: 1px solid rgba(201,169,97,0.4);
    color: var(--gold-warm);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 6px 18px;
    border-radius: 50px;
    margin-bottom: 28px;
  }

  .hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(36px, 5.5vw, 58px);
    font-weight: 400;
    color: var(--warm-white);
    line-height: 1.2;
    margin-bottom: 20px;
  }

  .hero h1 em {
    font-style: italic;
    color: var(--gold-warm);
  }

  .hero p {
    font-size: 16px;
    font-weight: 400;
    color: rgba(255,255,255,0.72);
    max-width: 480px;
    margin: 0 auto 36px;
    line-height: 1.8;
  }

  .hero-cta-row {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
  }

  .cta-btn {
    padding: 14px 32px;
    border-radius: 50px;
    font-family: 'Nunito', sans-serif;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: all 0.25s ease;
    display: inline-block;
  }

  .cta-btn.primary {
    background: var(--gold);
    color: var(--green-dark);
    box-shadow: 0 4px 20px rgba(201,169,97,0.4);
  }

  .cta-btn.primary:hover {
    background: var(--gold-warm);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(201,169,97,0.5);
  }

  .cta-btn.ghost {
    background: transparent;
    color: white;
    border: 2px solid rgba(255,255,255,0.45);
  }

  .cta-btn.ghost:hover {
    border-color: white;
    background: rgba(255,255,255,0.1);
  }

  /* ── INTRO STRIP ── */
  .intro-strip {
    background: var(--warm-white);
    padding: 36px 48px;
    text-align: center;
    border-bottom: 1px solid var(--border);
  }

  .intro-strip p {
    font-size: 17px;
    font-weight: 400;
    color: var(--text-soft);
    max-width: 620px;
    margin: 0 auto;
    line-height: 1.8;
  }

  .intro-strip p strong {
    color: var(--green);
    font-weight: 700;
  }

  /* ── CARDS SECTION ── */
  .cards-section {
    max-width: 860px;
    margin: 0 auto;
    padding: 72px 32px;
    display: flex;
    flex-direction: column;
    gap: 40px;
  }

  .card {
    background: var(--warm-white);
    border-radius: 20px;
    padding: 44px;
    box-shadow: 0 4px 30px rgba(47,95,79,0.07);
    border: 1px solid var(--border);
    opacity: 0;
    transform: translateY(28px);
    animation: fadeUp 0.65s ease forwards;
    transition: box-shadow 0.3s, transform 0.3s;
    position: relative;
  }

  .card:hover {
    box-shadow: 0 10px 48px rgba(47,95,79,0.13);
    transform: translateY(-3px);
  }

  .card:nth-child(1) { animation-delay: 0.1s; }
  .card:nth-child(2) { animation-delay: 0.25s; }
  .card:nth-child(3) { animation-delay: 0.4s; }

  /* green left accent */
  .card::before {
    content: '';
    position: absolute;
    left: 0; top: 28px; bottom: 28px;
    width: 4px;
    background: linear-gradient(180deg, var(--gold), var(--green));
    border-radius: 0 4px 4px 0;
  }

  .card-top {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 28px;
  }

  .photo-ring {
    width: 80px;
    height: 130px;
    border-radius: 50%;
    border: 3px solid var(--gold);
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 4px 16px rgba(201,169,97,0.25);
  }

  .photo-ring img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
  }

  .person-info { flex: 1; }

  .person-name {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--green-dark);
    margin-bottom: 4px;
  }

  .person-title {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-soft);
    letter-spacing: 0.5px;
    line-height: 1.5;
  }

  .person-date {
    font-size: 11px;
    color: var(--text-muted);
    margin-top: 4px;
  }

  .stars {
    display: flex;
    gap: 3px;
    margin-top: 8px;
  }

  .star {
    width: 14px;
    height: 14px;
    background: var(--gold);
    clip-path: polygon(50% 0%,61% 35%,98% 35%,68% 57%,79% 91%,50% 70%,21% 91%,32% 57%,2% 35%,39% 35%);
  }

  .quote-badge {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--green-dark), var(--green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    align-self: flex-start;
  }

  .quote-badge svg {
    width: 18px;
    height: 18px;
    fill: var(--gold);
  }

  .quote-text {
    font-size: 15.5px;
    line-height: 1.85;
    color: var(--text-soft);
    font-weight: 400;
  }

  .quote-text p + p { margin-top: 14px; }

  .card-footer {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
  }

  .relationship-tag {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--green-soft);
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .relationship-tag::before {
    content: '';
    width: 18px;
    height: 2px;
    background: var(--gold);
  }

  .linkedin-badge {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 5px;
  }

  .linkedin-dot {
    width: 8px;
    height: 8px;
    background: #0077b5;
    border-radius: 2px;
    display: inline-block;
  }

  /* ── MID CTA BANNER ── */
  .mid-cta {
    background: linear-gradient(135deg, var(--warm-gray) 0%, #ede6da 100%);
    margin: 0 32px;
    border-radius: 24px;
    padding: 52px 48px;
    text-align: center;
    border: 1px solid rgba(201,169,97,0.2);
    animation: fadeUp 0.7s ease 0.5s both;
  }

  .mid-cta-wrap {
    max-width: 860px;
    margin: 0 auto;
    padding: 0 32px 20px;
  }

  .mid-cta h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(26px, 4vw, 38px);
    font-weight: 400;
    color: var(--green-dark);
    margin-bottom: 14px;
  }

  .mid-cta h2 em {
    font-style: italic;
    color: var(--green-soft);
  }

  .mid-cta p {
    font-size: 15px;
    color: var(--text-soft);
    max-width: 480px;
    margin: 0 auto 32px;
    line-height: 1.8;
  }

  .mid-cta-btns {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
  }

  .cta-btn.green {
    background: var(--green);
    color: white;
    box-shadow: 0 4px 20px rgba(47,95,79,0.25);
  }

  .cta-btn.green:hover {
    background: var(--green-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(47,95,79,0.35);
  }

  .cta-btn.gold-outline {
    background: transparent;
    color: var(--green-dark);
    border: 2px solid var(--gold);
  }

  .cta-btn.gold-outline:hover {
    background: var(--gold);
    transform: translateY(-2px);
  }

  /* ── BOTTOM CTA ── */
  .bottom-cta {
    background: linear-gradient(160deg, var(--green-dark) 0%, var(--green) 100%);
    padding: 80px 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-top: 20px;
  }

  .bottom-cta::before {
    content: '';
    position: absolute;
    top: -1px; left: 0; right: 0;
    height: 60px;
    background: var(--cream);
    clip-path: ellipse(55% 100% at 50% 0%);
  }

  .bottom-cta-inner {
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin: 0 auto;
  }

  .bottom-cta img.logo-sm {
    height: 90px;
    width: auto;
    mix-blend-mode: lighten;
    filter: brightness(1.1);
    margin-bottom: 28px;
  }

  .bottom-cta h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 4.5vw, 44px);
    font-weight: 400;
    color: var(--warm-white);
    margin-bottom: 16px;
    line-height: 1.2;
  }

  .bottom-cta h2 em {
    font-style: italic;
    color: var(--gold-warm);
  }

  .bottom-cta p {
    font-size: 15px;
    color: rgba(255,255,255,0.68);
    margin-bottom: 36px;
    line-height: 1.8;
    max-width: 460px;
    margin-left: auto;
    margin-right: auto;
  }

  .bottom-cta-btns {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 36px;
  }

  .tagline-final {
    font-family: 'Playfair Display', serif;
    font-size: 15px;
    font-style: italic;
    color: rgba(255,255,255,0.4);
    letter-spacing: 0.5px;
  }

  .tagline-final em { color: var(--gold-warm); font-style: italic; }

  /* ── PAGE FOOTER ── */
  .page-footer {
    background: var(--green-dark);
    border-top: 2px solid rgba(201,169,97,0.3);
    padding: 24px 48px;
    text-align: center;
    font-size: 12px;
    color: rgba(255,255,255,0.3);
    letter-spacing: 1px;
  }

  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  @media (max-width: 680px) {
    .header { padding: 14px 20px; flex-wrap: wrap; gap: 12px; }
    .header img.logo { height: 60px; }
    .hero { padding: 56px 24px 64px; }
    .cards-section { padding: 48px 16px; }
    .card { padding: 32px 28px; }
    .mid-cta-wrap, .mid-cta { margin: 0; border-radius: 0; }
    .bottom-cta { padding: 64px 24px; }
  }






.packages-hero{
    padding:80px 0;
    background:#f7f6f3;
	min-height: 100vh;
}

.container{
    max-width:1200px;
    margin:auto;
    padding:0 20px;
}

.hero-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    align-items:center;
    gap:60px;
}

/* Image */

.hero-image img{
    width:100%;
    height:auto;
    border-radius:6px;
}

/* Logo Circle */

.hero-logo{
    margin-bottom:20px;
}

.circle{
    width:120px;
    height:120px;
    border:3px solid #2f5d50;
    border-radius:50%;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
}

.logo-title{
    font-weight:700;
    color:#2f5d50;
    font-size:18px;
    letter-spacing:2px;
}

.logo-sub{
    font-size:10px;
    color:#8c7a5a;
}

/* Tagline */

.tagline{
    color:#6c7a6e;
    font-style:italic;
    margin-bottom:10px;
}

/* Heading */

.hero-content h1{
    font-size:52px;
    line-height:1.2;
    font-family:serif;
    color:#2f5d50;
    margin-bottom:20px;
}

.hero-content h1 span{
    font-style:italic;
}

/* Description */

.description{
    color:#444;
    line-height:1.7;
    margin-bottom:10px;
}

.quote{
    font-style:italic;
    color:#2f5d50;
    margin-bottom:30px;
}

/* Buttons */

.hero-buttons{
    display:flex;
    gap:20px;
}

.btn{
    padding:14px 28px;
    text-decoration:none;
    font-size:15px;
    border-radius:4px;
    transition:0.3s;
}

.btn.primary{
    background:#2f5d50;
    color:#fff;
}

.btn.primary:hover{
    background:#244a40;
}

.btn.outline{
    border:1px solid #2f5d50;
    color:#2f5d50;
}

.btn.outline:hover{
    background:#2f5d50;
    color:#fff;
}

/* Responsive */

@media (max-width:900px){

.hero-grid{
    grid-template-columns:1fr;
}

.hero-content{
    text-align:center;
}

.hero-buttons{
    justify-content:center;
}

}



section.packages-hero {
    background-size: 50% !important;
    background-repeat: no-repeat !important;
}

.hero-content .hero-logo img {
    width: 250px;
}

.hero-content h1 {
	font-family: "Reckless Wide XL-TRIAL", Sans-serif;
    font-size: 55px;
    font-weight: 500;
    font-style: italic;
}

.hero-content p {
    font-family: "DM Sans", Sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 26px;
    color: #474747;
}

.hero-content p.quote {
    font-size: 18px;
    font-weight: 600;
    font-style: italic;
    letter-spacing: 2px;
    color: #2A4F3F;
    font-family: "Reckless Wide XL-TRIAL", Sans-serif;
}

.hero-grid {
    display: flex;
}

.hero-grid .hero-image {
    width: 50%;
}

.hero-content {
    width: 50%;
    padding-left: 50px;
}

section.packages-hero .container {
    max-width: 1600px;
}

.hero-grid a.btn.primary {
    background-color: var(--e-global-color-primary);
    font-family: "Reckless Wide S-TRIAL", Sans-serif;
    font-size: 17px;
    line-height: 25px;
    fill: var(--e-global-color-accent);
    color: var(--e-global-color-accent);
    border-radius: 5px 5px 5px 5px;
    padding: 10px 30px 10px 30px;
    max-height: 45px;
}

.hero-grid a.btn.outline {
    background-color: #2A4F3F00;
    font-family: "Reckless Wide S-TRIAL", Sans-serif;
    font-size: 17px;
    text-transform: capitalize;
    line-height: 25px;
    fill: var(--e-global-color-primary);
    color: var(--e-global-color-primary);
    border-style: solid;
    border-width: 1px 1px 1px 1px;
    border-color: var(--e-global-color-primary);
    border-radius: 5px 5px 5px 5px;
    padding: 10px 30px 10px 30px;
    max-height: 45px;
}
.hero-content h1 span {
    color: #3d7a66;
}

body.page-template-testimonials-php a.elementor-item {
    color: #305f4f !important;
    font-size: 18px !important;
}
section.packages-hero:before {
    content: '';
    position: absolute;
    width: 50%;
    background-color: transparent;
    --background-overlay: '';
    background-image: linear-gradient(90deg, #02010100 66%, #FAF8F5 100%);
    height: 100vh;
    left: 0;
    top: 0;
	opacity: 0;
}
.hero-content {
	width: 60%;
}

.hero-content h1 {
    max-width: 600px;
}

section.packages-hero {
    background-size: 50% !important;
}