/* =========================================================
   coorenett — Premium Plywood — Main Stylesheet
   ========================================================= */

/* ---------- CSS Reset & Base ---------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Poppins', sans-serif;
  color: #1B1B1B;
  background: #F8F8F8;
  overflow-x: hidden;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ---------- Variables ---------- */
:root {
  --gold: #D4AF37;
  --gold-light: #E8C76B;
  --gold-dark: #B8860B;
  --black: #111111;
  --charcoal: #1B1B1B;
  --bg-light: #F8F8F8;
  --white: #FFFFFF;
  --grad-dark: linear-gradient(135deg, #111111, #222222);
  --grad-gold: linear-gradient(90deg, #B8860B, #E8C76B);
  --font-head: 'Cormorant Garamond', serif;
  --font-body: 'Poppins', sans-serif;
  --transition: 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
  --container-padding: 20px;
  --section-padding-desktop: 130px;
  --section-padding-tablet: 90px;
  --section-padding-mobile: 70px;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--black);
  margin: 0;
  line-height: 1.2;
}

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

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

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

em {
  font-style: italic;
  color: var(--gold);
}

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

/* ---------- Scrollbar ---------- */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--black);
}
::-webkit-scrollbar-thumb {
  background: var(--grad-gold);
  border-radius: 10px;
}

/* ---------- Noise Overlay ---------- */
.noise-overlay {
  position: fixed;
  inset: 0;
  z-index: 9998;
  pointer-events: none;
  opacity: 0.035;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- Custom Cursor (Desktop only) ---------- */
.cursor-dot,
.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
}
.cursor-dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
}
.cursor-ring {
  width: 36px;
  height: 36px;
  border: 1px solid var(--gold);
  transition: width 0.3s, height 0.3s, opacity 0.3s;
  opacity: 0.6;
}
.cursor-ring.hovered {
  width: 60px;
  height: 60px;
  opacity: 1;
  background: rgba(212, 175, 55, 0.12);
}
@media (max-width: 991px) {
  .cursor-dot,
  .cursor-ring {
    display: none;
  }
  body {
    cursor: auto;
  }
}

/* ---------- Preloader ---------- */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 100000;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
.preloader.loaded {
  opacity: 0;
  visibility: hidden;
}
.preloader-inner {
  text-align: center;
}
.preloader-logo {
  width: clamp(160px, 30vw, 220px);
  margin: 0 auto 28px;
}
.preloader-bar {
  width: clamp(180px, 30vw, 240px);
  height: 3px;
  background: rgba(17, 17, 17, 0.1);
  margin: 0 auto;
  overflow: hidden;
  border-radius: 4px;
}
.preloader-bar span {
  display: block;
  height: 100%;
  width: 0%;
  background: var(--grad-gold);
  animation: loadbar 0.8s ease forwards;
}
@keyframes loadbar {
  to {
    width: 100%;
  }
}

/* ---------- Header / Navbar ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
}
.custom-navbar {
  padding: clamp(14px, 2.5vw, 26px) 0;
  transition: all var(--transition);
  background: transparent;
}
.custom-navbar.scrolled {
  padding: clamp(10px, 1.5vw, 14px) 0;
  background: rgba(17, 17, 17, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(16px, 5%, 60px);
}

/* Logo Badge */
.logo-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: clamp(12px, 1.5vw, 16px);
  padding: clamp(6px, 1vw, 10px) clamp(12px, 2vw, 20px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
  /*transition: all var(--transition);*/
}
.header-badge {
  padding: clamp(6px, 0.8vw, 8px) clamp(12px, 1.5vw, 18px);
}
.custom-navbar.scrolled .header-badge {
  padding: clamp(4px, 0.6vw, 6px) clamp(10px, 1.2vw, 14px);
}


.nav-center {
  margin-left: auto;
}
.nav-links {
  display: flex;
  gap: clamp(20px, 3.5vw, 42px);
}
.nav-links a {
  position: relative;
  font-size: clamp(12px, 1.1vw, 14px);
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--white);
  font-weight: 400;
  padding-bottom: 6px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--grad-gold);
  transition: width 0.35s ease;
}
.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

/* Mobile Toggle */
.nav-toggle {
  background: none;
  border: none;
  width: 32px;
  height: 22px;
  position: relative;
  z-index: 1001;
  padding: 0;
}
.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--white);
  margin: 6px 0;
  transition: all 0.3s ease;
}
.custom-navbar:not(.scrolled) .nav-toggle span {
  background: var(--white);
}
.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 360px;
  height: 100vh;
  background: var(--black);
  z-index: 1000;
  padding: 120px 40px 40px;
  transition: right 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}
.mobile-menu.open {
  right: 0;
}
.mobile-menu li {
  margin-bottom: clamp(18px, 3.5vw, 26px);
}
.mobile-menu a {
  color: var(--white);
  font-family: var(--font-head);
  font-size: clamp(20px, 4vw, 24px);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  height: 100vh;
  min-height: clamp(560px, 80vh, 640px);
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.55);
}
.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17, 17, 17, 0.75) 0%, rgba(17, 17, 17, 0.25) 40%, rgba(17, 17, 17, 0.85) 100%);
}
#particles {
  position: absolute;
  inset: 0;
}

.hero-container {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 0 clamp(150px, 100%, 150px);
}
.hero-label {
  display: inline-block;
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: clamp(2px, 0.3vw, 3px);
  font-size: clamp(11px, 1.1vw, 13px);
  margin-bottom: clamp(14px, 2vw, 20px);
  font-weight: 500;
}
.hero-title {
  font-size: clamp(32px, 6vw, 78px);
  line-height: 1.08;
  color: var(--white);
  margin-bottom: clamp(16px, 2vw, 24px);
}
.hero-title .line {
  display: block;
}
.hero-title .accent {
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: italic;
}
.hero-subtitle {
  color: rgba(255, 255, 255, 0.75);
  font-size: clamp(15px, 1.2vw, 17px);
  max-width: 520px;
  line-height: 1.8;
  margin-bottom: clamp(28px, 3vw, 40px);
}
.hero-buttons {
  display: flex;
  gap: clamp(12px, 1.5vw, 20px);
  flex-wrap: wrap;
}

/* Buttons */
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--grad-gold);
  color: var(--black);
  padding: clamp(14px, 1.5vw, 16px) clamp(24px, 3vw, 34px);
  border-radius: 40px;
  font-size: clamp(12px, 1.1vw, 14px);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 500;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  border: none;
  cursor: pointer;
}
.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(212, 175, 55, 0.35);
  color: var(--black);
}

.btn-outline-gold {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: var(--white);
  padding: clamp(14px, 1.5vw, 16px) clamp(24px, 3vw, 34px);
  border-radius: 40px;
  font-size: clamp(12px, 1.1vw, 14px);
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.35s ease;
  background: transparent;
  cursor: pointer;
}
.btn-outline-gold:hover {
  border-color: var(--gold);
  color: var(--gold-light);
  background: rgba(212, 175, 55, 0.08);
}

/* Hero Float */
.hero-float {
  position: relative;
}
.hero-float-wrap {
  position: relative;
}
.hero-float-video {
  border-radius: 24px;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(212, 175, 55, 0.25);
  width: 100%;
  height: clamp(320px, 40vw, 560px);
  object-fit: cover;
}
.hero-badge {
  position: absolute;
  bottom: clamp(-20px, -2vw, -30px);
  left: clamp(-20px, -3vw, -40px);
  background: rgba(17, 17, 17, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: clamp(14px, 1.5vw, 18px);
  padding: clamp(16px, 2vw, 22px) clamp(18px, 2.2vw, 26px);
  text-align: center;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}
.hero-badge-num {
  display: block;
  font-family: serif !important;
  font-size: clamp(24px, 3vw, 34px);
  color: var(--gold-light);
  font-weight: 600;
}
.hero-badge-text {
  font-size: clamp(10px, 0.9vw, 12px);
  color: var(--white);
  letter-spacing: 0.5px;
}

/* ---------- Section Shared ---------- */
section {
  position: relative;
  padding: clamp(70px, 8vw, 130px) 0;
}
.section-label {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: clamp(2px, 0.3vw, 3px);
  font-size: clamp(11px, 1vw, 13px);
  color: var(--gold-dark);
  font-weight: 500;
  margin-bottom: clamp(12px, 1.5vw, 16px);
}
.section-label.light {
  color: var(--gold-light);
}
.section-label.center {
  display: block;
  text-align: center;
}
.section-heading {
  font-size: clamp(28px, 4vw, 52px);
  line-height: 1.15;
  margin-bottom: clamp(16px, 1.5vw, 20px);
}
.section-heading.light {
  color: var(--white);
}
.section-heading-wrap {
  margin-bottom: clamp(40px, 5vw, 60px);
}
.section-text {
  font-size: clamp(15px, 1.1vw, 16px);
  line-height: 1.9;
  color: #555;
  font-weight: 300;
}
.section-divider {
  display: block;
  width: 100%;
  height: 80px;
  fill: var(--charcoal);
  margin-top: -1px;
}

.mv-title {
  font-family: var(--font-body);
  font-size: clamp(13px, 1vw, 14px);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
  color: var(--black);
}
.mv-title i {
  color: var(--gold);
  margin-right: 8px;
}
.mv-text {
  font-size: clamp(13px, 0.9vw, 14px);
  color: #666;
  line-height: 1.7;
}

/* ---------- About ---------- */
.about-section {
  background: var(--bg-light);
  overflow: hidden;
}
.about-img-wrap {
  position: relative;
}
.about-img {
  border-radius: 20px;
  width: 100%;
  height: clamp(300px, 40vw, 640px);
  object-fit: cover;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}
.about-img-frame {
  position: absolute;
  top: 24px;
  left: -24px;
  width: 100%;
  height: 100%;
  border: 2px solid var(--gold);
  border-radius: 20px;
  z-index: -1;
}
@media (max-width: 767px) {
  .about-img-frame {
    display: none;
  }
}
.about-exp-badge {
  position: absolute;
  bottom: clamp(-20px, -2vw, -30px);
  right: clamp(10px, 2vw, 30px);
  background: var(--grad-dark);
  color: var(--white);
  border-radius: clamp(14px, 1.5vw, 18px);
  padding: clamp(14px, 1.8vw, 22px) clamp(18px, 2vw, 28px);
  text-align: center;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}
.about-exp-badge span {
  display: block;
  font-family: serif !important;
  font-size: clamp(24px, 2.8vw, 32px);
  color: var(--gold-light);
}
.about-exp-badge small {
  font-size: clamp(10px, 0.8vw, 11px);
  letter-spacing: 0.5px;
}

/* ---------- Stats ---------- */
.stats-section {
  background: var(--grad-dark);
  padding: clamp(60px, 7vw, 90px) 0;
  position: relative;
  overflow: hidden;
}
.stats-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(212, 175, 55, 0.08), transparent 40%),
    radial-gradient(circle at 80% 80%, rgba(212, 175, 55, 0.08), transparent 40%);
}
.stat-item h3 {
  font-size: clamp(32px, 4vw, 52px);
  color: var(--gold-light);
  margin-bottom: 6px;
}
.stat-item p {
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: clamp(11px, 0.9vw, 13px);
}

/* ---------- Products ---------- */
.products-section {
  background: var(--white);
}
.product-grid {
  align-items: stretch;
}
.product-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
  transition: transform 0.45s ease, box-shadow 0.45s ease;
}
/*.product-card:hover {*/
/*  transform: translateY(-10px);*/
/*  box-shadow: 0 30px 50px rgba(0, 0, 0, 0.15);*/
/*}*/
.product-card-img {
  position: relative;
  height: clamp(220px, 28vw, 320px);
  flex-shrink: 0;
  overflow: hidden;
}
.product-card-img img {
  width: 100%;
  height: 100%;
  /*object-fit: cover;*/
  transition: transform 0.7s ease;
}
/*.product-card-img::after {*/
/*  content: '';*/
/*  position: absolute;*/
/*  inset: 0;*/
/*  background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.55));*/
/*  opacity: 0;*/
/*  transition: opacity 0.4s ease;*/
/*}*/
/*.product-card:hover .product-card-img img {*/
/*  transform: scale(1.1);*/
/*}*/
/*.product-card:hover .product-card-img::after {*/
/*  opacity: 1;*/
/*}*/
/*.product-card::before {*/
/*  content: '';*/
/*  position: absolute;*/
/*  inset: 0;*/
/*  border-radius: 18px;*/
/*  padding: 1px;*/
/*  background: var(--grad-gold);*/
/*  opacity: 0;*/
/*  transition: opacity 0.4s ease;*/
/*  pointer-events: none;*/
/*  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);*/
/*  -webkit-mask-composite: xor;*/
/*  mask-composite: exclude;*/
/*  z-index: 2;*/
/*}*/
/*.product-card:hover::before {*/
/*  opacity: 1;*/
/*}*/
.product-card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: clamp(18px, 2.2vw, 26px) clamp(18px, 2vw, 24px);
  position: relative;
}
.product-card-body h5 {
  font-size: clamp(18px, 1.8vw, 22px);
  margin-bottom: 8px;
}
.product-card-body p {
  font-size: clamp(13px, 1vw, 14px);
  color: #666;
  margin: 0;
  padding-right: 30px;
  flex: 1;
}
.card-arrow {
  position: absolute;
  right: clamp(16px, 1.8vw, 22px);
  bottom: clamp(18px, 2vw, 26px);
  width: clamp(32px, 3vw, 38px);
  height: clamp(32px, 3vw, 38px);
  border-radius: 50%;
  background: var(--grad-gold);
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateX(50px) rotate(-45deg);
  opacity: 0;
  transition: all 0.4s ease;
}
/*.product-card:hover .card-arrow {*/
/*  transform: translateX(0) rotate(0);*/
/*  opacity: 1;*/
/*}*/

/* ---------- Why Choose ---------- */
.why-section {
  background: var(--grad-dark);
}
.why-card {
  text-align: center;
  padding: clamp(28px, 3.5vw, 44px) clamp(16px, 1.5vw, 20px);
  border: 1px solid rgba(212, 175, 55, 0.18);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.02);
  transition: all 0.4s ease;
  height: 100%;
}
.why-card:hover {
  background: rgba(212, 175, 55, 0.06);
  border-color: var(--gold);
  transform: translateY(-8px);
}
.why-card i {
  font-size: clamp(28px, 2.8vw, 34px);
  color: var(--gold-light);
  margin-bottom: clamp(14px, 1.5vw, 18px);
  display: inline-block;
  transition: transform 0.4s ease;
}
.why-card:hover i {
  transform: rotateY(360deg);
}
.why-card h6 {
  color: var(--white);
  font-family: var(--font-body);
  font-size: clamp(12px, 1vw, 14px);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-weight: 400;
}

/* ---------- Applications ---------- */
.applications-section {
  background: var(--bg-light);
}
.app-card {
  position: relative;
  border-radius: clamp(12px, 1.5vw, 16px);
  overflow: hidden;
  height: clamp(220px, 28vw, 380px);
}
.app-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.app-card:hover img {
  transform: scale(1.12);
}
.app-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.8));
  display: flex;
  align-items: flex-end;
  padding: clamp(14px, 1.8vw, 22px);
}
.app-overlay h6 {
  color: var(--white);
  font-family: var(--font-body);
  font-size: clamp(13px, 1.1vw, 15px);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-weight: 500;
  position: relative;
}
.app-overlay h6::after {
  content: '';
  display: block;
  width: 30px;
  height: 2px;
  background: var(--gold);
  margin-top: clamp(6px, 0.8vw, 10px);
  transition: width 0.4s ease;
}
.app-card:hover .app-overlay h6::after {
  width: 60px;
}

/* ---------- Process Timeline ---------- */
.process-section {
  background: var(--grad-dark);
}
.process-timeline {
  position: relative;
  padding-top: 20px;
}
.process-line {
  position: absolute;
  top: 46px;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(255, 255, 255, 0.1);
  display: none;
}
.process-line-fill {
  display: block;
  height: 100%;
  width: 0;
  background: var(--grad-gold);
}
.process-steps {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(24px, 3vw, 40px);
  justify-content: space-between;
}
.process-step {
  flex: 1 1 clamp(140px, 18vw, 180px);
  text-align: center;
  position: relative;
}
.process-icon {
  width: clamp(72px, 8vw, 92px);
  height: clamp(72px, 8vw, 92px);
  border-radius: 50%;
  margin: 0 auto clamp(16px, 1.8vw, 22px);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(24px, 2.5vw, 30px);
  color: var(--gold-light);
  background: rgba(212, 175, 55, 0.06);
  border: 1px solid rgba(212, 175, 55, 0.3);
  position: relative;
  z-index: 2;
}
.process-step h6 {
  color: var(--white);
  font-family: var(--font-body);
  font-size: clamp(13px, 1.1vw, 15px);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}
.process-step p {
  color: rgba(255, 255, 255, 0.6);
  font-size: clamp(12px, 0.9vw, 13px);
}

@media (max-width: 767px) {
  .process-steps {
    flex-direction: column;
    align-items: center;
  }
  .process-step {
    flex: 1 1 auto;
    width: 100%;
    max-width: 320px;
  }
}

/* ---------- Featured Projects (Masonry) ---------- */
.projects-section {
  background: var(--white);
}
.masonry-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(14px, 1.5vw, 22px);
}
.masonry-item {
  position: relative;
  border-radius: clamp(12px, 1.5vw, 16px);
  overflow: hidden;
  aspect-ratio: 4 / 3;
}
.masonry-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.masonry-item:hover img {
  transform: scale(1.1);
}
.masonry-overlay {
  position: absolute;
  inset: 0;
  background: rgba(17, 17, 17, 0);
  transition: background 0.4s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  text-align: center;
  opacity: 0;
}
.masonry-item:hover .masonry-overlay {
  background: rgba(17, 17, 17, 0.6);
  opacity: 1;
}
.masonry-overlay h6 {
  color: var(--white);
  font-family: var(--font-head);
  font-size: clamp(18px, 1.8vw, 22px);
  transform: translateY(14px);
  transition: transform 0.4s ease 0.05s;
}
.masonry-item:hover .masonry-overlay h6 {
  transform: translateY(0);
}
.masonry-overlay a {
  width: clamp(38px, 3.5vw, 46px);
  height: clamp(38px, 3.5vw, 46px);
  border-radius: 50%;
  border: 1px solid var(--gold);
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(14px);
  transition: all 0.4s ease 0.1s;
}
.masonry-item:hover .masonry-overlay a {
  transform: translateY(0);
}
.masonry-overlay a:hover {
  background: var(--grad-gold);
  color: var(--black);
}

@media (max-width: 1199px) {
  .masonry-gallery {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 991px) {
  .masonry-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 575px) {
  .masonry-gallery {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .masonry-item {
    aspect-ratio: 1 / 1;
  }
}
@media (max-width: 400px) {
  .masonry-gallery {
    grid-template-columns: 1fr;
  }
  .masonry-item {
    aspect-ratio: 4 / 3;
  }
}

/* ---------- Video Section ---------- */
.video-section {
  position: relative;
  height: clamp(480px, 70vh, 560px);
  min-height: 400px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.video-bg {
  position: absolute;
  inset: 0;
}
.video-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.65);
}
.video-section .container {
  position: relative;
  z-index: 2;
}
.play-btn {
  width: clamp(80px, 8vw, 100px);
  height: clamp(80px, 8vw, 100px);
  border-radius: 50%;
  background: var(--grad-gold);
  border: none;
  color: var(--black);
  font-size: clamp(20px, 2vw, 26px);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: clamp(24px, 3vw, 40px) auto 0;
  position: relative;
  cursor: pointer;
}
.play-ring {
  position: absolute;
  inset: -14px;
  border: 1px solid rgba(212, 175, 55, 0.5);
  border-radius: 50%;
  animation: ring-pulse 2.2s infinite;
}
@keyframes ring-pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

/* Video Modal */
.video-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: 10001;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.video-modal.open {
  display: flex;
}
.video-modal-inner {
  width: min(960px, 92vw);
  position: relative;
}
.video-modal-close {
  position: absolute;
  top: clamp(-36px, -4vw, -46px);
  right: 0;
  background: none;
  border: none;
  color: var(--white);
  font-size: clamp(22px, 2vw, 26px);
  cursor: pointer;
  padding: 8px;
}

/* ---------- Testimonials ---------- */
.testimonials-section {
  background: var(--bg-light);
}
.testimonial-swiper {
  padding-bottom: 50px;
}
.testimonial-card {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 20px;
  padding: clamp(24px, 3.5vw, 44px) clamp(20px, 3vw, 44px);
  height: 100%;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
}
.quote-icon {
  font-size: clamp(22px, 2vw, 26px);
  color: var(--gold);
  opacity: 0.5;
  margin-bottom: clamp(14px, 1.5vw, 18px);
}
.testimonial-card p {
  font-size: clamp(14px, 1.1vw, 16px);
  line-height: 1.8;
  color: #444;
  margin-bottom: clamp(18px, 2vw, 26px);
  font-style: italic;
}
.testimonial-user {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.testimonial-user img {
  width: clamp(42px, 4vw, 52px);
  height: clamp(42px, 4vw, 52px);
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
}
.testimonial-user h6 {
  font-size: clamp(13px, 1.1vw, 15px);
  margin-bottom: 2px;
}
.testimonial-user span {
  font-size: clamp(11px, 0.9vw, 12px);
  color: #888;
}
.stars {
  margin-left: auto;
  color: var(--gold);
  font-size: clamp(12px, 1vw, 13px);
}
.swiper-pagination-bullet {
  background: var(--gold);
  opacity: 0.35;
}
.swiper-pagination-bullet-active {
  opacity: 1;
}

/* ---------- Brands ---------- */
.brands-section {
  background: var(--black);
  padding: clamp(30px, 4vw, 50px) 0;
  overflow: hidden;
}
.brands-track {
  width: 100%;
  overflow: hidden;
}
.brands-track-inner {
  display: flex;
  gap: clamp(30px, 5vw, 70px);
  width: max-content;
  animation: brand-scroll 28s linear infinite;
}
.brands-track-inner span {
  color: rgba(255, 255, 255, 0.4);
  font-family: var(--font-head);
  font-size: clamp(16px, 1.8vw, 22px);
  letter-spacing: 2px;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 10px;
}
.brands-track-inner span i {
  color: var(--gold);
}
@keyframes brand-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ---------- Dealer CTA ---------- */
.dealer-cta {
  position: relative;
  padding: clamp(80px, 12vw, 150px) 0;
  overflow: hidden;
}
.dealer-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.dealer-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(17, 17, 17, 0.9), rgba(17, 17, 17, 0.6));
}
.dealer-cta .container {
  position: relative;
  z-index: 2;
}
.dealer-text {
  color: rgba(255, 255, 255, 0.75);
  max-width: 520px;
  margin: 0 auto clamp(24px, 3vw, 34px);
  font-size: clamp(14px, 1.1vw, 16px);
}

/* ---------- Contact Strip ---------- */
.contact-strip {
  background: var(--bg-light);
  padding: clamp(50px, 6vw, 80px) 0;
}
.contact-strip i {
  font-size: clamp(22px, 2vw, 26px);
  color: var(--gold);
  margin-bottom: clamp(10px, 1.2vw, 14px);
}
.contact-strip h6 {
  font-size: clamp(13px, 1.1vw, 15px);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}
.contact-strip p {
  font-size: clamp(12px, 1vw, 14px);
  color: #666;
  margin: 0;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--black);
  padding: clamp(60px, 8vw, 90px) 0 0;
  border-top: 2px solid;
  border-image: var(--grad-gold) 1;
}
.footer-badge {
  margin-bottom: 22px;
  padding: clamp(12px, 1.5vw, 14px) clamp(16px, 2vw, 22px);
  border-radius: 16px;
}
.footer-logo {
  height: clamp(64px, 7vw, 96px);
}
.footer-desc {
  color: rgba(255, 255, 255, 0.55);
  font-size: clamp(13px, 1vw, 14px);
  line-height: 1.8;
  max-width: 340px;
}
.footer-social {
  display: flex;
  gap: clamp(10px, 1.2vw, 14px);
  margin-top: 24px;
}
.footer-social a {
  width: clamp(34px, 3.5vw, 40px);
  height: clamp(34px, 3.5vw, 40px);
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.3);
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.35s ease;
}
.footer-social a:hover {
  background: var(--grad-gold);
  color: var(--black);
  border-color: transparent;
  transform: translateY(-4px);
}
.footer-title {
  color: var(--white);
  font-family: var(--font-body);
  font-size: clamp(13px, 1.1vw, 15px);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: clamp(18px, 2vw, 24px);
}
.footer-links li {
  margin-bottom: clamp(10px, 1.2vw, 14px);
}
.footer-links a {
  color: rgba(255, 255, 255, 0.55);
  font-size: clamp(13px, 1vw, 14px);
  transition: color 0.3s, padding-left 0.3s;
}
.footer-links a:hover {
  color: var(--gold-light);
  padding-left: 6px;
}
.footer-map {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.2);
}
.footer-map iframe {
  width: 100%;
  height: clamp(140px, 15vw, 180px);
  border: 0;
  filter: grayscale(1) invert(0.92) contrast(0.9);
}
.footer-bottom {
  margin-top: clamp(40px, 5vw, 70px);
  padding: clamp(18px, 2vw, 26px) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom p {
  color: rgba(255, 255, 255, 0.4);
  font-size: clamp(12px, 0.9vw, 13px);
  margin: 0;
}

@media (max-width: 767px) {
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* ---------- Floating Elements ---------- */
.float-btn {
  position: fixed;
  right: clamp(16px, 2vw, 26px);
  width: clamp(46px, 4.5vw, 54px);
  height: clamp(46px, 4.5vw, 54px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(17px, 1.8vw, 20px);
  z-index: 900;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}
.float-btn:hover {
  transform: scale(1.1);
}
.whatsapp-btn {
  bottom: clamp(16px, 2vw, 26px);
  background: #25D366;
  color: var(--white);
}
.call-btn {
  bottom: clamp(68px, 8vw, 92px);
  background: var(--grad-gold);
  color: var(--black);
}
.back-to-top {
  position: fixed;
  right: clamp(16px, 2vw, 26px);
  bottom: clamp(120px, 13vw, 158px);
  width: clamp(46px, 4.5vw, 54px);
  height: clamp(46px, 4.5vw, 54px);
  border-radius: 50%;
  background: var(--white);
  color: var(--black);
  border: 1px solid rgba(0, 0, 0, 0.1);
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.35s ease;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.15);
  cursor: pointer;
}
.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}