/* ============================================
   HALAS GROUP — Main Stylesheet
   Light-first with dark mode toggle
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

/* --- Light Theme (Default) --- */
:root {
  --bg-primary: #f8f7f4;
  --bg-surface: #ffffff;
  --bg-card: #ffffff;
  --bg-card-hover: #f3f2ef;
  --accent: #e3c776;
  --accent-light: #ebd48f;
  --accent-dark: #c9a84e;
  --text-primary: #1a1a1a;
  --text-secondary: #5c6370;
  --text-muted: #9ca3af;
  --border: rgba(0, 0, 0, 0.08);
  --border-accent: rgba(227, 199, 118, 0.35);
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.06);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.08);

  --navy: #242831;
  --navy-light: #2e3340;
  --navy-deep: #1a1e26;
  --hero-bg-1: #242831;
  --hero-bg-2: #1a1e26;
  --hero-accent-glow: rgba(227, 199, 118, 0.1);
  --hero-grid: rgba(255, 255, 255, 0.025);
  --noise-opacity: 0.012;
  --header-bg: transparent;
  --director-bg: #f5f2eb;

  --font-display: 'Poppins', sans-serif;
  --font-body: 'Poppins', sans-serif;
  --radius: 8px;
  --radius-lg: 16px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --max-width: 1200px;
  --header-height: 80px;
}

/* --- Dark Theme --- */
[data-theme="dark"] {
  --bg-primary: #080a0e;
  --bg-surface: #0f1318;
  --bg-card: #161b22;
  --bg-card-hover: #1c2230;
  --accent: #e3c776;
  --accent-light: #ebd48f;
  --accent-dark: #c9a84e;
  --text-primary: #f0f0f0;
  --text-secondary: #8b95a5;
  --text-muted: #555e6e;
  --border: rgba(255, 255, 255, 0.07);
  --border-accent: rgba(227, 199, 118, 0.2);
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.2);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.3);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.4);

  --navy: #242831;
  --navy-light: #2e3340;
  --navy-deep: #1a1e26;
  --hero-bg-1: #12151b;
  --hero-bg-2: #080a0e;
  --hero-accent-glow: rgba(227, 199, 118, 0.07);
  --hero-grid: rgba(255, 255, 255, 0.015);
  --noise-opacity: 0.025;
  --header-bg: transparent;
  --director-bg: #0d1117;
}

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--bg-primary);
  transition: background var(--transition), color var(--transition);
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: var(--noise-opacity);
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ============================================
   UTILITIES
   ============================================ */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section-pad {
  padding: 100px 0;
}

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--accent-dark);
  margin-bottom: 16px;
  position: relative;
  padding-left: 36px;
}

.section-label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 24px;
  height: 1px;
  background: var(--accent);
}

.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  letter-spacing: -0.3px;
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-desc {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 560px;
}

.accent {
  color: var(--accent-dark);
}

[data-theme="dark"] .accent {
  color: var(--accent);
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* ============================================
   HEADER — Transparent to solid on scroll
   ============================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
  background: transparent;
  transition: background 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
  border-bottom: 1px solid transparent;
}

/* Gold accent line at very top */
.site-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.site-header.scrolled {
  background: rgba(36, 40, 49, 0.97);
  backdrop-filter: blur(16px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
  border-bottom-color: rgba(227, 199, 118, 0.08);
}

.site-header.scrolled::before {
  opacity: 1;
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 72px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: color var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width var(--transition);
  border-radius: 1px;
}

.nav-links a:hover,
.nav-links a.active {
  color: #ffffff;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 20px;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Language Toggle */
.lang-toggle {
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.7);
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  width: 36px;
  height: 36px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
}

.lang-toggle:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(227, 199, 118, 0.06);
}

/* Theme Toggle */
.theme-toggle {
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.6);
  width: 36px;
  height: 36px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition);
}

.theme-toggle:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(227, 199, 118, 0.06);
}

.icon-sun { display: none; }
.icon-moon { display: block; }

[data-theme="dark"] .icon-sun { display: block; }
[data-theme="dark"] .icon-moon { display: none; }

/* Hamburger */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.menu-toggle span {
  width: 22px;
  height: 2px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 2px;
  transition: all var(--transition);
}

.menu-toggle.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   HERO — Left-aligned layout
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, var(--hero-bg-1) 0%, var(--hero-bg-2) 100%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--hero-grid) 1px, transparent 1px),
    linear-gradient(90deg, var(--hero-grid) 1px, transparent 1px);
  background-size: 80px 80px;
}

.hero-bg::before {
  content: '';
  position: absolute;
  top: 30%;
  right: 10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--hero-accent-glow) 0%, transparent 70%);
  pointer-events: none;
}

/* Decorative vertical gold line */
.hero-bg::after {
  content: '';
  position: absolute;
  top: 15%;
  right: 35%;
  width: 1px;
  height: 70%;
  background: linear-gradient(180deg, transparent, rgba(227, 199, 118, 0.15), transparent);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  padding: 140px 24px 100px;
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-content {
  text-align: left;
}

.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-visual img {
  max-width: 320px;
  height: auto;
  filter: drop-shadow(0 0 60px rgba(227, 199, 118, 0.12));
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  letter-spacing: -0.5px;
  line-height: 1.15;
  margin-bottom: 24px;
  color: #ffffff;
  max-width: 680px;
}

.hero-title .accent {
  color: var(--accent);
}

.hero-desc {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.55);
  max-width: 520px;
  margin: 0 0 44px;
  line-height: 1.75;
}

.hero-btns {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 34px;
  background: var(--accent);
  color: var(--navy);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 1px;
  border-radius: var(--radius);
  transition: all var(--transition);
}

.hero-cta:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(227, 199, 118, 0.25);
}

.hero-cta svg {
  width: 18px;
  height: 18px;
  transition: transform var(--transition);
}

.hero-cta:hover svg {
  transform: translateX(4px);
}

.btn-outline-hero {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 34px;
  background: transparent;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 1px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.18);
  transition: all var(--transition);
}

.btn-outline-hero:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(227, 199, 118, 0.06);
  transform: translateY(-2px);
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-section {
  background: var(--bg-primary);
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-text .section-desc {
  margin-bottom: 0;
}

.about-deco {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-deco-box {
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-lg);
  padding: 60px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, rgba(227,199,118,0.04) 0%, transparent 100%);
}

.about-deco-box img {
  max-width: 180px;
  height: auto;
  opacity: 0.85;
}

[data-theme="dark"] .about-deco-box img {
  filter: brightness(1.1);
}

.about-deco-box::before {
  content: '';
  position: absolute;
  top: -12px;
  right: -12px;
  width: 60px;
  height: 60px;
  border-top: 2px solid var(--accent);
  border-right: 2px solid var(--accent);
  border-radius: 0 var(--radius) 0 0;
}

.about-deco-box::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: -12px;
  width: 60px;
  height: 60px;
  border-bottom: 2px solid var(--accent);
  border-left: 2px solid var(--accent);
  border-radius: 0 0 0 var(--radius);
}

/* ============================================
   DIRECTOR'S MESSAGE
   ============================================ */
.director-section {
  background: var(--director-bg);
  position: relative;
  overflow: hidden;
}

.director-inner {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.director-quote-mark {
  position: absolute;
  top: -20px;
  left: -10px;
  font-family: var(--font-display);
  font-size: 10rem;
  line-height: 1;
  color: var(--accent);
  opacity: 0.1;
  pointer-events: none;
  user-select: none;
}

.director-blockquote {
  border-left: 2px solid var(--accent);
  padding-left: 32px;
  margin: 0;
}

.director-blockquote p {
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1.9;
  color: var(--text-secondary);
  margin-bottom: 16px;
  font-style: italic;
}

.director-blockquote p:last-of-type {
  margin-bottom: 32px;
}

.director-signature {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--accent-dark);
  letter-spacing: 0.3px;
  font-style: normal;
}

[data-theme="dark"] .director-signature {
  color: var(--accent);
}

/* ============================================
   OUR COMPANIES
   ============================================ */
.companies-section {
  background: var(--bg-primary);
}

.companies-header {
  text-align: center;
  margin-bottom: 60px;
}

.companies-header .section-label {
  padding-left: 0;
}

.companies-header .section-label::before {
  display: none;
}

.companies-header .section-desc {
  margin: 0 auto;
}

.companies-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.company-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px 32px;
  text-align: center;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

/* Left accent bar on hover instead of top */
.company-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--accent), var(--accent-dark));
  opacity: 0;
  transition: opacity var(--transition);
}

.company-card:hover {
  border-color: var(--border-accent);
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(227, 199, 118, 0.1);
}

.company-card:hover::before {
  opacity: 1;
}

.company-card-logo {
  width: 100px;
  height: 100px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.company-card-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.company-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.company-card p {
  color: var(--text-secondary);
  font-size: 0.88rem;
  line-height: 1.65;
  margin-bottom: 24px;
}

.company-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  background: var(--navy);
  color: var(--accent);
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.8px;
  border-radius: var(--radius);
  transition: all var(--transition);
}

.company-btn:hover {
  background: var(--navy-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(36, 40, 49, 0.25);
}

[data-theme="dark"] .company-btn {
  background: var(--accent);
  color: var(--navy);
}

[data-theme="dark"] .company-btn:hover {
  background: var(--accent-light);
  box-shadow: 0 4px 16px rgba(227, 199, 118, 0.2);
}

.company-btn svg {
  width: 14px;
  height: 14px;
  transition: transform var(--transition);
}

.company-btn:hover svg {
  transform: translate(2px, -2px);
}

/* ============================================
   WHY HALAS (VALUES) — Horizontal card layout
   ============================================ */
.values-section {
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.values-header {
  text-align: center;
  margin-bottom: 60px;
}

.values-header .section-label {
  padding-left: 0;
}

.values-header .section-label::before {
  display: none;
}

.values-header .section-desc {
  margin: 0 auto;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.value-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}

.value-card:hover {
  border-color: var(--border-accent);
  background: var(--bg-card-hover);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.value-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: var(--radius-lg);
  background: rgba(227, 199, 118, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-dark);
}

[data-theme="dark"] .value-icon {
  color: var(--accent);
}

.value-icon svg {
  width: 24px;
  height: 24px;
}

.value-content h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 6px;
}

.value-content p {
  color: var(--text-secondary);
  font-size: 0.85rem;
  line-height: 1.6;
}

/* ============================================
   STATS — With vertical dividers
   ============================================ */
.stats {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.stats::before {
  content: '';
  position: absolute;
  top: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(227, 199, 118, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.stats::after {
  content: '';
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(227, 199, 118, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.stats-grid {
  display: flex;
  justify-content: center;
  text-align: center;
}

.stat-item {
  padding: 20px 48px;
  position: relative;
}

/* Vertical gold divider between stats */
.stat-item + .stat-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 48px;
  background: linear-gradient(180deg, transparent, rgba(227, 199, 118, 0.3), transparent);
}

.stat-number {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  letter-spacing: -1px;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 600;
  letter-spacing: 1.5px;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  background: var(--bg-primary);
  position: relative;
  overflow: hidden;
}

.cta-box {
  background: linear-gradient(135deg, rgba(227,199,118,0.06) 0%, rgba(227,199,118,0.02) 100%);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-lg);
  padding: 80px;
  text-align: center;
  position: relative;
}

[data-theme="dark"] .cta-box {
  background: linear-gradient(135deg, rgba(227,199,118,0.1) 0%, rgba(227,199,118,0.02) 100%);
}

.cta-box::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  background-image:
    linear-gradient(var(--hero-grid) 1px, transparent 1px),
    linear-gradient(90deg, var(--hero-grid) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.cta-box .section-title,
.cta-box .section-desc,
.cta-box .btn-primary {
  position: relative;
  z-index: 1;
}

.cta-box .section-title {
  margin-bottom: 16px;
}

.cta-box .section-desc {
  margin: 0 auto 36px;
  text-align: center;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 34px;
  background: var(--navy);
  color: var(--accent);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 1px;
  border-radius: var(--radius);
  transition: all var(--transition);
}

.btn-primary:hover {
  background: var(--navy-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(36, 40, 49, 0.3);
}

[data-theme="dark"] .btn-primary {
  background: var(--accent);
  color: var(--navy);
}

[data-theme="dark"] .btn-primary:hover {
  background: var(--accent-light);
  box-shadow: 0 8px 30px rgba(227, 199, 118, 0.2);
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--navy);
  border-top: 1px solid rgba(227, 199, 118, 0.08);
  padding: 80px 0 0;
  color: rgba(255, 255, 255, 0.85);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 60px;
}

.footer-brand .logo {
  margin-bottom: 16px;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.88rem;
  line-height: 1.65;
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.4);
  transition: all var(--transition);
}

.footer-social a:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(227, 199, 118, 0.06);
}

.footer-social a svg {
  width: 16px;
  height: 16px;
}

.footer-col h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  color: var(--accent);
  margin-bottom: 20px;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a,
.footer-col ul li span {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.88rem;
  transition: color var(--transition);
}

.footer-col ul li a:hover {
  color: var(--accent);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.88rem;
}

.footer-contact-item:hover {
  color: var(--accent);
}

.footer-contact-item svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--accent);
}

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

.footer-bottom p {
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.78rem;
}

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

  .companies-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .about-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .stats-grid {
    flex-wrap: wrap;
  }

  .stat-item {
    padding: 20px 32px;
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 64px;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(36, 40, 49, 0.97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 28px;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    font-size: 0.95rem;
  }

  .menu-toggle {
    display: flex;
  }

  .hero-inner {
    padding-top: 100px;
    padding-bottom: 60px;
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content {
    text-align: center;
  }

  .hero-title {
    font-size: clamp(1.8rem, 7vw, 2.8rem);
    max-width: none;
  }

  .hero-desc {
    max-width: none;
    margin: 0 auto 36px;
  }

  .hero-btns {
    justify-content: center;
  }

  .hero-visual {
    display: none;
  }

  .hero-bg::after {
    display: none;
  }

  .companies-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .value-card {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .stats-grid {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }

  .stat-item + .stat-item::before {
    width: 48px;
    height: 1px;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, transparent, rgba(227, 199, 118, 0.3), transparent);
  }

  .stat-item {
    padding: 16px 20px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .cta-box {
    padding: 40px 24px;
  }

  .section-pad {
    padding: 60px 0;
  }

  .logo-img {
    height: 52px;
  }

  .director-blockquote {
    padding-left: 20px;
  }

  .director-quote-mark {
    font-size: 6rem;
    top: -10px;
    left: -5px;
  }

  .about-deco-box {
    padding: 40px;
  }

  .about-deco-box img {
    max-width: 140px;
  }
}
