/* ===== ANA GENERAL TRADING LLC — Global Styles ===== */
@import url('https://fonts.googleapis.com/css2?family=Exo+2:wght@400;500;600;700;800;900&family=Nunito+Sans:wght@300;400;600;700&display=swap');

:root {
  --navy:   #1B3D8F;
  --navy-dark: #142f6e;
  --red:    #D4202A;
  --white:  #ffffff;
  --light:  #f4f6fb;
  --gray:   #666;
  --dot:    rgba(255,255,255,0.15);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito Sans', sans-serif;
  color: #222;
  background: var(--white);
  overflow-x: hidden;
}

/* ===== HEADER ===== */
header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: var(--navy);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-icon {
  width: 48px;
  height: 48px;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.logo-text .brand {
  font-family: 'Exo 2', sans-serif;
  font-size: 20px;
  font-weight: 900;
  color: var(--white);
  letter-spacing: 0.5px;
}
.logo-text .tagline {
  font-size: 10px;
  font-weight: 400;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* Nav */
nav { display: flex; align-items: center; gap: 4px; }

nav a {
  font-family: 'Exo 2', sans-serif;
  font-size: 13.5px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 4px;
  letter-spacing: 0.3px;
  transition: all 0.2s;
  position: relative;
}
nav a:hover, nav a.active {
  color: var(--white);
  background: rgba(255,255,255,0.1);
}
nav a.active::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 50%;
  transform: translateX(-50%);
  width: 20px; height: 2px;
  background: var(--red);
  border-radius: 2px;
}

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: all 0.3s; }

/* Mobile nav */
.mobile-nav {
  display: none;
  background: var(--navy-dark);
  padding: 12px 24px 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.mobile-nav.open { display: block; }
.mobile-nav a {
  display: block;
  font-family: 'Exo 2', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  text-decoration: none;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.mobile-nav a:last-child { border-bottom: none; }

/* ===== RED DIVIDER ACCENT ===== */
.red-bar {
  width: 40px; height: 4px;
  background: var(--red);
  border-radius: 2px;
  margin-bottom: 14px;
}

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  background: var(--navy);
  padding: 56px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 200px; height: 200px;
  background-image: radial-gradient(circle, rgba(255,255,255,0.12) 1.5px, transparent 1.5px);
  background-size: 14px 14px;
  border-radius: 50%;
}
.page-hero h1 { 
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.5px;
}
.page-hero .red-line {
  width: 60px; height: 4px;
  background: var(--red);
  margin: 12px auto 0;
  border-radius: 2px;
}
.page-hero p {
  margin-top: 12px;
  color: rgba(255,255,255,0.7);
  font-size: 16px;
  max-width: 560px;
  margin-left: auto; margin-right: auto;
}

/* ===== SPLIT LAYOUT (matches slide design) ===== */
.split-section {
  display: grid;
  grid-template-columns: 360px 1fr;
  min-height: 480px;
}

.split-left {
  background: var(--white);
  display: flex;
  flex-direction: column;
  border-right: 5px solid var(--red);
  overflow: hidden;
}
/* top content area: logo + heading */
.split-left .split-left-top {
  padding: 32px 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.split-left .section-logo {
  width: 72px;
}
.split-left h2 {
  font-family: 'Exo 2', sans-serif;
  font-size: 30px;
  font-weight: 900;
  color: #111;
  line-height: 1.15;
}
/* photo fills the remaining height */
.split-left .side-photo {
  flex: 1;
  width: 100%;
  min-height: 220px;
  object-fit: cover;
  object-position: center top;
  display: block;
  filter: grayscale(100%);
}

.split-right {
  background: var(--navy);
  padding: 48px 52px;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.split-right::after {
  content: '';
  position: absolute;
  top: -20px; right: -20px;
  width: 180px; height: 180px;
  background-image: radial-gradient(circle, rgba(255,255,255,0.1) 1.5px, transparent 1.5px);
  background-size: 14px 14px;
  pointer-events: none;
}

.split-right p {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255,255,255,0.9);
  margin-bottom: 16px;
}
.split-right p:last-child { margin-bottom: 0; }

/* service icon header */
.service-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}
.service-icon {
  width: 54px; height: 54px;
  background: var(--red);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
}
.service-icon svg { width: 28px; height: 28px; fill: white; }
.service-header h3 {
  font-family: 'Exo 2', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
}

/* ===== WHY CHOOSE US LIST ===== */
.check-list { list-style: none; display: flex; flex-direction: column; gap: 24px; }
.check-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.check-list .check-icon {
  width: 24px; height: 24px;
  flex-shrink: 0;
  background: var(--red);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-top: 2px;
}
.check-list .check-icon svg { width: 13px; height: 13px; stroke: white; fill: none; stroke-width: 2.5; }
.check-list strong {
  font-family: 'Exo 2', sans-serif;
  font-size: 16px;
  font-weight: 700;
  display: block;
  margin-bottom: 4px;
}
.check-list p {
  font-size: 14px;
  color: rgba(255,255,255,0.82);
  line-height: 1.6;
  margin-bottom: 0 !important;
}

/* ===== CONTACT SECTION ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.contact-addresses { display: flex; flex-direction: column; gap: 28px; margin-bottom: 32px; }
.contact-location strong {
  font-family: 'Exo 2', sans-serif;
  font-size: 17px;
  font-weight: 800;
  display: block;
  margin-bottom: 6px;
}
.contact-location p {
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  line-height: 1.6;
  margin-bottom: 0 !important;
}
.contact-info { display: flex; flex-direction: column; gap: 14px; margin-top: 8px; }
.contact-info a {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}
.contact-info a:hover { color: var(--white); }
.contact-info .ci-icon {
  width: 36px; height: 36px;
  background: var(--red);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-info .ci-icon svg { width: 16px; height: 16px; stroke: white; fill: none; stroke-width: 2; }

/* Contact Form */
.contact-form { padding: 40px; background: var(--white); }
.contact-form h3 {
  font-family: 'Exo 2', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 24px;
}
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.form-group input, .form-group textarea, .form-group select {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid #ddd;
  border-radius: 6px;
  font-family: 'Nunito Sans', sans-serif;
  font-size: 14px;
  color: #333;
  transition: border-color 0.2s;
  outline: none;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: var(--navy);
}
.form-group textarea { min-height: 110px; resize: vertical; }
.btn-submit {
  background: var(--red);
  color: white;
  border: none;
  padding: 13px 36px;
  font-family: 'Exo 2', sans-serif;
  font-size: 15px;
  font-weight: 700;
  border-radius: 6px;
  cursor: pointer;
  letter-spacing: 0.5px;
  transition: background 0.2s, transform 0.1s;
}
.btn-submit:hover { background: #b81820; transform: translateY(-1px); }

/* ===== PRODUCTS PAGE ===== */
.products-intro { background: var(--navy); color: white; padding: 40px 52px; }
.products-intro h3 {
  font-family: 'Exo 2', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 6px;
}
.products-intro .subtitle {
  font-size: 14px;
  color: var(--red);
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.products-intro p {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255,255,255,0.88);
  margin-bottom: 16px;
}
.flavour-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}
.flavour-tag {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  color: white;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
}

/* ===== HOME PAGE ===== */
.home-hero {
  background: var(--navy);
  min-height: 520px;
  display: flex;
  align-items: center;
  padding: 60px 24px;
  position: relative;
  overflow: hidden;
}
.home-hero::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 320px; height: 320px;
  background-image: radial-gradient(circle, rgba(255,255,255,0.1) 1.5px, transparent 1.5px);
  background-size: 16px 16px;
}
.home-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 5px;
  background: var(--red);
}
.home-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 1;
}
.home-hero h1 {
  font-family: 'Exo 2', sans-serif;
  font-size: clamp(38px, 6vw, 72px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 20px;
  letter-spacing: -1px;
}
.home-hero h1 span { color: var(--red); }
.home-hero p {
  font-size: clamp(16px, 2vw, 20px);
  color: rgba(255,255,255,0.75);
  max-width: 540px;
  line-height: 1.6;
  margin-bottom: 36px;
}
.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-primary {
  background: var(--red);
  color: white;
  text-decoration: none;
  padding: 14px 32px;
  border-radius: 6px;
  font-family: 'Exo 2', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.3px;
  transition: all 0.2s;
  display: inline-block;
}
.btn-primary:hover { background: #b81820; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(212,32,42,0.4); }
.btn-outline {
  background: transparent;
  color: white;
  text-decoration: none;
  padding: 14px 32px;
  border-radius: 6px;
  border: 2px solid rgba(255,255,255,0.4);
  font-family: 'Exo 2', sans-serif;
  font-size: 15px;
  font-weight: 700;
  transition: all 0.2s;
  display: inline-block;
}
.btn-outline:hover { border-color: white; background: rgba(255,255,255,0.08); }

/* Home cards grid */
.home-cards {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.card {
  border: 1.5px solid #e5e8f0;
  border-radius: 10px;
  padding: 28px 24px;
  transition: all 0.3s;
  text-decoration: none;
  color: inherit;
  display: block;
}
.card:hover { border-color: var(--navy); box-shadow: 0 8px 32px rgba(27,61,143,0.12); transform: translateY(-4px); }
.card-icon {
  width: 48px; height: 48px;
  background: var(--navy);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.card-icon svg { width: 24px; height: 24px; fill: white; }
.card h3 {
  font-family: 'Exo 2', sans-serif;
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--navy);
}
.card p { font-size: 14px; color: var(--gray); line-height: 1.6; }

.section-title-block {
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 24px 0;
}
.section-title-block span {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--red);
}
.section-title-block h2 {
  font-family: 'Exo 2', sans-serif;
  font-size: 36px;
  font-weight: 900;
  color: var(--navy);
  margin-top: 8px;
}

/* ===== FOOTER ===== */
footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.75);
  margin-top: 80px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 24px 32px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
}
footer h4 {
  font-family: 'Exo 2', sans-serif;
  font-size: 14px;
  font-weight: 800;
  color: white;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
footer p, footer address { font-size: 13.5px; line-height: 1.8; font-style: normal; }
footer a { color: rgba(255,255,255,0.7); text-decoration: none; display: block; font-size: 13.5px; line-height: 2; }
footer a:hover { color: white; }
.footer-logo-text {
  font-family: 'Exo 2', sans-serif;
  font-size: 22px;
  font-weight: 900;
  color: white;
  margin-bottom: 10px;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  padding: 18px 24px;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}
.footer-bottom span { color: var(--red); }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .split-section { grid-template-columns: 1fr; }
  .split-left { border-right: none; border-bottom: 5px solid var(--red); }
  .split-left .side-photo { max-height: 220px; flex: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  nav { display: none; }
  .hamburger { display: flex; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .split-right { padding: 32px 24px; }
  .contact-form { padding: 28px 20px; }
  .products-intro { padding: 32px 24px; }
}
