/*
Theme Name: Kamaya UI Theme
Author: Sachin
Version: 2.8.0
Description: Kamya Groups — masala products and travel services.
*/

:root {
  --bg: #f7f9fc;
  --text: #151515;
  --muted: #5f6b7a;
  --primary: #2f73ff;
  --whatsapp: #25d366;
  --whatsapp-dark: #1ebe57;
  --brand: #8b1538;
  --card: #ffffff;
  --radius-xl: 30px;
  --radius-lg: 18px;
  --shadow: 0 18px 36px rgba(24, 39, 75, 0.08);
}

* {
  box-sizing: border-box;
}

a {
  color: inherit;
  text-decoration: none;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
}

.site-main {
  padding: 0;
  margin: 0;
}

.site-inner {
  width: min(1180px, 92%);
  margin-left: auto;
  margin-right: auto;
}

.site-wrap {
  width: min(1180px, 92%);
  margin: 0 auto;
  padding: 48px 0 56px;
}

.hero-shell {
  background: #fff;
  border-radius: var(--radius-xl);
  padding: 24px;
  box-shadow: var(--shadow);
}

/* Full-viewport home hero */
.hero-shell--immersive {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  background: #fff;
}

.hero-shell--immersive .topbar--inset {
  width: min(1180px, 92%);
  margin: 0 auto;
  padding: 18px 0 16px;
  flex-shrink: 0;
}

.hero--immersive {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: calc(100vh - 72px);
  min-height: calc(100dvh - 72px);
  border-radius: 0;
}

.hero-grid--inset {
  width: min(1180px, 92%);
  margin: 0 auto;
  flex: 1;
  align-content: end;
  padding-bottom: 40px;
}

.hero-shell--page {
  width: 100%;
  max-width: none;
  margin: 0 0 26px;
  padding: 0 0 28px;
  border-radius: 0;
  background: #fff;
  box-shadow: 0 10px 26px rgba(20, 42, 64, 0.05);
  border-bottom: 1px solid #eef2f7;
}

.hero-shell--page .topbar--inset,
.hero-shell--page .page-hero-mini {
  width: min(1180px, 92%);
  margin-left: auto;
  margin-right: auto;
}

.hero-shell--page .topbar--inset {
  padding-top: 18px;
}

.hero-shell--page + .site-main .site-wrap {
  padding-top: 14px;
}

body.admin-bar .hero-shell--immersive {
  min-height: calc(100vh - 32px);
  min-height: calc(100dvh - 32px);
}

@media (max-width: 782px) {
  body.admin-bar .hero-shell--immersive {
    min-height: calc(100vh - 46px);
    min-height: calc(100dvh - 46px);
  }
}

.hero--immersive .hero-grid--inset {
  min-height: 100%;
  align-content: center;
  padding-top: 24px;
  justify-items: start;
}

@media (max-width: 980px) {
  .hero--immersive {
    min-height: calc(100vh - 64px);
    min-height: calc(100dvh - 64px);
  }

  .hero--immersive .hero-grid--inset {
    align-content: start;
    padding-top: 38px;
    padding-bottom: 24px;
  }
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 6px 8px 20px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.03em;
  display: inline-flex;
  align-items: center;
  line-height: 0;
}

.brand-logo {
  display: block;
  height: 56px;
  width: auto;
  max-width: 224px;
  object-fit: contain;
}

.brand-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--brand);
  margin-right: 8px;
}

.nav-links {
  display: flex;
  gap: 28px;
  font-size: 14px;
  font-weight: 500;
}

.nav-toggle {
  display: none;
}

.btn-dark {
  border: 0;
  border-radius: 999px;
  background: #121212;
  color: #fff;
  font-weight: 600;
  padding: 12px 22px;
  cursor: pointer;
  display: inline-block;
}

.btn-whatsapp {
  border: 0;
  border-radius: 999px;
  background: var(--whatsapp);
  color: #fff;
  font-weight: 600;
  padding: 12px 22px;
  cursor: pointer;
  display: inline-block;
  box-shadow: 0 8px 18px rgba(37, 211, 102, 0.28);
  transition: background 0.2s ease, transform 0.2s ease;
}

.btn-whatsapp:hover {
  background: var(--whatsapp-dark);
  color: #fff;
}

.btn-whatsapp.btn-sm {
  padding: 10px 18px;
  font-size: 14px;
}

.hero {
  position: relative;
  min-height: 560px;
  border-radius: 26px;
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(255, 247, 237, 0.92), rgba(254, 243, 199, 0.55), rgba(255, 237, 213, 0.75)),
    var(--hero-bg, url("assets/kamya-hero.png"))
      center/cover no-repeat;
}

.hero--kamya {
  background:
    linear-gradient(115deg, rgba(255, 250, 245, 0.88) 0%, rgba(255, 237, 213, 0.55) 45%, rgba(254, 215, 170, 0.35) 100%),
    var(--hero-bg, url("assets/kamya-hero.png"))
      center/cover no-repeat;
}

.hero--immersive {
  border-radius: 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(340px, 1fr) auto;
  gap: 28px;
  padding: 72px 0 40px;
  justify-items: start;
  align-items: end;
  position: relative;
  width: min(1180px, 92%);
  margin: 0 auto;
}

.hero-grid--inset {
  width: min(1180px, 92%);
  margin: 0 auto;
  flex: 1;
  align-content: center;
  padding-bottom: 40px;
}

.hero-copy {
  justify-self: start;
  text-align: left;
  max-width: 760px;
  width: 100%;
  margin: 0;
  padding: 0;
}

.hero-copy .eyebrow {
  margin-top: 0;
}

.hero-copy h1,
.hero h1 {
  text-align: left;
  max-width: 760px;
  font-size: clamp(40px, 5.2vw, 68px);
  line-height: 1.05;
  margin: 14px 0 20px;
}

.hero-lead {
  max-width: 640px;
  line-height: 1.55;
  color: #2a3a47;
  margin: 0 0 24px;
}

.hero-title .word-anim {
  position: relative;
  display: inline-block;
  vertical-align: baseline;
  color: var(--brand);
}

.word-anim__text {
  display: inline-block;
  position: relative;
  z-index: 2;
  transition: opacity 0.25s ease, transform 0.35s ease, filter 0.35s ease;
}

.word-anim.is-smash .word-anim__text {
  transform: scale(1.28) rotate(-4deg);
  filter: blur(0.5px);
}

.word-anim.is-effect .word-anim__text {
  opacity: 0;
  transform: scale(0.15);
  filter: blur(8px);
}

.word-anim.is-restore .word-anim__text {
  opacity: 1;
  transform: scale(1);
  filter: none;
  animation: word-pop 0.45s ease;
}

@keyframes word-pop {
  0% { transform: scale(0.4); opacity: 0; }
  70% { transform: scale(1.08); opacity: 1; }
  100% { transform: scale(1); }
}

.word-anim__powder {
  position: absolute;
  left: 50%;
  top: 55%;
  width: 0;
  height: 0;
  pointer-events: none;
  z-index: 3;
  opacity: 0;
}

.word-anim--masala.is-effect .word-anim__powder {
  opacity: 1;
}

.word-anim__powder i {
  position: absolute;
  left: 0;
  top: 0;
  width: var(--s);
  height: var(--s);
  border-radius: 50%;
  background: var(--c);
  opacity: 0;
  transform: translate(0, 0) scale(0.4);
}

.word-anim--masala.is-effect .word-anim__powder i {
  animation: powder-burst 1.35s ease-out forwards;
  animation-delay: var(--d);
}

@keyframes powder-burst {
  0% {
    opacity: 0;
    transform: translate(0, 0) scale(0.3);
  }
  18% {
    opacity: 1;
  }
  100% {
    opacity: 0.15;
    transform: translate(var(--x), var(--y)) scale(1.35);
  }
}

.word-anim__bus-pop {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(0.55);
  width: 170px;
  pointer-events: none;
  z-index: 3;
  opacity: 0;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.22));
}

.word-anim__bus-pop img {
  display: block;
  width: 100%;
  height: auto;
}

.word-anim--travel.is-effect .word-anim__text {
  opacity: 0;
  transform: scale(0.85);
  filter: blur(2px);
}

.word-anim--travel.is-bus-pop .word-anim__text {
  opacity: 0;
}

.word-anim--travel.is-bus-pop .word-anim__bus-pop {
  animation: bus-pop-vanish 2s ease-in-out forwards;
}

@keyframes bus-pop-vanish {
  0% {
    opacity: 0;
    transform: translate(-50%, -40%) scale(0.45);
  }
  18% {
    opacity: 1;
    transform: translate(-50%, -55%) scale(1.08);
  }
  35% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
  78% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -58%) scale(0.92);
  }
}

.steps {
  position: absolute;
  left: max(12px, calc((100% - min(1180px, 92%)) / 2 - 56px));
  top: 50%;
  transform: translateY(-50%);
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  z-index: 2;
}

@media (min-width: 981px) {
  .hero--immersive .hero-copy {
    padding-left: 0;
    margin-left: 0;
  }
}

.step-line {
  width: 2px;
  height: 54px;
  background: rgba(255, 255, 255, 0.9);
}

.step-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 14px;
  border: 2px solid rgba(255, 255, 255, 0.95);
  background: rgba(47, 115, 255, 0.9);
  text-decoration: none;
}

.step-circle.is-muted {
  background: rgba(255, 255, 255, 0.35);
}

.eyebrow {
  margin-top: 0;
  font-size: 14px;
  letter-spacing: 0.02em;
  color: #244056;
  font-weight: 600;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.btn-primary {
  border: 0;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  padding: 14px 30px;
  font-weight: 600;
  display: inline-block;
}

.btn-primary.btn-sm {
  padding: 10px 18px;
  font-size: 14px;
}

.btn-outline-light {
  border-radius: 999px;
  border: 2px solid #fff;
  background: rgba(255, 255, 255, 0.9);
  color: var(--text);
  padding: 12px 22px;
  font-weight: 600;
  display: inline-block;
}

.hero-actions--center {
  justify-content: center;
}

.play-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 0;
  background: #fff;
  color: var(--primary);
  font-weight: 700;
}

.info-card {
  align-self: end;
  justify-self: end;
  width: min(305px, 96%);
  background: #fff;
  border-radius: 22px;
  padding: 16px;
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.08);
}

.info-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  margin-bottom: 12px;
}

.thumbs {
  display: flex;
  margin: 12px 0 8px;
}

.thumb {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid #fff;
  margin-left: -8px;
  background-size: cover;
  background-position: center;
}

.thumb:first-child {
  margin-left: 0;
}

.muted {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.section {
  margin-top: 44px;
}

.section h2 {
  font-size: clamp(28px, 3vw, 40px);
  margin: 0 0 10px;
  color: var(--brand);
}

.section p {
  color: var(--muted);
  margin: 0 0 20px;
}

.section p.section-link {
  margin: 36px 0 0;
  padding-top: 0;
  color: inherit;
}

.places-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(210px, 1fr));
  gap: 18px;
}

.places-grid--4 {
  grid-template-columns: repeat(4, minmax(180px, 1fr));
}

.place-card {
  background: var(--card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(20, 42, 64, 0.08);
}

.place-image {
  height: 180px;
  background-size: cover;
  background-position: center;
}

.place-image--contain {
  background-size: contain;
  background-repeat: no-repeat;
  background-color: #111;
}

.place-image--product {
  background-color: #f8f1e8;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.place-content {
  padding: 14px;
}

/* Products page — showcase cards */
.section--product-showcase {
  padding-top: 8px;
}

.product-showcase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 22px;
}

.product-showcase-card {
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.1);
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.product-showcase-card__media {
  position: relative;
  min-height: 220px;
  padding: 28px 20px;
  background: linear-gradient(165deg, #c4b5fd 0%, #7c6cf0 45%, #5b4fd6 100%);
  display: grid;
  place-items: center;
}

.product-showcase-card__media img {
  width: 100%;
  max-width: 200px;
  max-height: 180px;
  object-fit: contain;
  filter: drop-shadow(0 12px 24px rgba(15, 23, 42, 0.2));
}

.product-showcase-card__body {
  padding: 18px 18px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 10px;
}

.product-showcase-card__body h3 {
  margin: 0;
  font-size: 18px;
  line-height: 1.25;
  color: #151515;
}

.product-showcase-card__desc {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--muted);
  flex: 1;
}

.product-showcase-card__wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 6px;
  padding: 12px 16px;
  border-radius: 12px;
  background: var(--whatsapp);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
}

.product-showcase-card__wa:hover {
  background: var(--whatsapp-dark);
  color: #fff;
  transform: translateY(-1px);
}

@media (max-width: 600px) {
  .product-showcase-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .product-showcase-card__media {
    min-height: 200px;
    padding: 22px 16px;
  }
}

.place-content h3 {

  margin: 0 0 8px;
  font-size: 18px;
}

.section-link a {
  color: var(--primary);
  font-weight: 600;
  display: inline-block;
}

.small {
  font-size: 13px;
  color: var(--muted);
  margin: 0;
}

.section-eyebrow {
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--brand);
  margin: 0 0 8px;
}

.section--card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
}

.section--about-values {
  text-align: center;
  background: #fff;
  border-radius: 20px;
  border: 1px solid #eceff4;
  padding: 26px 18px 22px;
}

.about-values__badge {
  display: inline-block;
  margin: -42px auto 18px;
  padding: 10px 28px;
  border-radius: 8px;
  background: var(--brand);
  color: #fff;
  font-weight: 700;
  font-size: 16px;
}

.about-values__block {
  max-width: 860px;
  margin: 0 auto;
  padding: 14px 0;
}

.about-values__block + .about-values__block {
  margin-top: 14px;
}

.about-values__title {
  margin: 0 0 14px;
  font-size: clamp(34px, 4.2vw, 50px);
  line-height: 1.02;
  font-family: "Brush Script MT", "Segoe Script", cursive;
  font-weight: 500;
  color: #121212;
}

.about-values__block p {
  margin: 0 auto;
  font-size: clamp(18px, 2.2vw, 34px);
  line-height: 1.65;
  color: #1f2937;
  max-width: 42ch;
}

.section--about-cards {
  margin-top: 18px;
}

.about-cards__frame {
  border-radius: 22px;
  padding: 8px 2px;
  background: transparent;
}

.about-cards__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(180px, 1fr));
  gap: 18px;
}

.about-value-card {
  border-radius: 14px;
  padding: 18px 16px;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.12);
  transform: rotate(var(--tilt, 0deg));
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.about-value-card:hover {
  transform: rotate(0deg) translateY(-5px);
  box-shadow: 0 20px 34px rgba(15, 23, 42, 0.16);
}

.about-value-card__stars {
  font-size: 13px;
  letter-spacing: 0.18em;
  margin-bottom: 10px;
}

.about-value-card h3 {
  margin: 0 0 8px;
  font-size: 20px;
  line-height: 1.2;
}

.about-value-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
}

.about-value-card--light {
  background: #fff;
  color: #111827;
}

.about-value-card--light .about-value-card__stars {
  color: #2f73ff;
}

.about-value-card--violet {
  background: linear-gradient(165deg, #8f8dff 0%, #6f66f3 100%);
  color: #fff;
}

.about-value-card--violet .about-value-card__stars {
  color: #f4f1ff;
}

.about-value-card--violet p {
  color: rgba(255, 255, 255, 0.92);
}

.about-value-card--dark {
  background: #111318;
  color: #f8fafc;
}

.about-value-card--dark .about-value-card__stars {
  color: #2f8cff;
}

.about-value-card--dark p {
  color: rgba(248, 250, 252, 0.88);
}

.section--about-fleet,
.section--about-gallery-grid {
  position: relative;
  background: #fff;
  border-radius: 20px;
  padding: 28px 22px 24px;
}

.section--about-fleet .about-values__badge,
.section--about-gallery-grid .about-values__badge {
  margin-top: -44px;
}

.about-fleet__content {
  margin-top: 6px;
}

.about-fleet__intro {
  margin: 0 0 24px;
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.7;
  color: #1f2937;
}

.about-fleet__block {
  margin-bottom: 24px;
}

.about-fleet__block h3,
.about-fleet__commitment h3 {
  margin: 0 0 12px;
  font-size: 17px;
  color: #151515;
}

.about-fleet__commitment p {
  margin: 0 0 14px;
  color: #374151;
}

.about-fleet__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.about-fleet__list li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 10px;
  line-height: 1.7;
  color: #1f2937;
}

.about-fleet__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), #f59e0b);
  transform: translateY(-50%);
}

.about-fleet__images {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin: 20px 0 26px;
  padding: 18px 0 0;
  border-top: 6px solid #fbbf24;
}

.about-fleet__image-card {
  margin: 0;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  display: grid;
  place-items: center;
  min-height: 160px;
}

.about-fleet__image-card img {
  width: 100%;
  height: 100%;
  max-height: 180px;
  object-fit: contain;
  display: block;
}

.about-gallery-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  grid-auto-rows: 170px;
  gap: 14px;
  margin-top: 8px;
}

.about-gallery-grid__item {
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 12px 28px rgba(20, 42, 64, 0.08);
}

.about-gallery-grid__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-gallery-grid__item--1 {
  grid-row: span 2;
}

.about-gallery-grid__item--4,
.about-gallery-grid__item--5 {
  grid-column: span 1;
}

@media (max-width: 900px) {
  .about-cards__grid {
    grid-template-columns: repeat(2, minmax(180px, 1fr));
  }

  .about-fleet__images {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 180px;
  }

  .about-gallery-grid__item--1 {
    grid-row: span 1;
    grid-column: span 2;
  }
}

@media (max-width: 600px) {
  .section--about-values {
    padding: 22px 14px 18px;
  }

  .about-values__badge {
    margin-top: -34px;
    font-size: 15px;
    padding: 9px 18px;
  }

  .about-values__title {
    font-size: clamp(28px, 10vw, 40px);
    margin-bottom: 10px;
  }

  .about-values__block p {
    font-size: clamp(16px, 4.6vw, 20px);
    line-height: 1.55;
  }

  .about-cards__frame {
    padding: 12px 0;
  }

  .about-cards__grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .about-value-card {
    transform: none;
  }

  .section--about-fleet,
  .section--about-gallery-grid {
    padding: 22px 14px 18px;
  }

  .about-fleet__images {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .about-fleet__image-card {
    min-height: 120px;
  }

  .about-gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 180px;
  }

  .about-gallery-grid__item--1 {
    grid-column: span 1;
  }
}

.page-hero-mini {
  padding: 8px 12px 20px;
}

.page-hero-mini__title {
  font-size: clamp(28px, 4vw, 42px);
  margin: 8px 0;
  color: var(--brand);
}

.page-hero-mini__sub {
  color: var(--muted);
  max-width: 640px;
  line-height: 1.5;
}

.eyebrow--dark {
  color: var(--brand);
  margin-top: 0;
}

.division-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(260px, 1fr));
  gap: 20px;
}

.division-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.btn-outline {
  display: inline-block;
  border: 1px solid #d5dde8;
  background: #fff;
  color: var(--text);
  border-radius: 12px;
  padding: 12px 20px;
  font-weight: 600;
  box-shadow: 0 1px 2px rgba(16, 24, 40, 0.04);
}

.btn-outline:hover {
  border-color: #b8c4d4;
}

.section--ecosystem {
  text-align: center;
  padding: 20px 0 10px;
}

.eco-intro {
  max-width: 640px;
  margin: 0 auto 28px;
}

.eco-badge {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 999px;
  background: #fff;
  color: #151515;
  font-size: 15px;
  font-weight: 600;
  border: 2px solid #fff;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.08);
  margin-bottom: 16px;
}

.eco-intro h2 {
  margin: 0 0 12px;
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.15;
}

.eco-accent {
  color: var(--brand);
}

.eco-intro p {
  margin: 0 0 18px;
  color: var(--muted);
}

.eco-view-btn,
.eco-actions .btn-outline-light {
  background: #fff;
  color: #151515;
  border: 2px solid #e5e7eb;
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.06);
}

.eco-view-btn:hover,
.eco-actions .btn-outline-light:hover {
  border-color: #cbd5e1;
  color: #111;
}

.eco-stage {
  position: relative;
  width: min(980px, 100%);
  height: 420px;
  margin: 0 auto 28px;
}

.eco-stage-wrap {
  width: 100%;
}

.eco-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.eco-path {
  fill: none;
  stroke: #c9d4e5;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 5 7;
  animation: path-flow 2.4s linear infinite;
}

@keyframes path-flow {
  to { stroke-dashoffset: -24; }
}

.eco-hub {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 168px;
  height: 168px;
  display: grid;
  place-items: center;
  z-index: 3;
}

.eco-hub__ring,
.eco-hub__ring--2 {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(139, 21, 56, 0.18);
  animation: hub-pulse 3.2s ease-out infinite;
}

.eco-hub__ring--2 {
  inset: -22px;
  animation-delay: 0.8s;
  border-color: rgba(139, 21, 56, 0.1);
}

.eco-hub__core {
  width: 148px;
  height: 148px;
  border-radius: 50%;
  background: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 18px 40px rgba(139, 21, 56, 0.18);
  z-index: 2;
  overflow: hidden;
  padding: 18px;
  border: 5px solid var(--brand);
}

.eco-hub__logo {
  width: 100%;
  height: auto;
  max-height: 100%;
  object-fit: contain;
}

@keyframes hub-pulse {
  0% { transform: scale(0.92); opacity: 0.9; }
  70% { transform: scale(1.12); opacity: 0; }
  100% { transform: scale(1.12); opacity: 0; }
}

/* Small scattered chips — full image visible (no crop) */
.eco-chip {
  position: absolute;
  z-index: 2;
  width: 108px;
  height: 88px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.12);
  padding: 8px;
  display: grid;
  place-items: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  animation: eco-float 4.8s ease-in-out infinite;
}

.eco-chip:hover {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 16px 30px rgba(15, 23, 42, 0.16);
}

.eco-chip img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  border-radius: 8px;
  display: block;
  background: transparent;
}

/* Left products — staggered cloud positions */
.eco-chip--p1 { left: 6%;  top: 4%;  animation-delay: 0s; }
.eco-chip--p2 { left: 1%;  top: 26%; animation-delay: 0.25s; }
.eco-chip--p3 { left: 12%; top: 46%; animation-delay: 0.5s; }
.eco-chip--p4 { left: 2%;  top: 66%; animation-delay: 0.75s; }
.eco-chip--p5 { left: 15%; top: 80%; animation-delay: 1s; }

/* Right buses — staggered cloud positions */
.eco-chip--b1 { right: 6%;  top: 4%;  animation-delay: 0.15s; }
.eco-chip--b2 { right: 1%;  top: 26%; animation-delay: 0.4s; }
.eco-chip--b3 { right: 12%; top: 46%; animation-delay: 0.65s; }
.eco-chip--b4 { right: 2%;  top: 66%; animation-delay: 0.9s; }
.eco-chip--b5 { right: 15%; top: 80%; animation-delay: 1.15s; }

@keyframes eco-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}

.eco-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

/* Mobile: keep hub layout, scale it down (like integrations reference) */
@media (max-width: 900px) {
  .eco-stage-wrap {
    overflow: hidden;
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 8px;
  }

  .eco-stage {
    width: 980px;
    height: 420px;
    flex: 0 0 980px;
    transform: scale(0.36);
    transform-origin: top center;
    margin: 0 auto -255px;
  }

  .eco-lines {
    display: block;
  }

  .eco-hub {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 168px;
    height: 168px;
    margin: 0;
  }

  .eco-hub__core {
    width: 148px;
    height: 148px;
    padding: 18px;
    border-color: var(--brand);
  }

  .eco-chip {
    position: absolute;
    width: 132px;
    height: 108px;
    min-height: 0;
    aspect-ratio: auto;
    animation: none;
    margin: 0;
    padding: 6px; /* make room for the image inside on small screens */
  }

  .eco-chip:hover {
    transform: none;
  }

  .eco-chip img {
    object-fit: contain;
  }
}

@media (max-width: 480px) {
  .eco-stage {
    transform: scale(0.32);
    margin-bottom: -275px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .eco-path,
  .eco-hub__ring,
  .eco-hub__ring--2,
  .eco-chip,
  .word-anim__text,
  .word-anim__powder i,
  .word-anim__bus-pop {
    animation: none !important;
  }

  .word-anim__text {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }

  .word-anim__powder,
  .word-anim__bus-pop {
    display: none;
  }
}

.division-card h3 {
  margin: 0 0 6px;
  color: var(--brand);
}

.division-sub {
  color: var(--muted);
  margin: 0 0 14px;
}

.check-list {
  margin: 0 0 18px;
  padding-left: 18px;
  color: #334155;
}

.check-list li {
  margin-bottom: 6px;
}

.card-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.link-arrow {
  font-weight: 600;
  color: var(--primary);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 22px;
  margin-top: 10px;
}

.feature-card--layered {
  position: relative;
  background: transparent;
  box-shadow: none;
  padding: 0 0 10px;
  animation: feature-float 4.8s ease-in-out infinite;
  animation-delay: var(--delay, 0s);
}

.feature-card__shadow {
  position: absolute;
  inset: 12px -10px -10px 12px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 18px 36px rgba(20, 42, 64, 0.12);
  z-index: 0;
}

.feature-card__panel {
  position: relative;
  z-index: 1;
  background: linear-gradient(180deg, #fffdfb 0%, #fff7f1 100%);
  border-radius: 18px;
  padding: 22px 18px 20px;
  border: 1px solid rgba(139, 21, 56, 0.08);
  min-height: 100%;
}

.feature-card__accent {
  position: absolute;
  top: 10px;
  right: 12px;
  width: 34px;
  height: 34px;
  opacity: 0.18;
  background:
    radial-gradient(circle at 30% 30%, var(--brand) 0 2px, transparent 3px),
    radial-gradient(circle at 55% 45%, var(--brand) 0 1.5px, transparent 2.5px),
    radial-gradient(circle at 40% 65%, var(--brand) 0 1.5px, transparent 2.5px);
  pointer-events: none;
}

.feature-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  color: var(--brand);
  background: rgba(139, 21, 56, 0.08);
}

.feature-card__icon svg {
  width: 24px;
  height: 24px;
}

.feature-card h3 {
  margin: 0 0 8px;
  font-size: 17px;
  color: #151515;
}

@keyframes feature-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@media (prefers-reduced-motion: reduce) {
  .feature-card--layered {
    animation: none;
  }
}

/* Home gallery 3D Instagram-style carousel */
.section--ig-carousel {
  overflow: hidden;        /* prevent horizontal scroll on mobile */
}

.ig-carousel {
  position: relative;
  margin-top: 28px;
  padding: 12px 0 8px;
  overflow: hidden;        /* clip side cards that extend beyond viewport */
}

.ig-carousel__stage {
  position: relative;
  height: 480px;           /* fixed height — no layout shift */
  perspective: 1200px;
  transform-style: preserve-3d;
  touch-action: pan-y;
  overflow: visible;
}

.ig-carousel__slide {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 310px;
  transform:
    translate(-50%, -50%)
    translateX(calc(var(--ig-offset, 0) * 220px))
    translateZ(calc(var(--ig-abs, 0) * -120px))
    rotateY(calc(var(--ig-offset, 0) * -28deg))
    scale(calc(1 - var(--ig-abs, 0) * 0.14));
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1),
              opacity 0.5s ease;
  cursor: pointer;
  will-change: transform, opacity;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.ig-carousel__slide.is-active {
  cursor: default;
}

.ig-frame {
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 22px 48px rgba(15, 23, 42, 0.16);
  border: 1px solid rgba(15, 23, 42, 0.06);
  display: flex;
  flex-direction: column;
  height: 100%;            /* all frames same height */
}

/* Profile header — always visible, never collapses (no layout shift) */
.ig-frame__head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-bottom: 1px solid #eef1f5;
  flex-shrink: 0;
}

/* Round avatar — crop to circle */
.ig-frame__avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: contain;      /* keep full logo visible inside circle */
  padding: 4px;
  background: #fff;
  border: 2px solid rgba(139, 21, 56, 0.15);
  flex-shrink: 0;
}

.ig-frame__name {
  font-size: 14px;
  font-weight: 700;
  color: #151515;
  letter-spacing: 0.01em;
}

.ig-frame__media {
  aspect-ratio: 1 / 1;
  background: linear-gradient(160deg, #fff7ef 0%, #f3e7d8 100%);
  display: grid;
  place-items: center;
  overflow: hidden;
  flex-shrink: 0;
}

.ig-frame__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  padding: 10px;
}

/* Body — fixed height so cards never push into dots */
.ig-frame__body {
  padding: 16px 18px 18px;
  text-align: left;
  flex: 1 1 auto;
  min-height: 90px;
  max-height: 90px;
  overflow: hidden;
}

.ig-frame__title {
  display: block;
  font-size: 16px;
  color: #151515;
  margin-bottom: 6px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ig-frame__caption {
  margin: 0;
  font-size: 13px;
  line-height: 1.45;
  color: var(--muted);
  display: -webkit-box;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.ig-carousel__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid #e2e8f0;
  background: #fff;
  color: #151515;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.1);
  transition: border-color 0.2s ease, color 0.2s ease;
}

.ig-carousel__nav:hover {
  border-color: var(--brand);
  color: var(--brand);
}

.ig-carousel__nav--prev {
  left: max(12px, calc(50% - 222px));
}

.ig-carousel__nav--next {
  right: max(12px, calc(50% - 222px));
}

.ig-carousel__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
}

.ig-carousel__dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: 0;
  padding: 0;
  background: #c9d4e5;
  cursor: pointer;
  transition: width 0.25s ease, background 0.25s ease;
}

.ig-carousel__dot.is-active {
  width: 22px;
  background: var(--brand);
}

/* ---- Tablet ---- */
@media (max-width: 900px) {
  .ig-carousel__stage {
    height: 440px;
  }

  .ig-carousel__slide {
    width: 270px;
    transform:
      translate(-50%, -50%)
      translateX(calc(var(--ig-offset, 0) * 160px))
      translateZ(calc(var(--ig-abs, 0) * -90px))
      rotateY(calc(var(--ig-offset, 0) * -22deg))
      scale(calc(1 - var(--ig-abs, 0) * 0.16));
  }

  .ig-carousel__nav--prev { left: 12px; }
  .ig-carousel__nav--next { right: 12px; }
}

/* ---- Phone ---- */
@media (max-width: 560px) {
  .section--ig-carousel {
    overflow: hidden;
    max-width: 100vw;      /* never wider than viewport */
  }

  .ig-carousel {
    margin-left: -4%;
    margin-right: -4%;
    padding-left: 4%;
    padding-right: 4%;
    overflow: hidden;
  }

  .ig-carousel__stage {
    height: 420px;
  }

  .ig-carousel__slide {
    width: min(260px, 72vw);
    transform:
      translate(-50%, -50%)
      translateX(calc(var(--ig-offset, 0) * 120px))
      translateZ(calc(var(--ig-abs, 0) * -60px))
      rotateY(calc(var(--ig-offset, 0) * -16deg))
      scale(calc(1 - var(--ig-abs, 0) * 0.2));
  }

  .ig-carousel__nav {
    width: 34px;
    height: 34px;
    font-size: 20px;
  }

  .ig-carousel__nav--prev { left: 10px; }
  .ig-carousel__nav--next { right: 10px; }

  .ig-frame__body {
    min-height: 84px;
    max-height: 84px;
    padding: 12px 14px 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ig-carousel__slide {
    transition: none;
  }
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(260px, 1fr));
  gap: 18px;
  margin-top: 8px;
}

.review-card {
  margin: 0;
  background: #fff;
  border-radius: 22px;
  padding: 22px;
  box-shadow: 0 12px 28px rgba(20, 42, 64, 0.08);
}

.review-card__head {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 10px;
}

.review-card__name {
  font-size: 16px;
  color: #111;
}

.review-card__date {
  font-size: 13px;
  color: #8b95a5;
}

.review-card__stars {
  display: flex;
  gap: 3px;
  margin-bottom: 12px;
  line-height: 1;
}

.review-card__stars .star {
  color: #e5e7eb;
  font-size: 18px;
}

.review-card__stars .star.is-on {
  color: #f5b301;
}

.review-card__title {
  margin: 0 0 8px;
  font-size: 20px;
  line-height: 1.25;
  color: #151515;
  font-weight: 700;
}

.review-card__body {
  margin: 0;
  color: #374151;
  line-height: 1.55;
  font-size: 15px;
}

.site-footer {
  margin-top: 28px;
  padding: 0 0 36px;
}

.footer-shell {
  width: min(1180px, 92%);
  margin: 0 auto;
}

.footer-card {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 16px 40px rgba(20, 42, 64, 0.08);
  padding: 32px 28px 20px;
}

.footer-top {
  display: grid;
  grid-template-columns: minmax(220px, 300px) 1fr;
  gap: 28px 36px;
  padding-bottom: 24px;
  border-bottom: 1px solid #eef2f7;
}

.footer-logo {
  display: block;
  height: 62px;
  width: auto;
  max-width: 224px;
  object-fit: contain;
  margin-bottom: 12px;
}

.footer-tagline {
  margin: 0;
  color: #5f6b7a;
  font-size: 14px;
  line-height: 1.55;
  max-width: 280px;
}

.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, minmax(140px, 1fr));
  gap: 20px;
}

.footer-heading {
  margin: 0 0 12px;
  font-size: 15px;
  color: var(--brand);
  font-weight: 700;
}

.footer-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-list li {
  margin: 0 0 8px;
  font-size: 14px;
  color: #5f6b7a;
  line-height: 1.45;
}

.footer-list a {
  color: #5f6b7a;
}

.footer-list a:hover {
  color: var(--brand);
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 28px;
  padding: 18px 0;
  border-bottom: 1px solid #eef2f7;
}

.footer-nav a {
  color: #8b95a5;
  font-size: 13px;
  font-weight: 500;
}

.footer-nav a:hover {
  color: var(--brand);
}

.footer-copy {
  padding-top: 14px;
  text-align: center;
  color: #8b95a5;
  font-size: 13px;
}

@media (max-width: 900px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .footer-cols {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .footer-tagline {
    max-width: none;
  }

  .footer-nav {
    gap: 10px 18px;
  }

  .footer-card {
    padding: 24px 18px 16px;
    border-radius: 18px;
  }
}

.cta-band {
  margin-top: 48px;
  text-align: center;
  background: #fff;
  border-radius: var(--radius-xl);
  padding: 36px 24px;
  box-shadow: var(--shadow);
}

.cta-band h2 {
  margin: 0 0 8px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
}

.product-card {
  background: #fff;
  border-radius: 14px;
  padding: 18px;
  box-shadow: 0 8px 20px rgba(20, 42, 64, 0.06);
}

.product-card h3 {
  margin: 0 0 8px;
  color: var(--brand);
}

.two-col {
  display: grid;
  grid-template-columns: repeat(2, minmax(220px, 1fr));
  gap: 20px;
  margin: 24px 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(180px, 1fr));
  gap: 14px;
}

.gallery-image {
  height: 180px;
  border-radius: 14px;
  background-size: cover;
  background-position: center;
}

.gallery-item figcaption {
  font-size: 13px;
  color: var(--muted);
  margin-top: 6px;
}

.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.gallery-filter {
  font-size: 13px;
  padding: 6px 12px;
  border-radius: 999px;
  background: #e8edf3;
  border: 0;
  cursor: pointer;
  color: inherit;
  font-family: inherit;
}

.gallery-filter.is-active {
  background: var(--brand);
  color: #fff;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(280px, 1fr));
  gap: 20px;
}

.contact-form label {
  display: block;
  margin-bottom: 12px;
}

.contact-form span {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 4px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #d5dde8;
  border-radius: 10px;
  padding: 10px 12px;
  font: inherit;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}

.contact-list li {
  margin-bottom: 16px;
  line-height: 1.45;
}

.muted-note {
  margin-top: 16px;
}

@media (max-width: 980px) {
  .topbar {
    flex-wrap: wrap;
    position: relative;
    gap: 10px;
    padding: 10px 0 14px;
  }

  .topbar .brand {
    font-size: 14px;
  }

  .nav-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 42px;
    height: 42px;
    margin-left: auto;
    border: 0;
    border-radius: 10px;
    background: #f1f5f9;
    cursor: pointer;
    padding: 10px;
  }

  .nav-toggle span {
    display: block;
    height: 2px;
    width: 100%;
    background: #111;
    border-radius: 2px;
    transition: transform 0.2s ease, opacity 0.2s ease;
  }

  .nav-toggle.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-toggle.is-open span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .nav-links {
    display: none;
    width: 100%;
    order: 4;
    flex-direction: column;
    gap: 0;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.1);
    overflow: hidden;
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    padding: 12px 16px;
    border-bottom: 1px solid #eef2f7;
    font-size: 13px;
  }

  .nav-links a:last-child {
    border-bottom: 0;
  }

  .topbar-wa {
    padding: 10px 14px;
    font-size: 13px;
  }

  .hero-shell--immersive {
    min-height: auto;
  }

  .hero--immersive {
    min-height: auto;
  }

  .hero-grid,
  .hero-grid--inset {
    width: 100%;
    grid-template-columns: 1fr;
    padding: 28px 4% 28px;
    gap: 18px;
    align-items: start;
  }

  .steps {
    display: none;
  }

  .hero-copy {
    max-width: 100%;
  }

  .hero-copy h1,
  .hero h1 {
    font-size: clamp(30px, 9vw, 42px);
    max-width: 100%;
    margin: 10px 0 14px;
  }

  .hero-lead {
    max-width: 100%;
    font-size: 15px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .hero-actions .btn-outline-light,
  .hero-actions .btn-whatsapp {
    text-align: center;
    width: 100%;
  }

  .info-card {
    justify-self: stretch;
    width: 100%;
    margin-top: 4px;
  }

  .topbar .brand-logo {
    height: 40px;
    max-width: 160px;
  }

  .word-anim__bus-pop {
    width: 120px;
  }

  .site-wrap {
    width: min(1180px, 94%);
    padding: 28px 0 40px;
  }

  .section h2 {
    font-size: clamp(24px, 7vw, 32px);
  }

  .places-grid,
  .places-grid--4,
  .division-grid,
  .testimonials-grid,
  .two-col,
  .contact-grid,
  .gallery-grid,
  .product-grid,
  .features-grid {
    grid-template-columns: 1fr;
  }

  .eco-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .eco-actions .btn-whatsapp {
    text-align: center;
  }

  .cta-band {
    padding: 28px 16px;
    margin-top: 28px;
  }

  .hero-shell--page .topbar--inset,
  .hero-shell--page .page-hero-mini {
    width: min(1180px, 94%);
  }
}

@media (min-width: 981px) {
  .nav-toggle {
    display: none !important;
  }

  .nav-links {
    display: flex !important;
  }
}

