/* ==========================================================
   HAG TRADING — STYLESHEET
   Palette: Navy #102A43 · Orange #F26B21 · White · Light Gray
   ========================================================== */

:root{
  --navy: #102A43;
  --navy-light: #1E3A5F;
  --navy-deep: #0A1C2E;
  --orange: #F26B21;
  --orange-light: #FF8A4C;
  --orange-dark: #D4541A;
  --white: #FFFFFF;
  --gray-bg: #F4F6F8;
  --gray-100: #EDF0F3;
  --gray-300: #C9D2DB;
  --gray-500: #748094;
  --gray-700: #3D4A5C;
  --text-body: #475467;

  --font-display: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-full: 999px;

  --shadow-sm: 0 2px 8px rgba(16,42,67,0.06);
  --shadow-md: 0 8px 24px rgba(16,42,67,0.10);
  --shadow-lg: 0 20px 50px rgba(16,42,67,0.16);
  --shadow-orange: 0 10px 30px rgba(242,107,33,0.30);

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

*{ margin:0; padding:0; box-sizing:border-box; }

html{ scroll-behavior:smooth; scroll-padding-top:84px; }

body{
  font-family: var(--font-body);
  color: var(--text-body);
  background: var(--white);
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}

img{ max-width:100%; display:block; }
a{ text-decoration:none; color:inherit; }
ul{ list-style:none; }
button{ font-family:inherit; cursor:pointer; border:none; background:none; }
input, select, textarea{ font-family:inherit; font-size:15px; }

.hag-container{
  max-width:1240px;
  margin:0 auto;
  padding:0 28px;
}

.hag-section{ position:relative; }

/* ===== Eyebrow / labels ===== */
.hag-eyebrow{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-family:var(--font-body);
  font-size:13px;
  font-weight:600;
  letter-spacing:0.08em;
  text-transform:uppercase;
  color:var(--white);
  background:rgba(255,255,255,0.12);
  border:1px solid rgba(255,255,255,0.25);
  backdrop-filter:blur(8px);
  padding:7px 16px;
  border-radius:var(--radius-full);
  margin-bottom:20px;
}
.hag-eyebrow--dark{
  color:var(--orange-dark);
  background:rgba(242,107,33,0.08);
  border:1px solid rgba(242,107,33,0.18);
}

.hag-section__head{ max-width:680px; margin:0 0 56px; }
.hag-section__title{
  font-family:var(--font-display);
  font-weight:700;
  font-size:clamp(30px, 4vw, 44px);
  color:var(--navy);
  line-height:1.15;
  margin-bottom:16px;
  letter-spacing:-0.01em;
}
.hag-section__lead{ font-size:17px; color:var(--gray-500); max-width:560px; }

/* ===== Buttons ===== */
.hag-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  font-family:var(--font-body);
  font-weight:600;
  font-size:15px;
  padding:15px 28px;
  border-radius:var(--radius-full);
  transition:transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.25s, color 0.25s, border-color 0.25s;
  white-space:nowrap;
}
.hag-btn i{ font-size:18px; }
.hag-btn--primary{
  background:var(--orange);
  color:var(--white);
  box-shadow:var(--shadow-orange);
}
.hag-btn--primary:hover{
  background:var(--orange-dark);
  transform:translateY(-3px);
  box-shadow:0 16px 36px rgba(242,107,33,0.38);
}
.hag-btn--outline-light{
  border:1.5px solid rgba(255,255,255,0.55);
  color:var(--white);
  background:rgba(255,255,255,0.06);
  backdrop-filter:blur(6px);
}
.hag-btn--outline-light:hover{ background:rgba(255,255,255,0.16); border-color:var(--white); }
.hag-btn--ghost-light{
  color:var(--white);
  border:1.5px solid rgba(255,255,255,0.4);
  padding:15px 28px;
}
.hag-btn--ghost-light:hover{ background:rgba(255,255,255,0.12); border-color:#fff; }
.hag-btn--outline{
  border:1.5px solid var(--navy);
  color:var(--navy);
  background:transparent;
}
.hag-btn--outline:hover{ background:var(--navy); color:var(--white); }
.hag-btn--block{ width:100%; }
.hag-btn--whatsapp{
  background:#25D366;
  color:#fff;
  margin-top:6px;
  box-shadow:0 10px 26px rgba(37,211,102,0.32);
}
.hag-btn--whatsapp:hover{ background:#1DA851; transform:translateY(-3px); }

/* ==========================================================
   HEADER
   ========================================================== */
.hag-header{
  position:fixed;
  top:0; left:0; right:0;
  z-index:1000;
  padding:18px 0;
  transition:all 0.4s var(--ease);
  background:transparent;
}
.hag-header.is-scrolled{
  background:rgba(16,42,67,0.92);
  backdrop-filter:blur(14px);
  padding:12px 0;
  box-shadow:0 4px 24px rgba(0,0,0,0.12);
}
.hag-header__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}

.hag-logo{ display:flex; align-items:center; gap:12px; }
.hag-logo__mark{
  font-family:var(--font-display);
  font-weight:800;
  font-size:20px;
  color:var(--navy);
  background:var(--white);
  width:48px; height:48px;
  display:flex; align-items:center; justify-content:center;
  border-radius:12px;
  letter-spacing:-0.02em;
  flex-shrink:0;
  box-shadow:var(--shadow-sm);
}
.hag-logo__text{ display:flex; flex-direction:column; line-height:1.25; }
.hag-logo__text strong{ font-family:var(--font-display); font-size:15px; font-weight:600; color:var(--white); }
.hag-logo__text small{ font-size:11.5px; color:rgba(255,255,255,0.65); letter-spacing:0.03em; }

.hag-nav{ display:flex; align-items:center; gap:36px; }
.hag-nav__link{
  font-size:15px; font-weight:500;
  color:rgba(255,255,255,0.85);
  position:relative;
  padding:4px 0;
  transition:color 0.25s;
}
.hag-nav__link::after{
  content:'';
  position:absolute; left:0; bottom:-2px;
  width:0; height:2px;
  background:var(--orange);
  transition:width 0.3s var(--ease);
}
.hag-nav__link:hover{ color:var(--white); }
.hag-nav__link:hover::after{ width:100%; }

.hag-burger{
  display:none;
  flex-direction:column;
  gap:5px;
  width:32px;
  z-index:1001;
}
.hag-burger span{
  height:2px; width:100%;
  background:var(--white);
  border-radius:2px;
  transition:all 0.3s var(--ease);
}
.hag-burger.is-open span:nth-child(1){ transform:translateY(7px) rotate(45deg); }
.hag-burger.is-open span:nth-child(2){ opacity:0; }
.hag-burger.is-open span:nth-child(3){ transform:translateY(-7px) rotate(-45deg); }

/* ==========================================================
   HERO
   ========================================================== */
.hag-hero{
  height:100vh;
  min-height:640px;
  max-height:980px;
  position:relative;
  overflow:hidden;
  background:var(--navy-deep);
}
.hag-hero__slides{ position:relative; width:100%; height:100%; }
.hag-hero__slide{
  position:absolute; inset:0;
  background-size:cover;
  background-position:center;
  opacity:0;
  visibility:hidden;
  transition:opacity 1.2s var(--ease), visibility 1.2s;
  display:flex;
  align-items:center;
}
.hag-hero__slide.is-active{ opacity:1; visibility:visible; }
.hag-hero__overlay{
  position:absolute; inset:0;
  background:linear-gradient(100deg, rgba(10,28,46,0.94) 0%, rgba(16,42,67,0.82) 38%, rgba(16,42,67,0.55) 65%, rgba(16,42,67,0.35) 100%);
}
.hag-hero__content{
  position:relative;
  z-index:2;
  max-width:1240px;   /* same grid as header → text aligns with HAG logo */
  width:100%;
}
.hag-hero__title{
  font-family:var(--font-display);
  font-weight:700;
  font-size:clamp(30px, 4vw, 46px);
  line-height:1.18;
  color:var(--white);
  letter-spacing:-0.02em;
  margin-bottom:22px;
  max-width:560px;
}
.hag-hero__pimg{
  position:absolute;
  right:max(28px, calc((100vw - 1240px) / 2 + 28px)); /* right edge on the same grid */
  top:50%;
  transform:translateY(-50%);
  width:clamp(220px, 24vw, 380px);
  height:auto;
  z-index:1;
  filter:drop-shadow(0 30px 50px rgba(0,0,0,0.45));
  opacity:0.96;
}
@media (max-width:1000px){
  .hag-hero__pimg{ display:none; }
}
.hag-hero__subtitle{
  font-size:18px;
  color:rgba(255,255,255,0.82);
  max-width:520px;
  margin-bottom:36px;
}
.hag-hero__actions{ display:flex; gap:16px; flex-wrap:wrap; }

.hag-hero__dots{
  position:absolute;
  bottom:36px; left:50%;
  transform:translateX(-50%);
  display:flex; gap:10px;
  z-index:3;
}
.hag-hero__dot{
  width:34px; height:4px;
  background:rgba(255,255,255,0.32);
  border-radius:2px;
  transition:background 0.3s, width 0.3s;
}
.hag-hero__dot.is-active{ background:var(--orange); width:48px; }

.hag-hero__scroll{
  position:absolute;
  bottom:34px; right:40px;
  z-index:3;
  width:46px; height:46px;
  display:flex; align-items:center; justify-content:center;
  border:1.5px solid rgba(255,255,255,0.4);
  border-radius:50%;
  color:#fff;
  font-size:20px;
  animation:bounceDown 2.2s ease-in-out infinite;
}
@keyframes bounceDown{ 0%,100%{ transform:translateY(0); } 50%{ transform:translateY(6px); } }

/* ==========================================================
   ABOUT
   ========================================================== */
.hag-about{ padding:120px 0 100px; background:var(--white); }
.hag-about__grid{
  display:grid;
  grid-template-columns:1.05fr 0.95fr;
  gap:72px;
  align-items:center;
  margin-bottom:96px;
}
.hag-about__text{ font-size:17px; color:var(--gray-700); margin:0 0 36px; line-height:1.8; }
.hag-about__text strong{ color:var(--navy); }

.hag-about__image{ position:relative; }

/* ── Sectors we serve (replaces image spot) ───────────────── */
.hag-sectors__heading{
  font-size:15px;
  text-transform:uppercase;
  letter-spacing:0.1em;
  color:var(--gray-500);
  font-weight:600;
  margin-bottom:20px;
}
.hag-sectors__grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0,1fr));
  gap:14px;
}
.hag-sector-tile{
  display:flex;
  align-items:center;
  gap:16px;
  padding:22px 20px;
  background:var(--white);
  border:1.5px solid var(--gray-300, #D9E2EC);
  border-radius:14px;
  transition:border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}
.hag-sector-tile:hover{
  border-color:var(--orange);
  box-shadow:0 12px 28px rgba(16,42,67,0.1);
  transform:translateY(-3px);
}
.hag-sector-tile i{ font-size:28px; color:var(--orange); flex-shrink:0; }
.hag-sector-tile span{ font-weight:600; font-size:15.5px; color:var(--navy); }
@media (max-width:560px){
  .hag-sectors__grid{ grid-template-columns:1fr; }
}

.hag-about__photo{
  display:block;
  width:100%;
  height:auto;
  border-radius:var(--radius-lg, 20px);
  box-shadow:0 30px 60px rgba(16,42,67,0.25);
}
.hag-about__collage{
  position:relative;
  height:420px;
  border-radius:var(--radius-lg);
  overflow:hidden;
  background:linear-gradient(135deg, var(--gray-bg) 0%, var(--gray-100) 100%);
  box-shadow:var(--shadow-lg);
  display:grid;
  grid-template-columns:1.2fr 1fr;
  grid-template-rows:1fr 1fr;
  gap:14px;
  padding:14px;
}
.hag-about__collage img{
  width:100%; height:100%;
  object-fit:contain;
  background:#fff;
  border-radius:var(--radius-md);
  padding:20px;
}
.hag-about__collage img:first-child{ grid-row:1 / 3; }
.hag-about__badge{
  position:absolute;
  bottom:-28px; left:-28px;
  background:var(--navy);
  color:#fff;
  padding:22px 28px;
  border-radius:var(--radius-md);
  box-shadow:var(--shadow-lg);
  display:flex; flex-direction:column;
  line-height:1.2;
}
.hag-about__badge strong{ font-family:var(--font-display); font-size:30px; font-weight:700; color:var(--orange-light); }
.hag-about__badge span{ font-size:12.5px; color:rgba(255,255,255,0.7); text-transform:uppercase; letter-spacing:0.06em; }

.hag-stats{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:24px;
}
.hag-stat-card{
  background:var(--gray-bg);
  border:1px solid var(--gray-100);
  border-radius:var(--radius-md);
  padding:32px 26px;
  transition:transform 0.4s var(--ease), box-shadow 0.4s var(--ease), background 0.4s;
}
.hag-stat-card:hover{
  transform:translateY(-6px);
  box-shadow:var(--shadow-md);
  background:var(--white);
}
.hag-stat-card__icon{
  width:54px; height:54px;
  border-radius:14px;
  background:rgba(242,107,33,0.1);
  color:var(--orange);
  display:flex; align-items:center; justify-content:center;
  font-size:24px;
  margin-bottom:20px;
}
.hag-stat-card__title{ font-family:var(--font-display); font-size:18px; font-weight:600; color:var(--navy); margin-bottom:10px; }
.hag-stat-card__desc{ font-size:14.5px; color:var(--gray-500); line-height:1.6; }

/* ==========================================================
   CATALOGUE
   ========================================================== */
.hag-catalogue{ padding:110px 0 120px; background:var(--gray-bg); }

.hag-cat-grid{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:28px;
}

/* ── Catalogue toolbar (search + filter) ─────────────────── */
.hag-cat-tools{
  display:flex;
  align-items:center;
  gap:16px;
  margin-bottom:40px;
  flex-wrap:wrap;
}
.hag-search{
  position:relative;
  flex:1;
  min-width:240px;
  max-width:460px;
}
.hag-search i{
  position:absolute;
  left:18px; top:50%;
  transform:translateY(-50%);
  font-size:18px;
  color:var(--gray-500);
  pointer-events:none;
}
.hag-search input{
  width:100%;
  padding:14px 20px 14px 48px;
  border-radius:var(--radius-full);
  border:1.5px solid var(--gray-300);
  background:var(--white);
  color:var(--navy);
  font-size:15px;
  transition:border-color 0.25s, box-shadow 0.25s;
}
.hag-search input:focus{
  outline:none;
  border-color:var(--orange);
  box-shadow:0 0 0 4px rgba(242,107,33,0.12);
}
.hag-search input::placeholder{ color:var(--gray-500); }
.hag-cat-tools select{
  padding:14px 42px 14px 20px;
  border-radius:var(--radius-full);
  border:1.5px solid var(--gray-300);
  background:var(--white) url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23748094' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E") no-repeat right 18px center;
  color:var(--navy);
  font-size:15px;
  font-weight:500;
  appearance:none;
  cursor:pointer;
  transition:border-color 0.25s;
}
.hag-cat-tools select:focus{ outline:none; border-color:var(--orange); }
.hag-cat-tools .hag-btn{ padding:13px 24px; font-size:14px; }

.hag-product-card__cat{
  display:inline-block;
  font-size:11px;
  font-weight:600;
  letter-spacing:0.05em;
  text-transform:uppercase;
  color:var(--orange-dark);
  padding:12px 16px 0;
  text-align:center;
  width:100%;
}
.hag-gallery__empty{
  text-align:center;
  padding:48px 20px;
  color:var(--gray-500);
  font-size:15.5px;
}

@media (max-width:560px){
  .hag-cat-tools{ flex-direction:column; align-items:stretch; }
  .hag-search{ max-width:none; }
}

/* ── Category card ─────────────────────────────────────────── */
.hag-cat-card{
  display:flex;
  flex-direction:column;
  background:var(--white);
  border-radius:var(--radius-md);
  overflow:hidden;
  border:1px solid var(--gray-100);
  box-shadow:var(--shadow-sm);
  cursor:pointer;
  transition:transform 0.38s var(--ease), box-shadow 0.38s var(--ease), border-color 0.38s;
  position:relative;
}
.hag-cat-card::after{
  content:'';
  position:absolute;
  bottom:0; left:0; right:0;
  height:3px;
  background:var(--orange);
  transform:scaleX(0);
  transform-origin:left;
  transition:transform 0.38s var(--ease);
}
.hag-cat-card:hover{
  transform:translateY(-8px);
  box-shadow:var(--shadow-lg);
  border-color:transparent;
}
.hag-cat-card:hover::after{ transform:scaleX(1); }

/* image area */
.hag-cat-card__thumb{
  position:relative;
  width:100%;
  aspect-ratio:16/10;
  background:var(--gray-bg);
  overflow:hidden;
  flex-shrink:0;
}
.hag-cat-card__thumb img{
  width:100%;
  height:100%;
  object-fit:contain;
  padding:20px;
  transition:transform 0.5s var(--ease);
  display:block;
}
.hag-cat-card:hover .hag-cat-card__thumb img{ transform:scale(1.07); }

.hag-cat-card__thumb-overlay{
  position:absolute;
  inset:0;
  background:rgba(16,42,67,0.60);
  display:flex;
  align-items:center;
  justify-content:center;
  opacity:0;
  transition:opacity 0.35s var(--ease);
}
.hag-cat-card__thumb-overlay i{
  font-size:42px;
  color:#fff;
}
.hag-cat-card:hover .hag-cat-card__thumb-overlay{ opacity:1; }

/* card body */
.hag-cat-card__body{
  display:flex;
  flex-direction:column;
  flex:1;
  padding:22px 22px 20px;
}
.hag-cat-card__meta{
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-bottom:12px;
}
.hag-cat-card__tag{
  font-family:var(--font-display);
  font-size:12px;
  font-weight:700;
  color:var(--orange-dark);
  background:rgba(242,107,33,0.09);
  border:1px solid rgba(242,107,33,0.2);
  padding:4px 11px;
  border-radius:var(--radius-full);
  letter-spacing:0.04em;
}
.hag-cat-card__count{
  font-size:12px;
  font-weight:500;
  color:var(--gray-500);
}
.hag-cat-card__title{
  font-family:var(--font-display);
  font-size:17px;
  font-weight:600;
  color:var(--navy);
  margin-bottom:10px;
  line-height:1.3;
}
.hag-cat-card__desc{
  font-size:13.5px;
  color:var(--gray-500);
  line-height:1.65;
  flex:1;
  margin-bottom:20px;
}

/* View Products button */
.hag-cat-card__btn{
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-family:var(--font-body);
  font-size:13.5px;
  font-weight:600;
  color:var(--navy);
  background:none;
  border:1.5px solid var(--gray-300);
  padding:10px 16px 10px 18px;
  border-radius:var(--radius-full);
  cursor:pointer;
  align-self:flex-start;
  transition:background 0.28s, color 0.28s, border-color 0.28s;
}
.hag-cat-card__btn-arrow{
  width:22px; height:22px;
  border-radius:50%;
  background:var(--gray-bg);
  display:flex; align-items:center; justify-content:center;
  font-size:13px;
  transition:background 0.28s, transform 0.28s var(--ease);
  flex-shrink:0;
}
.hag-cat-card:hover .hag-cat-card__btn{
  background:var(--navy);
  color:#fff;
  border-color:var(--navy);
}
.hag-cat-card:hover .hag-cat-card__btn-arrow{
  background:var(--orange);
  transform:translateX(4px);
}


/* ===== Product gallery panel ===== */
.hag-gallery{
  margin-top:64px;
  background:var(--white);
  border-radius:var(--radius-lg);
  box-shadow:var(--shadow-lg);
  padding:44px;
  display:none;
  border:1px solid var(--gray-100);
}
.hag-gallery.is-open{ display:block; animation:galleryIn 0.5s var(--ease); }
@keyframes galleryIn{ from{ opacity:0; transform:translateY(24px); } to{ opacity:1; transform:translateY(0); } }

.hag-gallery__head{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  margin-bottom:36px;
  padding-bottom:28px;
  border-bottom:1px solid var(--gray-100);
}
.hag-gallery__tag{
  display:inline-block;
  font-family:var(--font-display);
  font-size:13px;
  font-weight:700;
  color:var(--orange);
  background:rgba(242,107,33,0.1);
  padding:5px 13px;
  border-radius:var(--radius-full);
  margin-bottom:14px;
}
.hag-gallery__title{ font-family:var(--font-display); font-size:28px; font-weight:700; color:var(--navy); margin-bottom:6px; }
.hag-gallery__count{ font-size:14px; color:var(--gray-500); }
.hag-gallery__close{
  width:44px; height:44px;
  border-radius:50%;
  background:var(--gray-bg);
  color:var(--navy);
  display:flex; align-items:center; justify-content:center;
  font-size:20px;
  transition:background 0.25s, transform 0.25s;
  flex-shrink:0;
}
.hag-gallery__close:hover{ background:var(--orange); color:#fff; transform:rotate(90deg); }

.hag-product-grid{
  display:grid;
  grid-template-columns:repeat(5, 1fr);
  gap:22px;
}

.hag-product-card{
  background:var(--gray-bg);
  border-radius:var(--radius-md);
  overflow:hidden;
  border:1px solid var(--gray-100);
  transition:transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s;
  opacity:0;
  transform:translateY(16px);
}
.hag-product-card.is-visible{ opacity:1; transform:translateY(0); }
.hag-product-card:hover{ transform:translateY(-6px); box-shadow:var(--shadow-md); border-color:transparent; }

.hag-product-card__img{
  width:100%;
  aspect-ratio:1/1;
  background:#fff;
  display:flex; align-items:center; justify-content:center;
  padding:18px;
  position:relative;
  overflow:hidden;
}
.hag-product-card__img img{
  width:100%; height:100%;
  object-fit:contain;
  transition:transform 0.5s var(--ease);
}
.hag-product-card:hover .hag-product-card__img img{ transform:scale(1.06); }

.hag-product-card__name{
  font-size:13.5px;
  font-weight:500;
  color:var(--navy);
  padding:14px 16px 16px;
  line-height:1.4;
  text-align:center;
}

.hag-gallery__more{ text-align:center; margin-top:40px; }
.hag-gallery__more.is-hidden{ display:none; }

/* ==========================================================
   CONTACT
   ========================================================== */
.hag-contact{ padding:110px 0 120px; background:var(--white); }

.hag-contact__grid{
  display:grid;
  grid-template-columns:0.85fr 1.15fr;
  gap:56px;
}

.hag-contact__info{ display:flex; flex-direction:column; gap:18px; }
.hag-contact__card{
  display:flex;
  align-items:flex-start;
  gap:18px;
  background:var(--gray-bg);
  border-radius:var(--radius-md);
  padding:22px 24px;
}
.hag-contact__card i{
  font-size:22px;
  color:var(--orange);
  background:rgba(242,107,33,0.1);
  width:46px; height:46px;
  border-radius:12px;
  display:flex; align-items:center; justify-content:center;
  flex-shrink:0;
}
.hag-contact__card h4{ font-family:var(--font-display); font-size:14.5px; font-weight:600; color:var(--navy); margin-bottom:6px; }
.hag-contact__card a, .hag-contact__card p{ display:block; font-size:14.5px; color:var(--gray-500); }
.hag-contact__card a:hover{ color:var(--orange); }

.hag-contact__map{
  margin-top:8px;
  border-radius:var(--radius-md);
  overflow:hidden;
  height:220px;
  border:1px solid var(--gray-100);
}
.hag-contact__map iframe{ width:100%; height:100%; border:0; filter:grayscale(0.15); }

.hag-contact__form{
  background:var(--navy);
  border-radius:var(--radius-lg);
  padding:44px;
  position:relative;
  overflow:hidden;
}
.hag-contact__form::before{
  content:'';
  position:absolute;
  top:-80px; right:-80px;
  width:240px; height:240px;
  background:radial-gradient(circle, rgba(242,107,33,0.25) 0%, transparent 70%);
}
.hag-contact__form h3{
  font-family:var(--font-display);
  font-size:22px; font-weight:600;
  color:#fff;
  margin-bottom:28px;
  position:relative;
}
.hag-form__row{ display:grid; grid-template-columns:1fr 1fr; gap:18px; }
.hag-form__group{ margin-bottom:20px; position:relative; }
.hag-form__group label{
  display:block;
  font-size:13px;
  font-weight:500;
  color:rgba(255,255,255,0.75);
  margin-bottom:8px;
}
.hag-form__group input,
.hag-form__group select,
.hag-form__group textarea{
  width:100%;
  padding:13px 16px;
  border-radius:var(--radius-sm);
  border:1px solid rgba(255,255,255,0.16);
  background:rgba(255,255,255,0.06);
  color:#fff;
  backdrop-filter:blur(6px);
  transition:border-color 0.25s, background 0.25s;
}
.hag-form__group input::placeholder, .hag-form__group textarea::placeholder{ color:rgba(255,255,255,0.35); }
.hag-form__group input:focus,
.hag-form__group select:focus,
.hag-form__group textarea:focus{
  outline:none;
  border-color:var(--orange);
  background:rgba(255,255,255,0.1);
}
.hag-form__group select{ appearance:none; cursor:pointer; }
.hag-form__group select option{ background:var(--navy); color:#fff; }
.hag-form__group textarea{ resize:vertical; min-height:100px; }
.hag-form__note{ font-size:13.5px; color:var(--orange-light); margin-top:14px; min-height:18px; }

/* ==========================================================
   FOOTER
   ========================================================== */
.hag-footer{ background:var(--navy-deep); color:rgba(255,255,255,0.7); }
.hag-footer__grid{
  display:grid;
  grid-template-columns:1.6fr 1fr 1fr 1fr;
  gap:48px;
  padding:80px 28px 56px;
}
.hag-logo--footer{ margin-bottom:20px; }
.hag-logo--footer .hag-logo__mark{ background:var(--orange); color:#fff; }
.hag-footer__brand p{ font-size:14.5px; line-height:1.7; margin-bottom:24px; max-width:320px; }
.hag-footer__social{ display:flex; gap:12px; }
.hag-footer__social a{
  width:40px; height:40px;
  border-radius:50%;
  background:rgba(255,255,255,0.08);
  display:flex; align-items:center; justify-content:center;
  font-size:17px;
  transition:background 0.25s, transform 0.25s;
}
.hag-footer__social a:hover{ background:var(--orange); transform:translateY(-3px); }

.hag-footer__col h4{ font-family:var(--font-display); font-size:15px; font-weight:600; color:#fff; margin-bottom:22px; }
.hag-footer__col a, .hag-footer__col p{
  display:flex; align-items:center; gap:8px;
  font-size:14.5px;
  margin-bottom:14px;
  transition:color 0.25s;
}
.hag-footer__col a:hover{ color:var(--orange-light); }
.hag-footer__col i{ font-size:15px; color:var(--orange); flex-shrink:0; }

.hag-footer__bottom{ border-top:1px solid rgba(255,255,255,0.08); }
.hag-footer__bottom-inner{
  display:flex; justify-content:space-between; align-items:center;
  padding:24px 28px;
  font-size:13.5px;
  flex-wrap:wrap;
  gap:8px;
}

/* Floating WhatsApp */
.hag-whatsapp-float{
  position:fixed;
  bottom:28px; right:28px;
  width:58px; height:58px;
  background:#25D366;
  border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  color:#fff; font-size:28px;
  box-shadow:0 10px 30px rgba(37,211,102,0.45);
  z-index:900;
  transition:transform 0.3s var(--ease);
  animation:pulseWA 2.6s ease-in-out infinite;
}
.hag-whatsapp-float:hover{ transform:scale(1.1); }
@keyframes pulseWA{
  0%,100%{ box-shadow:0 10px 30px rgba(37,211,102,0.45); }
  50%{ box-shadow:0 10px 30px rgba(37,211,102,0.7), 0 0 0 10px rgba(37,211,102,0.08); }
}

/* ==========================================================
   FADE-UP SCROLL ANIMATION
   ========================================================== */
.fade-up{
  opacity:0;
  transform:translateY(32px);
  transition:opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.fade-up.is-visible{ opacity:1; transform:translateY(0); }

@media (prefers-reduced-motion: reduce){
  *{ animation-duration:0.01ms !important; animation-iteration-count:1 !important; transition-duration:0.01ms !important; }
  html{ scroll-behavior:auto; }
}

/* ==========================================================
   RESPONSIVE
   ========================================================== */
@media (max-width:1100px){
  .hag-cat-grid{ grid-template-columns:repeat(3, 1fr); }
  .hag-product-grid{ grid-template-columns:repeat(4, 1fr); }
  .hag-stats{ grid-template-columns:repeat(2, 1fr); }
  .hag-footer__grid{ grid-template-columns:1fr 1fr; }
}

@media (max-width:900px){
  .hag-nav{ display:none; }
  .hag-header__cta{ display:none; }
  .hag-burger{ display:flex; }

  .hag-nav.is-open{
    display:flex;
    flex-direction:column;
    position:fixed;
    top:0; right:0;
    width:78%; max-width:320px;
    height:100vh;
    background:var(--navy);
    padding:100px 36px 36px;
    gap:8px;
    box-shadow:-10px 0 40px rgba(0,0,0,0.3);
    z-index:999;
  }
  .hag-nav.is-open .hag-nav__link{ font-size:18px; padding:14px 0; border-bottom:1px solid rgba(255,255,255,0.08); }

  .hag-about__grid{ grid-template-columns:1fr; gap:48px; }
  .hag-about__image img{ height:320px; }
  .hag-about__badge{ left:16px; bottom:-22px; padding:16px 22px; }
  .hag-about__badge strong{ font-size:24px; }
  .hag-stats{ grid-template-columns:1fr 1fr; }

  .hag-cat-grid{ grid-template-columns:repeat(2, 1fr); }
  .hag-product-grid{ grid-template-columns:repeat(3, 1fr); }

  .hag-contact__grid{ grid-template-columns:1fr; }
  .hag-contact__form{ padding:32px; }

  .hag-footer__grid{ grid-template-columns:1fr; gap:40px; padding:64px 28px 40px; }
}

@media (max-width:560px){
  .hag-container{ padding:0 20px; }
  .hag-hero__title{ font-size:32px; }
  .hag-hero__subtitle{ font-size:15.5px; }
  .hag-hero__actions{ flex-direction:column; align-items:stretch; }
  .hag-hero__actions .hag-btn{ justify-content:center; }

  .hag-section__title{ font-size:28px; }
  .hag-about{ padding:80px 0 64px; }
  .hag-catalogue{ padding:72px 0 80px; }
  .hag-contact{ padding:72px 0 80px; }

  .hag-stats{ grid-template-columns:1fr; }
  .hag-cat-grid{ grid-template-columns:1fr; }
  .hag-product-grid{ grid-template-columns:repeat(2, 1fr); gap:14px; }
  .hag-gallery{ padding:28px 20px; }
  .hag-gallery__head{ flex-direction:column; gap:16px; }

  .hag-form__row{ grid-template-columns:1fr; }
  .hag-whatsapp-float{ width:52px; height:52px; font-size:24px; bottom:20px; right:20px; }
}
