/* 
  HAPPY WALLS INTERIOR WHOLESALE & RETAIL
  Pure HTML5 + CSS3 + Vanilla JS website
  No frameworks. No external libraries.
*/

:root {
  --black: #111111;
  --black-soft: #181818;
  --gold: #D4AF37;
  --gold-soft: rgba(212, 175, 55, 0.18);
  --white: #FFFFFF;
  --wood: #8B5A2B;
  --text: #e8e3d5;
  --muted: #a9a197;
  --glass: rgba(255, 255, 255, 0.08);
  --glass-strong: rgba(255, 255, 255, 0.13);
  --border: rgba(212, 175, 55, 0.28);
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.42);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --container: min(1180px, calc(100% - 40px));
}

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

html {
  scroll-behavior: smooth;
  scrollbar-color: var(--gold) var(--black);
}

body {
  min-height: 100vh;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(212, 175, 55, 0.14), transparent 34rem),
    radial-gradient(circle at bottom right, rgba(139, 90, 43, 0.22), transparent 30rem),
    var(--black);
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

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

.section-heading {
  max-width: 760px;
  margin: 0 auto 54px;
  text-align: center;
}

.section-kicker,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.section-kicker::before,
.eyebrow::before {
  content: "";
  width: 42px;
  height: 1px;
  background: var(--gold);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.65);
}

h1,
h2,
h3 {
  color: var(--white);
  line-height: 1.05;
  letter-spacing: -0.045em;
}

h2 {
  font-size: clamp(2.2rem, 4vw, 4.4rem);
}

.section-heading p,
.about-content p,
.why-content p,
.contact-content p {
  color: var(--muted);
  font-size: 1.03rem;
  line-height: 1.85;
}

/* Header */
.site-header {
  position: fixed;
  inset: 18px 20px auto;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 14px 16px;
  border: 1px solid rgba(212, 175, 55, 0.18);
  border-radius: 999px;
  background: rgba(17, 17, 17, 0.72);
  backdrop-filter: blur(22px);
  box-shadow: 0 18px 70px rgba(0, 0, 0, 0.35);
  transition: 0.35s ease;
}

.site-header.scrolled {
  background: rgba(17, 17, 17, 0.9);
  border-color: rgba(212, 175, 55, 0.34);
  transform: translateY(-3px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(212, 175, 55, 0.55);
  border-radius: 50%;
  color: var(--black);
  background:
    linear-gradient(145deg, #ffe894, var(--gold) 52%, #9d7420);
  font-weight: 950;
  letter-spacing: -0.05em;
  box-shadow: 0 0 35px rgba(212, 175, 55, 0.34);
}

.brand-text {
  display: grid;
  line-height: 1.1;
}

.brand-text strong {
  font-size: 0.92rem;
  letter-spacing: 0.08em;
}

.brand-text small {
  color: var(--muted);
  font-size: 0.73rem;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 7px;
}

.nav-menu a {
  padding: 11px 15px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.91rem;
  font-weight: 700;
  transition: 0.25s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--white);
  background: rgba(255, 255, 255, 0.09);
}

.nav-menu .nav-cta {
  color: var(--black);
  background: var(--gold);
  box-shadow: 0 0 28px rgba(212, 175, 55, 0.33);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(212, 175, 55, 0.22);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 4px;
  background: var(--white);
  transition: 0.3s ease;
}

.menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* Hero */
.hero {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 150px 0 80px;
  overflow: hidden;
  isolation: isolate;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    linear-gradient(90deg, rgba(17, 17, 17, 0.94), rgba(17, 17, 17, 0.68), rgba(17, 17, 17, 0.92)),
    linear-gradient(180deg, rgba(17, 17, 17, 0.2), #111111 96%),
    url("https://images.unsplash.com/photo-1600566753086-00f18fb6b3ea?auto=format&fit=crop&w=1800&q=85") center/cover no-repeat;
  transform: scale(1.04);
  animation: heroBreath 11s ease-in-out infinite alternate;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 70% 28%, rgba(212, 175, 55, 0.22), transparent 24rem),
    radial-gradient(circle at 20% 72%, rgba(139, 90, 43, 0.28), transparent 24rem),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.03) 0 1px, transparent 1px 110px);
  opacity: 0.95;
}

.hero-content {
  width: var(--container);
  max-width: 1040px;
  text-align: center;
  z-index: 2;
  padding-top: 30px;
}

.hero h1 {
  margin-bottom: 22px;
  font-size: clamp(3.1rem, 9vw, 8.4rem);
  font-weight: 950;
  text-transform: uppercase;
  text-shadow: 0 20px 75px rgba(0, 0, 0, 0.7);
}

.hero h1::after {
  content: "";
  display: block;
  width: min(520px, 80vw);
  height: 2px;
  margin: 22px auto 0;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  box-shadow: 0 0 28px rgba(212, 175, 55, 0.75);
}

.hero-subtitle {
  max-width: 760px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.08rem, 2vw, 1.45rem);
  line-height: 1.75;
}

.hero-actions,
.form-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 34px;
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  overflow: hidden;
  font-weight: 900;
  letter-spacing: -0.02em;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.btn::before {
  content: "";
  position: absolute;
  inset: -80% -40%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.28), transparent);
  transform: rotate(25deg) translateX(-120%);
  transition: 0.55s ease;
}

.btn:hover {
  transform: translateY(-4px);
}

.btn:hover::before {
  transform: rotate(25deg) translateX(120%);
}

.btn-primary {
  color: var(--black);
  background: linear-gradient(135deg, #ffe995, var(--gold), #b68123);
  box-shadow: 0 16px 40px rgba(212, 175, 55, 0.28);
}

.btn-secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(212, 175, 55, 0.32);
  backdrop-filter: blur(14px);
}

.btn-whatsapp {
  color: #08190e;
  background: linear-gradient(135deg, #8fffaf, #25D366, #128C7E);
  box-shadow: 0 16px 42px rgba(37, 211, 102, 0.22);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 780px;
  margin: 44px auto 0;
}

.hero-stats div {
  padding: 22px 12px;
  border: 1px solid rgba(212, 175, 55, 0.22);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.065);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow);
}

.hero-stats strong {
  display: block;
  color: var(--gold);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
}

.hero-stats span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

/* Floating anti-gravity objects */
.floating-stage {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.float-item {
  position: absolute;
  filter: drop-shadow(0 26px 28px rgba(0, 0, 0, 0.48));
  will-change: transform;
  transform-style: preserve-3d;
}

.wallpaper-roll {
  width: 72px;
  height: 180px;
  border-radius: 36px;
  background:
    radial-gradient(circle at 50% 18%, #ffffff 0 12%, transparent 13%),
    repeating-linear-gradient(90deg, #f5efe0 0 10px, #d8c7a2 10px 18px, #8B5A2B 18px 21px),
    linear-gradient(135deg, #fff, #b7a078);
  border: 2px solid rgba(212, 175, 55, 0.4);
}

.wallpaper-roll::after {
  content: "";
  position: absolute;
  left: 17px;
  bottom: -28px;
  width: 38px;
  height: 44px;
  border-radius: 0 0 22px 22px;
  background: linear-gradient(180deg, rgba(255,255,255,0.8), rgba(212,175,55,0.28));
  transform: rotate(5deg);
}

.roll-one {
  left: 8%;
  top: 22%;
  animation: antiGravity 8s ease-in-out infinite;
}

.roll-two {
  right: 11%;
  top: 17%;
  width: 60px;
  height: 150px;
  opacity: 0.82;
  animation: antiGravity 9.2s ease-in-out infinite reverse;
}

.floor-sample {
  width: 150px;
  height: 96px;
  border-radius: 18px;
  background:
    repeating-linear-gradient(90deg, rgba(0,0,0,0.12) 0 2px, transparent 2px 25px),
    linear-gradient(135deg, #a36934, #d0a66b, #6b3e1b);
  border: 1px solid rgba(255, 255, 255, 0.18);
  transform: rotate(-14deg);
}

.floor-one {
  left: 16%;
  bottom: 22%;
  animation: floatRotate 7s ease-in-out infinite;
}

.floor-two {
  right: 18%;
  bottom: 26%;
  width: 126px;
  height: 82px;
  animation: floatRotate 10s ease-in-out infinite reverse;
}

.curtain {
  width: 110px;
  height: 178px;
  border-radius: 48% 48% 16px 16px;
  background:
    repeating-linear-gradient(90deg, rgba(0,0,0,0.18) 0 10px, rgba(255,255,255,0.09) 10px 18px),
    linear-gradient(135deg, #efe0bd, #c49b4f, #8B5A2B);
  opacity: 0.92;
}

.curtain::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 8px;
  right: 8px;
  height: 10px;
  border-radius: 99px;
  background: var(--gold);
}

.curtain-one {
  right: 5%;
  top: 44%;
  animation: sway 8s ease-in-out infinite;
}

.blind {
  width: 138px;
  height: 124px;
  border-radius: 16px;
  background:
    repeating-linear-gradient(180deg, #f4f0e3 0 9px, #d4af37 9px 12px, #876129 12px 14px),
    linear-gradient(135deg, #fff, #8B5A2B);
  opacity: 0.88;
}

.blind::after {
  content: "";
  position: absolute;
  top: 9px;
  right: -10px;
  width: 2px;
  height: 115px;
  background: rgba(255, 255, 255, 0.68);
}

.blind-one {
  left: 5%;
  top: 52%;
  animation: antiGravity 10s ease-in-out infinite reverse;
}

.plant {
  width: 120px;
  height: 155px;
}

.plant::before,
.plant::after {
  content: "";
  position: absolute;
  background: linear-gradient(135deg, #1d7a42, #88d66c);
  border-radius: 100% 0 100% 0;
  transform-origin: bottom center;
}

.plant::before {
  width: 72px;
  height: 100px;
  left: 4px;
  top: 0;
  transform: rotate(-24deg);
}

.plant::after {
  width: 78px;
  height: 112px;
  right: 2px;
  top: 12px;
  transform: rotate(28deg);
}

.plant-one {
  right: 28%;
  top: 12%;
  animation: sway 9s ease-in-out infinite;
}

.carpet {
  width: 145px;
  height: 64px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 35% 50%, rgba(255,255,255,0.34), transparent 18%),
    repeating-linear-gradient(90deg, #241209 0 7px, #8B5A2B 7px 15px, #D4AF37 15px 18px);
  border: 1px solid rgba(212, 175, 55, 0.35);
}

.carpet-one {
  left: 38%;
  bottom: 14%;
  animation: floatRotate 8.5s ease-in-out infinite;
}

.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  width: 34px;
  height: 56px;
  border: 1px solid rgba(212, 175, 55, 0.45);
  border-radius: 999px;
  transform: translateX(-50%);
}

.scroll-indicator span {
  position: absolute;
  left: 50%;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  transform: translateX(-50%);
  animation: scrollPulse 1.8s ease-in-out infinite;
}

/* About */
.about {
  background:
    linear-gradient(180deg, rgba(17, 17, 17, 1), rgba(24, 19, 15, 0.96)),
    radial-gradient(circle at 20% 40%, rgba(212, 175, 55, 0.16), transparent 32rem);
}

.about-grid,
.why-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.image-card {
  position: relative;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  background: linear-gradient(145deg, rgba(255,255,255,0.1), rgba(255,255,255,0.03));
  box-shadow: var(--shadow);
  transform: perspective(900px) rotateY(4deg) rotateX(2deg);
}

.image-card img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  border-radius: calc(var(--radius-xl) - 10px);
  filter: saturate(1.08) contrast(1.06);
}

.gold-badge {
  position: absolute;
  right: -18px;
  bottom: 44px;
  width: 172px;
  padding: 20px;
  border: 1px solid rgba(212, 175, 55, 0.42);
  border-radius: 22px;
  color: var(--black);
  background: linear-gradient(135deg, #ffe995, var(--gold), #a37520);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.4);
}

.gold-badge strong,
.gold-badge span {
  display: block;
}

.gold-badge strong {
  font-size: 1.3rem;
}

.gold-badge span {
  margin-top: 5px;
  font-size: 0.84rem;
  font-weight: 800;
}

.about-content h2,
.why-content h2,
.contact-content h2 {
  margin-bottom: 22px;
}

.about-content > p + p {
  margin-top: 16px;
}

.about-points {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}

.about-points div {
  padding: 22px;
  border: 1px solid rgba(212, 175, 55, 0.18);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.055);
}

.about-points span {
  color: var(--gold);
  font-weight: 950;
}

.about-points strong {
  display: block;
  margin: 8px 0 4px;
  color: var(--white);
  font-size: 1.06rem;
}

/* Services */
.services {
  background:
    radial-gradient(circle at 80% 20%, rgba(212, 175, 55, 0.12), transparent 30rem),
    linear-gradient(180deg, rgba(24, 19, 15, 0.96), var(--black));
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.service-card {
  position: relative;
  min-height: 310px;
  padding: 28px;
  border: 1px solid rgba(212, 175, 55, 0.18);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(145deg, rgba(255,255,255,0.095), rgba(255,255,255,0.035)),
    radial-gradient(circle at top right, rgba(212,175,55,0.1), transparent 14rem);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  transition: 0.32s ease;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(212,175,55,0.24), transparent 34%, rgba(255,255,255,0.08));
  opacity: 0;
  transition: 0.32s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: rgba(212, 175, 55, 0.5);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.36), 0 0 40px rgba(212, 175, 55, 0.12);
}

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

.service-icon {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: 22px;
  border: 1px solid rgba(212, 175, 55, 0.42);
  border-radius: 18px;
  color: var(--gold);
  background: rgba(212, 175, 55, 0.09);
  font-size: 1.6rem;
}

.service-card h3 {
  position: relative;
  z-index: 1;
  margin-bottom: 18px;
  font-size: 1.38rem;
}

.service-card ul {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 9px;
  list-style: none;
}

.service-card li {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.45;
}

.service-card li::before {
  content: "•";
  margin-right: 8px;
  color: var(--gold);
}

/* Featured */
.featured {
  background:
    linear-gradient(180deg, var(--black), #17120e),
    radial-gradient(circle at 20% 80%, rgba(139, 90, 43, 0.24), transparent 28rem);
}

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

.featured-card {
  position: relative;
  min-height: 440px;
  padding: 16px;
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.075);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow);
  transform-style: preserve-3d;
  transition: 0.24s ease;
  overflow: hidden;
}

.featured-card::before {
  content: "";
  position: absolute;
  inset: -2px;
  z-index: -1;
  border-radius: inherit;
  background: linear-gradient(135deg, transparent, rgba(212,175,55,0.75), transparent);
  opacity: 0;
  transition: 0.3s ease;
}

.featured-card:hover::before {
  opacity: 1;
  filter: blur(8px);
}

.featured-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 24px;
}

.featured-card div {
  padding: 22px 6px 6px;
  transform: translateZ(36px);
}

.featured-card span {
  color: var(--gold);
  font-weight: 950;
}

.featured-card h3 {
  margin: 10px 0;
  font-size: 1.5rem;
}

.featured-card p {
  color: var(--muted);
  line-height: 1.7;
}

/* Gallery */
.gallery {
  background:
    radial-gradient(circle at top, rgba(212, 175, 55, 0.1), transparent 28rem),
    #111111;
}

.masonry-gallery {
  columns: 3 280px;
  column-gap: 20px;
}

.gallery-item {
  position: relative;
  width: 100%;
  display: block;
  margin: 0 0 20px;
  break-inside: avoid;
  border: 1px solid rgba(212, 175, 55, 0.18);
  border-radius: 28px;
  background: transparent;
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
}

.gallery-item img {
  width: 100%;
  height: 310px;
  object-fit: cover;
  transition: 0.6s ease;
}

.gallery-item.tall img {
  height: 430px;
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.82));
  opacity: 0.92;
}

.gallery-item span {
  position: absolute;
  left: 22px;
  bottom: 22px;
  z-index: 1;
  color: var(--white);
  font-weight: 900;
  font-size: 1.1rem;
}

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

.gallery-item:hover {
  border-color: rgba(212, 175, 55, 0.55);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: grid;
  place-items: center;
  padding: 26px;
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(18px);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
}

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

.lightbox img {
  max-width: min(1100px, 92vw);
  max-height: 78vh;
  border: 1px solid rgba(212, 175, 55, 0.38);
  border-radius: 28px;
  box-shadow: 0 0 80px rgba(212, 175, 55, 0.12);
  transform: scale(0.92);
  transition: 0.3s ease;
}

.lightbox.active img {
  transform: scale(1);
}

.lightbox p {
  margin-top: 18px;
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 900;
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: 50%;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  font-size: 2rem;
}

/* Why */
.why {
  background:
    linear-gradient(145deg, #18100b, #111111),
    radial-gradient(circle at 80% 55%, rgba(212, 175, 55, 0.12), transparent 26rem);
}

.counter-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.counter-card {
  min-height: 170px;
  padding: 28px;
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.075);
  box-shadow: var(--shadow);
  transition: 0.32s ease;
}

.counter-card:hover {
  transform: translateY(-8px) rotateX(4deg);
  border-color: rgba(212, 175, 55, 0.5);
}

.counter-card strong,
.counter-card span {
  color: var(--gold);
  font-size: clamp(2rem, 4vw, 3.1rem);
  font-weight: 950;
  letter-spacing: -0.06em;
}

.counter-card p {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.72);
}

/* Testimonials */
.testimonials {
  background:
    radial-gradient(circle at 30% 30%, rgba(212, 175, 55, 0.12), transparent 28rem),
    #111111;
  overflow: hidden;
}

.testimonial-shell {
  max-width: 820px;
  margin: 0 auto;
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  transition: transform 0.55s cubic-bezier(.2,.75,.2,1);
}

.testimonial-card {
  flex: 0 0 100%;
  padding: 42px;
  border: 1px solid rgba(212, 175, 55, 0.24);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(145deg, rgba(255,255,255,0.11), rgba(255,255,255,0.045)),
    radial-gradient(circle at top right, rgba(212, 175, 55, 0.12), transparent 18rem);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
  animation: reviewFloat 6s ease-in-out infinite;
}

.stars {
  margin-bottom: 18px;
  color: var(--gold);
  letter-spacing: 0.18em;
}

.testimonial-card p {
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  line-height: 1.75;
}

.testimonial-card h3 {
  margin-top: 22px;
  font-size: 1.18rem;
}

.testimonial-card span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
}

.testimonial-dots button {
  width: 11px;
  height: 11px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.26);
  transition: 0.25s ease;
}

.testimonial-dots button.active {
  width: 34px;
  background: var(--gold);
}

/* Contact */
.contact {
  background:
    linear-gradient(180deg, #111111, #160f0a),
    radial-gradient(circle at 18% 40%, rgba(212, 175, 55, 0.13), transparent 28rem);
}

.contact-info {
  display: grid;
  gap: 14px;
  margin-top: 30px;
}

.contact-info a,
.contact-info > div {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px;
  border: 1px solid rgba(212, 175, 55, 0.18);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.055);
  transition: 0.25s ease;
}

.contact-info a:hover {
  transform: translateX(8px);
  border-color: rgba(212, 175, 55, 0.5);
}

.contact-info span {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  color: var(--black);
  background: var(--gold);
  font-weight: 950;
}

.contact-info strong {
  color: var(--white);
}

.contact-info p {
  margin-top: 3px;
  font-size: 0.94rem;
}

.quote-form {
  padding: 30px;
  border: 1px solid rgba(212, 175, 55, 0.24);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(145deg, rgba(255,255,255,0.1), rgba(255,255,255,0.04));
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow);
}

.quote-form label {
  display: grid;
  gap: 9px;
  margin-bottom: 16px;
  color: var(--white);
  font-size: 0.94rem;
  font-weight: 800;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  border: 1px solid rgba(212, 175, 55, 0.22);
  border-radius: 16px;
  outline: 0;
  padding: 15px 16px;
  color: var(--white);
  background: rgba(0, 0, 0, 0.24);
  transition: 0.25s ease;
}

.quote-form select {
  color-scheme: dark;
}

.quote-form textarea {
  resize: vertical;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  border-color: rgba(212, 175, 55, 0.75);
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.12);
}

.quote-form .form-actions {
  margin-top: 22px;
  justify-content: flex-start;
}

.form-note {
  min-height: 22px;
  margin-top: 16px;
  color: var(--gold);
  font-weight: 800;
}

/* Footer */
.footer {
  padding-top: 70px;
  background: #0c0c0c;
  border-top: 1px solid rgba(212, 175, 55, 0.17);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 0.8fr;
  gap: 34px;
  padding-bottom: 46px;
}

.footer p,
.footer a {
  display: block;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.64);
  line-height: 1.7;
}

.footer h3 {
  margin-bottom: 18px;
  font-size: 1.05rem;
}

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

.footer-brand {
  margin-bottom: 18px;
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-links a {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-top: 0;
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 50%;
  color: var(--white);
  background: rgba(255, 255, 255, 0.055);
  font-weight: 900;
}

.footer-bottom {
  padding: 20px;
  text-align: center;
  border-top: 1px solid rgba(212, 175, 55, 0.12);
}

.footer-bottom p {
  margin: 0;
  font-size: 0.9rem;
}

/* Cursor glow and particles */
.cursor-glow {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 999;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(212,175,55,0.16), transparent 66%);
  transform: translate(-50%, -50%);
  mix-blend-mode: screen;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.particles {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.42);
  box-shadow: 0 0 18px rgba(212, 175, 55, 0.55);
  animation: particleFloat linear infinite;
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(44px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* Keyframes */
@keyframes heroBreath {
  from { transform: scale(1.04) translateY(0); }
  to { transform: scale(1.09) translateY(-12px); }
}

@keyframes antiGravity {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(-8deg); }
  35% { transform: translate3d(18px, -34px, 0) rotate(7deg); }
  70% { transform: translate3d(-16px, 18px, 0) rotate(-13deg); }
}

@keyframes floatRotate {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(-14deg); }
  50% { transform: translate3d(22px, -28px, 0) rotate(12deg); }
}

@keyframes sway {
  0%, 100% { transform: translateY(0) rotate(-3deg); }
  50% { transform: translateY(-26px) rotate(5deg); }
}

@keyframes scrollPulse {
  0% { opacity: 1; transform: translate(-50%, 0); }
  100% { opacity: 0; transform: translate(-50%, 26px); }
}

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

@keyframes particleFloat {
  0% {
    transform: translateY(110vh) translateX(0) scale(0.6);
    opacity: 0;
  }
  15% { opacity: 1; }
  100% {
    transform: translateY(-20vh) translateX(70px) scale(1.1);
    opacity: 0;
  }
}

/* Responsive */
@media (max-width: 1024px) {
  .service-grid,
  .featured-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .about-image {
    order: 2;
  }

  .image-card img {
    height: 440px;
  }

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

  .curtain-one,
  .plant-one {
    opacity: 0.55;
  }
}

@media (max-width: 820px) {
  .site-header {
    inset: 12px 12px auto;
    width: calc(100% - 24px);
    border-radius: 28px;
  }

  .brand-text small {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .nav-menu {
    position: fixed;
    left: 12px;
    right: 12px;
    top: 84px;
    display: grid;
    padding: 16px;
    border: 1px solid rgba(212, 175, 55, 0.22);
    border-radius: 26px;
    background: rgba(17, 17, 17, 0.96);
    backdrop-filter: blur(22px);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-18px);
    transition: 0.3s ease;
  }

  .menu-open .nav-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-menu a {
    padding: 14px 16px;
  }

  .hero {
    padding-top: 130px;
  }

  .hero-stats {
    grid-template-columns: 1fr;
    max-width: 420px;
  }

  .wallpaper-roll,
  .floor-sample,
  .curtain,
  .blind,
  .plant,
  .carpet {
    transform: scale(0.78);
    opacity: 0.45;
  }

  .roll-one { left: -12px; }
  .roll-two { right: -10px; }
  .blind-one { left: -32px; }
  .curtain-one { right: -26px; }

  .section {
    padding: 82px 0;
  }
}

@media (max-width: 640px) {
  :root {
    --container: min(100% - 28px, 1180px);
  }

  .service-grid,
  .featured-grid,
  .counter-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .form-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .hero h1 {
    font-size: clamp(2.8rem, 14vw, 4.5rem);
  }

  .section-heading {
    text-align: left;
  }

  .section-kicker::before,
  .eyebrow::before {
    width: 26px;
  }

  .image-card img {
    height: 350px;
  }

  .gold-badge {
    right: 12px;
    bottom: 24px;
  }

  .quote-form {
    padding: 20px;
  }

  .testimonial-card {
    padding: 28px 22px;
  }

  .gallery-item img,
  .gallery-item.tall img {
    height: 290px;
  }

  .cursor-glow {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}
