:root {
  --bg: #202226;
  --bg-soft: #2a2d33;
  --bg-deep: #181a1f;
  --surface: #111318;
  --text: #eef0f3;
  --muted: #b8bcc6;
  --brand: #d5a63f;
  --brand-2: #f0bd51;
  --white: #ffffff;
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
  --shadow-soft: 0 14px 40px rgba(0, 0, 0, 0.16);
  --radius: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  position: relative;
}

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

.site-loader {
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at top, rgba(213,166,63,.10), transparent 28%), #111318;
  display: grid;
  place-items: center;
  z-index: 3000;
  transition: opacity .5s ease, visibility .5s ease;
}

.site-loader.hide {
  opacity: 0;
  visibility: hidden;
}

.loader-inner img {
  width: min(270px, 64vw);
  margin: 0 auto 1.2rem;
}

.loader-line {
  width: min(220px, 56vw);
  height: 4px;
  background: transparent !important;
  border-radius: 999px;
  overflow: hidden;
}

.loader-line span {
  display: block;
  height: 100%;
  width: 100%;
  background: linear-gradient(90deg, var(--brand), var(--brand-2));
  animation: loaderSweep 1.35s ease-in-out infinite;
  transform-origin: left;
}

@keyframes loaderSweep {
  0% { transform: scaleX(0); opacity: .4; }
  50% { transform: scaleX(1); opacity: 1; }
  100% { transform: scaleX(0); opacity: .4; transform-origin: right; }
}

a { text-decoration: none; }

.bg-orb {
  position: fixed;
  border-radius: 999px;
  filter: blur(90px);
  opacity: .12;
  pointer-events: none;
  z-index: 0;
}

.orb-1 {
  width: 260px;
  height: 260px;
  background: var(--brand);
  top: 8%;
  left: -80px;
}

.orb-2 {
  width: 320px;
  height: 320px;
  background: #7d879b;
  right: -120px;
  bottom: 8%;
}

.navbar,
.hero-section,
main,
.site-footer {
  position: relative;
  z-index: 1;
}

.navbar {
  background: rgba(24, 26, 31, 0.76);
  backdrop-filter: blur(14px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: background .3s ease, padding .3s ease;
  padding: 1rem 0;
}

.navbar.scrolled {
  background: rgba(12, 14, 18, 0.92);
  padding: .72rem 0;
}

.navbar-brand img {
  width: min(230px, 46vw);
  height: auto;
}

.nav-link {
  color: rgba(255,255,255,.86) !important;
  font-size: 1rem;
  position: relative;
  padding-inline: .8rem !important;
}

.nav-link.active,
.nav-link:hover {
  color: var(--brand) !important;
}

.hero-section,
.hero-slide,
.carousel,
.carousel-inner,
.carousel-item {
  min-height: 100vh;
}

.hero-slide {
  background-position: center;
  background-size: cover;
  display: flex;
  align-items: center;
}

.hero-content {
  padding-top: 7rem;
  padding-bottom: 4rem;
  max-width: 860px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  margin-bottom: 1.3rem;
}

.hero-badges span {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .78rem 1rem;
  border-radius: 999px;
  background: transparent !important;
  border: none !important;
  color: rgba(255,255,255,.92);
  font-size: .9rem;
}

.eyebrow,
.section-tag {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .78rem;
  color: var(--brand-2);
  margin-bottom: 1rem;
  font-weight: 700;
}

.display-2 {
  line-height: .95;
  letter-spacing: -0.04em;
  margin-bottom: 1.2rem;
  text-wrap: balance;
}

.hero-content .lead {
  max-width: 690px;
  color: rgba(255,255,255,.84);
  font-size: 1.13rem;
  line-height: 1.85;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.btn {
  border-radius: 999px;
  font-weight: 700;
}

.btn-brand {
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: #161616;
  border: none;
  box-shadow: 0 18px 35px rgba(213, 166, 63, 0.22);
}

.btn-brand:hover { color: #111; opacity: .95; }

.section {
  padding: 110px 0;
  position: relative;
}

.section-dark { background: var(--bg); }
.section-deep {
  background: radial-gradient(circle at top right, rgba(213,166,63,.08), transparent 28%), var(--bg-deep);
}
.section-light {
  background: #f7f7f5;
  color: #1f2329;
}
.section-accent {
  background: linear-gradient(135deg, #252018, #a3781f 72%, #d7aa48);
}

.section-heading { max-width: 760px; }
.section-title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.05;
  margin-bottom: 1rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

.section-text {
  font-size: 1.04rem;
  line-height: 1.9;
  color: var(--muted);
}

.glass-card,
.content-panel,
.service-card,
.contact-card,
.cta-card,
.logo-wall-card,
.brand-feature-card,
.light-note-card {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.glass-card {
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  border: none !important;
  padding: 1.5rem;
}

.stat-card {
  background: transparent !important;
  border: none !important;
  border-radius: 20px;
  padding: 1.2rem;
  height: 100%;
}

.stat-card span {
  display: block;
  color: rgba(255,255,255,.62);
  margin-bottom: .45rem;
  font-size: .88rem;
}

.stat-card strong {
  font-size: 1.15rem;
  color: var(--white);
}

.content-panel {
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  border: none !important;
  padding: 2rem;
  height: 100%;
}

.content-panel p {
  color: rgba(255,255,255,.82);
  line-height: 1.9;
  font-size: 1.05rem;
}

.content-panel-shift { margin-top: 3rem; }

.service-card {
  background: linear-gradient(180deg, #ffffff, #f8f7f3);
  border: none !important;
  padding: 2rem;
  height: 100%;
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}

.service-card:hover,
.logo-wall-card:hover,
.brand-feature-card:hover,
.light-note-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.16);
}

.icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  margin-bottom: 1.2rem;
  color: #111;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
}

.service-card h3,
.contact-card h3,
.cta-card h3,
.logo-wall-card h3,
.brand-feature-card h3 {
  font-size: 1.35rem;
  margin-bottom: .85rem;
  font-weight: 800;
}

.service-card p,
.cta-card p,
.light-note-card p {
  color: #5d6370;
  line-height: 1.8;
  margin-bottom: 0;
}

.project-highlight {
  background: transparent !important;
  border: none !important;
  border-radius: 22px;
  padding: 1.4rem;
  display: grid;
  gap: 1rem;
}

.project-highlight small {
  display: block;
  color: rgba(255,255,255,.55);
  margin-bottom: .2rem;
  text-transform: uppercase;
  letter-spacing: .15em;
}

.project-highlight strong { font-size: 1.02rem; }

.logo-wall-card {
  padding: 1.35rem;
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  border: none !important;
  height: 100%;
}

.logo-wall-head {
  display: flex;
  flex-direction: column;
  gap: .55rem;
  margin-bottom: 1rem;
}

.logo-wall-head h3 {
  margin: 0;
}

.pill-badge {
  display: inline-flex;
  width: fit-content;
  padding: .58rem .9rem;
  border-radius: 999px;
  background: rgba(240,189,81,.13);
  border: none !important;
  color: var(--brand-2);
  font-weight: 700;
  font-size: .82rem;
}

.pill-badge-dark {
  background: rgba(17,19,24,.06);
  border-color: rgba(17,19,24,.10);
  color: #89631d;
}

.logo-wall-frame,
.brand-image-wrap {
  border-radius: 22px;
  overflow: hidden;
  background: transparent !important;
  border: none !important;
}

.logo-wall-frame img,
.brand-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #353536;
}

.brand-feature-card {
  background: #fff;
  padding: 1.35rem;
  border: none !important;
  height: 100%;
}

.brand-image-wrap img {
  min-height: 420px;
}

.light-note-card {
  background: #fff;
  border: none !important;
  padding: 1.35rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.light-note-card i {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: #111;
  font-size: 1.35rem;
  flex: 0 0 52px;
}

.light-note-card strong {
  display: block;
  margin-bottom: .35rem;
  color: #151820;
}

.cta-card {
  padding: 2rem;
  min-height: 100%;
}

.cta-card-dark {
  background: linear-gradient(145deg, #23262b, #13161b);
  color: #fff;
}

.cta-card-dark p { color: rgba(255,255,255,.74); }

.contact-card {
  background: transparent !important;
  backdrop-filter: blur(10px);
  border: none !important;
  padding: 2rem;
}

.contact-item {
  display: flex;
  gap: .9rem;
  align-items: center;
  padding: .95rem 0;
  color: white;
  
}

.contact-item:last-of-type {  }
.contact-item i { font-size: 1.15rem; }

.info-card .btn-outline-light {
  border-radius: 18px;
}

.contact-form {
  background: transparent !important;
  border: none !important;
  border-radius: 28px;
  padding: 1.5rem;
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-soft);
}

.form-control {
  border-radius: 18px;
  border: none !important;
  background: transparent !important;
  box-shadow: none !important;
}

.form-control:focus {
  border-color: rgba(240,189,81,.82);
}

.form-floating > label {
  color: #666e7b;
}

.form-actions .btn-light {
  color: #151515;
}

.site-footer {
  background: #14161a;
  color: rgba(255,255,255,.65);
  padding: 1.4rem 0;
  font-size: .95rem;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s ease, transform .8s ease;
}

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

.delay-1 { transition-delay: .12s; }
.delay-2 { transition-delay: .24s; }
.delay-3 { transition-delay: .36s; }

@media (max-width: 991.98px) {
  .navbar-collapse {
    background: rgba(20,22,26,.98);
    margin-top: .85rem;
    padding: 1rem;
    border-radius: 18px;
  }

  .content-panel-shift { margin-top: 0; }
  .section { padding: 90px 0; }
  .hero-section, .hero-slide, .carousel, .carousel-inner, .carousel-item { min-height: 92vh; }
  .brand-image-wrap img { min-height: 320px; }
}

@media (max-width: 767.98px) {
  .display-2 {
    font-size: clamp(2.5rem, 13vw, 4.2rem);
    line-height: 1.02;
  }

  .hero-content {
    padding-top: 8rem;
    padding-bottom: 3rem;
  }

  .hero-content .lead,
  .section-text,
  .content-panel p { font-size: 1rem; line-height: 1.8; }

  .btn-lg {
    width: 100%;
    padding-block: .95rem;
  }

  .hero-actions { flex-direction: column; }
  .hero-badges span { width: 100%; justify-content: center; }
  .logo-wall-card,
  .brand-feature-card,
  .contact-card,
  .contact-form,
  .cta-card-dark { padding: 1.2rem; }
  .brand-image-wrap img { min-height: 240px; }
  .site-footer { text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal,
  .reveal.in-view,
  .service-card,
  .logo-wall-card,
  .brand-feature-card,
  .light-note-card,
  .navbar { transition: none !important; }
}


.scroll-progress {
  position: fixed;
  inset: 0 0 auto 0;
  height: 3px;
  z-index: 1055;
  background: transparent;
}
.scroll-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--brand), var(--brand-2));
  box-shadow: 0 0 16px rgba(240,189,81,.45);
}

.logo-wall-grid .logo-wall-card,
.brand-feature-card {
  overflow: hidden;
}

.logo-wall-frame-tall img {
  min-height: 520px;
}

.brand-image-wrap-large img {
  min-height: 520px;
}

.logo-wall-frame img,
.brand-image-wrap img {
  transition: transform .45s ease;
}

.logo-wall-card:hover .logo-wall-frame img,
.brand-feature-card:hover .brand-image-wrap img {
  transform: scale(1.02);
}

.back-to-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 52px;
  height: 52px;
  border: none;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: #111;
  box-shadow: 0 18px 35px rgba(0,0,0,.22);
  display: grid;
  place-items: center;
  font-size: 1.15rem;
  z-index: 1030;
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
  transition: opacity .25s ease, transform .25s ease, visibility .25s ease;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  transform: translateY(-4px);
}

.form-feedback {
  min-height: 1.5rem;
}

.thankyou-modal {
  border: none;
  border-radius: 28px;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff, #f7f4ec);
  box-shadow: 0 30px 70px rgba(0,0,0,.25);
}

.thankyou-icon {
  width: 72px;
  height: 72px;
  border-radius: 24px;
  display: grid;
  place-items: center;
  font-size: 2rem;
  color: #111;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  box-shadow: 0 14px 30px rgba(213,166,63,.28);
}

@media (max-width: 991.98px) {
  .logo-wall-frame-tall img,
  .brand-image-wrap-large img {
    min-height: 380px;
  }
}

@media (max-width: 767.98px) {
  .logo-wall-frame-tall img,
  .brand-image-wrap-large img {
    min-height: 240px;
  }

  .back-to-top {
    right: 14px;
    bottom: 14px;
    width: 48px;
    height: 48px;
    border-radius: 16px;
  }
}


.section-heading-compact {
  max-width: 100%;
}

.logo-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1.2rem;
}

.logo-tile {
  min-height: 132px;
  padding: 1.2rem;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  border: none !important;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.logo-tile-light {
  background: #fff;
  border-color: rgba(25, 25, 25, .08);
  box-shadow: 0 14px 34px rgba(18, 23, 31, .08);
}

.logo-tile img {
  max-height: 82px;
  width: 100%;
  object-fit: contain;
  filter: grayscale(1) brightness(1.12);
  opacity: .96;
}

.logo-tile-light img {
  filter: none;
}

.logo-tile:hover {
  transform: translateY(-6px);
  border-color: rgba(213, 166, 63, .45);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.24);
}

.logo-tile-light:hover {
  box-shadow: 0 20px 44px rgba(18, 23, 31, .12);
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: .75rem;
}

.footer-socials a {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #fff;
  border: none !important;
  background: transparent !important;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.footer-socials a:hover {
  transform: translateY(-3px);
  background: rgba(213, 166, 63, .15);
  border-color: rgba(213, 166, 63, .45);
  color: var(--brand-2);
}

.footer-note {
  color: rgba(255,255,255,.7);
}

@media (max-width: 1199.98px) {
  .logo-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 991.98px) {
  .logo-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 767.98px) {
  .logo-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: .85rem;
  }

  .logo-tile {
    min-height: 108px;
    padding: .9rem;
    border-radius: 18px;
  }

  .logo-tile img {
    max-height: 62px;
  }
}


.counter-card {
  background: transparent !important;
  border: none !important;
  border-radius: 22px;
  padding: 1.35rem 1.2rem;
  min-height: 148px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.counter-card strong,
.counter-card span {
  display: inline-block;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}

.counter-card small {
  display: block;
  margin-top: .7rem;
  color: rgba(255,255,255,.68);
  font-size: .92rem;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.service-metrics {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: .8rem;
  margin-top: 2rem;
}

.metric-pill {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .9rem 1rem;
  border-radius: 999px;
  background: #fff;
  border: none !important;
  box-shadow: 0 16px 35px rgba(0,0,0,.07);
  color: #404652;
  font-weight: 600;
}

.logo-tile {
  border-radius: 22px;
  padding: 1.15rem;
  background: transparent !important;
  border: none !important;
  min-height: 128px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease, background .35s ease;
}

.logo-tile-light {
  background: #fff;
  border-color: rgba(0,0,0,.06);
}

.logo-tile img {
  max-height: 72px;
  width: 100%;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: .88;
  transition: filter .4s ease, opacity .4s ease, transform .4s ease;
}

.logo-tile:hover {
  transform: translateY(-6px);
  border-color: rgba(240,189,81,.36);
  box-shadow: 0 20px 40px rgba(0,0,0,.12);
}

.logo-tile:hover img {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.03);
}

.floating-whatsapp,
.back-to-top {
  position: fixed;
  right: 20px;
  z-index: 1000;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 18px 38px rgba(0,0,0,.18);
}

.floating-whatsapp {
  bottom: 92px;
  gap: .55rem;
  padding: .95rem 1rem;
  background: #1f9d55;
  color: #fff;
  font-weight: 700;
  transition: transform .3s ease, opacity .3s ease;
}

.floating-whatsapp:hover {
  color: #fff;
  transform: translateY(-3px);
}

.back-to-top {
  bottom: 24px;
  width: 54px;
  height: 54px;
  border: 0;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: #111;
  opacity: 0;
  visibility: hidden;
  transition: all .3s ease;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.footer-socials {
  display: flex;
  gap: .8rem;
}

.footer-socials a {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: #fff;
  border: none !important;
  transition: transform .3s ease, border-color .3s ease, background .3s ease;
}

.footer-socials a:hover {
  transform: translateY(-3px);
  background: transparent !important;
  border-color: rgba(240,189,81,.36);
}

@media (max-width: 767.98px) {
  .floating-whatsapp span { display: none; }
  .floating-whatsapp {
    width: 56px;
    height: 56px;
    padding: 0;
  }

  .logo-tile { min-height: 108px; padding: 1rem; }
  .logo-tile img { max-height: 58px; }
}


/* Hero zoom animation */
.carousel-item.active .hero-slide {
  animation: heroZoom 4.6s ease forwards;
  transform-origin: center center;
}

@keyframes heroZoom {
  from { transform: scale(1); }
  to { transform: scale(1.08); }
}

.hero-section { overflow: hidden; }
.carousel-item { overflow: hidden; }

/* Instagram section */
.instagram-shell {
  background: linear-gradient(180deg, #ffffff, #f7f4ec);
  border: none !important;
  border-radius: 30px;
  box-shadow: 0 22px 55px rgba(18, 23, 31, .10);
  padding: 1.15rem;
}

.instagram-card {
  background: #fff;
  border: none !important;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(18, 23, 31, .08);
}

.instagram-visual {
  min-height: 360px;
  position: relative;
  padding: 1rem;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  overflow: hidden;
}

.instagram-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17,19,24,.02), rgba(17,19,24,.24));
}

.visual-1 { background: linear-gradient(135deg, rgba(213,166,63,.88), rgba(240,189,81,.42)), url('../images/page-1.png') center/cover; }
.visual-2 { background: linear-gradient(135deg, rgba(36,40,48,.24), rgba(213,166,63,.52)), url('../images/page-2.png') center/cover; }
.visual-3 { background: linear-gradient(135deg, rgba(213,166,63,.58), rgba(36,40,48,.58)), url('../images/page-3.png') center/cover; }
.visual-4 { background: linear-gradient(135deg, rgba(20,22,26,.28), rgba(213,166,63,.62)), url('../images/page-4.png') center/cover; }

.ig-badge {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .8rem 1rem;
  border-radius: 999px;
  background: transparent !important;
  color: #151515;
  font-weight: 700;
  box-shadow: 0 10px 25px rgba(0,0,0,.10);
}

.instagram-copy {
  padding: 1.35rem 1.35rem 1.5rem;
}

.instagram-copy h3 {
  font-size: 1.2rem;
  margin-bottom: .55rem;
  color: #171a20;
  font-weight: 800;
}

.instagram-copy p {
  margin: 0;
  color: #646b77;
  line-height: 1.8;
}

.instagram-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1rem;
  padding-inline: .4rem;
}

.instagram-pagination {
  position: static !important;
  width: auto !important;
}

.instagram-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  opacity: 1;
  background: rgba(17,19,24,.18);
}

.instagram-pagination .swiper-pagination-bullet-active {
  background: var(--brand);
}

.instagram-nav {
  display: flex;
  gap: .65rem;
}

.instagram-prev,
.instagram-next {
  width: 46px;
  height: 46px;
  border: none;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: #151515;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 28px rgba(213,166,63,.18);
  transition: transform .2s ease, opacity .2s ease;
}

.instagram-prev:hover,
.instagram-next:hover {
  transform: translateY(-2px);
}

@media (max-width: 991.98px) {
  .instagram-visual { min-height: 300px; }
}

@media (max-width: 767.98px) {
  .instagram-shell { padding: .8rem; border-radius: 24px; }
  .instagram-visual { min-height: 240px; }
  .instagram-copy { padding: 1rem 1rem 1.2rem; }
  .instagram-controls { flex-direction: column; align-items: stretch; }
  .instagram-nav { justify-content: center; }
}


/* v7 polish */
.mission-vision-section .row { align-items: stretch; }
.mission-vision-card {
  min-height: 100%;
  margin-top: 0 !important;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.content-panel-shift { margin-top: 0 !important; }

.instagram-minimal .section-heading { max-width: 640px; }
.instagram-shell {
  padding: 1.1rem;
  border-radius: 32px;
  background: linear-gradient(180deg, #fff, #f8f4ea);
}
.instagram-photo {
  display: block;
  min-height: 460px;
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  border: none !important;
  box-shadow: 0 22px 48px rgba(18,23,31,.10);
  transition: transform .35s ease, box-shadow .35s ease;
  background-size: cover;
  background-position: center;
}
.instagram-photo:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 58px rgba(18,23,31,.16);
}
.instagram-photo.visual-1 {
  background-image: linear-gradient(rgba(17,19,24,.12), rgba(17,19,24,.24)), url('../images/page-1.png');
}
.instagram-photo.visual-2 {
  background-image: linear-gradient(rgba(17,19,24,.12), rgba(17,19,24,.24)), url('../images/page-2.png');
}
.instagram-photo.visual-3 {
  background-image: linear-gradient(rgba(17,19,24,.12), rgba(17,19,24,.24)), url('../images/page-3.png');
}
.instagram-photo.visual-4 {
  background-image: linear-gradient(rgba(17,19,24,.12), rgba(17,19,24,.24)), url('../images/page-4.png');
}
.ig-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #121212;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  box-shadow: 0 14px 28px rgba(213,166,63,.30);
}
.instagram-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.2rem;
}
.instagram-prev,
.instagram-next {
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 999px;
  background: #171a20;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform .25s ease, background .25s ease, color .25s ease;
}
.instagram-prev:hover,
.instagram-next:hover {
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: #111;
  transform: translateY(-2px);
}
.instagram-pagination { width: auto !important; }
.instagram-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: rgba(17,19,24,.22);
  opacity: 1;
}
.instagram-pagination .swiper-pagination-bullet-active {
  width: 26px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
}
.instagram-open-btn { min-width: 220px; }

.floating-whatsapp {
  background: linear-gradient(135deg, #c6932f, #f0bd51);
  color: #111;
  box-shadow: 0 20px 40px rgba(198,147,47,.34);
}
.floating-whatsapp:hover { color: #111; }
.floating-whatsapp i { font-size: 1.2rem; }

.site-footer {
  padding: 1.6rem 0;
  
}
.site-footer .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.footer-signature-bar {
  background: #101216;
  
  padding: .95rem 0 1.05rem;
}
.footer-signature {
  color: rgba(255,255,255,.64);
  text-align: center;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: .79rem;
}

@media (max-width: 991.98px) {
  .instagram-photo { min-height: 380px; }
}

@media (max-width: 767.98px) {
  .mission-vision-section .content-panel { padding: 1.35rem; }
  .instagram-minimal { padding-bottom: 86px; }
  .instagram-shell { padding: .8rem; border-radius: 24px; }
  .instagram-photo { min-height: 300px; border-radius: 20px; }
  .instagram-controls { gap: .7rem; }
  .instagram-prev, .instagram-next { width: 42px; height: 42px; }
  .site-footer .container {
    flex-direction: column;
    text-align: center;
  }
  .footer-socials { justify-content: center; }
  .floating-whatsapp {
    right: 14px;
    bottom: 76px;
    width: 56px;
    height: 56px;
    padding: 0;
  }
  .floating-whatsapp span { display: none; }
}


/* Custom M-inspired toggler */
.custom-toggler {
  width: 56px;
  height: 56px;
  padding: 0;
  border-radius: 18px;
  background: transparent !important;
  border: none !important;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.custom-toggler:focus { box-shadow: none; }
.custom-toggler .toggler-line {
  display: block;
  height: 2.5px;
  width: 24px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--brand), var(--brand-2));
  transition: transform .25s ease, opacity .25s ease, width .25s ease;
}
.custom-toggler .toggler-line.mid { width: 30px; }
.custom-toggler .toggler-line.short { width: 18px; }
.custom-toggler[aria-expanded="true"] .toggler-line:nth-child(1) { transform: translateY(8px) rotate(45deg); width: 28px; }
.custom-toggler[aria-expanded="true"] .toggler-line.mid { opacity: 0; }
.custom-toggler[aria-expanded="true"] .toggler-line.short { transform: translateY(-8px) rotate(-45deg); width: 28px; }

/* Logo treatment */
.logo-tile,
.logo-tile-light {
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.025));
}
.logo-tile-light {
  border-color: rgba(25,25,25,.08);
}
.logo-tile img,
.logo-tile-light img {
  filter: grayscale(1) brightness(1.02);
  transition: filter .35s ease, transform .35s ease, opacity .35s ease;
  opacity: .96;
}
.logo-tile:hover img,
.logo-tile-light:hover img {
  filter: grayscale(0) brightness(1);
  transform: scale(1.03);
  opacity: 1;
}

/* Real embed-ready Instagram block */
.instagram-minimal .section-heading { max-width: 640px; }
.instagram-embed-shell {
  padding: 1rem;
  border-radius: 32px;
  background: linear-gradient(180deg, #fff, #f8f4ea);
  box-shadow: 0 24px 54px rgba(18,23,31,.08);
}
.instagram-embed-ratio {
  min-height: 520px;
  border-radius: 26px;
  overflow: hidden;
  background: #fff;
  border: none !important;
}
.instagram-widget-frame {
  width: 100%;
  min-height: 520px;
  border: 0;
  display: block;
}

/* WhatsApp gold */
.floating-whatsapp {
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: #111;
  border: none !important;
}
.floating-whatsapp:hover { color: #111; }

@media (max-width: 767.98px) {
  .logo-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: .75rem;
  }
  .logo-tile,
  .logo-tile-light {
    min-height: 96px;
    padding: .85rem;
    border-radius: 18px;
  }
  .logo-tile img,
  .logo-tile-light img {
    max-height: 44px;
  }
  .instagram-embed-shell {
    padding: .75rem;
    border-radius: 24px;
  }
  .instagram-embed-ratio,
  .instagram-widget-frame {
    min-height: 420px;
  }
  .custom-toggler {
    width: 52px;
    height: 52px;
    border-radius: 16px;
  }
}


.instagram-fallback {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: radial-gradient(circle at top, rgba(213,166,63,.10), transparent 34%), linear-gradient(180deg, #fff, #faf7ef);
}
.instagram-fallback-inner {
  max-width: 420px;
}
.instagram-fallback h3 {
  color: #1d2026;
  font-size: clamp(1.35rem, 3vw, 1.9rem);
  font-weight: 800;
}
.instagram-fallback p {
  color: #667085;
  line-height: 1.8;
}
.instagram-icon-ring {
  width: 74px;
  height: 74px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: #131313;
  font-size: 1.8rem;
  box-shadow: 0 18px 38px rgba(213,166,63,.24);
}
.instagram-embed-ratio { position: relative; }
.form-feedback code, .contact-form small code { color: #fff; }


/* v10 live instagram */
.instagram-live-section .section-heading { max-width: 700px; }
.instagram-live-carousel {
  background: linear-gradient(180deg, #fff, #f8f4ea);
  border-radius: 34px;
  padding: 1.2rem 4.8rem;
  border: none !important;
  box-shadow: 0 26px 60px rgba(18,23,31,.10);
}
.instagram-embed-card {
  min-height: 720px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.instagram-control.carousel-control-prev,
.instagram-control.carousel-control-next {
  width: 64px;
  opacity: 1;
}
.instagram-control-btn {
  width: 52px;
  height: 52px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: #111;
  box-shadow: 0 16px 34px rgba(213,166,63,.28);
}
.instagram-live-actions { margin-top: 1.5rem; }
.instagram-profile-btn { min-width: 260px; }
.floating-whatsapp {
  background: linear-gradient(135deg, #c6932f, #f0bd51);
  color: #111;
  box-shadow: 0 20px 40px rgba(198,147,47,.34);
}
.floating-whatsapp:hover { color: #111; }
.custom-toggler {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  background: transparent !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
}
.toggler-line {
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--brand), var(--brand-2));
  display: block;
}
.toggler-line.mid { width: 17px; }
.toggler-line.short { width: 12px; margin-left: 10px; }
.logo-tile img {
  filter: grayscale(100%);
  opacity: .88;
}
.logo-tile:hover img {
  filter: grayscale(0%);
  opacity: 1;
}
.footer-signature-bar {
  background: #101215;
  
  padding: .9rem 0 1.1rem;
}
.footer-signature {
  text-align: center;
  color: rgba(255,255,255,.72);
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: .82rem;
}
@media (max-width: 991.98px) {
  .instagram-live-carousel { padding-inline: 1.2rem; }
  .instagram-embed-card { min-height: 680px; }
}
@media (max-width: 767.98px) {
  .instagram-live-carousel {
    padding: .85rem .4rem 1rem;
    border-radius: 26px;
  }
  .instagram-embed-card { min-height: 610px; }
  .instagram-control.carousel-control-prev,
  .instagram-control.carousel-control-next {
    width: 46px;
    top: auto;
    bottom: -60px;
    transform: none;
  }
  .instagram-control.carousel-control-prev { left: calc(50% - 62px); }
  .instagram-control.carousel-control-next { right: calc(50% - 62px); }
  .instagram-live-actions { margin-top: 4.2rem; }
  .logo-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .logo-tile { min-height: 102px; padding: .85rem; }
  .logo-tile img { max-height: 52px; }
}


/* Instagram refined grid */
.instagram-grid-section .section-heading { max-width: 720px; }
.instagram-posts-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.1rem;
  align-items: start;
}
.instagram-embed-card {
  background: linear-gradient(180deg, #ffffff, #f7f4ee);
  border: none !important;
  border-radius: 24px;
  box-shadow: 0 18px 40px rgba(21, 25, 33, .08);
  padding: 12px;
  overflow: hidden;
  transition: transform .28s ease, box-shadow .28s ease;
}
.instagram-embed-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 46px rgba(21, 25, 33, .12);
}
.instagram-embed-card blockquote.instagram-media {
  min-width: 0 !important;
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
}
.instagram-live-actions { margin-top: 2rem; }
.instagram-profile-btn { min-width: 230px; }

@media (max-width: 1199.98px) {
  .instagram-posts-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 767.98px) {
  .instagram-grid-section { padding-top: 88px; padding-bottom: 88px; }
  .instagram-posts-grid { grid-template-columns: 1fr; gap: 1rem; }
  .instagram-embed-card { padding: 10px; border-radius: 22px; }
  .instagram-profile-btn { min-width: 0; width: 100%; }
}


/* v12 mobile refinements */
.hero-content {
  width: 100%;
}

#about .row {
  row-gap: 1.5rem;
}

#about .section-title,
#about .section-text {
  max-width: 640px;
}

@media (max-width: 991.98px) {
  .hero-content {
    max-width: 720px;
    padding-top: 7.5rem;
    padding-bottom: 3.2rem;
  }

  .hero-badges {
    gap: .6rem;
    margin-bottom: 1rem;
  }

  .hero-badges span {
    padding: .65rem .85rem;
    font-size: .84rem;
  }

  #about .glass-card {
    padding: 1.2rem;
  }
}

@media (max-width: 767.98px) {
  .hero-section,
  .hero-slide,
  .carousel,
  .carousel-inner,
  .carousel-item {
    min-height: 100svh;
  }

  .hero-content {
    max-width: 100%;
    padding-top: 6.9rem;
    padding-bottom: 2.4rem;
  }

  .hero-badges {
    display: grid;
    grid-template-columns: 1fr;
    gap: .55rem;
    margin-bottom: .9rem;
  }

  .hero-badges span {
    width: auto;
    min-height: 42px;
    justify-content: flex-start;
    padding: .62rem .82rem;
    font-size: .76rem;
    letter-spacing: .01em;
  }

  .display-2 {
    font-size: clamp(2.05rem, 9.4vw, 3rem);
    line-height: 1.02;
    letter-spacing: -0.03em;
    margin-bottom: .85rem;
  }

  .hero-content .lead {
    max-width: 100%;
    font-size: .94rem;
    line-height: 1.68;
    margin-bottom: 0;
  }

  .hero-actions {
    gap: .75rem;
    margin-top: 1.4rem;
  }

  .hero-actions .btn {
    min-height: 52px;
  }

  .carousel-control-prev,
  .carousel-control-next {
    width: 11%;
  }

  .section {
    padding: 76px 0;
  }

  #about {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  #about .row {
    row-gap: 1.15rem;
  }

  #about .section-title {
    font-size: clamp(1.85rem, 8vw, 2.35rem);
    margin-bottom: .8rem;
  }

  #about .section-text {
    font-size: .96rem;
    line-height: 1.72;
    margin-bottom: 0;
  }

  #about .glass-card {
    padding: .95rem;
    border-radius: 20px;
  }

  #about .stats-grid {
    --bs-gutter-x: .75rem;
    --bs-gutter-y: .75rem;
  }

  .counter-card {
    min-height: 118px;
    padding: 1rem .85rem;
    border-radius: 18px;
  }

  .counter-card strong,
  .counter-card span {
    font-size: clamp(1.7rem, 8vw, 2.25rem);
  }

  .counter-card small {
    margin-top: .5rem;
    font-size: .74rem;
    line-height: 1.4;
    letter-spacing: .05em;
  }
}

@media (max-width: 420px) {
  .hero-content {
    padding-top: 6.5rem;
  }

  .display-2 {
    font-size: clamp(1.9rem, 9vw, 2.5rem);
  }

  .hero-content .lead {
    font-size: .9rem;
    line-height: 1.62;
  }

  .hero-badges span {
    font-size: .72rem;
    padding: .58rem .74rem;
  }

  #about {
    padding-top: 68px;
    padding-bottom: 68px;
  }
}


/* v13 premium instagram + line indicators */
.hero-indicators {
  bottom: 34px;
  z-index: 4;
  gap: 10px;
}
.hero-indicators [data-bs-target] {
  width: 34px;
  height: 3px;
  margin: 0 4px;
  border: 0;
  border-radius: 999px;
  background: transparent !important;
  opacity: 1;
  transform: skewX(-24deg);
  transition: width .3s ease, background-color .3s ease, opacity .3s ease;
}
.hero-indicators .active {
  width: 58px;
  background: linear-gradient(90deg, rgba(215,170,72,.86), rgba(213,166,63,1));
}

.instagram-grid-section {
  background:
    radial-gradient(circle at top left, rgba(213,166,63,.08), transparent 22%),
    linear-gradient(180deg, #f8f7f3 0%, #f2efe8 100%);
}
.instagram-luxe-shell {
  padding: 18px;
  border-radius: 34px;
  background: linear-gradient(180deg, rgba(255,255,255,.88), rgba(255,255,255,.65));
  border: none !important;
  box-shadow: 0 28px 70px rgba(16, 18, 24, 0.10);
}
.instagram-luxe-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .55rem .45rem 1rem;
}
.instagram-luxe-brand {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  color: #1f2329;
  font-weight: 700;
  letter-spacing: .02em;
}
.instagram-luxe-dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, #feda75, #d62976 45%, #4f5bd5);
  box-shadow: 0 0 0 6px rgba(214, 166, 63, 0.08);
}
.instagram-luxe-link {
  text-decoration: none;
  color: #6a5120;
  font-weight: 700;
}
.instagram-posts-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.instagram-embed-card.luxe-card {
  padding: 10px;
  border-radius: 26px;
  background: linear-gradient(180deg, #ffffff, #fbfaf7);
  border: none !important;
  box-shadow: 0 16px 38px rgba(20,24,31,.08);
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.instagram-embed-card.luxe-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 54px rgba(20,24,31,.14);
  border-color: rgba(213,166,63,.32);
}
.instagram-embed-frame {
  overflow: hidden;
  border-radius: 20px;
  background: linear-gradient(180deg, #ffffff, #f7f5f0);
  min-height: 100%;
}
.instagram-embed-card blockquote.instagram-media {
  min-width: 0 !important;
  max-width: none !important;
  width: 100% !important;
  margin: 0 !important;
}
.instagram-live-actions { display:none; }

@media (max-width: 1199.98px) {
  .instagram-posts-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 767.98px) {
  .hero-indicators {
    bottom: 18px;
    gap: 8px;
  }
  .hero-indicators [data-bs-target] {
    width: 24px;
    height: 2px;
    margin: 0 2px;
  }
  .hero-indicators .active { width: 42px; }
  .instagram-grid-section {
    padding-top: 82px;
    padding-bottom: 82px;
  }
  .instagram-luxe-shell {
    padding: 12px;
    border-radius: 24px;
  }
  .instagram-luxe-topbar {
    padding: .2rem .2rem .8rem;
  }
  .instagram-luxe-link {
    font-size: .92rem;
  }
  .instagram-posts-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .instagram-embed-card.luxe-card {
    padding: 8px;
    border-radius: 22px;
  }
}


/* v14 mobile spacing + instagram media carousel */
@media (max-width: 767.98px) {
  .container {
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero-content {
    padding-top: 8.25rem;
    padding-bottom: 5rem;
    padding-left: .15rem;
    padding-right: .15rem;
  }

  .hero-badges {
    gap: .55rem;
    margin-bottom: 1rem;
  }

  .hero-badges span {
    padding: .62rem .8rem;
    font-size: .77rem;
  }

  .hero-content .display-2,
  .hero-content h2.display-2 {
    font-size: clamp(2.15rem, 10vw, 3.35rem);
    line-height: 1.02;
    margin-bottom: .9rem;
  }

  .hero-content .lead {
    font-size: .98rem;
    line-height: 1.8;
    max-width: 100%;
    padding-right: .25rem;
  }

  #about.section {
    padding-top: 74px;
    padding-bottom: 74px;
  }

  #about .row {
    --bs-gutter-y: 1.15rem;
  }

  #about .section-title,
  #about .section-text {
    padding-inline: .1rem;
  }

  #about .glass-card {
    padding: 1rem;
  }

  #about .counter-card {
    padding: .95rem .8rem;
  }
}

.instagram-carousel-section {
  background: radial-gradient(circle at top left, rgba(213,166,63,.08), transparent 22%), linear-gradient(180deg, #f8f7f3 0%, #f2efe8 100%);
}

.instagram-media-swiper {
  overflow: visible;
}

.instagram-media-swiper .swiper-slide {
  height: auto;
}

.instagram-media-card {
  position: relative;
  display: block;
  padding: 10px;
  border-radius: 26px;
  background: linear-gradient(180deg, #ffffff, #fbfaf7);
  border: none !important;
  box-shadow: 0 16px 38px rgba(20,24,31,.08);
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}

.instagram-media-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 54px rgba(20,24,31,.14);
  border-color: rgba(213,166,63,.32);
}

.instagram-media-viewport {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  background: #fff;
  aspect-ratio: 4 / 5;
}

.instagram-media-viewport iframe {
  position: absolute;
  inset: -82px 0 -116px 0;
  width: 100%;
  height: calc(100% + 198px);
  border: 0;
  pointer-events: none;
}

.instagram-media-viewport.is-reel iframe {
  inset: -104px 0 -138px 0;
  height: calc(100% + 242px);
}

.instagram-media-overlay {
  position: absolute;
  right: 18px;
  top: 18px;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: rgba(17, 19, 24, .42);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 24px rgba(0,0,0,.12);
}

.instagram-carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.2rem;
}

.instagram-nav {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: none !important;
  background: transparent !important;
  color: #2a2e35;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px rgba(17,19,24,.08);
}

.instagram-nav:hover {
  border-color: rgba(213,166,63,.28);
  color: #6a5120;
}

.instagram-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: auto !important;
}

.instagram-pagination .swiper-pagination-bullet {
  width: 26px;
  height: 2px;
  border-radius: 999px;
  background: rgba(40, 44, 52, .18);
  opacity: 1;
  transform: skewX(-24deg);
  margin: 0 !important;
  transition: width .3s ease, background-color .3s ease;
}

.instagram-pagination .swiper-pagination-bullet-active {
  width: 52px;
  background: linear-gradient(90deg, rgba(215,170,72,.86), rgba(213,166,63,1));
}

@media (max-width: 767.98px) {
  .instagram-luxe-shell {
    padding: 12px;
    border-radius: 24px;
  }

  .instagram-luxe-topbar {
    padding: .2rem .15rem .8rem;
  }

  .instagram-media-card {
    padding: 8px;
    border-radius: 22px;
  }

  .instagram-media-overlay {
    width: 38px;
    height: 38px;
    right: 14px;
    top: 14px;
  }

  .instagram-carousel-controls {
    gap: .75rem;
    margin-top: 1rem;
  }

  .instagram-nav {
    width: 42px;
    height: 42px;
  }

  .instagram-pagination .swiper-pagination-bullet {
    width: 20px;
  }

  .instagram-pagination .swiper-pagination-bullet-active {
    width: 42px;
  }
}


/* v15 mobile rescue + cleaner instagram */
.hero-section, .carousel, .carousel-inner, .carousel-item, .hero-slide { overflow: hidden; }
.instagram-media-swiper { overflow: hidden; }
.instagram-media-swiper .swiper-wrapper { align-items: stretch; }
.instagram-media-swiper .swiper-slide { height: auto; }
.instagram-media-card { height: 100%; }
.instagram-media-viewport { aspect-ratio: 4 / 5; background: #f5f2eb; }
.instagram-media-viewport iframe {
  inset: -74px 0 -118px 0;
  width: 100%;
  height: calc(100% + 192px);
  border: 0;
  display: block;
  pointer-events: none;
}
.instagram-media-viewport.is-reel iframe {
  inset: -98px 0 -150px 0;
  height: calc(100% + 248px);
}
.instagram-luxe-shell { overflow: hidden; }
.instagram-luxe-topbar { margin-bottom: .2rem; }
.instagram-media-overlay { z-index: 2; }

@media (max-width: 991.98px) {
  .navbar-brand img { width: min(190px, 52vw); }
  .navbar-collapse { max-width: 100%; overflow: hidden; }
  .hero-content { max-width: 100%; }
  .section { padding: 82px 0; }
  .contact-card, .contact-form { padding: 1.25rem; }
}

@media (max-width: 767.98px) {
  .container {
    width: 100%;
    max-width: 100%;
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

  .navbar { padding: .85rem 0; }
  .navbar-brand img { width: min(170px, 48vw); }
  .navbar-collapse { margin-top: .75rem; padding: .9rem; border-radius: 20px; }
  .nav-link { padding: .7rem .2rem !important; }

  .hero-section,
  .hero-slide,
  .carousel,
  .carousel-inner,
  .carousel-item { min-height: 100svh; }

  .hero-content {
    max-width: 100%;
    padding-top: 7.25rem !important;
    padding-bottom: 4.25rem !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .hero-badges {
    display: grid;
    grid-template-columns: 1fr;
    gap: .55rem;
    margin-bottom: 1rem;
  }

  .hero-badges span {
    width: 100%;
    justify-content: flex-start;
    text-align: left;
    min-height: 0;
    padding: .7rem .85rem;
    font-size: .74rem;
    line-height: 1.35;
  }

  .hero-content .display-2,
  .hero-content h2.display-2,
  .display-2 {
    font-size: clamp(1.95rem, 8.6vw, 2.6rem) !important;
    line-height: 1.06 !important;
    margin-bottom: .9rem !important;
    max-width: 100%;
    word-break: normal;
  }

  .hero-content .lead {
    font-size: .95rem !important;
    line-height: 1.72 !important;
    max-width: 100% !important;
    margin-right: 0;
    padding-right: 0 !important;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: .8rem;
    margin-top: 1.25rem;
  }

  .hero-actions .btn,
  .btn-lg {
    width: 100%;
    min-height: 50px;
    padding: .9rem 1rem;
  }

  .carousel-control-prev,
  .carousel-control-next { display: none; }

  .hero-indicators { bottom: 16px; }

  .section { padding: 68px 0 !important; }
  .section-heading { margin-bottom: 0; }
  .section-title {
    font-size: clamp(1.7rem, 7.8vw, 2.2rem);
    line-height: 1.12;
    margin-bottom: .8rem;
  }
  .section-text,
  .content-panel p {
    font-size: .95rem;
    line-height: 1.72;
  }

  #about.section { padding-top: 68px !important; padding-bottom: 68px !important; }
  #about .row { --bs-gutter-y: 1rem; }
  #about .glass-card { padding: .95rem !important; }
  #about .stats-grid { --bs-gutter-x: .7rem; --bs-gutter-y: .7rem; }
  .counter-card { min-height: 108px; padding: .9rem .75rem !important; border-radius: 18px; }
  .counter-card strong, .counter-card span { font-size: clamp(1.55rem, 7vw, 2rem); }
  .counter-card small { font-size: .72rem; line-height: 1.35; }

  .mission-vision-section .row,
  #contact .row { --bs-gutter-y: 1rem; }
  .content-panel,
  .service-card,
  .contact-card,
  .contact-form,
  .logo-tile {
    border-radius: 20px;
  }
  .content-panel,
  .service-card,
  .contact-card,
  .contact-form {
    padding: 1.1rem !important;
  }

  .logo-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: .8rem;
  }
  .logo-tile { min-height: 96px; padding: .75rem; }
  .logo-tile img { max-height: 52px; }

  .instagram-carousel-section { padding-top: 68px !important; padding-bottom: 68px !important; }
  .instagram-luxe-shell { padding: 10px !important; border-radius: 22px !important; }
  .instagram-luxe-topbar {
    padding: .2rem .2rem .8rem !important;
    align-items: center;
  }
  .instagram-luxe-brand { font-size: .95rem; }
  .instagram-luxe-link { font-size: .88rem !important; }

  .instagram-media-card {
    padding: 8px !important;
    border-radius: 20px !important;
  }
  .instagram-media-viewport {
    aspect-ratio: 4 / 5;
    border-radius: 16px;
  }
  .instagram-media-viewport iframe {
    inset: -70px 0 -118px 0;
    height: calc(100% + 188px);
  }
  .instagram-media-viewport.is-reel iframe {
    inset: -98px 0 -154px 0;
    height: calc(100% + 252px);
  }
  .instagram-media-overlay {
    width: 36px;
    height: 36px;
    right: 12px;
    top: 12px;
  }
  .instagram-carousel-controls { margin-top: 1rem; gap: .75rem; }
  .instagram-nav { width: 40px; height: 40px; }
  .instagram-pagination .swiper-pagination-bullet { width: 18px; }
  .instagram-pagination .swiper-pagination-bullet-active { width: 40px; }

  .contact-item {
    align-items: flex-start;
    gap: .75rem;
    padding: .8rem 0;
  }
  .form-floating > label { padding-inline: .85rem; }
  .form-control { border-radius: 16px; }
  textarea.form-control { min-height: 150px !important; }

  .site-footer { text-align: center; }
  .site-footer .container {
    padding-top: .2rem;
    padding-bottom: .2rem;
  }
  .footer-socials { justify-content: center; flex-wrap: wrap; }

  .floating-whatsapp {
    right: 14px !important;
    bottom: 72px !important;
    width: 52px;
    height: 52px;
    padding: 0;
    border-radius: 999px;
  }
  .floating-whatsapp span { display: none !important; }
  .back-to-top { bottom: 14px !important; }
}

@media (max-width: 420px) {
  .container { padding-left: 16px !important; padding-right: 16px !important; }
  .hero-content { padding-top: 6.9rem !important; }
  .hero-content .display-2,
  .hero-content h2.display-2,
  .display-2 { font-size: clamp(1.82rem, 8.2vw, 2.3rem) !important; }
  .hero-content .lead { font-size: .91rem !important; line-height: 1.66 !important; }
  .logo-grid { gap: .7rem; }
  .logo-tile { min-height: 88px; }
  .logo-tile img { max-height: 46px; }
}


/* ===== V16 Logo System: equal-size, clear, zoomed logo showcases ===== */
.logo-grid {
  display: grid !important;
  grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
  gap: 18px !important;
  align-items: stretch !important;
}

.logo-tile,
.logo-tile.logo-tile-light {
  position: relative !important;
  min-height: 124px !important;
  aspect-ratio: 1.55 / 1 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 10px !important;
  border-radius: 18px !important;
  overflow: hidden !important;
  background: transparent !important;
  border: none !important;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.08) !important;
}

.logo-grid-projects .logo-tile {
  background: transparent !important;
}

.logo-tile img {
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  max-height: none !important;
  object-fit: contain !important;
  object-position: center !important;
  transform: scale(1.95) !important;
  filter: grayscale(100%) contrast(1.08) brightness(.9) !important;
  opacity: 0.92 !important;
  transition: transform .45s ease, filter .45s ease, opacity .45s ease !important;
}

.logo-tile:hover img {
  transform: scale(1.27) !important;
  filter: grayscale(0%) contrast(1.02) brightness(1) !important;
  opacity: 1 !important;
}

.logo-tile:hover {
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.13) !important;
  border-color: rgba(201, 162, 74, 0.35) !important;
}


@media (max-width: 991.98px) {
  .logo-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 10px !important;
  }

  .logo-tile,
  .logo-tile.logo-tile-light {
    min-height: 94px !important;
    padding: 7px !important;
    border-radius: 14px !important;
  }

  .logo-tile img {
    transform: scale(1.22) !important;
  }

  .logo-tile:hover img {
    transform: scale(1.28) !important;
  }
}

@media (max-width: 420px) {
  .logo-grid {
    gap: 8px !important;
  }

  .logo-tile,
  .logo-tile.logo-tile-light {
    min-height: 82px !important;
    padding: 6px !important;
  }
}

.logo-tile.is-placeholder-logo { display: none !important; }


/* remove logo background clean */
.logo-tile{
  background: transparent !important;
  box-shadow: none !important;
}

.logo-tile:hover{
  box-shadow: none !important;
}


/* FINAL LOGO FIX */
.logo-tile{
  background: none !important;
  border: none !important;
  box-shadow: none !important;
  padding:0 !important;
}

.logo-tile img{
  transform: scale(1.95) !important;
  transition: all .4s ease !important;
}

.logo-tile:hover img{
  transform: scale(1.4) !important;
}



/* ===== V19 Hero: fixed banner image, text-only slider, mobile centered ===== */
.hero-section,
.hero-section .carousel,
.hero-section .carousel-inner,
.hero-section .carousel-item,
.hero-slide {
  min-height: 100vh !important;
}

.hero-slide {
  background-image: linear-gradient(rgba(12,14,18,.70), rgba(12,14,18,.78)), url('../images/banner.png') !important;
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
  animation: heroImageZoom 13s ease-in-out infinite alternate;
}

@keyframes heroImageZoom {
  from { background-size: 100% auto; }
  to { background-size: 108% auto; }
}

.hero-content {
  width: 100%;
  max-width: 860px !important;
  padding-left: 18px !important;
  padding-right: 18px !important;
}

.hero-indicators.carousel-indicators,
.carousel-indicators.hero-indicators {
  margin-bottom: 1.6rem !important;
}

.hero-indicators [data-bs-target] {
  width: 34px !important;
  height: 3px !important;
  border-radius: 999px !important;
  transform: skewX(-24deg) !important;
  background-color: rgba(255,255,255,.55) !important;
  border: 0 !important;
  opacity: 1 !important;
  margin: 0 6px !important;
}

.hero-indicators .active {
  width: 58px !important;
  background-color: var(--brand) !important;
}

@media (max-width: 991.98px) {
  .hero-section,
  .hero-section .carousel,
  .hero-section .carousel-inner,
  .hero-section .carousel-item,
  .hero-slide {
    min-height: 100svh !important;
  }

  .hero-slide {
    background-size: cover !important;
    background-position: center top !important;
    animation: none !important;
  }

  .hero-content {
    min-height: 100svh !important;
    max-width: 100% !important;
    padding: 112px 22px 88px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    text-align: center !important;
  }

  .hero-badges {
    justify-content: center !important;
    gap: .55rem !important;
    margin-bottom: 1rem !important;
  }

  .hero-badges span {
    font-size: .76rem !important;
    line-height: 1.25 !important;
    padding: .46rem .62rem !important;
  }

  .eyebrow {
    font-size: .68rem !important;
    letter-spacing: .14em !important;
    margin-bottom: .75rem !important;
  }

  .hero-content .display-2,
  .hero-content h1,
  .hero-content h2 {
    font-size: clamp(2.05rem, 9vw, 3.1rem) !important;
    line-height: 1.06 !important;
    letter-spacing: -.045em !important;
    margin: 0 auto .95rem !important;
    max-width: 11ch !important;
  }

  .hero-content .lead {
    font-size: .96rem !important;
    line-height: 1.65 !important;
    max-width: 31ch !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .hero-actions {
    width: 100% !important;
    max-width: 330px !important;
    justify-content: center !important;
    gap: .75rem !important;
    margin-top: 1.25rem !important;
  }

  .hero-actions .btn {
    width: 100% !important;
    padding: .85rem 1rem !important;
    font-size: .92rem !important;
  }

  .carousel-control-prev,
  .carousel-control-next {
    display: none !important;
  }

  .hero-indicators.carousel-indicators,
  .carousel-indicators.hero-indicators {
    bottom: 22px !important;
    margin-bottom: 0 !important;
  }
}

@media (max-width: 430px) {
  .hero-content {
    padding-left: 18px !important;
    padding-right: 18px !important;
  }

  .hero-content .display-2,
  .hero-content h1,
  .hero-content h2 {
    font-size: clamp(1.92rem, 9.2vw, 2.55rem) !important;
  }

  .hero-content .lead {
    font-size: .9rem !important;
    max-width: 29ch !important;
  }
}


/* ===== V20 Final Hero: static image + animated text + arrows visible ===== */
.hero-slide {
  background-image: linear-gradient(rgba(12,14,18,.70), rgba(12,14,18,.78)), url('../images/banner.png') !important;
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
  animation: none !important;
}

@keyframes heroImageZoom {
  from { background-size: cover; }
  to { background-size: cover; }
}

/* Center hero text on desktop too */
.hero-content {
  max-width: 900px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  text-align: center !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
}

.hero-content .lead {
  margin-left: auto !important;
  margin-right: auto !important;
}

.hero-badges,
.hero-actions {
  justify-content: center !important;
}

/* Text animation only */
.carousel-item.active .hero-content .hero-badges,
.carousel-item.active .hero-content .eyebrow,
.carousel-item.active .hero-content h1,
.carousel-item.active .hero-content h2,
.carousel-item.active .hero-content .lead,
.carousel-item.active .hero-content .hero-actions {
  animation: heroTextUp .75s ease both;
}

.carousel-item.active .hero-content h1,
.carousel-item.active .hero-content h2 { animation-delay: .12s; }

.carousel-item.active .hero-content .lead { animation-delay: .24s; }

.carousel-item.active .hero-content .hero-actions { animation-delay: .36s; }

@keyframes heroTextUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Show arrows on desktop */
.carousel-control-prev,
.carousel-control-next {
  display: flex !important;
  width: 8% !important;
  opacity: 1 !important;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 3.2rem !important;
  height: 3.2rem !important;
  filter: drop-shadow(0 10px 22px rgba(0,0,0,.35));
}

/* Keep arrows hidden only on small mobile to avoid covering text */
@media (max-width: 767.98px) {
  .carousel-control-prev,
  .carousel-control-next {
    display: none !important;
  }
}

/* Better desktop balance */
@media (min-width: 992px) {
  .hero-content {
    min-height: 100vh !important;
    padding-top: 8rem !important;
    padding-bottom: 6rem !important;
  }

  .hero-content .display-2,
  .hero-content h1,
  .hero-content h2 {
    max-width: 14ch !important;
  }
}


/* ===== V21 MOBILE FINAL ===== */

/* show arrows on mobile too */
.carousel-control-prev,
.carousel-control-next {
  display: flex !important;
}

/* make arrows smaller on mobile */
@media (max-width: 767.98px) {
  .carousel-control-prev-icon,
  .carousel-control-next-icon {
    width: 2.2rem !important;
    height: 2.2rem !important;
  }

  .carousel-control-prev {
    left: 6px !important;
  }

  .carousel-control-next {
    right: 6px !important;
  }

  /* keep text centered perfect */
  .hero-content {
    align-items: center !important;
    text-align: center !important;
    justify-content: center !important;
  }

  .hero-content h1,
  .hero-content h2 {
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .hero-content .lead {
    margin-left: auto !important;
    margin-right: auto !important;
  }
}



/* ===== V22 Premium Upgrades ===== */

/* Golden luxury hover for logo showcases */
.logo-tile {
  isolation: isolate !important;
}

.logo-tile::before {
  content: "" !important;
  position: absolute !important;
  inset: 8px !important;
  border-radius: 18px !important;
  background: radial-gradient(circle at center, rgba(213,166,63,.18), transparent 66%) !important;
  opacity: 0 !important;
  transform: scale(.86) !important;
  transition: opacity .45s ease, transform .45s ease !important;
  z-index: -1 !important;
  pointer-events: none !important;
}

.logo-tile:hover::before {
  opacity: 1 !important;
  transform: scale(1) !important;
}

.logo-tile:hover img {
  filter: grayscale(0%) contrast(1.05) brightness(1.04) drop-shadow(0 10px 22px rgba(213,166,63,.22)) !important;
}

/* More cinematic reveal */
.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity .9s cubic-bezier(.2,.8,.2,1), transform .9s cubic-bezier(.2,.8,.2,1);
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

.reveal.delay-1 { transition-delay: .08s; }
.reveal.delay-2 { transition-delay: .16s; }
.reveal.delay-3 { transition-delay: .24s; }

/* Smoother section spacing feeling */
.section {
  scroll-margin-top: 92px;
}

/* Premium focus/hover feedback */
.btn,
.nav-link,
.logo-tile,
.service-card,
.instagram-media-card {
  will-change: transform;
}

/* Golden arrows */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: drop-shadow(0 10px 22px rgba(0,0,0,.35)) sepia(.35) saturate(1.4) !important;
}

.carousel-control-prev:hover .carousel-control-prev-icon,
.carousel-control-next:hover .carousel-control-next-icon {
  filter: drop-shadow(0 12px 26px rgba(213,166,63,.35)) sepia(1) saturate(1.7) !important;
}

/* Luxury cursor - desktop only */
.luxury-cursor,
.luxury-cursor-dot {
  display: none;
}

@media (hover: hover) and (pointer: fine) {
  body.cursor-ready {
    cursor: none;
  }

  body.cursor-ready a,
  body.cursor-ready button,
  body.cursor-ready .logo-tile,
  body.cursor-ready .swiper-slide,
  body.cursor-ready input,
  body.cursor-ready textarea {
    cursor: none;
  }

  .luxury-cursor,
  .luxury-cursor-dot {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 5000;
    border-radius: 999px;
    transform: translate(-50%, -50%);
  }

  .luxury-cursor {
    width: 42px;
    height: 42px;
    border: 1px solid rgba(213,166,63,.55);
    transition: width .22s ease, height .22s ease, border-color .22s ease, background .22s ease;
    mix-blend-mode: difference;
  }

  .luxury-cursor-dot {
    width: 7px;
    height: 7px;
    background: var(--brand);
    box-shadow: 0 0 18px rgba(213,166,63,.65);
  }

  body.cursor-hover .luxury-cursor {
    width: 64px;
    height: 64px;
    border-color: rgba(213,166,63,.9);
    background: rgba(213,166,63,.08);
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal.show,
  .hero-content * {
    transition: none !important;
    animation: none !important;
  }
}


/* ===== V23 Stronger/Faster Premium Animation + C Cursor ===== */

/* Stronger, faster reveal */
.reveal {
  opacity: 0 !important;
  transform: translateY(26px) scale(.985) !important;
  filter: blur(4px) !important;
  transition:
    opacity .48s cubic-bezier(.16,1,.3,1),
    transform .48s cubic-bezier(.16,1,.3,1),
    filter .48s cubic-bezier(.16,1,.3,1) !important;
}

.reveal.show {
  opacity: 1 !important;
  transform: translateY(0) scale(1) !important;
  filter: blur(0) !important;
}

.reveal.delay-1 { transition-delay: .045s !important; }
.reveal.delay-2 { transition-delay: .09s !important; }
.reveal.delay-3 { transition-delay: .135s !important; }

/* subtle auto movement for premium sections/cards */
.service-card,
.logo-tile,
.instagram-media-card,
.mv-card,
.stat-card {
  animation: premiumFloat 4.2s ease-in-out infinite;
}

.service-card:nth-child(2n),
.logo-tile:nth-child(2n),
.instagram-media-card:nth-child(2n),
.mv-card:nth-child(2n),
.stat-card:nth-child(2n) {
  animation-delay: .65s;
}

.service-card:nth-child(3n),
.logo-tile:nth-child(3n),
.instagram-media-card:nth-child(3n),
.mv-card:nth-child(3n),
.stat-card:nth-child(3n) {
  animation-delay: 1.15s;
}

@keyframes premiumFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}

/* stronger logo hover while preserving floating movement */
.logo-tile:hover img {
  transform: scale(1.45) !important;
}

/* Hero text animation: faster and stronger on every slide */
.carousel-item.active .hero-content .hero-badges,
.carousel-item.active .hero-content .eyebrow,
.carousel-item.active .hero-content h1,
.carousel-item.active .hero-content h2,
.carousel-item.active .hero-content .lead,
.carousel-item.active .hero-content .hero-actions {
  animation: heroTextStrong .58s cubic-bezier(.16,1,.3,1) both !important;
}

.carousel-item.active .hero-content h1,
.carousel-item.active .hero-content h2 { animation-delay: .06s !important; }

.carousel-item.active .hero-content .lead { animation-delay: .12s !important; }

.carousel-item.active .hero-content .hero-actions { animation-delay: .18s !important; }

@keyframes heroTextStrong {
  0% {
    opacity: 0;
    transform: translateY(28px) scale(.96);
    filter: blur(6px);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

/* C-shaped custom cursor */
@media (hover: hover) and (pointer: fine) {
  .luxury-cursor {
    width: 46px !important;
    height: 46px !important;
    border: none !important;
    border-left: 3px solid rgba(213,166,63,.95) !important;
    
    
    border-right: 3px solid transparent !important;
    border-radius: 50% !important;
    background: transparent !important;
    box-shadow: 0 0 22px rgba(213,166,63,.18) !important;
    mix-blend-mode: normal !important;
    transform: translate(-50%, -50%) rotate(0deg);
    animation: cCursorPulse 1.7s ease-in-out infinite;
  }

  .luxury-cursor::after {
    content: "";
    position: absolute;
    width: 12px;
    height: 3px;
    right: -3px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--brand);
    border-radius: 999px;
    opacity: .75;
  }

  .luxury-cursor-dot {
    width: 6px !important;
    height: 6px !important;
    background: var(--brand-2) !important;
    box-shadow: 0 0 18px rgba(213,166,63,.8) !important;
  }

  body.cursor-hover .luxury-cursor {
    width: 62px !important;
    height: 62px !important;
    border-left-color: var(--brand-2) !important;
    border-top-color: var(--brand-2) !important;
    border-bottom-color: var(--brand-2) !important;
    transform: translate(-50%, -50%) rotate(-14deg);
  }

  @keyframes cCursorPulse {
    0%, 100% { box-shadow: 0 0 18px rgba(213,166,63,.16); }
    50% { box-shadow: 0 0 34px rgba(213,166,63,.30); }
  }
}

@media (max-width: 767.98px), (prefers-reduced-motion: reduce) {
  .service-card,
  .logo-tile,
  .instagram-media-card,
  .mv-card,
  .stat-card {
    animation: none !important;
  }
}


/* ===== V24 Critical Fix: keep all text visible, safe animation only ===== */

/* Never allow reveal items to remain hidden */
.reveal,
.reveal.show,
.carousel-item .hero-content .reveal,
.carousel-item.active .hero-content .reveal {
  opacity: 1 !important;
  visibility: visible !important;
  filter: none !important;
}

/* Hero text animation without hiding permanently */
.carousel-item.active .hero-content .hero-badges,
.carousel-item.active .hero-content .eyebrow,
.carousel-item.active .hero-content h1,
.carousel-item.active .hero-content h2,
.carousel-item.active .hero-content .lead,
.carousel-item.active .hero-content .hero-actions {
  opacity: 1 !important;
  visibility: visible !important;
  filter: none !important;
  animation: heroTextSafe .45s cubic-bezier(.16,1,.3,1) both !important;
}

@keyframes heroTextSafe {
  0% {
    opacity: .35;
    transform: translateY(18px) scale(.98);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Keep auto movement but do not affect text visibility */
.service-card,
.logo-tile,
.instagram-media-card,
.mv-card,
.stat-card {
  animation: premiumFloatSafe 4s ease-in-out infinite !important;
}

@keyframes premiumFloatSafe {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

@media (max-width: 767.98px), (prefers-reduced-motion: reduce) {
  .service-card,
  .logo-tile,
  .instagram-media-card,
  .mv-card,
  .stat-card {
    animation: none !important;
  }

  .carousel-item.active .hero-content .hero-badges,
  .carousel-item.active .hero-content .eyebrow,
  .carousel-item.active .hero-content h1,
  .carousel-item.active .hero-content h2,
  .carousel-item.active .hero-content .lead,
  .carousel-item.active .hero-content .hero-actions {
    animation: heroTextSafe .38s ease-out both !important;
  }
}


/* ===== V25 Text Slide Animation (Right → Center → Left) ===== */

.carousel-item {
  overflow: hidden;
}

.carousel-item.active .hero-content h1,
.carousel-item.active .hero-content h2,
.carousel-item.active .hero-content .lead,
.carousel-item.active .hero-content .hero-actions,
.carousel-item.active .hero-content .hero-badges {
  animation: textSlideIn .7s cubic-bezier(.22,1,.36,1) forwards;
}

@keyframes textSlideIn {
  0% {
    opacity: 0;
    transform: translateX(80px);
  }
  60% {
    opacity: 1;
    transform: translateX(0);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

/* exit animation (left) */
.carousel-item-next .hero-content h1,
.carousel-item-next .hero-content h2,
.carousel-item-next .hero-content .lead,
.carousel-item-next .hero-content .hero-actions,
.carousel-item-next .hero-content .hero-badges,
.carousel-item-prev .hero-content h1,
.carousel-item-prev .hero-content h2,
.carousel-item-prev .hero-content .lead,
.carousel-item-prev .hero-content .hero-actions,
.carousel-item-prev .hero-content .hero-badges {
  animation: textSlideOut .6s ease forwards;
}

@keyframes textSlideOut {
  0% {
    opacity: 1;
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    transform: translateX(-80px);
  }
}



/* ===== V26 Luxury Fade + Right In / Left Out + Soft Blur ===== */
/* Override previous text animation safely */
.carousel-item {
  overflow: hidden !important;
}

.carousel-item .hero-content h1,
.carousel-item .hero-content h2,
.carousel-item .hero-content .lead,
.carousel-item .hero-content .hero-actions,
.carousel-item .hero-content .hero-badges,
.carousel-item .hero-content .eyebrow {
  opacity: 1 !important;
  visibility: visible !important;
  will-change: transform, opacity, filter;
}

/* Enter: from right with soft blur + fade */
.carousel-item.active .hero-content h1,
.carousel-item.active .hero-content h2,
.carousel-item.active .hero-content .lead,
.carousel-item.active .hero-content .hero-actions,
.carousel-item.active .hero-content .hero-badges,
.carousel-item.active .hero-content .eyebrow {
  animation: luxuryTextFadeInRight .72s cubic-bezier(.16,1,.3,1) both !important;
}

.carousel-item.active .hero-content h1,
.carousel-item.active .hero-content h2 { animation-delay: .06s !important; }

.carousel-item.active .hero-content .lead { animation-delay: .13s !important; }

.carousel-item.active .hero-content .hero-actions { animation-delay: .2s !important; }

/* Exit: to left with fade, without affecting final visibility */
.carousel-item-start .hero-content h1,
.carousel-item-start .hero-content h2,
.carousel-item-start .hero-content .lead,
.carousel-item-start .hero-content .hero-actions,
.carousel-item-start .hero-content .hero-badges,
.carousel-item-start .hero-content .eyebrow {
  animation: luxuryTextFadeOutLeft .5s cubic-bezier(.7,0,.84,0) both !important;
}

@keyframes luxuryTextFadeInRight {
  0% {
    opacity: 0;
    transform: translateX(72px);
    filter: blur(8px);
  }
  55% {
    opacity: 1;
    filter: blur(2px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
    filter: blur(0);
  }
}

@keyframes luxuryTextFadeOutLeft {
  0% {
    opacity: 1;
    transform: translateX(0);
    filter: blur(0);
  }
  100% {
    opacity: 0;
    transform: translateX(-72px);
    filter: blur(7px);
  }
}

/* Mobile: lighter movement so it stays clean */
@media (max-width: 767.98px) {
  .carousel-item.active .hero-content h1,
  .carousel-item.active .hero-content h2,
  .carousel-item.active .hero-content .lead,
  .carousel-item.active .hero-content .hero-actions,
  .carousel-item.active .hero-content .hero-badges,
  .carousel-item.active .hero-content .eyebrow {
    animation: luxuryTextFadeInRightMobile .55s cubic-bezier(.16,1,.3,1) both !important;
  }

  @keyframes luxuryTextFadeInRightMobile {
    0% {
      opacity: 0;
      transform: translateX(34px);
      filter: blur(5px);
    }
    100% {
      opacity: 1;
      transform: translateX(0);
      filter: blur(0);
    }
  }
}


/* ===== V27 Elegant Text Animation - No Fade / No Feeding ===== */
/* final override: remove fade behavior completely */
.carousel-item .hero-content h1,
.carousel-item .hero-content h2,
.carousel-item .hero-content .lead,
.carousel-item .hero-content .hero-actions,
.carousel-item .hero-content .hero-badges,
.carousel-item .hero-content .eyebrow {
  opacity: 1 !important;
  visibility: visible !important;
  filter: none !important;
}

/* Elegant slide-in only: no fade, no opacity animation */
.carousel-item.active .hero-content h1,
.carousel-item.active .hero-content h2,
.carousel-item.active .hero-content .lead,
.carousel-item.active .hero-content .hero-actions,
.carousel-item.active .hero-content .hero-badges,
.carousel-item.active .hero-content .eyebrow {
  animation: elegantTextSlideIn .62s cubic-bezier(.18,.84,.28,1) both !important;
}

/* refined stagger */
.carousel-item.active .hero-content .hero-badges,
.carousel-item.active .hero-content .eyebrow {
  animation-delay: 0s !important;
}

.carousel-item.active .hero-content h1,
.carousel-item.active .hero-content h2 {
  animation-delay: .06s !important;
}

.carousel-item.active .hero-content .lead {
  animation-delay: .12s !important;
}

.carousel-item.active .hero-content .hero-actions {
  animation-delay: .18s !important;
}

/* Exit left only by position, no fade */
.carousel-item-start .hero-content h1,
.carousel-item-start .hero-content h2,
.carousel-item-start .hero-content .lead,
.carousel-item-start .hero-content .hero-actions,
.carousel-item-start .hero-content .hero-badges,
.carousel-item-start .hero-content .eyebrow {
  animation: elegantTextSlideOut .42s cubic-bezier(.55,.06,.68,.19) both !important;
}

@keyframes elegantTextSlideIn {
  0% {
    opacity: 1;
    transform: translateX(64px);
    filter: none;
  }
  70% {
    opacity: 1;
    transform: translateX(-4px);
    filter: none;
  }
  100% {
    opacity: 1;
    transform: translateX(0);
    filter: none;
  }
}

@keyframes elegantTextSlideOut {
  0% {
    opacity: 1;
    transform: translateX(0);
    filter: none;
  }
  100% {
    opacity: 1;
    transform: translateX(-64px);
    filter: none;
  }
}

/* Mobile: smaller elegant movement */
@media (max-width: 767.98px) {
  .carousel-item.active .hero-content h1,
  .carousel-item.active .hero-content h2,
  .carousel-item.active .hero-content .lead,
  .carousel-item.active .hero-content .hero-actions,
  .carousel-item.active .hero-content .hero-badges,
  .carousel-item.active .hero-content .eyebrow {
    animation: elegantTextSlideInMobile .52s cubic-bezier(.18,.84,.28,1) both !important;
  }

  @keyframes elegantTextSlideInMobile {
    0% {
      opacity: 1;
      transform: translateX(30px);
      filter: none;
    }
    70% {
      opacity: 1;
      transform: translateX(-3px);
      filter: none;
    }
    100% {
      opacity: 1;
      transform: translateX(0);
      filter: none;
    }
  }
}

/* ===== V28 Dark Luxury Theme ===== */
:root{
  --gold-a:#8f6b24;
  --gold-b:#d5a63f;
  --gold-c:#f4d27a;
  --gold-gradient:linear-gradient(135deg,#8f6b24 0%,#d5a63f 38%,#f4d27a 58%,#a97a2d 100%);
  --dark-1:#15171b;
  --dark-2:#202226;
  --dark-3:#0f1115;
}
body.dark-luxury-theme{
  background:radial-gradient(circle at 15% 8%,rgba(213,166,63,.10),transparent 22%),radial-gradient(circle at 90% 35%,rgba(255,255,255,.035),transparent 24%),var(--dark-2)!important;
  color:#f4f1ea!important;
}
.section,.section-light,.section-dark,.section-deep,.instagram-live-section,.instagram-carousel-section{
  background:linear-gradient(180deg,rgba(255,255,255,.018),rgba(0,0,0,.05)),var(--dark-2)!important;
  color:#f4f1ea!important;
  box-shadow:inset 0 28px 44px rgba(0,0,0,.20),inset 0 -28px 44px rgba(0,0,0,.22)!important;
  
  
}
.section:nth-of-type(even){
  background:radial-gradient(circle at 100% 0%,rgba(213,166,63,.07),transparent 24%),var(--dark-1)!important;
}

.section-title,.section-title.text-dark,h1,h2,h3,h4,.mv-card h3,.service-card h3,.contact-info h3{color:#fffaf0!important;}
p,.about-copy,.mv-card p,.service-card p,.contact-info p,.contact-item span,.section .lead{color:rgba(244,241,234,.78)!important;}
.text-dark{color:#fffaf0!important;}
.section-tag,.eyebrow,.nav-link.active,.nav-link:hover,.contact-item i,.footer-signature,.instagram-luxe-brand span,.stat-number{
  background:var(--gold-gradient)!important;
  -webkit-background-clip:text!important;
  background-clip:text!important;
  color:transparent!important;
  -webkit-text-fill-color:transparent!important;
}
.hero-content h1,.hero-content h2,.hero-content .display-2{
  background:var(--gold-gradient)!important;
  -webkit-background-clip:text!important;
  background-clip:text!important;
  color:transparent!important;
  -webkit-text-fill-color:transparent!important;
  text-shadow:0 18px 45px rgba(0,0,0,.45);
}
.hero-content .lead,.hero-badges span{color:rgba(255,248,232,.88)!important;}
.btn-brand,.loader-line span,.scroll-progress span,.back-to-top,.floating-whatsapp{background:var(--gold-gradient)!important;}
.btn-outline-light{border-color:rgba(213,166,63,.55)!important;color:#f4d27a!important;}
.btn-outline-light:hover{background:var(--gold-gradient)!important;color:#121212!important;border-color:transparent!important;}
.service-card,.mv-card,.stat-card,.contact-card,.instagram-luxe-shell,.instagram-media-card,.form-control,.form-select{
  background:linear-gradient(145deg,rgba(255,255,255,.055),rgba(255,255,255,.018))!important;
  border:1px solid rgba(213,166,63,.16)!important;
  box-shadow:0 24px 70px rgba(0,0,0,.22)!important;
  color:#fffaf0!important;
}
.form-control,.form-control:focus{color:#fffaf0!important;caret-color:#d5a63f;}
.form-floating label{color:rgba(244,241,234,.65)!important;}
.hero-slide{
  background-image:linear-gradient(rgba(12,14,18,.62),rgba(12,14,18,.76)),url('../images/banner.png')!important;
  background-size:104% auto!important;
  background-position:center center!important;
  animation:luxuryHeroZoom 11s ease-in-out infinite alternate!important;
}
@keyframes luxuryHeroZoom{
  0%{background-size:102% auto;background-position:center center;}
  100%{background-size:110% auto;background-position:center center;}
}
.service-card,.mv-card,.stat-card,.instagram-media-card,.logo-tile{
  position:relative;
  overflow:hidden;
  transition:transform .38s cubic-bezier(.16,1,.3,1),border-color .38s ease,box-shadow .38s ease!important;
}
.service-card::after,.mv-card::after,.stat-card::after,.instagram-media-card::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(115deg,transparent 0%,rgba(244,210,122,.16) 42%,transparent 64%);
  transform:translateX(-130%);
  transition:transform .7s cubic-bezier(.16,1,.3,1);
  pointer-events:none;
}
.service-card:hover,.mv-card:hover,.stat-card:hover,.instagram-media-card:hover{
  transform:translateY(-8px) scale(1.012)!important;
  border-color:rgba(213,166,63,.34)!important;
  box-shadow:0 34px 90px rgba(0,0,0,.34),0 0 42px rgba(213,166,63,.08)!important;
}
.service-card:hover::after,.mv-card:hover::after,.stat-card:hover::after,.instagram-media-card:hover::after{transform:translateX(130%);}
.reveal{
  opacity:0!important;
  transform:translateY(38px) scale(.985)!important;
  filter:blur(5px)!important;
  transition:opacity .68s cubic-bezier(.16,1,.3,1),transform .68s cubic-bezier(.16,1,.3,1),filter .68s cubic-bezier(.16,1,.3,1)!important;
}
.reveal.show{
  opacity:1!important;
  transform:translateY(0) scale(1)!important;
  filter:blur(0)!important;
}
@media (min-width:992px){
  .service-card,.mv-card,.stat-card{animation:luxuryFloat 5.8s ease-in-out infinite!important;}
  .service-card:nth-child(2n),.mv-card:nth-child(2n),.stat-card:nth-child(2n){animation-delay:.8s!important;}
  @keyframes luxuryFloat{0%,100%{transform:translateY(0);}50%{transform:translateY(-5px);}}
}
.logo-tile{background:transparent!important;border:none!important;box-shadow:none!important;}
.logo-tile::before{background:radial-gradient(circle at center,rgba(213,166,63,.20),transparent 64%)!important;}
.hero-indicators [data-bs-target],.carousel-indicators [data-bs-target]{background:rgba(244,210,122,.5)!important;}
.hero-indicators .active,.carousel-indicators .active{background:var(--gold-gradient)!important;}
.carousel-control-prev-icon,.carousel-control-next-icon{filter:drop-shadow(0 12px 24px rgba(0,0,0,.45)) sepia(1) saturate(1.8)!important;}
.site-footer,.footer-signature-wrap{
  background:#101216!important;
  color:rgba(244,241,234,.76)!important;
  
}
@media (max-width:991.98px){
  .hero-slide{
    background-size:cover!important;
    animation:luxuryHeroZoomMobile 9s ease-in-out infinite alternate!important;
  }
  @keyframes luxuryHeroZoomMobile{0%{background-size:auto 100%;}100%{background-size:auto 106%;}}
  .section{padding-top:76px!important;padding-bottom:76px!important;}
}
@media (max-width:767.98px){
  .service-card,.mv-card,.stat-card,.instagram-media-card{box-shadow:0 18px 48px rgba(0,0,0,.24)!important;}
  .reveal,.reveal.show{opacity:1!important;filter:none!important;transform:none!important;}
}
@media (prefers-reduced-motion:reduce){
  .hero-slide,.service-card,.mv-card,.stat-card,.reveal,.reveal.show{animation:none!important;transition:none!important;}
}


/* ===== V29 Clean Shadow Separation ===== */
.section,
.section-light,
.section-dark,
.section-deep {
  box-shadow:
    inset 0 40px 60px rgba(0,0,0,.35),
    inset 0 -40px 60px rgba(0,0,0,.35) !important;
}



/* ===== V30 Section-by-section Luxury Animation ===== */

/* Each section enters separately */
.section-animate {
  opacity: 0;
  transform: translateY(72px);
  filter: blur(10px);
  transition:
    opacity .72s cubic-bezier(.16,1,.3,1),
    transform .72s cubic-bezier(.16,1,.3,1),
    filter .72s cubic-bezier(.16,1,.3,1);
}

.section-animate.section-in {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

/* Titles have their own premium movement */
.title-animate {
  opacity: 0;
  transform: translateX(-46px);
  filter: blur(8px);
  transition:
    opacity .62s cubic-bezier(.16,1,.3,1),
    transform .62s cubic-bezier(.16,1,.3,1),
    filter .62s cubic-bezier(.16,1,.3,1);
}

.section-in .title-animate {
  opacity: 1;
  transform: translateX(0);
  filter: blur(0);
}

/* Gold line sweep under titles */
.section-heading .section-title,
.section-heading h2 {
  position: relative;
  display: inline-block;
}

.section-heading .section-title::after,
.section-heading h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -14px;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--gold-gradient);
  transition: width .7s cubic-bezier(.16,1,.3,1) .22s;
}

.section-in .section-heading .section-title::after,
.section-in .section-heading h2::after {
  width: 76px;
}

/* Content inside section follows after the title */
.section-animate .service-card,
.section-animate .mv-card,
.section-animate .stat-card,
.section-animate .logo-tile,
.section-animate .instagram-media-card,
.section-animate .contact-card,
.section-animate .about-copy,
.section-animate .lead {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity .55s cubic-bezier(.16,1,.3,1),
    transform .55s cubic-bezier(.16,1,.3,1);
}

.section-in .service-card,
.section-in .mv-card,
.section-in .stat-card,
.section-in .logo-tile,
.section-in .instagram-media-card,
.section-in .contact-card,
.section-in .about-copy,
.section-in .lead {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger effect */
.section-in .service-card:nth-child(1),
.section-in .mv-card:nth-child(1),
.section-in .stat-card:nth-child(1),
.section-in .logo-tile:nth-child(1) { transition-delay: .08s; }

.section-in .service-card:nth-child(2),
.section-in .mv-card:nth-child(2),
.section-in .stat-card:nth-child(2),
.section-in .logo-tile:nth-child(2) { transition-delay: .14s; }

.section-in .service-card:nth-child(3),
.section-in .mv-card:nth-child(3),
.section-in .stat-card:nth-child(3),
.section-in .logo-tile:nth-child(3) { transition-delay: .20s; }

.section-in .logo-tile:nth-child(4) { transition-delay: .26s; }
.section-in .logo-tile:nth-child(5) { transition-delay: .32s; }
.section-in .logo-tile:nth-child(n+6) { transition-delay: .36s; }

/* Mobile: lighter and safer */
@media (max-width: 767.98px) {
  .section-animate {
    opacity: 1;
    transform: none;
    filter: none;
  }

  .title-animate {
    opacity: 0;
    transform: translateY(22px);
    filter: blur(5px);
  }

  .section-in .title-animate {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }

  .section-animate .service-card,
  .section-animate .mv-card,
  .section-animate .stat-card,
  .section-animate .logo-tile,
  .section-animate .instagram-media-card,
  .section-animate .contact-card,
  .section-animate .about-copy,
  .section-animate .lead {
    opacity: 1;
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .section-animate,
  .title-animate,
  .section-animate * {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    transition: none !important;
  }
}


/* ===== V31 Logo Premium Animation ===== */

/* base floating animation */
.logo-tile {
  animation: logoFloat 4.8s ease-in-out infinite;
}

/* stagger for natural feeling */
.logo-tile:nth-child(2n){ animation-delay: .6s; }
.logo-tile:nth-child(3n){ animation-delay: 1.1s; }
.logo-tile:nth-child(4n){ animation-delay: 1.6s; }

/* floating movement */
@keyframes logoFloat {
  0%,100% { transform: translateY(0) scale(1.22); }
  50% { transform: translateY(-6px) scale(1.22); }
}

/* hover premium effect */
.logo-tile:hover {
  transform: translateY(-10px) scale(1.03) !important;
}

.logo-tile:hover img {
  transform: scale(1.45) !important;
  filter: grayscale(0%) brightness(1.05) contrast(1.05) !important;
}

/* soft gold glow pulse */
.logo-tile::after {
  content:"";
  position:absolute;
  inset:0;
  background: radial-gradient(circle, rgba(213,166,63,.25), transparent 70%);
  opacity:0;
  transition:.4s;
}

.logo-tile:hover::after {
  opacity:.6;
}

/* mobile lighter */
@media(max-width:767px){
  .logo-tile{
    animation: logoFloatMobile 5s ease-in-out infinite;
  }

  @keyframes logoFloatMobile{
    0%,100%{ transform: translateY(0) scale(1.18); }
    50%{ transform: translateY(-3px) scale(1.18); }
  }
}


/* ===== V32 Agency-Level Premium Interactions ===== */

/* Magnetic elements preparation */
.magnetic-ready {
  transform-style: preserve-3d;
  transition: transform .22s cubic-bezier(.16,1,.3,1), box-shadow .22s ease !important;
}

/* Luxury button micro interaction */
.btn,
.nav-link,
.back-to-top,
.floating-whatsapp {
  transition: transform .22s cubic-bezier(.16,1,.3,1), box-shadow .22s ease, opacity .22s ease !important;
}

.btn:hover,
.back-to-top:hover,
.floating-whatsapp:hover {
  transform: translateY(-3px) scale(1.02) !important;
}

.btn:active,
.back-to-top:active,
.floating-whatsapp:active {
  transform: translateY(0) scale(.97) !important;
}

/* Gold shimmer on primary buttons */
.btn-brand {
  position: relative;
  overflow: hidden;
}

.btn-brand::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0%, rgba(255,255,255,.34) 42%, transparent 64%);
  transform: translateX(-130%);
  transition: transform .7s cubic-bezier(.16,1,.3,1);
}

.btn-brand:hover::after {
  transform: translateX(130%);
}

/* Subtle cinematic parallax layer */
.hero-section::after,
.section::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at var(--mx, 50%) var(--my, 35%), rgba(213,166,63,.055), transparent 24%),
    radial-gradient(circle at 20% 80%, rgba(255,255,255,.025), transparent 20%);
  opacity: .7;
  pointer-events: none;
  z-index: 0;
  transition: background-position .2s ease;
}

.hero-section > *,
.section > * {
  position: relative;
  z-index: 1;
}

/* 3D tilt visual depth */
.service-card,
.mv-card,
.stat-card,
.instagram-media-card,
.logo-tile {
  transform-style: preserve-3d;
  perspective: 900px;
}

.service-card:hover,
.mv-card:hover,
.stat-card:hover,
.instagram-media-card:hover {
  box-shadow:
    0 38px 110px rgba(0,0,0,.42),
    0 0 48px rgba(213,166,63,.10) !important;
}

/* Logo magnetic highlight */
.logo-tile:hover::before {
  opacity: 1 !important;
  transform: scale(1.08) !important;
}

/* Premium nav underline motion */
.nav-link::after {
  content: "";
  position: absolute;
  left: .8rem;
  right: .8rem;
  bottom: .35rem;
  height: 1px;
  background: var(--gold-gradient);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .28s cubic-bezier(.16,1,.3,1);
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* Smooth image/media breathing */
.instagram-media-card,
.service-card {
  animation-duration: 6.4s !important;
}

/* Mobile safe: reduce motion heaviness */
@media (max-width: 767.98px) {
  .magnetic-ready,
  .service-card,
  .mv-card,
  .stat-card,
  .instagram-media-card,
  .logo-tile {
    transform: none !important;
  }

  .hero-section::after,
  .section::after {
    opacity: .35;
  }

  .btn:hover,
  .back-to-top:hover,
  .floating-whatsapp:hover {
    transform: none !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .magnetic-ready,
  .btn,
  .nav-link,
  .service-card,
  .mv-card,
  .stat-card,
  .instagram-media-card,
  .logo-tile {
    transition: none !important;
    animation: none !important;
  }
}


/* ===== V33 CLEAN LUXURY (REFINED) ===== */

/* REMOVE constant floating (only on hover now) */
.logo-tile,
.service-card,
.mv-card,
.stat-card,
.instagram-media-card {
  animation: none !important;
}

/* KEEP subtle hover only */
.logo-tile:hover img {
  transform: scale(1.35) !important;
}

/* reduce magnetic strength */
.magnetic-ready {
  transition: transform .18s ease !important;
}

/* smoother section animation (less aggressive) */
.section-animate {
  transform: translateY(40px) !important;
  filter: blur(6px) !important;
}

.section-animate.section-in {
  transform: translateY(0) !important;
  filter: blur(0) !important;
}

/* titles more elegant */
.title-animate {
  transform: translateY(20px) !important;
  filter: blur(4px) !important;
}

.section-in .title-animate {
  transform: translateY(0) !important;
  filter: blur(0) !important;
}

/* reduce parallax strength */
.hero-section::after,
.section::after {
  opacity: .35 !important;
}

/* buttons more minimal */
.btn:hover {
  transform: translateY(-2px) scale(1.01) !important;
}

/* remove heavy glow */
.service-card:hover,
.mv-card:hover,
.stat-card:hover,
.instagram-media-card:hover {
  box-shadow: 0 22px 60px rgba(0,0,0,.28) !important;
}

/* cursor calmer */
.luxury-cursor {
  animation: none !important;
}

/* keep luxury but quieter */


/* ===== V34 Instagram Heading + Cinematic Loader ===== */

/* Make small titles/tags sit above main titles */
.section-heading {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  gap: .65rem !important;
}

.section-heading.text-center,
.section-heading.mx-auto,
.instagram-live-section .section-heading,
.instagram-carousel-section .section-heading {
  align-items: center !important;
  text-align: center !important;
}

.section-heading .section-tag {
  display: block !important;
  width: fit-content !important;
  margin-bottom: .25rem !important;
}

.section-heading .section-title,
.section-heading h2 {
  display: block !important;
  margin-top: 0 !important;
}

/* Cinematic loading screen */
.cinematic-loader {
  background:
    radial-gradient(circle at 50% 42%, rgba(213,166,63,.16), transparent 24%),
    radial-gradient(circle at 50% 50%, rgba(255,255,255,.045), transparent 34%),
    linear-gradient(145deg, #0c0e12 0%, #17191e 50%, #0f1115 100%) !important;
  overflow: hidden;
}

.cinematic-loader::before {
  content: "";
  position: absolute;
  inset: -35%;
  background:
    conic-gradient(from 120deg, transparent 0deg, rgba(213,166,63,.16) 55deg, transparent 115deg, transparent 360deg);
  animation: loaderCinematicSweep 2.4s linear infinite;
  opacity: .8;
}

.cinematic-loader::after {
  content: "";
  position: absolute;
  left: 12%;
  right: 12%;
  top: 50%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(244,210,122,.42), transparent);
  transform: scaleX(.25);
  animation: loaderLightLine 1.8s ease-in-out infinite;
}

.loader-orbit {
  position: absolute;
  width: min(360px, 78vw);
  height: min(360px, 78vw);
  border-radius: 50%;
  border: 1px solid rgba(213,166,63,.16);
  box-shadow:
    0 0 55px rgba(213,166,63,.08),
    inset 0 0 35px rgba(213,166,63,.045);
  animation: loaderOrbitPulse 1.9s ease-in-out infinite;
}

.loader-orbit::before {
  content: "";
  position: absolute;
  width: 9px;
  height: 9px;
  right: 16%;
  top: 12%;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 22px rgba(213,166,63,.9);
}

.cinematic-loader .loader-inner {
  position: relative;
  z-index: 2;
  transform: translateY(6px);
  animation: loaderLogoRise .9s cubic-bezier(.16,1,.3,1) both;
}

.cinematic-loader .loader-inner img {
  width: min(290px, 68vw) !important;
  filter: drop-shadow(0 24px 55px rgba(0,0,0,.45));
}

.loader-copy {
  margin: .4rem 0 1.1rem;
  font-size: .78rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  opacity: .92;
}

.cinematic-loader .loader-line {
  height: 2px !important;
  background: rgba(255,255,255,.08) !important;
  border-radius: 999px;
  box-shadow: 0 0 25px rgba(213,166,63,.10);
}

.cinematic-loader .loader-line span {
  background: var(--gold-gradient) !important;
  animation: loaderSweepFast 1.05s cubic-bezier(.16,1,.3,1) infinite !important;
}

@keyframes loaderCinematicSweep {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes loaderLightLine {
  0%, 100% { transform: scaleX(.18); opacity: .25; }
  50% { transform: scaleX(1); opacity: .9; }
}

@keyframes loaderOrbitPulse {
  0%, 100% { transform: scale(.96); opacity: .55; }
  50% { transform: scale(1.03); opacity: 1; }
}

@keyframes loaderLogoRise {
  from {
    opacity: 0;
    transform: translateY(22px) scale(.98);
    filter: blur(7px);
  }
  to {
    opacity: 1;
    transform: translateY(6px) scale(1);
    filter: blur(0);
  }
}

@keyframes loaderSweepFast {
  0% { transform: translateX(-105%) scaleX(.35); opacity: .5; }
  55% { opacity: 1; }
  100% { transform: translateX(105%) scaleX(.75); opacity: .6; }
}

@media (max-width: 767.98px) {
  .loader-copy {
    font-size: .62rem;
    letter-spacing: .18em;
    padding: 0 18px;
  }

  .section-heading {
    align-items: center !important;
    text-align: center !important;
  }
}


/* ===== V35 Performance Fix: remove heavy mouse effects ===== */

/* Remove custom cursor completely */
.luxury-cursor,
.luxury-cursor-dot {
  display: none !important;
}

/* Keep normal cursor */
body,
body.cursor-ready,
body.cursor-ready a,
body.cursor-ready button,
body.cursor-ready .logo-tile,
body.cursor-ready .swiper-slide,
body.cursor-ready input,
body.cursor-ready textarea {
  cursor: auto !important;
}

/* Disable mouse-follow parallax layer intensity */
.hero-section::after,
.section::after {
  opacity: .18 !important;
}

/* Remove magnetic JS visual heaviness */
.magnetic-ready,
.service-card,
.mv-card,
.stat-card,
.instagram-media-card,
.logo-tile,
.btn-brand,
.btn-outline-light {
  transform: none !important;
}

/* Keep only clean hover transitions */
.service-card:hover,
.mv-card:hover,
.stat-card:hover,
.instagram-media-card:hover {
  transform: translateY(-4px) !important;
}

.logo-tile:hover img {
  transform: scale(1.32) !important;
}

/* Reduce transition cost */
.service-card,
.mv-card,
.stat-card,
.instagram-media-card,
.logo-tile,
.btn {
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease !important;
  will-change: auto !important;
}

/* Stop background mouse-position dependency */
.hero-section,
.section {
  --mx: 50% !important;
  --my: 35% !important;
}


/* ===== V37 Force Full Dark Theme Fix ===== */
body,
main,
.section,
.section-light,
.section-dark,
.section-deep,
.instagram-live-section,
.instagram-carousel-section,
#about,
#services,
#projects,
#partners,
#instagram,
#contact {
  background-color: #202226 !important;
  color: #f4f1ea !important;
}

.section-light,
.section-light .container,
.section-light .row,
.section-light .col,
.section-light .col-lg-6,
.section-light .col-md-6 {
  background: transparent !important;
}

.card,
.service-card,
.mv-card,
.stat-card,
.contact-card,
.instagram-luxe-shell,
.instagram-media-card,
.form-control,
.form-select,
.logo-tile,
.logo-tile-light {
  background:
    linear-gradient(145deg, rgba(255,255,255,.055), rgba(255,255,255,.018)) !important;
  color: #f4f1ea !important;
  border-color: rgba(213,166,63,.14) !important;
}

.logo-tile,
.logo-tile-light {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
}

.section-title,
.section-title.text-dark,
.text-dark,
h1, h2, h3, h4, h5, h6 {
  color: #fffaf0 !important;
}

p,
.lead,
.about-copy,
.service-card p,
.mv-card p,
.contact-card p,
.contact-item,
.contact-item span {
  color: rgba(244,241,234,.78) !important;
}

/* keep separation shadow only, no gold lines */
.section::before,
.section::after {
  border: none !important;
}

.section::before {
  display: none !important;
}

.section {
  box-shadow:
    inset 0 34px 54px rgba(0,0,0,.26),
    inset 0 -34px 54px rgba(0,0,0,.26) !important;
}


/* ===== V38 Fixed Navbar + Mobile Fix ===== */

/* sticky nav */
#mainNav{
  position: fixed !important;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  backdrop-filter: blur(12px);
  background: rgba(15,17,21,0.75) !important;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

/* push content down */
body{
  padding-top: 90px;
}

/* mobile fixes */
@media(max-width:768px){

  body{
    padding-top: 80px;
  }

  .section{
    padding-left:18px !important;
    padding-right:18px !important;
  }

  .container{
    padding-left:18px !important;
    padding-right:18px !important;
  }

  h1,h2{
    word-break: break-word;
  }

  .hero-content{
    padding:0 18px !important;
  }

  .logo-grid{
    gap:10px !important;
  }

  .logo-tile{
    transform:none !important;
  }

  .btn{
    width:100%;
  }
}


/* ===== V39 Production Polish ===== */

/* hard overflow protection */
html, body {
  max-width: 100%;
  overflow-x: hidden !important;
}

/* fixed nav production */
#mainNav {
  position: fixed !important;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  will-change: background, padding;
}

/* avoid body top gap from previous versions */
body {
  padding-top: 0 !important;
}

/* hero should sit under nav naturally */
.hero-section {
  margin-top: 0 !important;
}

/* safe spacing for all sections */
.section {
  scroll-margin-top: 110px;
}

/* mobile production stability */
@media (max-width: 767.98px) {
  .container,
  .container-fluid {
    padding-left: 18px !important;
    padding-right: 18px !important;
  }

  .hero-content {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

  .navbar-brand img {
    max-width: 190px !important;
  }

  .navbar-collapse {
    background: rgba(15,17,21,.96);
    border: 1px solid rgba(213,166,63,.10);
    border-radius: 18px;
    padding: 1rem;
    margin-top: .75rem;
    box-shadow: 0 18px 48px rgba(0,0,0,.32);
  }

  .nav-link {
    padding: .75rem .4rem !important;
  }

  .section-title,
  h1, h2 {
    word-break: normal !important;
    overflow-wrap: anywhere !important;
  }

  .hero-actions .btn,
  .contact-form .btn,
  form .btn {
    width: 100% !important;
  }

  .logo-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }

  .floating-whatsapp {
    right: 14px !important;
    bottom: 78px !important;
  }

  .back-to-top {
    right: 14px !important;
    bottom: 18px !important;
  }
}

/* improve image rendering */
img {
  height: auto;
}

/* keep animations smooth without overworking browser */
.reveal,
.section-animate,
.title-animate {
  will-change: opacity, transform;
}

/* reduce motion support */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}


/* ===== V40 Banner + Loader Fix ===== */
.hero-slide {
  background-image: linear-gradient(rgba(12,14,18,.62), rgba(12,14,18,.76)), url('../images/banner.png') !important;
}

/* remove the cinematic horizontal line that was crossing the logo */
.cinematic-loader::after {
  display: none !important;
  content: none !important;
}

.cinematic-loader .loader-line {
  position: relative !important;
  margin: 1.15rem auto 0 !important;
  transform: none !important;
  z-index: 3 !important;
}

.cinematic-loader .loader-inner img {
  position: relative !important;
  z-index: 4 !important;
}


/* ===== V41 FINAL FIXES ===== */

/* Banner image path fixed and visible */
.hero-slide,
.carousel-item.active .hero-slide {
  background-image: linear-gradient(rgba(12,14,18,.62), rgba(12,14,18,.76)), url("../images/banner.png") !important;
  background-position: center center !important;
  background-size: cover !important;
  background-repeat: no-repeat !important;
}

/* When this CSS is used from root style.css fallback */
body > .hero-section .hero-slide {
  background-image: linear-gradient(rgba(12,14,18,.62), rgba(12,14,18,.76)), url("assets/images/banner.png") !important;
}

/* Remove loading line completely */
.loader-line,
.loader-line span,
.cinematic-loader::after {
  display: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
  content: none !important;
  animation: none !important;
}

/* Brands & Partners: no box, no shadow, no tile background */
#partners .logo-grid-partners,
#partners .logo-tile,
#partners .logo-tile-light,
.logo-grid-partners .logo-tile,
.logo-grid-partners .logo-tile-light {
  background: transparent !important;
  background-color: transparent !important;
  box-shadow: none !important;
  border: none !important;
  outline: none !important;
  padding: 0 !important;
}

#partners .logo-tile::before,
#partners .logo-tile::after,
.logo-grid-partners .logo-tile::before,
.logo-grid-partners .logo-tile::after {
  display: none !important;
  opacity: 0 !important;
  content: none !important;
  background: none !important;
}

#partners .logo-tile:hover,
.logo-grid-partners .logo-tile:hover {
  box-shadow: none !important;
  background: transparent !important;
  transform: translateY(-4px) !important;
}

#partners .logo-tile img,
.logo-grid-partners .logo-tile img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  filter: grayscale(100%) contrast(1.08) brightness(.92) !important;
  opacity: .95 !important;
  transform: scale(1.95) !important;
}

#partners .logo-tile:hover img,
.logo-grid-partners .logo-tile:hover img {
  filter: grayscale(0%) contrast(1.03) brightness(1) !important;
  opacity: 1 !important;
  transform: scale(1.28) !important;
}


/* ===== V43: REAL BANNER IMAGE + NO LOGO BOXES FINAL ===== */

/* Hero image is now a real <img>, not only CSS background */
.hero-slide {
  position: relative !important;
  overflow: hidden !important;
  background: #111318 !important;
  background-image: none !important;
}

.hero-bg-img {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center center !important;
  z-index: 0 !important;
  transform: scale(1.04);
  animation: heroRealImgZoom 10s ease-in-out infinite alternate;
}

.hero-slide::before {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  background: linear-gradient(rgba(12,14,18,.62), rgba(12,14,18,.76)) !important;
  z-index: 1 !important;
  pointer-events: none !important;
}

.hero-slide .hero-content {
  position: relative !important;
  z-index: 2 !important;
}

@keyframes heroRealImgZoom {
  from { transform: scale(1.02); }
  to { transform: scale(1.08); }
}

/* Remove any old background zoom animation conflicts */
.carousel-item.active .hero-slide {
  animation: none !important;
  transform: none !important;
}

/* Remove loading line completely */
.loader-line,
.loader-line span,
.cinematic-loader::after {
  display: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
  content: none !important;
  width: 0 !important;
  height: 0 !important;
  animation: none !important;
}

/* Brands & Partners: NO boxes, NO shadow, bigger logos */
#partners .logo-grid,
#partners .logo-grid-partners,
#partners .logo-tile,
#partners .logo-tile-light,
.logo-grid-partners,
.logo-grid-partners .logo-tile,
.logo-grid-partners .logo-tile-light {
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  box-shadow: none !important;
  border: none !important;
  outline: none !important;
}

#partners .logo-tile,
#partners .logo-tile-light,
.logo-grid-partners .logo-tile,
.logo-grid-partners .logo-tile-light {
  padding: 0 !important;
  border-radius: 0 !important;
  min-height: 130px !important;
  aspect-ratio: 1.6 / 1 !important;
  overflow: visible !important;
}

#partners .logo-tile::before,
#partners .logo-tile::after,
#partners .logo-tile-light::before,
#partners .logo-tile-light::after,
.logo-grid-partners .logo-tile::before,
.logo-grid-partners .logo-tile::after,
.logo-grid-partners .logo-tile-light::before,
.logo-grid-partners .logo-tile-light::after {
  display: none !important;
  opacity: 0 !important;
  content: none !important;
  background: none !important;
  box-shadow: none !important;
}

#partners .logo-tile img,
#partners .logo-tile-light img,
.logo-grid-partners .logo-tile img,
.logo-grid-partners .logo-tile-light img {
  width: 100% !important;
  height: 100% !important;
  max-width: 205px !important;
  max-height: 115px !important;
  object-fit: contain !important;
  transform: scale(1.52) !important;
  filter: grayscale(100%) contrast(1.08) brightness(.96) !important;
  opacity: .98 !important;
  transition: transform .35s ease, filter .35s ease !important;
}

#partners .logo-tile:hover,
.logo-grid-partners .logo-tile:hover {
  transform: none !important;
  box-shadow: none !important;
  background: transparent !important;
}

#partners .logo-tile:hover img,
#partners .logo-tile-light:hover img,
.logo-grid-partners .logo-tile:hover img,
.logo-grid-partners .logo-tile-light:hover img {
  transform: scale(1.90) !important;
  filter: grayscale(0%) contrast(1.03) brightness(1.05) !important;
}

/* Clients also no boxes */
#projects .logo-tile,
#projects .logo-tile-light {
  background: transparent !important;
  background-image: none !important;
  box-shadow: none !important;
  border: none !important;
}

/* Mobile */
@media (max-width: 767.98px) {
  #partners .logo-grid,
  #partners .logo-grid-partners {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 18px 12px !important;
  }

  #partners .logo-tile,
  #partners .logo-tile-light {
    min-height: 90px !important;
    aspect-ratio: 1.15 / 1 !important;
  }

  #partners .logo-tile img,
  #partners .logo-tile-light img {
    max-width: 122px !important;
    max-height: 72px !important;
    transform: scale(1.90) !important;
  }

  #partners .logo-tile:hover img,
  #partners .logo-tile-light:hover img {
    transform: scale(1.95) !important;
  }
}


/* ===== V44 Instagram clean live widget + visible arrows ===== */
#instagram .section-heading {
  align-items: center !important;
  text-align: center !important;
}

.instagram-live-widget-shell {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
  padding: 18px;
  border-radius: 32px;
  background: linear-gradient(145deg, rgba(255,255,255,.055), rgba(255,255,255,.018)) !important;
  border: 1px solid rgba(213,166,63,.14) !important;
  box-shadow: 0 26px 70px rgba(0,0,0,.24) !important;
}

.instagram-widget-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: .25rem .3rem 1rem;
}

.instagram-widget-stage {
  position: relative;
  min-height: 540px;
  border-radius: 26px;
  overflow: hidden;
  background:
    radial-gradient(circle at top, rgba(213,166,63,.10), transparent 36%),
    linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.018));
}

.instagram-live-iframe {
  width: 100%;
  min-height: 540px;
  border: 0;
  display: block;
  background: transparent;
}

.instagram-widget-placeholder {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 2rem;
  background:
    radial-gradient(circle at center, rgba(213,166,63,.10), transparent 34%),
    linear-gradient(180deg, rgba(15,17,21,.96), rgba(22,24,29,.96));
  z-index: 2;
}

.instagram-widget-placeholder h3 {
  color: #fffaf0 !important;
  font-weight: 800;
  margin: 1rem 0 .5rem;
}

.instagram-widget-placeholder p {
  color: rgba(244,241,234,.76) !important;
  max-width: 520px;
  margin: 0 auto 1.25rem;
}

.clean-instagram-controls {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 1rem !important;
  margin-top: 1.1rem !important;
}

.instagram-nav-btn,
.instagram-nav-prev,
.instagram-nav-next,
.instagram-prev,
.instagram-next {
  width: 54px !important;
  height: 54px !important;
  min-width: 54px !important;
  border: 0 !important;
  border-radius: 999px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: var(--gold-gradient, linear-gradient(135deg, #8f6b24, #d5a63f, #f4d27a)) !important;
  color: #111 !important;
  opacity: 1 !important;
  visibility: visible !important;
  box-shadow: 0 16px 38px rgba(213,166,63,.26) !important;
  position: static !important;
  z-index: 5 !important;
  cursor: pointer !important;
}

.instagram-nav-btn i,
.instagram-prev i,
.instagram-next i {
  font-size: 1.25rem !important;
  color: #111 !important;
}

.instagram-nav-btn:hover,
.instagram-prev:hover,
.instagram-next:hover {
  transform: translateY(-2px) scale(1.04) !important;
}

.instagram-pagination {
  position: static !important;
  width: auto !important;
  display: flex !important;
  align-items: center !important;
  gap: .45rem !important;
}

.instagram-pagination .swiper-pagination-bullet {
  width: 28px !important;
  height: 3px !important;
  border-radius: 999px !important;
  background: rgba(244,210,122,.35) !important;
  opacity: 1 !important;
  transform: skewX(-22deg);
}

.instagram-pagination .swiper-pagination-bullet-active {
  width: 48px !important;
  background: var(--gold-gradient, linear-gradient(135deg,#d5a63f,#f4d27a)) !important;
}

/* If a real widget is connected, hide placeholder */
.instagram-live-iframe[src]:not([src="about:blank"]) + .instagram-widget-placeholder {
  display: none !important;
}

@media (max-width: 767.98px) {
  .instagram-live-widget-shell {
    padding: 12px;
    border-radius: 24px;
  }

  .instagram-widget-topbar {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .instagram-widget-stage,
  .instagram-live-iframe {
    min-height: 430px;
  }

  .instagram-nav-btn,
  .instagram-nav-prev,
  .instagram-nav-next {
    width: 46px !important;
    height: 46px !important;
    min-width: 46px !important;
  }
}


/* ===== V45 Clean Final Instagram Live Feed ===== */
.instagram-clean-final {
  background:
    linear-gradient(180deg, rgba(255,255,255,.018), rgba(0,0,0,.05)),
    #202226 !important;
}

.instagram-clean-final .section-heading {
  align-items: center !important;
  text-align: center !important;
}

.instagram-clean-shell {
  max-width: 1180px;
  margin: 0 auto;
  padding: 18px;
  border-radius: 32px;
  background: linear-gradient(145deg, rgba(255,255,255,.055), rgba(255,255,255,.018)) !important;
  border: 1px solid rgba(213,166,63,.12) !important;
  box-shadow: 0 26px 70px rgba(0,0,0,.24) !important;
}

.instagram-widget-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .25rem .35rem 1rem;
}

.instagram-widget-frame-wrap {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  background:
    radial-gradient(circle at top, rgba(213,166,63,.08), transparent 36%),
    #111318;
  min-height: 760px;
}

.instagram-sociablekit-frame {
  display: block;
  width: 100% !important;
  min-height: 760px;
  border: 0 !important;
  background: transparent;
}

/* Remove old Instagram carousel controls/placeholder completely */
.instagram-media-swiper,
.instagram-controls,
.clean-instagram-controls,
.instagram-nav,
.instagram-nav-btn,
.instagram-prev,
.instagram-next,
.instagram-pagination,
.instagram-widget-placeholder {
  display: none !important;
}

/* Make SociableKIT visually integrated */
#instagram iframe {
  border: 0 !important;
  border-radius: 22px;
}

/* Mobile */
@media (max-width: 767.98px) {
  .instagram-clean-shell {
    padding: 12px;
    border-radius: 24px;
  }

  .instagram-widget-topbar {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-bottom: .85rem;
  }

  .instagram-widget-frame-wrap,
  .instagram-sociablekit-frame {
    min-height: 680px;
  }
}

@media (max-width: 420px) {
  .instagram-widget-frame-wrap,
  .instagram-sociablekit-frame {
    min-height: 620px;
  }
}


/* ===== V46 Instagram Luxury Final ===== */
.instagram-luxury-final {
  background:
    radial-gradient(circle at top right, rgba(213,166,63,.08), transparent 26%),
    linear-gradient(180deg, rgba(255,255,255,.014), rgba(0,0,0,.055)),
    #202226 !important;
}

.instagram-luxury-heading {
  align-items: center !important;
  text-align: center !important;
}

.instagram-luxury-heading .section-text {
  max-width: 620px;
  margin: .35rem auto 0;
  color: rgba(244,241,234,.72) !important;
}

.instagram-luxury-shell {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
  padding: 18px;
  border-radius: 34px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.065), rgba(255,255,255,.018)) !important;
  border: 1px solid rgba(213,166,63,.16) !important;
  box-shadow:
    0 34px 90px rgba(0,0,0,.34),
    inset 0 1px 0 rgba(255,255,255,.06) !important;
  overflow: hidden;
}

.instagram-luxury-glow {
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(213,166,63,.18), transparent 66%);
  right: -120px;
  top: -140px;
  pointer-events: none;
}

.instagram-luxury-topbar {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: .3rem .35rem 1.15rem;
}

.instagram-luxury-profile {
  display: flex;
  align-items: center;
  gap: .85rem;
}

.instagram-luxury-profile .instagram-icon-ring {
  width: 48px;
  height: 48px;
  font-size: 1.15rem;
  flex: 0 0 48px;
  background: var(--gold-gradient, linear-gradient(135deg, #8f6b24, #d5a63f, #f4d27a)) !important;
}

.instagram-luxury-profile strong {
  display: block;
  color: #fffaf0;
  font-size: 1rem;
  line-height: 1.1;
}

.instagram-luxury-profile small {
  display: block;
  color: rgba(244,241,234,.58);
  margin-top: .2rem;
  font-size: .78rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.instagram-luxury-link {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .8rem 1rem;
  border-radius: 999px;
  color: #151515 !important;
  background: var(--gold-gradient, linear-gradient(135deg, #8f6b24, #d5a63f, #f4d27a)) !important;
  font-weight: 800;
  box-shadow: 0 16px 34px rgba(213,166,63,.20);
  transition: transform .25s ease, box-shadow .25s ease;
}

.instagram-luxury-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 42px rgba(213,166,63,.28);
}

.instagram-widget-luxury-frame {
  position: relative;
  z-index: 2;
  height: 780px;
  border-radius: 26px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 0%, rgba(213,166,63,.06), transparent 32%),
    #111318;
  border: 1px solid rgba(255,255,255,.05);
}

.instagram-widget-luxury-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: 26px;
  box-shadow:
    inset 0 0 0 1px rgba(213,166,63,.10),
    inset 0 24px 55px rgba(0,0,0,.16);
  z-index: 3;
}

.instagram-sociablekit-frame {
  display: block;
  width: 100% !important;
  height: 100% !important;
  min-height: 780px !important;
  border: 0 !important;
  background: transparent !important;
}

/* remove old controls/widgets conflicts */
.instagram-media-swiper,
.instagram-controls,
.clean-instagram-controls,
.instagram-nav,
.instagram-nav-btn,
.instagram-prev,
.instagram-next,
.instagram-pagination,
.instagram-widget-placeholder {
  display: none !important;
}

/* Mobile */
@media (max-width: 767.98px) {
  .instagram-luxury-shell {
    padding: 12px;
    border-radius: 26px;
  }

  .instagram-luxury-topbar {
    flex-direction: column;
    align-items: flex-start;
    gap: .9rem;
  }

  .instagram-luxury-link {
    width: 100%;
    justify-content: center;
  }

  .instagram-widget-luxury-frame {
    height: 690px;
    border-radius: 20px;
  }

  .instagram-sociablekit-frame {
    min-height: 690px !important;
  }
}

@media (max-width: 420px) {
  .instagram-widget-luxury-frame {
    height: 640px;
  }

  .instagram-sociablekit-frame {
    min-height: 640px !important;
  }
}


/* ===== V47 Custom Instagram Ultra Luxury Carousel ===== */
.instagram-custom-section {
  background:
    radial-gradient(circle at top right, rgba(213,166,63,.08), transparent 26%),
    linear-gradient(180deg, rgba(255,255,255,.014), rgba(0,0,0,.055)),
    #202226 !important;
}

.instagram-custom-heading {
  align-items: center !important;
  text-align: center !important;
}

.instagram-custom-heading .section-text {
  max-width: 620px;
  margin: .35rem auto 0;
  color: rgba(244,241,234,.72) !important;
}

.instagram-custom-shell {
  max-width: 1180px;
  margin: 0 auto;
  padding: 18px;
  border-radius: 34px;
  background: linear-gradient(145deg, rgba(255,255,255,.065), rgba(255,255,255,.018)) !important;
  border: 1px solid rgba(213,166,63,.16) !important;
  box-shadow: 0 34px 90px rgba(0,0,0,.34), inset 0 1px 0 rgba(255,255,255,.06) !important;
  overflow: hidden;
}

.instagram-custom-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: .3rem .35rem 1.15rem;
}

.instagram-custom-swiper {
  position: relative;
  padding: 0 8px 54px;
  overflow: hidden;
}

.instagram-custom-card {
  position: relative;
  display: block;
  height: 430px;
  border-radius: 26px;
  overflow: hidden;
  background: #111318;
  box-shadow: 0 24px 60px rgba(0,0,0,.26);
  border: 1px solid rgba(255,255,255,.055);
}

.instagram-custom-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 46%, rgba(0,0,0,.38));
  pointer-events: none;
}

.instagram-custom-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .65s cubic-bezier(.16,1,.3,1), filter .45s ease;
  filter: saturate(.92) contrast(1.04);
}

.instagram-custom-card:hover img {
  transform: scale(1.07);
  filter: saturate(1.05) contrast(1.06);
}

.instagram-custom-card span {
  position: absolute;
  right: 18px;
  top: 18px;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: var(--gold-gradient, linear-gradient(135deg,#8f6b24,#d5a63f,#f4d27a));
  color: #111;
  z-index: 3;
  box-shadow: 0 14px 28px rgba(213,166,63,.22);
}

.instagram-custom-prev,
.instagram-custom-next {
  position: absolute;
  top: 43%;
  transform: translateY(-50%);
  width: 54px;
  height: 54px;
  border: 0;
  border-radius: 999px;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-gradient, linear-gradient(135deg,#8f6b24,#d5a63f,#f4d27a));
  color: #111;
  box-shadow: 0 16px 38px rgba(213,166,63,.26);
  transition: transform .25s ease, box-shadow .25s ease;
}

.instagram-custom-prev { left: 0; }
.instagram-custom-next { right: 0; }

.instagram-custom-prev:hover,
.instagram-custom-next:hover {
  transform: translateY(-50%) scale(1.05);
  box-shadow: 0 20px 44px rgba(213,166,63,.34);
}

.instagram-custom-pagination {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 8px !important;
  display: flex;
  justify-content: center;
  gap: .45rem;
}

.instagram-custom-pagination .swiper-pagination-bullet {
  width: 28px;
  height: 3px;
  border-radius: 999px;
  background: rgba(244,210,122,.35);
  opacity: 1;
  transform: skewX(-22deg);
}

.instagram-custom-pagination .swiper-pagination-bullet-active {
  width: 48px;
  background: var(--gold-gradient, linear-gradient(135deg,#d5a63f,#f4d27a));
}

/* remove old widget/instagram conflicts */
.instagram-sociablekit-frame,
.instagram-widget-luxury-frame,
.instagram-clean-shell,
.instagram-live-widget-shell,
.instagram-media-swiper,
.instagram-controls,
.instagram-prev,
.instagram-next,
.instagram-pagination:not(.instagram-custom-pagination) {
  display: none !important;
}

@media (max-width: 991.98px) {
  .instagram-custom-card {
    height: 390px;
  }
}

@media (max-width: 767.98px) {
  .instagram-custom-shell {
    padding: 12px;
    border-radius: 26px;
  }

  .instagram-custom-topbar {
    flex-direction: column;
    align-items: flex-start;
    gap: .9rem;
  }

  .instagram-luxury-link {
    width: 100%;
    justify-content: center;
  }

  .instagram-custom-swiper {
    padding: 0 0 50px;
  }

  .instagram-custom-card {
    height: 460px;
    border-radius: 22px;
  }

  .instagram-custom-prev,
  .instagram-custom-next {
    width: 46px;
    height: 46px;
  }

  .instagram-custom-prev { left: 6px; }
  .instagram-custom-next { right: 6px; }
}

@media (max-width: 420px) {
  .instagram-custom-card {
    height: 420px;
  }
}


/* ===== V48 Hybrid Instagram polish ===== */
.instagram-hybrid-section .instagram-custom-card::before {
  content: "View post";
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 4;
  padding: .62rem .9rem;
  border-radius: 999px;
  background: rgba(15,17,21,.72);
  color: #f4d27a;
  font-weight: 800;
  font-size: .78rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .35s ease, transform .35s ease;
}

.instagram-hybrid-section .instagram-custom-card:hover::before {
  opacity: 1;
  transform: translateY(0);
}

.instagram-hybrid-section .instagram-custom-card {
  cursor: pointer;
}


/* ===== V49 Partner Logos Scale + Home Active Fix ===== */
#partners .logo-grid-partners .logo-tile img,
#partners .logo-tile-light img,
.logo-grid-partners .logo-tile img,
.logo-grid-partners .logo-tile-light img {
  transform: scale(1.95) !important;
  transform-origin: center center !important;
}

#partners .logo-grid-partners .logo-tile:hover img,
#partners .logo-tile-light:hover img,
.logo-grid-partners .logo-tile:hover img,
.logo-grid-partners .logo-tile-light:hover img {
  transform: scale(2.05) !important;
}

#partners .logo-tile,
#partners .logo-tile-light,
.logo-grid-partners .logo-tile,
.logo-grid-partners .logo-tile-light {
  background: transparent !important;
  box-shadow: none !important;
  border: none !important;
  overflow: visible !important;
}

@media (max-width: 767.98px) {
  #partners .logo-grid-partners .logo-tile img,
  #partners .logo-tile-light img,
  .logo-grid-partners .logo-tile img,
  .logo-grid-partners .logo-tile-light img {
    transform: scale(1.55) !important;
  }

  #partners .logo-grid-partners .logo-tile:hover img,
  #partners .logo-tile-light:hover img,
  .logo-grid-partners .logo-tile:hover img,
  .logo-grid-partners .logo-tile-light:hover img {
    transform: scale(1.65) !important;
  }
}


/* ===== V50 FINAL PARTNER LOGOS ===== */
#partners .logo-grid img,
#partners .logo-grid-partners img,
#partners .logo-tile img,
#partners .logo-tile-light img {
    transform: scale(1.95) !important;
    transform-origin: center center !important;
}

#partners .logo-grid .logo-tile:hover img,
#partners .logo-grid-partners .logo-tile:hover img,
#partners .logo-tile:hover img,
#partners .logo-tile-light:hover img {
    transform: scale(2.05) !important;
}

#partners .logo-tile,
#partners .logo-tile-light {
    overflow: visible !important;
    background: transparent !important;
    box-shadow: none !important;
    border: none !important;
}

/* mobile */
@media(max-width:767.98px){
    #partners .logo-grid img,
    #partners .logo-grid-partners img,
    #partners .logo-tile img,
    #partners .logo-tile-light img{
        transform: scale(1.55) !important;
    }
}
