/* =============================================================
   ATLAS POWER â€” Main Stylesheet
   Anton font for headings, full-banner carousel
   Color Scheme: #b23c34 (Red), #1A1A2E (Dark), #fefefe (Light BG)
   ============================================================= */

/* â”€â”€â”€ CSS VARIABLES â”€â”€â”€ */
:root {
  --primary:        #b23c34;
  --primary-dark:   #8e2e28;
  --primary-light:  #c94e46;
  --dark:           #1A1A2E;
  --dark-alt:       #16213e;
  --light-bg:       #fefefe;
  --white:          #ffffff;
  --text:           #1C1C1C;
  --text-muted:     #6c757d;
  --border:         #e0d8d0;
  --shadow-sm:      0 2px 12px rgba(0,0,0,0.08);
  --shadow-md:      0 4px 24px rgba(0,0,0,0.12);
  --shadow-lg:      0 8px 48px rgba(0,0,0,0.16);
  --radius:         14px;
  --radius-lg:      24px;
  --radius-xl:      32px;
  --transition:     0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --header-h:       110px;
}

/* â”€â”€â”€ RESET & BASE â”€â”€â”€ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--light-bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }

/* â”€â”€â”€ UTILITY â”€â”€â”€ */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); border: 0;
}

/* ================================================================
   HEADER
   ================================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: var(--white);
  box-shadow: 0 1px 0 var(--border), var(--shadow-sm);
  padding: 0 32px;
  transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,0.10); }

.header-inner {
  max-width: 1360px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 20px;
}

/* â€” Logo â€” */
.logo { display: flex; align-items: center; flex-shrink: 0; transform: translateY(-10px); }
.logo img {
  height: 96px !important;
  width: auto !important;
  max-width: 260px;
  object-fit: contain;
  transition: opacity var(--transition);
}
.logo:hover img { opacity: 0.75; }

/* â€” Desktop Nav â€” */
.desktop-nav { display: flex; align-items: center; }
.desktop-nav ul { display: flex; gap: 2px; }
.desktop-nav a {
  position: relative;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text);
  padding: 8px 14px;
  border-radius: 8px;
  letter-spacing: 0.01em;
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
}
.desktop-nav a::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 14px; right: 14px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.desktop-nav a:hover,
.desktop-nav a.active { color: var(--primary); background: rgba(178,60,52,0.05); }
.desktop-nav a:hover::after,
.desktop-nav a.active::after { transform: scaleX(1); }

/* â€” Header Actions â€” */
.header-actions { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }

/* Download Catalogue Button */
.btn-catalogue {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: var(--white);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  padding: 10px 20px;
  border-radius: 50px;
  border: 2px solid var(--primary);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
}
.btn-catalogue svg { flex-shrink: 0; }
.btn-catalogue:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(178,60,52,0.35);
}
.btn-catalogue:active { transform: translateY(0); }

/* Hamburger */
.hamburger {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 44px; height: 44px;
  background: var(--light-bg);
  border: none;
  border-radius: 10px;
  padding: 10px;
  transition: background var(--transition);
  overflow: hidden;
}
.hamburger:hover { background: #ece6de; }
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: transform 0.35s ease, opacity 0.25s ease;
  transform-origin: center center;
}
/* Animated X when open â€” precise alignment */
.hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ================================================================
   MOBILE OVERLAY & MENU
   ================================================================ */
.mobile-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(26,26,46,0.55);
  z-index: 950;
  backdrop-filter: blur(3px);
  opacity: 0;
  transition: opacity var(--transition);
}
.mobile-overlay.active { display: block; opacity: 1; }

.mobile-menu {
  position: fixed;
  top: 0; right: -100%;
  width: min(340px, 90vw);
  height: 100%;
  background: var(--white);
  z-index: 999;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -8px 0 48px rgba(0,0,0,0.18);
  display: flex;
  flex-direction: column;
}
.mobile-menu.open { right: 0; }

.mobile-menu-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 24px;
}

.mobile-menu-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 36px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.mobile-close {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  background: var(--light-bg);
  border: none;
  border-radius: 50%;
  color: var(--text);
  flex-shrink: 0;
  transition: background var(--transition), color var(--transition);
}
.mobile-close svg { display: block; }
.mobile-close:hover { background: var(--primary); color: var(--white); }

.mobile-menu nav ul { display: flex; flex-direction: column; gap: 4px; }
.mobile-menu nav a {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
  padding: 13px 16px;
  border-radius: 10px;
  transition: background var(--transition), color var(--transition), padding-left var(--transition);
}
.mobile-menu nav a:hover { background: rgba(178,60,52,0.06); color: var(--primary); padding-left: 24px; }

.btn-catalogue-mobile {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: auto;
  padding: 15px 20px;
  background: var(--primary);
  color: var(--white);
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 50px;
  border: 2px solid var(--primary);
  transition: background var(--transition), transform var(--transition);
}
.btn-catalogue-mobile:hover { background: var(--primary-dark); border-color: var(--primary-dark); transform: translateY(-1px); }

/* ================================================================
   HERO CAROUSEL SECTION â€” Full-Banner Image Style
   ================================================================ */
.hero-section {
  padding: 20px 24px 10px;
  background: var(--light-bg);
}

.carousel-container {
  position: relative;
  max-width: 1360px;
  margin: 0 auto;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: #fefefe;
}

.carousel-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.carousel-slide { min-width: 100%; }

/* Full-banner slide: the entire card IS the image */
.slide-banner {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 6.5;
  min-height: 340px;
  max-height: 580px;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: #fefefe;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slide-banner img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  border-radius: var(--radius-xl);
}

/* Placeholder when no image uploaded yet */
.slide-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: linear-gradient(135deg, #fefefe 0%, #ede7df 100%);
  text-align: center;
  padding: 32px;
}
.slide-placeholder-icon {
  width: 64px; height: 64px;
  background: rgba(178,60,52,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px dashed rgba(178,60,52,0.3);
}
.slide-placeholder h3 {
  font-family: 'Anton', sans-serif;
  font-size: 1.6rem;
  color: var(--primary);
  letter-spacing: 1px;
}
.slide-placeholder p {
  font-size: 0.85rem;
  color: var(--text-muted);
}
.slide-placeholder small {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--primary);
  background: rgba(178,60,52,0.08);
  padding: 4px 12px;
  border-radius: 50px;
}

/* â€” Carousel Arrows â€” */
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px; height: 46px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.92);
  border: none;
  border-radius: 50%;
  color: var(--dark);
  box-shadow: 0 2px 16px rgba(0,0,0,0.14);
  z-index: 10;
  transition: background var(--transition), color var(--transition), box-shadow var(--transition), transform var(--transition);
  backdrop-filter: blur(6px);
}
.carousel-arrow:hover {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 24px rgba(178,60,52,0.35);
}
.prev-arrow { left: 18px; }
.next-arrow { right: 18px; }
.prev-arrow:hover { transform: translateY(-50%) scale(1.05); }
.next-arrow:hover { transform: translateY(-50%) scale(1.05); }

/* â€” Dot Indicators â€” */
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 16px 0 8px;
}
.dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(178,60,52,0.22);
  border: none;
  padding: 0;
  transition: background var(--transition), width var(--transition), border-radius var(--transition);
}
.dot.active {
  width: 30px;
  background: var(--primary);
  border-radius: 5px;
}
.dot:hover:not(.active) { background: rgba(178,60,52,0.45); }

/* ================================================================
   FOOTER (Placeholder â€” to be expanded)
   ================================================================ */
.site-footer {
  background: var(--dark);
  color: #aab0bc;
  padding: 48px 32px;
  margin-top: 64px;
}
.footer-inner {
  max-width: 1360px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}
.footer-brand img { filter: brightness(0) invert(1); opacity: 0.9; margin: 0 auto; }
.footer-brand p { margin-top: 8px; font-size: 0.9rem; color: #7a8598; font-style: italic; }
.footer-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 24px; }
.footer-links a { font-size: 0.875rem; color: #aab0bc; transition: color var(--transition); }
.footer-links a:hover { color: var(--primary); }
.footer-copy { font-size: 0.8rem; color: #5a6272; }

/* ================================================================
   RESPONSIVE BREAKPOINTS
   ================================================================ */

/* â”€â”€â”€ Tablet: hide nav labels, compress â”€â”€â”€ */
@media (max-width: 1100px) {
  .desktop-nav { display: none; }
  .site-header { padding: 0 20px; }
}

/* â”€â”€â”€ Mobile â”€â”€â”€ */
@media (max-width: 768px) {
  :root { --header-h: 70px; }

  .site-header { padding: 0 16px; }
  .logo img { height: 62px !important; max-width: 200px; }

  .btn-catalogue .btn-text { display: none; }
  .btn-catalogue { padding: 9px 13px; }

  .hero-section { padding: 12px 10px 6px; }

  .slide-banner {
    aspect-ratio: 4 / 3;
    min-height: 240px;
    max-height: 380px;
  }

  .carousel-arrow { display: none; }
  .carousel-dots { padding: 10px 0 4px; }
}

@media (max-width: 480px) {
  .slide-banner { aspect-ratio: 1 / 1; min-height: 280px; }
  .slide-placeholder h3 { font-size: 1.2rem; }
}


/* ================================================================
   PRODUCTS SECTION
   ================================================================ */
.products-section {
  padding: 72px 24px;
  background: #fefefe;
}
.products-inner {
  max-width: 1360px;
  margin: 0 auto;
}

/* Section Header */
.section-header {
  text-align: center;
  margin-bottom: 52px;
}
.section-tag {
  display: inline-block;
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  padding: 5px 18px;
  border: 2px solid var(--primary);
  border-radius: 50px;
  margin-bottom: 18px;
}
.section-title {
  font-family: 'Anton', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--dark);
  letter-spacing: 0.5px;
  line-height: 1.15;
  margin-bottom: 14px;
}
.section-desc {
  max-width: 600px;
  margin: 0 auto;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Products Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 52px;
}

/* Product Card */
.product-card {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border-radius: var(--radius);
  border: 1px solid #ebebeb;
  overflow: hidden;
  text-decoration: none;
  color: var(--text);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  cursor: pointer;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.10);
  border-color: rgba(178,60,52,0.25);
}

/* Product Image Wrapper */
.product-img-wrap {
  position: relative;
  aspect-ratio: 1 / 1;
  background: #f9f9f9;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 16px;
}
.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.4s ease;
}
.product-card:hover .product-img-wrap img {
  transform: scale(1.06);
}

/* Placeholder when no image */
.product-img-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #bbb;
  font-size: 0.75rem;
  text-align: center;
}
.product-img-placeholder svg { opacity: 0.35; }

/* Product Info */
.product-info {
  padding: 14px 16px 18px;
  border-top: 1px solid #f0f0f0;
}
.product-name {
  font-family: 'Anton', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.8px;
  color: var(--dark);
  text-transform: uppercase;
  line-height: 1.3;
  text-align: center;
  transition: color var(--transition);
}
.product-card:hover .product-name {
  color: var(--primary);
}

/* View More Button */
.products-cta {
  text-align: center;
}
.btn-view-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: #ffffff;
  font-family: 'Anton', sans-serif;
  font-size: 1rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 16px 48px;
  border-radius: 50px;
  border: 2px solid var(--primary);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}
.btn-view-more:hover {
  background: var(--dark);
  border-color: var(--dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(26,26,46,0.2);
}

/* Responsive */
@media (max-width: 1100px) {
  .products-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .products-section { padding: 52px 16px; }
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .section-title { font-size: 1.75rem; }
}
@media (max-width: 400px) {
  .products-grid { gap: 10px; }
  .product-name { font-size: 0.85rem; }
}

/* ================================================================
   STATS COUNTER SECTION
   ================================================================ */
.stats-section {
  background: linear-gradient(135deg, #1A1A2E 0%, #2c1a1a 100%);
  padding: 64px 24px;
  position: relative;
  overflow: hidden;
}
.stats-section::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(178,60,52,0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.stats-section::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -80px;
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(178,60,52,0.10) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.stats-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
  z-index: 1;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 32px 16px;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  transition: background var(--transition), transform var(--transition);
}
.stat-item:hover {
  background: rgba(255,255,255,0.08);
  transform: translateY(-4px);
}
.stat-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: rgba(178,60,52,0.18);
  border: 2px solid rgba(178,60,52,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: #b23c34;
}
.stat-icon svg { display: block; }
.stat-number {
  font-family: 'Anton', sans-serif;
  font-size: clamp(2.2rem, 3.5vw, 3rem);
  color: #ffffff;
  line-height: 1;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}
.stat-number .suffix { color: var(--primary); }
.stat-label {
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  line-height: 1.4;
}

/* ================================================================
   WHY CHOOSE US SECTION
   ================================================================ */
.why-us-section {
  padding: 80px 24px;
  background: #fefefe;
}
.why-us-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.why-us-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 52px;
}
.why-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: #ffffff;
  border-radius: var(--radius);
  border: 1px solid #ebebeb;
  padding: 32px 28px;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.why-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 40px rgba(0,0,0,0.09);
  border-color: rgba(178,60,52,0.22);
}
.why-icon {
  flex-shrink: 0;
  width: 60px; height: 60px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(178,60,52,0.12) 0%, rgba(178,60,52,0.05) 100%);
  border: 1.5px solid rgba(178,60,52,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  transition: background var(--transition), transform var(--transition);
}
.why-card:hover .why-icon {
  background: linear-gradient(135deg, rgba(178,60,52,0.2) 0%, rgba(178,60,52,0.10) 100%);
  transform: scale(1.08);
}
.why-icon svg { display: block; }
.why-text { flex: 1; }
.why-title {
  font-family: 'Anton', sans-serif;
  font-size: 1.15rem;
  letter-spacing: 0.5px;
  color: var(--dark);
  margin-bottom: 8px;
  text-transform: uppercase;
}
.why-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Responsive */
@media (max-width: 900px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}
@media (max-width: 768px) {
  .stats-section { padding: 48px 16px; }
  .why-us-section { padding: 52px 16px; }
  .why-us-grid { grid-template-columns: 1fr; gap: 16px; }
  .stat-number { font-size: 2rem; }
  .why-card { padding: 24px 20px; }
}
@media (max-width: 480px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .stat-item { padding: 24px 12px; }
  .stat-icon { width: 52px; height: 52px; }
  .stat-number { font-size: 1.7rem; }
}

/* ================================================================
   FOOTER â€” Full Version
   ================================================================ */
.site-footer {
  background: var(--dark);
  color: rgba(255,255,255,0.75);
  padding: 0;
}

/* Top bar: Logo + tagline + columns */
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 24px 48px;
}

/* Brand column */
/* .footer-brand-col — inherits footer-top grid styles */
.footer-logo { margin-bottom: 14px; }
.footer-logo img {
  height: 68px !important;
  width: auto !important;
  filter: brightness(0) invert(1);
  opacity: 0.92;
}
.footer-tagline {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  font-style: italic;
  margin-bottom: 24px;
  letter-spacing: 0.3px;
}

/* Social icons */
.footer-social {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.social-icon {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.65);
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition);
}
.social-icon:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #ffffff;
  transform: translateY(-3px);
}
.social-icon svg { display: block; }

/* Contact column */
.footer-contact-col h4,
.footer-links-col h4 {
  font-family: 'Anton', sans-serif;
  font-size: 0.95rem;
  letter-spacing: 1.5px;
  color: #ffffff;
  text-transform: uppercase;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}
.footer-contact-col h4::after,
.footer-links-col h4::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 32px; height: 2px;
  background: var(--primary);
  border-radius: 2px;
}

/* Contact items */
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 0.875rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.65);
}
.contact-item:last-child { margin-bottom: 0; }
.contact-icon {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: rgba(178,60,52,0.18);
  border: 1px solid rgba(178,60,52,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 1px;
}
.contact-icon svg { display: block; }
.contact-text a {
  color: rgba(255,255,255,0.65);
  transition: color var(--transition);
}
.contact-text a:hover { color: var(--primary); }

/* Quick links column */
.footer-nav-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-nav-links a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition), gap var(--transition);
}
.footer-nav-links a::before {
  content: '';
  display: block;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--primary);
  flex-shrink: 0;
  transition: transform var(--transition);
}
.footer-nav-links a:hover { color: #ffffff; gap: 12px; }
.footer-nav-links a:hover::before { transform: scale(1.4); }

/* Divider */
.footer-divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.07);
  margin: 0;
}

/* Bottom bar */
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-copy {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}
.footer-made {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.25);
}

/* Responsive */
@media (max-width: 900px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-brand-col { grid-column: 1 / -1; }
}
@media (max-width: 600px) {
  .footer-top { grid-template-columns: 1fr; gap: 32px; padding: 44px 20px 36px; }
  .footer-brand-col { grid-column: auto; }
  .footer-bottom { flex-direction: column; text-align: center; padding: 16px 20px; }
}


