/* ============================================
   ENJOYBIZ Group — Refreshed Corporate Design
   Palette: deep ink navy + champagne gold
   ============================================ */

/* === CSS Custom Properties === */
:root {
  --primary-dark: #0b1020;
  --primary-navy: #111a33;
  --primary-deep: #0a0e1a;
  --accent-gold: #c9a96e;
  --accent-gold-light: #e3c894;
  --accent-gold-deep: #a8884d;
  --accent-silver: #9aa0ad;
  --text-white: #ffffff;
  --text-light: #e9ecf3;
  --text-muted: #9aa3b2;
  --bg-white: #ffffff;
  --bg-light: #f6f7fb;
  --bg-gray: #eef0f5;
  --bg-dark: #0a0e1a;
  --border-light: rgba(255,255,255,0.08);
  --border-gold: rgba(201,169,110,0.22);
  --border-gray: #e3e6ee;
  --shadow-sm: 0 2px 10px rgba(0,0,0,0.08);
  --shadow-md: 0 10px 32px rgba(0,0,0,0.10);
  --shadow-lg: 0 24px 64px rgba(0,0,0,0.18);
  --shadow-gold: 0 14px 40px rgba(201,169,110,0.20);
  --radius: 16px;
  --radius-sm: 10px;
  --transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --container-max: 1240px;
  --section-padding: 110px 0;
}

/* === Reset & Base === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-primary);
  color: var(--text-light);
  background: var(--bg-dark);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
.container { max-width: var(--container-max); margin: 0 auto; padding: 0 40px; }

/* === Typography === */
h1, h2, h3, h4, h5, h6 { font-weight: 600; line-height: 1.18; letter-spacing: -0.02em; }
h1 { font-size: clamp(2.6rem, 5.5vw, 4.4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }
.section-header { text-align: center; margin-bottom: 64px; }
.section-header h2 {
  color: var(--text-white);
  margin-bottom: 16px;
  position: relative;
  display: inline-block;
}
.section-header h2::after {
  content: '';
  position: absolute;
  bottom: -14px;
  left: 50%;
  transform: translateX(-50%);
  width: 64px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-gold), var(--accent-gold-light));
  border-radius: 2px;
}
.section-header p { color: var(--text-muted); font-size: 1.1rem; max-width: 620px; margin: 24px auto 0; }
.section-light { background: var(--bg-light); color: #2a2f3a; }
.section-light .section-header h2 { color: #131a2e; }
.section-light .section-header p { color: #67707f; }

/* === Buttons === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 34px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  position: relative;
}
.btn-primary {
  background: linear-gradient(135deg, var(--accent-gold-light), var(--accent-gold));
  color: #1a1408;
  box-shadow: 0 8px 24px rgba(201,169,110,0.28);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 14px 36px rgba(201,169,110,0.42); }
.btn-outline {
  border: 1.5px solid var(--border-gold);
  color: var(--accent-gold);
  background: rgba(201,169,110,0.04);
}
.btn-outline:hover { background: var(--accent-gold); color: #1a1408; transform: translateY(-3px); }
.btn-white { background: #fff; color: #131a2e; }
.btn-white:hover { background: var(--accent-gold); color: #1a1408; }

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

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 22px 0;
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(10,14,26,0.82);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  padding: 14px 0;
  border-bottom: 1px solid var(--border-light);
}
.navbar .container { display: flex; align-items: center; justify-content: space-between; }
.nav-logo { display: flex; align-items: center; gap: 12px; font-size: 1.4rem; font-weight: 800; color: var(--text-white); letter-spacing: 0.04em; }
.nav-logo span { color: var(--accent-gold); }
.nav-logo-img { height: 42px; width: auto; }
.brand-card-logo {
  height: 50px; width: auto; max-width: 170px; object-fit: contain;
  margin-bottom: 18px; filter: brightness(0) invert(1); opacity: 0.92;
  transition: var(--transition);
}
.brand-card:hover .brand-card-logo { filter: brightness(1) invert(0); opacity: 1; }
.brand-detail-logo { height: 80px; width: auto; max-width: 280px; object-fit: contain; margin-bottom: 20px; filter: brightness(0) invert(1); }
.brand-detail-visual img { max-height: 120px; max-width: 80%; object-fit: contain; }
.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-links a {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  position: relative;
  padding: 6px 0;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--accent-gold);
  transition: var(--transition);
}
.nav-links a:hover { color: var(--text-white); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--accent-gold); }
.nav-links a.active::after { width: 100%; }
.hamburger {
  display: none;
  flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none; padding: 8px;
}
.hamburger span { display: block; width: 24px; height: 2px; background: var(--text-white); transition: var(--transition); }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(1200px 600px at 75% -10%, rgba(201,169,110,0.12), transparent 60%),
    radial-gradient(900px 500px at 10% 110%, rgba(40,70,140,0.18), transparent 60%),
    linear-gradient(135deg, var(--primary-deep) 0%, var(--primary-navy) 55%, #0a1426 100%);
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(201,169,110,0.10) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(40,70,140,0.30) 0%, transparent 55%);
}
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  opacity: 0.04;
  background-image:
    linear-gradient(30deg, #fff 12%, transparent 12.5%, transparent 87%, #fff 87.5%, #fff),
    linear-gradient(150deg, #fff 12%, transparent 12.5%, transparent 87%, #fff 87.5%, #fff);
  background-size: 80px 140px;
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  z-index: 0;
  opacity: 0.5;
  animation: float 14s ease-in-out infinite;
}
.hero-orb.one { width: 360px; height: 360px; top: 8%; right: 6%; background: radial-gradient(circle, rgba(201,169,110,0.45), transparent 70%); }
.hero-orb.two { width: 300px; height: 300px; bottom: 6%; left: 8%; background: radial-gradient(circle, rgba(60,110,210,0.40), transparent 70%); animation-delay: -6s; }
@keyframes float { 0%,100% { transform: translateY(0) translateX(0); } 50% { transform: translateY(-30px) translateX(20px); } }

.hero-content { position: relative; z-index: 2; max-width: 820px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 20px;
  background: rgba(201,169,110,0.10);
  border: 1px solid var(--border-gold);
  border-radius: 50px;
  color: var(--accent-gold-light);
  font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  margin-bottom: 26px;
}
.hero h1 { color: var(--text-white); margin-bottom: 22px; font-weight: 800; line-height: 1.08; }
.hero h1 .highlight {
  background: linear-gradient(120deg, var(--accent-gold-light), var(--accent-gold));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-desc { font-size: 1.15rem; color: var(--text-muted); line-height: 1.8; margin-bottom: 38px; max-width: 600px; }
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-stats {
  display: flex; gap: 56px; margin-top: 64px; padding-top: 40px;
  border-top: 1px solid var(--border-light);
}
.hero-stat h3 {
  color: var(--accent-gold-light);
  font-size: 2.6rem; font-weight: 800; line-height: 1;
  background: linear-gradient(120deg, var(--accent-gold-light), var(--accent-gold));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.hero-stat p { color: var(--text-muted); font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.07em; margin-top: 8px; }

/* ============================================
   SECTION DIVIDER
   ============================================ */
.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-gold), transparent);
  max-width: var(--container-max);
  margin: 0 auto;
}

/* ============================================
   BRANDS SECTION (home grid)
   ============================================ */
.brands-section { padding: var(--section-padding); }
.brands-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.brand-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.045), rgba(255,255,255,0.02));
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 40px 32px;
  transition: var(--transition);
  position: relative; overflow: hidden;
}
.brand-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--accent-gold), transparent);
  opacity: 0; transition: var(--transition);
}
.brand-card:hover { transform: translateY(-6px); background: rgba(255,255,255,0.06); border-color: var(--border-gold); box-shadow: var(--shadow-gold); }
.brand-card:hover::before { opacity: 1; }
.brand-card h3 { color: var(--text-white); margin-bottom: 8px; font-size: 1.25rem; }
.brand-card .brand-url { color: var(--accent-gold); font-size: 0.85rem; margin-bottom: 14px; display: block; }
.brand-card p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.7; margin-bottom: 22px; }
.brand-card .btn-outline { padding: 10px 24px; font-size: 0.85rem; }

/* ============================================
   ADVANTAGES SECTION
   ============================================ */
.advantages-section { padding: var(--section-padding); }
.advantages-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.advantage-card {
  text-align: center; padding: 48px 28px;
  background: linear-gradient(180deg, rgba(255,255,255,0.035), rgba(255,255,255,0.015));
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  transition: var(--transition);
}
.advantage-card:hover { background: rgba(255,255,255,0.06); border-color: var(--border-gold); transform: translateY(-6px); box-shadow: var(--shadow-gold); }
.advantage-icon {
  width: 74px; height: 74px; margin: 0 auto 24px;
  background: linear-gradient(135deg, rgba(201,169,110,0.16), rgba(201,169,110,0.04));
  border: 1px solid var(--border-gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; color: var(--accent-gold);
}
.advantage-card h3 { color: var(--text-white); margin-bottom: 12px; font-size: 1.15rem; }
.advantage-card p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.7; }

/* ============================================
   ABOUT PAGE
   ============================================ */
.page-hero {
  padding: 190px 0 100px;
  background:
    radial-gradient(900px 500px at 50% -10%, rgba(201,169,110,0.10), transparent 60%),
    linear-gradient(135deg, var(--primary-deep), var(--primary-navy));
  position: relative; overflow: hidden;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: var(--text-white); margin-bottom: 16px; font-weight: 800; }
.page-hero h1 .highlight {
  background: linear-gradient(120deg, var(--accent-gold-light), var(--accent-gold));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.page-hero p { color: var(--text-muted); font-size: 1.15rem; max-width: 620px; }

.about-content { padding: var(--section-padding); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-text h2 { color: var(--text-white); font-size: 2.2rem; margin-bottom: 24px; }
.about-text h2 .highlight { color: var(--accent-gold); }
.about-text p { color: var(--text-muted); font-size: 1.05rem; line-height: 1.9; margin-bottom: 20px; }
.about-image { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); position: relative; }
.about-image::after { content: ''; position: absolute; inset: 0; box-shadow: inset 0 0 0 1px rgba(255,255,255,0.06); border-radius: var(--radius); }
.about-image img { width: 100%; height: 420px; object-fit: cover; transition: transform 0.6s ease; }
.about-image:hover img { transform: scale(1.04); }

.timeline-section { padding: 90px 0; }
.timeline { position: relative; max-width: 820px; margin: 0 auto; }
.timeline::before {
  content: ''; position: absolute; left: 50%; top: 0; bottom: 0; width: 2px;
  background: linear-gradient(to bottom, transparent, var(--accent-gold), transparent);
  transform: translateX(-50%);
}
.timeline-item { display: flex; align-items: flex-start; margin-bottom: 48px; position: relative; }
.timeline-item:nth-child(odd) { flex-direction: row-reverse; }
.timeline-dot {
  position: absolute; left: 50%; transform: translateX(-50%);
  width: 16px; height: 16px; background: var(--accent-gold);
  border-radius: 50%; border: 3px solid var(--bg-dark); z-index: 1;
  box-shadow: 0 0 0 5px rgba(201,169,110,0.15);
}
.timeline-content {
  width: 42%; padding: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.015));
  border: 1px solid var(--border-light); border-radius: var(--radius);
  transition: var(--transition);
}
.timeline-content:hover { border-color: var(--border-gold); box-shadow: var(--shadow-gold); }
.timeline-year { color: var(--accent-gold); font-weight: 800; font-size: 1.15rem; margin-bottom: 8px; }
.timeline-content h3 { color: var(--text-white); margin-bottom: 8px; font-size: 1.05rem; }
.timeline-content p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.6; }

.values-section { padding: 90px 0; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.value-card {
  padding: 42px 28px;
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.015));
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  text-align: center; transition: var(--transition);
}
.value-card:hover { background: rgba(255,255,255,0.06); transform: translateY(-6px); border-color: var(--border-gold); box-shadow: var(--shadow-gold); }
.value-icon { font-size: 2.6rem; margin-bottom: 18px; }
.value-card h3 { color: var(--text-white); margin-bottom: 12px; }
.value-card p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.7; }

/* ============================================
   BUSINESS PAGE
   ============================================ */
.business-section { padding: var(--section-padding); }
.business-block {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
  padding: 64px 0; border-bottom: 1px solid var(--border-light);
}
.business-block:last-child { border-bottom: none; }
.business-block.reverse { direction: rtl; }
.business-block.reverse > * { direction: ltr; }
.business-image { border-radius: var(--radius); overflow: hidden; position: relative; box-shadow: var(--shadow-md); }
.business-image::after { content: ''; position: absolute; inset: 0; box-shadow: inset 0 0 0 1px rgba(255,255,255,0.06); border-radius: var(--radius); }
.business-image img { width: 100%; height: 340px; object-fit: cover; transition: var(--transition); }
.business-image:hover img { transform: scale(1.05); }
.business-info h3 { color: var(--text-white); font-size: 1.8rem; margin-bottom: 16px; }
.business-info h3 .highlight { color: var(--accent-gold); }
.business-info p { color: var(--text-muted); font-size: 1rem; line-height: 1.8; margin-bottom: 20px; }
.business-features { display: flex; flex-wrap: wrap; gap: 12px; }
.business-feature {
  padding: 8px 16px;
  background: rgba(201,169,110,0.10);
  border: 1px solid var(--border-gold);
  border-radius: 50px;
  color: var(--accent-gold-light);
  font-size: 0.85rem; font-weight: 500;
}

/* ============================================
   BRANDS PAGE
   ============================================ */
.brands-page-section { padding: var(--section-padding); }
.brand-detail-card {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center;
  padding: 48px;
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.015));
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  margin-bottom: 32px; transition: var(--transition);
}
.brand-detail-card:hover { border-color: var(--border-gold); box-shadow: var(--shadow-gold); }
.brand-detail-visual {
  height: 300px;
  background: linear-gradient(135deg, rgba(201,169,110,0.10), rgba(40,70,140,0.18));
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 4rem; color: var(--accent-gold);
}
.brand-detail-info h3 { color: var(--text-white); font-size: 1.6rem; margin-bottom: 8px; }
.brand-detail-info .brand-url { color: var(--accent-gold); font-size: 0.9rem; margin-bottom: 16px; display: block; }
.brand-detail-info p { color: var(--text-muted); font-size: 1rem; line-height: 1.8; margin-bottom: 20px; }
.brand-detail-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
.brand-detail-tags span { padding: 6px 14px; background: rgba(201,169,110,0.10); border: 1px solid var(--border-gold); border-radius: 50px; color: var(--accent-gold-light); font-size: 0.8rem; font-weight: 500; }
.brand-detail-social { display: flex; gap: 12px; }
.brand-detail-social a {
  width: 42px; height: 42px; border-radius: 50%;
  background: rgba(255,255,255,0.05); border: 1px solid var(--border-light);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted); font-size: 0.95rem; transition: var(--transition);
}
.brand-detail-social a:hover { background: var(--accent-gold); color: #1a1408; border-color: var(--accent-gold); }

/* ============================================
   NEWS PAGE
   ============================================ */
.news-section { padding: var(--section-padding); }
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.news-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.015));
  border: 1px solid var(--border-light); border-radius: var(--radius);
  overflow: hidden; transition: var(--transition);
}
.news-card:hover { transform: translateY(-6px); border-color: var(--border-gold); box-shadow: var(--shadow-gold); }
.news-image { height: 200px; overflow: hidden; }
.news-image img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.news-card:hover .news-image img { transform: scale(1.06); }
.news-body { padding: 24px; }
.news-date { color: var(--accent-gold); font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 10px; }
.news-body h3 { color: var(--text-white); font-size: 1.1rem; margin-bottom: 10px; line-height: 1.4; }
.news-body p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.6; margin-bottom: 16px; }
.news-link { color: var(--accent-gold); font-size: 0.85rem; font-weight: 600; display: inline-flex; align-items: center; gap: 6px; }
.news-link:hover { gap: 10px; }

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-section { padding: var(--section-padding); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.contact-info-card {
  padding: 34px;
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.015));
  border: 1px solid var(--border-light); border-radius: var(--radius);
  margin-bottom: 24px;
}
.contact-info-card h3 { color: var(--text-white); font-size: 1.3rem; margin-bottom: 24px; }
.contact-item { display: flex; gap: 16px; margin-bottom: 20px; align-items: flex-start; }
.contact-icon {
  width: 46px; height: 46px; flex-shrink: 0;
  background: rgba(201,169,110,0.12); border: 1px solid var(--border-gold);
  border-radius: 12px; display: flex; align-items: center; justify-content: center;
  color: var(--accent-gold); font-size: 1.1rem;
}
.contact-item-text h4 { color: var(--text-white); font-size: 0.95rem; margin-bottom: 4px; }
.contact-item-text p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.5; }
.contact-social { display: flex; gap: 12px; margin-top: 24px; padding-top: 24px; border-top: 1px solid var(--border-light); }
.contact-social a {
  width: 44px; height: 44px; border-radius: 12px;
  background: rgba(255,255,255,0.05); border: 1px solid var(--border-light);
  display: flex; align-items: center; justify-content: center; color: var(--text-muted); font-size: 1.1rem; transition: var(--transition);
}
.contact-social a:hover { background: var(--accent-gold); color: #1a1408; border-color: var(--accent-gold); }
.contact-form-card { padding: 42px; background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02)); border: 1px solid var(--border-light); border-radius: var(--radius); }
.contact-form-card h3 { color: var(--text-white); font-size: 1.3rem; margin-bottom: 24px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; color: var(--text-muted); font-size: 0.82rem; margin-bottom: 8px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 14px 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-light); border-radius: var(--radius-sm);
  color: var(--text-white); font-family: var(--font-primary); font-size: 0.95rem;
  transition: var(--transition);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--accent-gold); background: rgba(255,255,255,0.07); box-shadow: 0 0 0 4px rgba(201,169,110,0.10);
}
.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%239aa3b2' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center;
}
.form-group select option { background: var(--primary-navy); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-submit {
  width: 100%; padding: 16px;
  background: linear-gradient(135deg, var(--accent-gold-light), var(--accent-gold));
  color: #1a1408; font-weight: 700; font-size: 1rem;
  border: none; border-radius: 50px; cursor: pointer;
  transition: var(--transition); font-family: var(--font-primary); letter-spacing: 0.02em;
  box-shadow: 0 8px 24px rgba(201,169,110,0.28);
}
.form-submit:hover { transform: translateY(-2px); box-shadow: 0 14px 36px rgba(201,169,110,0.42); }
.form-status {
  padding: 12px 16px; border-radius: var(--radius-sm); margin-bottom: 20px; font-size: 0.9rem;
}

/* ============================================
   FOOTER
   ============================================ */
.footer { background: var(--primary-deep); border-top: 1px solid var(--border-light); padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 48px; }
.footer-brand h3 { color: var(--text-white); font-size: 1.4rem; margin-bottom: 16px; letter-spacing: 0.04em; }
.footer-brand h3 span { color: var(--accent-gold); }
.footer-brand p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.7; margin-bottom: 20px; }
.footer h4 { color: var(--text-white); font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 20px; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: var(--text-muted); font-size: 0.9rem; }
.footer-links a:hover { color: var(--accent-gold); }
.footer-social { display: flex; gap: 10px; margin-top: 8px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 10px;
  background: rgba(255,255,255,0.05); border: 1px solid var(--border-light);
  display: flex; align-items: center; justify-content: center; color: var(--text-muted); font-size: 0.95rem; transition: var(--transition);
}
.footer-social a:hover { background: var(--accent-gold); color: #1a1408; border-color: var(--accent-gold); }
.footer-bottom { border-top: 1px solid var(--border-light); padding: 24px 0; display: flex; justify-content: space-between; align-items: center; }
.footer-bottom p { color: var(--text-muted); font-size: 0.85rem; }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { color: var(--text-muted); font-size: 0.85rem; }
.footer-bottom-links a:hover { color: var(--accent-gold); }

/* ============================================
   BRAND MARQUEE (home)
   ============================================ */
.brand-marquee { padding: 56px 0; border-top: 1px solid var(--border-light); border-bottom: 1px solid var(--border-light); background: rgba(255,255,255,0.015); overflow: hidden; }
.brand-marquee .marquee-label { text-align: center; color: var(--text-muted); font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 28px; }
.marquee-track { display: flex; gap: 64px; align-items: center; width: max-content; animation: marquee 28s linear infinite; }
.marquee-track img { height: 40px; width: auto; filter: brightness(0) invert(1); opacity: 0.6; transition: var(--transition); }
.marquee-track img:hover { opacity: 1; }
.marquee-mask { -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============================================
   BACK TO TOP
   ============================================ */
.back-to-top {
  position: fixed; right: 26px; bottom: 26px;
  width: 48px; height: 48px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-gold-light), var(--accent-gold));
  color: #1a1408; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; z-index: 1500;
  box-shadow: 0 8px 24px rgba(201,169,110,0.35);
  opacity: 0; visibility: hidden; transform: translateY(16px);
  transition: var(--transition);
}
.back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { transform: translateY(-4px); box-shadow: 0 14px 36px rgba(201,169,110,0.5); }

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.fade-in { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ============================================
   NEWS PAGE - SIDEBAR
   ============================================ */
.news-layout { display: grid; grid-template-columns: 1fr 320px; gap: 40px; }
.news-sidebar-card { padding: 28px; background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.015)); border: 1px solid var(--border-light); border-radius: var(--radius); margin-bottom: 24px; }
.news-sidebar-card h4 { color: var(--text-white); font-size: 1rem; margin-bottom: 16px; padding-bottom: 12px; border-bottom: 1px solid var(--border-light); }
.category-list li { margin-bottom: 8px; }
.category-list a { display: flex; justify-content: space-between; padding: 8px 0; color: var(--text-muted); font-size: 0.9rem; border-bottom: 1px solid rgba(255,255,255,0.03); }
.category-list a:hover { color: var(--accent-gold); }
.category-list .count { background: rgba(201,169,110,0.12); padding: 2px 8px; border-radius: 4px; font-size: 0.75rem; color: var(--accent-gold); }
.recent-post { display: flex; gap: 12px; margin-bottom: 16px; align-items: center; }
.recent-post-img { width: 60px; height: 60px; border-radius: var(--radius-sm); overflow: hidden; flex-shrink: 0; }
.recent-post-img img { width: 100%; height: 100%; object-fit: cover; }
.recent-post h5 { color: var(--text-white); font-size: 0.85rem; font-weight: 500; margin-bottom: 4px; line-height: 1.3; }
.recent-post span { color: var(--text-muted); font-size: 0.75rem; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .brands-grid { grid-template-columns: repeat(2, 1fr); }
  .advantages-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .business-block { grid-template-columns: 1fr; gap: 32px; }
  .business-block.reverse { direction: ltr; }
  .brand-detail-card { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .news-layout { grid-template-columns: 1fr; }
  .hero-stats { gap: 40px; }
  .timeline::before { left: 20px; }
  .timeline-item { flex-direction: row !important; padding-left: 50px; }
  .timeline-dot { left: 20px; }
  .timeline-content { width: 100%; }
}
@media (max-width: 768px) {
  :root { --section-padding: 64px 0; --container-max: 100%; }
  .container { padding: 0 20px; }
  .nav-links {
    display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(10,14,26,0.98); backdrop-filter: blur(14px);
    flex-direction: column; justify-content: center; align-items: center; gap: 28px; z-index: 999;
  }
  .nav-links.active { display: flex; }
  .nav-links a { font-size: 1.2rem; }
  .hamburger { display: flex; z-index: 1001; }
  .hero-stats { flex-direction: column; gap: 24px; }
  .brands-grid { grid-template-columns: 1fr; }
  .advantages-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .news-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { text-align: center; justify-content: center; }
  .page-hero { padding: 150px 0 64px; }
  .brand-detail-card { padding: 28px; }
}
@media (max-width: 480px) {
  .hero h1 { font-size: 2.1rem; }
  .section-header h2 { font-size: 1.6rem; }
  .brand-card { padding: 28px 20px; }
  .contact-form-card { padding: 24px; }
}
