  *, *::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: 16px 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: 160px; 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: 24px;
  }
  .hero h1 {
    font-family: 'Playfair Display', serif; font-size: clamp(34px, 5vw, 56px);
    font-weight: 400; color: white; line-height: 1.2; margin-bottom: 18px;
  }
  .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: 500px; margin: 0 auto; line-height: 1.8; }

  /* SELECTOR */
  .selector-section {
    background: var(--warm-white); padding: 40px 48px;
    border-bottom: 1px solid var(--border); text-align: center;
  }
  .selector-label {
    font-size: 13px; font-weight: 700; letter-spacing: 2px;
    text-transform: uppercase; color: var(--text-muted); margin-bottom: 16px;
  }
  .dropdown-wrap {
    display: inline-flex; align-items: center;
    background: var(--warm-white); border: 2px solid var(--green);
    border-radius: 50px; overflow: hidden;
    box-shadow: 0 4px 20px rgba(47,95,79,0.12);
  }
  .track-btn {
    padding: 14px 36px; font-family: 'Nunito', sans-serif;
    font-size: 15px; font-weight: 700; cursor: pointer;
    border: none; background: transparent; color: var(--green);
    transition: all 0.25s ease; letter-spacing: 0.5px;
    display: flex; align-items: center; gap: 8px;
  }
  .track-btn.active { background: var(--green); color: white; }
  .track-btn:first-child { border-right: 2px solid var(--green); }
  .track-btn:hover:not(.active) { background: rgba(47,95,79,0.06); }
  .selector-sub { margin-top: 14px; font-size: 14px; color: var(--text-soft); }

  /* TRACK PANELS */
  .track-panel { display: none; }
  .track-panel.active { display: block; }

  /* SECTION INTRO */
  .section-intro {
    max-width: 700px; margin: 0 auto;
    padding: 60px 32px 40px; text-align: center;
  }
  .section-intro h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(26px, 4vw, 38px); font-weight: 400;
    color: var(--green-dark); margin-bottom: 14px;
  }
  .section-intro h2 em { font-style: italic; color: var(--green-soft); }
  .section-intro p { font-size: 15px; color: var(--text-soft); line-height: 1.85; }

  /* PACKAGE GRID */
  .packages-grid {
    max-width: 1140px; margin: 0 auto;
    padding: 0 32px 80px; display: grid; gap: 28px;
  }
  .packages-grid.individual { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
  .packages-grid.org { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.note-box p {display: inline-block;}
  .pkg-card {
    background: var(--warm-white); border-radius: 20px;
    padding: 36px 30px; border: 2px solid var(--border);
    box-shadow: 0 4px 24px rgba(47,95,79,0.07);
    display: flex; flex-direction: column; gap: 18px;
    position: relative; transition: transform 0.3s, box-shadow 0.3s;
    opacity: 0; animation: fadeUp 0.6s ease forwards;
  }
  .pkg-card:hover { transform: translateY(-5px); box-shadow: 0 12px 40px rgba(47,95,79,0.14); }
  .pkg-card:nth-child(1) { animation-delay: 0.1s; }
  .pkg-card:nth-child(2) { animation-delay: 0.2s; }
  .pkg-card:nth-child(3) { animation-delay: 0.3s; }
  .pkg-card:nth-child(4) { animation-delay: 0.4s; }

  .pkg-card.featured { border-color: var(--gold); box-shadow: 0 8px 36px rgba(201,169,97,0.2); }

  .popular-badge {
    position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
    background: var(--gold); color: var(--green-dark);
    font-size: 10px; font-weight: 800; letter-spacing: 2px;
    text-transform: uppercase; padding: 5px 18px; border-radius: 50px; white-space: nowrap;
  }

  /* SVG Icon */
  .pkg-icon {
    width: 52px; height: 52px; border-radius: 14px;
    background: linear-gradient(135deg, var(--green-dark), var(--green));
    display: flex; align-items: center; justify-content: center;
  }
  .pkg-card.featured .pkg-icon { background: linear-gradient(135deg, #b8942e, var(--gold)); }
  .pkg-icon svg { width: 26px; height: 26px; fill: none; stroke: white; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
  .pkg-card.featured .pkg-icon svg { stroke: var(--green-dark); }

  .pkg-name { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 700; color: var(--green-dark); }
  .pkg-duration { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--text-muted); margin-top: 2px; }

  .pkg-price { display: flex; align-items: baseline; gap: 4px; }
  .price-amount { font-size: 34px; font-weight: 800; color: var(--green-dark); line-height: 1; }
  .price-free { font-size: 28px; font-weight: 800; color: var(--green-soft); line-height: 1; }
  .price-suffix { font-size: 13px; color: var(--text-muted); font-weight: 600; }
  .price-total { font-size: 12px; color: var(--text-muted); font-weight: 500; margin-top: 3px; }
  .price-rate { font-size: 11px; color: var(--green-soft); font-weight: 600; margin-top: 2px; letter-spacing: 0.3px; }

  .pkg-divider { height: 1px; background: var(--border); }
  .pkg-desc { font-size: 14px; color: var(--text-soft); line-height: 1.75; }

  .pkg-features { list-style: none; display: flex; flex-direction: column; gap: 10px; flex: 1; }
  .pkg-features li {
    font-size: 13.5px; color: var(--text-soft);
    display: flex; align-items: flex-start; gap: 10px; line-height: 1.5;
  }
  .check {
    width: 20px; height: 20px; border-radius: 50%;
    background: rgba(47,95,79,0.08); display: flex;
    align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px;
  }
  .check svg { width: 11px; height: 11px; stroke: var(--green); fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
  .pkg-card.featured .check { background: rgba(201,169,97,0.15); }
  .pkg-card.featured .check svg { stroke: var(--gold); }

  .pkg-cta {
    display: block; text-align: center; padding: 13px 24px;
    border-radius: 50px; font-family: 'Nunito', sans-serif;
    font-size: 14px; font-weight: 700; text-decoration: none;
    transition: all 0.25s ease; letter-spacing: 0.5px; margin-top: auto;
    border: 2px solid var(--green); color: var(--green); background: transparent;
  }
  .pkg-cta:hover { background: var(--green); color: white; transform: translateY(-1px); }
  .pkg-card.featured .pkg-cta { background: var(--gold); border-color: var(--gold); color: var(--green-dark); }
  .pkg-card.featured .pkg-cta:hover { background: var(--gold-warm); box-shadow: 0 6px 20px rgba(201,169,97,0.4); }

  /* NOTE BOX */
  .note-box {
    margin: 0 32px 48px;
    max-width: 1140px;
    margin-left: auto; margin-right: auto;
    background: rgba(47,95,79,0.05);
    border-left: 4px solid var(--green);
    border-radius: 0 12px 12px 0;
    padding: 16px 24px;
    font-size: 13px; color: var(--text-soft); line-height: 1.7;
  }
  .note-box strong { color: var(--green); }

  /* CUSTOM BANNER */
  .custom-banner {
    background: linear-gradient(135deg, var(--warm-gray), #ede6da);
    border-top: 1px solid rgba(201,169,97,0.2);
    padding: 52px 48px; text-align: center;
  }
  .custom-banner h3 {
    font-family: 'Playfair Display', serif; font-size: 26px;
    font-weight: 400; color: var(--green-dark); margin-bottom: 10px;
  }
  .custom-banner p { font-size: 15px; color: var(--text-soft); max-width: 480px; margin: 0 auto 24px; line-height: 1.8; }

  /* 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;
  }
  .bottom-cta::before {
    content: ''; position: absolute; top: -1px; left: 0; right: 0;
    height: 60px; background: var(--warm-gray);
    clip-path: ellipse(55% 100% at 50% 0%);
  }
  .bottom-cta-inner { position: relative; z-index: 1; max-width: 580px; margin: 0 auto; }
  .bottom-cta img.logo-sm {
    height: 90px; width: auto;
    mix-blend-mode: lighten; filter: brightness(1.1); margin-bottom: 24px;
  }
  .bottom-cta h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(26px, 4vw, 40px); font-weight: 400;
    color: white; margin-bottom: 14px; line-height: 1.25;
  }
  .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: 34px; line-height: 1.8; }
  .cta-btn-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 28px; }
  .cta-btn {
    padding: 14px 32px; border-radius: 50px;
    font-family: 'Nunito', sans-serif; font-size: 14px; font-weight: 700;
    cursor: pointer; text-decoration: none; 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); }
  .tagline-final { font-family: 'Playfair Display', serif; font-size: 14px; font-style: italic; color: rgba(255,255,255,0.38); }
  .tagline-final em { color: var(--gold-warm); }

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

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

  @media (max-width: 700px) {
    .header { padding: 14px 20px; flex-wrap: wrap; gap: 12px; }
    .header img.logo { height: 100px; }
    .hero { padding: 56px 24px 64px; }
    .selector-section { padding: 32px 20px; }
    .dropdown-wrap { flex-direction: column; border-radius: 16px; }
    .track-btn:first-child { border-right: none; border-bottom: 2px solid var(--green); }
    .packages-grid { padding: 0 16px 60px; }
    .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: 1400px;
}

.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-packages-php a.elementor-item {
    color: #305f4f !important;
    font-size: 18px !important;
}

.selector-section button.track-btn:nth-child(1){
        background: #fff;
        color: #2f5f4f;
}
.selector-section button.track-btn:nth-child(2) {
    background: #fff;
    color: #2f5f4f;
}
.selector-section button.track-btn.active {
    background: #2f5f4f !important;
    color: #fff !important;
}
.hero-content .hero-logo img {
    width: 150px;
    opacity: 0;
}