/* ===== FONT FACE ===== */
@font-face {
  font-family: 'Samarkan';
  src: url('assets/Samarkan.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* ===== DESIGN TOKENS ===== */
:root {
  --primary: #FF5200;
  --primary-light: #F88B58;
  --peach: #FFEAE0;
  --peach-shadow: #FFCEB7;
  --dark: #202020;
  --dark-alt: #242424;
  --text: #000000;
  --bg-gray: #F9F9F9;
  --white: #FFFFFF;
  --border: #D9D9D9;
  --phone-frame: #474747;

  --font-display: 'Samarkan', cursive;
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Poppins', sans-serif;
  --font-nav: 'Open Sans', 'Raleway', sans-serif;

  --shadow-hero-image: 0px 4px 114px rgba(0,0,0,0.49);
  --shadow-stat-card: 0px 4px 54px #FFCEB7;
  --shadow-problem-card: 0px 4px 64px rgba(0,0,0,0.11);
  --shadow-phone: 0px 4px 134px rgba(0,0,0,0.25);

  --radius-navbar: 15px;
  --radius-card: 30px;
  --radius-stat: 15px;
  --radius-input: 10px;
  --radius-phone-outer: 50px;
  --radius-phone-inner: 40px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

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

a {
  text-decoration: none;
  color: inherit;
}

/* ===== REVEAL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal--left {
  transform: translateX(-40px);
}
.reveal--left.visible {
  transform: translateX(0);
}
.reveal--right {
  transform: translateX(40px);
}
.reveal--right.visible {
  transform: translateX(0);
}
.reveal--scale {
  transform: scale(0.9);
}
.reveal--scale.visible {
  transform: scale(1);
}

/* ===== SECTION 1: NAVBAR ===== */
/* ===== NAVBAR ===== */
/* Navbar styles are defined later in the SERVICE PAGES section
   (mobile-friendly with hamburger menu — applies to home page too) */

/* ===== SECTION 2: HERO ===== */
.hero {
  width: 100%;
  min-height: 100vh;
  background: var(--primary);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: clamp(120px, 15vh, 180px) clamp(20px, 5vw, 164px) clamp(60px, 8vh, 100px);
}
.hero__container {
  width: 100%;
  max-width: 1728px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 40px;
  /* position: relative; */
}
.hero__content {
  flex: 0 0 45%;
  max-width: 750px;
  z-index: 2;
}
.hero__heading {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: clamp(32px, 4.2vw, 54px);
    color: var(--white);
    line-height: 1.35;
    margin-bottom: 10px;
}
.hero__match-wrapper {
  display: inline-flex;
  align-items: center;
  margin-top: 4px;
}
.hero__match-badge {
    display: inline-block;
    background: var(--white);
    padding: 8px 36px;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: clamp(28px, 3.6vw, 40px);
    color: var(--primary);
    line-height: 1.35;
    will-change: transform, opacity;
}
.hero__subtitle {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(14px, 1.3vw, 18px);
  color: var(--white);
  line-height: 1.78;
  margin-top: 16px;
  max-width: 600px;
}
.hero__download {
  margin-top: 40px;
}
.hero__download-label {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(18px, 1.8vw, 26px);
  color: var(--white);
  letter-spacing: 0.52px;
  line-height: 1.5;
}
.hero__badges {
  display: flex;
  gap: 10px;
  margin-top: 12px;
  flex-wrap: wrap;
}
.hero__badge {
  height: clamp(50px, 5.5vw, 75px);
  width: auto;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}
.hero__badge:hover {
  transform: scale(1.05);
}
.hero__imagery {
  flex: 1;
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__couple-masked {
  position: absolute;
  right: -60px;
  top: 50%;
  transform: translateY(-50%);
  width: clamp(400px, 45vw, 700px);
  height: clamp(500px, 55vw, 886px);
  overflow: hidden;
}
.hero__couple-masked img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-mask-image: url('assets/hero-couple-mask.svg');
  mask-image: url('assets/hero-couple-mask.svg');
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
}
.hero__couple-fg {
  position: relative;
  z-index: 2;
  width: clamp(350px, 40vw, 600px);
  height: auto;
  box-shadow: var(--shadow-hero-image);
}
.hero__arrows {
  position: absolute;
  bottom: 40px;
  right: 40px;
  display: flex;
  gap: 8px;
  z-index: 5;
}
.hero__arrow {
  width: 24px;
  height: 24px;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}
.hero__arrow:hover {
  opacity: 1;
}

/* ===== SECTION 3: SERVICES ===== */
.services {
  padding: clamp(60px, 8vw, 100px) clamp(20px, 5vw, 80px);
  background: var(--white);
  text-align: center;
}
.services__header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin-bottom: clamp(40px, 5vw, 70px);
  flex-wrap: wrap;
}
.services__title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: clamp(32px, 4.3vw, 50px);
  color: var(--dark);
  letter-spacing: 1.2px;
  line-height: 1.33;
}
.services__nav {
  display: flex;
  gap: 10px;
}
.services__nav-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  font-size: 20px;
  line-height: 1;
}
.services__nav-btn:hover {
  transform: scale(1.1);
}
.services__nav-btn--prev {
  background: var(--white);
  border: 1px solid #BCBCBC;
  color: #666;
}
.services__nav-btn--next {
  background: var(--primary);
  color: var(--white);
}
.services__carousel-wrapper {
  overflow: hidden;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}
.services__carousel {
  display: flex;
  gap: clamp(20px, 3vw, 40px);
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  padding: 20px 0;
  justify-content: center;
  flex-wrap: wrap;
}
.services__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  cursor: pointer;
  transition: transform 0.3s ease;
}
.services__item:hover {
  transform: translateY(-10px);
}
.services__item:hover .services__circle {
  transform: scale(1.1);
}
.services__item:hover .services__shadow {
  transform: scaleX(1.15);
  opacity: 0.7;
}
.services__circle {
  width: clamp(110px, 12vw, 158px);
  height: clamp(110px, 12vw, 158px);
  border-radius: 50%;
  overflow: hidden;
  transition: transform 0.3s ease;
}
.services__circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.services__shadow {
    width: clamp(100px, 10vw, 142px);
    height: auto;
    will-change: transform, opacity;
    margin-top: -24px;
}
.services__label {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: clamp(16px, 1.6vw, 18px);
    color: var(--text);
    text-align: center;
    margin-top: 4px;
    will-change: transform, opacity;
}

/* ===== SECTION 4: TRADITION ===== */
.tradition {
    position: relative;
    padding: clamp(60px, 8vw, 120px) clamp(20px, 5vw, 80px);
    min-height: 700px;
    transform: skew(0deg, -7deg);
    background-color: #FFEAE0;
}
.skew-straight {
    transform: skew(0deg, 7deg);
}
.tradition__wave-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  z-index: 0;
}
.tradition__wave-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 101%;
  height: auto;
  z-index: 0;
}
.tradition__container {
  position: relative;
  z-index: 1;
  max-width: 1728px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 40px;
}
.tradition__figure {
    position: absolute;
    left: -30px;
    top: -380px;
    width: clamp(300px, 38vw, 764px);
    height: auto;
    z-index: 1;
    will-change: transform, opacity;
}
.tradition__figure img {
  width: 100%;
  height: auto;
  object-fit: contain;
  position: relative;
  z-index: 2;
}
.tradition__content {
  margin-left: auto;
  width: 55%;
  max-width: 920px;
  position: relative;
  z-index: 2;
}
.tradition__title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: clamp(32px, 4vw, 50px);
  color: var(--dark);
  letter-spacing: 1.1px;
  line-height: 1.45;
}
.tradition__location {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: clamp(18px, 1.8vw, 24px);
  color: var(--primary-light);
  letter-spacing: 0.48px;
  margin-top: 8px;
  text-align: left;
}
.tradition__desc {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: clamp(16px, 1.6vw, 20px);
    color: var(--text);
    line-height: 1.75;
    margin-top: 20px;
    will-change: transform, opacity;
}
.tradition__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(20px, 2.5vw, 30px);
  margin-top: clamp(30px, 4vw, 50px);
}
.stat-card {
  background: var(--white);
  border-radius: var(--radius-stat);
  box-shadow: var(--shadow-stat-card);
  padding: clamp(25px, 3vw, 35px) clamp(15px, 2vw, 25px);
  text-align: center;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0px 8px 64px #FFCEB7;
}
.stat-card__icon-wrap {
  position: relative;
  width: 160px;
  height: 160px;
  margin: -100px auto -30px;
  will-change: transform, opacity;
}
.stat-card__icon-bg {
  width: 100%;
  height: 100%;
}
.stat-card__icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
}
.stat-card__number {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: clamp(28px, 3.2vw, 32px);
  color: var(--text);
  letter-spacing: 0.88px;
  line-height: 1.8;
}
.stat-card__accent {
  color: var(--primary);
}
.stat-card__desc {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: clamp(14px, 1.4vw, 16px);
  color: var(--text);
  line-height: 1.3;
  margin-top: 4px;
}

/* ===== SECTION 5: PROBLEM ===== */
.problem {
  padding: clamp(60px, 8vw, 100px) clamp(20px, 5vw, 80px);
  background: var(--white);
}
.problem__title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: clamp(32px, 4.3vw, 50px);
  color: var(--dark);
  text-align: center;
  letter-spacing: 1.1px;
  line-height: 1.45;
  margin-bottom: clamp(40px, 5vw, 50px);
}
.problem__cards {
  display: flex;
  flex-direction: column;
  gap: clamp(30px, 4vw, 50px);
  max-width: 1400px;
  margin: 0 auto;
}
.problem-card {
  /* display: flex;
  align-items: center; */
  gap: clamp(20px, 3vw, 50px);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-problem-card);
  padding: clamp(25px, 3vw, 50px);
  border-left: 4px solid var(--primary);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.flex_Row {
    display: flex;
    align-items: center;
}
.problem-card:hover {
  transform: translateY(-5px);
  box-shadow: 0px 8px 80px rgba(0,0,0,0.14);
}
.problem-card--white {
  background: var(--white);
}
.problem-card--peach {
  background: var(--peach);
}
.problem-card__heading {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: clamp(24px, 2.8vw, 32px);
    color: var(--text);
    text-align: center;
    letter-spacing: 0.78px;
    line-height: 1.28;
    margin-bottom: clamp(15px, 2vw, 0px);
    width: 100%;
}
.problem-card__illustration {
  flex-shrink: 0;
  width: clamp(200px, 28vw, 414px);
  height: auto;
}
.problem-card__illustration img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
.problem-card__text {
  flex: 1;
}
.problem-card__para {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(15px, 1.5vw, 20px);
  color: var(--text);
  line-height: 40px;
  margin-bottom: 16px;
}
.problem-card__para strong {
  font-weight: 600;
}

/* ===== SECTION 6: SOLUTION ===== */
.solution {
  padding: clamp(60px, 8vw, 100px) clamp(20px, 5vw, 80px);
  background: var(--bg-gray);
}
.solution__container {
  max-width: 1728px;
  margin: 0 auto;
}
.solution__title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: clamp(32px, 4vw, 50px);
  color: var(--dark);
  text-align: center;
  letter-spacing: 1.1px;
  line-height: 1.45;
  margin-bottom: clamp(30px, 4vw, 20px);
}
.solution__body {
  display: flex;
  align-items: center;
  gap: clamp(20px, 4vw, 60px);
}
.solution__illustration {
  flex-shrink: 0;
  width: clamp(250px, 45vw, 800px);
}
.solution__illustration img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
.solution__text {
  flex: 1;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(16px, 1.6vw, 20px);
  color: var(--text);
  line-height: 1.75;
}

/* ===== SECTION 7: VALUE CARDS ===== */
.value {
  padding: clamp(60px, 8vw, 80px) clamp(20px, 5vw, 80px);
  background: var(--white);
  position: relative;
  overflow: hidden;
}
.value__cards {
  display: flex;
  gap: clamp(20px, 3vw, 40px);
  max-width: 1400px;
  margin: 0 auto;
  justify-content: center;
}
.value-card {
  flex: 1;
  max-width: 585px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: clamp(25px, 3vw, 45px);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.value-card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 8px 40px rgba(0,0,0,0.1);
  border-color: var(--primary);
}
.value-card__title {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: clamp(22px, 2.4vw, 26px);
    color: var(--text);
    line-height: 1.32;
    margin-bottom: 16px;
    will-change: transform, opacity;
}
.value-card__title-accent {
  color: var(--primary);
}
.value-card__desc {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(15px, 1.5vw, 18px);
  color: var(--text);
  line-height: 1.92;
}
.value-card__desc strong {
  font-weight: 500;
}
.value-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: clamp(16px, 1.6vw, 24px);
  color: var(--primary);
  margin-top: 20px;
  transition: gap 0.3s ease;
}
.value-card:hover .value-card__link {
  gap: 12px;
}
.value-card__link-arrow {
  transition: transform 0.3s ease;
  font-size: 1.2em;
}
.value-card:hover .value-card__link-arrow {
  transform: translateX(4px);
}

/* Watermark Text */
.value__watermarks {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-top: clamp(20px, 3vw, 40px);
  overflow: hidden;
  white-space: nowrap;
}
.value__watermark {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: clamp(80px, 16vw, 230px);
  color: transparent;
  -webkit-text-stroke: 2px var(--primary);
  opacity: 0.06;
  line-height: 1;
  user-select: none;
}

/* ===== SECTION 8: FOOTER / APP DOWNLOAD ===== */
.app-download {
    padding: 80px 20px 0;
    background: var(--bg-gray);
    position: relative;
    overflow: hidden;
}
.app-download__bg-wave {
  position: absolute;
  right: 0;
  top: 0;
  width: 85%;
  height: 100%;
  z-index: 0;
  opacity: 0.5;
}
.app-download__container {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: clamp(40px, 6vw, 100px);
}
.phone-mockup {
  flex-shrink: 0;
  position: relative;
  width: clamp(250px, 28vw, 397px);
}
.phone-mockup__frame {
  background: var(--phone-frame);
  border-radius: var(--radius-phone-outer) var(--radius-phone-outer) 0 0;
  padding: 16px;
  box-shadow: var(--shadow-phone);
  position: relative;
  overflow: hidden;
  bottom: -20px;
}
.phone-mockup__screen {
  background: var(--primary);
  border-radius: var(--radius-phone-inner) var(--radius-phone-inner) 0 0;
  width: 100%;
  aspect-ratio: 365 / 542;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}
.phone-mockup__camera {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #363636;
}
.phone-mockup__text {
  font-family: var(--font-display);
  font-size: clamp(40px, 5.5vw, 80px);
  color: var(--white);
  text-align: center;
}
.phone-mockup__bar {
    position: absolute;
    top: 212px;
    left: 35%;
    transform: translateX(-50%);
    width: 128px;
    height: 40px;
    background: #ff5200;
    /* filter: brightness(0.85); */
}
.app-download__content {
  flex: 1;
}
.app-download__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(32px, 4vw, 48px);
  color: var(--dark-alt);
  letter-spacing: 1.1px;
  line-height: 1.45;
}
.app-download__subtitle {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(16px, 1.4vw, 18px);
  color: var(--dark-alt);
  line-height: 1.71;
  margin-top: 12px;
}
.app-download__input-wrap {
  margin-top: 24px;
}
.app-download__input {
  width: 100%;
  max-width: 352px;
  height: 60px;
  border: 1px solid var(--border);
  border-radius: var(--radius-input);
  padding: 0 20px;
  font-family: var(--font-body);
  font-size: 16px;
  background: var(--white);
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.app-download__input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(255,82,0,0.1);
}
.app-download__input::placeholder {
  color: rgba(0,0,0,0.5);
}
.app-download__badges {
  display: flex;
  gap: 10px;
  margin-top: 24px;
  flex-wrap: wrap;
}
.app-download__badge {
  height: clamp(60px, 6vw, 70px);
  width: auto;
  cursor: pointer;
  transition: transform 0.3s ease;
}
.app-download__badge:hover {
  transform: scale(1.05);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--white);
  padding: 30px clamp(20px, 5vw, 80px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.footer__logo {
  position: relative;
  display: flex;
  align-items: center;
}
.footer__logo-text {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.2vw, 60px);
  color: var(--primary);
  line-height: 1;
}
.footer__logo-accent {
    position: absolute;
    left: 0;
    top: -5px;
    width: 28px;
    height: 20px;
    background: var(--white);
}
.footer__copy {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(12px, 1.1vw, 14px);
  color: var(--text);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero__container {
    flex-direction: column;
    text-align: center;
  }
  .hero__content {
    flex: none;
    max-width: 100%;
  }
  .hero__subtitle {
    margin-left: auto;
    margin-right: auto;
  }
  .hero__badges {
    justify-content: center;
  }
  .hero__download {
    text-align: center;
  }
  .hero__imagery {
    min-height: 400px;
    justify-content: center;
  }
  .hero__couple-masked {
    position: relative;
    right: auto;
    top: auto;
    transform: none;
    width: 80%;
    max-width: 500px;
    height: auto;
    aspect-ratio: 602 / 886;
  }
  .hero__couple-fg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70%;
    max-width: 450px;
  }
  .tradition__figure {
    display: none;
  }
  .tradition__content {
    width: 100%;
    margin-left: 0;
    text-align: center;
  }
  .tradition__title {
    text-align: center;
  }
  .solution__body {
    flex-direction: column;
    text-align: center;
  }
  .solution__illustration {
    width: 80%;
    max-width: 500px;
  }
}

@media (max-width: 768px) {
  .hero {
    padding-top: 120px;
  }
  .hero__imagery {
    min-height: 300px;
  }
  .hero__couple-masked {
    width: 90%;
  }
  .hero__couple-fg {
    width: 80%;
  }
  .hero__arrows {
    display: none;
  }
  .services__carousel {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }
  .services__nav {
    display: none;
  }
  .tradition__stats {
    grid-template-columns: 1fr;
  }
  .problem-card {
    flex-direction: column;
    text-align: center;
  }
  .problem-card__illustration {
    width: 70%;
    max-width: 300px;
  }
  .value__cards {
    flex-direction: column;
    align-items: center;
  }
  .value-card {
    max-width: 100%;
  }
  .app-download__container {
    flex-direction: column;
    text-align: center;
  }
  .phone-mockup {
    width: 60%;
    max-width: 300px;
  }
  .app-download__badges {
    justify-content: center;
  }
  .app-download__input {
    max-width: 100%;
  }
  .footer {
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .services__item {
    width: calc(50% - 15px);
  }
  .value__watermark {
    font-size: 60px;
  }
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* 04-03-2026 */

.slick-autoplay-slider {
    position: absolute;
    right: 0;
    width: 40%;
    top: 0;
}
.slick-autoplay-slider .slider.vertical-slider {
    overflow: visible;
}
.item-sm-img {
    position: absolute;
    left: -160px;
    z-index: 1000;
    padding-top: 130px;
}
.slick-autoplay-slider .slick .item .main-vertical-image {
    object-fit: cover;
    width: 100%;
    height: 100vh;
}
@media (max-width: 767px) {
  .slick-autoplay-slider {
      display: none;
  }
  .flex_Row {
    display: block;
    text-align: center;
  }
  .problem-card__illustration {
      width: 100%;
      max-width: 300px;
  }
    .phone-mockup {
      display: none;
  }
  .footer__logo-accent {
      top: -10px;
  }
}

/* 04-03-2026 */

/* Horizontal Slider */



/* Horizontal Slider */

/* ==========================================================================
   ╔══════════════════════════════════════════════════════════════════╗
   ║  SERVICE PAGES — Shared styles for Matrimony, Catering, Tent     ║
   ║  House, Photo, Pandit, Samagri (also used by home page navbar)   ║
   ╚══════════════════════════════════════════════════════════════════╝
   ========================================================================== */

/* ===== ADDITIONAL DESIGN TOKENS for service pages ===== */
:root {
  --primary-dark: #d94400;
  --peach-soft: #FFF5EE;
  --gold: #C49A4A;
  --gold-light: #E8C77A;
  --maroon: #6B1B1B;
  --text-muted: #5a5a5a;

  --shadow-soft: 0 4px 24px rgba(0, 0, 0, 0.06);
  --shadow-card: 0 8px 32px rgba(255, 82, 0, 0.08);
  --shadow-card-hover: 0 16px 48px rgba(255, 82, 0, 0.18);
  --shadow-hero: 0 20px 60px rgba(0, 0, 0, 0.15);

  --radius-pill: 999px;
  --radius-card-sm: 24px;
  --radius-sm: 12px;
}

/* ==========================================================================
   NAVBAR — Mobile-Friendly with Hamburger Menu
   ========================================================================== */
.navbar {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: min(94%, 1280px);
  background: var(--white);
  border-radius: 18px;
  box-shadow: 0 6px 32px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 22px 12px 28px;
  z-index: 1005;
  transition: all 0.35s ease;
}
.navbar.scrolled {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.12);
  top: 12px;
}

.navbar__logo {
  position: relative;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.navbar__logo-text {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.4vw, 38px);
  color: var(--primary);
  line-height: 1;
  letter-spacing: 0.5px;
}
.navbar__logo-accent {
  position: absolute;
  left: 0;
  top: -5px;
  width: 18px;
  height: 12px;
  background: var(--white);
  z-index: 2;
}

.navbar__menu {
  display: flex;
  align-items: center;
  gap: 4px;
}
.navbar__link {
  font-family: var(--font-nav);
  font-size: 14px;
  font-weight: 600;
  padding: 9px 16px;
  border-radius: 10px;
  color: var(--dark);
  transition: all 0.25s ease;
  position: relative;
  letter-spacing: 0.2px;
}
.navbar__link:hover {
  color: var(--primary);
  background: var(--peach-soft);
}
.navbar__link--active {
  color: var(--white);
  background: var(--primary);
  box-shadow: 0 4px 14px rgba(255, 82, 0, 0.35);
}
.navbar__link--active:hover {
  color: var(--white);
  background: var(--primary-dark);
}

/* Hamburger button (hidden on desktop) */
.navbar__toggle {
  display: none;
  background: var(--peach-soft);
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  transition: background 0.25s ease;
}
.navbar__toggle:hover {
  background: var(--peach);
}
.navbar__toggle span {
  display: block;
  width: 22px;
  height: 2.5px;
  background: var(--primary);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.navbar__toggle.active span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}
.navbar__toggle.active span:nth-child(2) {
  opacity: 0;
}
.navbar__toggle.active span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* Mobile/Tablet navigation */
@media (max-width: 1080px) {
  .navbar {
    padding: 10px 14px 10px 22px;
  }
  .navbar__toggle {
    display: flex;
  }
  .navbar__menu {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    right: 0;
    background: var(--white);
    border-radius: 18px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    gap: 4px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
  }
  .navbar__menu.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .navbar__link {
    width: 100%;
    text-align: center;
    padding: 14px 18px;
    font-size: 15px;
  }
}

/* ==========================================================================
   PAGE HERO — Service-specific banner
   ========================================================================== */
.page-hero {
  position: relative;
  min-height: 70vh;
  background: linear-gradient(135deg, var(--primary) 0%, #ff7530 100%);
  padding: clamp(140px, 18vh, 200px) clamp(20px, 5vw, 80px) clamp(60px, 10vh, 110px);
  overflow: hidden;
  display: flex;
  align-items: center;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.12) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(255, 206, 183, 0.15) 0%, transparent 50%);
  pointer-events: none;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 80px;
  background: var(--white);
  clip-path: polygon(0 100%, 100% 100%, 100% 30%, 0 100%);
}

.page-hero__container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(30px, 5vw, 80px);
  align-items: center;
  position: relative;
  z-index: 2;
}

.page-hero__crumbs {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.28);
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 22px;
  backdrop-filter: blur(8px);
}
.page-hero__crumbs a,
.page-hero__crumbs span {
  font-size: 13px;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.4px;
}
.page-hero__crumbs a {
  opacity: 0.8;
  transition: opacity 0.25s;
}
.page-hero__crumbs a:hover { opacity: 1; }
.page-hero__crumbs .sep { opacity: 0.5; }

.page-hero__eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: clamp(22px, 2.4vw, 30px);
  color: #FFE6D5;
  margin-bottom: 8px;
  letter-spacing: 1.5px;
  line-height: 1;
}

.page-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(36px, 5.4vw, 64px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.12;
  margin-bottom: 18px;
  letter-spacing: -0.5px;
}
.page-hero__title-accent {
  display: inline-block;
  background: var(--white);
  color: var(--primary);
  padding: 4px 22px;
  border-radius: 8px;
  margin-top: 8px;
  font-weight: 800;
}

.page-hero__subtitle {
  font-size: clamp(15px, 1.4vw, 18px);
  color: rgba(255, 255, 255, 0.94);
  line-height: 1.75;
  max-width: 580px;
  margin-bottom: 32px;
}

.page-hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
  letter-spacing: 0.3px;
}
.btn--white {
  background: var(--white);
  color: var(--primary);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}
.btn--white:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
}
.btn--ghost {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.5);
}
.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--white);
}
.btn--primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 6px 20px rgba(255, 82, 0, 0.3);
}
.btn--primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(255, 82, 0, 0.4);
}
.btn svg {
  width: 16px;
  height: 16px;
}

/* Hero image card */
.page-hero__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-hero__image-frame {
  position: relative;
  width: 100%;
  max-width: 520px;
  aspect-ratio: 4 / 5;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-hero);
  transform: rotate(-2deg);
  border: 6px solid var(--white);
}
.page-hero__image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-hero__image-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0, 0, 0, 0.3) 100%);
}
.page-hero__floater {
  position: absolute;
  background: var(--white);
  padding: 14px 18px;
  border-radius: 16px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-heading);
}
.page-hero__floater--top {
  top: 6%;
  right: -8%;
  transform: rotate(4deg);
  animation: floatA 5s ease-in-out infinite;
}
.page-hero__floater--bottom {
  bottom: 8%;
  left: -10%;
  transform: rotate(-3deg);
  animation: floatB 6s ease-in-out infinite;
}
.page-hero__floater-icon {
  width: 42px;
  height: 42px;
  background: var(--peach-soft);
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: var(--primary);
  font-size: 22px;
}
.page-hero__floater-text {
  display: flex;
  flex-direction: column;
}
.page-hero__floater-num {
  font-size: 16px;
  font-weight: 800;
  color: var(--dark);
  line-height: 1;
}
.page-hero__floater-lbl {
  font-size: 11px;
  font-weight: 500;
  color: var(--text-muted);
  margin-top: 2px;
}

@keyframes floatA {
  0%, 100% { transform: rotate(4deg) translateY(0); }
  50% { transform: rotate(4deg) translateY(-12px); }
}
@keyframes floatB {
  0%, 100% { transform: rotate(-3deg) translateY(0); }
  50% { transform: rotate(-3deg) translateY(-10px); }
}

@media (max-width: 880px) {
  .page-hero__container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .page-hero__subtitle {
    margin-left: auto;
    margin-right: auto;
  }
  .page-hero__cta {
    justify-content: center;
  }
  .page-hero__visual {
    order: -1;
    max-width: 380px;
    margin: 0 auto 12px;
  }
  .page-hero__floater--top { right: -4%; }
  .page-hero__floater--bottom { left: -4%; }
  .page-hero__crumbs {
    margin-left: auto;
    margin-right: auto;
  }
}

/* ==========================================================================
   INTRO SECTION — Brief description block
   ========================================================================== */
.intro {
  padding: clamp(60px, 8vw, 110px) clamp(20px, 5vw, 80px) clamp(40px, 5vw, 60px);
  background: var(--white);
}
.intro__container {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}
.intro__tag {
  display: inline-block;
  background: var(--peach);
  color: var(--primary);
  padding: 7px 18px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.intro__heading {
  font-family: var(--font-heading);
  font-size: clamp(28px, 3.6vw, 42px);
  font-weight: 600;
  color: var(--dark);
  line-height: 1.25;
  margin-bottom: 22px;
  letter-spacing: -0.3px;
}
.intro__heading em {
  color: var(--primary);
  font-style: normal;
  position: relative;
  display: inline-block;
}
.intro__heading em::after {
  content: '';
  position: absolute;
  left: 4%;
  right: 4%;
  bottom: 4px;
  height: 8px;
  background: var(--peach);
  z-index: -1;
  border-radius: 4px;
}
.intro__body {
  font-size: clamp(15px, 1.3vw, 17px);
  color: var(--text-muted);
  max-width: 820px;
  margin: 0 auto 16px;
  line-height: 1.85;
}

/* ==========================================================================
   SERVICES INCLUDE — Grid of feature cards
   ========================================================================== */
.includes {
  padding: clamp(60px, 8vw, 100px) clamp(20px, 5vw, 80px);
  background: linear-gradient(180deg, var(--white) 0%, var(--peach-soft) 100%);
  position: relative;
}
.includes__container {
  max-width: 1280px;
  margin: 0 auto;
}
.section-head {
  text-align: center;
  margin-bottom: clamp(40px, 5vw, 64px);
}
.section-head__tag {
  display: inline-block;
  background: var(--white);
  color: var(--primary);
  padding: 7px 18px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
  box-shadow: var(--shadow-soft);
}
.section-head__title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 3.8vw, 44px);
  font-weight: 600;
  color: var(--dark);
  line-height: 1.2;
  letter-spacing: -0.4px;
  max-width: 720px;
  margin: 0 auto 14px;
}
.section-head__sub {
  font-size: clamp(14px, 1.2vw, 16px);
  color: var(--text-muted);
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.7;
}

.includes__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
}
.include-card {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 28px 24px;
  border: 1px solid var(--border);
  transition: all 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.include-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.include-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
  border-color: transparent;
}
.include-card:hover::before {
  transform: scaleX(1);
}
.include-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--peach) 0%, var(--peach-shadow) 100%);
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  transition: transform 0.35s ease;
}
.include-card:hover .include-card__icon {
  transform: rotate(-6deg) scale(1.05);
}
.include-card__icon svg {
  width: 28px;
  height: 28px;
  color: var(--primary);
  stroke: var(--primary);
}
.include-card__title {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 8px;
  line-height: 1.35;
}
.include-card__desc {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ==========================================================================
   GALLERY STRIP — visual atmosphere builder
   ========================================================================== */
.gallery {
  padding: 0 0 80px;
  background: var(--peach-soft);
}
.gallery .gallery-container {
    max-width: 1400px;
    margin: 0 auto;
}
.gallery__strip {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  grid-template-rows: 200px 200px;
  gap: 14px;
}
.gallery__item {
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  background: var(--peach);
  transition: transform 0.4s ease;
}
.gallery__item:hover {
  transform: scale(1.02);
}
.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery__item:hover img {
  transform: scale(1.08);
}
.gallery__item:nth-child(1) { grid-row: 1 / span 2; }
.gallery__item:nth-child(4) { grid-row: 1 / span 2; }
@media (max-width: 768px) {
  .gallery__strip {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 160px 160px 160px;
  }
  .gallery__item:nth-child(1),
  .gallery__item:nth-child(4) {
    grid-row: auto;
  }
  .gallery__item:nth-child(1) {
    grid-column: 1 / -1;
  }
}

/* ==========================================================================
   WHY CHOOSE — alternating feature row
   ========================================================================== */
.why {
  padding: clamp(60px, 8vw, 110px) clamp(20px, 5vw, 80px);
  background: var(--white);
  position: relative;
  overflow: hidden;
}
.why::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, var(--peach) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.why__container {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
}
.why__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.why-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 26px 24px;
  border-radius: 20px;
  background: var(--white);
  border: 1.5px solid var(--border);
  transition: all 0.3s ease;
  position: relative;
}
.why-card:hover {
  border-color: var(--primary);
  background: linear-gradient(145deg, var(--white) 0%, var(--peach-soft) 100%);
  transform: translateX(4px);
}
.why-card__num {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--primary);
  color: var(--white);
  display: grid;
  place-items: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.5px;
  box-shadow: 0 6px 14px rgba(255, 82, 0, 0.28);
}
.why-card__body {
  flex: 1;
}
.why-card__title {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.35;
  margin-bottom: 4px;
}
.why-card__desc {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ==========================================================================
   CTA BAND — Bottom call-to-action
   ========================================================================== */
.cta-band {
  padding: clamp(60px, 8vw, 110px) clamp(20px, 5vw, 80px);
  background: var(--dark);
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 25%, rgba(255, 82, 0, 0.22) 0%, transparent 45%),
    radial-gradient(circle at 85% 75%, rgba(196, 154, 74, 0.15) 0%, transparent 45%);
  pointer-events: none;
}
.cta-band__container {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}
.cta-band__eyebrow {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.4vw, 30px);
  color: var(--gold-light);
  letter-spacing: 1.5px;
  margin-bottom: 8px;
}
.cta-band__title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 3.8vw, 46px);
  font-weight: 600;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 18px;
  letter-spacing: -0.3px;
}
.cta-band__sub {
  font-size: clamp(14px, 1.2vw, 17px);
  color: rgba(255, 255, 255, 0.78);
  max-width: 640px;
  margin: 0 auto 32px;
  line-height: 1.75;
}
.cta-band__buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}
.cta-band__badges {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
  flex-wrap: wrap;
}
.cta-band__badges img {
  height: 56px;
  width: auto;
  transition: transform 0.3s ease;
  cursor: pointer;
}
.cta-band__badges img:hover {
  transform: scale(1.05);
}

/* ==========================================================================
   FOOTER (dark variant — used on service pages)
   ========================================================================== */
.footer.footer--dark {
  background: var(--dark-alt);
  padding: 50px 20px 32px;
  text-align: center;
  color: var(--white);
}
.footer--dark .footer__logo {
  position: relative;
  display: inline-flex;
  align-items: center;
  margin-bottom: 14px;
}
.footer--dark .footer__logo-text {
  font-family: var(--font-display);
  font-size: 36px;
  color: var(--primary);
  line-height: 1;
}
.footer--dark .footer__logo-accent {
  position: absolute;
  left: 0;
  top: -5px;
  width: 16px;
  height: 12px;
  background: var(--dark-alt);
  z-index: 2;
}
.footer--dark .footer__tagline {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  max-width: 460px;
  margin: 0 auto 18px;
  line-height: 1.6;
}
.footer--dark .footer__links {
  margin: 12px 0 18px;
  display: flex;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
}
.footer--dark .footer__links a {
  color: var(--primary-light);
  font-size: 13px;
  font-weight: 500;
  transition: color 0.25s;
}
.footer--dark .footer__links a:hover {
  color: var(--white);
}
.footer--dark .footer__copy {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 14px;
}

/* ==========================================================================
   ANIMATIONS
   ========================================================================== */
.reveal {
  opacity: 1;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal--delay-1 { transition-delay: 0.08s; }
.reveal--delay-2 { transition-delay: 0.16s; }
.reveal--delay-3 { transition-delay: 0.24s; }
.reveal--delay-4 { transition-delay: 0.32s; }
.reveal--delay-5 { transition-delay: 0.4s; }
.reveal--delay-6 { transition-delay: 0.48s; }

/* ==========================================================================
   RESPONSIVE TWEAKS
   ========================================================================== */
@media (max-width: 600px) {
  .page-hero {
    min-height: auto;
    padding-top: 130px;
  }
  .page-hero__floater--top,
  .page-hero__floater--bottom {
    display: none;
  }
  .page-hero__cta { gap: 10px; }
  .btn { padding: 12px 22px; font-size: 14px; }
  .include-card { padding: 22px 20px; }
  .why-card { padding: 22px 18px; }
}


/* ==========================================================================
   CONTACT PAGE
   ========================================================================== */

/* --- Contact info cards row --- */
.contact-info {
  padding: clamp(60px, 9vh, 110px) clamp(20px, 5vw, 80px) clamp(20px, 4vh, 40px);
  background: var(--white);
}
.contact-info__intro {
  max-width: 720px;
  margin: 0 auto clamp(36px, 5vh, 60px);
  text-align: center;
}
.contact-info__intro h2 {
  font-family: var(--font-heading);
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 14px;
}
.contact-info__intro p {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.7;
}
.contact-info__grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 32px);
}
.contact-card {
  background: var(--peach-soft);
  border: 1.5px solid var(--peach);
  border-radius: 24px;
  padding: 40px 28px;
  text-align: center;
  transition: all 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.contact-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.contact-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
  border-color: var(--primary-light);
  background: var(--white);
}
.contact-card:hover::before {
  transform: scaleX(1);
}
.contact-card__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  transition: transform 0.4s ease;
  box-shadow: 0 8px 24px rgba(255, 82, 0, 0.28);
}
.contact-card:hover .contact-card__icon {
  transform: scale(1.08) rotate(-6deg);
}
.contact-card__icon svg {
  width: 28px;
  height: 28px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.contact-card__label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.6px;
  color: var(--primary);
  margin-bottom: 10px;
}
.contact-card__value {
  font-size: 17px;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.45;
  word-break: break-word;
}
.contact-card__value a {
  color: inherit;
  transition: color 0.25s ease;
}
.contact-card__value a:hover {
  color: var(--primary);
}
.contact-card__sub {
  display: inline-block;
  margin-top: 12px;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--text-muted);
  padding: 5px 12px;
  background: var(--white);
  border-radius: 999px;
  border: 1px solid var(--border);
}
.contact-card:hover .contact-card__sub {
  background: var(--peach-soft);
  border-color: var(--peach);
}

/* --- Contact form section (form + aside) --- */
.contact-section {
  padding: clamp(40px, 6vh, 80px) clamp(20px, 5vw, 80px) clamp(80px, 12vh, 140px);
  background: var(--bg-gray);
}
.contact-section__container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: clamp(32px, 5vw, 60px);
  align-items: start;
}
.contact-aside h3 {
  font-family: var(--font-heading);
  font-size: clamp(24px, 2.6vw, 30px);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 14px;
  line-height: 1.25;
}
.contact-aside h3 .accent {
  color: var(--primary);
}
.contact-aside p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 26px;
}
.contact-hours {
  background: var(--white);
  border-radius: 20px;
  padding: 26px 28px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}
.contact-hours__title {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--primary);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.contact-hours__title svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.contact-hours ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.contact-hours li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14.5px;
  padding: 10px 0;
  border-bottom: 1px dashed var(--border);
  color: var(--dark);
}
.contact-hours li:last-child { border-bottom: none; }
.contact-hours li .day {
  font-weight: 500;
  color: var(--text-muted);
}
.contact-hours li .time {
  font-weight: 600;
}
.contact-hours li .time--closed {
  color: #c14545;
}

/* --- Form --- */
.contact-form-wrap {
  background: var(--white);
  border-radius: 24px;
  padding: clamp(28px, 4vw, 44px);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border);
}
.contact-form-wrap h2 {
  font-family: var(--font-heading);
  font-size: clamp(24px, 2.6vw, 32px);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
  line-height: 1.2;
}
.contact-form-wrap > p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.65;
  margin-bottom: 26px;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 22px;
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.form-field--full {
  grid-column: 1 / -1;
}
.form-field label {
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
  letter-spacing: 0.2px;
}
.form-field label .required {
  color: var(--primary);
  margin-left: 2px;
}
.form-field input,
.form-field select,
.form-field textarea {
  font-family: var(--font-body);
  font-size: 15px;
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  background: var(--white);
  color: var(--dark);
  transition: all 0.25s ease;
  outline: none;
  width: 100%;
}
.form-field textarea {
  resize: vertical;
  min-height: 130px;
  line-height: 1.6;
}
.form-field select {
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23202020' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 18px;
  padding-right: 42px;
}
.form-field input:hover,
.form-field select:hover,
.form-field textarea:hover {
  border-color: var(--peach-shadow);
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(255, 82, 0, 0.12);
}
.form-field input:invalid:not(:placeholder-shown),
.form-field textarea:invalid:not(:placeholder-shown) {
  border-color: #d94545;
}
.form-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 4px;
}
.form-actions .btn {
  cursor: pointer;
  border: none;
  font-family: inherit;
}
.form-actions .btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.form-note {
  font-size: 12.5px;
  color: var(--text-muted);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.form-note svg {
  width: 14px;
  height: 14px;
  stroke: var(--primary);
  fill: none;
  stroke-width: 2;
}
.form-success {
  background: #e8f7ee;
  border: 1px solid #b6e0c4;
  border-radius: 14px;
  padding: 18px 20px;
  color: #1f6f43;
  font-size: 14.5px;
  font-weight: 500;
  display: none;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
}
.form-success.show {
  display: flex;
  animation: contactFadeIn 0.4s ease;
}
.form-success svg {
  width: 22px;
  height: 22px;
  stroke: #1f6f43;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}
@keyframes contactFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* --- Responsive --- */
@media (max-width: 980px) {
  .contact-section__container {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
@media (max-width: 760px) {
  .contact-info__grid {
    grid-template-columns: 1fr;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .contact-card {
    padding: 32px 22px;
  }
}


/* ==========================================================================
   HERO SLIDER (horizontal slick carousel with custom arrows + dots)
   ========================================================================== */
.hero-slider,
.hero-slider .slick-list,
.hero-slider .slick-track {
  height: 100vh;
}
.hero-slider__slide {
  position: relative;
  height: 100vh;
  outline: none;
  overflow: hidden;
}
.hero-slider__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* Bottom gradient overlay so caption stays legible */
.hero-slider__slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(0,0,0,0) 45%,
    rgba(0,0,0,0.35) 75%,
    rgba(0,0,0,0.65) 100%);
  pointer-events: none;
}

/* Caption */
.hero-slider__caption {
  position: absolute;
  left: clamp(20px, 4vw, 56px);
  right: clamp(20px, 4vw, 56px);
  bottom: clamp(70px, 11vh, 110px);
  z-index: 2;
  color: var(--white);
  max-width: 80%;
}
.hero-slider .slick-active .hero-slider__caption {
  animation: heroSliderCaptionIn 0.7s cubic-bezier(0.2, 0.8, 0.2, 1) 0.15s both;
}
.hero-slider__tag {
  display: inline-block;
  background: var(--primary);
  color: var(--white);
  padding: 7px 16px;
  border-radius: var(--radius-pill);
  font-family: var(--font-nav);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  margin-bottom: 14px;
  box-shadow: 0 6px 18px rgba(255, 82, 0, 0.45);
}
.hero-slider__title {
  font-family: var(--font-heading);
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 700;
  line-height: 1.25;
  margin: 0;
  color: var(--white);
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.5);
}

/* Arrows */
.hero-slider__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  border: none;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.22);
  transition: all 0.3s ease;
  color: var(--primary);
  padding: 0;
}
.hero-slider__arrow:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 10px 32px rgba(255, 82, 0, 0.5);
}
.hero-slider__arrow:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.7);
  outline-offset: 3px;
}
.hero-slider__arrow svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  fill: none;
}
.hero-slider__arrow--prev { left: 16px; }
.hero-slider__arrow--next { right: 16px; }

/* Slick-generated dots */
.slick-autoplay-slider .slick-dots {
  position: absolute;
  bottom: 22px;
  left: 0;
  right: 0;
  display: flex !important;
  justify-content: center;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
  z-index: 10;
}
.slick-autoplay-slider .slick-dots li {
  display: inline-block;
  line-height: 0;
}
.slick-autoplay-slider .slick-dots li button {
  width: 26px;
  height: 5px;
  border: none;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  font-size: 0;
  color: transparent;
  text-indent: -9999px;
  padding: 0;
  transition: all 0.35s ease;
}
.slick-autoplay-slider .slick-dots li button:hover {
  background: rgba(255, 255, 255, 0.85);
}
.slick-autoplay-slider .slick-dots li.slick-active button {
  background: var(--primary);
  width: 38px;
}
.slick-autoplay-slider .slick-dots li button::before { display: none; }

/* Caption animation */
@keyframes heroSliderCaptionIn {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Responsive — slider becomes full-width below the text on tablet/mobile */
@media (max-width: 1024px) {
  .slick-autoplay-slider {
    position: relative !important;
    width: 100% !important;
    margin-top: 36px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-hero);
  }
  .hero-slider,
  .hero-slider .slick-list,
  .hero-slider .slick-track,
  .hero-slider__slide {
    height: 56vh !important;
    max-height: 520px;
    min-height: 360px;
  }
}
@media (max-width: 767px) {
  /* Override the original "display:none" hide-on-mobile rule */
  .slick-autoplay-slider {
    display: block !important;
    width: 100% !important;
    margin-top: 24px;
  }
  .hero-slider,
  .hero-slider .slick-list,
  .hero-slider .slick-track,
  .hero-slider__slide {
    height: 50vh !important;
    min-height: 320px;
    max-height: 440px;
  }
  .hero-slider__arrow {
    width: 42px;
    height: 42px;
  }
  .hero-slider__arrow svg { width: 18px; height: 18px; }
  .hero-slider__arrow--prev { left: 10px; }
  .hero-slider__arrow--next { right: 10px; }
  .hero-slider__title { font-size: 17px; }
  .hero-slider__tag { font-size: 10.5px; padding: 5px 12px; margin-bottom: 10px; }
  .hero-slider__caption { bottom: 50px; }
  .slick-autoplay-slider .slick-dots { bottom: 16px; }
  .slick-autoplay-slider .slick-dots li button { width: 22px; }
  .slick-autoplay-slider .slick-dots li.slick-active button { width: 32px; }
}

/* ─── HERO CAROUSEL ─────────────────────── */
.hero-wrap {
  position: relative;
}
.hero-carousel .item {
  position: relative;
  height: 380px;
  border-radius: 30px;
  overflow: hidden;
  margin: 0 8px;
}
.hero-carousel .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s ease;
}
.hero-carousel .item:hover img { transform: scale(1.04); }
.hero-carousel .item .caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 40px 32px 28px;
  background: linear-gradient(to top, rgba(0,0,0,.85) 0%, transparent 100%);
}
.hero-carousel .item .tag {
  display: inline-block;
  background: var(--accent2);
  color: #fff;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 10px;
}
.hero-carousel .item h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1rem, 2vw, 1.4rem);
  line-height: 1.15;
  margin-bottom: 4px;
}
.hero-carousel .item p {
  color: rgba(255,255,255,.65);
  font-size: 11px;
}

/* ─── PRODUCT CAROUSEL ──────────────────── */
.product-carousel .item {
  background: var(--card-bg);
  border-radius: var(--radius);
  overflow: hidden;
  margin: 0 10px;
  border: 1px solid #252525;
  transition: transform .3s, box-shadow .3s;
}
.product-carousel .item:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(0,0,0,.55);
}
.product-carousel .item .thumb {
  height: 220px;
  overflow: hidden;
}
.product-carousel .item .thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s;
}
.product-carousel .item:hover .thumb img { transform: scale(1.08); }
.product-carousel .item .info {
  padding: 20px;
}
.product-carousel .item .info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  margin-bottom: 6px;
}
.product-carousel .item .info .meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 14px;
}
.product-carousel .item .info .price {
  color: var(--accent);
  font-weight: 500;
  font-size: 1.1rem;
}
.product-carousel .item .info .stars {
  color: var(--accent);
  font-size: 12px;
  letter-spacing: 1px;
}
.product-carousel .item .info .desc {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

/* ─── TESTIMONIAL CAROUSEL ──────────────── */
.testi-carousel .item {
  background: var(--card-bg);
  border: 1px solid #252525;
  border-radius: var(--radius);
  padding: 36px 32px;
  margin: 0 10px;
  position: relative;
}
.testi-carousel .item::before {
  content: '"';
  font-family: 'Playfair Display', serif;
  font-size: 7rem;
  color: var(--accent);
  opacity: .15;
  position: absolute;
  top: -10px; left: 24px;
  line-height: 1;
}
.testi-carousel .item p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--muted);
  position: relative;
}
.testi-carousel .item .author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
}
.testi-carousel .item .author img {
  width: 44px; height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--accent);
}
.testi-carousel .item .author .name {
  font-weight: 500;
  font-size: 14px;
}
.testi-carousel .item .author .role {
  font-size: 12px;
  color: var(--muted);
}

/* ─── OWL CUSTOM CONTROLS ───────────────── */
/* Dots */
.owl-dots {
  text-align: center;
  margin-top: 28px !important;
}
.owl-dot span {
  background: #333 !important;
  width: 8px !important;
  height: 8px !important;
  border-radius: 50% !important;
  margin: 0 4px !important;
  transition: all .3s !important;
}
.owl-dot.active span {
  background: var(--accent) !important;
  width: 24px !important;
  border-radius: 4px !important;
}

/* Nav arrows */
.owl-nav {
  position: absolute;
  top: 50%;
  left: 0; right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  padding: 0 6px;
}
.owl-nav button {
  pointer-events: all;
  width: 46px; height: 46px;
  border-radius: 50% !important;
  background: rgba(20,20,20,.85) !important;
  border: 1px solid #333 !important;
  color: var(--text) !important;
  font-size: 20px !important;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .25s, border-color .25s;
  cursor: pointer;
}
.owl-nav button:hover {
  background: var(--accent) !important;
  border-color: var(--accent) !important;
  color: #000 !important;
}
.owl-nav button span { line-height: 1; }

/* ─── AUTOPLAY PROGRESS BAR ─────────────── */
.progress-bar-wrap {
  height: 3px;
  background: #222;
  margin: 16px 40px 0;
  border-radius: 2px;
  overflow: hidden;
}
.progress-bar-fill {
  height: 100%;
  background: var(--accent);
  width: 0%;
  border-radius: 2px;
  animation: autoProgress 4s linear infinite;
}
@keyframes autoProgress {
  from { width: 0% }
  to   { width: 100% }
}

/* ─── FOOTER ────────────────────────────── */
footer {
  text-align: center;
  padding: 60px 40px 48px;
  color: #444;
  font-size: 12px;
  letter-spacing: 1px;
}
footer span { color: var(--accent); }

/* ─── RESPONSIVE TWEAKS ─────────────────── */
@media (max-width: 768px) {
  header { padding: 40px 20px 0; }
  .section-label { padding: 0 20px; }
  .progress-bar-wrap { margin: 16px 20px 0; }
  .hero-carousel .item { height: 260px; margin: 0 5px; }
  .hero-carousel .item .caption { padding: 20px 14px 14px; }
  .owl-nav button { width: 36px; height: 36px; font-size: 16px !important; }
  footer { padding: 40px 20px 36px; }
}
@media (max-width: 480px) {
  .hero-carousel .item { height: 200px; }
}
