/* ========================================
   ALY APPAREL EPZ LIMITED — MAIN STYLES
   ======================================== */

:root {
  --green-dark: #1a3d2b;
  --green-mid: #2d6a4f;
  --green-light: #52b788;
  --green-pale: #d8f3dc;
  --white: #ffffff;
  --off-white: #f8faf8;
  --text: #1a2e1f;
  --text-muted: #5a7262;
  --border: #c8e6c9;
  --shadow: 0 4px 24px rgba(26,61,43,0.10);
  --shadow-lg: 0 12px 48px rgba(26,61,43,0.15);
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', sans-serif;
  --radius: 12px;
  --transition: 0.3s ease;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  font-size: 16px;
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* BUTTONS */
.btn-primary {
  display: inline-block;
  background: var(--green-dark);
  color: var(--white);
  padding: 12px 28px;
  border-radius: 6px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.02em;
  transition: background var(--transition), transform var(--transition);
  border: 2px solid var(--green-dark);
}
.btn-primary:hover { background: var(--green-mid); border-color: var(--green-mid); transform: translateY(-1px); }
.btn-primary.large { padding: 16px 36px; font-size: 16px; }

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--white);
  padding: 12px 28px;
  border-radius: 6px;
  font-weight: 500;
  font-size: 15px;
  border: 2px solid rgba(255,255,255,0.7);
  transition: all var(--transition);
}
.btn-outline:hover { background: rgba(255,255,255,0.15); border-color: var(--white); }
.btn-outline.large { padding: 16px 36px; font-size: 16px; }

.btn-white {
  display: inline-block;
  background: var(--white);
  color: var(--green-dark);
  padding: 12px 28px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 15px;
  border: 2px solid var(--white);
  transition: all var(--transition);
}
.btn-white:hover { background: var(--green-pale); }
.btn-white.large { padding: 16px 36px; font-size: 16px; }

/* SECTION COMMON */
.section { padding: 96px 0; }
.section-head { text-align: center; margin-bottom: 56px; }
.section-head h2 { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; color: var(--green-dark); margin-bottom: 16px; }
.section-head p { font-size: 17px; color: var(--text-muted); max-width: 600px; margin: 0 auto; }
.label {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--green-mid);
  background: var(--green-pale);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}

/* ========== NAVBAR ========== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
.navbar.scrolled { box-shadow: var(--shadow); }
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
}
.nav-logo img { height: 48px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 2px;
  background: var(--green-mid);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--green-dark); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--green-dark); transition: all var(--transition); border-radius: 2px; }
.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 16px 24px 24px;
  background: var(--white);
  border-top: 1px solid var(--border);
  gap: 4px;
}
.mobile-menu a {
  padding: 12px 0;
  font-weight: 500;
  border-bottom: 1px solid var(--border);
  color: var(--text);
}
.mobile-menu a.btn-primary { margin-top: 12px; text-align: center; border-bottom: none; }
.mobile-menu.open { display: flex; }

/* ========== HERO ========== */
.hero {
  min-height: 100vh;
  background: var(--green-dark);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 24px 80px;
  gap: 48px;
  max-width: 100%;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 50%, rgba(82,183,136,0.12) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(45,106,79,0.3) 0%, transparent 50%);
  pointer-events: none;
}
.hero::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  border-radius: 50%;
  border: 80px solid rgba(255,255,255,0.03);
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  margin: 0 auto;
  flex: 1;
}
.hero-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-light);
  border: 1px solid rgba(82,183,136,0.4);
  padding: 8px 16px;
  border-radius: 100px;
  margin-bottom: 28px;
}
.hero-content h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
}
.hero-content h1 em {
  font-style: italic;
  color: var(--green-light);
}
.hero-content p {
  font-size: 18px;
  color: rgba(255,255,255,0.78);
  margin-bottom: 36px;
  max-width: 560px;
  line-height: 1.7;
}
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 56px; }
.hero-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.stat span { font-size: 13px; color: rgba(255,255,255,0.6); margin-top: 4px; display: block; }

.hero-img-col {
  position: relative;
  z-index: 2;
  flex: 0 0 280px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  animation: floatIn 0.8s ease 0.3s both;
}
@keyframes floatIn { from { opacity: 0; transform: translateX(40px); } to { opacity: 1; transform: translateX(0); } }
.hero-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(12px);
  border-radius: var(--radius);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--white);
  font-weight: 500;
  font-size: 15px;
  transition: background var(--transition);
}
.hero-card:hover { background: rgba(255,255,255,0.12); }
.card-icon { font-size: 24px; }

/* ========== AGOA BANNER ========== */
.agoa-banner {
  background: linear-gradient(135deg, var(--green-mid) 0%, var(--green-dark) 100%);
  padding: 48px 0;
}
.agoa-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.agoa-flag { font-size: 32px; white-space: nowrap; }
.agoa-text { flex: 1; }
.agoa-text strong { display: block; font-size: 20px; font-weight: 600; color: var(--white); margin-bottom: 6px; }
.agoa-text p { color: rgba(255,255,255,0.82); font-size: 15px; }
.agoa-text em { color: var(--green-pale); font-style: normal; font-weight: 600; }

/* ========== PRODUCTS ========== */
.products-preview { background: var(--off-white); }
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.prod-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: all var(--transition);
}
.prod-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.prod-card.featured {
  background: var(--green-dark);
  color: var(--white);
  border-color: var(--green-dark);
}
.prod-card.featured h3, .prod-card.featured p { color: var(--white); }
.prod-card.featured a { color: var(--green-light); }
.prod-icon { font-size: 36px; margin-bottom: 16px; }
.prod-card h3 { font-family: var(--font-display); font-size: 1.4rem; font-weight: 700; margin-bottom: 10px; color: var(--green-dark); }
.prod-card p { font-size: 14px; color: var(--text-muted); line-height: 1.65; margin-bottom: 16px; }
.prod-card a { font-size: 14px; font-weight: 600; color: var(--green-mid); transition: color var(--transition); }
.prod-card a:hover { color: var(--green-dark); }

/* ========== WHY US ========== */
.why-us { background: var(--white); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.why-text .label { margin-bottom: 16px; }
.why-text h2 { font-family: var(--font-display); font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 700; color: var(--green-dark); margin-bottom: 20px; }
.why-text p { color: var(--text-muted); margin-bottom: 28px; font-size: 16px; }
.why-list { margin-bottom: 36px; display: flex; flex-direction: column; gap: 12px; }
.why-list li { display: flex; align-items: center; gap: 12px; font-size: 15px; color: var(--text); }
.check {
  width: 22px; height: 22px;
  background: var(--green-pale);
  color: var(--green-mid);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700;
  flex-shrink: 0;
}
.why-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.why-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: all var(--transition);
}
.why-card:hover { border-color: var(--green-light); box-shadow: var(--shadow); }
.why-num { font-family: var(--font-display); font-size: 2rem; font-weight: 700; color: var(--green-pale); margin-bottom: 10px; }
.why-card h4 { font-weight: 600; font-size: 15px; color: var(--green-dark); margin-bottom: 8px; }
.why-card p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

/* ========== PROCESS ========== */
.process { background: var(--off-white); }
.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  flex-wrap: wrap;
  justify-content: center;
}
.step {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  flex: 1;
  min-width: 160px;
  max-width: 200px;
  transition: all var(--transition);
}
.step:hover { border-color: var(--green-light); box-shadow: var(--shadow); transform: translateY(-4px); }
.step-num {
  width: 44px; height: 44px;
  background: var(--green-dark);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0 auto 14px;
}
.step h4 { font-weight: 600; font-size: 14px; color: var(--green-dark); margin-bottom: 8px; }
.step p { font-size: 13px; color: var(--text-muted); line-height: 1.55; }
.step-arrow { font-size: 20px; color: var(--green-light); padding: 0 4px; margin-top: 44px; flex-shrink: 0; }

/* ========== CTA BAND ========== */
.cta-band {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-mid) 100%);
  padding: 80px 0;
}
.cta-inner { text-align: center; }
.cta-inner h2 { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; color: var(--white); margin-bottom: 16px; }
.cta-inner p { font-size: 17px; color: rgba(255,255,255,0.8); margin-bottom: 36px; max-width: 560px; margin-left: auto; margin-right: auto; }

/* ========== FOOTER ========== */
.footer {
  background: var(--text);
  color: rgba(255,255,255,0.7);
  padding: 72px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand img { height: 52px; width: auto; margin-bottom: 16px; filter: brightness(0) invert(1); opacity: 0.9; }
.footer-brand p { font-size: 14px; line-height: 1.7; }
.footer-col h5 { font-size: 13px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--white); margin-bottom: 16px; }
.footer-col a, .footer-col p { display: block; font-size: 14px; margin-bottom: 10px; color: rgba(255,255,255,0.65); transition: color var(--transition); }
.footer-col a:hover { color: var(--green-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.45);
}

/* ========== PAGE HERO (inner pages) ========== */
.page-hero {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-mid) 100%);
  padding: 140px 24px 80px;
  text-align: center;
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}
.page-hero p { font-size: 18px; color: rgba(255,255,255,0.78); max-width: 600px; margin: 0 auto; }

/* ========== FORM ========== */
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 14px; font-weight: 500; color: var(--text); margin-bottom: 6px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--green-mid); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

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

@media (max-width: 768px) {
  .nav-links, .navbar .btn-primary { display: none; }
  .hamburger { display: flex; }
  .hero { flex-direction: column; padding: 100px 20px 60px; }
  .hero-img-col { flex: none; width: 100%; flex-direction: row; flex-wrap: wrap; }
  .hero-card { flex: 1; min-width: 140px; }
  .process-steps { flex-direction: column; align-items: center; }
  .step { max-width: 100%; width: 100%; }
  .step-arrow { transform: rotate(90deg); margin: 0; }
  .why-cards { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .section { padding: 64px 0; }
  .agoa-inner { flex-direction: column; text-align: center; }
  .hero-stats { gap: 24px; }
}

/* ANIMATIONS */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-content { animation: fadeUp 0.7s ease both; }
.hero-tag { animation: fadeUp 0.5s ease both; }
