/* ══════════════════════════════════════════
   GÜMÜŞHANE YAYLA BALI — app.css
   Updated: Professional Navbar + Mobile Menu + Fixed Footer
   ══════════════════════════════════════════ */

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

:root {
  --cream: #FFF8F2;
  --cream-warm: #FFF1D9;
  --card-bg: #F3E9E0;
  --gold: #B86B00;
  --gold-dark: #925400;
  --text-dark: #2C2B29;
  --text-mid: #4B3B2A;
  --text-light: #8B7A6D;
  --white: #FFFFFF;
  --border: rgba(0, 0, 0, 0.08);
  --shadow-sm: 0 8px 24px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 20px 40px rgba(0, 0, 0, 0.08);
  --radius: 8px;
  --radius-lg: 16px;
  --container: 1280px;
  --navbar-height: 86px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--cream);
  color: var(--text-dark);
  min-width: 320px;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

.site-main {
  min-height: 60vh;
}

/* ══════════════════════════════
   GLOBAL CONTAINERS
   ══════════════════════════════ */
.container,
.nav-container,
.footer-container,
.page-header-content,
.products-list,
.about-inner,
.contact-inner {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
}

/* ══════════════════════════════
   NAVBAR
   ══════════════════════════════ */
.navbar {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  background: rgba(255, 248, 242, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.nav-container {
  min-height: var(--navbar-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo-img {
  width: auto;
  height: 56px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  list-style: none;
  flex: 1;
}

.nav-links a {
  position: relative;
  text-decoration: none;
  font-size: 15px;
  line-height: 22px;
  color: var(--text-dark);
  font-weight: 500;
  opacity: 0.84;
  transition: 0.25s ease;
}

.nav-links a:hover,
.nav-links a.active {
  opacity: 1;
  color: var(--gold);
}

.nav-links a.active::after,
.nav-links a:hover::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  background: var(--gold);
  border-radius: 999px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  background: var(--gold);
  color: var(--white);
  text-decoration: none;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  transition: 0.25s ease;
  box-shadow: 0 10px 20px rgba(184, 107, 0, 0.18);
}

.nav-cta:hover {
  background: var(--gold-dark);
  transform: translateY(-1px);
}

.mobile-menu-btn {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--border);
  background: var(--white);
  border-radius: 12px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  box-shadow: var(--shadow-sm);
}

.mobile-menu-btn span {
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: var(--text-dark);
  transition: 0.25s ease;
}

.mobile-menu-btn.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  display: none;
}

/* ══════════════════════════════
   HERO SECTION
   ══════════════════════════════ */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  min-height: 860px;
  overflow: hidden;
  isolation: isolate;
  padding: calc(var(--navbar-height) + 56px) 64px 80px;
}

.hero-hex {
  position: absolute;
  width: 800px;
  height: 800px;
  pointer-events: none;
}

.hero-hex img {
  width: 100%;
  height: 100%;
}

.hero-hex-1 {
  left: 380px;
  top: 58px;
  z-index: 0;
}

.hero-hex-2 {
  left: 620px;
  top: 47px;
  z-index: 1;
}

.hero-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 23px;
  width: 600px;
  max-width: 600px;
  padding-right: 48px;
  position: relative;
  z-index: 2;
  flex-shrink: 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  background: var(--cream-warm);
  border-radius: 12px;
  font-weight: 600;
  font-size: 13px;
  line-height: 20px;
  letter-spacing: 0.65px;
  color: var(--text-mid);
}

.hero-heading h1 {
  width: 100%;
  font-weight: 800;
  font-size: 56px;
  line-height: 1.14;
  letter-spacing: -1.12px;
  color: var(--text-dark);
}

.hero-desc-wrap {
  padding-top: 8px;
  width: 500px;
  max-width: 100%;
}

.hero-desc {
  font-weight: 400;
  font-size: 20px;
  line-height: 32px;
  color: var(--text-light);
}

.hero-btns {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  padding-top: 24px;
  gap: 18px;
  width: 100%;
}

.btn-siparis {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 18px 40px;
  background: var(--gold);
  border-radius: 8px;
  border: none;
  cursor: pointer;
  font-weight: 700;
  font-size: 16px;
  line-height: 19px;
  letter-spacing: 0.2px;
  color: var(--white);
  text-decoration: none;
  transition: 0.25s ease;
  box-shadow: 0 14px 28px rgba(184, 107, 0, 0.18);
}

.btn-siparis:hover {
  opacity: 0.94;
  transform: translateY(-1px);
  color: var(--white);
}

.btn-video {
  display: flex;
  align-items: center;
  gap: 12px;
  background: none;
  border: none;
  cursor: pointer;
}

.play-circle {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 38px;
  height: 38px;
  background: var(--cream-warm);
  border-radius: 50%;
  flex-shrink: 0;
}

.btn-video-text {
  font-weight: 700;
  font-size: 16px;
  line-height: 19px;
  color: var(--text-dark);
}

.hero-right {
  position: relative;
  z-index: 3;
  flex-shrink: 0;
}

.hero-img-wrap {
  width: 680px;
  max-width: 100%;
  height: 411px;
  border-radius: 12px;
  overflow: hidden;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* ══════════════════════════════
   WHATSAPP FLOAT
   ══════════════════════════════ */
.whatsapp-float {
  position: fixed;
  right: 28px;
  bottom: 28px;
  width: 64px;
  height: 64px;
  background: #27AE60;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999;
  text-decoration: none;
  transition: transform 0.2s ease;
}

.whatsapp-float:hover {
  transform: scale(1.06);
}

/* ══════════════════════════════
   HOME - NEDEN BIZ
   ══════════════════════════════ */
.neden {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 96px 64px 120px;
  gap: 80px;
  background: var(--cream-warm);
}

.neden-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 600px;
  max-width: 100%;
}

.neden-tag {
  display: block;
  width: 100%;
  font-weight: 700;
  font-size: 14px;
  line-height: 21px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--gold);
  text-align: center;
}

.neden-title {
  font-weight: 800;
  font-size: 40px;
  line-height: 1.25;
  letter-spacing: -0.4px;
  color: var(--text-dark);
  text-align: center;
}

.neden-desc {
  font-weight: 400;
  font-size: 17px;
  line-height: 29px;
  color: var(--text-light);
  text-align: center;
  max-width: 576px;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  width: 100%;
  max-width: 1312px;
}

.card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 18px;
  gap: 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: 0.25s ease;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.03);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.card-icon-bg {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.card-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.card-tag {
  font-size: 13px;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.card-title {
  font-size: 22px;
  font-weight: 800;
  line-height: 1.35;
  color: var(--text-dark);
}

.card-text-wrap {
  width: 100%;
}

.card-text {
  font-size: 15px;
  line-height: 28px;
  color: var(--text-light);
}

/* ══════════════════════════════
   PAGE HEADER
   ══════════════════════════════ */
.page-header {
  padding: calc(var(--navbar-height) + 60px) 24px 48px;
  text-align: center;
}

.page-header-content {
  max-width: 820px;
}

.page-header-title {
  font-size: 48px;
  line-height: 1.18;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 14px;
}

.page-header-desc {
  font-size: 18px;
  line-height: 30px;
  color: var(--text-light);
}

.about-header,
.contact-header {
  padding-top: calc(var(--navbar-height) + 60px);
}

/* ══════════════════════════════
   PRODUCTS
   ══════════════════════════════ */
.products-section {
  padding: 0 24px 80px;
}

.products-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.product-card {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 28px;
  align-items: stretch;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 20px;
  box-shadow: var(--shadow-sm);
}

.product-img-wrap {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  min-height: 280px;
}

.product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--gold);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  padding: 7px 10px;
  border-radius: 999px;
}

.product-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.product-category {
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 10px;
}

.product-title {
  font-size: 32px;
  line-height: 1.25;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 14px;
}

.product-desc-wrap {
  margin-bottom: 22px;
}

.product-desc {
  font-size: 16px;
  line-height: 30px;
  color: var(--text-light);
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.product-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.price-amount {
  font-size: 28px;
  font-weight: 800;
  color: var(--text-dark);
}

.price-unit {
  font-size: 15px;
  color: var(--text-light);
}

.btn-sepet {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: none;
  background: var(--gold);
  color: var(--white);
  font-weight: 700;
  padding: 14px 18px;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.25s ease;
}

.btn-sepet:hover {
  background: var(--gold-dark);
}

/* ══════════════════════════════
   ABOUT
   ══════════════════════════════ */
.about-content {
  padding: 0 24px 80px;
}

.about-inner {
  display: flex;
  flex-direction: column;
  gap: 64px;
}

.about-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: center;
}

.about-section.reverse .about-img-wrap {
  order: 2;
}

.about-section.reverse .about-text {
  order: 1;
}

.about-img-wrap {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.about-img {
  width: 100%;
  height: 460px;
  object-fit: cover;
}

.about-img.short {
  height: 380px;
}

.about-text {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.about-category {
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-title {
  font-size: 38px;
  font-weight: 800;
  line-height: 1.25;
  color: var(--text-dark);
}

.about-body {
  font-size: 16px;
  line-height: 30px;
  color: var(--text-light);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.value-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 22px;
  box-shadow: var(--shadow-sm);
}

.value-icon-wrap {
  margin-bottom: 18px;
}

.value-title {
  font-size: 22px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.value-desc {
  font-size: 15px;
  line-height: 28px;
  color: var(--text-light);
}

/* ══════════════════════════════
   CONTACT
   ══════════════════════════════ */
.alert-success {
  width: min(100% - 32px, 900px);
  margin: 12px auto 0;
  background: #e6f7eb;
  color: #1d6b36;
  border: 1px solid #bfe6c8;
  padding: 14px 16px;
  border-radius: 12px;
  font-weight: 600;
}

.contact-section {
  padding: 0 24px 80px;
}

.contact-inner {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 28px;
  align-items: start;
}

.contact-left,
.contact-right {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-info-card,
.contact-right {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: var(--shadow-sm);
}

.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
}

.contact-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--cream-warm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-card-body {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.contact-card-title {
  font-size: 16px;
  font-weight: 800;
  color: var(--text-dark);
}

.contact-card-text {
  font-size: 15px;
  line-height: 26px;
  color: var(--text-light);
}

.contact-right {
  padding: 28px;
}

.form-title {
  font-size: 30px;
  line-height: 1.2;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 22px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group.full {
  width: 100%;
}

.form-label {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark);
}

.form-input,
.form-textarea {
  width: 100%;
  border: 1px solid rgba(44, 43, 41, 0.12);
  background: #fffdfb;
  border-radius: 12px;
  padding: 14px 16px;
  color: var(--text-dark);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-input:focus,
.form-textarea:focus {
  border-color: rgba(184, 107, 0, 0.5);
  box-shadow: 0 0 0 4px rgba(184, 107, 0, 0.08);
}

.form-textarea {
  min-height: 160px;
  resize: vertical;
}

.form-submit,
button[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--gold);
  color: var(--white);
  border: none;
  border-radius: 10px;
  min-height: 48px;
  padding: 0 22px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.25s ease;
}

.form-submit:hover,
button[type="submit"]:hover {
  background: var(--gold-dark);
}

/* ══════════════════════════════
   FOOTER
   ══════════════════════════════ */
.footer {
  margin-top: 80px;
  background:
    linear-gradient(180deg, #1d1a17 0%, #141210 100%);
  color: rgba(255, 255, 255, 0.78);
  overflow: hidden;
}

.footer-container {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 36px;
  padding: 64px 0 34px;
}

.footer-col h3 {
  color: var(--white);
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 16px;
}

.footer-col h4 {
  color: var(--white);
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 16px;
}

.footer-col p,
.footer-col li,
.footer-col a {
  font-size: 15px;
  line-height: 28px;
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
}

.footer-col a:hover {
  color: #f2c16b;
}

.footer-brand-col p {
  max-width: 320px;
}

.footer-links,
.footer-contact {
  list-style: none;
}

.footer-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 12px;
  min-height: 44px;
  padding: 0 16px;
  background: var(--gold);
  color: var(--white) !important;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  transition: 0.25s ease;
}

.footer-btn:hover {
  background: var(--gold-dark);
  color: var(--white) !important;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 18px 0 22px;
  text-align: center;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.62);
}

/* ══════════════════════════════
   RESPONSIVE
   ══════════════════════════════ */
@media (max-width: 1200px) {
  .hero {
    gap: 28px;
    padding-inline: 32px;
  }

  .hero-left {
    width: 50%;
    max-width: unset;
    padding-right: 12px;
  }

  .hero-right {
    width: 50%;
  }

  .hero-img-wrap {
    width: 100%;
    height: 390px;
  }

  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 991px) {
  :root {
    --navbar-height: 78px;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .mobile-menu-btn {
    display: inline-flex;
  }

  .mobile-menu {
    display: block;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background: rgba(255, 248, 242, 0.98);
    border-top: 1px solid rgba(0, 0, 0, 0.04);
  }

  .mobile-menu.open {
    max-height: 420px;
    padding: 8px 16px 18px;
  }

  .mobile-menu a {
    display: block;
    width: min(100%, var(--container));
    margin: 0 auto;
    text-decoration: none;
    color: var(--text-dark);
    font-size: 15px;
    font-weight: 600;
    padding: 14px 4px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }

  .mobile-menu a.active {
    color: var(--gold);
  }

  .mobile-menu-cta {
    margin-top: 8px !important;
    border-bottom: none !important;
    background: var(--gold);
    color: var(--white) !important;
    border-radius: 10px;
    padding-inline: 14px !important;
  }

  .hero {
    flex-direction: column;
    text-align: center;
    min-height: auto;
    padding: calc(var(--navbar-height) + 34px) 20px 56px;
  }

  .hero-left,
  .hero-right {
    width: 100%;
    max-width: 100%;
    padding-right: 0;
  }

  .hero-left {
    align-items: center;
  }

  .hero-heading h1 {
    font-size: 42px;
  }

  .hero-desc {
    font-size: 18px;
    line-height: 30px;
  }

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

  .hero-hex {
    opacity: 0.28;
  }

  .hero-hex-1 {
    left: -120px;
    top: 40px;
  }

  .hero-hex-2 {
    right: -150px;
    left: auto;
    top: 140px;
  }

  .neden {
    padding: 72px 20px 90px;
    gap: 50px;
  }

  .neden-title {
    font-size: 34px;
  }

  .product-card {
    grid-template-columns: 1fr;
  }

  .about-section,
  .contact-inner {
    grid-template-columns: 1fr;
  }

  .about-section.reverse .about-img-wrap,
  .about-section.reverse .about-text {
    order: initial;
  }

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

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
}

@media (max-width: 767px) {
  .nav-container {
    min-height: 74px;
  }

  .nav-logo-img {
    height: 48px;
  }

  .page-header {
    padding-top: calc(var(--navbar-height) + 34px);
  }

  .page-header-title {
    font-size: 34px;
  }

  .page-header-desc {
    font-size: 16px;
    line-height: 28px;
  }

  .hero-heading h1 {
    font-size: 34px;
    line-height: 1.2;
    letter-spacing: -0.5px;
  }

  .hero-desc {
    font-size: 16px;
    line-height: 28px;
  }

  .btn-siparis {
    width: 100%;
  }

  .btn-video {
    width: 100%;
    justify-content: center;
  }

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

  .card-title {
    font-size: 20px;
  }

  .product-title {
    font-size: 26px;
  }

  .price-amount {
    font-size: 24px;
  }

  .about-title {
    font-size: 30px;
  }

  .about-img,
  .about-img.short {
    height: 280px;
  }

  .contact-right {
    padding: 20px;
  }

  .footer {
    margin-top: 60px;
  }

  .footer-container {
    grid-template-columns: 1fr;
    padding: 48px 0 24px;
  }

  .footer-col h3 {
    font-size: 22px;
  }

  .footer-bottom {
    padding: 16px 10px 20px;
    font-size: 13px;
  }

  .whatsapp-float {
    right: 18px;
    bottom: 18px;
    width: 56px;
    height: 56px;
  }

  .whatsapp-float img {
    width: 28px;
    height: 28px;
  }
}

/* ══════════════════════════════════════════
   ANIMATIONS
   ══════════════════════════════════════════ */

/* ── Keyframes ── */
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeSlideRight {
  from { opacity: 0; transform: translateX(-28px); }
  to   { opacity: 1; transform: translateX(0); }
}

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

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes waPulse {
  0%, 100% { box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35), 0 0 0 0 rgba(37, 211, 102, 0.4); }
  50%       { box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35), 0 0 0 10px rgba(37, 211, 102, 0); }
}

/* ── Hero load animations ── */
.hero-badge    { animation: fadeSlideUp 0.55s ease both; animation-delay: 0.10s; }
.hero-heading  { animation: fadeSlideUp 0.55s ease both; animation-delay: 0.22s; }
.hero-desc-wrap{ animation: fadeSlideUp 0.55s ease both; animation-delay: 0.34s; }
.hero-btns     { animation: fadeSlideUp 0.55s ease both; animation-delay: 0.46s; }
.hero-right    { animation: fadeSlideLeft 0.65s ease both; animation-delay: 0.30s; }

/* ── WhatsApp float pulse ── */
.whatsapp-float { animation: waPulse 2.4s ease-in-out infinite; }

/* ── Scroll reveal base state ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.from-left {
  transform: translateX(-28px);
}

.reveal.from-right {
  transform: translateX(28px);
}

.reveal.revealed {
  opacity: 1;
  transform: translate(0, 0);
}

/* Stagger delays for child groups */
.reveal-group .reveal:nth-child(1) { transition-delay: 0.00s; }
.reveal-group .reveal:nth-child(2) { transition-delay: 0.10s; }
.reveal-group .reveal:nth-child(3) { transition-delay: 0.20s; }
.reveal-group .reveal:nth-child(4) { transition-delay: 0.30s; }
.reveal-group .reveal:nth-child(5) { transition-delay: 0.40s; }
.reveal-group .reveal:nth-child(6) { transition-delay: 0.50s; }

/* ── Card hover lift (consistent across all card types) ── */
.card,
.product-card,
.contact-info-card,
.value-item {
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.card:hover,
.product-card:hover,
.contact-info-card:hover,
.value-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.10);
}