
/* ── Root Variables ─────────────────────────────────────── */
:root {
  --forest: #1b4332;
  --forest-l: #2d6a4f;
  --gold: #c9a84c;
  --gold-l: #f4d58d;
  --cream: #fffdf5;
  --cream-d: #f5efd8;
  --white: #ffffff;
  --shadow-card: 0 4px 32px rgba(27, 67, 50, 0.08);
  --shadow-card-h: 0 12px 40px rgba(27, 67, 50, 0.16);
  --radius-xl: 1.5rem;
  --radius-2xl: 2rem;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Reset & Base ───────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "DM Sans", sans-serif;
  background: var(--cream);
  color: #2d2d2d;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  text-decoration: none;
}

/* ── NAVBAR ─────────────────────────────────────────────── */
.navbar-wrap {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 253, 245, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
  transition: box-shadow var(--transition);

}
.navbar-wrap.scrolled {
  box-shadow: 0 4px 24px rgba(27, 67, 50, 0.1);
}

.nav-logo {
  transition: opacity var(--transition);
}
.nav-logo:hover {
  opacity: 0.8;
}

.logo-icon {
  /* width: 40px; */
  /* height: 40px; */
  background: var(--forest);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.nav-links li a {
  font-size: 0.9rem;
  font-weight: 500;
  color: #4a4a4a;
  position: relative;
  padding: 4px 0;
  transition: color var(--transition);
}
.nav-links li a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition);
  border-radius: 99px;
}
.nav-links li a:hover {
  color: var(--forest);
}
.nav-links li a:hover::after {
  transform: scaleX(1);
}

.btn-primary-nav {
  background: var(--forest);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.55rem 1.3rem;
  border-radius: 99px;
  display: inline-flex;
  align-items: center;
  transition:
    background var(--transition),
    transform var(--transition),
    box-shadow var(--transition);
}
.btn-primary-nav:hover {
  background: var(--forest-l);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(27, 67, 50, 0.3);
}

/* Hamburger */
.hamburger {
  background: none;
  border: none;
  cursor: pointer;
  width: 42px;
  height: 42px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border-radius: 10px;
  transition: background var(--transition);
}
.hamburger:hover {
  background: var(--cream-d);
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--forest);
  border-radius: 2px;
  transition:
    transform var(--transition),
    opacity var(--transition);
}
.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background: var(--cream);
  border-top: 1px solid rgba(201, 168, 76, 0.15);
}
.mobile-menu.open {
  max-height: 400px;
}

.mob-link {
  display: block;
  padding: 0.75rem 1rem;
  color: #4a4a4a;
  font-weight: 500;
  font-size: 0.95rem;
  border-radius: 10px;
  transition:
    background var(--transition),
    color var(--transition);
}
.mob-link:hover {
  background: var(--cream-d);
  color: var(--forest);
}

/* ── HERO ───────────────────────────────────────────────── */
.hero-section {
  position: relative;
  overflow: hidden;
  background: var(--cream);
  padding-top: 80px; /* navbar height */
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(
      circle at 80% 20%,
      rgba(161, 124, 4, 0.123) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 10% 80%,
      rgba(27, 67, 50, 0.06) 0%,
      transparent 50%
    );
  pointer-events: none;
}
.shaape{
  position: absolute;
  top: -45%;
  right: -15%;
  width: 70%;
 
  opacity: 0.1;
}
.shaape2{
  position: absolute;
  bottom: -2px;
  left: 0%;
  width: 100%;
  /* background-color: red; */
  
 
  /* opacity: 0.15; */
}
.pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--cream-d);
  border: 1px solid rgba(201, 168, 76, 0.4);
  color: var(--forest);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.4rem 1rem;
  border-radius: 99px;
  letter-spacing: 0.03em;
}

/* Hero Buttons */
.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  background: var(--forest);
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.85rem 2rem;
  border-radius: 99px;
  transition: all var(--transition);
  box-shadow: 0 4px 16px rgba(27, 67, 50, 0.2);
}
.btn-hero-primary:hover {
  background: var(--forest-l);
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(27, 67, 50, 0.3);
}
.btn-hero-outline {
  display: inline-flex;
  align-items: center;
  background: transparent;
  color: var(--forest);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.85rem 2rem;
  border-radius: 99px;
  border: 2px solid var(--forest);
  transition: all var(--transition);
}
.btn-hero-outline:hover {
  background: var(--forest);
  color: var(--white);
  transform: translateY(-3px);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: #5a5a5a;
  font-weight: 500;
}

/* Hero Image */
.hero-image-side {
  position: relative;
}
.hero-img-frame {
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(27, 67, 50, 0.15);
  position: relative;
}
.hero-img-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(27, 67, 50, 0.05) 0%,
    transparent 60%
  );
  z-index: 1;
}
.hero-main-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

/* Floating badges */
.float-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  padding: 0.85rem 1.2rem;
  border-radius: 1rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  animation: floatY 3s ease-in-out infinite;
}
.float-badge i {
  font-size: 1.4rem;
}
.float-badge-1 {
  top: -12px;
  right: -8px;
  animation-delay: 0s;
}
.float-badge-2 {
  bottom: 24px;
  left: -16px;
  animation-delay: 1.5s;
}

@keyframes floatY {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

.hero-year-badge {
  position: absolute;
  top: 50%;
  right: -20px;
  transform: translateY(-50%);
  width: 72px;
  height: 72px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.4);
}

/* Scroll indicator */
.scroll-indicator {
  animation: fadeInUp 1s ease 2s both;
}
.scroll-dot-track {
  width: 2px;
  height: 40px;
  background: rgba(27, 67, 50, 0.15);
  border-radius: 2px;
  position: relative;
}
.scroll-dot {
  width: 2px;
  height: 14px;
  background: var(--gold);
  border-radius: 2px;
  position: absolute;
  top: 0;
  animation: scrollDrop 1.8s ease-in-out infinite;
}
@keyframes scrollDrop {
  0% {
    top: 0;
    opacity: 1;
  }
  80% {
    top: calc(100% - 14px);
    opacity: 0.3;
  }
  100% {
    top: 0;
    opacity: 0;
  }
}

/* ── STATS RIBBON ───────────────────────────────────────── */
.stats-ribbon {
  background: linear-gradient(135deg, var(--forest) 0%, var(--forest-l) 100%);
  padding: 3.5rem 0;
  position: relative;
}
.stats-ribbon::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.stat-ribbon-item {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 1.5rem 2.5rem;
  position: relative;
  z-index: 1;
}
.stat-icon-r {
  font-size: 2.5rem;
  color: var(--gold-l);
  flex-shrink: 0;
}
.text-gold-light {
  color: var(--gold-l);
}

/* ── ABOUT ──────────────────────────────────────────────── */
.about-img-wrap {
  position: relative;
}
.about-img {
  width: 100%;
 
  object-fit: cover;
  /* box-shadow: var(--shadow-card-h); */
}
.about-stamp {
  position: absolute;
  bottom: -16px;
  right: -16px;
  width: max-content;
  /* height: 60px; */
  padding: 10px;
  background: var(--forest);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px #1b43324d;
  border: 4px solid var(--white);
}

.about-stat-card {
  padding: 1.2rem 1rem;
  background: var(--cream-d);
  border-radius: 1rem;
  border: 1px solid rgba(201, 168, 76, 0.2);
  text-align: center;
  transition:
    box-shadow var(--transition),
    transform var(--transition);
}
.about-stat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

/* Section tags */
.section-tag-pill {
  display: inline-flex;
  align-items: center;
  background: rgba(201, 168, 76, 0.15);
  color: var(--forest);
  border: 1px solid rgba(201, 168, 76, 0.4);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 0.4rem 1rem;
  border-radius: 99px;
  text-transform: uppercase;
}
.light-pill {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.3);
}

/* ── FEATURES ───────────────────────────────────────────── */
.features-section {
  background: var(--cream-d);
  position: relative;
}

.feature-card-premium {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 2rem;
  border: 1px solid rgba(27, 67, 50, 0.07);
  box-shadow: var(--shadow-card);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.feature-card-premium::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-l));
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}
.feature-card-premium:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-h);
}
.feature-card-premium:hover::before {
  transform: scaleX(1);
}

.fc-icon-wrap {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}
.fc-icon-1 {
  background: rgba(27, 67, 50, 0.08);
  color: var(--forest);
}
.fc-icon-2 {
  background: rgba(201, 168, 76, 0.12);
  color: #9a7030;
}
.fc-icon-3 {
  background: rgba(45, 106, 79, 0.1);
  color: var(--forest-l);
}
.fc-icon-4 {
  background: rgba(244, 213, 141, 0.3);
  color: #7a5c10;
}

/* ── CATEGORIES ─────────────────────────────────────────── */
.categories-section {
  background: linear-gradient(160deg, var(--forest) 0%, #0d2b1d 100%);
  position: relative;
}
.categories-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.cat-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  transition:
    transform var(--transition),
    box-shadow var(--transition);
}
.cat-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.2);
}

.cat-img-wrap {
  position: relative;
  height: 180px;
  overflow: hidden;
}
.cat-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.cat-card:hover .cat-img-wrap img {
  transform: scale(1.06);
}
.cat-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 40%,
    rgba(27, 67, 50, 0.5)
  );
}

.cat-body {
  padding: 1.25rem;
}
.cat-dot {
  font-size: 1.3rem;
  color: var(--gold);
}
.cat-link {
  display: inline-flex;
  align-items: center;
  margin-top: 0.75rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--forest-l);
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: gap var(--transition);
}
.cat-card:hover .cat-link {
  gap: 6px;
}

/* ── STORES ─────────────────────────────────────────────── */
.store-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 1rem 1rem;
  border: 1px solid rgba(27, 67, 50, 0.08);
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
  transition: all var(--transition);
}
.store-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-h);
  border-color: rgba(201, 168, 76, 0.4);
}

.store-num {
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  font-family: "Playfair Display", serif;
  font-size: 3rem;
  font-weight: 700;
  color: rgba(27, 67, 50, 0.06);
  line-height: 1;
  pointer-events: none;
}
.store-icon-wrap {
  width: 58px;
  height: 58px;
  background: var(--cream-d);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(201, 168, 76, 0.2);
}
.store-info-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.store-info-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: #5a5a5a;
}
.store-info-list li i {
  margin-top: 2px;
  flex-shrink: 0;
}

.store-cta {
  display: inline-flex;
  align-items: center;
  margin-top: 1.25rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--forest);
  padding: 0.5rem 1.2rem;
  background: var(--cream-d);
  border-radius: 99px;
  border: 1px solid rgba(27, 67, 50, 0.15);
  transition: all var(--transition);
}
.store-cta:hover {
  background: var(--forest);
  color: var(--white);
}

/* ── TESTIMONIALS ───────────────────────────────────────── */
.testi-card {
  background: var(--cream-d);
  border-radius: var(--radius-xl);
  padding: 2rem;
  border: 1px solid rgba(201, 168, 76, 0.2);
  /* box-shadow: var(--shadow-card); */
  height: 100%;
}
.testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--forest);
  color: var(--white);
  font-family: "Playfair Display", serif;
  font-size: 1.2rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.testi-pagination .swiper-pagination-bullet {
  background: var(--forest);
  opacity: 0.3;
}
.testi-pagination .swiper-pagination-bullet-active {
  background: var(--gold);
  opacity: 1;
}

/* ── BLOG ───────────────────────────────────────────────── */
.blog-card-premium {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(27, 67, 50, 0.06);
  transition:
    transform var(--transition),
    box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}
.blog-card-premium:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-h);
}

.blog-img-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
}
.blog-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.blog-card-premium:hover .blog-img-wrap img {
  transform: scale(1.05);
}

.blog-tag-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--gold);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.3rem 0.75rem;
  border-radius: 99px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.blog-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.blog-date {
  font-size: 0.75rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.blog-read-more {
  display: inline-flex;
  align-items: center;
  margin-top: auto;
  padding-top: 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--forest-l);
  transition: gap var(--transition);
}
.blog-read-more:hover {
  gap: 6px;
}

/* ── CONTACT ────────────────────────────────────────────── */
.contact-section {
  background: linear-gradient(160deg, var(--forest) 0%, #0a2015 100%);
  position: relative;
}
.contact-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Crect width='2' height='2' x='39' y='39'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.contact-form-wrap {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-2xl);
  padding: 2.5rem;
  backdrop-filter: blur(10px);
  position: relative;
  z-index: 1;
}
.contact-label {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.contact-input {
  width: 100%;
  padding: 0.85rem 1.1rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0.85rem;
  color: var(--white);
  font-family: "DM Sans", sans-serif;
  font-size: 0.9rem;
  outline: none;
  transition:
    border-color var(--transition),
    background var(--transition);
}
.contact-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}
.contact-input:focus {
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.15);
}
.contact-select {
  appearance: none;
  cursor: pointer;
}
.contact-select option {
  background: #1b4332;
  color: white;
}

.contact-submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--gold);
  color: var(--forest);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.9rem 2rem;
  border-radius: 99px;
  border: none;
  cursor: pointer;
  width: 100%;
  transition: all var(--transition);
  box-shadow: 0 4px 16px rgba(201, 168, 76, 0.3);
}
.contact-submit-btn:hover {
  background: var(--gold-l);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201, 168, 76, 0.4);
}

.contact-info-card {
  display: flex;
  align-items: center;
  gap: .4rem;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  padding: 1rem 1rem;
  position: relative;
  z-index: 1;
  transition: background var(--transition);
}
.contact-info-card:hover {
  background: rgba(255, 255, 255, 0.12);
}
.contact-info-icon {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* ── FOOTER ─────────────────────────────────────────────── */
.footer-section {
  background: #0d2218;
  padding: 5rem 0 2rem;
  border-top: 1px solid rgba(201, 168, 76, 0.2);
}
.footer-logo-icon {
  width: 42px;
  height: 42px;
  background: var(--forest);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.footer-heading {
  font-family: "Playfair Display", serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 1.25rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid rgba(201, 168, 76, 0.2);
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer-links li a {
  font-size: 0.88rem;
  color: #86b09a;
  display: inline-flex;
  align-items: center;
  transition: color var(--transition);
}
.footer-links li a:hover {
  color: var(--gold-l);
}

.footer-social {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.07);
  color: #86b09a;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all var(--transition);
}
.footer-social:hover {
  background: var(--gold);
  color: var(--forest);
  border-color: var(--gold);
  transform: translateY(-2px);
}

.newsletter-form-wrap {
  display: flex;
  gap: 0;
  border-radius: 0.85rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
}
.newsletter-input {
  flex: 1;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  border: none;
  outline: none;
  font-family: "DM Sans", sans-serif;
  font-size: 0.85rem;
}
.newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}
.newsletter-btn {
  background: var(--gold);
  color: var(--forest);
  border: none;
  cursor: pointer;
  padding: 0.75rem 1.2rem;
  font-size: 1rem;
  transition: background var(--transition);
}
.newsletter-btn:hover {
  background: var(--gold-l);
}

/* ── ANIMATIONS ─────────────────────────────────────────── */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fade-in-up {
  animation: fadeInUp 0.7s ease both;
}

/* ── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-main-img {
    height: 340px;
  }
  .float-badge-1 {
    top: 10px;
    right: 10px;
  }
  .float-badge-2 {
    bottom: 16px;
    left: 8px;
  }
  .hero-year-badge {
    right: -4px;
  }
}

@media (max-width: 768px) {
  .hero-main-img {
    height: 280px;
  }
  .hero-year-badge {
    display: none;
  }
  .float-badge {
    padding: 0.6rem 0.9rem;
    font-size: 0.85rem;
  }
  .float-badge i {
    font-size: 1.1rem;
  }
  .about-img {
    height: 300px;
  }
  .about-stamp { 
   
    bottom: 25px; 
    right: 25px;
  }
  .about-stamp span:first-child {
    font-size: 1.4rem;
  }
  .stat-ribbon-item {
    padding: 1.25rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .hero-main-img {
    height: 240px;
  }
  .float-badge {
    display: none;
  }
  .contact-form-wrap {
    padding: 1.75rem 1.25rem;
  }
}
