/* ===================================================
   mGanik Group (MGMI) — Homepage Styles
   Font: General Sans
   Approach: Desktop-first
   =================================================== */

/* --- Font Import --- */
@import url('https://fonts.cdnfonts.com/css/general-sans');

/* --- CSS Variables --- */
:root {
  /* Colors */
  --navy: #0F1C2E;
  --navy-light: #1A2D47;
  --orange: #D4724C;
  --orange-dark: #C0633F;
  --cream: #F5F0E8;
  --cream-light: #FAF7F2;
  --gold: #C9A96E;
  --gold-light: #D4BC8E;
  --teal: #2BBCB3;
  --dark-text: #1A1A2E;
  --body-text: #555555;
  --light-text: #888888;
  --white: #FFFFFF;
  --border-color: #E8E8E8;
  --bg-light: #F9F9F9;

  /* Typography */
  --font-primary: 'General Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Spacing */
  --section-padding: 100px 0;
  --container-width: 1280px;
  --container-padding: 0 40px;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;

  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 30px;
  --radius-full: 50%;
}

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

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

body {
  font-family: var(--font-primary);
  font-size: 16px;
  line-height: 1.6;
  color: var(--body-text);
  background-color: #F5F5F5;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast);
}

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: var(--font-primary);
}

/* --- Layout --- */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: var(--container-padding);
}

.section {
  padding: var(--section-padding);
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  color: var(--dark-text);
  font-weight: 600;
  line-height: 1.2;
}

h1 { font-size: 52px; }
h2 { font-size: 40px; }
h3 { font-size: 28px; }
h4 { font-size: 22px; }
h5 { font-size: 18px; }
h6 { font-size: 16px; }

p {
  line-height: 1.7;
  color: var(--body-text);
}

.section-label {
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-title {
  font-size: 40px;
  font-weight: 600;
  color: var(--dark-text);
  margin-bottom: 16px;
}

.section-title--script {
  font-weight: 600;
}

.section-subtitle {
  font-size: 16px;
  color: var(--body-text);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 500;
  padding: 14px 28px;
  border-radius: var(--radius-xl);
  transition: all var(--transition-base);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background-color: var(--navy);
  color: var(--white);
}

.btn-primary:hover {
  background-color: var(--navy-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(15, 28, 46, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid var(--white);
}

.btn-outline:hover {
  background-color: var(--white);
  color: var(--navy);
}

.btn-outline-dark {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--navy);
}

.btn-outline-dark:hover {
  background-color: var(--navy);
  color: var(--white);
}

.btn-text {
  background: transparent;
  color: var(--navy);
  padding: 8px 0;
  font-weight: 500;
  gap: 6px;
}

.btn-text:hover {
  gap: 12px;
}

.btn-text .arrow {
  transition: transform var(--transition-base);
}

.btn-text:hover .arrow {
  transform: translateX(4px);
}

/* ===================================================
   NAVBAR
   =================================================== */
.navbar {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: var(--white);
  border-bottom: 1px solid var(--border-color);
  transition: box-shadow var(--transition-base);
}

.navbar.scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.navbar__logo {
  flex-shrink: 0;
}

.navbar__logo img {
  height: 36px;
  width: auto;
}

.navbar__links {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}

.navbar__links a {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--body-text);
  position: relative;
  padding: 4px 0;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: color var(--transition-fast);
}

.navbar__links a:hover {
  color: var(--navy);
}

.navbar__links a.active {
  font-weight: 700;
  color: var(--navy);
  position: relative;
}

.navbar__links a.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--navy);
  border-radius: 1px;
}

.navbar__links a.has-dropdown svg {
  margin-top: 1px;
  transition: transform var(--transition-fast);
}

.navbar__links a.has-dropdown:hover svg {
  transform: rotate(180deg);
}

.navbar__dropdown-wrapper {
  position: relative;
}

.navbar__dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  padding-top: 12px;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-base), visibility var(--transition-base);
}

.navbar__dropdown-wrapper:hover .navbar__dropdown {
  opacity: 1;
  visibility: visible;
}

.navbar__dropdown-wrapper:hover .has-dropdown svg {
  transform: rotate(180deg);
}

.navbar__dropdown a {
  display: block;
  background-color: var(--white);
  padding: 10px 24px;
  font-size: 13px;
  font-weight: 400;
  color: var(--dark-text);
  white-space: nowrap;
  transition: background-color var(--transition-fast), color var(--transition-fast);
  border-left: 1px solid var(--border-color);
  border-right: 1px solid var(--border-color);
}

.navbar__dropdown a:first-child {
  border-top: 1px solid var(--border-color);
  border-radius: 4px 4px 0 0;
  padding-top: 14px;
}

.navbar__dropdown a:last-child {
  border-bottom: 1px solid var(--border-color);
  border-radius: 0 0 4px 4px;
  padding-bottom: 14px;
}

.navbar__dropdown a:hover {
  background-color: var(--cream-light);
  color: var(--dark-text);
}

.navbar__cta {
  flex-shrink: 0;
  margin-left: 28px;
}

.btn-nav-outline {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-primary);
  font-size: 13px;
  font-weight: 500;
  padding: 7px 16px;
  border-radius: 12px;
  border: 1.5px solid var(--dark-text);
  color: var(--dark-text);
  background: transparent;
  transition: all var(--transition-base);
  cursor: pointer;
  white-space: nowrap;
}

.btn-nav-outline:hover {
  background-color: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

/* ===================================================
   HERO SECTION
   =================================================== */
.hero {
  position: relative;
  background-color: var(--navy);
  background-image: linear-gradient(180deg, #0F1C2E 0%, #142439 50%, #0F1C2E 100%);
  min-height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 70px 40px 60px;
  overflow: hidden;
}

.hero__shape {
  position: absolute;
  pointer-events: none;
  opacity: 0.15;
}

.hero__shape--left {
  left: -60px;
  top: 50%;
  transform: translateY(-50%);
  width: 280px;
}

.hero__shape--right {
  right: -60px;
  top: 50%;
  transform: translateY(-50%);
  width: 280px;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.hero__title {
  font-size: 52px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero__subtitle {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

.hero__buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 40px;
}

.hero__dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.hero__dot {
  width: 10px;
  height: 10px;
  border-radius: var(--radius-full);
  background-color: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all var(--transition-base);
}

.hero__dot.active {
  background-color: var(--white);
  width: 28px;
  border-radius: 5px;
}

/* ===================================================
   OUR ECOSYSTEM
   =================================================== */
.ecosystem {
  padding: 60px 0;
  text-align: center;
  background-color: #F5F5F5;
}

.ecosystem__header {
  margin-bottom: 48px;
}

.ecosystem__title {
  font-size: 42px;
  font-weight: 575;
  font-style: normal;
  background: linear-gradient(135deg, var(--dark-text) 30%, var(--gold) 60%, var(--dark-text) 90%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ecosystem__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}

.ecosystem__card {
  text-align: left;
  padding: 20px;
}

.ecosystem__card-image {
  width: 100%;
  height: 240px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 24px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(0, 0, 0, 0.06);
}

.ecosystem__card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ecosystem__card h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--dark-text);
}

.ecosystem__card p {
  font-size: 14px;
  color: var(--body-text);
  line-height: 1.7;
}

.ecosystem__cta {
  margin-top: 40px;
}

/* ===================================================
   WHY WE EXIST
   =================================================== */
.why-we-exist {
  background: linear-gradient(180deg, #8B7D72 0%, #8B7D72 30%, #4A5568 60%, #1A2D47 80%, #0F1C2E 100%);
  padding: 60px 0 0;
  overflow: hidden;
}

.why-we-exist__top {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 60px;
  margin-bottom: 48px;
  padding-left: 20px;
  padding-right: 120px;
}

.why-we-exist__heading {
  flex-shrink: 0;
}

.why-we-exist__heading h2 {
  font-size: 36px;
  font-weight: 575;
  line-height: 1.2;
  background: linear-gradient(135deg, var(--white) 15%, rgba(245, 235, 210, 0.6) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.why-we-exist__text {
  max-width: 560px;
}

.why-we-exist__text p {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 24px;
}

/* Carousel */
.why-we-exist__carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
  height: 400px;
  cursor: grab;
  user-select: none;
}

.why-we-exist__carousel.dragging {
  cursor: grabbing;
}

.why-we-exist__carousel-track {
  position: relative;
  width: 100%;
  height: 100%;
}

.why-we-exist__slide {
  position: absolute;
  top: 50%;
  left: 0;
  width: 480px;
  height: 340px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  pointer-events: none;
  transform-origin: center center;
  transform: translate(-50%, -50%) scale(0.5);
  opacity: 0;
  will-change: transform, left, opacity;
  transition: left 0.7s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.7s cubic-bezier(0.4, 0, 0.2, 1),
              opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.why-we-exist__slide.no-transition {
  transition: none !important;
}

.why-we-exist__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

/* ===================================================
   COMPANY MILESTONE
   =================================================== */
.milestone {
  padding: 100px 0;
  text-align: center;
  background-color: var(--navy);
  position: relative;
  overflow: hidden;
}

.milestone__shape {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  -webkit-mask-image: linear-gradient(to bottom, white 30%, transparent 100%);
  mask-image: linear-gradient(to bottom, white 30%, transparent 100%);
}

.milestone__shape--4 {
  bottom: -5%;
  top: auto;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  opacity: 0.06;
}

.milestone__shape--3 {
  bottom: -12%;
  top: auto;
  left: 0;
  width: 100%;
  transform: none;
  opacity: 0.08;
}

.milestone .container {
  position: relative;
  z-index: 1;
}

.milestone__header {
  margin-bottom: 60px;
}

.milestone__header h2 {
  font-size: 40px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 16px;
}

.milestone__header p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.6);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

.milestone__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 60px;
  padding: 0 60px;
}

.milestone__stat {
  text-align: center;
  padding: 20px;
}

.milestone__stat-number {
  font-size: 48px;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}

.milestone__stat-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 400;
}

.milestone__stat + .milestone__stat {
  border-left: 1px solid rgba(255, 255, 255, 0.15);
}

.milestone__cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 900px;
  margin: 0 auto 48px;
}

.milestone__card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  aspect-ratio: 1;
}

.milestone__card--image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.milestone__card--stat {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px;
  text-align: left;
}

.milestone__card--stat-light {
  background-color: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.milestone__card--stat-dark {
  background-color: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.milestone__card-number {
  font-size: 36px;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}

.milestone__card-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
}

.milestone__card-desc {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
}

.milestone__statement {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ===================================================
   BRANDS SECTION
   =================================================== */
.brands {
  padding: 0;
}

.brands__viewport {
  position: relative;
  width: 100%;
  height: 480px;
  overflow: hidden;
  cursor: grab;
  user-select: none;
}

.brands__viewport:active {
  cursor: grabbing;
}

.brands__track {
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.brands__dots {
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 10;
}

.brands__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.6);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s ease;
}

.brands__dot--active {
  background: var(--white);
  border-color: var(--white);
}

.brand-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 480px;
}

.brand-image {
  overflow: hidden;
  position: relative;
}

.brand-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 100px 60px 60px;
}

.brand-info--orange {
  background-color: #D46945;
  color: var(--white);
}

.brand-info--teal {
  background-color: #3E5D58;
  color: var(--white);
}

.brand-info--pink {
  background-color: #ED3E59;
  color: var(--white);
}

.brand-info__logo {
  height: 60px;
  width: auto;
  margin-bottom: 20px;
  object-fit: contain;
  align-self: flex-start;
}

.brand-info h3 {
  font-size: 24px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 16px;
}

.brand-info p {
  font-size: 13px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  text-align: justify;
}

/* ===================================================
   PRODUCTS SECTION
   =================================================== */
.products {
  padding: 0;
  background-color: #F5F5F5;
}

.products__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 480px;
}

.products__image {
  overflow: hidden;
  position: relative;
}

.products__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.products__info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 60px;
  background-color: #F5F5F5;
}

.products__info-logo {
  height: 40px;
  width: auto;
  margin-bottom: 20px;
}

.products__info h3 {
  font-size: 22px;
  font-weight: 600;
  color: var(--dark-text);
  margin-bottom: 12px;
  text-transform: uppercase;
}

.products__info p {
  font-size: 14px;
  line-height: 1.8;
  color: var(--body-text);
}

/* ===================================================
   HONORS & AWARDS
   =================================================== */
.awards {
  padding: 80px 0 60px;
  text-align: center;
  background-color: #F5F5F5;
  position: relative;
}

.awards__header {
  margin-bottom: 0;
}

.awards__header h2 {
  font-size: 42px;
  font-weight: 575;
  font-style: normal;
  background: linear-gradient(135deg, var(--dark-text) 30%, var(--gold) 60%, var(--dark-text) 90%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.awards__carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
  height: 380px;
  cursor: grab;
  user-select: none;
  margin-bottom: 0;
}

.awards__carousel:active {
  cursor: grabbing;
}

.awards__carousel-track {
  position: relative;
  width: 100%;
  height: 100%;
}

.awards__slide {
  position: absolute;
  top: 50%;
  left: 0;
  width: 400px;
  height: 280px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  pointer-events: none;
  transform-origin: center center;
  transform: translate(-50%, -50%) scale(0.5);
  opacity: 0;
  will-change: transform, left, opacity, filter;
  transition: left 0.7s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.7s cubic-bezier(0.4, 0, 0.2, 1),
              opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
              filter 0.7s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.awards__slide.no-transition {
  transition: none !important;
}

.awards__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.awards__caption {
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
  min-height: 80px;
}

.awards__caption h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--dark-text);
  margin-bottom: 12px;
}

.awards__caption p {
  font-size: 14px;
  color: var(--body-text);
  line-height: 1.7;
}

.awards__text {
  margin-bottom: 24px;
}

.awards__text h3 {
  font-size: 22px;
  font-weight: 600;
  color: var(--dark-text);
  margin-bottom: 8px;
}

.awards__text p {
  font-size: 15px;
  color: var(--body-text);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ===================================================
   INSIGHT & NEWS
   =================================================== */
.news {
  padding: 100px 0;
  background-color: var(--bg-light);
}

.news__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 48px;
}

.news__header h2 {
  font-size: 40px;
  font-weight: 600;
  color: var(--dark-text);
}

.news__header h2 em {
  font-weight: 600;
}

.news__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.news__card {
  background-color: #F5F5F5;
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.news__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.news__card-image {
  height: 200px;
  overflow: hidden;
}

.news__card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.news__card:hover .news__card-image img {
  transform: scale(1.05);
}

.news__card-body {
  padding: 20px;
}

.news__card-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--orange);
  background-color: rgba(212, 114, 76, 0.1);
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 12px;
}

.news__card-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--dark-text);
  margin-bottom: 8px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news__card-desc {
  font-size: 13px;
  color: var(--body-text);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news__cta {
  text-align: center;
}

/* ===================================================
   FOOTER
   =================================================== */
.footer {
  background-color: var(--white);
  color: var(--dark-text);
  padding: 60px 0 40px;
  box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.06);
}

.footer__top {
  display: grid;
  grid-template-columns: 1.5fr 1.2fr 0.8fr 0.8fr;
  gap: 40px;
}

.footer__logo {
  height: 36px;
  margin-bottom: 14px;
}

.footer__brand p {
  font-size: 13px;
  color: #746D66;
  line-height: 1.7;
  max-width: 300px;
}

.footer__brand-desc {
  margin-top: 16px;
  font-size: 12px;
  font-weight: 400;
  color: #746D66;
  line-height: 1.8;
  max-width: 300px;
}

.footer__social {
  display: flex;
  gap: 16px;
  margin-top: 24px;
}

.footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark-text);
  font-size: 14px;
  transition: opacity var(--transition-fast);
}

.footer__social a:hover {
  opacity: 0.6;
}

.footer__col h4 {
  font-size: 13px;
  font-weight: 700;
  color: #746D66;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

.footer__col ul li a {
  font-size: 13px;
  color: #746D66;
  transition: color var(--transition-fast);
}

.footer__col ul li a:hover {
  color: #544F4A;
}

.footer__link--active {
  color: var(--dark-text) !important;
  font-weight: 700;
}

.footer__contact-list {
  list-style: none;
}

.footer__contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 12px;
  color: var(--body-text);
  line-height: 1.7;
}

.footer__contact-list li svg {
  flex-shrink: 0;
  margin-top: 2px;
  fill: #746D66;
}

/* ===================================================
   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);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Counter animation */
@keyframes countUp {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
