/* ===========================================================
   Indicus Impex Private Limited — site stylesheet
   Palette derived from the company logo (navy / gold / terracotta)
   =========================================================== */

:root {
  --navy-900: #0f2743;
  --navy-800: #16325a;
  --navy-700: #1d3f6e;
  --gold-500: #c9982e;
  --gold-400: #d9ad4c;
  --terracotta: #c2542f;
  --bg: #f7f8fa;
  --bg-alt: #eef1f5;
  --text-dark: #1c2531;
  --text-muted: #5a6472;
  --white: #ffffff;
  --border: #e1e5eb;
  --shadow: 0 10px 30px rgba(15, 39, 67, 0.08);
  --radius: 14px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--text-dark);
  background: var(--bg);
  line-height: 1.65;
}

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

a { text-decoration: none; color: inherit; }

.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3, h4 {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--navy-900);
  margin: 0 0 16px;
  line-height: 1.25;
}

h1 { font-size: clamp(2rem, 4vw, 3rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); }
h3 { font-size: 1.3rem; }

p { margin: 0 0 16px; color: var(--text-muted); }

.eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--terracotta);
  margin-bottom: 10px;
}

.section {
  padding: 72px 0;
}
.section-alt { background: var(--bg-alt); }
.section-navy {
  background: linear-gradient(135deg, var(--navy-900), var(--navy-700));
  color: var(--white);
}
.section-navy h2, .section-navy h3 { color: var(--white); }
.section-navy p { color: rgba(255,255,255,0.78); }

.section-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 48px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.btn-primary {
  background: var(--gold-500);
  color: var(--navy-900);
}
.btn-primary:hover { background: var(--gold-400); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(201,152,46,0.35); }
.btn-outline {
  background: transparent;
  border-color: rgba(255,255,255,0.6);
  color: var(--white);
}
.btn-outline:hover { background: rgba(255,255,255,0.12); transform: translateY(-2px); }
.btn-outline-navy {
  background: transparent;
  border-color: var(--navy-800);
  color: var(--navy-800);
}
.btn-outline-navy:hover { background: var(--navy-800); color: var(--white); }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #ffffff;
  border-bottom: 1px solid var(--border);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand-logo {
  height: 66px;
  width: auto;
  display: block;
}
.brand-mark {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name {
  font-family: Georgia, serif;
  font-weight: 700;
  font-size: 1.18rem;
  color: var(--navy-900);
  letter-spacing: 0.01em;
}
.brand-sub {
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-500);
  font-weight: 700;
  margin-top: 2px;
}

nav.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
nav.main-nav a {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy-800);
  position: relative;
  padding: 6px 0;
}
nav.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0%;
  height: 2px;
  background: var(--gold-500);
  transition: width 0.2s ease;
}
nav.main-nav a:hover::after,
nav.main-nav a.active::after { width: 100%; }
nav.main-nav a.active { color: var(--terracotta); }

.nav-cta { margin-left: 8px; }
.nav-cta .btn { padding: 10px 22px; font-size: 0.88rem; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  width: 26px; height: 2px; background: var(--navy-900); border-radius: 2px;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-700) 55%, var(--navy-800) 100%);
  color: var(--white);
  overflow: hidden;
  padding: 100px 0 90px;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    radial-gradient(circle at 85% 20%, rgba(201,152,46,0.25), transparent 45%),
    radial-gradient(circle at 10% 90%, rgba(194,84,47,0.2), transparent 40%);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image: url('../images/product-pattern.svg');
  background-repeat: repeat;
  background-size: 320px 160px;
  opacity: 0.14;
  mix-blend-mode: luminosity;
  pointer-events: none;
}
.hero-photo::after {
  background-image:
    linear-gradient(135deg, rgba(15,39,67,0.88), rgba(22,50,90,0.82) 55%, rgba(15,39,67,0.9)),
    url('https://commons.wikimedia.org/wiki/Special:FilePath/Aerial_photograph_of_a_cargo_ship.jpg?width=1600');
  background-size: cover;
  background-position: center;
  opacity: 1;
  mix-blend-mode: normal;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 720px;
}
.hero h1 { color: var(--white); }
.hero p.lead {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.85);
  max-width: 560px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 28px; }

.hero-page {
  padding: 64px 0 56px;
}

.stat-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 56px;
  position: relative;
  z-index: 2;
}
.stat-strip div { text-align: center; }
.stat-num {
  font-family: Georgia, serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold-400);
}
.stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.75);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ---------- Cards / Grids ---------- */
.grid {
  display: grid;
  gap: 28px;
}
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px 26px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: 0 18px 40px rgba(15,39,67,0.14); }

/* ---------- Photo product cards ---------- */
.card-photo { padding: 0; overflow: hidden; }
.card-photo .card-media {
  position: relative;
  height: 170px;
  overflow: hidden;
}
.card-photo .card-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}
.card-photo:hover .card-media img { transform: scale(1.06); }
.card-photo .card-media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(15,39,67,0) 55%, rgba(15,39,67,0.55));
}
.card-photo .media-badge {
  position: absolute;
  top: 12px; left: 12px;
  z-index: 2;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 11px;
  border-radius: 999px;
  background: rgba(255,255,255,0.92);
  color: var(--navy-800);
}
.card-photo .media-badge.import-badge { background: var(--terracotta); color: #fff; }
.card-photo .card-body { padding: 24px 26px 28px; }
.card-photo .card-body .tag { margin-top: 2px; }

.photo-credit {
  font-size: 0.68rem;
  color: var(--text-muted);
  opacity: 0.6;
  margin-top: -10px;
}

.icon-badge {
  width: 56px; height: 56px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--navy-900), var(--navy-700));
  color: var(--gold-400);
  margin-bottom: 18px;
}
.icon-badge svg { width: 28px; height: 28px; }

.tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 10px;
}
.tag-export { background: rgba(29,63,110,0.1); color: var(--navy-700); }
.tag-import { background: rgba(194,84,47,0.12); color: var(--terracotta); }

.product-items {
  list-style: none;
  padding: 0; margin: 14px 0 0;
  font-size: 0.88rem;
  color: var(--text-muted);
}
.product-items li { padding: 4px 0; border-top: 1px dashed var(--border); }
.product-items li:first-child { border-top: none; }

/* ---------- Country cards ---------- */
.country-card {
  background: var(--white);
  border-radius: 12px;
  padding: 18px 20px;
  border: 1px solid var(--border);
  display: flex; align-items: center; gap: 14px;
  box-shadow: 0 4px 14px rgba(15,39,67,0.05);
}
.country-flag { font-size: 1.8rem; line-height: 1; }
.country-name { font-weight: 700; color: var(--navy-900); }
.country-role { font-size: 0.78rem; color: var(--text-muted); }

.market-block { margin-bottom: 46px; }
.market-block h3 {
  display: flex; align-items: center; gap: 10px;
}

/* ---------- Branch / office cards ---------- */
.branch-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.branch-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 26px 24px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.branch-card.head-office { border-top: 4px solid var(--gold-500); }
.branch-card.branch-office { border-top: 4px solid var(--navy-700); }
.branch-flag { font-size: 1.8rem; margin-bottom: 6px; }
.branch-country {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: var(--terracotta);
}
.branch-entity {
  font-family: Georgia, serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy-900);
  margin: 4px 0 14px;
}
.branch-line {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.branch-line svg { width: 16px; height: 16px; flex-shrink: 0; color: var(--navy-700); }
.branch-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  padding: 8px 16px;
  border-radius: 999px;
  background: #25D366;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
}
.branch-whatsapp svg { width: 15px; height: 15px; fill: #fff; }
.branch-whatsapp:hover { filter: brightness(1.06); }

/* ---------- Timeline / Values ---------- */
.value-row {
  display: flex;
  gap: 20px;
  padding: 22px 0;
  border-top: 1px solid var(--border);
}
.value-row:first-child { border-top: none; }
.value-num {
  font-family: Georgia, serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold-500);
  min-width: 46px;
}

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: start;
}
.contact-info-card {
  background: var(--navy-900);
  color: var(--white);
  border-radius: var(--radius);
  padding: 36px 30px;
}
.contact-info-card h3 { color: var(--white); }
.contact-line {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 22px;
}
.contact-line .icon-badge { margin-bottom: 0; width: 42px; height: 42px; border-radius: 10px; background: rgba(255,255,255,0.1); }
.contact-line .icon-badge svg { width: 20px; height: 20px; }
.contact-line strong { display: block; color: var(--white); font-size: 0.95rem; }
.contact-line span { color: rgba(255,255,255,0.7); font-size: 0.88rem; }

form.inquiry {
  background: var(--white);
  border-radius: var(--radius);
  padding: 34px 30px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--navy-900);
  margin-bottom: 6px;
}
.field input, .field select, .field textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid var(--border);
  font-size: 0.92rem;
  font-family: inherit;
  background: var(--bg);
}
.field textarea { resize: vertical; min-height: 110px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--gold-500); background: var(--white);
}
.form-note { font-size: 0.8rem; color: var(--text-muted); margin-top: 10px; }

/* ---------- Footer ---------- */
footer.site-footer {
  background: var(--navy-900);
  color: rgba(255,255,255,0.75);
  padding: 54px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 32px;
  padding-bottom: 34px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer-grid h4 { color: var(--white); font-size: 0.95rem; margin-bottom: 16px; }
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { margin-bottom: 10px; font-size: 0.88rem; }
.footer-grid a:hover { color: var(--gold-400); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 22px; font-size: 0.8rem; flex-wrap: wrap; gap: 10px;
}
.footer-credit {
  text-align: center;
  font-size: 0.7rem;
  color: rgba(255,255,255,0.4);
  margin-top: 10px;
}
.footer-credit a { color: rgba(255,255,255,0.55); text-decoration: underline; }
.footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer-brand .brand-name { color: var(--white); }
.footer-logo {
  height: 84px;
  width: auto;
  background: #ffffff;
  padding: 10px 14px;
  border-radius: 12px;
  display: block;
}

/* ---------- WhatsApp floating button ---------- */
.whatsapp-fab {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 26px rgba(0,0,0,0.25);
  z-index: 200;
  transition: transform 0.15s ease;
}
.whatsapp-fab:hover { transform: scale(1.08); }
.whatsapp-fab svg { width: 30px; height: 30px; fill: #fff; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .stat-strip { grid-template-columns: repeat(2, 1fr); row-gap: 28px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .branch-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  nav.main-nav {
    position: fixed;
    top: 92px; left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 24px 28px;
    gap: 18px;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 14px 30px rgba(15,39,67,0.1);
    transform: translateY(-130%);
    opacity: 0;
    transition: transform 0.25s ease, opacity 0.25s ease;
  }
  nav.main-nav.open { transform: translateY(0); opacity: 1; }
  .nav-toggle { display: flex; }
  .nav-cta { margin-left: 0; }
  .brand-logo { height: 54px; }
  .grid-4, .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .branch-grid { grid-template-columns: 1fr; }
}
