/* ─── CSS Variables ─── */
:root {
  --gold: #ffd000;
  --gold-dim: #c9a500;
  --gold-glow: rgba(255, 208, 0, 0.35);
  --black: #050505;
  --black-2: #0e0e0e;
  --black-3: #151515;
  --black-4: #1e1e1e;
  --white: #ffffff;
  --white-dim: rgba(255, 255, 255, 0.08);
  --white-mid: rgba(255, 255, 255, 0.12);
  --glass: rgba(12, 12, 12, 0.72);
  --radius: 18px;
  --radius-lg: 26px;
  --transition: 0.38s cubic-bezier(0.4, 0, 0.2, 1);
  --font: "Poppins", sans-serif;
}

/* ─── Reset & Base ─── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font);
  overflow-x: hidden;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  display: block;
  max-width: 100%;
}
ul {
  list-style: none;
}
button,
input,
textarea {
  font-family: var(--font);
}

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

/* ─── Selection ─── */
::selection {
  background: var(--gold);
  color: var(--black);
}

/* ─── Reusable ─── */
.section {
  padding: 100px 24px;
  position: relative;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
}
.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(255, 208, 0, 0.1);
  border: 1px solid rgba(255, 208, 0, 0.25);
  padding: 6px 18px;
  border-radius: 100px;
  margin-bottom: 18px;
}
.section-title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.section-title span {
  color: var(--gold);
}
.section-sub {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.55);
  max-width: 540px;
  line-height: 1.8;
}
.gold-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: var(--black);
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  padding: 15px 32px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 0 28px var(--gold-glow);
  position: relative;
  overflow: hidden;
}
.gold-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.22) 0%,
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.3s;
}
.gold-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 50px rgba(255, 208, 0, 0.6);
}
.gold-btn:hover::before {
  opacity: 1;
}
.outline-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--gold);
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  padding: 14px 32px;
  border-radius: 100px;
  border: 1.5px solid var(--gold);
  cursor: pointer;
  transition: var(--transition);
}
.outline-btn:hover {
  background: var(--gold);
  color: var(--black);
  box-shadow: 0 0 40px var(--gold-glow);
  transform: translateY(-3px);
}

/* ─── Scroll Reveal ─── */
.reveal {
  opacity: 0;
  transform: translateY(42px);
  transition:
    opacity 0.75s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.75s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 {
  transition-delay: 0.1s;
}
.reveal-delay-2 {
  transition-delay: 0.22s;
}
.reveal-delay-3 {
  transition-delay: 0.34s;
}
.reveal-delay-4 {
  transition-delay: 0.46s;
}
.reveal-left {
  opacity: 0;
  transform: translateX(-42px);
  transition:
    opacity 0.75s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.75s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}
.reveal-right {
  opacity: 0;
  transform: translateX(42px);
  transition:
    opacity 0.75s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.75s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ════════════════════════════════
   NAVBAR PREMIUM FIXED
════════════════════════════════ */

#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;

  z-index: 10000;

  padding: 16px 24px;

  background: rgba(5, 5, 5, 0.82);

  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);

  border-bottom: 1px solid rgba(255, 208, 0, 0.08);

  box-shadow:
    0 2px 30px rgba(0, 0, 0, 0.45),
    0 0 20px rgba(255, 208, 0, 0.03);

  transition:
    background 0.4s ease,
    padding 0.4s ease,
    box-shadow 0.4s ease,
    border 0.4s ease;
}

/* SCROLL EFFECT */

#navbar.scrolled {
  padding: 11px 24px;

  background: rgba(0, 0, 0, 0.94);

  border-bottom: 1px solid rgba(255, 208, 0, 0.15);

  box-shadow:
    0 8px 40px rgba(0, 0, 0, 0.65),
    0 0 25px rgba(255, 208, 0, 0.06);
}

/* INNER */

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LOGO */

.nav-logo img {
  height: 52px;
  width: auto;

  border-radius: 12px;

  filter: drop-shadow(0 0 12px rgba(255, 208, 0, 0.35));

  transition:
    transform 0.35s ease,
    filter 0.35s ease;
}

.nav-logo:hover img {
  transform: scale(1.05);

  filter: drop-shadow(0 0 25px rgba(255, 208, 0, 0.8));
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-izzah {
  font-size: 1.15rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  color: var(--gold);

  text-shadow:
    0 0 10px rgba(255, 208, 0, 0.4),
    0 0 20px rgba(255, 208, 0, 0.2);
}

.logo-boutique {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.38em;

  color: #000;

  background: var(--white);

  padding: 4px 8px;

  border-radius: 30px;

  margin-top: 6px;

  width: fit-content;

  box-shadow: 0 0 12px rgba(255, 255, 255, 0.08);
}
/* LINKS */

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
}

.nav-links a {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;

  color: rgba(255, 255, 255, 0.82);

  position: relative;

  transition:
    color 0.3s ease,
    text-shadow 0.3s ease;
}

.nav-links a::after {
  content: "";

  position: absolute;

  left: 0;
  bottom: -6px;

  width: 0%;
  height: 2px;

  background: var(--gold);

  border-radius: 10px;

  box-shadow:
    0 0 10px var(--gold),
    0 0 20px var(--gold);

  transition: width 0.35s ease;
}

.nav-links a:hover {
  color: var(--gold);

  text-shadow: 0 0 12px rgba(255, 208, 0, 0.4);
}

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

/* CTA */

.nav-cta {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* HAMBURGER */

.hamburger {
  display: none;

  flex-direction: column;

  gap: 5px;

  cursor: pointer;

  padding: 4px;

  background: transparent;

  border: none;

  z-index: 10001;
}

.hamburger span {
  display: block;

  width: 28px;
  height: 2px;

  background: var(--gold);

  border-radius: 10px;

  transition: all 0.35s ease;
}

.hamburger:hover span {
  box-shadow:
    0 0 10px var(--gold),
    0 0 20px var(--gold);
}

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

.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

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

/* ════════════════════════════════
   MOBILE MENU
════════════════════════════════ */

.mobile-menu {
  display: flex;

  position: fixed;

  top: 0;
  left: 0;

  width: 100%;
  height: 100%;

  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.98),
    rgba(10, 10, 10, 0.98)
  );

  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);

  z-index: 9999;

  flex-direction: column;

  align-items: center;
  justify-content: center;

  gap: 30px;

  opacity: 0;

  visibility: hidden;

  transform: translateY(-20px);

  transition:
    opacity 0.4s ease,
    transform 0.4s ease,
    visibility 0.4s;
}

.mobile-menu.open {
  opacity: 1;

  visibility: visible;

  transform: translateY(0);
}

/* MOBILE MENU LINKS */

.mobile-menu a {
  font-size: 1.45rem;

  font-weight: 700;

  letter-spacing: 0.08em;

  color: rgba(255, 255, 255, 0.88);

  transition:
    color 0.3s ease,
    transform 0.3s ease,
    text-shadow 0.3s ease;
}

.mobile-menu a:hover {
  color: var(--gold);

  transform: scale(1.04);

  text-shadow:
    0 0 15px var(--gold),
    0 0 30px var(--gold);
}

/* BOOK APPOINTMENT BUTTON */

.mobile-book-btn {
  width: auto !important;

  min-width: 220px;

  justify-content: center;

  padding: 14px 26px !important;

  font-size: 0.82rem !important;

  margin-top: 10px;

  border-radius: 100px;

  align-self: center;

  box-shadow: 0 0 25px rgba(255, 208, 0, 0.25);
}

/* CLOSE BUTTON */

.mobile-close {
  position: absolute;

  top: 22px;
  right: 20px;

  width: 48px;
  height: 48px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(255, 208, 0, 0.08);

  border: 1px solid rgba(255, 208, 0, 0.22);

  border-radius: 14px;

  color: var(--gold);

  font-size: 1.4rem;

  cursor: pointer;

  z-index: 10010;

  backdrop-filter: blur(10px);

  box-shadow: 0 0 18px rgba(255, 208, 0, 0.12);

  transition:
    transform 0.3s ease,
    background 0.3s ease,
    box-shadow 0.3s ease,
    border 0.3s ease;
}

.mobile-close:hover {
  background: var(--gold);

  color: var(--black);

  transform: rotate(90deg) scale(1.05);

  box-shadow: 0 0 28px rgba(255, 208, 0, 0.45);
}

.mobile-close:active {
  transform: scale(0.94);
}

/* HAMBURGER */

.hamburger {
  display: none;

  flex-direction: column;

  gap: 5px;

  cursor: pointer;

  padding: 4px;

  background: transparent;

  border: none;

  z-index: 10011;
}

.hamburger span {
  display: block;

  width: 28px;
  height: 2px;

  background: var(--gold);

  border-radius: 10px;

  transition: all 0.35s ease;
}

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

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

  transform: scaleX(0);
}

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

/* MOBILE */

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

  .hamburger {
    display: flex;
  }

  #navbar {
    padding: 14px 18px;
  }

  .nav-logo img {
    height: 46px;
  }
}

/* ════════════════════════════════
       HERO
    ════════════════════════════════ */
#hero {
  position: relative;

  min-height: 100svh;

  display: flex;
  align-items: center;

  overflow: hidden;

  padding-top: 110px;
  padding-bottom: 40px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("../images/bg1.jpeg");
  background-size: cover;
  background-position: center top;
  transform: scale(1.08);
  animation: heroZoom 18s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  from {
    transform: scale(1.08);
  }
  to {
    transform: scale(1.14);
  }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(5, 5, 5, 0.92) 0%,
    rgba(5, 5, 5, 0.6) 60%,
    rgba(5, 5, 5, 0.85) 100%
  );
}
#particles-canvas {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 24px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}
.hero-content {
  padding-top: 20px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(255, 208, 0, 0.3);
  padding: 7px 18px;
  border-radius: 100px;
  margin-bottom: 28px;
  animation: fadeDown 0.9s 0.2s both;
  background: rgba(255, 208, 0, 0.06);
}
.hero-badge i {
  font-size: 0.65rem;
}
.hero-title {
  font-size: clamp(2.8rem, 8vw, 6.2rem);
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  animation: fadeUp 0.9s 0.4s both;
}
.hero-title .line {
  display: block;
}
.hero-title .gold-text {
  color: var(--gold);
  text-shadow:
    0 0 60px rgba(255, 208, 0, 0.6),
    0 0 120px rgba(255, 208, 0, 0.25);
}
.hero-tagline {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255, 255, 255, 0.65);
  font-weight: 300;
  letter-spacing: 0.06em;
  max-width: 480px;
  margin-bottom: 42px;
  animation: fadeUp 0.9s 0.6s both;
}
.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 72px;
  animation: fadeUp 0.9s 0.8s both;
}
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  animation: fadeUp 0.9s 1s both;
}
.stat-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(20px);
  border-radius: var(--radius);
  padding: 20px 28px;
  min-width: 140px;
  text-align: center;
  transition: var(--transition);
}
.stat-card:hover {
  border-color: rgba(255, 208, 0, 0.4);
  box-shadow: 0 0 28px rgba(255, 208, 0, 0.15);
  transform: translateY(-4px);
}
.stat-number {
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 4px;
  text-shadow: 0 0 20px rgba(255, 208, 0, 0.5);
}
.stat-label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
}
.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: bounce 2.5s infinite;
}
.hero-scroll span {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.4);
}
.hero-scroll i {
  color: var(--gold);
  font-size: 1.1rem;
}
@keyframes bounce {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(10px);
  }
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(36px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ════════════════════════════════
       COLLECTIONS
    ════════════════════════════════ */
#collections {
  background: var(--black-2);
}
.collections-header {
  text-align: center;
  margin-bottom: 60px;
}
.collections-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}
.coll-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  height: 460px;
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.coll-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 208, 0, 0.5);
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.6),
    0 0 40px rgba(255, 208, 0, 0.2);
}
.coll-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s cubic-bezier(0.4, 0, 0.2, 1);
}
.coll-card:hover .coll-img {
  transform: scale(1.1);
}
.coll-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(5, 5, 5, 0.92) 0%,
    rgba(5, 5, 5, 0.2) 60%,
    transparent 100%
  );
  transition: background 0.4s;
}
.coll-card:hover .coll-overlay {
  background: linear-gradient(
    to top,
    rgba(5, 5, 5, 0.95) 0%,
    rgba(5, 5, 5, 0.35) 60%,
    rgba(5, 5, 5, 0.1) 100%
  );
}
.coll-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px 28px;
}
.coll-tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(255, 208, 0, 0.12);
  border: 1px solid rgba(255, 208, 0, 0.3);
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 10px;
}
.coll-name {
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.coll-desc {
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 18px;
  line-height: 1.6;
}
.coll-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.08em;
  transition: gap 0.3s;
}
.coll-link:hover {
  gap: 14px;
}

/* ════════════════════════════════
       WHY CHOOSE US
    ════════════════════════════════ */
#why {
  background: var(--black);
  position: relative;
  overflow: hidden;
}
#why::before {
  content: "";
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(255, 208, 0, 0.06) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.why-header {
  text-align: center;
  margin-bottom: 60px;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.why-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(20px);
  border-radius: var(--radius);
  padding: 40px 30px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.why-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}
.why-card:hover {
  transform: translateY(-10px);
  border-color: rgba(255, 208, 0, 0.35);
  background: rgba(255, 208, 0, 0.04);
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.5),
    0 0 30px rgba(255, 208, 0, 0.1);
}
.why-card:hover::before {
  opacity: 1;
}
.why-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(255, 208, 0, 0.1);
  border: 1.5px solid rgba(255, 208, 0, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 1.6rem;
  color: var(--gold);
  transition: var(--transition);
}
.why-card:hover .why-icon {
  background: var(--gold);
  color: var(--black);
  box-shadow: 0 0 30px rgba(255, 208, 0, 0.5);
  transform: rotateY(360deg);
  transition:
    transform 0.7s,
    background 0.3s,
    color 0.3s,
    box-shadow 0.3s;
}
.why-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.why-text {
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.75;
}

/* ════════════════════════════════
       GALLERY
    ════════════════════════════════ */
#gallery {
  background: var(--black-2);
}
.gallery-header {
  text-align: center;
  margin-bottom: 60px;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 16px;
}
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.gallery-item:nth-child(1) {
  grid-column: 1;
  grid-row: 1 / 3;
}
.gallery-item:nth-child(4) {
  grid-column: 3;
  grid-row: 1 / 3;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 200px;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.gallery-item:hover img {
  transform: scale(1.1);
}
.gallery-glow {
  position: absolute;
  inset: 0;
  background: rgba(5, 5, 5, 0.25);
  transition: background 0.4s;
}
.gallery-item:hover .gallery-glow {
  background: rgba(255, 208, 0, 0.08);
  box-shadow: inset 0 0 0 2px rgba(255, 208, 0, 0.45);
}
.gallery-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s;
  color: var(--gold);
  font-size: 2rem;
}
.gallery-item:hover .gallery-icon {
  opacity: 1;
}

/* ════════════════════════════════
       ABOUT
    ════════════════════════════════ */
#about {
  background: var(--black);
  position: relative;
  overflow: hidden;
}
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.about-img-wrap {
  position: relative;
}
.about-img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  position: relative;
  z-index: 1;
}
.about-img-deco {
  position: absolute;
  inset: -16px -16px 16px 16px;
  border: 2px solid rgba(255, 208, 0, 0.22);
  border-radius: var(--radius-lg);
  z-index: 0;
}
.about-img-badge {
  position: absolute;
  bottom: 30px;
  right: -20px;
  z-index: 2;
  background: var(--gold);
  color: var(--black);
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  padding: 14px 22px;
  border-radius: var(--radius);
  box-shadow: 0 8px 40px rgba(255, 208, 0, 0.4);
  line-height: 1.5;
}
.about-content .section-sub {
  max-width: 100%;
  margin-bottom: 24px;
}
.about-quote {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--gold);
  border-left: 3px solid var(--gold);
  padding-left: 20px;
  margin: 28px 0;
  line-height: 1.65;
  text-shadow: 0 0 20px rgba(255, 208, 0, 0.3);
}
.about-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 34px;
}
.about-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.75);
}
.about-list li i {
  color: var(--gold);
  font-size: 0.85rem;
}

/* ════════════════════════════════
       TESTIMONIALS
    ════════════════════════════════ */
#testimonials {
  background: var(--black-2);
}
.testi-header {
  text-align: center;
  margin-bottom: 60px;
}
.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.testi-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius);
  padding: 36px 30px;
  position: relative;
  transition: var(--transition);
  overflow: hidden;
}
.testi-card::after {
  content: "\201C";
  position: absolute;
  top: 14px;
  right: 24px;
  font-size: 7rem;
  font-family: Georgia, serif;
  color: rgba(255, 208, 0, 0.07);
  line-height: 1;
  pointer-events: none;
}
.testi-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 208, 0, 0.35);
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.4),
    0 0 25px rgba(255, 208, 0, 0.1);
}
.testi-stars {
  display: flex;
  gap: 4px;
  color: var(--gold);
  font-size: 0.85rem;
  margin-bottom: 18px;
}
.testi-text {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  margin-bottom: 28px;
  font-style: italic;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testi-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 208, 0, 0.4);
}
.testi-name {
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 2px;
}
.testi-role {
  font-size: 0.75rem;
  color: var(--gold);
  letter-spacing: 0.06em;
}

/* ════════════════════════════════
       CONTACT
    ════════════════════════════════ */
#contact {
  background: var(--black);
}
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 70px;
  align-items: start;
}
.contact-info .section-sub {
  margin-bottom: 40px;
}
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 28px;
}
.contact-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(255, 208, 0, 0.1);
  border: 1px solid rgba(255, 208, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.1rem;
  flex-shrink: 0;
  transition: var(--transition);
}
.contact-detail:hover .contact-icon {
  background: var(--gold);
  color: var(--black);
  box-shadow: 0 0 24px rgba(255, 208, 0, 0.4);
}
.contact-detail-label {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  color: var(--gold);
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 4px;
}
.contact-detail-val {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.75);
}
.contact-form {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-lg);
  padding: 46px 40px;
  backdrop-filter: blur(20px);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.form-group {
  margin-bottom: 20px;
  position: relative;
}
.form-group label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1.5px solid rgba(255, 255, 255, 0.09);
  border-radius: 12px;
  padding: 14px 18px;
  color: var(--white);
  font-size: 0.9rem;
  outline: none;
  transition:
    border-color 0.3s,
    box-shadow 0.3s;
  appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.3);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(255, 208, 0, 0.12);
}
.form-group textarea {
  resize: vertical;
  min-height: 120px;
}
.form-submit {
  width: 100%;
  margin-top: 8px;
  justify-content: center;
  font-size: 0.95rem;
  padding: 17px;
}

/* ════════════════════════════════
       FOOTER
    ════════════════════════════════ */
footer {
  background: var(--black-2);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 70px 24px 36px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 60px;
}
.footer-brand img {
  height: 52px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 14px rgba(255, 208, 0, 0.35));
}
.footer-brand p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.8;
  max-width: 300px;
  margin-bottom: 28px;
}
.social-links {
  display: flex;
  gap: 14px;
}
.social-link {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 1rem;
  transition: var(--transition);
}
.social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
  box-shadow: 0 0 20px rgba(255, 208, 0, 0.3);
  transform: translateY(-3px);
}
.footer-col h4 {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 22px;
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-col ul a {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.45);
  transition:
    color 0.3s,
    padding-left 0.3s;
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-col ul a:hover {
  color: var(--gold);
  padding-left: 6px;
}
.footer-col ul a i {
  font-size: 0.65rem;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-copy {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.3);
}
.footer-copy span {
  color: var(--gold);
}
.footer-tagline {
  font-size: 0.75rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.25);
  letter-spacing: 0.06em;
}

/* ════════════════════════════════
       FLOATING WHATSAPP
    ════════════════════════════════ */
.wa-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 998;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.6rem;
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.45);
  transition: var(--transition);
  text-decoration: none;
}
.wa-float:hover {
  transform: scale(1.12);
  box-shadow: 0 8px 40px rgba(37, 211, 102, 0.65);
}
.wa-float::before {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.4);
  animation: waPulse 2.2s ease-out infinite;
}
@keyframes waPulse {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }
  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}

/* ════════════════════════════════
       LIGHTBOX
    ════════════════════════════════ */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.93);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(12px);
}
.lightbox.open {
  display: flex;
}
.lightbox-img {
  max-width: 88vw;
  max-height: 88vh;
  border-radius: var(--radius);
  box-shadow: 0 0 80px rgba(255, 208, 0, 0.2);
}
.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: rgba(255, 208, 0, 0.1);
  border: 1px solid rgba(255, 208, 0, 0.3);
  color: var(--gold);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}
.lightbox-close:hover {
  background: var(--gold);
  color: var(--black);
}

/* ════════════════════════════════
       NOTIFICATION TOAST
    ════════════════════════════════ */
.toast {
  position: fixed;
  bottom: 100px;
  right: 30px;
  background: rgba(20, 20, 20, 0.95);
  border: 1px solid rgba(255, 208, 0, 0.4);
  border-radius: 14px;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.88rem;
  color: var(--white);
  z-index: 1999;
  transform: translateX(120%);
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow:
    0 10px 40px rgba(0, 0, 0, 0.5),
    0 0 20px rgba(255, 208, 0, 0.1);
}
.toast.show {
  transform: translateX(0);
}
.toast i {
  color: var(--gold);
  font-size: 1.1rem;
}

/* ════════════════════════════════
       RESPONSIVE
    ════════════════════════════════ */
@media (max-width: 1024px) {
  .about-inner {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .about-img {
    height: 400px;
  }
  .about-img-badge {
    right: 20px;
  }
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
  .gallery-item:nth-child(1),
  .gallery-item:nth-child(4) {
    grid-column: auto;
    grid-row: auto;
  }
}
/* ════════════════════════════════
   TABLET & MOBILE
════════════════════════════════ */

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

  .section {
    padding: 72px 20px;
  }

  /* NAVBAR */

  #navbar {
    padding: 14px 18px;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .nav-logo img {
    height: 46px;
  }

  /* HERO */

  #hero {
    min-height: 100svh;

    padding-top: 130px;
    padding-bottom: 50px;

    align-items: flex-start;
  }

  .hero-content {
    padding-top: 10px;
  }

  .hero-badge {
    margin-bottom: 22px;

    font-size: 0.68rem;

    letter-spacing: 0.18em;

    padding: 7px 16px;
  }

  .hero-title {
    font-size: clamp(2.5rem, 9vw, 4rem);

    line-height: 1.05;

    margin-bottom: 20px;
  }

  .hero-tagline {
    font-size: 0.95rem;

    line-height: 1.8;

    margin-bottom: 32px;

    max-width: 100%;
  }

  .hero-btns {
    flex-direction: column;

    align-items: stretch;

    gap: 14px;

    margin-bottom: 42px;
  }

  .hero-btns .gold-btn,
  .hero-btns .outline-btn {
    justify-content: center;

    width: 100%;
  }

  .hero-stats {
    gap: 12px;

    justify-content: space-between;
  }

  .stat-card {
    flex: 1;

    min-width: 100px;

    padding: 16px 12px;
  }

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

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

  .hero-scroll {
    bottom: 22px;
  }

  /* COLLECTIONS */

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

  .coll-card {
    height: 400px;
  }

  /* WHY */

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

  /* ABOUT */

  .about-inner {
    grid-template-columns: 1fr;

    gap: 50px;
  }

  .about-img {
    height: 380px;
  }

  .about-img-badge {
    right: 16px;
    bottom: 20px;
  }

  /* GALLERY */

  .gallery-grid {
    grid-template-columns: 1fr 1fr;

    gap: 12px;
  }

  .gallery-item:nth-child(1),
  .gallery-item:nth-child(4) {
    grid-column: auto;
    grid-row: auto;
  }

  /* CONTACT */

  .contact-inner {
    grid-template-columns: 1fr;

    gap: 50px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 30px 22px;
  }

  /* TESTIMONIALS */

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

  /* FOOTER */

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

    gap: 36px;
  }

  .footer-bottom {
    flex-direction: column;

    text-align: center;
  }

  /* WHATSAPP */

  .wa-float {
    width: 54px;
    height: 54px;

    bottom: 20px;
    right: 20px;

    font-size: 1.4rem;
  }
}
