/* ==========================================================================
   D & D RETAIL STORES — Design tokens
   Signature motif: concentric ripple rings, echoing the site's closing
   quote. Used in hero, quote banner and as a recurring accent on portrait / dividers.
   ========================================================================== */
:root {
  --navy: #c68a14;
  --navy-2: #c68a14;
  --gold: #114232;
  --gold-light: #114232;
  --cream: #FAF6EF;
  --cream-2: #FAF6EF;
  --ink: #1E2430;
  --mist: #6B7280;
  --line: rgba(15, 27, 46, 0.10);

  --font-display: "Poppins", sans-serif;
  --font-body: "Poppins", sans-serif;

  --radius: 14px;
  --shadow-soft: 0 14px 40px rgba(15, 27, 46, 0.10);
  --ease: cubic-bezier(.22, .61, .36, 1);
}

* {
  box-sizing: border-box;
}

@media (min-width: 1536px) {
  .container {
    max-width: 1536px !important;
  }
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  margin: 0;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  color: var(--navy);
  margin: 0;
}

p {
  color: var(--ink);
  line-height: 1.75;
}

a {
  text-decoration: none;
}

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

@media (max-width: 768px) {
  .g-5 {
    --bs-gutter-x: 0rem !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

::selection {
  background: var(--gold-light);
  color: var(--navy);
}

/* focus visibility */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.eyebrow {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .78rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: .6rem;
}

.section-title {
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  font-weight: 600;
  line-height: 1.25;
  margin-bottom: 1rem;
}

.lead-text {
  font-size: 1.08rem;
  color: var(--ink);
}

.section {
  padding: 3.5rem 0;
}

@media (max-width: 768px) {
  .section {
    padding: 4.2rem 0;
  }
}

/* ---------------- Buttons ---------------- */
.btn-gold {
  background: var(--gold);
  color: var(--navy);
  font-weight: 600;
  padding: .85rem 1.9rem;
  border-radius: 999px;
  border: 1px solid var(--gold);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s var(--ease);
  display: inline-block;
}

.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(198, 161, 91, .35);
  color: var(--navy);
}

.btn-outline-gold {
  background: transparent;
  color: var(--navy);
  font-weight: 600;
  padding: .85rem 1.9rem;
  border-radius: 999px;
  border: 1.5px solid var(--navy);
  transition: all .3s var(--ease);
  display: inline-block;
}

.btn-outline-gold:hover {
  background: var(--navy);
  color: var(--cream);
}

.btn-outline-light-custom {
  background: transparent;
  color: var(--cream);
  font-weight: 600;
  padding: .85rem 1.9rem;
  border-radius: 999px;
  border: 1.5px solid rgba(250, 246, 239, .55);
  transition: all .3s var(--ease);
  display: inline-block;
}

.btn-outline-light-custom:hover {
  background: var(--cream);
  color: var(--navy);
  border-color: var(--cream);
}

/* ---------------- Navbar ---------------- */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: box-shadow .35s var(--ease);
}

.site-header.scrolled {
  box-shadow: 0 4px 15px rgba(15, 27, 46, .08);
}

/* Top Bar */
.top-bar {
  background: var(--gold);
  color: #ffffff;
  padding: 0.35rem 0;
  font-size: 0.82rem;
  font-weight: 500;
  transition: max-height 0.35s var(--ease), padding 0.35s var(--ease), opacity 0.35s var(--ease);
  max-height: 50px;
  opacity: 1;
  overflow: hidden;
}

/* .site-header.scrolled .top-bar {
  max-height: 0;
  padding-top: 0;
  padding-bottom: 0;
  opacity: 0;
  pointer-events: none;
} */

.top-bar a {
  color: #ffffff;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.top-bar a:hover {
  opacity: 0.85;
}

.custom-navbar {
  padding: 0.1rem 0;
  transition: padding .35s var(--ease);
}

/* .site-header.scrolled .custom-navbar {
  padding: 0.4rem 0;
} */

.navbar-brand {
  display: flex;
  align-items: center;
  line-height: 1;
}

.brand-logo {
  height: 80px;
  width: auto;
  transition: height .35s var(--ease);
}

/* .site-header.scrolled .brand-logo {
  height: 50px;
} */

.nav-link {
  color: black !important;
  font-weight: 500;
  position: relative;
  padding: .4rem .2rem !important;
  margin: 0 .6rem;
  transition: color 0.25s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width .3s var(--ease);
}

.nav-link:hover::after {
  width: 100%;
}

.btn-nav-cta {
  background: var(--navy);
  color: var(--gold) !important;
  font-weight: 600;
  padding: .55rem 1.3rem;
  border-radius: 999px;
  font-size: .9rem;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}

.btn-nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(198, 161, 91, .35);
}

.toggler-icon {
  font-size: 1.6rem;
  color: var(--navy);
}

.navbar-toggler {
  border: none;
  box-shadow: none !important;
}

.navbar-collapse.show,
.navbar-collapse.collapsing {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 1rem 1.2rem;
  margin-top: .6rem;
  box-shadow: var(--shadow-soft);
}

.navbar-collapse.show .nav-link,
.navbar-collapse.collapsing .nav-link {
  color: var(--navy) !important;
}

/* Custom Dropdown Styling */
.custom-navbar .dropdown-menu {
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
  min-width: 90px;
  margin-top: 0.5rem;
}

.custom-navbar .dropdown-item {
  font-size: 0.9rem;
  color: var(--navy);
  font-weight: 500;
  padding: 0.4rem 1rem;
  transition: background-color 0.2s, color 0.2s;
}

.custom-navbar .dropdown-item:hover {
  background-color: var(--cream);
  color: var(--gold);
}

/* ---------------- Hero Slider ---------------- */
.hero-carousel {
  position: relative;
  background: #ffffff;
  z-index: 1;
}

.hero-carousel .carousel-item {
  width: 100%;
}

.hero-carousel .carousel-item img {
  width: 100%;
  height: auto;
}

/* Carousel Indicators customization */
.hero-carousel .carousel-indicators {
  margin-bottom: 2rem;
}

.hero-carousel .carousel-indicators [data-bs-target] {
  width: 35px;
  height: 4px;
  border-radius: 2px;
  background-color: rgba(255, 255, 255, 0.4);
  border: none;
  margin: 0 5px;
  transition: background-color 0.3s ease, width 0.3s ease;
}

.hero-carousel .carousel-indicators .active {
  background-color: #ffffff;
  width: 50px;
}

/* Carousel Controls customization */
.hero-carousel .carousel-control-prev,
.hero-carousel .carousel-control-next {
  width: 6%;
  opacity: 0.6;
  transition: opacity 0.3s ease;
}

.hero-carousel .carousel-control-prev:hover,
.hero-carousel .carousel-control-next:hover {
  opacity: 1;
}

.hero-carousel .carousel-control-prev-icon,
.hero-carousel .carousel-control-next-icon {
  background-color: rgba(0, 0, 0, 0.25);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  background-size: 50%;
}

@media (max-width: 768px) {
  .hero-carousel .carousel-indicators {
    margin-bottom: 0.8rem;
  }

  .hero-carousel .carousel-indicators [data-bs-target] {
    width: 20px;
    height: 3px;
    margin: 0 3px;
  }

  .hero-carousel .carousel-indicators .active {
    width: 30px;
  }

  .hero-carousel .carousel-control-prev,
  .hero-carousel .carousel-control-next {
    opacity: 0.6;
  }

  .hero-carousel .carousel-control-prev-icon,
  .hero-carousel .carousel-control-next-icon {
    width: 32px;
    height: 32px;
  }
}

/* Ripple field — signature motif */
.ripple-field {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.ripple {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(198, 161, 91, .35);
  top: 50%;
  right: 8%;
  transform: translate(50%, -50%);
  animation: rippleOut 7s var(--ease) infinite;
  opacity: 0;
}

.ripple.r1 {
  width: 120px;
  height: 120px;
  animation-delay: 0s;
}

.ripple.r2 {
  width: 120px;
  height: 120px;
  animation-delay: 1.75s;
}

.ripple.r3 {
  width: 120px;
  height: 120px;
  animation-delay: 3.5s;
}

.ripple.r4 {
  width: 120px;
  height: 120px;
  animation-delay: 5.25s;
}

@keyframes rippleOut {
  0% {
    width: 60px;
    height: 60px;
    opacity: 0;
  }

  8% {
    opacity: .9;
  }

  100% {
    width: 900px;
    height: 900px;
    opacity: 0;
  }
}

.ripple-field-dark .ripple {
  border-color: rgba(250, 246, 239, .18);
}

/* ---------------- Reveal on scroll ---------------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ---------------- About ---------------- */
.about-section {
  background: #114232;
}

/* Two-column flex container */
.about-inner {
  display: flex;
  flex-direction: row;
  min-height: 560px;
}

/* LEFT image column */
.about-img-col {
  flex: 0 0 45%;
  position: relative;
  overflow: hidden;
}

.about-img-col img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* RIGHT content column */
.about-content-col {
  flex: 1;
  padding: 4rem 3.5rem 4rem 3.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-section .eyebrow {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}

.about-heading {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.3;
  margin-bottom: 1.2rem;
}

.about-lead {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.90);
  line-height: 1.75;
  margin-bottom: 1rem;
}

.about-lead strong,
.about-body strong {
  color: #ffffff;
}

.about-body {
  font-size: 0.93rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.75;
  margin-bottom: 1rem;
}

/* Product bullet list */
.about-product-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.4rem 1.2rem;
}

.about-product-list li {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.6;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.about-product-list li::before {
  content: "✦";
  color: #a8d5b5;
  font-size: 0.6rem;
  flex-shrink: 0;
}

/* Store Timings block */
.store-timings {
  margin-top: 0.5rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  padding: 1.2rem 1.6rem;
}

.timings-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.timings-title i {
  font-size: 1rem;
  color: #a8d5b5;
}

.timings-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.2rem 1.5rem;
}

.timing-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.25rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.85rem;
}

.timing-row:last-child {
  border-bottom: none;
}

.timing-row .day {
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
}

.timing-row .hours {
  color: #a8d5b5;
  font-weight: 500;
}

/* Mobile stack */
@media (max-width: 767px) {
  .about-inner {
    flex-direction: column;
  }

  .about-img-col {
    flex: none;
    height: 300px;
    position: relative;
  }

  .about-content-col {
    padding: 2.5rem 1.5rem;
  }

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

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

@media (min-width: 768px) and (max-width: 991px) {
  .about-img-col {
    flex: 0 0 38%;
  }

  .about-content-col {
    padding: 3rem 2rem;
  }
}



.portrait-frame {
  background: var(--navy);
  border-radius: var(--radius);
  aspect-ratio: 4/5;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  /* Ensure image doesn't overflow rounded corners */
}

.portrait-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
}

.portrait-placeholder {
  text-align: center;
  color: var(--cream);
}

.portrait-placeholder i {
  font-size: 3.4rem;
  color: var(--gold);
}

.portrait-placeholder span {
  display: block;
  margin-top: .8rem;
  font-size: .85rem;
  letter-spacing: .04em;
  color: rgba(250, 246, 239, .75);
}

.portrait-ring {
  position: absolute;
  top: 22px;
  left: -22px;
  right: -22px;
  bottom: -22px;
  border: 1.5px solid var(--gold);
  border-radius: var(--radius);
  z-index: 1;
}

.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem 1.3rem;
  margin-top: 1.6rem;
}

.about-tags span {
  font-size: .92rem;
  font-weight: 500;
  color: var(--navy);
}

.about-tags i {
  color: var(--gold);
  margin-right: .35rem;
}

.about-quote {
  border-left: 3px solid var(--gold);
  padding-left: 1.2rem;
  margin: 1.5rem 0;
}

.about-quote p {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--navy);
  line-height: 1.5;
  margin: 0;
}




/* ---------------- Products Section ---------------- */
.product-section {
  background: var(--cream);
}

.product-card {
  background: #ffffff;
  /* border-radius: var(--radius); */
  border: 1px solid var(--line);
  box-shadow: 0 6px 20px rgba(15, 27, 46, 0.068);
  overflow: hidden;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 18px 40px rgba(15, 27, 46, 0.10);
  border-color: rgba(17, 66, 50, 0.25);
}

.product-card .img-wrap {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #f8f8f8;
}

.product-card .img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s var(--ease);
}

.product-card:hover .img-wrap img {
  transform: scale(1.06);
}

.product-card-body {
  padding: 1rem 1.2rem 1.2rem;
}

/* WhatsApp CTA button on products */
.btn-inquiry {
  background: #114232;
  color: #ffffff !important;
  font-weight: 600;
  font-size: 0.88rem;
  padding: 0.55rem 1.6rem;
  border-radius: 999px;
  border: 2px solid #114232;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.3s var(--ease), color 0.3s var(--ease);
  text-decoration: none;
  letter-spacing: 0.02em;
}

.btn-inquiry:hover {
  background: transparent;
  color: #114232 !important;
  border-color: #114232;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(17, 66, 50, 0.20);
}

/* Show More button */
.show-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: transparent;
  color: #114232;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.7rem 2rem;
  border-radius: 999px;
  border: 2px solid #114232;
  text-decoration: none;
  transition: background 0.3s var(--ease), color 0.3s var(--ease), transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  letter-spacing: 0.02em;
}

.show-more-btn:hover {
  background: #114232;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(17, 66, 50, 0.22);
}

.show-more-btn .arrow {
  display: inline-flex;
  align-items: center;
  transition: transform 0.3s var(--ease);
}

.show-more-btn:hover .arrow {
  transform: translateX(5px);
}

/* ---------------- Stats Counter ---------------- */
.service-counter {
  background-color: #114232;
  padding: 3rem 0;
}

.stat-item {
  padding: 1rem 0.5rem;
}

.stat-icon {
  margin-bottom: 1.2rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.stat-icon img {
  width: 90px;
  height: 90px;
  object-fit: contain;
  transition: transform 0.4s var(--ease);
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

.stat-item:hover .stat-icon img {
  transform: scale(1.1) translateY(-4px);
}

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.1;
  margin-bottom: 0.6rem;
  letter-spacing: -0.02em;
}

.stat-divider {
  width: 40px;
  height: 3px;
  background-color: rgba(255, 255, 255, 0.55);
  border-radius: 2px;
  margin: 0.6rem auto 0.7rem;
}

.stat-label {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.80);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

@media (max-width: 576px) {
  .service-counter {
    padding: 3rem 0;
  }

  .stat-icon img {
    width: 65px;
    height: 65px;
  }

  .stat-number {
    font-size: 1.7rem;
  }

  .stat-label {
    font-size: 0.78rem;
  }
}

/* ---------------- Gallery Section ---------------- */
.gallery-section {
  background: #ffffff;
  padding: 4rem 0 5rem;
}

.gallery-item {
  height: 100%;
}

.gallery-border-box {
  overflow: hidden;
  cursor: pointer;
  border-radius: 6px;
  background: #f0f0f0;
  transition: transform 0.35s var(--ease);
}

.gallery-border-box:hover {
  transform: translateY(-3px);
}

.gallery-img-wrap {
  overflow: hidden;
  aspect-ratio: 4 / 3;
  position: relative;
  display: block;
}

.gallery-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s var(--ease);
  display: block;
}

.gallery-border-box:hover .gallery-img-wrap img {
  transform: scale(1.06);
}

/* Subtle overlay on hover */
.gallery-img-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(17, 66, 50, 0);
  transition: background 0.35s var(--ease);
  pointer-events: none;
}

.gallery-border-box:hover .gallery-img-wrap::after {
  background: rgba(17, 66, 50, 0.10);
}

/* ---------------- Services / Focus Section ---------------- */
.focus-section {
  background: #ffffff;
}

.focus-card {
  background: #ffffff;
  /* border-radius: var(--radius); */
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 6px 24px rgba(15, 27, 46, 0.103);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.focus-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 18px 44px rgba(15, 27, 46, 0.11);
}

.focus-card-img-wrap {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.focus-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s var(--ease);
  display: block;
}

.focus-card:hover .focus-card-img-wrap img {
  transform: scale(1.06);
}

.focus-card-body {
  padding: 1.5rem 1.4rem 1.8rem;
  text-align: center;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.focus-card-body h5 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.75rem;
}

.focus-card-body p {
  font-size: 0.9rem;
  color: var(--mist);
  line-height: 1.65;
  margin-bottom: 1.1rem;
  flex-grow: 1;
}

.focus-read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gold);
  text-decoration: none;
  border: none;
  background: none;
  cursor: pointer;
  padding: 0;
  transition: color 0.25s var(--ease), gap 0.25s var(--ease);
  letter-spacing: 0.01em;
}

.focus-read-more:hover {
  color: #0a2a1e;
  gap: 0.6rem;
}

/* ---------------- Service Detail Modals ---------------- */
.svc-modal .modal-dialog,
.svc-modal-dialog {
  max-width: 650px;
  width: 100%;
  margin: auto;
}

.svc-modal-content {
  border: none !important;
  border-radius: 14px !important;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.30);
  position: relative;
  background: #fff;
  padding: 0;
}

.svc-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 10;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #ffffff;
  border: none;
  font-size: 1rem;
  font-weight: 700;
  color: #333;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
  transition: background 0.2s, transform 0.2s;
  line-height: 1;
}

.svc-modal-close:hover {
  background: #f0f0f0;
  transform: scale(1.1);
}

.svc-modal-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.svc-modal-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.svc-modal-body {
  padding: 1.4rem 1.6rem 1.8rem;
}

.svc-modal-body h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.7rem;
}

.svc-modal-body p {
  font-size: 0.93rem;
  color: var(--mist);
  line-height: 1.7;
  margin: 0;
}

/* Dark overlay behind modal */
.svc-modal .modal-backdrop,
.modal-backdrop {
  background-color: rgba(0, 0, 0, 0.72);
}

/* ---------------- Clients / Brands Marquee ---------------- */
.clients-section {
  background-color: #114232;
  padding: 3.5rem 0;
  overflow: hidden;
}

.logos-wrapper {
  overflow: hidden;
  position: relative;
  /* Edge fade masks */
  -webkit-mask-image: linear-gradient(to right,
      transparent 0%,
      #000 10%,
      #000 90%,
      transparent 100%);
  mask-image: linear-gradient(to right,
      transparent 0%,
      #000 10%,
      #000 90%,
      transparent 100%);
}

.logos-track {
  display: flex;
  width: max-content;
  gap: 1.2rem;
  animation: logoScroll 28s linear infinite;
}

.logos-wrapper:hover .logos-track {
  animation-play-state: paused;
}

@keyframes logoScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.logo-card {
  background: #ffffff;
  /* border-radius: 10px; */
  width: 250px;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 1.4rem;
  flex-shrink: 0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.logo-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
}

.logo-card img {
  max-width: 100%;
  max-height: 85px;
  object-fit: contain;
  display: block;
  filter: none;
}

/* ---------------- Features ---------------- */
.features-section {
  background: #ffffff;
}

.feature-card {
  background: #ffffff;
  padding: 1.8rem;
  /* border-radius: var(--radius); */
  box-shadow: 0 10px 30px rgba(15, 27, 46, 0.081);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  border: 1px solid rgba(198, 161, 91, 0.1);
  margin-bottom: 1.5rem;
}

.feature-card:last-child {
  margin-bottom: 0;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(15, 27, 46, 0.08);
  border-color: rgba(198, 161, 91, 0.3);
}

.feature-card-title {
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.feature-card-text {
  font-size: 1rem;
  color: var(--ink);
  line-height: 1.6;
  margin: 0;
}

.feature-center-image-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.feature-center-image-wrapper img {
  width: auto;
  height: 500px;
  object-fit: cover;
}

/* ---------------- Services ---------------- */
.services-row {
  margin-top: 3rem;
}

.service-card {
  background: #ffffff;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: 0 10px 30px rgba(15, 27, 46, 0.03);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(15, 27, 46, 0.08);
  border-color: rgba(198, 161, 91, 0.3);
}

.service-card-img-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
}

.service-card-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.service-card:hover .service-card-img-wrapper img {
  transform: scale(1.05);
}

.service-card-body {
  padding: 2rem 1.8rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-card-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.8rem;
}

.service-card-text {
  font-size: 0.95rem;
  color: var(--ink);
  line-height: 1.6;
  margin-bottom: 1.8rem;
}

.service-card-actions {
  display: flex;
  gap: 0.8rem;
  margin-top: 1rem;
}

.service-card-actions .service-card-btn {
  flex: 1;
  text-align: center;
  padding: 0.75rem 1rem;
  font-size: 0.88rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 600;
}

/* Modal styling overrides to match theme */
.custom-modal .modal-content {
  border-radius: var(--radius);
  border: 1px solid rgba(198, 161, 91, 0.2);
  box-shadow: 0 25px 60px rgba(15, 27, 46, 0.15);
  background: var(--cream);
}

.custom-modal .modal-header {
  border-bottom: 1px solid rgba(15, 27, 46, 0.05);
  padding: 1.8rem 2rem 1rem 2rem;
}

.custom-modal .modal-title {
  font-family: var(--font-display);
  color: var(--navy);
  font-weight: 700;
  font-size: 1.6rem;
}

.custom-modal .modal-body {
  padding: 2.2rem 2rem;
}

.custom-modal .btn-close:focus {
  box-shadow: none;
}

.panel-title {
  font-size: 1.7rem;
  margin-bottom: 1rem;
}

.process-row {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-top: 1.8rem;
}

.process-step {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  border-top: 1px solid var(--line);
  padding-top: 1.2rem;
}

.step-mark {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--gold);
  min-width: 110px;
  font-size: 1.05rem;
}

.process-step p {
  margin: 0;
  color: var(--mist);
}

.callout-box {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.4rem 1.5rem;
  margin-bottom: 1rem;
}

.callout-box h4 {
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-bottom: .5rem;
}

.callout-box h4 i {
  color: var(--gold);
}

.callout-box p {
  margin: 0;
  color: var(--mist);
  font-size: .96rem;
}

.callout-gold {
  background: var(--navy);
  border-color: var(--navy);
}

.callout-gold h4 {
  color: var(--gold-light);
}

.callout-gold p {
  color: rgba(250, 246, 239, .85);
}

.mini-accordion .accordion-item {
  border: none;
  border-bottom: 1px solid var(--line);
  background: transparent;
}

.mini-accordion .accordion-button {
  background: transparent;
  font-weight: 600;
  color: var(--navy);
  box-shadow: none;
  padding: 1rem 0;
}

.mini-accordion .accordion-button:not(.collapsed) {
  color: var(--gold);
}

.mini-accordion .accordion-button::after {
  filter: sepia(1) saturate(3) hue-rotate(0deg);
}

.mini-accordion .accordion-body {
  padding: 0 0 1rem 0;
  color: var(--mist);
}

.discovery-card {
  margin-top: 4rem;
  background: var(--cream-2);
  border-radius: var(--radius);
  padding: 2.2rem 2.4rem;
  display: flex;
  align-items: center;
  gap: 1.8rem;
  flex-wrap: wrap;
}

.discovery-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.discovery-content {
  flex: 1;
  min-width: 260px;
}

.discovery-content h4 {
  font-size: 1.2rem;
  margin-bottom: .6rem;
}

.discovery-content ul {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--mist);
}

.discovery-content li {
  margin-bottom: .3rem;
}

/* ---------------- FAQs Section ---------------- */
.faqs-section {
  background: #f7f8fa;
}

.faq-wrapper {
  background: #ffffff;
  /* border-radius: 14px; */
  box-shadow: 0 8px 30px rgba(15, 27, 46, 0.07);
  padding: 3rem 3rem;
}

.faq-item {
  padding: 8px 0;
}

.faq-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: none;
  border: none;
  padding: 1.1rem 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
  gap: 1rem;
  transition: color 0.25s var(--ease);
  line-height: 1.5;
}

.faq-btn:hover,
.faq-btn:not(.collapsed) {
  color: #114232;
}

.faq-icon {
  flex-shrink: 0;
  font-size: 0.85rem;
  color: #114232;
  transition: transform 0.35s var(--ease);
}

.faq-btn:not(.collapsed) .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  font-size: 0.9rem;
  color: var(--mist);
  line-height: 1.7;
  padding: 0 0 1rem 0;
}

.faq-divider {
  height: 2px;
  background: linear-gradient(to right, #114232, #c8e6c9);
  border-radius: 2px;
  margin-bottom: 0;
}

.faq-image-wrapper {
  border-radius: 14px;
  overflow: hidden;
}

.faq-image-wrapper img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

/* ---------------- CTA Banner ---------------- */
.call-action-section {
  position: relative;
  background-image: url("https://bytebiz.fra1.cdn.digitaloceanspaces.com/byte-qr/7497/mini-web/42301783059807921.png");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  padding: 5rem 0;
  overflow: hidden;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.42);
  z-index: 0;
}

.call-action-section .container {
  position: relative;
  z-index: 1;
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
  line-height: 1.25;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.cta-text {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

.btn-cta {
  display: inline-block;
  background-color: #114232;
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.75rem 2.2rem;
  border-radius: 6px;
  text-decoration: none;
  border: 2px solid #114232;
  transition: background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease), transform 0.25s var(--ease);
  letter-spacing: 0.02em;
}

.btn-cta:hover {
  background-color: transparent;
  color: #ffffff;
  border-color: #ffffff;
  transform: translateY(-2px);
}

/* ---------------- Testimonials ---------------- */
.testimonial-section {
  background: #f7f8fa;
}

.review-card {
  background: #ffffff;
  border: 1px solid var(--line);
  /* border-radius: 14px; */
  padding: 1.6rem 1.5rem;
  height: 100%;
  transition: box-shadow 0.35s var(--ease), transform 0.35s var(--ease);
  display: flex;
  flex-direction: column;
  box-shadow: 0 12px 36px rgba(15, 27, 46, 0.076);
}

.review-card:hover {
  box-shadow: 0 12px 36px rgba(15, 27, 46, 0.10);
  transform: translateY(-5px);
}

.review-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.review-header h6 {
  color: black;
}

.review-img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid var(--line);
}

.google-icon {
  flex-shrink: 0;
  margin-top: 2px;
}

.stars {
  display: flex;
  align-items: center;
  gap: 3px;
}

.stars i {
  color: #f5a623;
  font-size: 0.95rem;
}

.review-text {
  font-size: 0.9rem;
  color: var(--mist);
  line-height: 1.7;
  font-style: italic;
  flex-grow: 1;
}

.verified {
  font-size: 0.82rem;
  font-weight: 600;
  color: #1a7a3c;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.verified i {
  font-size: 0.95rem;
  color: #1a7a3c;
}

/* ---------------- Why Choose Us ---------------- */
.why-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem 1.6rem;
  text-align: center;
  height: 100%;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-soft);
}

.why-card i {
  font-size: 4.1rem;
  color: var(--gold);
  margin-bottom: 1rem;
  display: block;
}

.why-card h5 {
  font-size: 1.02rem;
  font-weight: 600;
}

.feature-strip {
  border-top: 1px solid var(--line);
  padding-top: 3rem;
}

.feature-title {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .06em;
  font-size: .85rem;
  margin-bottom: .7rem;
  font-weight: 700;
}

.feature-strip p {
  color: var(--mist);
  font-size: .96rem;
}

/* ---------------- Quote banner ---------------- */
.quote-banner {
  position: relative;
  overflow: hidden;
  background: var(--navy);
  padding: 6rem 1rem;
  text-align: center;
}

.quote-mark {
  font-size: 2.4rem;
  color: var(--gold);
}

.quote-banner blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.3rem, 3vw, 2.1rem);
  color: var(--cream);
  max-width: 820px;
  margin: 1rem auto 1rem;
  line-height: 1.5;
}

.quote-banner cite {
  color: var(--gold-light);
  font-size: .95rem;
  letter-spacing: .05em;
}

/* ---------------- FAQ ---------------- */
.main-accordion .accordion-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 40px !important;
  margin-bottom: 1rem;
  overflow: hidden;
}

.main-accordion .accordion-button {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--navy);
  padding: 2rem 1.8rem;
  box-shadow: none;
  background: #fff;
}

.main-accordion .accordion-button:not(.collapsed) {
  color: var(--gold);
  background: #fff;
}

.main-accordion .accordion-button:focus {
  box-shadow: none;
}

.main-accordion .accordion-body {
  color: var(--mist);
  padding: 0 1.5rem 1.5rem;
}

/* ---------------- Contact ---------------- */
.contact-section {
  background-color: #ffffff
}

.contact-section .info-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius) !important;
  margin-bottom: 1rem;
  padding: 2rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border-top: 5px solid var(--gold);
  box-shadow: 0px 1px 40px 0px rgba(0, 0, 0, 0.074);
  transition: transform .3s ease, box-shadow .3s ease;
}

.contact-section iframe {
  padding: 2rem;
  border-radius: var(--radius);
  background-color: white;
  border: 1px solid var(--line);
  border-top: 5px solid var(--gold);
  box-shadow: 0px 1px 40px 0px rgba(0, 0, 0, 0.074);
  overflow: hidden;
}


.contact-section .info-card i {
  font-size: 3rem;
  color: var(--gold);
  margin-bottom: .5rem;
}

.contact-section .info-card h4 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: .5rem;
}

.contact-section .info-card p {
  font-size: .92rem;
  color: var(--mist);
  margin-bottom: 0;
}

.contact-section .info-card a {
  font-size: .92rem;
  color: var(--mist);
  margin-bottom: 0;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-section .info-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-soft);
}

.contact-form .form-label {
  font-weight: 600;
  color: var(--navy);
  font-size: .92rem;
  margin-bottom: .35rem;
}

.contact-form .form-control,
.contact-form .form-select {
  border: 1.5px solid var(--line);
  border-radius: 10px;
  padding: .7rem .9rem;
  background: #fff;
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease);
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(198, 161, 91, .18);
}

.form-success {
  display: none;
  margin-top: 1rem;
  text-align: center;
  color: #3a7d5c;
  font-weight: 600;
}

.form-success.show {
  display: block;
  animation: fadeInPanel .5s var(--ease);
}

.contact-info-card {
  background: var(--navy);
  color: var(--cream);
  border-radius: var(--radius);
  padding: 2.4rem;
  height: 100%;
}

.info-row {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.6rem;
}

.info-row i {
  font-size: 1.3rem;
  color: var(--gold);
  margin-top: .2rem;
}

.info-row span {
  display: block;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .72rem;
  color: var(--gold-light);
  margin-bottom: .2rem;
}

.info-row>div {
  flex: 1;
  min-width: 0;
}

.info-row a,
.info-row p {
  color: var(--cream);
  margin: 0;
  word-break: break-all;
  overflow-wrap: anywhere;
}

.info-row a:hover {
  color: var(--gold-light);
}

.social-row {
  display: flex;
  gap: .8rem;
  /* margin-top: 1.8rem; */
}

.social-row a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(250, 246, 239, .3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  transition: all .3s var(--ease);
}

.social-row a:hover {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
  transform: translateY(-3px);
}

/* ---------------- Footer ---------------- */
.site-footer {
  background: var(--gold);
  color: var(--cream);
  padding: 3.5rem 0 1.6rem;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.6rem;
}

.footer-brand {
  display: flex;
  align-items: center;
}

.brand-logo-footer {
  height: 85px;
  width: auto;
  filter: brightness(0) invert(1);
}

.footer-links {
  list-style: none;
  display: flex;
  gap: 1.6rem;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
}

.footer-links a {
  color: rgba(250, 246, 239, .75);
  font-size: .92rem;
  transition: color .3s;
}

.footer-links a:hover {
  color: var(--gold-light);
}

.site-footer hr {
  border-color: rgba(250, 246, 239, .15);
  margin: 2rem 0 1.2rem;
}

.footer-copy {
  text-align: center;
  font-size: .85rem;
  color: rgba(250, 246, 239, .6);
  margin: 0;
}

/* ---------------- WhatsApp float ---------------- */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 10px 26px rgba(37, 211, 102, .45);
  animation: floatPulse 2.6s ease-in-out infinite;
}

@keyframes floatPulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.07);
  }
}

#scrollTopBtn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  border: none;
  border-radius: 50%;
  background: var(--navy);
  color: var(--cream);
  font-size: 22px;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
  z-index: 9999;
}

#scrollTopBtn.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

#scrollTopBtn:hover {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-3px);
}