/* ============================================
   ENJOYBIZ Group - Corporate Website Styles
   High-end International Business Group
   ============================================ */

/* === CSS Custom Properties === */
:root {
  --primary-dark: #1a1a2e;
  --primary-navy: #16213e;
  --accent-gold: #c9a96e;
  --accent-gold-light: #d4b87a;
  --accent-silver: #8a8a8a;
  --text-white: #ffffff;
  --text-light: #e8e8e8;
  --text-muted: #a0a0a0;
  --bg-white: #ffffff;
  --bg-light: #f8f9fa;
  --bg-gray: #f0f0f0;
  --bg-dark: #0f0f1a;
  --border-light: rgba(255,255,255,0.08);
  --border-gray: #e0e0e0;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
  --shadow-gold: 0 4px 20px rgba(201,169,110,0.15);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --container-max: 1280px;
  --section-padding: 100px 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;
}
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.2;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }
.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-header h2 {
  color: var(--text-white);
  margin-bottom: 16px;
  position: relative;
  display: inline-block;
}
.section-header h2::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  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: 600px;
  margin: 24px auto 0;
}
.section-light {
  background: var(--bg-light);
  color: #333;
}
.section-light .section-header h2 { color: #1a1a2e; }
.section-light .section-header p { color: #666; }

/* === Buttons === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 36px;
  border-radius: 4px;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: none;
  transition: var(--transition);
}
.btn-primary {
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-light));
  color: var(--primary-dark);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}
.btn-outline {
  border: 1.5px solid var(--accent-gold);
  color: var(--accent-gold);
  background: transparent;
}
.btn-outline:hover {
  background: var(--accent-gold);
  color: var(--primary-dark);
}
.btn-white {
  background: #fff;
  color: var(--primary-dark);
}
.btn-white:hover {
  background: var(--accent-gold);
  color: var(--primary-dark);
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(15, 15, 26, 0.95);
  backdrop-filter: blur(20px);
  padding: 14px 0;
  box-shadow: 0 2px 30px rgba(0,0,0,0.3);
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-white);
  letter-spacing: 0.05em;
}
.nav-logo span { color: var(--accent-gold); }
.nav-logo-img { height: 40px; width: auto; }
.brand-card-logo {
  height: 48px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
  transition: var(--transition);
}
.brand-card:hover .brand-card-logo {
  filter: brightness(1) invert(0);
}
.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: 36px;
}
.nav-links a {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  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: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-navy) 50%, #0a1628 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.08) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(22,33,62,0.6) 0%, transparent 50%);
}
.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  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),
    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-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(201,169,110,0.1);
  border: 1px solid rgba(201,169,110,0.2);
  border-radius: 50px;
  color: var(--accent-gold);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hero h1 {
  color: var(--text-white);
  margin-bottom: 24px;
  font-weight: 700;
}
.hero h1 .highlight { color: var(--accent-gold); }
.hero-desc {
  font-size: 1.15rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 600px;
}
.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-stats {
  display: flex;
  gap: 60px;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid var(--border-light);
}
.hero-stat h3 {
  color: var(--accent-gold);
  font-size: 2.5rem;
  font-weight: 700;
}
.hero-stat p {
  color: var(--text-muted);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 4px;
}

/* ============================================
   BRANDS SECTION
   ============================================ */
.brands-section { padding: var(--section-padding); }
.brands-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.brand-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  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(-4px);
  background: rgba(255,255,255,0.06);
  border-color: rgba(201,169,110,0.2);
  box-shadow: var(--shadow-gold);
}
.brand-card:hover::before { opacity: 1; }
.brand-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(201,169,110,0.15), rgba(201,169,110,0.05));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: var(--accent-gold);
}
.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: 20px;
}
.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: rgba(255,255,255,0.02);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  transition: var(--transition);
}
.advantage-card:hover {
  background: rgba(255,255,255,0.05);
  border-color: rgba(201,169,110,0.15);
  transform: translateY(-4px);
}
.advantage-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 24px;
  background: linear-gradient(135deg, rgba(201,169,110,0.12), rgba(201,169,110,0.04));
  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: 180px 0 100px;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-navy));
  position: relative;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(201,169,110,0.06) 0%, transparent 60%);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: var(--text-white); margin-bottom: 16px; }
.page-hero p { color: var(--text-muted); font-size: 1.15rem; max-width: 600px; }

.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: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.timeline-section { padding: 80px 0; }
.timeline {
  position: relative;
  max-width: 800px;
  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;
}
.timeline-content {
  width: 42%;
  padding: 24px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-light);
  border-radius: 12px;
}
.timeline-year {
  color: var(--accent-gold);
  font-weight: 700;
  font-size: 1.1rem;
  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: 80px 0; }
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.value-card {
  padding: 40px 28px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  text-align: center;
  transition: var(--transition);
}
.value-card:hover {
  background: rgba(255,255,255,0.06);
  transform: translateY(-4px);
}
.value-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
}
.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: 60px 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: 16px;
  overflow: hidden;
  position: relative;
}
.business-image img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  transition: var(--transition);
}
.business-image:hover img { transform: scale(1.03); }
.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.08);
  border: 1px solid rgba(201,169,110,0.15);
  border-radius: 6px;
  color: var(--accent-gold);
  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: rgba(255,255,255,0.03);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  margin-bottom: 32px;
  transition: var(--transition);
}
.brand-detail-card:hover {
  border-color: rgba(201,169,110,0.2);
  box-shadow: var(--shadow-gold);
}
.brand-detail-visual {
  height: 300px;
  background: linear-gradient(135deg, rgba(201,169,110,0.08), rgba(22,33,62,0.3));
  border-radius: 12px;
  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.08);
  border-radius: 50px;
  color: var(--accent-gold);
  font-size: 0.8rem;
  font-weight: 500;
}
.brand-detail-social {
  display: flex;
  gap: 12px;
}
.brand-detail-social a {
  width: 40px;
  height: 40px;
  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.9rem;
}
.brand-detail-social a:hover {
  background: var(--accent-gold);
  color: var(--primary-dark);
  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: rgba(255,255,255,0.03);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  overflow: hidden;
  transition: var(--transition);
}
.news-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201,169,110,0.2);
  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.05); }
.news-body {
  padding: 24px;
}
.news-date {
  color: var(--accent-gold);
  font-size: 0.8rem;
  font-weight: 500;
  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: 500;
  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: 32px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  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: 44px;
  height: 44px;
  background: rgba(201,169,110,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-gold);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.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: 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: 1.1rem;
}
.contact-social a:hover {
  background: var(--accent-gold);
  color: var(--primary-dark);
  border-color: var(--accent-gold);
}
.contact-form-card {
  padding: 40px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-light);
  border-radius: 12px;
}
.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.85rem;
  margin-bottom: 8px;
  font-weight: 500;
  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.05);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  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.08);
}
.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='%23a0a0a0' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}
.form-group select option { background: var(--primary-dark); }
.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), var(--accent-gold-light));
  color: var(--primary-dark);
  font-weight: 600;
  font-size: 1rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-primary);
  letter-spacing: 0.02em;
}
.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--bg-dark);
  border-top: 1px solid var(--border-light);
  padding: 60px 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: 8px;
  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;
}
.footer-social a:hover {
  background: var(--accent-gold);
  color: var(--primary-dark);
  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); }

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s 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: rgba(255,255,255,0.03);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  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.1);
  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: 8px;
  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: 60px 0; --container-max: 100%; }
  .container { padding: 0 20px; }
  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15,15,26,0.98);
    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: 140px 0 60px; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2rem; }
  .section-header h2 { font-size: 1.6rem; }
  .brand-card { padding: 28px 20px; }
  .contact-form-card { padding: 24px; }
}
