/* ===== ARA DECOR STUDIO — style.css (Black & Gold Edition) ===== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400;1,600&family=Jost:wght@300;400;500;600&display=swap');

:root {
  --black: #0a0a0a;
  --black-mid: #111111;
  --black-light: #1a1a1a;
  --black-card: #1e1e1e;
  --black-soft: #222222;
  --gold: #C9A84C;
  --gold-light: #E2C97E;
  --gold-bright: #F0D060;
  --gold-dim: rgba(201,168,76,0.15);
  --gold-pale: rgba(201,168,76,0.07);
  --text-white: #ffffff;
  --text-muted: rgba(255,255,255,0.55);
  --text-mid: rgba(255,255,255,0.75);
  --shadow: 0 12px 48px rgba(0,0,0,0.5);
  --shadow-sm: 0 3px 16px rgba(0,0,0,0.3);
  --shadow-card: 0 8px 40px rgba(0,0,0,0.4);
  --radius: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Jost', sans-serif;
  background: var(--black);
  color: var(--text-white);
  overflow-x: hidden;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 { font-family: 'Cormorant Garamond', serif; line-height: 1.15; }
h1 { font-size: clamp(2.8rem, 7vw, 5.5rem); font-weight: 700; }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 600; }
h3 { font-size: 1.35rem; font-weight: 600; }
h4 { font-size: 1.05rem; font-weight: 600; }
p { line-height: 1.8; color: var(--text-muted); font-size: 0.97rem; }
a { text-decoration: none; }

.accent { color: var(--gold); }
.accent-light { color: var(--gold-light); }
.center { text-align: center; }

.section-tag {
  display: inline-block;
  font-family: 'Jost', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201,168,76,0.1);
  padding: 6px 18px;
  border-radius: 99px;
  border: 1px solid rgba(201,168,76,0.28);
  margin-bottom: 14px;
}
.section-tag.center { display: block; width: fit-content; margin: 0 auto 14px; }

/* ===== CONTAINER ===== */
.container { max-width: 1180px; margin: 0 auto; padding: 0 28px; }
.section { padding: 100px 0; }

/* ===== NAVBAR ===== */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 999;
  background: rgba(10,10,10,0.97);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(201,168,76,0.18);
  height: 72px;
  transition: box-shadow 0.3s;
}
.nav-inner {
  max-width: 1180px; margin: 0 auto; padding: 0 28px;
  height: 100%; display: flex; align-items: center; justify-content: space-between;
}
.logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem; font-weight: 700;
  color: var(--gold-light);
  letter-spacing: 0.06em;
}
.logo span { color: var(--gold); }
.nav-links { list-style: none; display: flex; gap: 40px; align-items: center; }
.nav-links a {
  color: rgba(255,255,255,0.7);
  font-size: 0.82rem; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -5px; left: 0; width: 0; height: 1px;
  background: var(--gold); transition: width 0.3s;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold-light); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta {
  background: var(--gold) !important;
  color: #0a0a0a !important;
  padding: 9px 22px !important;
  border-radius: 99px !important;
  font-weight: 700 !important;
  letter-spacing: 0.06em !important;
  transition: background 0.2s, transform 0.2s !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--gold-light) !important; transform: translateY(-1px) !important; }
.hamburger {
  display: none; background: none; border: none;
  color: var(--gold-light); font-size: 1.5rem; cursor: pointer;
}

/* ===== PAGE HEADER ===== */
.page-header {
  background: var(--black-mid);
  padding: 140px 28px 80px;
  text-align: center;
  position: relative;
  border-bottom: 1px solid rgba(201,168,76,0.12);
  overflow: hidden;
}
.page-header h1 { color: white; margin-bottom: 14px; }
.page-header h1 strong { font-weight: 700; }
.page-header h1 em { color: var(--gold-light); font-style: italic; }
.page-header p { color: var(--text-muted); font-size: 1.05rem; }
.breadcrumb {
  font-family: 'Jost', sans-serif; font-size: 0.78rem;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 18px;
}
.breadcrumb a { color: var(--gold); }
.deco-ring {
  position: absolute; top: -80px; right: -80px;
  width: 380px; height: 380px; border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.1);
  background: rgba(201,168,76,0.03);
}
.deco-ring2 {
  position: absolute; bottom: -60px; left: -60px;
  width: 280px; height: 280px; border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.08);
}

/* ===== HERO SLIDER ===== */
.hero { position: relative; height: 100vh; min-height: 640px; overflow: hidden; }
.slider { position: relative; width: 100%; height: 100%; }
.slide {
  position: absolute; inset: 0;
  display: flex; align-items: center;
  opacity: 0; transition: opacity 1.2s ease;
  overflow: hidden;
}
.slide.active { opacity: 1; }
.slide-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform 8s ease;
  transform: scale(1.05);
}
.slide.active .slide-bg { transform: scale(1); }
.slide-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 100%);
  z-index: 1;
}
.slide-curtain-l, .slide-curtain-r {
  position: absolute; top: 0; bottom: 0; width: 180px;
  z-index: 2; pointer-events: none;
}
.slide-curtain-l { left: 0; background: linear-gradient(to right, rgba(0,0,0,0.4) 0%, transparent 100%); }
.slide-curtain-r { right: 0; background: linear-gradient(to left, rgba(0,0,0,0.2) 0%, transparent 100%); }
.fabric-pattern {
  position: absolute; inset: 0; z-index: 1;
  background-image:
    repeating-linear-gradient(90deg, transparent, transparent 50px, rgba(201,168,76,0.02) 50px, rgba(201,168,76,0.02) 51px),
    repeating-linear-gradient(0deg, transparent, transparent 50px, rgba(201,168,76,0.02) 50px, rgba(201,168,76,0.02) 51px);
}
.slide-deco {
  position: absolute; right: 5vw; top: 50%; transform: translateY(-50%);
  width: min(55vw, 680px); height: min(55vw, 680px); border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.06) 0%, transparent 70%);
  border: 1px solid rgba(201,168,76,0.08); z-index: 2;
}
.slide-deco2 {
  position: absolute; right: calc(5vw + 80px); top: 50%; transform: translateY(-58%);
  width: min(35vw, 440px); height: min(35vw, 440px); border-radius: 50%;
  background: rgba(201,168,76,0.03);
  border: 1px solid rgba(201,168,76,0.06); z-index: 2;
}
.slide-content {
  position: relative; z-index: 3;
  max-width: 1180px; margin: 0 auto; padding: 0 28px;
  padding-top: 72px; width: 100%;
}
.slide-content .tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.35);
  padding: 8px 20px; border-radius: 99px; margin-bottom: 22px;
}
.slide-content h1 { color: white; margin-bottom: 18px; text-shadow: 0 4px 28px rgba(0,0,0,0.6); font-weight: 300; }
.slide-content h1 strong { font-weight: 700; }
.slide-content h1 em { font-style: italic; color: var(--gold-light); }
.slide-content p { color: rgba(255,255,255,0.78); font-size: 1.05rem; max-width: 500px; margin-bottom: 36px; line-height: 1.8; }

.slide-num {
  position: absolute; right: 40px; top: 50%; transform: translateY(-50%);
  z-index: 5; display: flex; flex-direction: column; gap: 6px;
}
.slide-num-item {
  width: 2px; height: 28px; background: rgba(255,255,255,0.2);
  border-radius: 2px; transition: all 0.4s; cursor: pointer;
}
.slide-num-item.active { background: var(--gold); height: 48px; }

.slider-controls {
  position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
  display: flex; align-items: center; gap: 20px; z-index: 10;
}
.slider-controls button {
  background: rgba(201,168,76,0.15); border: 1px solid rgba(201,168,76,0.35);
  color: var(--gold-light); width: 46px; height: 46px;
  border-radius: 50%; cursor: pointer; font-size: 1.1rem;
  transition: all 0.2s; backdrop-filter: blur(8px);
}
.slider-controls button:hover { background: var(--gold); color: #0a0a0a; transform: scale(1.08); }
.dots { display: flex; gap: 10px; align-items: center; }
.dot { width: 6px; height: 6px; border-radius: 50%; background: rgba(255,255,255,0.3); cursor: pointer; transition: all 0.4s; }
.dot.active { background: var(--gold); width: 24px; border-radius: 3px; }

.scroll-hint {
  position: absolute; bottom: 44px; right: 48px; z-index: 10;
  display: flex; align-items: center; gap: 10px;
  color: rgba(255,255,255,0.4); font-size: 0.72rem;
  letter-spacing: 0.15em; text-transform: uppercase;
  writing-mode: vertical-lr;
}
.scroll-hint::after {
  content: ''; display: block; width: 1px; height: 40px;
  background: linear-gradient(to bottom, rgba(201,168,76,0.5), transparent);
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold); color: #0a0a0a;
  font-weight: 700; font-size: 0.88rem;
  padding: 14px 32px; border-radius: 99px;
  letter-spacing: 0.06em; transition: all 0.25s;
  box-shadow: 0 6px 28px rgba(201,168,76,0.35);
  font-family: 'Jost', sans-serif;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 10px 36px rgba(201,168,76,0.5); }
.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1.5px solid rgba(201,168,76,0.5); color: var(--gold-light);
  font-weight: 600; font-size: 0.88rem;
  padding: 13px 28px; border-radius: 99px;
  letter-spacing: 0.04em; transition: all 0.22s;
  font-family: 'Jost', sans-serif;
}
.btn-outline:hover { background: rgba(201,168,76,0.1); transform: translateY(-1px); border-color: var(--gold); }
.btn-white {
  display: inline-flex; align-items: center; gap: 8px;
  background: white; color: #0a0a0a;
  font-weight: 700; font-size: 0.88rem;
  padding: 14px 32px; border-radius: 99px;
  font-family: 'Jost', sans-serif; letter-spacing: 0.06em;
  transition: all 0.25s;
}
.btn-white:hover { background: var(--gold); transform: translateY(-2px); }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1.5px solid rgba(255,255,255,0.35); color: white;
  font-weight: 600; font-size: 0.88rem;
  padding: 13px 28px; border-radius: 99px;
  font-family: 'Jost', sans-serif; letter-spacing: 0.04em;
  transition: all 0.22s;
}
.btn-ghost:hover { background: rgba(255,255,255,0.1); border-color: white; }

/* ===== REVEAL ===== */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ===== STATS BAR ===== */
.stats-bar {
  display: grid; grid-template-columns: repeat(4, 1fr);
  background: var(--black-mid);
  border-bottom: 1px solid rgba(201,168,76,0.15);
  position: relative; overflow: hidden;
}
.stats-bar::before {
  content: ''; position: absolute; inset: 0;
  background: repeating-linear-gradient(90deg, transparent, transparent 60px, rgba(201,168,76,0.02) 60px, rgba(201,168,76,0.02) 61px);
}
.stat {
  padding: 40px 28px; text-align: center;
  border-right: 1px solid rgba(201,168,76,0.1);
  position: relative; z-index: 1;
}
.stat:last-child { border-right: none; }
.stat .big { font-family: 'Cormorant Garamond', serif; font-size: 3.2rem; font-weight: 700; color: var(--gold-light); line-height: 1; }
.stat .plus { color: var(--gold); font-size: 2rem; font-weight: 300; vertical-align: top; margin-top: 6px; }
.stat p { color: var(--text-muted); font-size: 0.78rem; margin-top: 6px; letter-spacing: 0.08em; text-transform: uppercase; }

/* ===== TWO COL ===== */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.col-text h2 { margin-bottom: 20px; color: white; }
.col-text p { margin-bottom: 16px; }

/* ===== PROFILE CARD ===== */
.profile-card {
  background: linear-gradient(145deg, #111 0%, #1a1a1a 100%);
  border-radius: var(--radius-xl);
  padding: 40px 32px; text-align: center;
  border: 1px solid rgba(201,168,76,0.2);
  box-shadow: var(--shadow); position: relative; overflow: hidden;
}
.profile-card::before {
  content: ''; position: absolute; top: -60px; right: -60px;
  width: 200px; height: 200px; border-radius: 50%;
  background: rgba(201,168,76,0.05);
  border: 1px solid rgba(201,168,76,0.1);
}
.profile-avatar {
  width: 110px; height: 110px; border-radius: 50%;
  background: linear-gradient(135deg, rgba(201,168,76,0.2), rgba(201,168,76,0.05));
  border: 2px solid rgba(201,168,76,0.35);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px; overflow: hidden;
}
.profile-avatar img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.profile-tags { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-top: 16px; }
.profile-tags span {
  background: rgba(201,168,76,0.1); color: var(--gold-light);
  font-size: 0.75rem; font-weight: 500; letter-spacing: 0.06em;
  padding: 5px 14px; border-radius: 99px;
  border: 1px solid rgba(201,168,76,0.2);
}

/* ===== ABOUT SECTION ===== */
.about-detail { background: var(--black); }
.about-image {
  width: 100%; aspect-ratio: 4/5; border-radius: var(--radius-lg);
  overflow: hidden; position: relative;
  border: 1px solid rgba(201,168,76,0.15);
}
.about-image img { width: 100%; height: 100%; object-fit: cover; }
.about-image::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.4) 0%, transparent 60%);
}

/* ===== SHOP / COLLECTIONS GRID ===== */
.shop-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px; }
.shop-card {
  background: var(--black-card); border-radius: var(--radius-lg);
  overflow: hidden; border: 1px solid rgba(201,168,76,0.12);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  position: relative;
}
.shop-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  opacity: 0; transition: opacity 0.3s; z-index: 2;
}
.shop-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); border-color: rgba(201,168,76,0.3); }
.shop-card:hover::before { opacity: 1; }
.featured-shop { border-color: rgba(201,168,76,0.35); }
.featured-shop::before { opacity: 1; background: linear-gradient(90deg, var(--gold), var(--gold-light)); }
.featured-badge {
  position: absolute; top: 16px; right: 16px; z-index: 3;
  background: var(--gold); color: #0a0a0a;
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; padding: 4px 12px; border-radius: 99px;
  font-family: 'Jost', sans-serif;
}
.shop-thumb {
  width: 100%; height: 220px; overflow: hidden; position: relative;
}
.shop-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.shop-card:hover .shop-thumb img { transform: scale(1.08); }
.shop-body { padding: 24px; }
.shop-body h3 { color: white; margin-bottom: 8px; font-size: 1.2rem; }
.shop-body p { color: var(--text-muted); margin-bottom: 16px; font-size: 0.9rem; }
.shop-price { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 600; color: var(--gold-light); margin-bottom: 20px; }
.btn-shop {
  display: block; text-align: center;
  background: rgba(201,168,76,0.12); color: var(--gold-light);
  border: 1px solid rgba(201,168,76,0.3);
  padding: 11px 20px; border-radius: 99px;
  font-size: 0.82rem; font-weight: 600; letter-spacing: 0.06em;
  font-family: 'Jost', sans-serif;
  transition: all 0.22s;
}
.btn-shop:hover { background: var(--gold); color: #0a0a0a; border-color: var(--gold); }

/* ===== WHY GRID ===== */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px; }
.why-item {
  background: var(--black-card); padding: 36px 28px;
  border-radius: var(--radius); border: 1px solid rgba(201,168,76,0.1);
  transition: border-color 0.3s, transform 0.3s;
}
.why-item:hover { border-color: rgba(201,168,76,0.35); transform: translateY(-4px); }
.why-icon {
  width: 52px; height: 52px; border-radius: 50%;
  background: rgba(201,168,76,0.1); border: 1px solid rgba(201,168,76,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin-bottom: 20px;
}
.why-item h3 { color: white; font-size: 1.15rem; margin-bottom: 10px; }
.why-item p { color: var(--text-muted); font-size: 0.9rem; }

/* ===== COMPANY LIST / SPACES ===== */
.company-list { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 48px; }
.company-item {
  background: var(--black-card); padding: 24px 20px; text-align: center;
  border: 1px solid rgba(201,168,76,0.1); border-radius: var(--radius);
  color: var(--text-mid); font-family: 'Jost', sans-serif;
  font-size: 0.9rem; font-weight: 500;
  transition: border-color 0.3s, color 0.3s;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.company-item:hover { border-color: rgba(201,168,76,0.3); color: var(--gold-light); }
.company-item .icon {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(201,168,76,0.08); display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
}

/* ===== CTA SECTION ===== */
.cta-section {
  background: var(--black-mid);
  padding: 100px 28px; text-align: center;
  position: relative; overflow: hidden;
  border-top: 1px solid rgba(201,168,76,0.12);
}
.cta-section h2 { color: white; margin-bottom: 16px; }
.cta-section h2 strong { font-weight: 700; }
.cta-section h2 em { color: var(--gold-light); font-style: italic; }
.cta-section p { color: var(--text-muted); margin-bottom: 36px; font-size: 1.05rem; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.cta-deco {
  position: absolute; top: -120px; right: -120px; width: 400px; height: 400px;
  border-radius: 50%; background: radial-gradient(circle, rgba(201,168,76,0.06) 0%, transparent 70%);
  border: 1px solid rgba(201,168,76,0.08);
}

/* ===== TIMELINE ===== */
.about-timeline { max-width: 680px; margin: 60px auto 0; }
.timeline-item {
  padding: 0 0 48px 52px; position: relative;
  border-left: 2px solid rgba(201,168,76,0.2);
}
.timeline-item:last-child { border-left: 2px solid transparent; padding-bottom: 0; }
.timeline-year {
  position: absolute; left: -22px; top: 0;
  background: var(--gold); color: #0a0a0a;
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.06em;
  padding: 4px 10px; border-radius: 99px; white-space: nowrap;
}
.timeline-item h3 { color: white; font-size: 1.15rem; margin-bottom: 8px; margin-top: 4px; }
.timeline-item p { color: var(--text-muted); font-size: 0.9rem; }

/* ===== CARDS GRID ===== */
.cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px; }
.card {
  background: var(--black-card); padding: 36px 28px;
  border-radius: var(--radius-lg); border: 1px solid rgba(201,168,76,0.1);
  transition: transform 0.3s, border-color 0.3s;
}
.card:hover { transform: translateY(-5px); border-color: rgba(201,168,76,0.3); }
.card-icon {
  display: flex; align-items: center; justify-content: center;
  width: 56px; height: 56px; border-radius: 50%;
  background: rgba(201,168,76,0.1); border: 1px solid rgba(201,168,76,0.2);
  margin-bottom: 20px; font-size: 1.5rem;
}
.card h3 { color: white; margin-bottom: 10px; }
.card p { color: var(--text-muted); font-size: 0.9rem; }

/* ===== TRAVEL / CATEGORIES GRID ===== */
.travel-section { background: var(--black-mid); padding: 100px 0; border-top: 1px solid rgba(201,168,76,0.1); }
.travel-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 48px; }
.travel-item {
  background: var(--black-card); padding: 20px 16px; text-align: center;
  border: 1px solid rgba(201,168,76,0.1); border-radius: var(--radius);
  color: var(--text-mid); font-size: 0.88rem; font-weight: 500;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  transition: border-color 0.3s, color 0.3s;
}
.travel-item:hover { border-color: rgba(201,168,76,0.3); color: var(--gold-light); }
.flag { font-size: 1.3rem; }

/* ===== TESTIMONIALS ===== */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px; }
.testimonial-card {
  background: var(--black-card); padding: 36px 28px;
  border: 1px solid rgba(201,168,76,0.15); border-radius: var(--radius-lg);
  position: relative;
}
.testimonial-card .quote-icon { color: rgba(201,168,76,0.2); font-size: 4rem; line-height: 1; margin-bottom: 12px; font-family: Georgia, serif; }
.testimonial-card p { color: var(--text-mid); font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 1.1rem; margin-bottom: 20px; }
.testimonial-card .stars { color: var(--gold); font-size: 0.85rem; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-name { color: white; font-weight: 600; font-size: 0.9rem; font-family: 'Jost', sans-serif; }
.testimonial-loc { color: var(--text-muted); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.1em; font-family: 'Jost', sans-serif; }

/* ===== CONTACT ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.contact-form-wrapper, .contact-info-box { }
.contact-form-wrapper h2, .contact-info-box h2 { color: white; margin-bottom: 10px; }

.form-group { margin-bottom: 20px; }
.form-group label {
  display: block; font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 8px;
  font-family: 'Jost', sans-serif;
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%; background: var(--black-card);
  border: 1px solid rgba(201,168,76,0.2); border-radius: var(--radius);
  padding: 14px 18px; color: white;
  font-family: 'Jost', sans-serif; font-size: 0.92rem;
  transition: border-color 0.2s;
  outline: none;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(255,255,255,0.25); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--gold); }
.form-group select { cursor: pointer; }
.form-group select option { background: #1a1a1a; }
.form-group textarea { min-height: 140px; resize: vertical; }
.btn-submit {
  width: 100%; background: var(--gold); color: #0a0a0a;
  border: none; padding: 16px 28px; border-radius: 99px;
  font-family: 'Jost', sans-serif; font-size: 0.92rem; font-weight: 700;
  letter-spacing: 0.06em; cursor: pointer;
  transition: all 0.25s;
  box-shadow: 0 6px 28px rgba(201,168,76,0.35);
}
.btn-submit:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 10px 36px rgba(201,168,76,0.5); }

.wa-contact-btn {
  display: flex; align-items: center; gap: 12px;
  background: #25D366; color: white;
  padding: 14px 24px; border-radius: 99px;
  font-family: 'Jost', sans-serif; font-weight: 700; font-size: 0.9rem;
  margin-bottom: 32px;
  transition: all 0.25s; box-shadow: 0 4px 20px rgba(37,211,102,0.3);
}
.wa-contact-btn:hover { background: #128C7E; transform: translateY(-2px); }

.info-item { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 24px; }
.info-icon {
  width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0;
  background: rgba(201,168,76,0.1); border: 1px solid rgba(201,168,76,0.2);
  display: flex; align-items: center; justify-content: center; font-size: 1.1rem;
}
.info-item h4 { color: white; font-family: 'Jost', sans-serif; font-size: 0.88rem; font-weight: 600; margin-bottom: 4px; }
.info-item p { color: var(--text-muted); font-size: 0.88rem; margin: 0; }
.info-item a { color: var(--gold); font-size: 0.85rem; font-family: 'Jost', sans-serif; }

.response-badge {
  background: rgba(201,168,76,0.07); border: 1px solid rgba(201,168,76,0.18);
  border-radius: var(--radius-lg); padding: 22px 24px; margin-top: 16px;
}
.response-badge h4 { color: var(--gold); font-size: 0.88rem; margin-bottom: 6px; font-family: 'Jost', sans-serif; }
.response-badge p { color: var(--text-muted); font-size: 0.86rem; line-height: 1.75; margin: 0; }
.response-badge strong { color: var(--gold-light); }

/* ===== FOOTER ===== */
footer { background: var(--black-mid); border-top: 1px solid rgba(201,168,76,0.12); }
.footer-top { padding: 72px 0 48px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 60px; }
.footer-brand .logo-f { font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 700; color: var(--gold-light); }
.footer-brand .logo-f span { color: var(--gold); }
.footer-brand p { color: var(--text-muted); margin-top: 14px; font-size: 0.9rem; line-height: 1.8; }
.footer-col h5 {
  font-family: 'Jost', sans-serif; font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold);
  margin-bottom: 20px;
}
.footer-col a, .footer-col p {
  display: block; color: var(--text-muted); font-size: 0.88rem;
  line-height: 1.6; margin-bottom: 8px;
  font-family: 'Jost', sans-serif;
}
.footer-col a:hover { color: var(--gold-light); }
.footer-divider { border: none; border-top: 1px solid rgba(201,168,76,0.1); margin: 0 28px; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding: 24px 0; font-size: 0.78rem; color: var(--text-muted);
  font-family: 'Jost', sans-serif;
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 1000;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25D366; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 28px rgba(37,211,102,0.4);
  transition: all 0.3s;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 8px 36px rgba(37,211,102,0.55); }
.wa-tooltip {
  position: absolute; right: 70px; top: 50%; transform: translateY(-50%);
  background: #0a0a0a; color: white; white-space: nowrap;
  padding: 7px 14px; border-radius: 8px; font-size: 0.8rem;
  font-family: 'Jost', sans-serif;
  opacity: 0; pointer-events: none; transition: opacity 0.2s;
  border: 1px solid rgba(201,168,76,0.2);
}
.whatsapp-float:hover .wa-tooltip { opacity: 1; }

/* ===== MOBILE ===== */
@media (max-width: 768px) {
  .hamburger { display: block; }
  .nav-links {
    display: none; flex-direction: column; gap: 0;
    position: fixed; top: 72px; left: 0; right: 0;
    background: rgba(10,10,10,0.98);
    padding: 20px 28px 32px; gap: 4px;
    border-bottom: 1px solid rgba(201,168,76,0.15);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 0; font-size: 0.9rem; }
  .two-col { grid-template-columns: 1fr; gap: 40px; }
  .col-visual { order: -1; }
  .shop-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .cards-grid { grid-template-columns: 1fr; }
  .travel-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .company-list { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .contact-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .slide-num { display: none; }
  .scroll-hint { display: none; }
  h1 { font-size: clamp(2rem, 8vw, 3rem); }
}
@media (max-width: 480px) {
  .shop-grid { grid-template-columns: 1fr; }
  .travel-grid { grid-template-columns: repeat(2, 1fr); }
  .company-list { grid-template-columns: 1fr 1fr; }
}
