/* ============================================================
   KIBIICHI GARDENS — Modern Stylesheet
   ============================================================ */

/* --- CSS Variables --- */
:root {
  --green-dark:    #1b4332;
  --green-primary: #2d6a4f;
  --green-mid:     #40916c;
  --green-accent:  #52b788;
  --green-light:   #95d5b2;
  --gold:          #c9933a;
  --dark:          #0f1a14;
  --dark-2:        #1a1a1a;
  --dark-3:        #2d2d2d;
  --text:          #3a3a3a;
  --text-light:    #6b7280;
  --bg:            #ffffff;
  --bg-off:        #f5f7f2;
  --white:         #ffffff;
  --shadow-sm:     0 2px 10px rgba(0,0,0,0.07);
  --shadow-md:     0 8px 30px rgba(0,0,0,0.11);
  --shadow-lg:     0 20px 60px rgba(0,0,0,0.14);
  --radius:        14px;
  --radius-sm:     8px;
  --transition:    all 0.35s ease;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 72px;
}

body {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  color: var(--text);
  background: var(--bg);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: var(--dark-3);
  line-height: 1.2;
  margin-bottom: 0.5rem;
}

p { margin-bottom: 1rem; }
ul { list-style: none; padding: 0; margin: 0; }
img { max-width: 100%; display: block; }

a {
  color: var(--green-primary);
  text-decoration: none;
  transition: var(--transition);
}
a:hover { color: var(--green-accent); }

/* --- Utility --- */
.section-pad    { padding: 100px 0; }
.section-pad-sm { padding: 64px 0; }

.section-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--green-accent);
  display: block;
  margin-bottom: 14px;
}

.section-title-block { margin-bottom: 60px; }
.section-title-block h2 {
  font-size: clamp(2rem, 4vw, 2.9rem);
  margin-bottom: 14px;
}

.section-divider {
  width: 52px;
  height: 3px;
  background: linear-gradient(90deg, var(--green-primary), var(--green-accent));
  border-radius: 2px;
  margin: 0 0 18px;
  border: none;
}
.section-divider.centered { margin: 0 auto 18px; }

/* --- Scroll Animations --- */
.fade-in-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.fade-in {
  opacity: 0;
  transition: opacity 0.75s ease;
}
.fade-in-up.visible,
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.delay-1 { transition-delay: 0.10s !important; }
.delay-2 { transition-delay: 0.20s !important; }
.delay-3 { transition-delay: 0.30s !important; }
.delay-4 { transition-delay: 0.40s !important; }
.delay-5 { transition-delay: 0.50s !important; }
.delay-6 { transition-delay: 0.60s !important; }
.delay-7 { transition-delay: 0.70s !important; }
.delay-8 { transition-delay: 0.80s !important; }


/* ======================
   NAVIGATION
   ====================== */
#main-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 22px 0;
  background: transparent;
  transition: background 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease;
}
#main-nav.nav-scrolled {
  background: rgba(12, 25, 18, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 10px 0;
  box-shadow: 0 2px 24px rgba(0,0,0,0.3);
}
#main-nav .navbar-brand {
  font-family: 'Dancing Script', cursive;
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--white) !important;
  letter-spacing: 0.5px;
  line-height: 1;
}
#main-nav .nav-link {
  color: rgba(255,255,255,0.82) !important;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  padding: 6px 2px !important;
  margin: 0 13px;
  position: relative;
}
#main-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0;
  height: 2px;
  background: var(--green-accent);
  transition: width 0.3s ease;
}
#main-nav .nav-link:hover { color: var(--white) !important; }
#main-nav .nav-link:hover::after { width: 100%; }

.navbar-toggler {
  border-color: rgba(255,255,255,0.35);
  padding: 6px 10px;
}
.navbar-toggler:focus { box-shadow: none; }
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255%2c255%2c255%2c0.88%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

@media (max-width: 991px) {
  #main-nav .navbar-collapse {
    background: rgba(12, 25, 18, 0.97);
    margin-top: 10px;
    padding: 16px 20px;
    border-radius: var(--radius-sm);
  }
  #main-nav .nav-link { margin: 5px 0; }
}


/* ======================
   HERO
   ====================== */
#hero {
  position: relative;
  height: 100vh;
  min-height: 620px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url("../img/frontgate.25ebc2219a34.jpg") no-repeat center center / cover;
  text-align: center;
}
#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(0,0,0,0.4) 0%, rgba(15,30,22,0.7) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 20px;
  max-width: 820px;
}

/* ── Hero Badge ── */
.hero-badge {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--green-light);
  border: 1px solid rgba(149,213,178,0.5);
  padding: 7px 18px;
  border-radius: 30px;
  margin-bottom: 32px;
  animation: fadeInDown 0.7s 0.2s ease both;
}

/* ── Animated Logo (hero centrepiece) ── */
.hero-logo-wrap {
  display: block;
  margin: 0 auto 32px;
  animation: logoEntrance 1s 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

.hero-logo {
  display: block;
  margin: 0 auto;
  width: 340px;
  height: auto;
  filter: drop-shadow(0 6px 24px rgba(0,0,0,0.55));
  animation: logoFloat 5s ease-in-out infinite 1.6s;
}

@keyframes logoEntrance {
  from { opacity: 0; transform: scale(0.5) translateY(24px); }
  to   { opacity: 1; transform: scale(1)   translateY(0); }
}
@keyframes logoFloat {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-10px); }
}

.hero-content .hero-tagline {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.78);
  margin-bottom: 40px;
  font-weight: 300;
  letter-spacing: 0.3px;
  animation: fadeInUp 0.9s 1.1s ease both;
}
.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 0.9s 1.3s ease both;
}

@media (max-width: 575px) {
  .hero-logo { width: 240px; }
}
.hero-scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255,255,255,0.5);
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  text-align: center;
  animation: fadeIn 1.2s 1s ease both;
}
.hero-scroll-arrow {
  display: block;
  margin: 10px auto 0;
  width: 18px;
  height: 18px;
  border-right: 2px solid rgba(255,255,255,0.45);
  border-bottom: 2px solid rgba(255,255,255,0.45);
  transform: rotate(45deg);
  animation: bounceDown 1.6s infinite 1.2s;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-18px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes bounceDown {
  0%, 100% { transform: rotate(45deg) translateY(0); }
  50%       { transform: rotate(45deg) translateY(7px); }
}


/* ======================
   BUTTONS
   ====================== */
.btn-kg-primary {
  background: var(--green-primary);
  color: var(--white);
  border: 2px solid var(--green-primary);
  padding: 13px 32px;
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  display: inline-block;
  cursor: pointer;
}
.btn-kg-primary:hover {
  background: var(--green-mid);
  border-color: var(--green-mid);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(45,106,79,0.38);
}
.btn-kg-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.55);
  padding: 13px 32px;
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  display: inline-block;
  cursor: pointer;
}
.btn-kg-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.8);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-kg-dark {
  background: var(--dark-3);
  color: var(--white);
  border: 2px solid var(--dark-3);
  padding: 13px 32px;
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  display: inline-block;
  cursor: pointer;
}
.btn-kg-dark:hover {
  background: var(--green-primary);
  border-color: var(--green-primary);
  color: var(--white);
  transform: translateY(-2px);
}


/* ======================
   ABOUT SECTION
   ====================== */
#about {
  background: var(--bg);
}
.about-img-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-img-wrap img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
}
.about-stat-badge {
  position: absolute;
  bottom: 28px;
  left: 28px;
  background: var(--green-primary);
  color: var(--white);
  padding: 18px 24px;
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.3px;
  box-shadow: 0 8px 24px rgba(45,106,79,0.4);
}
.about-stat-badge strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 2px;
}
.about-text-col {
  padding-left: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about-text-col p {
  color: var(--text-light);
  font-size: 0.97rem;
  line-height: 1.85;
  margin-bottom: 1.2rem;
}
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 28px;
}
.about-feature {
  display: flex;
  align-items: center;
  gap: 10px;
}
.about-feature i {
  color: var(--green-primary);
  font-size: 1rem;
  flex-shrink: 0;
}
.about-feature span {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--dark-3);
}
@media (max-width: 767px) {
  .about-text-col { padding-left: 0; padding-top: 36px; }
  .about-img-wrap img { height: 320px; }
}


/* ======================
   SERVICES SECTION
   ====================== */
#services {
  background: var(--bg-off);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 575px) {
  .services-grid { grid-template-columns: 1fr; }
}
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.service-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-lg);
}
.service-card-img {
  position: relative;
  height: 188px;
  overflow: hidden;
}
.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.service-card:hover .service-card-img img {
  transform: scale(1.07);
}
.service-card-icon {
  position: absolute;
  bottom: -20px;
  right: 18px;
  width: 46px;
  height: 46px;
  background: var(--green-primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  box-shadow: 0 4px 14px rgba(45,106,79,0.45);
  border: 3px solid var(--white);
}
.service-card-body {
  padding: 30px 20px 22px;
}
.service-card-body h3 {
  font-size: 1rem;
  margin-bottom: 8px;
  color: var(--dark-3);
}
.service-card-body p {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.7;
  margin: 0;
}


/* ======================
   GALLERY SECTION
   ====================== */
#portfolio {
  background: var(--bg);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
@media (max-width: 767px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 460px) {
  .gallery-grid { grid-template-columns: 1fr; }
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-sm);
  aspect-ratio: 4 / 3;
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 31, 23, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.35s ease;
}
.gallery-overlay i {
  color: var(--white);
  font-size: 1.7rem;
  opacity: 0;
  transform: scale(0.6);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.gallery-item:hover .gallery-overlay {
  background: rgba(15, 31, 23, 0.52);
}
.gallery-item:hover .gallery-overlay i {
  opacity: 1;
  transform: scale(1);
}

/* Lightbox */
#gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.93);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
#gallery-lightbox.active {
  opacity: 1;
  pointer-events: all;
}
#gallery-lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
  box-shadow: 0 24px 80px rgba(0,0,0,0.6);
}
#lightbox-close {
  position: absolute;
  top: 18px;
  right: 22px;
  color: rgba(255,255,255,0.75);
  font-size: 2.2rem;
  cursor: pointer;
  background: none;
  border: none;
  line-height: 1;
  padding: 0;
  transition: color 0.2s, transform 0.2s;
}
#lightbox-close:hover {
  color: var(--white);
  transform: scale(1.1);
}


/* ======================
   TESTIMONIALS
   ====================== */
#testimonials {
  position: relative;
  background: url("../img/kib_background.005d9c66930e.jpg") no-repeat center center / cover;
}
#testimonials::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(12, 24, 18, 0.80);
}
#testimonials .inner {
  position: relative;
  z-index: 1;
  padding: 100px 0;
  text-align: center;
}
#testimonials h2 { color: var(--white); }
#testimonials .section-divider { background: var(--green-accent); }
#testimonials .sub-text {
  color: rgba(255,255,255,0.62);
  font-size: 0.95rem;
  max-width: 520px;
  margin: 0 auto;
}


/* ======================
   RESERVATION CTA
   ====================== */
#call-reservation {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-primary) 100%);
  padding: 88px 0;
  text-align: center;
}
#call-reservation h2 {
  color: var(--white);
  font-size: clamp(1.5rem, 3vw, 2.3rem);
  margin-bottom: 10px;
}
#call-reservation p {
  color: rgba(255,255,255,0.65);
  font-size: 0.95rem;
  margin-bottom: 30px;
}
.cta-phones {
  color: var(--green-light) !important;
  font-family: 'Playfair Display', serif;
  font-size: 1.1em;
  font-weight: 700;
}


/* ======================
   CONTACT SECTION
   ====================== */
#contact {
  background: var(--bg-off);
}
.contact-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 48px 44px;
  box-shadow: var(--shadow-md);
}
@media (max-width: 575px) {
  .contact-card { padding: 32px 22px; }
}
.form-field {
  margin-bottom: 20px;
}
.form-label-kg {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--dark-3);
  margin-bottom: 7px;
  text-transform: uppercase;
}
.form-input-kg {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #e4e7e0;
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: var(--text);
  background: var(--bg);
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  -webkit-appearance: none;
}
.form-input-kg:focus {
  border-color: var(--green-primary);
  box-shadow: 0 0 0 3px rgba(45,106,79,0.12);
}
.form-input-kg::placeholder { color: #b0b8ae; }
textarea.form-input-kg { resize: vertical; min-height: 120px; }


/* ======================
   FOOTER
   ====================== */
#footer {
  background: var(--dark);
  padding: 72px 0 0;
}
.footer-brand {
  font-family: 'Dancing Script', cursive;
  font-size: 2.1rem;
  font-weight: 700;
  color: var(--white);
  display: block;
  margin-bottom: 10px;
}
.footer-tagline {
  color: rgba(255,255,255,0.38);
  font-size: 0.82rem;
  line-height: 1.6;
  margin-bottom: 26px;
}
.footer-heading {
  font-family: 'Inter', sans-serif;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--green-accent);
  margin-bottom: 22px;
  display: block;
}
.footer-list li {
  margin-bottom: 11px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(255,255,255,0.52);
  font-size: 0.88rem;
  line-height: 1.5;
}
.footer-list li i {
  color: var(--green-accent);
  font-size: 0.9rem;
  margin-top: 3px;
  flex-shrink: 0;
  width: 16px;
}
.footer-list li a {
  color: rgba(255,255,255,0.52);
  transition: color 0.2s;
}
.footer-list li a:hover { color: var(--white); }
.footer-divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.07);
  margin: 52px 0 0;
}
.footer-bottom {
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  color: rgba(255,255,255,0.3);
  font-size: 0.78rem;
  margin: 0;
}
.social-links {
  display: flex;
  gap: 10px;
}
.social-link {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  transition: var(--transition);
}
.social-link:hover {
  background: var(--green-primary);
  border-color: var(--green-primary);
  color: var(--white);
  transform: translateY(-3px);
}


/* ======================
   INNER PAGE HERO
   ====================== */
.page-hero {
  position: relative;
  height: 340px;
  display: flex;
  align-items: flex-end;
  background: var(--dark) no-repeat center center / cover;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(170deg, rgba(0,0,0,0.22) 0%, rgba(12,25,18,0.88) 100%);
}
.page-hero-content {
  position: relative;
  z-index: 1;
  padding-bottom: 52px;
}
.page-hero-content h1 {
  color: var(--white);
  font-size: clamp(2rem, 5vw, 3.6rem);
  margin-bottom: 8px;
}
.page-hero-content .hero-sub {
  color: rgba(255,255,255,0.62);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  margin: 0;
}


/* ======================
   PAGE CONTENT (inner pages)
   ====================== */
.page-content {
  background: var(--bg-off);
  padding: 80px 0;
}


/* ======================
   INFO / MENU CARDS
   ====================== */
.info-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.04);
  height: 100%;
  transition: transform 0.32s ease, box-shadow 0.32s ease;
}
.info-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.info-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 2px solid #f0f3ee;
}
.info-card-header i {
  font-size: 1.2rem;
  color: var(--green-primary);
  width: 20px;
  text-align: center;
}
.info-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark-3);
  margin: 0;
}
.menu-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px dashed #eff1ed;
}
.menu-row:last-child { border-bottom: none; }
.menu-row-name {
  font-size: 0.88rem;
  color: var(--text);
  flex: 1;
}
.menu-row-price {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--green-primary);
  white-space: nowrap;
}


/* ======================
   PACKAGE CARDS (conferencing)
   ====================== */
.package-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.05);
  height: 100%;
  transition: transform 0.32s ease, box-shadow 0.32s ease;
}
.package-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.package-card.featured {
  border: 2px solid var(--green-accent);
}
.package-card-head {
  background: linear-gradient(140deg, var(--green-dark) 0%, var(--green-primary) 100%);
  padding: 28px 28px 24px;
  text-align: center;
}
.package-card-head h3 {
  color: var(--white);
  font-size: 1.3rem;
  margin-bottom: 6px;
}
.package-price-range {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  color: var(--green-light);
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 4px 12px;
  border-radius: 20px;
  margin-top: 4px;
}
.package-card-body {
  padding: 26px 28px;
}
.package-includes {
  font-family: 'Inter', sans-serif;
  font-size: 0.86rem;
  color: var(--text-light);
  line-height: 2;
  margin-bottom: 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid #f0f0f0;
}
.package-includes i {
  color: var(--green-accent);
  margin-right: 6px;
  font-size: 0.8rem;
}
/* ── Package card internals ── */
.pkg-section-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--green-accent);
  display: block;
  margin-bottom: 12px;
}

/* Food includes list */
.pkg-includes-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid #f0f3ee;
}
.pkg-includes-list li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-family: 'Inter', sans-serif;
  font-size: 0.86rem;
  color: var(--text);
  padding: 5px 0;
  line-height: 1.5;
}
.pkg-includes-list li i {
  color: var(--green-accent);
  font-size: 0.75rem;
  margin-top: 4px;
  flex-shrink: 0;
}

/* Pricing tiers */
.pkg-pricing-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.pkg-pricing-list li {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px dashed #eff1ed;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
}
.pkg-pricing-list li:last-child { border-bottom: none; }
.pkg-price-desc {
  color: var(--text);
  line-height: 1.5;
  flex: 1;
}
.pkg-price-amt {
  background: rgba(45,106,79,0.08);
  color: var(--green-primary);
  font-weight: 700;
  font-size: 0.82rem;
  white-space: nowrap;
  padding: 3px 11px;
  border-radius: 20px;
  border: 1px solid rgba(45,106,79,0.18);
  flex-shrink: 0;
  align-self: flex-start;
}

/* Starting price in card header */
.pkg-from-price {
  color: rgba(255,255,255,0.65);
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  margin-top: 6px;
}
.pkg-from-price strong {
  color: var(--green-light);
  font-size: 1rem;
}

/* Recommended badge */
.pkg-recommended-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 10px;
}


/* ======================
   RESPONSIVE TWEAKS
   ====================== */
@media (max-width: 767px) {
  .section-pad    { padding: 64px 0; }
  .section-pad-sm { padding: 40px 0; }
  .page-hero      { height: 260px; }
  .page-content   { padding: 52px 0; }
  .info-card      { padding: 22px 18px; }
}
