/* ============================================
   JCLAS VENTURES - Premium Corporate Website
   Design: Luxury Minimal | Dark Gold Palette
   ============================================ */

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

/* ── CSS Variables ── */
:root {
  --gold:         #C9A84C;
  --gold-light:   #E8C97A;
  --gold-dark:    #9A7A2E;
  --black:        #0A0A0A;
  --dark:         #111111;
  --dark-2:       #1A1A1A;
  --dark-3:       #222222;
  --dark-4:       #2D2D2D;
  --white:        #FFFFFF;
  --off-white:    #F5F0E8;
  --cream:        #FAF7F2;
  --gray:         #888888;
  --gray-light:   #CCCCCC;
  --font-display: 'Cormorant Garamond', serif;
  --font-body:    'Outfit', sans-serif;
  --transition:   0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --shadow-gold:  0 8px 40px rgba(201,168,76,0.18);
  --shadow-dark:  0 20px 60px rgba(0,0,0,0.4);
  --radius:       4px;
  --radius-lg:    12px;
  --nav-height:   80px;
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--dark);
  color: var(--off-white);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── Typography ── */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 400; line-height: 1.15; }

.section-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  color: var(--white);
  margin-bottom: 1.2rem;
}

.section-title span { color: var(--gold); font-style: italic; }

.section-subtitle {
  font-size: 1.05rem;
  color: var(--gray);
  max-width: 560px;
  line-height: 1.8;
}

/* ── Layout ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.container--wide { max-width: 1400px; margin: 0 auto; padding: 0 2rem; }

.section-pad { padding: 110px 0; }
.section-pad--sm { padding: 70px 0; }

/* ── Gold Line Decorator ── */
.gold-line {
  width: 60px; height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 1.5rem 0;
}

.gold-line--center { margin: 1.5rem auto; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 15px 36px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.08);
  opacity: 0;
  transition: var(--transition);
}

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

.btn--primary {
  background: var(--gold);
  color: var(--black);
}
.btn--primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: var(--shadow-gold); }

.btn--outline {
  border: 1px solid rgba(201,168,76,0.5);
  color: var(--gold);
}
.btn--outline:hover { border-color: var(--gold); background: rgba(201,168,76,0.06); transform: translateY(-2px); }

.btn--ghost {
  color: var(--off-white);
  border: 1px solid rgba(255,255,255,0.15);
}
.btn--ghost:hover { border-color: var(--gold); color: var(--gold); }

/* ── Navigation ── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  transition: var(--transition);
}

#navbar.scrolled {
  background: rgba(10,10,10,0.96);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(201,168,76,0.1);
  box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2rem;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.nav-logo-name {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.04em;
}

.nav-logo-name span { color: var(--gold); }

.nav-logo-tagline {
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-links a {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-light);
  position: relative;
  transition: color 0.3s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.35s ease;
}

.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.nav-hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--off-white);
  transition: var(--transition);
  border-radius: 2px;
}

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

/* Mobile Nav */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--black);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  transform: translateX(100%);
  transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
}

.mobile-nav.open { transform: translateX(0); }

.mobile-nav a {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--off-white);
  letter-spacing: 0.05em;
  transition: color 0.3s;
}

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

/* ── HERO ── */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--black);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1414235077428-338989a2e8c0?w=1600&q=80');
  background-size: cover;
  background-position: center;
  opacity: 0.22;
  transform: scale(1.05);
  animation: hero-drift 18s ease-in-out infinite alternate;
}

@keyframes hero-drift {
  from { transform: scale(1.05) translateX(0); }
  to   { transform: scale(1.1)  translateX(-2%); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 60%, rgba(201,168,76,0.04) 100%);
}

.hero-grain {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 200px;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.25);
  padding: 8px 18px;
  border-radius: 50px;
  margin-bottom: 2.5rem;
  animation: fadeInUp 0.8s ease forwards;
}

.hero-badge span {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}

.hero-badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(0.7); }
}

.hero-title {
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 0.3rem;
  animation: fadeInUp 0.9s ease 0.15s both;
}

.hero-title-accent {
  font-size: clamp(3rem, 7vw, 6rem);
  font-style: italic;
  color: var(--gold);
  display: block;
  animation: fadeInUp 0.9s ease 0.25s both;
}

.hero-desc {
  font-size: 1.1rem;
  color: var(--gray);
  max-width: 520px;
  margin: 2rem 0 3rem;
  line-height: 1.85;
  animation: fadeInUp 0.9s ease 0.35s both;
}

.hero-actions {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
  animation: fadeInUp 0.9s ease 0.45s both;
}

.hero-stats {
  position: absolute;
  bottom: 2.5rem; right: 0;
  z-index: 2;
  display: flex;
  gap: 3rem;
  padding: 2rem 3rem;
  background: rgba(201,168,76,0.04);
  border: 1px solid rgba(201,168,76,0.12);
  border-right: none;
  backdrop-filter: blur(20px);
  border-radius: var(--radius-lg) 0 0 var(--radius-lg);
  animation: fadeInRight 1s ease 0.6s both;
}

.stat-item { text-align: center; }

.stat-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}

.stat-label {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray);
  margin-top: 0.4rem;
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  animation: fadeIn 1s ease 1s both;
}

.hero-scroll span {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray);
  writing-mode: vertical-rl;
}

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

@keyframes scroll-pulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50%       { opacity: 1; transform: scaleY(1.15); }
}

/* ── ABOUT ── */
#about { background: var(--dark); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-img-main {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  filter: brightness(0.9) saturate(0.9);
}

.about-img-accent {
  position: absolute;
  bottom: -2.5rem; right: -2.5rem;
  width: 200px; height: 200px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 4px solid var(--dark);
  box-shadow: var(--shadow-dark);
}

.about-badge {
  position: absolute;
  top: 2rem; left: -2rem;
  background: var(--gold);
  color: var(--black);
  padding: 1.2rem 1.5rem;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-gold);
}

.about-badge-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.about-badge-text {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  margin-top: 0.25rem;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin-top: 2.5rem;
}

.about-feature {
  background: var(--dark-2);
  border: 1px solid rgba(201,168,76,0.08);
  padding: 1.4rem;
  border-radius: var(--radius-lg);
  transition: var(--transition);
}

.about-feature:hover {
  border-color: rgba(201,168,76,0.25);
  background: var(--dark-3);
  transform: translateY(-3px);
}

.feature-icon {
  font-size: 1.4rem;
  margin-bottom: 0.7rem;
}

.feature-title {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.3rem;
  letter-spacing: 0.03em;
}

.feature-desc { font-size: 0.8rem; color: var(--gray); }

/* ── SERVICES ── */
#services {
  background: linear-gradient(180deg, var(--dark) 0%, var(--black) 100%);
  position: relative;
  overflow: hidden;
}

#services::before {
  content: '';
  position: absolute;
  top: -200px; left: 50%;
  transform: translateX(-50%);
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(201,168,76,0.05) 0%, transparent 70%);
  pointer-events: none;
}

.services-header { text-align: center; margin-bottom: 4.5rem; }
.services-header .section-subtitle { margin: 0 auto; text-align: center; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,0.05);
  transition: var(--transition);
  cursor: pointer;
}

.service-card:hover {
  border-color: rgba(201,168,76,0.25);
  transform: translateY(-8px);
  box-shadow: var(--shadow-gold);
}

.service-card-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform 0.6s ease;
  filter: brightness(0.75) saturate(0.8);
}

.service-card:hover .service-card-img { transform: scale(1.05); filter: brightness(0.85); }

.service-card-body {
  padding: 2rem;
  position: relative;
}

.service-card-body::before {
  content: '';
  position: absolute;
  top: 0; left: 2rem; right: 2rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: var(--transition);
}

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

.service-number {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.2em;
  margin-bottom: 0.8rem;
}

.service-title {
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 0.8rem;
}

.service-desc {
  font-size: 0.87rem;
  color: var(--gray);
  line-height: 1.85;
  margin-bottom: 1.5rem;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  transition: gap 0.3s;
}

.service-card:hover .service-link { gap: 0.9rem; }

/* ── CLIENTS ── */
#clients { background: var(--dark-2); }

.clients-header { text-align: center; margin-bottom: 4rem; }
.clients-header .section-subtitle { margin: 0 auto; text-align: center; }

.clients-marquee-wrapper {
  overflow: hidden;
  position: relative;
  margin-bottom: 1.5rem;
}

.clients-marquee-wrapper::before,
.clients-marquee-wrapper::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
}

.clients-marquee-wrapper::before { left: 0; background: linear-gradient(90deg, var(--dark-2), transparent); }
.clients-marquee-wrapper::after  { right: 0; background: linear-gradient(-90deg, var(--dark-2), transparent); }

.clients-marquee {
  display: flex;
  gap: 2rem;
  animation: marquee 28s linear infinite;
  width: max-content;
}

.clients-marquee--reverse { animation-direction: reverse; }

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.client-card {
  background: var(--dark-3);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  padding: 1.5rem 2.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  white-space: nowrap;
  transition: var(--transition);
  flex-shrink: 0;
}

.client-card:hover {
  border-color: rgba(201,168,76,0.2);
  background: var(--dark-4);
}

.client-icon {
  width: 38px; height: 38px;
  background: rgba(201,168,76,0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.client-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--off-white);
  letter-spacing: 0.04em;
}

/* ── GALLERY ── */
#gallery {
  background: var(--dark);
  padding-bottom: 0;
}

.gallery-header { margin-bottom: 3.5rem; }

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

.gallery-item {
  overflow: hidden;
  border-radius: var(--radius);
  position: relative;
  cursor: pointer;
}

.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease, filter 0.4s;
  filter: brightness(0.8) saturate(0.85);
}

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

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(201,168,76,0.15);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.gallery-zoom-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 2px solid var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.1rem;
  transform: scale(0.7);
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-zoom-icon { transform: scale(1); }

/* Grid Placement */
.gallery-item:nth-child(1)  { grid-column: 1 / 5; grid-row: 1 / 2; }
.gallery-item:nth-child(2)  { grid-column: 5 / 8; grid-row: 1 / 2; }
.gallery-item:nth-child(3)  { grid-column: 8 / 13; grid-row: 1 / 3; }
.gallery-item:nth-child(4)  { grid-column: 1 / 4; grid-row: 2 / 4; }
.gallery-item:nth-child(5)  { grid-column: 4 / 8; grid-row: 2 / 3; }
.gallery-item:nth-child(6)  { grid-column: 4 / 8; grid-row: 3 / 4; }
.gallery-item:nth-child(7)  { grid-column: 8 / 13; grid-row: 3 / 4; }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  backdrop-filter: blur(12px);
}

.lightbox.open { opacity: 1; pointer-events: all; }

.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: var(--shadow-dark);
}

.lightbox-close {
  position: absolute;
  top: 2rem; right: 2rem;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  background: rgba(255,255,255,0.05);
}

.lightbox-close:hover { background: var(--gold); border-color: var(--gold); color: var(--black); }

/* ── TESTIMONIALS ── */
#testimonials {
  background: var(--black);
  position: relative;
  overflow: hidden;
}

#testimonials::before {
  content: '"';
  position: absolute;
  top: -1rem; left: 5%;
  font-family: var(--font-display);
  font-size: 20rem;
  color: rgba(201,168,76,0.04);
  line-height: 1;
  pointer-events: none;
}

.testimonials-header { text-align: center; margin-bottom: 4rem; }
.testimonials-header .section-subtitle { margin: 0 auto; }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.testimonial-card {
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  transition: var(--transition);
  position: relative;
}

.testimonial-card:hover {
  border-color: rgba(201,168,76,0.18);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.testimonial-card--featured {
  background: linear-gradient(135deg, rgba(201,168,76,0.08) 0%, var(--dark-2) 100%);
  border-color: rgba(201,168,76,0.15);
  grid-row: 1 / 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.t-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 1.5rem;
  color: var(--gold);
  font-size: 0.9rem;
}

.t-quote {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--off-white);
  line-height: 1.65;
  margin-bottom: 2rem;
  font-style: italic;
}

.testimonial-card--featured .t-quote { font-size: 1.5rem; }

.t-divider {
  width: 40px; height: 1px;
  background: var(--gold);
  margin-bottom: 1.5rem;
  opacity: 0.5;
}

.t-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.t-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--black);
  font-weight: 600;
  flex-shrink: 0;
}

.t-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.15rem;
}

.t-company {
  font-size: 0.75rem;
  color: var(--gold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ── CONTACT ── */
#contact { background: var(--dark); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: start;
}

.contact-info { padding-top: 1rem; }

.contact-item {
  display: flex;
  gap: 1.2rem;
  margin-bottom: 2.5rem;
}

.contact-item-icon {
  width: 50px; height: 50px;
  border-radius: 12px;
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  transition: var(--transition);
}

.contact-item:hover .contact-item-icon {
  background: var(--gold);
  border-color: var(--gold);
}

.contact-item-label {
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.3rem;
}

.contact-item-value {
  font-size: 1rem;
  color: var(--off-white);
  font-weight: 500;
}

.social-links {
  display: flex;
  gap: 0.8rem;
  margin-top: 3rem;
}

.social-link {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--gray);
  transition: var(--transition);
  text-decoration: none;
}

.social-link:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
}

/* Contact Form */
.contact-form-wrapper {
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--radius-lg);
  padding: 3rem;
}

.form-title {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.form-subtitle {
  font-size: 0.87rem;
  color: var(--gray);
  margin-bottom: 2.5rem;
}

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.form-grid--full { grid-column: 1 / -1; }

.form-group { display: flex; flex-direction: column; gap: 0.5rem; }

.form-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray);
}

.form-input,
.form-select,
.form-textarea {
  background: var(--dark-3);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  padding: 14px 18px;
  font-family: var(--font-body);
  font-size: 0.93rem;
  color: var(--off-white);
  transition: border-color 0.3s, box-shadow 0.3s;
  outline: none;
  width: 100%;
}

.form-input::placeholder,
.form-textarea::placeholder { color: rgba(136,136,136,0.6); }

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.1);
}

.form-select { appearance: none; cursor: pointer; }
.form-textarea { resize: vertical; min-height: 130px; }

.form-submit {
  margin-top: 1.5rem;
  width: 100%;
  justify-content: center;
  padding: 18px;
  font-size: 0.82rem;
}

.form-success {
  display: none;
  text-align: center;
  padding: 2rem;
  background: rgba(201,168,76,0.06);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius);
  margin-top: 1.5rem;
}

.form-success.show { display: block; }
.form-success-icon { font-size: 2.5rem; margin-bottom: 0.8rem; }
.form-success p { color: var(--gold); font-weight: 600; }

/* ── FOOTER ── */
footer {
  background: var(--black);
  border-top: 1px solid rgba(255,255,255,0.04);
  padding: 5rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-brand-name {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--white);
  margin-bottom: 0.3rem;
}

.footer-brand-name span { color: var(--gold); }

.footer-brand-tag {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.footer-desc {
  font-size: 0.87rem;
  color: var(--gray);
  line-height: 1.8;
  max-width: 280px;
  margin-bottom: 1.8rem;
}

.footer-col-title {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.footer-links { display: flex; flex-direction: column; gap: 0.8rem; }

.footer-links a {
  font-size: 0.87rem;
  color: var(--gray);
  transition: color 0.3s;
}

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

.footer-contact-item {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
  margin-bottom: 1rem;
  font-size: 0.87rem;
  color: var(--gray);
}

.footer-contact-icon { color: var(--gold); flex-shrink: 0; margin-top: 2px; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-copy {
  font-size: 0.8rem;
  color: var(--gray);
}

.footer-legal {
  display: flex;
  gap: 2rem;
}

.footer-legal a {
  font-size: 0.78rem;
  color: var(--gray);
  transition: color 0.3s;
}

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

/* ── WHATSAPP FLOAT ── */
.whatsapp-float {
  position: fixed;
  bottom: 2.5rem; right: 2.5rem;
  z-index: 900;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.8rem;
}

.whatsapp-tooltip {
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 10px 18px;
  border-radius: 50px;
  font-size: 0.8rem;
  color: var(--off-white);
  white-space: nowrap;
  opacity: 0;
  transform: translateX(10px);
  transition: var(--transition);
  pointer-events: none;
  backdrop-filter: blur(12px);
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
  transform: translateX(0);
}

.whatsapp-btn {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.6rem;
  box-shadow: 0 8px 30px rgba(37,211,102,0.35);
  transition: var(--transition);
  text-decoration: none;
  animation: whatsapp-bounce 3s ease-in-out infinite;
}

.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 40px rgba(37,211,102,0.5);
}

@keyframes whatsapp-bounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-5px); }
}

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

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

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.reveal {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── MAP ── */
.map-wrapper {
  margin-top: 4rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.05);
  height: 350px;
}

.map-wrapper iframe {
  width: 100%; height: 100%;
  filter: invert(90%) hue-rotate(180deg) saturate(0.8) brightness(0.85);
}

/* ── DIVIDER ── */
.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(201,168,76,0.2) 30%, rgba(201,168,76,0.2) 70%, transparent 100%);
}

/* ── SCROLL PROGRESS ── */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light));
  z-index: 2000;
  width: 0%;
  transition: width 0.1s;
}

/* ══════════════════════════════
   RESPONSIVE
══════════════════════════════ */

@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-visual { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonial-card--featured { grid-row: auto; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
}

@media (max-width: 768px) {
  :root { --nav-height: 70px; }
  .nav-links, .nav-cta .btn { display: none; }
  .nav-hamburger { display: flex; }
  .section-pad { padding: 70px 0; }
  .hero-stats { display: none; }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .gallery-item { grid-column: auto !important; grid-row: auto !important; height: 180px; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
  .form-grid { grid-template-columns: 1fr; }
  .about-features { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .container { padding: 0 1.2rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .contact-form-wrapper { padding: 1.8rem; }
  .whatsapp-float { bottom: 1.5rem; right: 1.5rem; }
}
