/* ================================================================
   BANDHAN ELEVATORS  |  Premium Enterprise Website
   Advanced animations · Micro-interactions · Professional UX
================================================================ */

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

:root {
  --gold: #f4b942;
  --gold-glow: rgba(244,185,66,.25);
  --gold-dim: rgba(244,185,66,.10);
  --dark: #06101a;
  --dark-2: #0a1825;
  --dark-3: #0f2030;
  --dark-4: #152840;
  --white: #fff;
  --w70: rgba(255,255,255,.70);
  --w40: rgba(255,255,255,.40);
  --w08: rgba(255,255,255,.08);
  --ease: cubic-bezier(.25,.46,.45,.94);
  --spring: cubic-bezier(.34,1.56,.64,1);
  --smooth: cubic-bezier(.4,0,.2,1);
  --t1: .6s;
  --t2: .9s;
  --t3: 1.2s;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: Inter,sans-serif;
  background: var(--dark);
  color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* PREMIUM CURSOR */

.cursor-dot {
  display: none;
}

.cursor-ring {
  display: none;
}

/* ENHANCED SCROLL PROGRESS */

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg,var(--gold),#fff8e1);
  z-index: 9000;
  box-shadow: 0 0 20px var(--gold);
  transition: box-shadow .3s;
}

.scroll-progress::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  width: 40px;
  height: 100%;
  background: linear-gradient(90deg,transparent,rgba(255,255,255,.4));
  animation: shimmer 2s infinite;
}

@keyframes shimmer {
  0%, 100% {
    opacity: 0;
  }

  50% {
    opacity: 1;
  }
}

/* PREMIUM LOADER */

.loader {
  position: fixed;
  inset: 0;
  background: linear-gradient(135deg,var(--dark) 0%,var(--dark-2) 100%);
  z-index: 8000;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 36px;
  transition: opacity .9s var(--ease),visibility .9s;
}

.loader::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%,rgba(244,185,66,.08),transparent 50%);
  animation: loaderPulse 3s ease-in-out infinite;
}

@keyframes loaderPulse {
  0%, 100% {
    opacity: .5;
  }

  50% {
    opacity: 1;
  }
}

.loader.hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  position: relative;
  z-index: 1;
  padding: 0 20px;
  max-width: 100%;
}

@media (min-width: 768px) {
  .loader-inner {
    gap: 28px;
  }
}

.loader-logo-img {
  width: clamp(60px, 15vw, 90px);
  height: clamp(60px, 15vw, 90px);
  object-fit: cover;
  border-radius: 18px;
  opacity: 0;
  transform: scale(0.7);
  animation: logoImgIn .7s var(--spring) forwards .1s;
  box-shadow: 0 0 60px rgba(244,185,66,.4),0 0 120px rgba(244,185,66,.2);
}

@keyframes logoImgIn {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.loader-logo {
  display: flex;
  gap: 3px;
  flex-wrap: nowrap;
  justify-content: center;
  max-width: 90%;
}

.loader-space {
  width: 8px;
}

.loader-logo span {
  font-size: clamp(1.4rem, 5vw, 3.2rem);
  font-family: Montserrat,sans-serif;
  font-weight: 800;
  color: var(--gold);
  opacity: 0;
  transform: translateY(50px);
  animation: loaderChar .7s var(--spring) forwards;
  text-shadow: 0 0 30px rgba(244,185,66,.5);
}

.loader-logo span:nth-child(1) {
  animation-delay: .05s;
}

.loader-logo span:nth-child(2) {
  animation-delay: .10s;
}

.loader-logo span:nth-child(3) {
  animation-delay: .15s;
}

.loader-logo span:nth-child(4) {
  animation-delay: .20s;
}

.loader-logo span:nth-child(5) {
  animation-delay: .25s;
}

.loader-logo span:nth-child(6) {
  animation-delay: .30s;
}

.loader-logo span:nth-child(7) {
  animation-delay: .35s;
}

.loader-logo span:nth-child(8) {
  animation-delay: .40s;
}

.loader-logo span:nth-child(9) {
  animation-delay: .45s;
}

.loader-logo span:nth-child(10) {
  animation-delay: .50s;
}

.loader-logo span:nth-child(11) {
  animation-delay: .55s;
}

.loader-logo span:nth-child(12) {
  animation-delay: .60s;
}

.loader-logo span:nth-child(13) {
  animation-delay: .65s;
}

.loader-logo span:nth-child(14) {
  animation-delay: .70s;
}

.loader-logo span:nth-child(15) {
  animation-delay: .75s;
}

.loader-logo span:nth-child(16) {
  animation-delay: .80s;
}

.loader-logo span:nth-child(17) {
  animation-delay: .85s;
}

@keyframes loaderChar {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.loader-bar {
  width: min(200px, 80vw);
  height: 3px;
  background: var(--w08);
  border-radius: 3px;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(0,0,0,.3);
}

.loader-bar-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg,var(--gold),#fff8e1);
  animation: loaderFill 1.5s var(--ease) forwards .55s;
  box-shadow: 0 0 20px var(--gold);
  position: relative;
}

.loader-bar-fill::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,transparent,rgba(255,255,255,.6),transparent);
  animation: barShimmer 1.5s ease-in-out infinite;
}

@keyframes loaderFill {
  to {
    width: 100%;
  }
}

@keyframes barShimmer {
  0% {
    transform: translateX(-100%);
  }

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

/* ═══════════════════════════════════════
   PREMIUM NAVBAR - UPGRADED
═══════════════════════════════════════ */

.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 4%;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(30px) saturate(1.8);
  border-bottom: 1px solid rgba(244, 185, 66, 0.1);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.navbar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: linear-gradient(135deg, rgba(244, 185, 66, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

.navbar::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #f4b942, transparent);
  transition: width 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 0 15px rgba(244, 185, 66, 0.6);
}

.navbar.scrolled {
  padding: 12px 6%;
  background: rgba(10, 10, 10, 0.95);
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.4);
  border-bottom-color: rgba(244, 185, 66, 0.2);
}

.navbar.scrolled::after {
  width: 100%;
}

.logo {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  gap: 9px;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  z-index: 2;
}

.logo:hover {
  transform: scale(1.03);
}

.logo-img {
  width: 30px;
  height: 30px;
  object-fit: cover;
  border-radius: 10px;
  transition: all 0.4s ease;
  box-shadow: 0 4px 15px rgba(244, 185, 66, 0.2);
  border: 1px solid rgba(244, 185, 66, 0.2);
}

.logo:hover .logo-img {
  box-shadow: 0 6px 25px rgba(244, 185, 66, 0.5);
  border-color: rgba(244, 185, 66, 0.5);
  transform: rotate(-5deg);
}

.logo-b {
  color: #f4b942;
  text-shadow: 0 0 20px rgba(244, 185, 66, 0.3);
}

nav {
  display: flex;
  gap: 35px;
  position: relative;
  z-index: 2;
}

nav a {
  color: #b0b0b0;
  text-decoration: none;
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  position: relative;
  transition: color 0.4s ease;
  padding: 10px 0;
  font-weight: 500;
}

nav a::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  background: #f4b942;
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.4s ease;
  box-shadow: 0 0 10px #f4b942;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #f4b942, transparent);
  transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 0 12px #f4b942;
}

nav a:hover {
  color: #ffffff;
}

nav a:hover::before {
  opacity: 1;
}

nav a:hover::after {
  width: 100%;
}

nav a.active {
  color: #f4b942;
}

nav a.active::before {
  opacity: 1;
}

nav a.active::after {
  width: 100%;
}

.btn-nav {
  padding: 11px 26px;
  border: 2px solid #f4b942;
  border-radius: 30px;
  color: #f4b942;
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
  font-weight: 600;
  z-index: 2;
  display: none;
}

@media (min-width: 1024px) {
  .btn-nav {
    display: inline-block;
  }
}

.btn-nav::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #f4b942, #ffd700);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: -1;
}

.btn-nav:hover {
  color: #0a0a0a;
  box-shadow: 0 0 30px rgba(244, 185, 66, 0.5);
  transform: translateY(-2px);
}

.btn-nav:hover::before {
  transform: scaleX(1);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
  z-index: 3000;
}

@media (max-width: 1023px) {
  .nav-right {
    gap: 0;
  }
}

/* HAMBURGER MENU - HIDDEN */
.hamburger {
  display: none !important;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: all 0.3s ease;
  box-shadow: 0 0 8px rgba(244, 185, 66, 0.3);
}

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

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

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

/* MOBILE MENU - HIDDEN */
.mobile-menu {
  display: none !important;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  padding: 100px 40px 40px;
  gap: 12px;
  position: relative;
  z-index: 1;
  min-height: 100%;
}

.mobile-nav a {
  color: #ffffff;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  padding: 18px 24px;
  border-radius: 12px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  display: block;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-nav a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s ease;
  box-shadow: 0 0 10px var(--gold);
}

.mobile-nav a:hover,
.mobile-nav a.active {
  color: var(--gold);
  background: rgba(244, 185, 66, 0.1);
  padding-left: 34px;
  border-color: rgba(244, 185, 66, 0.3);
}

.mobile-nav a:hover::before,
.mobile-nav a.active::before {
  width: 20px;
}

/* HERO */

.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

@supports (height: 100svh) {
  .hero {
    height: 100svh;
  }
}

.hero-layer {
  position: absolute;
  inset: 0;
  will-change: transform;
}

.hero-layer--bg {
  z-index: 0;
}

.hero-layer--bg img {
  width: 100%;
  height: 120%;
  object-fit: cover;
  transform-origin: center center;
}

.hero-layer--vignette {
  z-index: 1;
  background: radial-gradient(ellipse at center,transparent 30%,rgba(6,16,26,.7) 100%),linear-gradient(to bottom,rgba(6,16,26,.25) 0%,rgba(6,16,26,.8) 100%);
}

.hero-layer--grain {
  z-index: 2;
  opacity: .35;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='.05'/%3E%3C/svg%3E");
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 2;
  filter: blur(80px);
  animation: orbFloat 8s ease-in-out infinite;
}

.hero-orb--1 {
  width: 500px;
  height: 500px;
  top: -100px;
  right: -100px;
  background: radial-gradient(circle,rgba(244,185,66,.08),transparent 70%);
  animation-delay: 0s;
}

.hero-orb--2 {
  width: 400px;
  height: 400px;
  bottom: -80px;
  left: -80px;
  background: radial-gradient(circle,rgba(21,40,64,.6),transparent 70%);
  animation-delay: -4s;
}

@keyframes orbFloat {
  0%, 100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-30px) scale(1.05);
  }
}

.hero-content {
  position: relative;
  z-index: 5;
  text-align: center;
  padding: 0 24px;
  max-width: 920px;
  transition: opacity .3s;
}

.hero-eyebrow {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .8s var(--ease),transform .8s var(--ease);
}

.hero-eyebrow.visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-title {
  font-family: Montserrat,sans-serif;
  font-weight: 800;
  font-size: clamp(2.2rem, 8vw, 5rem);
  line-height: 1.1;
  letter-spacing: -.02em;
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: clamp(3rem, 11vw, 5rem);
    line-height: 1.0;
  }
}

.hero-word {
  display: block;
  opacity: 0;
  transform: translateY(80px) skewY(3deg);
  transition: opacity .9s var(--ease),transform .9s var(--ease);
}

.hero-word.visible {
  opacity: 1;
  transform: translateY(0) skewY(0);
}

.hero-word--accent {
  color: var(--gold);
}

.hero-sub {
  font-size: clamp(0.85rem, 2.5vw, 1rem);
  color: var(--w70);
  margin-bottom: 32px;
  letter-spacing: .04em;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .8s var(--ease),transform .8s var(--ease);
  padding: 0 8px;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .hero-sub {
    font-size: 0.88rem;
    line-height: 1.5;
  }
}

.hero-sub.visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .8s var(--ease),transform .8s var(--ease);
}

.hero-buttons.visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-cta {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .8s var(--ease),transform .8s var(--ease);
}

.hero-cta.visible {
  opacity: 1;
  transform: translateY(0);
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: linear-gradient(135deg,var(--gold) 0%,#f5c563 100%);
  color: var(--dark);
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: .07em;
  text-transform: uppercase;
  transition: transform .4s var(--spring),box-shadow .4s;
  position: relative;
  overflow: hidden;
  border: none;
  cursor: pointer;
  min-height: 48px;
}

@media (min-width: 768px) {
  .btn-primary {
    padding: 13px 24px;
  }
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,#f5c563 0%,var(--gold) 100%);
  opacity: 0;
  transition: opacity .4s;
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255,255,255,.3);
  transform: translate(-50%,-50%);
  transition: width .6s,height .6s;
}

.btn-primary:hover::before {
  opacity: 1;
}

.btn-primary:hover::after {
  width: 300px;
  height: 300px;
}

.btn-primary svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform .4s var(--spring);
  position: relative;
  z-index: 1;
}

.btn-primary:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 20px 50px rgba(244,185,66,.4),0 0 60px rgba(244,185,66,.2);
}

.btn-primary:hover svg {
  transform: translateX(4px);
}

.btn-primary:active {
  transform: translateY(-2px) scale(1.01);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  padding: 14px 28px;
  border: 2px solid var(--w40);
  color: var(--white);
  border-radius: 50px;
  text-decoration: none;
  font-size: 0.82rem;
  letter-spacing: .07em;
  text-transform: uppercase;
  transition: all .4s var(--ease);
  position: relative;
  overflow: hidden;
  background: transparent;
  min-height: 48px;
}

@media (min-width: 768px) {
  .btn-secondary {
    padding: 13px 24px;
  }
}

.btn-secondary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,.05);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s var(--ease);
}

.btn-secondary:hover {
  border-color: var(--white);
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(255,255,255,.1);
}

.btn-secondary:hover::before {
  transform: scaleX(1);
}

.scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 5;
  animation: scrollHintFade 2.5s ease-in-out infinite;
  cursor: pointer;
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 5;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.scroll-indicator.visible {
  opacity: 1;
  animation: scrollHintFade 2.5s ease-in-out infinite;
}

.scroll-indicator span {
  font-size: .62rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--w70);
  text-shadow: 0 0 10px rgba(244,185,66,.3);
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom,transparent,var(--gold));
  animation: scrollLine 2s ease-in-out infinite;
  box-shadow: 0 0 10px var(--gold);
}

.scroll-hint-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom,transparent,var(--gold));
  animation: scrollLine 2s ease-in-out infinite;
  box-shadow: 0 0 10px var(--gold);
}

.scroll-hint span {
  font-size: .62rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--w70);
  text-shadow: 0 0 10px rgba(244,185,66,.3);
}

@keyframes scrollLine {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }

  50% {
    transform: scaleY(1);
    transform-origin: top;
  }

  51% {
    transform: scaleY(1);
    transform-origin: bottom;
  }

  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}

@keyframes scrollHintFade {
  0%, 100% {
    opacity: .35;
  }

  50% {
    opacity: .85;
  }
}

/* PREMIUM BACK TO TOP */

.back-to-top {
  position: fixed;
  bottom: 100px;
  right: 32px;
  width: 48px;
  height: 48px;
  background: rgba(244,185,66,.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(244,185,66,.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1999;
  opacity: 0;
  visibility: hidden;
  transition: all .4s var(--ease);
  cursor: pointer;
}

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

.back-to-top::before {
  content: '↑';
  font-size: 1.2rem;
  color: var(--gold);
  transition: transform .4s;
}

.back-to-top:hover {
  background: rgba(244,185,66,.2);
  border-color: var(--gold);
  box-shadow: 0 8px 30px rgba(244,185,66,.3);
  transform: translateY(-4px);
}

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

/* Fix: Proper up arrow for back-to-top button */
.back-to-top::before {
  content: '↑' !important;
  font-size: 1.5rem !important;
  font-weight: bold !important;
}

/* PREMIUM STATS BAR */

.stats-bar {
  display: grid;
  justify-content: center;
  align-items: center;
  gap: 0;
  background: linear-gradient(135deg,var(--dark-3) 0%,var(--dark-2) 100%);
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
  padding: 20px 4%;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
  grid-template-columns: 1fr 1fr;
}

@media (min-width: 768px) {
  .stats-bar {
    grid-template-columns: repeat(4, 1fr);
    padding: 28px 4%;
  }
}

.stats-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%,rgba(244,185,66,.03),transparent 70%);
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 16px 10px;
  text-align: center;
  position: relative;
  transition: transform .4s var(--ease);
}

.stat-item:hover {
  transform: translateY(-5px);
}

.stat-item::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: radial-gradient(circle,rgba(244,185,66,.1),transparent);
  border-radius: 50%;
  transform: translate(-50%,-50%);
  transition: width .6s,height .6s;
  z-index: 0;
}

.stat-item:hover::before {
  width: 200px;
  height: 200px;
}

.stat-value {
  display: flex;
  align-items: baseline;
  gap: 2px;
  line-height: 1;
  white-space: nowrap;
  position: relative;
  z-index: 1;
}

.stat-num {
  font-family: Montserrat,sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  text-shadow: 0 0 30px rgba(244,185,66,.3);
  transition: transform .4s;
}

.stat-item:hover .stat-num {
  transform: scale(1.1);
}

.stat-suffix {
  font-family: Montserrat,sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  text-shadow: 0 0 30px rgba(244,185,66,.3);
}

.stat-label {
  font-size: 0.68rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--w70);
  position: relative;
  z-index: 1;
  transition: color .4s;
}

.stat-item:hover .stat-label {
  color: var(--gold);
}

.stat-divider {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom,transparent,rgba(255,255,255,.2),transparent);
  display: none;
}

@media (min-width: 768px) {
  .stat-divider {
    display: block;
  }
}

/* PREMIUM SECTION SHARED */

.section {
  padding: 40px 5%;
  position: relative;
}

@media (min-width: 768px) {
  .section {
    padding: 60px 4%;
  }
}

@media (min-width: 1024px) {
  .section {
    padding: 80px 4%;
  }
}

.section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg,transparent,rgba(244,185,66,.2),transparent);
}

.section-label {
  font-size: .72rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  position: relative;
  display: inline-block;
  padding-bottom: 8px;
}

.section-label::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--gold);
  box-shadow: 0 0 10px var(--gold);
}

.section-header {
  text-align: center;
  margin-bottom: 32px;
  position: relative;
}

@media (min-width: 768px) {
  .section-header {
    margin-bottom: 40px;
  }
}

@media (min-width: 1024px) {
  .section-header {
    margin-bottom: 48px;
  }
}

.section-header::after {
  content: '';
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg,transparent,var(--gold),transparent);
  box-shadow: 0 0 15px var(--gold);
}

.section-header h2 {
  font-family: Montserrat,sans-serif;
  font-size: clamp(1.8rem, 6vw, 3rem);
  font-weight: 800;
  margin-top: 8px;
  position: relative;
  display: inline-block;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .section-header h2 {
    line-height: 1.1;
  }
}

.section-header h2::before {
  content: '';
  position: absolute;
  top: -15px;
  left: -25px;
  width: 18px;
  height: 18px;
  border-top: 2px solid rgba(244,185,66,.3);
  border-left: 2px solid rgba(244,185,66,.3);
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: -15px;
  right: -25px;
  width: 18px;
  height: 18px;
  border-bottom: 2px solid rgba(244,185,66,.3);
  border-right: 2px solid rgba(244,185,66,.3);
}

/* ABOUT */

.about {
  background: var(--dark-2);
}

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

@media (min-width: 1024px) {
  .about-container {
    grid-template-columns: 1fr 1fr;
    gap: 60px;
  }
}

.about-left h2 {
  font-family: Montserrat,sans-serif;
  font-size: clamp(1.8rem, 6vw, 2.6rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
}

.about-left h2 em {
  font-style: normal;
  color: var(--gold);
}

.about-left p {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--w70);
  margin-bottom: 24px;
}

.about-badges {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.about-badges li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .9rem;
  color: var(--w70);
}

.badge-icon {
  color: var(--gold);
  font-size: .7rem;
}

.about-right {
  position: relative;
  height: 280px;
  margin: 20px 0;
}

@media (min-width: 768px) {
  .about-right {
    height: 320px;
  }
}

@media (min-width: 1024px) {
  .about-right {
    height: 360px;
    margin: 0;
  }
}

.img-stack-back {
  position: absolute;
  top: 25px;
  right: -15px;
  width: 85%;
  height: 90%;
  background: var(--dark-4);
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,.06);
}

.img-stack-main {
  position: absolute;
  top: 0;
  left: 0;
  width: 88%;
  height: 88%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,.5);
}

.img-stack-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t3) var(--ease);
}

.img-stack-main:hover img {
  transform: scale(1.05);
}

.img-badge {
  position: absolute;
  bottom: -15px;
  right: 0;
  background: var(--gold);
  color: var(--dark);
  padding: 12px 18px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 20px 40px rgba(244,185,66,.3);
}

.badge-num {
  font-family: Montserrat,sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  line-height: 1;
}

.badge-text {
  font-size: .68rem;
  letter-spacing: .08em;
  text-align: center;
  line-height: 1.4;
  margin-top: 4px;
}

@keyframes floatBadge {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.float-badge {
  animation: floatBadge 4s ease-in-out infinite;
}

/* CINEMATIC BREAK */

.cinematic-break {
  position: relative;
  height: 60vh;
  min-height: 400px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 768px) {
  .cinematic-break {
    height: 80vh;
    min-height: 500px;
  }
}

@media (min-width: 1024px) {
  .cinematic-break {
    height: 100vh;
    min-height: 600px;
  }
}

.cb-layer {
  position: absolute;
  inset: 0;
  will-change: transform;
}

.cb-layer--img {
  z-index: 0;
}

.cb-layer--img img {
  width: 100%;
  height: 120%;
  object-fit: cover;
}

.cb-layer--overlay {
  z-index: 1;
  background: linear-gradient(135deg,rgba(6,16,26,.85) 0%,rgba(6,16,26,.5) 100%);
}

.cb-layer--overlay-alt {
  background: linear-gradient(225deg,rgba(6,16,26,.85) 0%,rgba(6,16,26,.5) 100%);
}

.cb-layer--grain {
  z-index: 2;
  opacity: .3;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='.05'/%3E%3C/svg%3E");
}

.cb-content {
  position: relative;
  z-index: 5;
  text-align: center;
  padding: 0 20px;
  max-width: 800px;
}

.cb-content--right {
  text-align: right;
  margin-left: auto;
  margin-right: 8%;
}

.cb-label {
  font-size: .72rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.cb-title {
  font-family: Montserrat,sans-serif;
  font-size: clamp(2.8rem,6vw,5.5rem);
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 28px;
}

.cb-line {
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin: 0 auto 24px;
  box-shadow: 0 0 12px var(--gold);
}

.cb-content--right .cb-line {
  margin: 0 0 24px auto;
}

.cb-sub {
  font-size: 1.05rem;
  color: var(--w70);
  letter-spacing: .04em;
}

.cb-fg-element {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to top,var(--dark),transparent);
  z-index: 4;
  pointer-events: none;
}

/* PREMIUM PRODUCTS */

.products {
  background: var(--dark);
  position: relative;
}

.products::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 1px;
  height: 100%;
  background: linear-gradient(to bottom,transparent,rgba(244,185,66,.1),transparent);
}

.product-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

@media (min-width: 640px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (min-width: 1024px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}

.product-card {
  border-radius: 16px;
  overflow: hidden;
  background: var(--dark-3);
  border: 1px solid rgba(255,255,255,.06);
  transition: all var(--t2) var(--ease);
  position: relative;
}

@media (min-width: 768px) {
  .product-card {
    border-radius: 20px;
  }
}

.product-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 40px 80px rgba(0,0,0,.5),0 0 60px rgba(244,185,66,.1);
  border-color: rgba(244,185,66,.3);
}

.product-img-wrap {
  position: relative;
  height: 200px;
  overflow: hidden;
}

@media (min-width: 768px) {
  .product-img-wrap {
    height: 240px;
  }
}

@media (min-width: 1024px) {
  .product-img-wrap {
    height: 280px;
  }
}

.product-img-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,rgba(244,185,66,.08),transparent 60%);
  z-index: 1;
  opacity: 0;
  transition: opacity .6s;
}

.product-card:hover .product-img-wrap::before {
  opacity: 1;
}

.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transition: transform var(--t3) var(--ease),filter .6s;
  background: rgba(0, 0, 0, 0.3);
}

.product-card:hover .product-img-wrap img {
  transform: scale(1.05);
  filter: brightness(1.1);
}

@media (min-width: 1024px) {
  .product-card:hover .product-img-wrap img {
    transform: scale(1.15);
  }
}

.product-content {
  padding: 24px 20px;
}

@media (min-width: 768px) {
  .product-content {
    padding: 28px 24px;
  }
}

.product-category {
  font-size: .68rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.product-title {
  font-family: Montserrat,sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.3;
}

@media (min-width: 768px) {
  .product-title {
    font-size: 1.25rem;
  }
}

.product-desc {
  font-size: .84rem;
  color: var(--w70);
  line-height: 1.6;
  margin-bottom: 20px;
}

.product-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .76rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  cursor: pointer;
  transition: gap .4s;
}

.product-link::after {
  content: '?';
  transition: transform .4s;
}

.product-card:hover .product-link {
  gap: 12px;
}

.product-card:hover .product-link::after {
  transform: translateX(6px);
}

/* CINEMATIC PRODUCT SECTIONS */

/* -------------------------------------------------------------------
   PREMIUM CINEMATIC PRODUCT SECTIONS - UPGRADED FOR MAXIMUM IMPACT
------------------------------------------------------------------- */

.cinematic-product {
  position: relative;
  padding: 80px 4% 100px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 50%, var(--dark-3) 100%);
  border-bottom: 1px solid rgba(244,185,66,.1);
}

@media (min-width: 768px) {
  .cinematic-product {
    padding: 100px 4% 120px;
  }
}

@media (min-width: 1024px) {
  .cinematic-product {
    padding: 140px 4% 160px;
  }
}

/* Animated Background Elements */
.cinematic-product::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 70%, rgba(244,185,66,.03) 0%, transparent 50%),
              radial-gradient(circle at 70% 30%, rgba(244,185,66,.02) 0%, transparent 50%);
  animation: backgroundFloat 20s ease-in-out infinite;
  z-index: 0;
}

.cinematic-product::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(244,185,66,.4), transparent);
  box-shadow: 0 0 20px rgba(244,185,66,.3);
  animation: shimmerLine 3s ease-in-out infinite;
}

@keyframes backgroundFloat {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  33% { transform: translate(-20px, -20px) rotate(1deg); }
  66% { transform: translate(20px, -10px) rotate(-1deg); }
}

@keyframes shimmerLine {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

/* Enhanced Product Number */
.product-number {
  position: absolute;
  top: 40px;
  right: 4%;
  font-family: Montserrat, sans-serif;
  font-size: clamp(6rem, 15vw, 12rem);
  font-weight: 900;
  background: linear-gradient(135deg, rgba(244,185,66,.12), rgba(244,185,66,.04));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  pointer-events: none;
  z-index: 0;
  text-shadow: 0 0 50px rgba(244,185,66,.1);
  animation: numberPulse 4s ease-in-out infinite;
}

@keyframes numberPulse {
  0%, 100% { transform: scale(1); opacity: 0.8; }
  50% { transform: scale(1.02); opacity: 1; }
}

/* Premium Container */
.cp-container {
  display: grid;
  grid-template-columns: 1fr;
  align-items: stretch;
  gap: 60px;
  position: relative;
  z-index: 1;
  width: 100%;
}

@media (min-width: 1024px) {
  .cp-container {
    grid-template-columns: 1fr 1fr;
    gap: 100px;
  }
}

/* Enhanced Left Content */
.cp-left {
  max-width: 100%;
  position: relative;
}

@media (min-width: 1024px) {
  .cp-left {
    max-width: 580px;
  }
}

.cp-left::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  width: 60px;
  height: 60px;
  border: 2px solid rgba(244,185,66,.2);
  border-radius: 50%;
  animation: orbRotate 15s linear infinite;
}

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

/* Premium Label */
.cp-label {
  font-size: .75rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
  padding: 8px 16px;
  background: rgba(244,185,66,.08);
  border-radius: 20px;
  border: 1px solid rgba(244,185,66,.2);
  backdrop-filter: blur(10px);
}

.cp-label::before {
  content: '';
  position: absolute;
  top: 50%;
  left: -8px;
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 50%;
  transform: translateY(-50%);
  box-shadow: 0 0 10px var(--gold);
  animation: labelPulse 2s ease-in-out infinite;
}

@keyframes labelPulse {
  0%, 100% { opacity: 0.5; transform: translateY(-50%) scale(1); }
  50% { opacity: 1; transform: translateY(-50%) scale(1.2); }
}

/* Stunning Title */
.cp-title {
  font-family: Montserrat, sans-serif;
  font-size: clamp(2.5rem, 7vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 28px;
  position: relative;
  background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 4px 20px rgba(255,255,255,.1);
}

.cp-title .gold {
  background: linear-gradient(135deg, #f4b942 0%, #ffd700 50%, #f4b942 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  animation: goldShimmer 3s ease-in-out infinite;
}

@keyframes goldShimmer {
  0%, 100% { filter: brightness(1); }
  50% { filter: brightness(1.2); }
}

/* Enhanced Description */
.cp-desc {
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(255,255,255,.85);
  margin-bottom: 36px;
  position: relative;
  padding-left: 20px;
}

.cp-desc::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(to bottom, var(--gold), transparent);
  border-radius: 2px;
}

/* Premium Features List */
.cp-features {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-bottom: 44px;
  padding: 24px;
  background: rgba(255,255,255,.02);
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.05);
  backdrop-filter: blur(10px);
}

.cp-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .95rem;
  color: rgba(255,255,255,.9);
  padding: 8px 0;
  transition: all .3s ease;
  position: relative;
}

.cp-features li:hover {
  color: var(--gold);
  transform: translateX(8px);
}

.cp-icon {
  color: var(--gold);
  font-size: 1rem;
  width: 20px;
  text-align: center;
  animation: iconFloat 2s ease-in-out infinite;
  animation-delay: calc(var(--i, 0) * 0.2s);
}

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

/* Spectacular CTA Buttons */
.cp-cta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.cp-cta .btn-primary {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #f4b942 0%, #ffd700 50%, #f4b942 100%);
  background-size: 200% 200%;
  animation: gradientShift 4s ease-in-out infinite;
  box-shadow: 0 8px 32px rgba(244,185,66,.3);
  transform: translateY(0);
  transition: all .4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.cp-cta .btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.3), transparent);
  transition: left .6s ease;
}

.cp-cta .btn-primary:hover::before {
  left: 100%;
}

.cp-cta .btn-primary:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 16px 48px rgba(244,185,66,.4), 0 0 40px rgba(244,185,66,.2);
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.cp-cta .btn-secondary {
  background: rgba(255,255,255,.05);
  border: 2px solid rgba(244,185,66,.4);
  backdrop-filter: blur(10px);
  transition: all .4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.cp-cta .btn-secondary:hover {
  background: rgba(244,185,66,.1);
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(244,185,66,.2);
}

/* PROFESSIONAL ELEVATOR GALLERY - OPTIMIZED FOR PORTRAIT PHOTOS */
.cp-right {
  position: relative;
  min-height: 500px;
  width: 100%;
}

@media (min-width: 768px) {
  .cp-right {
    min-height: 600px;
  }
}

@media (min-width: 1024px) {
  .cp-right {
    min-height: 650px;
  }
}

.cp-gallery {
  position: relative;
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 3px;
  border-radius: 16px;
  overflow: hidden;
  background: #000000;
  min-height: 100%;
}

/* Uniform Photo Layout - All Same Size */
.cp-main-img {
  grid-column: 1;
  grid-row: 1;
  position: relative;
  overflow: hidden;
  background: #000000;
  height: 100%;
}

.cp-float-1 {
  grid-column: 2;
  grid-row: 1;
  position: relative;
  overflow: hidden;
  background: #000000;
  height: 100%;
}

.cp-float-2 {
  grid-column: 3;
  grid-row: 1;
  position: relative;
  overflow: hidden;
  background: #000000;
  height: 100%;
}

.cp-float-3 {
  grid-column: 1;
  grid-row: 2;
  position: relative;
  overflow: hidden;
  background: #000000;
  height: 100%;
}

.cp-float-4 {
  grid-column: 2;
  grid-row: 2;
  position: relative;
  overflow: hidden;
  background: #000000;
  height: 100%;
}

.cp-float-5 {
  grid-column: 3;
  grid-row: 2;
  position: relative;
  overflow: hidden;
  background: #000000;
  height: 100%;
}

/* Professional Image Styling - Fill All Space */
.cp-main-img img,
.cp-float-1 img,
.cp-float-2 img,
.cp-float-3 img,
.cp-float-4 img,
.cp-float-5 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: all 0.4s ease;
  display: block;
  filter: brightness(1) contrast(1.05) saturate(1.1);
  min-height: 100%;
}

/* Subtle Professional Hover Effects */
.cp-main-img:hover img,
.cp-float-1:hover img,
.cp-float-2:hover img,
.cp-float-3:hover img,
.cp-float-4:hover img,
.cp-float-5:hover img {
  transform: scale(1.03);
  filter: brightness(1.1) contrast(1.1) saturate(1.2);
}

.cp-main-img:hover,
.cp-float-1:hover,
.cp-float-2:hover,
.cp-float-3:hover,
.cp-float-4:hover,
.cp-float-5:hover {
  cursor: pointer;
}

/* Premium Overlay for Brand Recognition */
.cp-main-img::after {
  content: '';
  position: absolute;
  bottom: 12px;
  left: 12px;
  width: 40px;
  height: 20px;
  background: rgba(244,185,66,.9);
  border-radius: 4px;
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: bold;
  color: var(--dark);
}

.cp-main-img:hover::after {
  opacity: 1;
}

/* Mobile Responsive Layout */
@media (max-width: 1023px) {
  .cp-right {
    width: 100%;
    min-height: 400px;
  }

  .cp-gallery {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 2px;
    width: 100%;
  }
  
  .cp-main-img {
    grid-column: 1;
    grid-row: 1;
  }

  .cp-float-1 {
    grid-column: 2;
    grid-row: 1;
  }

  .cp-float-2 {
    grid-column: 1;
    grid-row: 2;
  }

  .cp-float-3 {
    grid-column: 2;
    grid-row: 2;
  }

  .cp-float-4 {
    grid-column: 1;
    grid-row: 3;
  }

  .cp-float-5 {
    grid-column: 2;
    grid-row: 3;
  }
}

@media (max-width: 480px) {
  .cp-right {
    width: 100%;
    min-height: 600px;
  }

  .cp-gallery {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(6, 1fr);
    gap: 2px;
    border-radius: 12px;
    width: 100%;
  }
  
  .cp-main-img {
    grid-column: 1;
    grid-row: 1;
  }

  .cp-float-1 {
    grid-column: 1;
    grid-row: 2;
  }

  .cp-float-2 {
    grid-column: 1;
    grid-row: 3;
  }

  .cp-float-3 {
    grid-column: 1;
    grid-row: 4;
  }

  .cp-float-4 {
    grid-column: 1;
    grid-row: 5;
  }

  .cp-float-5 {
    grid-column: 1;
    grid-row: 6;
  }
}

.cp-main-img img,
.cp-float-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease);
}

.cp-main-img:hover,
.cp-float-img:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 30px 80px rgba(0,0,0,.4),0 0 40px rgba(244,185,66,.1);
}

.cp-main-img:hover img,
.cp-float-img:hover img {
  transform: scale(1.1);
}

.cp-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,rgba(244,185,66,.1),transparent 60%);
  opacity: 0;
  transition: opacity .6s;
}

.cp-main-img:hover .cp-img-overlay,
.cp-float-img:hover .cp-img-overlay {
  opacity: 1;
}

/* REVERSE LAYOUT */
.cp-reverse .cp-container {
  direction: rtl;
}

.cp-reverse .cp-left,
.cp-reverse .cp-right {
  direction: ltr;
}

@media (min-width: 1024px) {
  .cp-reverse .cp-left {
    order: 2;
  }
  
  .cp-reverse .cp-right {
    order: 1;
  }
}

.product-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,rgba(244,185,66,.05),transparent);
  opacity: 0;
  transition: opacity var(--t2);
}

.product-card::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle,rgba(244,185,66,.1),transparent 50%);
  opacity: 0;
  transition: opacity var(--t2);
}

.product-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 40px 80px rgba(0,0,0,.5),0 0 60px rgba(244,185,66,.1);
  border-color: rgba(244,185,66,.3);
}

.product-card:hover::before {
  opacity: 1;
}

.product-card:hover::after {
  opacity: 1;
}

.product-img-wrap {
  position: relative;
  height: 320px;
  overflow: hidden;
}

@media (min-width: 640px) {
  .product-img-wrap {
    height: 280px;
  }
}

@media (min-width: 1024px) {
  .product-img-wrap {
    height: 300px;
  }
}

.product-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,rgba(6,16,26,.85) 0%,transparent 50%);
  z-index: 1;
}

@media (min-width: 1024px) {
  .product-img-wrap::after {
    background: linear-gradient(to top,rgba(6,16,26,.9) 0%,transparent 60%);
  }
}

.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transition: transform var(--t3) var(--ease),filter .6s;
  background: rgba(0, 0, 0, 0.3);
}

@media (min-width: 1024px) {
  .product-img-wrap img {
    object-fit: cover;
  }
}

.product-card:hover .product-img-wrap img {
  transform: scale(1.05);
  filter: brightness(1.1);
}

@media (min-width: 1024px) {
  .product-card:hover .product-img-wrap img {
    transform: scale(1.15);
  }
}

.product-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,rgba(6,16,26,.85) 0%,transparent 50%);
  z-index: 2;
}

@media (min-width: 1024px) {
  .product-img-overlay {
    background: linear-gradient(to top,rgba(6,16,26,.9) 0%,transparent 60%);
  }
}

.product-info {
  padding: 20px 18px 24px;
  position: relative;
  z-index: 3;
}

@media (min-width: 768px) {
  .product-info {
    padding: 24px 26px 28px;
  }
}

.product-info h3 {
  font-family: Montserrat,sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
  transition: color .4s;
}

@media (min-width: 768px) {
  .product-info h3 {
    font-size: 1.25rem;
  }
}

.product-card:hover .product-info h3 {
  color: var(--gold);
}

.product-info p {
  font-size: .85rem;
  color: var(--w70);
  line-height: 1.6;
  margin-bottom: 12px;
}

@media (min-width: 768px) {
  .product-info p {
    font-size: .88rem;
    line-height: 1.65;
    margin-bottom: 14px;
  }
}

.product-link {
  font-size: .76rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  cursor: pointer;
  transition: all .4s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.product-link::after {
  content: '→';
  transition: transform .4s;
}

.product-card:hover .product-link {
  letter-spacing: .2em;
}

.product-card:hover .product-link::after {
  transform: translateX(6px);
}

/* SERVICES */

.services {
  background: var(--dark-2);
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: start;
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: 1fr 1.4fr;
    gap: 70px;
  }
}

.services-left h2 {
  font-family: Montserrat,sans-serif;
  font-size: clamp(2rem,3.5vw,3rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 18px;
}

.services-left p {
  font-size: .98rem;
  color: var(--w70);
  line-height: 1.75;
}

.services-right {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.service-item {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: padding-left var(--t1) var(--ease);
}

.service-item:first-child {
  padding-top: 0;
}

.service-item:hover {
  padding-left: 12px;
}

.service-num {
  font-family: Montserrat,sans-serif;
  font-size: .72rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: .1em;
  padding-top: 4px;
  min-width: 26px;
}

.service-body h4 {
  font-size: .98rem;
  font-weight: 600;
  margin-bottom: 6px;
  transition: color .4s;
}

.service-item:hover .service-body h4 {
  color: var(--gold);
}

.service-body p {
  font-size: .86rem;
  color: var(--w70);
  line-height: 1.6;
}

/* PREMIUM CONTACT FORM */

.contact {
  background: var(--dark);
}

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

@media (min-width: 1024px) {
  .contact-wrapper {
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
  }
}

.contact-left h2 {
  font-family: Montserrat,sans-serif;
  font-size: clamp(1.8rem, 6vw, 2.6rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
}

.contact-left h2 em {
  font-style: normal;
  color: var(--gold);
  position: relative;
}

.contact-left h2 em::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg,var(--gold),transparent);
  box-shadow: 0 0 10px var(--gold);
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.88rem;
  color: var(--w70);
  line-height: 1.6;
  padding: 10px;
  border-radius: 10px;
  transition: all .4s;
}

.contact-detail-item:hover {
  background: rgba(255,255,255,.03);
  transform: translateX(8px);
}

.cd-icon {
  font-size: 1rem;
  margin-top: 2px;
  transition: transform .4s;
}

.contact-detail-item:hover .cd-icon {
  transform: scale(1.2);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

@media (min-width: 768px) {
  .contact-form {
    gap: 16px;
  }
}

.form-group {
  position: relative;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 18px 14px 10px;
  background: var(--dark-3);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 12px;
  color: var(--white);
  font-size: clamp(0.88rem, 2.5vw, 0.95rem);
  font-family: Inter,sans-serif;
  outline: none;
  transition: all .4s;
  min-height: 48px;
}

@media (min-width: 768px) {
  .form-group input,
  .form-group textarea,
  .form-group select {
    padding: 16px 14px 8px;
  }
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-dim),0 10px 30px rgba(244,185,66,.1);
  transform: translateY(-2px);
}

.form-group label {
  position: absolute;
  top: 50%;
  left: 16px;
  transform: translateY(-50%);
  font-size: .88rem;
  color: var(--w40);
  pointer-events: none;
  transition: all .3s var(--ease);
  background: var(--dark-3);
  padding: 0 6px;
}

.form-group textarea~label {
  top: 20px;
  transform: none;
}

.form-group input:focus~label,
.form-group input:not(:placeholder-shown)~label {
  top: 0;
  font-size: .66rem;
  color: var(--gold);
  transform: none;
}

.form-group textarea:focus~label,
.form-group textarea:not(:placeholder-shown)~label {
  top: 0;
  font-size: .66rem;
  color: var(--gold);
}

.form-group textarea {
  height: 130px;
  resize: none;
  padding-top: 18px;
}

.btn-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 20px;
  background: linear-gradient(135deg,var(--gold) 0%,#f5c563 100%);
  color: var(--dark);
  border: none;
  border-radius: 12px;
  font-size: clamp(0.82rem, 2.5vw, 0.9rem);
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all .4s var(--spring);
  position: relative;
  overflow: hidden;
  min-height: 48px;
  width: 100%;
}

@media (min-width: 768px) {
  .btn-submit {
    padding: 14px;
    width: auto;
  }
}

.btn-submit::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,#f5c563 0%,var(--gold) 100%);
  opacity: 0;
  transition: opacity .4s;
}

.btn-submit:hover::before {
  opacity: 1;
}

.btn-submit svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform .4s var(--spring);
  position: relative;
  z-index: 1;
}

.btn-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(244,185,66,.35),0 0 60px rgba(244,185,66,.2);
}

.btn-submit:hover svg {
  transform: translateX(4px);
}

.btn-submit:active {
  transform: translateY(-1px);
}

.btn-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.btn-submit:disabled:hover {
  transform: none;
  box-shadow: none;
}

/* SUCCESS MESSAGE */

.form-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 40px;
  background: linear-gradient(135deg,rgba(244,185,66,.05) 0%,rgba(244,185,66,.02) 100%);
  border: 1px solid rgba(244,185,66,.2);
  border-radius: 20px;
  gap: 24px;
  min-height: 400px;
}

.success-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg,var(--gold) 0%,#f5c563 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  color: var(--dark);
  font-weight: 800;
  box-shadow: 0 20px 60px rgba(244,185,66,.4);
  animation: successPop 0.6s cubic-bezier(0.68,-0.55,0.265,1.55);
}

@keyframes successPop {
  0% {
    transform: scale(0) rotate(-180deg);
    opacity: 0;
  }

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

.form-success h3 {
  font-family: Montserrat,sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold);
  margin: 0;
}

.form-success p {
  font-size: 1.05rem;
  color: var(--w70);
  line-height: 1.6;
  max-width: 400px;
  margin: 0;
}

.form-success .btn-primary {
  margin-top: 16px;
}

/* ═══════════════════════════════════════
   PREMIUM FOOTER - PROFESSIONAL UPGRADE
═══════════════════════════════════════ */

.footer {
  background: linear-gradient(180deg, #0a0a0a 0%, #000000 100%);
  border-top: 1px solid rgba(244, 185, 66, 0.2);
  padding: 36px 4% 0;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(244, 185, 66, 0.6), transparent);
  box-shadow: 0 0 30px rgba(244, 185, 66, 0.4);
}

.footer::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 0%, rgba(244, 185, 66, 0.05), transparent 70%);
  pointer-events: none;
}

.footer-inner {
  position: relative;
  z-index: 1;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  margin-bottom: 32px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

@media (min-width: 768px) {
  .footer-top {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

@media (min-width: 1024px) {
  .footer-top {
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 50px;
  }
}

/* Footer Brand Section */

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-brand-header {
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: flex-start;
}

.footer-logo-img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(244, 185, 66, 0.4);
  border: 2px solid rgba(244, 185, 66, 0.3);
  transition: all 0.4s ease;
}

.footer-brand-header:hover .footer-logo-img {
  box-shadow: 0 12px 40px rgba(244, 185, 66, 0.6);
  transform: rotate(-5deg) scale(1.05);
  border-color: rgba(244, 185, 66, 0.6);
}

.footer-logo {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  margin-bottom: 4px;
  background: linear-gradient(135deg, #fff 0%, #f4b942 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-tagline {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #f4b942;
  text-shadow: 0 0 20px rgba(244, 185, 66, 0.4);
}

.footer-description {
  font-size: 0.85rem;
  line-height: 1.7;
  color: #999;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  margin-top: 28px;
  justify-content: flex-start;
}

/* MAIN LINK */

.social-link-instagram {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 8px;
  border-radius: 20px;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.08);
  transition: all 0.4s ease;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

/* ICON BOX */

.instagram-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: linear-gradient(
    45deg,
    #feda75 0%,
    #fa7e1e 20%,
    #d62976 45%,
    #962fbf 70%,
    #4f5bd5 100%
  );
  box-shadow: 0 8px 20px rgba(214,41,118,0.28),
    inset 0 2px 5px rgba(255,255,255,0.18);
  position: relative;
  overflow: hidden;
}

/* SHINE */

.instagram-icon::before {
  content: '';
  position: absolute;
  top: -40%;
  left: -40%;
  width: 180%;
  height: 180%;
  background: linear-gradient(
    135deg,
    rgba(255,255,255,0.28),
    transparent 40%
  );
  transform: rotate(15deg);
}

/* SVG */

.instagram-icon svg {
  width: 26px;
  height: 26px;
  stroke: white;
  stroke-width: 2.2;
  position: relative;
  z-index: 2;
}

/* TEXT */

.social-text {
  color: white;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  display: none;
}

/* HOVER */

.social-link-instagram:hover {
  transform: translateY(-5px) scale(1.03);
  box-shadow: 0 14px 34px rgba(214,41,118,0.18);
}

.social-link-instagram:hover .instagram-icon {
  transform: scale(1.06);
}

/* MOBILE */

/* Footer Columns */

.footer-col h5 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  position: relative;
  padding-bottom: 12px;
}

.footer-col h5::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, #f4b942, transparent);
  box-shadow: 0 0 10px rgba(244, 185, 66, 0.5);
  transform: none;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
}

.footer-col a,
.footer-col p {
  color: #999;
  text-decoration: none;
  font-size: 0.82rem;
  line-height: 1.6;
  transition: all 0.3s ease;
  position: relative;
  padding-left: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-col a::before {
  content: '→';
  opacity: 0;
  color: #f4b942;
  transition: all 0.3s ease;
  font-size: 0.8rem;
  transform: translateX(-10px);
}

.footer-col a:hover {
  color: #f4b942;
  padding-left: 20px;
  text-shadow: 0 0 10px rgba(244, 185, 66, 0.3);
}

.footer-col a:hover::before {
  opacity: 1;
  transform: translateX(0);
}

/* Contact Info Icons */

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #999;
  font-size: 0.88rem;
  line-height: 1.6;
  margin-bottom: 12px;
}

.footer-contact-icon {
  color: #f4b942;
  font-size: 16px;
  margin-top: 2px;
  min-width: 20px;
}

.footer-contact-item:hover {
  color: #f4b942;
}

.footer-contact-item a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-contact-item a:hover {
  color: #f4b942;
}

/* Footer Bottom */

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  flex-wrap: wrap;
  gap: 12px;
  flex-direction: column;
  text-align: center;
}

.footer-copy {
  font-size: 0.78rem;
  color: #666;
  letter-spacing: 0.05em;
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a {
  color: #999;
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.3s;
  position: relative;
}

.footer-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: #f4b942;
  transition: width 0.3s;
}

.footer-links a:hover {
  color: #f4b942;
}

.footer-links a:hover::after {
  width: 100%;
}

/* Certifications/Badges */

.footer-certifications {
  display: flex;
  gap: 15px;
  margin-top: 20px;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.cert-badge {
  padding: 6px 12px;
  background: rgba(244, 185, 66, 0.1);
  border: 1px solid rgba(244, 185, 66, 0.2);
  border-radius: 20px;
  font-size: 0.7rem;
  color: #f4b942;
  letter-spacing: 0.05em;
  transition: all 0.3s;
}

.cert-badge:hover {
  background: rgba(244, 185, 66, 0.15);
  border-color: rgba(244, 185, 66, 0.4);
  box-shadow: 0 4px 15px rgba(244, 185, 66, 0.2);
  transform: translateY(-2px);
}

/* Footer Responsive */

/* PARTICLE CANVAS */

.particle-canvas {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: .6;
}

/* REVEAL ANIMATIONS */

.reveal-up,
.reveal-left,
.reveal-right,
.reveal-scale,
.reveal-fade {
  opacity: 0;
  transition: opacity var(--t2) var(--ease),transform var(--t2) var(--ease);
}

.reveal-up {
  transform: translateY(60px);
}

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

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

.reveal-scale {
  transform: scale(.92) translateY(30px);
}

.reveal-fade {
  opacity: 0;
}

.reveal-up.visible,
.reveal-left.visible,
.reveal-right.visible,
.reveal-scale.visible,
.reveal-fade.visible {
  opacity: 1;
  transform: none;
}

/* RESPONSIVE */

@media (max-width:1100px) {
  .product-grid {
    grid-template-columns: 1fr 1fr;
  }

  .about-container,
  .services-grid,
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .about-right {
    height: 380px;
  }

  .section {
    padding: 60px 6%;
  }
}

@media (max-width:768px) {
  nav,
  .nav-cta {
    display: none;
  }

  .hero-title {
    font-size: clamp(2.4rem,9vw,4.5rem);
  }

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

  .stat-item {
    padding: 0 20px;
  }

  .stat-divider {
    display: none;
  }

  .cb-title {
    font-size: clamp(1.8rem,7vw,3rem);
  }

  .section {
    padding: 50px 5%;
  }

  .section-header {
    margin-bottom: 40px;
  }
}

@media (max-width:480px) {
  .hero-title {
    font-size: 2.2rem;
  }

  .btn-primary,
  .btn-secondary {
    padding: 13px 22px;
    font-size: .78rem;
  }

  .contact-wrapper {
    gap: 35px;
  }

  .section {
    padding: 40px 5%;
  }
}

/* PREMIUM GALLERY */

.gallery {
  background: var(--dark-3);
  position: relative;
}

.gallery::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%,rgba(244,185,66,.03),transparent 70%);
  pointer-events: none;
}

.gallery-sub {
  font-size: .96rem;
  color: var(--w70);
  margin-top: 12px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  line-height: 1.65;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

@media (min-width: 640px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
  }
}

@media (min-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }
}

.gallery-item {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
  background: var(--dark-4);
  transition: transform .4s var(--ease);
}

.gallery-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,rgba(244,185,66,.1),transparent);
  opacity: 0;
  transition: opacity .4s;
  z-index: 2;
}

.gallery-item:hover {
  transform: scale(1.02);
}

.gallery-item:hover::before {
  opacity: 1;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t3) var(--ease),filter .6s;
}

.gallery-item:hover img {
  transform: scale(1.08);
  filter: brightness(1.1);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,rgba(6,16,26,.85) 0%,transparent 55%);
  display: flex;
  align-items: flex-end;
  padding: 14px;
  opacity: 0;
  transition: opacity .5s var(--ease);
  z-index: 3;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay span {
  font-size: .7rem;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--gold);
  text-shadow: 0 0 10px rgba(244,185,66,.5);
}

/* PREMIUM LIGHTBOX */

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(6,16,26,.97);
  backdrop-filter: blur(20px);
  z-index: 7000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all .5s var(--ease);
}

.lightbox.open {
  opacity: 1;
  visibility: visible;
}

.lb-img-wrap {
  max-width: 90vw;
  max-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.lb-img-wrap img {
  max-width: 100%;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 40px 100px rgba(0,0,0,.8),0 0 60px rgba(244,185,66,.1);
  transition: opacity .4s;
  border: 1px solid rgba(255,255,255,.1);
}

.lb-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(255,255,255,.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.1);
  color: var(--w70);
  font-size: 1.5rem;
  cursor: pointer;
  transition: all .3s;
  z-index: 10;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 768px) {
  .lb-close {
    top: 24px;
    right: 32px;
    width: 48px;
    height: 48px;
    font-size: 1.8rem;
  }
}

.lb-close:hover {
  color: var(--gold);
  background: rgba(244,185,66,.1);
  border-color: var(--gold);
  transform: rotate(90deg);
}

.lb-prev,
.lb-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.12);
  color: var(--white);
  font-size: 1.2rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  transition: all .3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 768px) {
  .lb-prev,
  .lb-next {
    width: 52px;
    height: 52px;
    font-size: 1.5rem;
  }
}

.lb-prev {
  left: 12px;
}

.lb-next {
  right: 12px;
}

@media (min-width: 768px) {
  .lb-prev {
    left: 24px;
  }
  
  .lb-next {
    right: 24px;
  }
}

.lb-prev:hover,
.lb-next:hover {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
  box-shadow: 0 8px 30px rgba(244,185,66,.4);
}

.lb-caption {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: clamp(0.65rem, 2vw, 0.75rem);
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--w70);
  background: rgba(6,16,26,.9);
  backdrop-filter: blur(10px);
  padding: 10px 18px;
  border-radius: 30px;
  border: 1px solid rgba(255,255,255,.1);
  max-width: 90%;
  text-align: center;
}

@media (min-width: 768px) {
  .lb-caption {
    bottom: 28px;
    padding: 12px 24px;
    letter-spacing: .18em;
  }
}

/* PREMIUM WHATSAPP FLOAT */

.whatsapp-float {
  position: fixed;
  bottom: 80px;
  right: 18px;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg,#25d366 0%,#20ba5a 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  box-shadow: 0 8px 30px rgba(37,211,102,.4);
  transition: all .4s var(--spring);
  animation: waPulse 2.5s ease-in-out infinite;
  cursor: pointer;
}

@media (min-width: 768px) {
  .whatsapp-float {
    bottom: 18px;
    width: 50px;
    height: 50px;
  }
}

.whatsapp-float::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(37,211,102,.3);
  animation: waRing 2.5s ease-in-out infinite;
}

.whatsapp-float::after {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px solid rgba(37,211,102,.2);
  animation: waRing 2.5s ease-in-out infinite .3s;
}

.whatsapp-float svg {
  width: 26px;
  height: 26px;
  color: white;
  position: relative;
  z-index: 1;
  transition: transform .4s;
}

.whatsapp-float:hover {
  transform: scale(1.15);
  box-shadow: 0 12px 40px rgba(37,211,102,.6);
  animation: none;
}

.whatsapp-float:hover::before,
.whatsapp-float:hover::after {
  animation: none;
  opacity: 0;
}

.whatsapp-float:hover svg {
  transform: rotate(15deg);
}

@keyframes waPulse {
  0%, 100% {
    box-shadow: 0 8px 30px rgba(37,211,102,.4);
  }

  50% {
    box-shadow: 0 8px 50px rgba(37,211,102,.7);
  }
}

@keyframes waRing {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  100% {
    transform: scale(1.3);
    opacity: 0;
  }
}

/* CONTACT PHONE LINKS */

.cd-phones {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.cd-phones a {
  color: var(--w70);
  text-decoration: none;
  transition: color .3s;
  font-size: 0.88rem;
}

.cd-phones a:hover {
  color: var(--gold);
}

/* RESPONSIVE GALLERY */

@media (max-width:1100px) {
  .gallery-grid {
    grid-template-columns: repeat(3,1fr);
  }
}

@media (max-width:768px) {
  .gallery-grid {
    grid-template-columns: repeat(2,1fr);
  }

  .lb-prev {
    left: 8px;
  }

  .lb-next {
    right: 8px;
  }
}

@media (max-width:480px) {
  .gallery-grid {
    grid-template-columns: repeat(2,1fr);
    gap: 10px;
  }

  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
  }

  .back-to-top {
    bottom: 80px;
    right: 20px;
    width: 44px;
    height: 44px;
  }
}

/* PREMIUM TESTIMONIALS (Future Enhancement) */

.testimonials {
  background: var(--dark-2);
  position: relative;
  overflow: hidden;
}

.testimonials::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 70% 50%,rgba(244,185,66,.05),transparent 60%);
  pointer-events: none;
}

.testimonial-card {
  background: var(--dark-3);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 20px;
  padding: 40px;
  position: relative;
  transition: all .4s var(--ease);
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 20px;
  left: 30px;
  font-size: 6rem;
  color: rgba(244,185,66,.1);
  font-family: Georgia,serif;
  line-height: 1;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  border-color: rgba(244,185,66,.3);
  box-shadow: 0 20px 50px rgba(0,0,0,.3);
}

.testimonial-text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--w70);
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--dark-4);
  border: 2px solid var(--gold);
}

.testimonial-info h5 {
  font-size: .95rem;
  color: var(--white);
  margin-bottom: 4px;
}

.testimonial-info p {
  font-size: .8rem;
  color: var(--w40);
}

/* ══════════════════════════════════════════════════════════════
   PREMIUM MULTI-PAGE COMPONENTS
══════════════════════════════════════════════════════════════ */

/* PAGE TRANSITIONS */

body {
  animation: pageIn .6s var(--ease) forwards;
}

@keyframes pageIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* PREMIUM PAGE HERO */

.page-hero {
  position: relative;
  height: 50vh;
  min-height: 320px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 768px) {
  .page-hero {
    height: 55vh;
    min-height: 400px;
  }
}

@media (min-width: 1024px) {
  .page-hero {
    height: 60vh;
    min-height: 500px;
  }
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%,rgba(244,185,66,.05),transparent 70%);
  z-index: 1;
  pointer-events: none;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.page-hero-bg img {
  width: 100%;
  height: 120%;
  object-fit: cover;
  transform-origin: center center;
  filter: brightness(.9);
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,rgba(6,16,26,.88) 0%,rgba(6,16,26,.65) 100%);
  z-index: 1;
}

.page-hero-overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%,rgba(244,185,66,.08),transparent 60%);
}

.page-hero-content {
  position: relative;
  z-index: 5;
  text-align: center;
  padding: 0 5%;
  max-width: 100%;
}

@media (min-width: 768px) {
  .page-hero-content {
    padding: 0 8%;
    max-width: 800px;
  }
}

.page-hero-content h1 {
  font-family: Montserrat,sans-serif;
  font-size: clamp(1.8rem, 8vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 12px;
  text-shadow: 0 0 60px rgba(244,185,66,.3);
}

@media (min-width: 768px) {
  .page-hero-content h1 {
    line-height: 1.05;
    margin-bottom: 16px;
  }
}

.page-hero-content p {
  font-size: clamp(0.85rem, 2.5vw, 1rem);
  color: var(--w70);
  letter-spacing: .04em;
  text-shadow: 0 2px 10px rgba(0,0,0,.5);
}

/* ═══════════════════════════════════════
   ENHANCED PAGE HERO (Services Page)
═══════════════════════════════════════ */
.page-hero-enhanced {
  height: 70vh;
  min-height: 550px;
}

@media (min-width: 768px) {
  .page-hero-enhanced {
    height: 75vh;
    min-height: 600px;
  }
}

@media (min-width: 1024px) {
  .page-hero-enhanced {
    height: 80vh;
    min-height: 650px;
  }
}

.hero-gradient-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, 
    rgba(0,0,0,0.85) 0%, 
    rgba(194,151,68,0.15) 50%, 
    rgba(0,0,0,0.9) 100%);
  z-index: 1;
  animation: gradientShift 15s ease-in-out infinite alternate;
}

@keyframes gradientShift {
  0% { opacity: 0.9; }
  100% { opacity: 1; }
}

/* Floating service icons */
.hero-float-icons {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  overflow: hidden;
}

.hero-float-icon {
  position: absolute;
  left: var(--x);
  top: var(--y);
  font-size: clamp(2rem, 4vw, 3.5rem);
  opacity: 0.12;
  animation: floatIcon 8s ease-in-out infinite;
  animation-delay: var(--delay);
  filter: drop-shadow(0 0 30px rgba(194,151,68,0.6));
  will-change: transform;
}

@keyframes floatIcon {
  0%, 100% { 
    transform: translateY(0) rotate(0deg) scale(1); 
  }
  25% { 
    transform: translateY(-20px) rotate(5deg) scale(1.05); 
  }
  50% { 
    transform: translateY(-40px) rotate(-5deg) scale(1.1); 
  }
  75% { 
    transform: translateY(-20px) rotate(3deg) scale(1.05); 
  }
}

/* Service badges in hero */
.hero-service-badges {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 32px;
  animation: fadeInUp 0.8s ease-out 0.6s both;
}

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

.service-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(194,151,68,0.25);
  border-radius: 50px;
  color: #fff;
  font-size: clamp(0.8rem, 2vw, 0.95rem);
  font-weight: 500;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.service-badge:hover {
  background: rgba(194,151,68,0.25);
  border-color: rgba(194,151,68,0.6);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 25px rgba(194,151,68,0.3);
}

.badge-icon {
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.badge-text {
  white-space: nowrap;
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

@media (max-width: 767px) {
  .hero-service-badges {
    gap: 8px;
    margin-top: 24px;
  }
  
  .service-badge {
    padding: 8px 16px;
    gap: 6px;
  }
  
  .hero-float-icon {
    font-size: 2rem;
    opacity: 0.08;
  }
}

/* PREMIUM BREADCRUMB */

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 5%;
  background: linear-gradient(135deg,var(--dark-2) 0%,var(--dark-3) 100%);
  border-bottom: 1px solid rgba(255,255,255,.05);
  font-size: clamp(0.68rem, 2vw, 0.75rem);
  letter-spacing: .06em;
  position: relative;
  flex-wrap: wrap;
}

@media (min-width: 768px) {
  .breadcrumb {
    padding: 14px 4%;
    gap: 10px;
  }
}

.breadcrumb::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg,transparent,rgba(244,185,66,.2),transparent);
}

.breadcrumb a {
  color: var(--w70);
  text-decoration: none;
  transition: all .3s;
  padding: 5px 10px;
  border-radius: 6px;
}

.breadcrumb a:hover {
  color: var(--gold);
  background: rgba(244,185,66,.05);
}

.breadcrumb span {
  color: var(--w40);
  transition: color .3s;
}

.breadcrumb span:last-child {
  color: var(--gold);
  font-weight: 600;
}

/* NAV RIGHT CONTAINER */

.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* ACTIVE NAV STATE */

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

nav a.active::after {
  width: 100%;
}

/* FOOTER MULTI-COLUMN */

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 60px;
  margin-bottom: 50px;
}

.footer-brand {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.footer-logo-img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 10px;
}

.footer-logo {
  font-family: Montserrat,sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: .02em;
  margin-bottom: 8px;
}

.footer-tagline {
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 6px;
}

.footer-col h5 {
  font-size: .8rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
  font-weight: 600;
}

.footer-col a,
.footer-col p {
  display: block;
  color: var(--w70);
  text-decoration: none;
  font-size: .85rem;
  line-height: 1.8;
  transition: color .3s;
}

.footer-col a:hover {
  color: var(--gold);
  padding-left: 4px;
}

.footer-col p {
  margin-bottom: 12px;
  line-height: 1.7;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,.06);
  flex-wrap: wrap;
  gap: 20px;
}

/* GOLD TEXT UTILITY */

.gold {
  color: var(--gold);
}

/* WHY US SECTION */

.why-us {
  background: var(--dark);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.why-card {
  background: var(--dark-3);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 18px;
  padding: 22px 18px;
  text-align: center;
  transition: transform var(--t2) var(--ease),border-color var(--t2),box-shadow var(--t2);
}

.why-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold);
  box-shadow: 0 30px 60px rgba(0,0,0,.4);
}

.why-icon {
  font-size: 2rem;
  margin-bottom: 16px;
  filter: grayscale(1) brightness(1.2);
}

.why-card h4 {
  font-family: Montserrat,sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.why-card p {
  font-size: 0.8rem;
  color: var(--w70);
  line-height: 1.65;
}

/* CTA BAND */

.cta-band {
  background: linear-gradient(135deg,var(--dark-3) 0%,var(--dark-4) 100%);
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
  padding: 40px 5%;
}

@media (min-width: 768px) {
  .cta-band {
    padding: 50px 5%;
  }
}

@media (min-width: 1024px) {
  .cta-band {
    padding: 60px 4%;
  }
}

.cta-inner {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta-inner h3 {
  font-family: Montserrat,sans-serif;
  font-size: clamp(1.6rem, 5vw, 2.6rem);
  font-weight: 800;
  margin-bottom: 14px;
  line-height: 1.25;
}

@media (min-width: 768px) {
  .cta-inner h3 {
    margin-bottom: 16px;
    line-height: 1.2;
  }
}

.cta-inner p {
  font-size: clamp(0.85rem, 2.5vw, 0.95rem);
  color: var(--w70);
  margin-bottom: 24px;
  line-height: 1.7;
}

@media (min-width: 768px) {
  .cta-inner p {
    margin-bottom: 28px;
    line-height: 1.65;
  }
}

/* AMC PACKAGES */

.amc-section {
  background: var(--dark-2);
}

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

.amc-card {
  background: var(--dark-3);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 18px;
  padding: 34px 28px;
  transition: transform var(--t2) var(--ease),border-color var(--t2),box-shadow var(--t2);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.amc-card:hover {
  transform: translateY(-10px);
  border-color: var(--gold);
  box-shadow: 0 30px 70px rgba(0,0,0,.5);
}

.amc-card h3 {
  font-family: Montserrat,sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--gold);
}

.amc-card .amc-price {
  font-size: .82rem;
  color: var(--w40);
  margin-bottom: 18px;
  letter-spacing: .06em;
}

.amc-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-grow: 1;
}

.amc-card li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .86rem;
  color: var(--w70);
  line-height: 1.55;
}

.amc-card li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
  font-size: .95rem;
  flex-shrink: 0;
}

.amc-card .btn-primary,
.amc-card .btn-secondary {
  margin-top: auto;
  width: 100%;
  justify-content: center;
}

.amc-card--featured {
  border-color: var(--gold);
  box-shadow: 0 20px 50px rgba(244,185,66,.15);
}

.amc-badge {
  display: inline-block;
  padding: 5px 12px;
  background: var(--gold-dim);
  color: var(--gold);
  border-radius: 18px;
  font-size: .68rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 6px;
  width: fit-content;
}

/* CONTACT HOURS */

.contact-hours {
  margin-top: 24px;
  padding: 16px;
  background: var(--dark-3);
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.06);
}

.contact-hours h4 {
  font-size: .82rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
  font-weight: 600;
}

.contact-hours p {
  font-size: .88rem;
  color: var(--w70);
  line-height: 1.65;
  margin-bottom: 5px;
}

.contact-hours p:last-child {
  margin-bottom: 0;
}

/* FORM SELECT STYLING */

.form-group select {
  width: 100%;
  padding: 20px 18px 10px;
  background: var(--dark-3);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px;
  color: var(--white);
  font-size: .95rem;
  font-family: Inter,sans-serif;
  outline: none;
  transition: border-color .4s,box-shadow .4s;
  cursor: pointer;
}

.form-group select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-dim);
}

.form-group select option {
  background: var(--dark-3);
  color: var(--white);
  padding: 10px;
}

/* RESPONSIVE - MULTI-PAGE */

@media (max-width:1100px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

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

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

@media (max-width:768px) {
  .hamburger {
    display: flex;
  }

  nav {
    display: none;
  }

  .btn-nav {
    display: none;
  }

  .page-hero {
    height: 50vh;
    min-height: 400px;
  }

  .page-hero-content h1 {
    font-size: clamp(2.2rem,8vw,3.5rem);
  }

  .breadcrumb {
    padding: 16px 6%;
    font-size: .75rem;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-links {
    order: -1;
  }

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

@media (max-width:480px) {
  .mobile-menu {
    width: 100%;
    right: -100%;
  }

  .page-hero-content h1 {
    font-size: 2rem;
  }
}

/* ═══════════════════════════════════════
   QUICK LINKS SECTION (Homepage)
═══════════════════════════════════════ */

.quick-links {
  background: linear-gradient(180deg, #0a0a0a 0%, #0f0f0f 100%);
}

.quick-links-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  max-width: 1200px;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .quick-links-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

@media (min-width: 1024px) {
  .quick-links-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}

.quick-link-card {
  position: relative;
  background: linear-gradient(135deg, rgba(244, 185, 66, 0.05) 0%, rgba(244, 185, 66, 0.02) 100%);
  border: 1px solid rgba(244, 185, 66, 0.1);
  border-radius: 16px;
  padding: 22px 18px;
  text-decoration: none;
  color: #e0e0e0;
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.quick-link-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(244, 185, 66, 0.1) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 0;
}

.quick-link-card:hover::before {
  opacity: 1;
}

.quick-link-card:hover {
  transform: translateY(-8px);
  border-color: rgba(244, 185, 66, 0.3);
  box-shadow: 0 20px 60px rgba(244, 185, 66, 0.15);
}

.ql-icon {
  font-size: 32px;
  line-height: 1;
  position: relative;
  z-index: 1;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.quick-link-card:hover .ql-icon {
  transform: scale(1.1) rotate(5deg);
}

.quick-link-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
  position: relative;
  z-index: 1;
  transition: color 0.3s ease;
}

.quick-link-card:hover h3 {
  color: #f4b942;
}

.quick-link-card p {
  font-size: 0.8rem;
  line-height: 1.6;
  color: #b0b0b0;
  margin: 0;
  position: relative;
  z-index: 1;
  flex: 1;
}

.ql-arrow {
  font-size: 24px;
  color: #f4b942;
  position: relative;
  z-index: 1;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  display: inline-block;
}

.quick-link-card:hover .ql-arrow {
  transform: translateX(8px);
}

/* Responsive */

/* ═══════════════════════════════════════
   PRODUCT PAGE PREMIUM ENHANCEMENTS
═══════════════════════════════════════ */

/* Product Navigation */

.product-nav-wrapper {
  position: fixed;
  top: 50%;
  right: 40px;
  transform: translateY(-50%);
  z-index: 100;
}

.product-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: rgba(15, 15, 15, 0.95);
  backdrop-filter: blur(20px);
  padding: 12px 8px;
  border-radius: 40px;
  border: 1px solid rgba(244, 185, 66, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
  width: 140px;
}

.product-nav-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 25px;
  text-decoration: none;
  color: #888;
  font-size: 13px;
  font-weight: 500;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.product-nav-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 3px;
  background: linear-gradient(180deg, #f4b942, #ffd700);
  transform: scaleY(0);
  transition: transform 0.4s ease;
}

.product-nav-item:hover::before,
.product-nav-item.active::before {
  transform: scaleY(1);
}

.product-nav-item:hover,
.product-nav-item.active {
  background: rgba(244, 185, 66, 0.1);
  color: #f4b942;
}

.pn-icon {
  font-size: 18px;
  flex-shrink: 0;
  transition: transform 0.4s ease;
}

.product-nav-item:hover .pn-icon {
  transform: scale(1.15);
}

.pn-text {
  opacity: 1;
  transition: opacity 0.4s ease;
  font-size: 12px;
}

/* Product Intro Section */

.product-intro {
  padding: 50px 0 40px;
  background: linear-gradient(180deg, #0a0a0a 0%, #0f0f0f 100%);
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .product-intro {
    padding: 70px 0 50px;
  }
}

@media (min-width: 1024px) {
  .product-intro {
    padding: 80px 0 60px;
  }
}

.product-intro::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(244, 185, 66, 0.5), transparent);
}

.product-intro-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  padding: 0 5%;
}

@media (min-width: 768px) {
  .product-intro-content {
    padding: 0 20px;
  }
}

.product-intro-content h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.6rem, 6vw, 2rem);
  font-weight: 800;
  color: #fff;
  margin: 0 0 16px 0;
  background: linear-gradient(135deg, #fff 0%, #f4b942 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .product-intro-content h2 {
    margin: 0 0 20px 0;
  }
}

.product-intro-content p {
  font-size: clamp(0.9rem, 2.5vw, 1rem);
  line-height: 1.7;
  color: #b0b0b0;
  margin-bottom: 32px;
}

@media (min-width: 768px) {
  .product-intro-content p {
    margin-bottom: 40px;
  }
}

.product-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 700px;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .product-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}

@media (min-width: 1024px) {
  .product-stats {
    gap: 40px;
  }
}

.ps-item {
  text-align: center;
  padding: 24px 16px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  transition: all 0.4s ease;
}

@media (min-width: 768px) {
  .ps-item {
    padding: 30px 20px;
  }
}

.ps-item:hover {
  background: rgba(244, 185, 66, 0.05);
  border-color: rgba(244, 185, 66, 0.2);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(244, 185, 66, 0.15);
}

.ps-number {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.8rem, 6vw, 2.25rem);
  font-weight: 800;
  color: #f4b942;
  margin-bottom: 8px;
  line-height: 1;
}

.ps-label {
  font-size: clamp(0.7rem, 2vw, 0.875rem);
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  line-height: 1.4;
}

@media (min-width: 768px) {
  .ps-label {
    letter-spacing: 2px;
  }
}

/* Product Number Badge */

.product-number {
  position: absolute;
  top: 40px;
  left: 40px;
  font-family: 'Montserrat', sans-serif;
  font-size: 60px;
  font-weight: 900;
  color: rgba(244, 185, 66, 0.05);
  line-height: 1;
  pointer-events: none;
  z-index: 0;
  user-select: none;
}

/* Section Dividers */

.cinematic-product::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(244, 185, 66, 0.3), transparent);
}

/* Enhanced Gallery Row Styles */

.cp-right [style*="display:grid"] {
  position: relative;
  grid-template-columns: 1fr !important;
  gap: 12px !important;
}

.cp-right [style*="display:grid"]::before {
  content: '';
  position: absolute;
  top: -16px;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(244, 185, 66, 0.2), transparent);
}

/* Responsive */

@media (max-width: 1200px) {
  .product-nav-wrapper {
    right: 20px;
  }

  .product-number {
    font-size: 90px;
    top: 30px;
    left: 30px;
  }
}

@media (max-width: 968px) {
  .product-nav-wrapper {
    display: none;
  }

  .product-intro-content h2 {
    font-size: 36px;
  }

  .product-stats {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .product-number {
    font-size: 70px;
    top: 20px;
    left: 20px;
  }
}

/* ═══════════════════════════════════════
   CINEMATIC PRODUCT SHOWCASE - PREMIUM UPGRADE
═══════════════════════════════════════ */

.cinematic-product {
  min-height: auto;
  display: flex;
  align-items: center;
  padding: 60px 0;
  position: relative;
  background: linear-gradient(180deg, #0a0a0a 0%, #0f0f0f 50%, #0a0a0a 100%);
  overflow: hidden;
}

@media (min-width: 1024px) {
  .cinematic-product {
    min-height: 100vh;
    padding: 80px 0;
  }
}

.cinematic-product::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 50%, rgba(244, 185, 66, 0.03) 0%, transparent 50%);
  pointer-events: none;
  animation: pulseGlow 8s ease-in-out infinite;
}

@keyframes pulseGlow {
  0%, 100% {
    opacity: 0.5;
  }

  50% {
    opacity: 1;
  }
}

/* Animated Background Particles */

.cinematic-product::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(2px 2px at 20% 30%, rgba(244, 185, 66, 0.15), transparent),
    radial-gradient(2px 2px at 60% 70%, rgba(244, 185, 66, 0.1), transparent),
    radial-gradient(1px 1px at 50% 50%, rgba(255, 255, 255, 0.1), transparent),
    radial-gradient(1px 1px at 80% 10%, rgba(255, 255, 255, 0.08), transparent);
  background-size: 200% 200%;
  background-position: 0% 0%;
  animation: particleFloat 20s ease-in-out infinite;
  pointer-events: none;
}

@keyframes particleFloat {
  0%, 100% {
    background-position: 0% 0%;
  }

  50% {
    background-position: 100% 100%;
  }
}

.cp-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 5%;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 1;
}

@media (min-width: 1024px) {
  .cp-container {
    grid-template-columns: 1fr 1fr;
    padding: 0 20px;
  }
}

/* LEFT SIDE - Content */

.cp-left {
  position: relative;
  z-index: 2;
}

.cp-label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #f4b942;
  margin-bottom: 20px;
  display: inline-block;
  padding: 8px 20px;
  background: rgba(244, 185, 66, 0.1);
  border: 1px solid rgba(244, 185, 66, 0.2);
  border-radius: 30px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

.cp-label::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(244, 185, 66, 0.3), transparent);
  transition: left 0.6s ease;
}

.cp-label:hover::before {
  left: 100%;
}

.cp-label:hover {
  background: rgba(244, 185, 66, 0.15);
  border-color: rgba(244, 185, 66, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(244, 185, 66, 0.2);
}

.cp-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.8rem, 6vw, 3rem);
  font-weight: 800;
  line-height: 1.2;
  color: #fff;
  margin: 0 0 24px 0;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

@media (min-width: 768px) {
  .cp-title {
    margin: 0 0 30px 0;
    line-height: 1.1;
    letter-spacing: -1px;
  }
}

.cp-title .gold {
  color: #f4b942;
  display: block;
  background: linear-gradient(135deg, #f4b942 0%, #ffd700 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
  0%, 100% {
    filter: brightness(1);
  }

  50% {
    filter: brightness(1.2);
  }
}

.cp-desc {
  font-size: clamp(0.85rem, 2.5vw, 0.95rem);
  line-height: 1.7;
  color: #b0b0b0;
  margin-bottom: 24px;
  max-width: 100%;
}

@media (min-width: 768px) {
  .cp-desc {
    margin-bottom: 30px;
    max-width: 540px;
  }
}

.cp-features {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

@media (min-width: 640px) {
  .cp-features {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
}

@media (min-width: 1024px) {
  .cp-features {
    gap: 16px;
    margin-bottom: 40px;
  }
}

.cp-features li {
  font-size: clamp(0.8rem, 2vw, 0.875rem);
  color: #e0e0e0;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
  line-height: 1.4;
}

@media (min-width: 768px) {
  .cp-features li {
    padding: 10px 12px;
    gap: 12px;
  }
}

.cp-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 3px;
  background: linear-gradient(180deg, #f4b942, #ffd700);
  transform: scaleY(0);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.cp-features li:hover::before {
  transform: scaleY(1);
}

.cp-features li:hover {
  background: rgba(244, 185, 66, 0.08);
  border-color: rgba(244, 185, 66, 0.3);
  transform: translateX(8px);
  box-shadow: 0 4px 16px rgba(244, 185, 66, 0.15);
}

.cp-icon {
  color: #f4b942;
  font-size: 16px;
  flex-shrink: 0;
  transition: transform 0.4s ease;
}

.cp-features li:hover .cp-icon {
  transform: rotate(90deg) scale(1.2);
}

.cp-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  flex-direction: column;
}

@media (min-width: 640px) {
  .cp-cta {
    flex-direction: row;
    gap: 16px;
  }
}

/* RIGHT SIDE - Gallery with Uniform Sizes */

.cp-right {
  position: relative;
  min-height: 400px;
  height: auto;
}

@media (min-width: 768px) {
  .cp-right {
    min-height: 500px;
    height: 400px;
  }
}

@media (min-width: 1024px) {
  .cp-right {
    min-height: 600px;
  }
}

/* Additional Gallery Grid */

.cp-right [style*="display:grid"] {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 16px !important;
  margin-top: 24px !important;
}

@media (min-width: 640px) {
  .cp-right [style*="display:grid"] {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 18px !important;
  }
}

@media (min-width: 1024px) {
  .cp-right [style*="display:grid"] {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 20px !important;
    margin-top: 32px !important;
  }
}

.cp-right [style*="display:grid"] > div {
  aspect-ratio: 1/1 !important;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  border: 2px solid rgba(244, 185, 66, 0.2);
}

.cp-right [style*="display:grid"] > div:hover {
  transform: scale(1.03);
  border-color: rgba(244, 185, 66, 0.6);
  box-shadow: 0 12px 32px rgba(244, 185, 66, 0.25);
}

.cp-right [style*="display:grid"] > div img {
  width: 100%;
  height: 100%;
  object-fit: contain !important;
  background: rgba(0, 0, 0, 0.2);
  transition: transform 0.6s ease;
}

@media (min-width: 1024px) {
  .cp-right [style*="display:grid"] > div img {
    object-fit: cover !important;
  }
}

.cp-right [style*="display:grid"] > div:hover img {
  transform: scale(1.05);
}

@media (min-width: 1024px) {
  .cp-right [style*="display:grid"] > div:hover img {
    transform: scale(1.08);
  }
}

/* Gallery Row Hover Effects */

.cp-right [style*="display:grid"] > div {
  position: relative;
  cursor: pointer;
}

.cp-right [style*="display:grid"] > div::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(244, 185, 66, 0.1), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.cp-right [style*="display:grid"] > div:hover::after {
  opacity: 1;
}

/* REVERSE LAYOUT */

.cp-reverse .cp-container {
  grid-template-columns: 1fr 1fr;
}

.cp-reverse .cp-left {
  order: 2;
}

.cp-reverse .cp-right {
  order: 1;
}

/* RESPONSIVE */

@media (max-width: 1200px) {
  .cp-container {
    gap: 60px;
    padding: 0 30px;
  }

  .cp-title {
    font-size: 48px;
  }

  .cp-right {
    min-height: 500px;
  }
}

@media (max-width: 968px) {
  .cinematic-product {
    min-height: auto;
    padding: 80px 0;
  }

  .cp-container {
    grid-template-columns: 1fr;
    gap: 60px;
    padding: 0 20px;
  }

  .cp-reverse .cp-left {
    order: 1;
  }

  .cp-reverse .cp-right {
    order: 2;
  }

  .cp-title {
    font-size: 42px;
  }

  .cp-desc {
    font-size: 16px;
  }

  .cp-features {
    grid-template-columns: 1fr;
  }
}

/* Mobile Full-Width Gallery - No Blank Spaces */
@media (max-width: 768px) {
  .cinematic-product {
    padding: 60px 0;
  }

  .cp-container {
    padding: 0 15px;
    gap: 40px;
  }

  .cp-right {
    width: 100%;
    margin: 0;
    padding: 0;
  }

  .cp-gallery {
    width: 100%;
    border-radius: 8px;
  }
}

@media (max-width: 480px) {
  .cinematic-product {
    padding: 40px 0;
  }

  .cp-container {
    padding: 0 10px;
    gap: 30px;
  }

  .cp-left {
    padding: 0 5px;
  }

  .cp-right {
    width: 100%;
    margin: 0;
    padding: 0;
  }

  .cp-gallery {
    width: 100%;
    border-radius: 6px;
  }

  .cp-title {
    font-size: 32px;
  }

  .cp-desc {
    font-size: 14px;
  }
}

/* PARALLAX MOTION */

[data-parallax-y] {
  transition: transform 0.3s ease-out;
}

/* ═══════════════════════════════════════
   IMMERSIVE SERVICE STORYTELLING
═══════════════════════════════════════ */

.immersive-service {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 60px 0;
  position: relative;
  background: linear-gradient(180deg, #0a0a0a 0%, #0d0d0d 50%, #0a0a0a 100%);
  overflow: hidden;
}

.immersive-service::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 70% 50%, rgba(244, 185, 66, 0.04) 0%, transparent 60%);
  pointer-events: none;
}

.is-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

/* LEFT SIDE - Cinematic Image */

.is-left {
  position: relative;
  height: 400px;
}

.is-image-wrap {
  position: relative;
  width: 100%;
  height: 100%;
}

.is-main-image {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.is-main-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(244, 185, 66, 0.15) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.6s ease;
  z-index: 2;
}

.is-main-image:hover::before {
  opacity: 1;
}

.is-main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.is-main-image:hover img {
  transform: scale(1.08);
}

.is-glow-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at center, rgba(244, 185, 66, 0.2) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.8s ease;
  pointer-events: none;
  z-index: 3;
}

.is-main-image:hover .is-glow-overlay {
  opacity: 1;
}

/* Floating Support Card - Glassmorphism */

.is-float-card {
  position: absolute;
  bottom: 20px;
  right: 20px;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  gap: 16px;
  z-index: 10;
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.is-float-card:hover {
  transform: translateY(-8px) scale(1.05);
  background: rgba(244, 185, 66, 0.15);
  border-color: rgba(244, 185, 66, 0.4);
  box-shadow: 0 30px 80px rgba(244, 185, 66, 0.3);
}

.is-float-icon {
  font-size: 28px;
  line-height: 1;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.is-float-card:hover .is-float-icon {
  transform: scale(1.2) rotate(10deg);
}

.is-float-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.is-float-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #f4b942;
}

.is-float-value {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
}

/* RIGHT SIDE - Content */

.is-right {
  position: relative;
  z-index: 2;
}

.is-number {
  font-family: 'Montserrat', sans-serif;
  font-size: 60px;
  font-weight: 800;
  line-height: 1;
  color: rgba(244, 185, 66, 0.08);
  margin-bottom: -20px;
  letter-spacing: -4px;
}

.is-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 38px;
  font-weight: 800;
  line-height: 1.1;
  color: #fff;
  margin: 0 0 30px 0;
  letter-spacing: -2px;
}

.is-title .gold {
  color: #f4b942;
  display: block;
}

.is-desc {
  font-size: 15px;
  line-height: 1.7;
  color: #b0b0b0;
  margin-bottom: 30px;
  max-width: 560px;
}

/* Animated Service Cards */

.is-service-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 30px;
}

.is-card {
  position: relative;
  padding: 20px 16px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  text-align: center;
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}

.is-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(244, 185, 66, 0.1) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.6s ease;
}

.is-card:hover {
  transform: translateY(-8px);
  background: rgba(244, 185, 66, 0.08);
  border-color: rgba(244, 185, 66, 0.3);
  box-shadow: 0 20px 50px rgba(244, 185, 66, 0.2);
}

.is-card:hover::before {
  opacity: 1;
}

.is-card-icon {
  font-size: 32px;
  line-height: 1;
  margin-bottom: 12px;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  z-index: 1;
}

.is-card:hover .is-card-icon {
  transform: scale(1.2) rotate(5deg);
}

.is-card h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 8px 0;
  position: relative;
  z-index: 1;
}

.is-card p {
  font-size: 12px;
  line-height: 1.5;
  color: #999;
  margin: 0;
  position: relative;
  z-index: 1;
}

.is-cta {
  display: inline-flex;
  margin-top: 10px;
  width: 100%;
  justify-content: center;
}

/* REVERSE LAYOUT */

.is-reverse .is-container {
  grid-template-columns: 1fr 1fr;
}

.is-reverse .is-left {
  order: 2;
}

.is-reverse .is-right {
  order: 1;
}

.is-reverse .is-float-card {
  right: auto;
  left: 20px;
}

/* RESPONSIVE */

@media (max-width: 1200px) {
  .is-container {
    gap: 80px;
    padding: 0 30px;
  }

  .is-title {
    font-size: 56px;
  }

  .is-number {
    font-size: 100px;
  }

  .is-left {
    height: 500px;
  }
}

@media (max-width: 968px) {
  .immersive-service {
    min-height: auto;
    padding: 80px 0;
  }

  .is-container {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .is-reverse .is-left {
    order: 1;
  }

  .is-reverse .is-right {
    order: 2;
  }

  .is-title {
    font-size: 48px;
  }

  .is-number {
    font-size: 80px;
    margin-bottom: -30px;
  }

  .is-desc {
    font-size: 16px;
  }

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

  .is-left {
    height: 450px;
  }

  .is-float-card {
    padding: 20px 24px;
  }
}

/* ═══════════════════════════════════════
   LUXURY ARCHITECTURE PORTFOLIO
   Apple/Tesla-Style Presentation
═══════════════════════════════════════ */

/* BASE PORTFOLIO ITEM */

.portfolio-item {
  position: relative;
  background: #0a0a0a;
  overflow: hidden;
}

/* LARGE LEFT LAYOUT */

.pi-large-left {
  min-height: auto;
  display: flex;
  align-items: center;
  padding: 60px 0;
}

.pi-container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

.pi-visual {
  position: relative;
  height: 400px;
}

.pi-image-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 50px 120px rgba(0, 0, 0, 0.7);
}

.pi-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.pi-image-wrap:hover .pi-img {
  transform: scale(1.05);
}

.pi-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(244, 185, 66, 0.15) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.8s ease;
  pointer-events: none;
}

.pi-image-wrap:hover .pi-overlay {
  opacity: 1;
}

.pi-content {
  position: relative;
}

.pi-number {
  font-family: 'Montserrat', sans-serif;
  font-size: 70px;
  font-weight: 800;
  line-height: 1;
  color: rgba(244, 185, 66, 0.06);
  margin-bottom: -30px;
  letter-spacing: -6px;
}

.pi-category {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #f4b942;
  margin-bottom: 20px;
}

.pi-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 42px;
  font-weight: 800;
  line-height: 1;
  color: #fff;
  margin: 0 0 30px 0;
  letter-spacing: -3px;
}

.pi-title .gold {
  color: #f4b942;
  display: block;
}

.pi-desc {
  font-size: 16px;
  line-height: 1.7;
  color: #999;
  margin-bottom: 40px;
  max-width: 480px;
}

.pi-meta {
  display: flex;
  gap: 30px;
}

.pi-meta-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pi-meta-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #666;
}

.pi-meta-value {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
}

/* LARGE RIGHT LAYOUT */

.pi-large-right .pi-container {
  grid-template-columns: 0.8fr 1.2fr;
}

.pi-large-right .pi-content {
  order: 2;
}

.pi-large-right .pi-visual {
  order: 1;
}

/* SPLIT DUAL LAYOUT */

.pi-split-dual {
  padding: 80px 0;
}

.pi-dual-container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 30px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.pi-dual-left,
.pi-dual-right {
  position: relative;
  height: 400px;
}

.pi-dual-left .pi-image-wrap,
.pi-dual-right .pi-image-wrap {
  height: 100%;
}

.pi-dual-label {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  padding: 16px 20px;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 16px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 10;
}

.pi-image-wrap:hover .pi-dual-label {
  opacity: 1;
  transform: translateY(0);
}

.pi-dual-number {
  font-family: 'Montserrat', sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: #f4b942;
  line-height: 1;
}

.pi-dual-title {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
}

/* FULLSCREEN HERO LAYOUT */

.pi-fullscreen {
  height: 100vh;
  position: relative;
}

.pi-fs-wrap {
  position: relative;
  width: 100%;
  height: 100%;
}

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

.pi-fs-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
}

.pi-fs-content {
  position: absolute;
  bottom: 60px;
  left: 20px;
  right: 20px;
  max-width: 800px;
  z-index: 10;
}

.pi-fs-number {
  font-family: 'Montserrat', sans-serif;
  font-size: 70px;
  font-weight: 800;
  line-height: 1;
  color: rgba(244, 185, 66, 0.15);
  margin-bottom: -30px;
}

.pi-fs-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 42px;
  font-weight: 800;
  line-height: 1;
  color: #fff;
  margin: 0 0 24px 0;
  letter-spacing: -3px;
}

.pi-fs-title .gold {
  color: #f4b942;
  display: block;
}

.pi-fs-desc {
  font-size: 16px;
  line-height: 1.6;
  color: #ccc;
  max-width: 600px;
}

/* TRIPLE GRID LAYOUT */

.pi-triple-grid {
  padding: 80px 0;
}

.pi-triple-container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 30px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.pi-triple-item {
  position: relative;
  height: 400px;
}

.pi-triple-item .pi-image-wrap {
  height: 100%;
}

.pi-triple-label {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  padding: 16px 20px;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 10;
}

.pi-image-wrap:hover .pi-triple-label {
  opacity: 1;
  transform: translateY(0);
}

.pi-triple-number {
  font-family: 'Montserrat', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: #f4b942;
  line-height: 1;
  display: block;
  margin-bottom: 8px;
}

.pi-triple-title {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
}

/* RESPONSIVE */

/* PARALLAX MOTION */

[data-parallax-y] {
  transition: transform 0.3s ease-out;
}




/* ----------------------------------------------------------------
   MOBILE-FIRST RESPONSIVE OVERHAUL - CLEAN & CONSOLIDATED
---------------------------------------------------------------- */

@media (max-width: 768px) {
  .navbar { padding: 12px 5% !important; }
  .logo { font-size: 1.1rem !important; gap: 8px !important; }
  .logo-img { width: 32px !important; height: 32px !important; }
  .hamburger { display: flex !important; }
  nav, .btn-nav { display: none !important; }
  
  .hero { height: 100vh !important; }
  .hero-content { padding: 0 20px !important; }
  .hero-title { font-size: clamp(2.2rem, 9vw, 3.5rem) !important; margin-bottom: 16px !important; }
  .hero-sub { font-size: 0.95rem !important; margin-bottom: 28px !important; }
  .hero-cta { flex-direction: column !important; gap: 12px !important; }
  .hero-cta a { width: 100% !important; max-width: 280px !important; }
  .scroll-indicator { display: none !important; }
  
  .stats-bar { padding: 32px 5% !important; display: grid !important; grid-template-columns: 1fr 1fr !important; gap: 0 !important; }
  .stat-divider { display: none !important; }
  .stat-item { padding: 14px 8px !important; }
  .stat-num, .stat-suffix { font-size: 1.8rem !important; }
  .stat-label { font-size: 0.65rem !important; }
  
  .section { padding: 48px 5% !important; }
  .section-header { margin-bottom: 32px !important; }
  .section-header h2 { font-size: clamp(1.8rem, 6vw, 2.4rem) !important; }
  
  .page-hero { height: 45vh !important; min-height: 300px !important; }
  .page-hero-content h1 { font-size: clamp(1.8rem, 7vw, 2.8rem) !important; margin-bottom: 8px !important; }
  .page-hero-content p { font-size: 0.9rem !important; }
  
  .breadcrumb { padding: 12px 5% !important; font-size: 0.7rem !important; }
  
  .about-container { grid-template-columns: 1fr !important; gap: 36px !important; }
  .about-right { height: 280px !important; }
  .about-left h2 { font-size: clamp(1.8rem, 6vw, 2.4rem) !important; }
  
  .why-grid { grid-template-columns: 1fr 1fr !important; gap: 12px !important; }
  .why-card { padding: 18px 14px !important; }
  .why-icon { font-size: 1.8rem !important; }
  .why-card h4 { font-size: 0.9rem !important; }
  .why-card p { font-size: 0.75rem !important; }
  
  .contact-wrapper { grid-template-columns: 1fr !important; gap: 32px !important; }
  .contact-left h2 { font-size: clamp(1.8rem, 6vw, 2.4rem) !important; margin-bottom: 18px !important; }
  .contact-detail-item { font-size: 0.85rem !important; }
  .form-group input, .form-group textarea, .form-group select { font-size: 0.88rem !important; padding: 14px 12px 6px !important; }
  .btn-submit { padding: 12px !important; font-size: 0.82rem !important; }

  /* ===== COMPREHENSIVE MOBILE IMPROVEMENTS FOR REMAINING SECTIONS ===== */

  /* CP-CTA Mobile Improvements */
  .cp-cta {
    flex-direction: column !important;
    gap: 12px !important;
    align-items: stretch !important;
  }

  .cp-cta .btn-primary,
  .cp-cta .btn-secondary {
    width: 100% !important;
    justify-content: center !important;
    padding: 14px 20px !important;
    font-size: 0.85rem !important;
  }

  /* CP-Right Gallery Mobile Improvements */
  .cp-right {
    min-height: 300px !important;
    margin-top: 24px !important;
  }

  .cp-right [style*="display:grid"] {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
    padding: 0 !important;
  }

  .cp-right [style*="display:grid"] > div {
    aspect-ratio: 16/10 !important;
    border-radius: 12px !important;
    overflow: hidden !important;
  }

  /* Mobile Menu Visibility Fix */
  .mobile-menu {
    width: 85% !important;
    max-width: 300px !important;
  }

  .mobile-nav {
    padding: 80px 20px 40px !important;
  }

  .mobile-nav a {
    font-size: 1.1rem !important;
    padding: 16px 20px !important;
    color: #ffffff !important;
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    font-weight: 600 !important;
  }

  .mobile-nav a.active {
    color: #f4b942 !important;
    background: rgba(244, 185, 66, 0.15) !important;
    border-color: rgba(244, 185, 66, 0.3) !important;
  }

  .cp-right [style*="display:grid"] > div img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
  }

  /* Form Elements Mobile Improvements */
  .form-group {
    margin-bottom: 20px !important;
  }

  .form-group input,
  .form-group textarea,
  .form-group select {
    font-size: 16px !important; /* Prevents zoom on iOS */
    padding: 16px 14px 8px !important;
    border-radius: 8px !important;
    min-height: 48px !important; /* Touch target size */
  }

  .form-group textarea {
    min-height: 120px !important;
    resize: vertical !important;
  }

  .form-group label {
    font-size: 0.85rem !important;
    pointer-events: none !important;
  }

  /* Button Mobile Improvements */
  .btn-primary,
  .btn-secondary,
  .btn-submit {
    min-height: 48px !important; /* Touch target size */
    padding: 14px 24px !important;
    font-size: 0.85rem !important;
    border-radius: 8px !important;
    width: 100% !important;
    justify-content: center !important;
    margin-bottom: 12px !important;
  }

  .btn-primary:last-child,
  .btn-secondary:last-child,
  .btn-submit:last-child {
    margin-bottom: 0 !important;
  }

  /* AMC Section Mobile Improvements */
  .amc-section {
    padding: 40px 5% !important;
  }

  .amc-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }

  .amc-card {
    padding: 24px 20px !important;
    border-radius: 12px !important;
  }

  .amc-card h3 {
    font-size: 1.4rem !important;
    margin-bottom: 12px !important;
  }

  .amc-card .amc-price {
    font-size: 0.9rem !important;
    margin-bottom: 16px !important;
  }

  .amc-card ul {
    gap: 8px !important;
    margin-bottom: 20px !important;
  }

  .amc-card li {
    font-size: 0.85rem !important;
    line-height: 1.5 !important;
  }

  .amc-card .btn-primary,
  .amc-card .btn-secondary {
    width: 100% !important;
    margin-top: 16px !important;
  }

  /* Services Section Mobile Improvements */
  .services-grid {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }

  .services-left h2 {
    font-size: clamp(1.8rem, 6vw, 2.4rem) !important;
    margin-bottom: 16px !important;
  }

  .services-left p {
    font-size: 0.9rem !important;
    line-height: 1.6 !important;
  }

  .service-item {
    flex-direction: column !important;
    gap: 12px !important;
    padding: 20px 0 !important;
    text-align: center !important;
  }

  .service-num {
    align-self: center !important;
    margin-bottom: 8px !important;
  }

  .service-body h4 {
    font-size: 1.1rem !important;
    margin-bottom: 8px !important;
  }

  .service-body p {
    font-size: 0.85rem !important;
    line-height: 1.5 !important;
  }

  /* Contact Form Success Message Mobile */
  .form-success {
    padding: 24px 20px !important;
    text-align: center !important;
  }

  .form-success h3 {
    font-size: 1.6rem !important;
    margin-bottom: 12px !important;
  }

  .form-success p {
    font-size: 0.9rem !important;
    line-height: 1.5 !important;
    margin-bottom: 20px !important;
  }

  /* Additional Touch Improvements */
  .product-link,
  .service-item,
  .amc-card,
  .stat-item {
    cursor: pointer !important;
    -webkit-tap-highlight-color: rgba(244, 185, 66, 0.2) !important;
  }

  /* Improved Spacing for Mobile */
  .section {
    padding: 40px 5% !important;
  }

  .section-header {
    margin-bottom: 32px !important;
  }

  .section-header h2 {
    font-size: clamp(1.8rem, 6vw, 2.6rem) !important;
    line-height: 1.2 !important;
  }

  /* Mobile-specific animations */
  .product-card:hover,
  .service-item:hover,
  .amc-card:hover {
    transform: none !important; /* Disable hover transforms on mobile */
  }

  .product-card:active,
  .service-item:active,
  .amc-card:active {
    transform: scale(0.98) !important;
    transition: transform 0.1s ease !important;
  }
  
  .cta-band { padding: 36px 5% !important; }
  .cta-inner h2 { font-size: clamp(1.6rem, 5vw, 2rem) !important; }
  .cta-inner p { font-size: 0.88rem !important; }
  .cta-inner > div { flex-direction: column !important; align-items: center !important; }
  .cta-inner .btn-primary, .cta-inner .btn-secondary { width: 100% !important; max-width: 280px !important; }
  
  .footer { padding: 40px 5% 0 !important; }
  .footer-top { grid-template-columns: 1fr !important; gap: 28px !important; margin-bottom: 28px !important; }
  .footer-logo { font-size: 1.2rem !important; }
  .footer-description { font-size: 0.82rem !important; }
  .footer-col { text-align: left !important; }
  .footer-col h5::after { left: 0 !important; transform: none !important; }
  .footer-social { justify-content: flex-start !important; }
  .footer-certifications { justify-content: flex-start !important; }
  .footer-bottom { flex-direction: column !important; text-align: center !important; gap: 10px !important; padding: 18px 0 !important; }
  .footer-links { justify-content: center !important; gap: 12px !important; }
  .footer-copy { font-size: 0.75rem !important; }
  
  .quick-links-grid { grid-template-columns: 1fr 1fr !important; gap: 12px !important; }
  .quick-link-card { padding: 20px 14px !important; gap: 8px !important; }
  .ql-icon { font-size: 28px !important; }
  .quick-link-card h3 { font-size: 0.95rem !important; }
  .quick-link-card p { font-size: 0.75rem !important; }
  
  .btn-primary, .btn-secondary { padding: 12px 20px !important; font-size: 0.8rem !important; }
  .scroll-progress { height: 2px !important; }
}

@media (max-width: 480px) {
  .navbar { padding: 10px 4% !important; }
  .logo { font-size: 0.95rem !important; }
  .logo-img { width: 28px !important; height: 28px !important; }
  
  .hero-title { font-size: clamp(1.8rem, 10vw, 2.8rem) !important; }
  .hero-sub { font-size: 0.85rem !important; }
  
  .stats-bar { padding: 24px 4% !important; }
  .stat-num, .stat-suffix { font-size: 1.6rem !important; }
  
  .section { padding: 36px 4% !important; }
  
  .page-hero { height: 40vh !important; min-height: 260px !important; }
  .page-hero-content h1 { font-size: clamp(1.6rem, 8vw, 2.2rem) !important; }
  
  .breadcrumb { padding: 10px 4% !important; font-size: 0.65rem !important; }
  
  .about-right { height: 240px !important; }
  
  .why-grid { grid-template-columns: 1fr !important; }
  
  .contact-wrapper { gap: 24px !important; }
  
  .cta-band { padding: 28px 4% !important; }
  
  .footer { padding: 32px 4% 0 !important; }
  .footer-top { gap: 20px !important; }
  .cert-badge { font-size: 0.65rem !important; padding: 5px 10px !important; }
  .footer-col a, .footer-col p { font-size: 0.78rem !important; }
  
  .quick-links-grid { grid-template-columns: 1fr !important; }
  
  .whatsapp-float { bottom: 16px !important; right: 16px !important; width: 48px !important; height: 48px !important; }
  .whatsapp-float svg { width: 24px !important; height: 24px !important; }
  
  .mobile-menu { width: 100% !important; }
}

html, body { overflow-x: hidden !important; max-width: 100% !important; }
img { max-width: 100% !important; }
