/* ============================================================
   ZYNTRICO GLOBAL VENTURES — Main Stylesheet
   css/styles.css
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700;900&family=DM+Sans:wght@300;400;500&display=swap');

/* ============================================================
   CSS VARIABLES
   ============================================================ */
:root {
  --forest:       #0f4c3a;
  --forest-light: #1a6b52;
  --gold:         #c9973a;
  --gold-light:   #e8b85a;
  --cream:        #faf6ef;
  --dark:         #0d1a15;
  --text:         #2a2a2a;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--text);
  cursor: default;
  overflow-x: hidden;
}/* ============================================================
   ZYNTRICO GLOBAL VENTURES — Main Stylesheet
   css/styles.css
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700;900&family=DM+Sans:wght@300;400;500&display=swap');

/* ============================================================
   CSS VARIABLES
   ============================================================ */
:root {
  --forest:       #0f4c3a;
  --forest-light: #1a6b52;
  --gold:         #c9973a;
  --gold-light:   #e8b85a;
  --cream:        #faf6ef;
  --dark:         #0d1a15;
  --text:         #2a2a2a;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--text);
  cursor: default;
  overflow-x: hidden;
}

/* ============================================================
   CUSTOM CURSOR
   ============================================================ */
.cursor {
  width: 10px; height: 10px;
  background: var(--gold);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9999;
}

/* ============================================================
   LOADER
   ============================================================ */
.loader {
  position: fixed; inset: 0;
  background: var(--forest);
  z-index: 10000;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 20px;
  transition: opacity 0.7s ease, visibility 0.7s ease;
}
.loader-tagline {
  color: var(--gold-light);
  font-size: 13px;
  letter-spacing: 2px;
  opacity: 0.8;
  margin-top: -10px;
}
.loader.hidden { opacity: 0; visibility: hidden; }
.loader-logo {
  font-family: 'Playfair Display', serif;
  color: white; font-size: 36px; letter-spacing: 6px;
  animation: pulse 1.5s ease infinite;
}
.loader-bar { width: 200px; height: 3px; background: rgba(255,255,255,0.2); border-radius: 3px; overflow: hidden; margin-top: 16px; }
.loader-bar-fill { width: 0%; height: 100%; background: var(--gold); border-radius: 3px; transition: width 1.8s ease; }
@keyframes pulse { 0%,100% { opacity: 0.6; } 50% { opacity: 1; } }

/* ============================================================
   SCROLL PROGRESS
   ============================================================ */
.scroll-progress { position: fixed; top: 0; left: 0; right: 0; height: 3px; z-index: 9999; }
.scroll-bar { height: 100%; background: var(--gold); width: 0%; transition: width 0.1s; }

/* ============================================================
   HEADER
   ============================================================ */
header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000; padding: 18px 60px;
  display: flex; justify-content: space-between; align-items: center;
  transition: all 0.4s ease;
}
header.scrolled {
  background: rgba(15,76,58,0.97);
  backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(0,0,0,0.2);
  padding: 12px 60px;
}
.logo { font-family: 'Playfair Display', serif; color: white; font-size: 22px; letter-spacing: 3px; font-weight: 700; text-decoration: none; }
.logo span { color: var(--gold); }
nav { display: flex; gap: 10px; align-items: center; }
nav a { color: rgba(255,255,255,0.85); text-decoration: none; font-size: 13px; letter-spacing: 1.5px; text-transform: uppercase; padding: 8px 16px; border-radius: 30px; transition: all 0.3s ease; font-weight: 500; }
nav a:hover { color: white; background: rgba(255,255,255,0.12); }
.nav-cta { background: var(--gold) !important; color: var(--dark) !important; font-weight: 600 !important; padding: 10px 22px !important; }
.nav-cta:hover { background: var(--gold-light) !important; transform: translateY(-2px); box-shadow: 0 8px 20px rgba(201,151,58,0.4); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; }
.hamburger span { display: block; width: 24px; height: 2px; background: white; border-radius: 2px; transition: all 0.3s ease; }

/* ============================================================
   HERO
   ============================================================ */
.hero { height: 100vh; min-height: 600px; position: relative; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.hero-bg {
  position: absolute; inset: 0;
  background: url('../assets/hero-bg.jpg') center/cover no-repeat;
}
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(10,40,28,0.88) 0%, rgba(10,40,28,0.55) 60%, rgba(201,151,58,0.1) 100%); }
.hero-particles { position: absolute; inset: 0; overflow: hidden; }
.particle {
  position: absolute; background: var(--gold); border-radius: 50%; opacity: 0;
  animation: floatUp 6s linear infinite;
}
@keyframes floatUp {
  0%   { transform: translateY(100vh) scale(0); opacity: 0; }
  10%  { opacity: 0.6; }
  90%  { opacity: 0.2; }
  100% { transform: translateY(-100px) scale(1.5); opacity: 0; }
}
.hero-content {
  position: relative; z-index: 2;
  text-align: center; color: white; padding: 20px;
  opacity: 0; transform: translateY(40px);
  transition: all 1s ease 0.5s;
}
.hero-content.visible { opacity: 1; transform: translateY(0); }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid rgba(201,151,58,0.5); background: rgba(201,151,58,0.1);
  color: var(--gold-light); padding: 7px 20px; border-radius: 30px;
  font-size: 12px; letter-spacing: 2px; text-transform: uppercase;
  margin-bottom: 28px; backdrop-filter: blur(10px);
}
.hero-badge::before { content: '●'; font-size: 8px; animation: blink 1.5s ease infinite; }
@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: 0.3; } }
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(42px,7vw,90px); line-height: 1.05; font-weight: 900;
  margin-bottom: 20px; text-shadow: 0 4px 40px rgba(0,0,0,0.3);
}
.hero h1 span { color: var(--gold); display: block; }
.hero p { font-size: clamp(15px,2vw,19px); opacity: 0.8; max-width: 560px; margin: 0 auto 40px; line-height: 1.7; font-weight: 300; }
.hero-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-primary { background: var(--gold); color: var(--dark); padding: 15px 36px; border: none; border-radius: 50px; font-size: 14px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; cursor: pointer; transition: all 0.35s ease; font-family: 'DM Sans', sans-serif; text-decoration: none; display: inline-block; }
.btn-primary:hover { background: var(--gold-light); transform: translateY(-3px); box-shadow: 0 15px 35px rgba(201,151,58,0.45); }
.btn-outline { background: transparent; color: white; padding: 14px 36px; border: 2px solid rgba(255,255,255,0.5); border-radius: 50px; font-size: 14px; font-weight: 500; letter-spacing: 1px; text-transform: uppercase; cursor: pointer; transition: all 0.35s ease; font-family: 'DM Sans', sans-serif; text-decoration: none; display: inline-block; }
.btn-outline:hover { border-color: white; background: rgba(255,255,255,0.1); transform: translateY(-3px); }
.hero-scroll { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 8px; color: rgba(255,255,255,0.6); font-size: 11px; letter-spacing: 2px; text-transform: uppercase; cursor: pointer; z-index: 2; transition: color 0.3s; }
.hero-scroll:hover { color: var(--gold); }
.scroll-line { width: 1px; height: 40px; background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.6)); animation: scrollAnim 2s ease infinite; }
@keyframes scrollAnim {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ============================================================
   SECTIONS
   ============================================================ */
section { padding: 100px 60px; }
.section-label { font-size: 11px; letter-spacing: 4px; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: 12px; }
.section-title { font-family: 'Playfair Display', serif; font-size: clamp(32px,4vw,52px); line-height: 1.15; color: var(--dark); margin-bottom: 18px; }
.section-sub { color: #666; font-size: 16px; line-height: 1.7; max-width: 560px; font-weight: 300; }

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee-wrap { background: var(--forest); padding: 18px 0; overflow: hidden; }
.marquee-track { display: flex; gap: 60px; animation: marquee 22s linear infinite; white-space: nowrap; }
.marquee-track:hover { animation-play-state: paused; }
.marquee-item { color: rgba(255,255,255,0.75); font-size: 13px; letter-spacing: 3px; text-transform: uppercase; font-weight: 500; display: flex; align-items: center; gap: 20px; }
.marquee-item::after { content: '✦'; color: var(--gold); font-size: 10px; }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ============================================================
   ABOUT
   ============================================================ */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; max-width: 1200px; margin: 0 auto; }
.about-img-wrap { position: relative; }
.about-img { width: 100%; height: 500px; object-fit: cover; border-radius: 20px; display: block; }
.about-img-card { position: absolute; bottom: -30px; right: -30px; background: var(--forest); color: white; padding: 24px 28px; border-radius: 16px; box-shadow: 0 20px 50px rgba(0,0,0,0.25); }
.about-img-card .big { font-family: 'Playfair Display', serif; font-size: 42px; font-weight: 900; color: var(--gold); }
.about-img-card p { font-size: 12px; letter-spacing: 2px; text-transform: uppercase; opacity: 0.7; margin-top: 4px; }
.about-text .section-sub { margin-bottom: 30px; }
.about-features { display: flex; flex-direction: column; gap: 16px; margin-bottom: 36px; }
.feature-item { display: flex; align-items: center; gap: 16px; padding: 16px 20px; background: white; border-radius: 12px; border-left: 4px solid var(--gold); box-shadow: 0 2px 12px rgba(0,0,0,0.06); transition: all 0.3s ease; }
.feature-item:hover { transform: translateX(8px); box-shadow: 0 6px 24px rgba(0,0,0,0.1); }
.feature-icon { font-size: 24px; flex-shrink: 0; }
.feature-text strong { display: block; font-weight: 600; color: var(--dark); margin-bottom: 2px; }
.feature-text span { font-size: 13px; color: #888; }

/* ============================================================
   PRODUCTS
   ============================================================ */
.products-section { background: var(--dark); }
.products-section .section-title { color: white; }
.products-section .section-sub { color: rgba(255,255,255,0.5); }
.products-header { text-align: center; margin-bottom: 60px; }
.products-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; max-width: 1200px; margin: 0 auto; }
.product-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 20px; overflow: hidden; transition: all 0.4s ease; cursor: pointer; position: relative; }
.product-card:hover { border-color: var(--gold); transform: translateY(-12px); box-shadow: 0 30px 60px rgba(0,0,0,0.5); }
.product-img-wrap { position: relative; overflow: hidden; height: 220px; }
.product-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.product-card:hover .product-img { transform: scale(1.08); }
.product-badge { position: absolute; top: 16px; left: 16px; background: var(--gold); color: var(--dark); font-size: 10px; letter-spacing: 2px; font-weight: 700; text-transform: uppercase; padding: 5px 12px; border-radius: 20px; }
.product-body { padding: 24px; }
.product-body h3 { font-family: 'Playfair Display', serif; color: white; font-size: 22px; margin-bottom: 10px; }
.product-body p { color: rgba(255,255,255,0.5); font-size: 14px; line-height: 1.6; margin-bottom: 20px; }
.product-specs { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 20px; }
.spec-tag { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); color: rgba(255,255,255,0.6); font-size: 11px; letter-spacing: 1px; padding: 5px 12px; border-radius: 20px; }
.product-btn { width: 100%; background: transparent; border: 1px solid rgba(201,151,58,0.5); color: var(--gold); padding: 12px; border-radius: 10px; font-size: 13px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; cursor: pointer; font-family: 'DM Sans', sans-serif; transition: all 0.3s ease; }
.product-btn:hover { background: var(--gold); color: var(--dark); }

/* ============================================================
   LOCATION SECTION — PREMIUM REDESIGN
   ============================================================ */
.location-section {
  background: var(--dark);
  padding: 100px 60px;
  position: relative;
  overflow: hidden;
}

/* Ambient glow */
.location-section::before {
  content: '';
  position: absolute;
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(15,76,58,0.18) 0%, transparent 65%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.location-section::after {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(201,151,58,0.06) 0%, transparent 70%);
  top: 10%; right: 5%;
  pointer-events: none;
}

.location-inner { position: relative; z-index: 1; max-width: 1200px; margin: 0 auto; }

/* Header */
.loc-header { text-align: center; margin-bottom: 60px; }
.loc-header .section-title { color: white; }
.loc-header .section-sub { color: rgba(255,255,255,0.45); margin: 0 auto; }

/* Grid */
.loc-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 28px;
  align-items: stretch;
}

/* ── LEFT PANEL ── */
.loc-left {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 24px;
  padding: 44px 40px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.4s ease;
}
.loc-left:hover { border-color: rgba(201,151,58,0.25); }
.loc-left::before {
  content: '';
  position: absolute;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(201,151,58,0.06) 0%, transparent 70%);
  top: -80px; right: -60px;
  pointer-events: none;
}

/* Pin + business name */
.pin-wrap { display: flex; align-items: center; gap: 18px; }
.pin-icon-wrap {
  width: 58px; height: 58px;
  flex-shrink: 0;
  position: relative;
  display: flex; align-items: center; justify-content: center;
}
.pin-pulse {
  position: absolute; inset: 0;
  border-radius: 50%;
  background: rgba(201,151,58,0.15);
  animation: pinPulseRing 2.4s cubic-bezier(0.4,0,0.6,1) infinite;
}
@keyframes pinPulseRing {
  0%,100% { transform: scale(1);   opacity: 1; }
  60%      { transform: scale(1.7); opacity: 0; }
}
.pin-svg {
  position: relative; z-index: 1;
  animation: pinFloat 2.4s cubic-bezier(0.28,0.84,0.42,1) infinite;
  filter: drop-shadow(0 4px 12px rgba(201,151,58,0.4));
}
@keyframes pinFloat {
  0%,100% { transform: translateY(0); }
  40%     { transform: translateY(-8px); }
  65%     { transform: translateY(-2px); }
}
.pin-biz-name {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: white;
  line-height: 1.3;
}
.pin-biz-name span { color: var(--gold); }

/* Detail rows */
.loc-details { display: flex; flex-direction: column; gap: 16px; }
.loc-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
  transition: all 0.3s ease;
}
.loc-row:hover {
  background: rgba(201,151,58,0.07);
  border-color: rgba(201,151,58,0.2);
  transform: translateX(5px);
}
.loc-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  background: rgba(201,151,58,0.1);
  border: 1px solid rgba(201,151,58,0.2);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
}
.loc-row-text strong {
  display: block;
  color: white;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 2px;
}
.loc-row-text span { color: rgba(255,255,255,0.45); font-size: 12px; }

/* Buttons */
.loc-btns { display: flex; flex-direction: column; gap: 12px; margin-top: auto; }

.btn-directions {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  background: var(--gold);
  color: #080f0c;
  padding: 15px 24px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 14px; font-weight: 700; letter-spacing: 0.5px;
  border: none; cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  transition: background 0.3s cubic-bezier(0.22,1,0.36,1),
              transform  0.3s cubic-bezier(0.22,1,0.36,1),
              box-shadow 0.3s cubic-bezier(0.22,1,0.36,1);
  position: relative; overflow: hidden;
}
.btn-directions:hover {
  background: var(--gold-light);
  transform: translateY(-3px);
  box-shadow: 0 14px 34px rgba(201,151,58,0.38);
}
.btn-directions:active { transform: scale(0.97); }
.btn-directions .ripple {
  position: absolute; border-radius: 50%;
  background: rgba(255,255,255,0.3);
  transform: scale(0);
  animation: rippleAnim 0.55s linear;
  pointer-events: none;
}
@keyframes rippleAnim { to { transform: scale(4); opacity: 0; } }

.btn-copy-addr {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  background: transparent;
  color: rgba(255,255,255,0.7);
  padding: 13px 24px;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.12);
  font-size: 14px; font-weight: 500;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  transition: all 0.3s cubic-bezier(0.22,1,0.36,1);
}
.btn-copy-addr:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.25);
  color: white;
}
.btn-copy-addr.copied {
  background: rgba(74,222,128,0.08);
  border-color: rgba(74,222,128,0.3);
  color: #4ade80;
}

/* ── RIGHT PANEL — MAP ── */
.loc-right {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  min-height: 500px;
  transition: border-color 0.4s ease;
}
.loc-right:hover { border-color: rgba(201,151,58,0.25); }

.map-container {
  width: 100%; height: 100%;
  min-height: 500px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.map-container iframe {
  width: 100%; height: 100%;
  min-height: 500px;
  border: none; display: block;
  pointer-events: none;
  transition: transform 0.5s cubic-bezier(0.22,1,0.36,1),
              filter 0.5s ease;
  filter: saturate(0.8) brightness(0.85);
  transform-origin: center;
}
.map-container:hover iframe {
  pointer-events: all;
  transform: scale(1.03);
  filter: saturate(1) brightness(0.95);
}

.map-badge {
  position: absolute; top: 18px; left: 18px; z-index: 10;
  background: rgba(8,15,12,0.85);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(201,151,58,0.3);
  border-radius: 50px;
  padding: 8px 16px;
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 500;
  color: rgba(255,255,255,0.8);
  pointer-events: none;
}
.map-badge-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold);
  animation: badgePulse 2s ease infinite;
}
@keyframes badgePulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(201,151,58,0.6); }
  50%      { box-shadow: 0 0 0 6px rgba(201,151,58,0); }
}

.map-hover-hint {
  position: absolute; bottom: 18px; left: 50%; transform: translateX(-50%);
  background: rgba(8,15,12,0.8);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 50px;
  padding: 7px 18px;
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  pointer-events: none; z-index: 10;
  white-space: nowrap;
  transition: opacity 0.35s ease;
}
.map-container:hover .map-hover-hint { opacity: 0; }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; grid-template-rows: 260px 260px; gap: 16px; max-width: 1200px; margin: 60px auto 0; }
.gallery-item { position: relative; overflow: hidden; border-radius: 16px; cursor: pointer; }
.gallery-item:first-child { grid-row: span 2; }
.gallery-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gallery-item:hover .gallery-img { transform: scale(1.07); }
.gallery-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,40,28,0.7) 0%, transparent 60%); opacity: 0; transition: opacity 0.4s ease; display: flex; align-items: flex-end; padding: 20px; }
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span { color: white; font-size: 14px; font-weight: 600; letter-spacing: 1px; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-section { background: var(--dark); padding: 100px 60px; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; max-width: 1200px; margin: 0 auto; align-items: start; }
.contact-text .section-title { color: white; }
.contact-text .section-sub { color: rgba(255,255,255,0.5); }
.contact-details { margin-top: 40px; display: flex; flex-direction: column; gap: 20px; }
.contact-detail { display: flex; align-items: center; gap: 16px; color: rgba(255,255,255,0.75); font-size: 15px; }
.contact-icon { width: 44px; height: 44px; background: rgba(201,151,58,0.15); border: 1px solid rgba(201,151,58,0.3); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.contact-form { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 24px; padding: 40px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; color: rgba(255,255,255,0.6); font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 8px; font-weight: 500; }
.form-group input,
.form-group textarea,
.form-group select { width: 100%; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: 10px; padding: 14px 18px; color: white; font-size: 15px; font-family: 'DM Sans', sans-serif; outline: none; transition: all 0.3s ease; resize: none; }
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--gold); background: rgba(201,151,58,0.06); }
.form-group select option { background: #1a2a20; color: white; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-submit { width: 100%; background: var(--gold); color: var(--dark); border: none; padding: 16px; border-radius: 10px; font-size: 14px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; cursor: pointer; font-family: 'DM Sans', sans-serif; transition: all 0.3s ease; }
.form-submit:hover { background: var(--gold-light); box-shadow: 0 10px 30px rgba(201,151,58,0.4); }
.form-submit.success { background: #2d7a5f; }
.form-msg { text-align: center; margin-top: 14px; font-size: 14px; color: var(--gold); min-height: 20px; opacity: 0; transition: opacity 0.3s; }
.form-msg.show { opacity: 1; }

/* ============================================================
   FOOTER
   ============================================================ */
footer { background: #060f0b; padding: 60px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; max-width: 1200px; margin: 0 auto 40px; }
.footer-brand .logo { display: inline-block; margin-bottom: 16px; }
.footer-brand p { color: rgba(255,255,255,0.45); font-size: 14px; line-height: 1.7; max-width: 240px; }
.footer-col h4 { color: white; font-size: 14px; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 20px; font-weight: 600; }
.footer-col a { display: block; color: rgba(255,255,255,0.45); text-decoration: none; font-size: 14px; margin-bottom: 10px; transition: color 0.3s; }
.footer-col a:hover { color: var(--gold); }
.footer-badges { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 20px; }
.footer-badge { border: 1px solid rgba(201,151,58,0.3); color: rgba(201,151,58,0.8); padding: 6px 14px; border-radius: 20px; font-size: 11px; letter-spacing: 1px; text-transform: uppercase; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding-top: 30px; max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
.footer-bottom p { color: rgba(255,255,255,0.3); font-size: 13px; }
.footer-social { display: flex; gap: 14px; }
.social-link { width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; text-decoration: none; font-size: 16px; transition: all 0.3s ease; }
.social-link:hover { border-color: var(--gold); background: rgba(201,151,58,0.1); }

/* ============================================================
   CHATBOT
   ============================================================ */
.chatbot { position: fixed; bottom: 30px; right: 30px; z-index: 500; }
.chat-toggle { width: 60px; height: 60px; border-radius: 50%; background: var(--forest); border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 26px; box-shadow: 0 8px 25px rgba(15,76,58,0.5); transition: all 0.3s ease; position: relative; z-index: 2; }
.chat-toggle:hover { transform: scale(1.1); box-shadow: 0 12px 35px rgba(15,76,58,0.6); }
.chat-toggle .notify { position: absolute; top: -2px; right: -2px; width: 18px; height: 18px; background: var(--gold); border-radius: 50%; border: 2px solid white; font-size: 10px; font-weight: 700; color: var(--dark); display: flex; align-items: center; justify-content: center; }
.chat-window { position: absolute; bottom: 75px; right: 0; width: 340px; background: white; border-radius: 20px; box-shadow: 0 20px 60px rgba(0,0,0,0.2); overflow: hidden; transform: scale(0.8) translateY(20px); transform-origin: bottom right; opacity: 0; pointer-events: none; transition: all 0.3s cubic-bezier(0.34,1.56,0.64,1); }
.chat-window.open { transform: scale(1) translateY(0); opacity: 1; pointer-events: all; }
.chat-hdr { background: linear-gradient(135deg, var(--forest), var(--forest-light)); padding: 20px; display: flex; justify-content: space-between; align-items: center; }
.chat-hdr-info { display: flex; align-items: center; gap: 12px; }
.chat-avatar { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.2); display: flex; align-items: center; justify-content: center; font-size: 20px; }
.chat-hdr-info div strong { display: block; color: white; font-size: 15px; }
.chat-hdr-info div span { font-size: 11px; color: rgba(255,255,255,0.7); }
.chat-online { width: 8px; height: 8px; background: #4ade80; border-radius: 50%; animation: blink 2s ease infinite; }
.chat-close-btn { background: none; border: none; color: rgba(255,255,255,0.7); font-size: 20px; cursor: pointer; transition: color 0.2s; }
.chat-close-btn:hover { color: white; }
.chat-msgs { height: 260px; overflow-y: auto; padding: 16px; display: flex; flex-direction: column; gap: 10px; }
.chat-msgs::-webkit-scrollbar { width: 3px; }
.chat-msgs::-webkit-scrollbar-thumb { background: rgba(0,0,0,0.1); }
.msg { max-width: 82%; padding: 10px 15px; border-radius: 18px; font-size: 14px; line-height: 1.5; animation: msgIn 0.3s ease; }
@keyframes msgIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
.msg.bot { background: #f0f0f0; color: var(--text); border-bottom-left-radius: 4px; align-self: flex-start; }
.msg.user { background: var(--forest); color: white; border-bottom-right-radius: 4px; align-self: flex-end; }
.chat-menu { padding: 10px 14px; display: flex; flex-direction: column; gap: 8px; border-top: 1px solid #f0f0f0; max-height: 220px; overflow-y: auto; }
.chat-menu::-webkit-scrollbar { width: 3px; }
.chat-menu::-webkit-scrollbar-thumb { background: rgba(0,0,0,0.1); }
.chat-menu-btn { width: 100%; background: white; border: 1.5px solid rgba(15,76,58,0.2); color: var(--forest); border-radius: 10px; padding: 10px 14px; font-size: 13px; font-weight: 500; font-family: 'DM Sans', sans-serif; cursor: pointer; text-align: left; transition: all 0.2s ease; letter-spacing: 0.3px; }
.chat-menu-btn:hover { background: var(--forest); color: white; border-color: var(--forest); transform: translateX(4px); }
.chat-back-btn { background: #f7f7f7; border: 1.5px solid #e0e0e0; color: #888; font-size: 12px; padding: 8px 14px; }
.chat-back-btn:hover { background: #eee; color: #444; border-color: #ccc; transform: translateX(0px); }
.typing-indicator { display: flex; align-items: center; gap: 4px; padding: 12px 16px !important; width: fit-content; }
.typing-indicator span { display: inline-block; width: 7px; height: 7px; background: #aaa; border-radius: 50%; animation: typingBounce 1.2s ease infinite; }
.typing-indicator span:nth-child(2) { animation-delay: 0.2s; }
.typing-indicator span:nth-child(3) { animation-delay: 0.4s; }
@keyframes typingBounce { 0%, 60%, 100% { transform: translateY(0); } 30% { transform: translateY(-6px); } }
.chat-inp { display: flex; border-top: 1px solid #f0f0f0; }
.chat-inp input { flex: 1; border: none; padding: 14px 16px; font-size: 14px; font-family: 'DM Sans', sans-serif; outline: none; }
.chat-send-btn { background: var(--forest); border: none; color: white; width: 50px; cursor: pointer; font-size: 18px; transition: background 0.2s; }
.chat-send-btn:hover { background: var(--forest-light); }

/* ============================================================
   TOAST
   ============================================================ */
.toast { position: fixed; bottom: 100px; left: 50%; transform: translateX(-50%) translateY(20px); background: var(--forest); color: white; padding: 14px 28px; border-radius: 50px; font-size: 14px; font-weight: 500; box-shadow: 0 8px 30px rgba(0,0,0,0.25); opacity: 0; transition: all 0.4s ease; pointer-events: none; z-index: 9000; display: flex; align-items: center; gap: 10px; }
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ============================================================
   MODAL
   ============================================================ */
.modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.7); backdrop-filter: blur(8px); z-index: 8000; display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity 0.3s; }
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal { background: white; border-radius: 24px; max-width: 520px; width: 90%; padding: 40px; position: relative; transform: translateY(30px) scale(0.95); transition: all 0.3s cubic-bezier(0.34,1.1,0.64,1); }
.modal-overlay.open .modal { transform: translateY(0) scale(1); }
.modal-close { position: absolute; top: 20px; right: 20px; background: #f0f0f0; border: none; width: 36px; height: 36px; border-radius: 50%; font-size: 18px; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background 0.2s; }
.modal-close:hover { background: #e0e0e0; }
.modal h3 { font-family: 'Playfair Display', serif; font-size: 26px; margin-bottom: 8px; }
.modal p { color: #666; font-size: 15px; line-height: 1.6; margin-bottom: 24px; }
.modal .product-specs { margin-bottom: 24px; }
.modal-actions { display: flex; gap: 12px; }

/* ============================================================
   UTILITIES
   ============================================================ */
.reveal { opacity: 0; transform: translateY(30px); transition: all 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.back-top { position: fixed; bottom: 100px; right: 30px; width: 44px; height: 44px; border-radius: 50%; background: var(--gold); border: none; color: var(--dark); font-size: 20px; cursor: pointer; display: flex; align-items: center; justify-content: center; box-shadow: 0 6px 20px rgba(201,151,58,0.4); opacity: 0; pointer-events: none; transition: all 0.3s ease; z-index: 400; }
.back-top.show { opacity: 1; pointer-events: all; }
.back-top:hover { transform: translateY(-3px); box-shadow: 0 10px 28px rgba(201,151,58,0.5); }

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

@media (max-width: 900px) {
  header { padding: 15px 24px; }
  header.scrolled { padding: 12px 24px; }
  nav { display: none; }
  nav.open { display: flex; flex-direction: column; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(10,40,28,0.98); align-items: center; justify-content: center; gap: 16px; z-index: 999; }
  nav.open a { font-size: 22px; letter-spacing: 2px; }
  .hamburger { display: flex; }
  section { padding: 70px 24px; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gallery-item:first-child { grid-column: span 2; height: 220px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero h1 { font-size: 42px; }
  .form-row { grid-template-columns: 1fr; }
  .about-img-card { right: 0; bottom: -20px; }

  /* Location responsive */
  .location-section { padding: 70px 24px; }
  .loc-grid { grid-template-columns: 1fr; }
  .loc-left { padding: 32px 26px; }
  .loc-right { min-height: 380px; }
  .map-container,
  .map-container iframe { min-height: 380px; }
}

@media (max-width: 520px) {
  .loc-left { padding: 26px 20px; gap: 24px; }
  .pin-biz-name { font-size: 17px; }
  .loc-row { padding: 12px 14px; }
  .footer-grid { grid-template-columns: 1fr; }
}


/* ============================================================
   CUSTOM CURSOR
   ============================================================ */
.cursor {
  width: 10px; height: 10px;
  background: var(--gold);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9999;
}

/* ============================================================
   LOADER
   ============================================================ */
.loader {
  position: fixed; inset: 0;
  background: var(--forest);
  z-index: 10000;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 20px;
  transition: opacity 0.7s ease, visibility 0.7s ease;
}
.loader-tagline {
  color: var(--gold-light);
  font-size: 13px;
  letter-spacing: 2px;
  opacity: 0.8;
  margin-top: -10px;
}
.loader.hidden { opacity: 0; visibility: hidden; }
.loader-logo {
  font-family: 'Playfair Display', serif;
  color: white; font-size: 36px; letter-spacing: 6px;
  animation: pulse 1.5s ease infinite;
}
.loader-bar { width: 200px; height: 3px; background: rgba(255,255,255,0.2); border-radius: 3px; overflow: hidden; margin-top: 16px; }
.loader-bar-fill { width: 0%; height: 100%; background: var(--gold); border-radius: 3px; transition: width 1.8s ease; }
@keyframes pulse { 0%,100% { opacity: 0.6; } 50% { opacity: 1; } }

/* ============================================================
   SCROLL PROGRESS
   ============================================================ */
.scroll-progress { position: fixed; top: 0; left: 0; right: 0; height: 3px; z-index: 9999; }
.scroll-bar { height: 100%; background: var(--gold); width: 0%; transition: width 0.1s; }

/* ============================================================
   HEADER
   ============================================================ */
header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000; padding: 18px 60px;
  display: flex; justify-content: space-between; align-items: center;
  transition: all 0.4s ease;
}
header.scrolled {
  background: rgba(15,76,58,0.97);
  backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(0,0,0,0.2);
  padding: 12px 60px;
}
.logo { font-family: 'Playfair Display', serif; color: white; font-size: 22px; letter-spacing: 3px; font-weight: 700; text-decoration: none; }
.logo span { color: var(--gold); }
nav { display: flex; gap: 10px; align-items: center; }
nav a { color: rgba(255,255,255,0.85); text-decoration: none; font-size: 13px; letter-spacing: 1.5px; text-transform: uppercase; padding: 8px 16px; border-radius: 30px; transition: all 0.3s ease; font-weight: 500; }
nav a:hover { color: white; background: rgba(255,255,255,0.12); }
.nav-cta { background: var(--gold) !important; color: var(--dark) !important; font-weight: 600 !important; padding: 10px 22px !important; }
.nav-cta:hover { background: var(--gold-light) !important; transform: translateY(-2px); box-shadow: 0 8px 20px rgba(201,151,58,0.4); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; }
.hamburger span { display: block; width: 24px; height: 2px; background: white; border-radius: 2px; transition: all 0.3s ease; }

/* ============================================================
   HERO
   ============================================================ */
.hero { height: 100vh; min-height: 600px; position: relative; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.hero-bg {
  position: absolute; inset: 0;
  background: url('../assets/hero-bg.jpg') center/cover no-repeat;
}
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(10,40,28,0.88) 0%, rgba(10,40,28,0.55) 60%, rgba(201,151,58,0.1) 100%); }
.hero-particles { position: absolute; inset: 0; overflow: hidden; }
.particle {
  position: absolute; background: var(--gold); border-radius: 50%; opacity: 0;
  animation: floatUp 6s linear infinite;
}
@keyframes floatUp {
  0%   { transform: translateY(100vh) scale(0); opacity: 0; }
  10%  { opacity: 0.6; }
  90%  { opacity: 0.2; }
  100% { transform: translateY(-100px) scale(1.5); opacity: 0; }
}
.hero-content {
  position: relative; z-index: 2;
  text-align: center; color: white; padding: 20px;
  opacity: 0; transform: translateY(40px);
  transition: all 1s ease 0.5s;
}
.hero-content.visible { opacity: 1; transform: translateY(0); }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid rgba(201,151,58,0.5); background: rgba(201,151,58,0.1);
  color: var(--gold-light); padding: 7px 20px; border-radius: 30px;
  font-size: 12px; letter-spacing: 2px; text-transform: uppercase;
  margin-bottom: 28px; backdrop-filter: blur(10px);
}
.hero-badge::before { content: '●'; font-size: 8px; animation: blink 1.5s ease infinite; }
@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: 0.3; } }
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(42px,7vw,90px); line-height: 1.05; font-weight: 900;
  margin-bottom: 20px; text-shadow: 0 4px 40px rgba(0,0,0,0.3);
}
.hero h1 span { color: var(--gold); display: block; }
.hero p { font-size: clamp(15px,2vw,19px); opacity: 0.8; max-width: 560px; margin: 0 auto 40px; line-height: 1.7; font-weight: 300; }
.hero-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-primary { background: var(--gold); color: var(--dark); padding: 15px 36px; border: none; border-radius: 50px; font-size: 14px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; cursor: pointer; transition: all 0.35s ease; font-family: 'DM Sans', sans-serif; text-decoration: none; display: inline-block; }
.btn-primary:hover { background: var(--gold-light); transform: translateY(-3px); box-shadow: 0 15px 35px rgba(201,151,58,0.45); }
.btn-outline { background: transparent; color: white; padding: 14px 36px; border: 2px solid rgba(255,255,255,0.5); border-radius: 50px; font-size: 14px; font-weight: 500; letter-spacing: 1px; text-transform: uppercase; cursor: pointer; transition: all 0.35s ease; font-family: 'DM Sans', sans-serif; text-decoration: none; display: inline-block; }
.btn-outline:hover { border-color: white; background: rgba(255,255,255,0.1); transform: translateY(-3px); }
.hero-scroll { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 8px; color: rgba(255,255,255,0.6); font-size: 11px; letter-spacing: 2px; text-transform: uppercase; cursor: pointer; z-index: 2; transition: color 0.3s; }
.hero-scroll:hover { color: var(--gold); }
.scroll-line { width: 1px; height: 40px; background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.6)); animation: scrollAnim 2s ease infinite; }
@keyframes scrollAnim {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ============================================================
   SECTIONS
   ============================================================ */
section { padding: 100px 60px; }
.section-label { font-size: 11px; letter-spacing: 4px; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: 12px; }
.section-title { font-family: 'Playfair Display', serif; font-size: clamp(32px,4vw,52px); line-height: 1.15; color: var(--dark); margin-bottom: 18px; }
.section-sub { color: #666; font-size: 16px; line-height: 1.7; max-width: 560px; font-weight: 300; }

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee-wrap { background: var(--forest); padding: 18px 0; overflow: hidden; }
.marquee-track { display: flex; gap: 60px; animation: marquee 22s linear infinite; white-space: nowrap; }
.marquee-track:hover { animation-play-state: paused; }
.marquee-item { color: rgba(255,255,255,0.75); font-size: 13px; letter-spacing: 3px; text-transform: uppercase; font-weight: 500; display: flex; align-items: center; gap: 20px; }
.marquee-item::after { content: '✦'; color: var(--gold); font-size: 10px; }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ============================================================
   ABOUT
   ============================================================ */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; max-width: 1200px; margin: 0 auto; }
.about-img-wrap { position: relative; }
.about-img { width: 100%; height: 500px; object-fit: cover; border-radius: 20px; display: block; }
.about-img-card { position: absolute; bottom: -30px; right: -30px; background: var(--forest); color: white; padding: 24px 28px; border-radius: 16px; box-shadow: 0 20px 50px rgba(0,0,0,0.25); }
.about-img-card .big { font-family: 'Playfair Display', serif; font-size: 42px; font-weight: 900; color: var(--gold); }
.about-img-card p { font-size: 12px; letter-spacing: 2px; text-transform: uppercase; opacity: 0.7; margin-top: 4px; }
.about-text .section-sub { margin-bottom: 30px; }
.about-features { display: flex; flex-direction: column; gap: 16px; margin-bottom: 36px; }
.feature-item { display: flex; align-items: center; gap: 16px; padding: 16px 20px; background: white; border-radius: 12px; border-left: 4px solid var(--gold); box-shadow: 0 2px 12px rgba(0,0,0,0.06); transition: all 0.3s ease; }
.feature-item:hover { transform: translateX(8px); box-shadow: 0 6px 24px rgba(0,0,0,0.1); }
.feature-icon { font-size: 24px; flex-shrink: 0; }
.feature-text strong { display: block; font-weight: 600; color: var(--dark); margin-bottom: 2px; }
.feature-text span { font-size: 13px; color: #888; }

/* ============================================================
   PRODUCTS
   ============================================================ */
.products-section { background: var(--dark); }
.products-section .section-title { color: white; }
.products-section .section-sub { color: rgba(255,255,255,0.5); }
.products-header { text-align: center; margin-bottom: 60px; }
.products-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; max-width: 1200px; margin: 0 auto; }
.product-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 20px; overflow: hidden; transition: all 0.4s ease; cursor: pointer; position: relative; }
.product-card:hover { border-color: var(--gold); transform: translateY(-12px); box-shadow: 0 30px 60px rgba(0,0,0,0.5); }
.product-img-wrap { position: relative; overflow: hidden; height: 220px; }
.product-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.product-card:hover .product-img { transform: scale(1.08); }
.product-badge { position: absolute; top: 16px; left: 16px; background: var(--gold); color: var(--dark); font-size: 10px; letter-spacing: 2px; font-weight: 700; text-transform: uppercase; padding: 5px 12px; border-radius: 20px; }
.product-body { padding: 24px; }
.product-body h3 { font-family: 'Playfair Display', serif; color: white; font-size: 22px; margin-bottom: 10px; }
.product-body p { color: rgba(255,255,255,0.5); font-size: 14px; line-height: 1.6; margin-bottom: 20px; }
.product-specs { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 20px; }
.spec-tag { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); color: rgba(255,255,255,0.6); font-size: 11px; letter-spacing: 1px; padding: 5px 12px; border-radius: 20px; }
.product-btn { width: 100%; background: transparent; border: 1px solid rgba(201,151,58,0.5); color: var(--gold); padding: 12px; border-radius: 10px; font-size: 13px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; cursor: pointer; font-family: 'DM Sans', sans-serif; transition: all 0.3s ease; }
.product-btn:hover { background: var(--gold); color: var(--dark); }

/* ============================================================
   STATS
   ============================================================ */
.stats-section { background: linear-gradient(135deg, var(--forest) 0%, var(--forest-light) 100%); padding: 80px 60px; position: relative; overflow: hidden; }
.stats-section::before { content: ''; position: absolute; width: 600px; height: 600px; background: radial-gradient(circle, rgba(201,151,58,0.12) 0%, transparent 70%); top: -200px; right: -200px; }
.stats-grid { display: flex; justify-content: center; gap: 0; max-width: 900px; margin: 0 auto; position: relative; z-index: 1; }
.stat-item { flex: 1; text-align: center; padding: 30px; border-right: 1px solid rgba(255,255,255,0.1); }
.stat-item:last-child { border-right: none; }
.stat-num { font-family: 'Playfair Display', serif; font-size: 64px; font-weight: 900; color: var(--gold); line-height: 1; margin-bottom: 10px; }
.stat-num span.plus { font-size: 40px; }
.stat-label { color: rgba(255,255,255,0.7); font-size: 13px; letter-spacing: 2px; text-transform: uppercase; }

/* ============================================================
   GLOBE / LOCATION SECTION
   ============================================================ */
.location-section {
  background: var(--dark);
  padding: 100px 60px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Subtle radial glow behind globe */
.location-section::before {
  content: '';
  position: absolute;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(15,76,58,0.35) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.location-inner {
  position: relative;
  z-index: 1;
}

.location-section .section-title {
  color: white;
  text-align: center;
}

.location-section .section-sub {
  color: rgba(255,255,255,0.45);
  text-align: center;
  margin: 0 auto 52px;
}

.globe-wrap {
  position: relative;
  width: 100%;
  max-width: 560px;
  margin: 0 auto 40px;
  z-index: 1;
}

.globe-wrap canvas {
  display: block;
  width: 100% !important;
  height: auto !important;
  border-radius: 50%;
}

.globe-legend {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.globe-legend-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.65);
  font-size: 14px;
  font-family: 'DM Sans', sans-serif;
}

.globe-legend-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

.gold-dot {
  background: var(--gold);
  animation: legendPulse 2s ease infinite;
}

.green-dot {
  background: #4ade80;
  animation: legendPulse 2s ease 0.5s infinite;
}

@keyframes legendPulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(201,151,58,0.5); }
  50%      { box-shadow: 0 0 0 7px rgba(201,151,58,0); }
}

.map-link-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border: 1px solid rgba(201,151,58,0.45);
  border-radius: 50px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-decoration: none;
  font-family: 'DM Sans', sans-serif;
  transition: all 0.3s ease;
  margin-left: 8px;
}

.map-link-btn:hover {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(201,151,58,0.35);
}

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; grid-template-rows: 260px 260px; gap: 16px; max-width: 1200px; margin: 60px auto 0; }
.gallery-item { position: relative; overflow: hidden; border-radius: 16px; cursor: pointer; }
.gallery-item:first-child { grid-row: span 2; }
.gallery-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gallery-item:hover .gallery-img { transform: scale(1.07); }
.gallery-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,40,28,0.7) 0%, transparent 60%); opacity: 0; transition: opacity 0.4s ease; display: flex; align-items: flex-end; padding: 20px; }
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span { color: white; font-size: 14px; font-weight: 600; letter-spacing: 1px; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section { background: #f0ece4; }
.testimonials-header { text-align: center; margin-bottom: 60px; }
.testimonials-track { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; max-width: 1200px; margin: 0 auto; }
.testimonial-card { background: white; border-radius: 20px; padding: 36px; box-shadow: 0 4px 30px rgba(0,0,0,0.06); transition: all 0.4s ease; position: relative; }
.testimonial-card:hover { transform: translateY(-8px); box-shadow: 0 20px 50px rgba(0,0,0,0.12); }
.testimonial-card::before { content: '"'; font-family: 'Playfair Display', serif; font-size: 100px; color: var(--gold); position: absolute; top: -10px; left: 24px; line-height: 1; opacity: 0.3; }
.testimonial-text { font-size: 15px; line-height: 1.8; color: #555; margin-bottom: 24px; position: relative; z-index: 1; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.author-avatar { width: 48px; height: 48px; border-radius: 50%; background: var(--forest); display: flex; align-items: center; justify-content: center; color: white; font-weight: 700; font-size: 18px; flex-shrink: 0; }
.author-info strong { display: block; color: var(--dark); font-weight: 700; }
.author-info span { font-size: 13px; color: #999; }
.stars { color: var(--gold); font-size: 14px; margin-bottom: 16px; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-wrap { max-width: 750px; margin: 60px auto 0; }
.faq-item { border-bottom: 1px solid rgba(0,0,0,0.08); overflow: hidden; }
.faq-q { display: flex; justify-content: space-between; align-items: center; padding: 22px 4px; cursor: pointer; font-size: 16px; font-weight: 600; color: var(--dark); transition: color 0.3s; user-select: none; }
.faq-q:hover { color: var(--forest); }
.faq-q.active { color: var(--forest); }
.faq-icon { width: 32px; height: 32px; border-radius: 50%; background: var(--forest); color: white; display: flex; align-items: center; justify-content: center; font-size: 18px; font-weight: 300; flex-shrink: 0; transition: all 0.3s ease; }
.faq-icon.active { background: var(--gold); transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s ease; color: #666; line-height: 1.8; font-size: 15px; }
.faq-a.open { max-height: 200px; padding: 0 4px 22px; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-section { background: var(--dark); padding: 100px 60px; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; max-width: 1200px; margin: 0 auto; align-items: start; }
.contact-text .section-title { color: white; }
.contact-text .section-sub { color: rgba(255,255,255,0.5); }
.contact-details { margin-top: 40px; display: flex; flex-direction: column; gap: 20px; }
.contact-detail { display: flex; align-items: center; gap: 16px; color: rgba(255,255,255,0.75); font-size: 15px; }
.contact-icon { width: 44px; height: 44px; background: rgba(201,151,58,0.15); border: 1px solid rgba(201,151,58,0.3); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.contact-form { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 24px; padding: 40px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; color: rgba(255,255,255,0.6); font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 8px; font-weight: 500; }
.form-group input,
.form-group textarea,
.form-group select { width: 100%; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: 10px; padding: 14px 18px; color: white; font-size: 15px; font-family: 'DM Sans', sans-serif; outline: none; transition: all 0.3s ease; resize: none; }
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--gold); background: rgba(201,151,58,0.06); }
.form-group select option { background: #1a2a20; color: white; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-submit { width: 100%; background: var(--gold); color: var(--dark); border: none; padding: 16px; border-radius: 10px; font-size: 14px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; cursor: pointer; font-family: 'DM Sans', sans-serif; transition: all 0.3s ease; }
.form-submit:hover { background: var(--gold-light); box-shadow: 0 10px 30px rgba(201,151,58,0.4); }
.form-submit.success { background: #2d7a5f; }
.form-msg { text-align: center; margin-top: 14px; font-size: 14px; color: var(--gold); min-height: 20px; opacity: 0; transition: opacity 0.3s; }
.form-msg.show { opacity: 1; }

/* ============================================================
   FOOTER
   ============================================================ */
footer { background: #060f0b; padding: 60px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; max-width: 1200px; margin: 0 auto 40px; }
.footer-brand .logo { display: inline-block; margin-bottom: 16px; }
.footer-brand p { color: rgba(255,255,255,0.45); font-size: 14px; line-height: 1.7; max-width: 240px; }
.footer-col h4 { color: white; font-size: 14px; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 20px; font-weight: 600; }
.footer-col a { display: block; color: rgba(255,255,255,0.45); text-decoration: none; font-size: 14px; margin-bottom: 10px; transition: color 0.3s; }
.footer-col a:hover { color: var(--gold); }
.footer-badges { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 20px; }
.footer-badge { border: 1px solid rgba(201,151,58,0.3); color: rgba(201,151,58,0.8); padding: 6px 14px; border-radius: 20px; font-size: 11px; letter-spacing: 1px; text-transform: uppercase; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding-top: 30px; max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
.footer-bottom p { color: rgba(255,255,255,0.3); font-size: 13px; }
.footer-social { display: flex; gap: 14px; }
.social-link { width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; text-decoration: none; font-size: 16px; transition: all 0.3s ease; }
.social-link:hover { border-color: var(--gold); background: rgba(201,151,58,0.1); }

/* ============================================================
   CHATBOT
   ============================================================ */
.chatbot { position: fixed; bottom: 30px; right: 30px; z-index: 500; }
.chat-toggle { width: 60px; height: 60px; border-radius: 50%; background: var(--forest); border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 26px; box-shadow: 0 8px 25px rgba(15,76,58,0.5); transition: all 0.3s ease; position: relative; z-index: 2; }
.chat-toggle:hover { transform: scale(1.1); box-shadow: 0 12px 35px rgba(15,76,58,0.6); }
.chat-toggle .notify { position: absolute; top: -2px; right: -2px; width: 18px; height: 18px; background: var(--gold); border-radius: 50%; border: 2px solid white; font-size: 10px; font-weight: 700; color: var(--dark); display: flex; align-items: center; justify-content: center; }
.chat-window { position: absolute; bottom: 75px; right: 0; width: 340px; background: white; border-radius: 20px; box-shadow: 0 20px 60px rgba(0,0,0,0.2); overflow: hidden; transform: scale(0.8) translateY(20px); transform-origin: bottom right; opacity: 0; pointer-events: none; transition: all 0.3s cubic-bezier(0.34,1.56,0.64,1); }
.chat-window.open { transform: scale(1) translateY(0); opacity: 1; pointer-events: all; }
.chat-hdr { background: linear-gradient(135deg, var(--forest), var(--forest-light)); padding: 20px; display: flex; justify-content: space-between; align-items: center; }
.chat-hdr-info { display: flex; align-items: center; gap: 12px; }
.chat-avatar { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.2); display: flex; align-items: center; justify-content: center; font-size: 20px; }
.chat-hdr-info div strong { display: block; color: white; font-size: 15px; }
.chat-hdr-info div span { font-size: 11px; color: rgba(255,255,255,0.7); }
.chat-online { width: 8px; height: 8px; background: #4ade80; border-radius: 50%; animation: blink 2s ease infinite; }
.chat-close-btn { background: none; border: none; color: rgba(255,255,255,0.7); font-size: 20px; cursor: pointer; transition: color 0.2s; }
.chat-close-btn:hover { color: white; }
.chat-msgs { height: 260px; overflow-y: auto; padding: 16px; display: flex; flex-direction: column; gap: 10px; }
.chat-msgs::-webkit-scrollbar { width: 3px; }
.chat-msgs::-webkit-scrollbar-thumb { background: rgba(0,0,0,0.1); }
/* ============================================================
   CHATBOT — Improved bubble readability
   Add/replace in your css/styles.css chatbot section
   ============================================================ */

.chat-msgs {
  height: 280px;
  overflow-y: auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.msg {
  max-width: 88%;
  padding: 12px 16px;
  border-radius: 18px;
  font-size: 14.5px;
  line-height: 1.6;
  animation: msgIn 0.3s ease;
  word-break: break-word;
}

.msg.bot {
  background: #f2f2f2;
  color: #1a1a1a;
  border-bottom-left-radius: 4px;
  align-self: flex-start;
  font-size: 14.5px;
  line-height: 1.65;
}

.msg.user {
  background: var(--forest);
  color: white;
  border-bottom-right-radius: 4px;
  align-self: flex-end;
  font-size: 14px;
  line-height: 1.5;
}

.msg strong {
  font-weight: 600;
  color: #0f4c3a;
}

.msg.user strong {
  color: #c9973a;
}

.msg.user { background: var(--forest); color: white; border-bottom-right-radius: 4px; align-self: flex-end; }
.chat-quick { padding: 8px 16px; display: flex; gap: 8px; flex-wrap: wrap; border-top: 1px solid #f0f0f0; }
.quick-btn { background: none; border: 1px solid var(--forest); color: var(--forest); border-radius: 20px; padding: 5px 12px; font-size: 12px; cursor: pointer; transition: all 0.2s; font-family: 'DM Sans', sans-serif; }
.quick-btn:hover { background: var(--forest); color: white; }
.chat-inp { display: flex; border-top: 1px solid #f0f0f0; }
.chat-inp input { flex: 1; border: none; padding: 14px 16px; font-size: 14px; font-family: 'DM Sans', sans-serif; outline: none; }
.chat-send-btn { background: var(--forest); border: none; color: white; width: 50px; cursor: pointer; font-size: 18px; transition: background 0.2s; }
.chat-send-btn:hover { background: var(--forest-light); }

/* ============================================================
   CHATBOT ADDITIONS
   ============================================================ */
.chat-menu {
  padding: 12px 14px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-top: 1px solid #f0f0f0;
}
.chat-menu::-webkit-scrollbar { width: 3px; }
.chat-menu::-webkit-scrollbar-thumb { background: rgba(0,0,0,0.1); }
.chat-hello-btn {
  width: 100%;
  background: linear-gradient(135deg, var(--forest), var(--forest-light));
  color: white;
  border: none;
  border-radius: 12px;
  padding: 13px 20px;
  font-size: 15px;
  font-weight: 600;
  font-family: 'DM Sans', sans-serif;
  cursor: pointer;
  letter-spacing: 0.3px;
  transition: all 0.25s ease;
  box-shadow: 0 4px 14px rgba(15, 76, 58, 0.25);
}
.chat-menu-btn:hover {
  background: var(--forest);
  color: white;
  border-color: var(--forest);
  transform: translateX(4px);
}
.chat-hello-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(15, 76, 58, 0.35);
  background: linear-gradient(135deg, var(--forest-light), var(--forest));
}
 
.chat-hello-btn:active {
  transform: scale(0.97);
}
.typing-indicator {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 12px 16px !important;
  width: fit-content;
}
.typing-indicator span {
  display: inline-block;
  width: 7px;
  height: 7px;
  background: #aaa;
  border-radius: 50%;
  animation: typingBounce 1.2s ease infinite;
}
.typing-indicator span:nth-child(2) { animation-delay: 0.2s; }
.typing-indicator span:nth-child(3) { animation-delay: 0.4s; }
@keyframes typingBounce {
  0%, 60%, 100% { transform: translateY(0); }
  30%           { transform: translateY(-6px); }
}

/* ============================================================
   TOAST
   ============================================================ */
.toast { position: fixed; bottom: 100px; left: 50%; transform: translateX(-50%) translateY(20px); background: var(--forest); color: white; padding: 14px 28px; border-radius: 50px; font-size: 14px; font-weight: 500; box-shadow: 0 8px 30px rgba(0,0,0,0.25); opacity: 0; transition: all 0.4s ease; pointer-events: none; z-index: 9000; display: flex; align-items: center; gap: 10px; }
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ============================================================
   MODAL
   ============================================================ */
.modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.7); backdrop-filter: blur(8px); z-index: 8000; display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity 0.3s; }
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal { background: white; border-radius: 24px; max-width: 520px; width: 90%; padding: 40px; position: relative; transform: translateY(30px) scale(0.95); transition: all 0.3s cubic-bezier(0.34,1.1,0.64,1); }
.modal-overlay.open .modal { transform: translateY(0) scale(1); }
.modal-close { position: absolute; top: 20px; right: 20px; background: #f0f0f0; border: none; width: 36px; height: 36px; border-radius: 50%; font-size: 18px; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background 0.2s; }
.modal-close:hover { background: #e0e0e0; }
.modal h3 { font-family: 'Playfair Display', serif; font-size: 26px; margin-bottom: 8px; }
.modal p { color: #666; font-size: 15px; line-height: 1.6; margin-bottom: 24px; }
.modal .product-specs { margin-bottom: 24px; }
.modal-actions { display: flex; gap: 12px; }

/* ============================================================
   UTILITIES
   ============================================================ */
.reveal { opacity: 0; transform: translateY(30px); transition: all 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.back-top { position: fixed; bottom: 100px; right: 30px; width: 44px; height: 44px; border-radius: 50%; background: var(--gold); border: none; color: var(--dark); font-size: 20px; cursor: pointer; display: flex; align-items: center; justify-content: center; box-shadow: 0 6px 20px rgba(201,151,58,0.4); opacity: 0; pointer-events: none; transition: all 0.3s ease; z-index: 400; }
.back-top.show { opacity: 1; pointer-events: all; }
.back-top:hover { transform: translateY(-3px); box-shadow: 0 10px 28px rgba(201,151,58,0.5); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  header { padding: 15px 24px; }
  header.scrolled { padding: 12px 24px; }
  nav { display: none; }
  nav.open { display: flex; flex-direction: column; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(10,40,28,0.98); align-items: center; justify-content: center; gap: 16px; z-index: 999; }
  nav.open a { font-size: 22px; letter-spacing: 2px; }
  .hamburger { display: flex; }
  section { padding: 70px 24px; }
  .about-grid, .products-grid, .contact-grid { grid-template-columns: 1fr; }
  .testimonials-track { grid-template-columns: 1fr; }
  .stats-grid { flex-direction: column; gap: 10px; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gallery-item:first-child { grid-column: span 2; height: 220px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero h1 { font-size: 42px; }
  .form-row { grid-template-columns: 1fr; }
  .about-img-card { right: 0; bottom: -20px; }
  .location-section { padding: 70px 24px 60px; }
  .globe-wrap { max-width: 340px; }
  .globe-legend { gap: 16px; flex-direction: column; align-items: center; }
  .map-link-btn { margin-left: 0; margin-top: 8px; }
}
