/* ============================================================
   OSA EXPORTS WAY PVT LIMITED — Master Stylesheet
   Colors: Deep Red #8B0000 / #C41230, Black #0A0A0A,
           White #FFFFFF, Gold #C9A84C
   ============================================================ */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;900&family=Inter:wght@300;400;500;600;700&display=swap');

/* ── CSS Variables ── */
:root {
  --red:        #C41230;
  --red-dark:   #8B0000;
  --red-deeper: #5a000f;
  --gold:       #C9A84C;
  --gold-light: #e8c97a;
  --black:      #0A0A0A;
  --dark:       #111111;
  --dark2:      #1a1a1a;
  --dark3:      #222222;
  --mid:        #333333;
  --gray:       #999999;
  --light-gray: #d0d0d0;
  --white:      #FFFFFF;
  --off-white:  #f8f5f0;
  --border:     rgba(201,168,76,0.25);

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', sans-serif;

  --transition:   0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-lg:    0 20px 60px rgba(0,0,0,0.5);
  --shadow-card:  0 8px 32px rgba(0,0,0,0.35);
  --radius:       6px;
  --max-width:    1240px;
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { border: none; cursor: pointer; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--red); border-radius: 3px; }

/* ── Selection ── */
::selection { background: var(--red); color: var(--white); }

/* ── Utility ── */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.section-pad { padding: 100px 0; }
.section-pad-sm { padding: 60px 0; }
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.text-red { color: var(--red); }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* ── Gold Divider ── */
.gold-divider {
  width: 60px; height: 3px;
  background: linear-gradient(90deg, var(--red), var(--gold));
  margin: 16px auto 0;
  border-radius: 2px;
}
.gold-divider.left { margin: 16px 0 0; }

/* ── Section Headers ── */
.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--white);
}
.section-subtitle {
  font-size: 1.05rem;
  color: var(--light-gray);
  max-width: 640px;
  margin: 20px auto 0;
  line-height: 1.8;
}

/* ─────────────────────────────────────────
   NAVIGATION
────────────────────────────────────────── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0 24px;
  transition: background var(--transition), box-shadow var(--transition);
}
.navbar.scrolled {
  background: rgba(10,10,10,0.97);
  box-shadow: 0 2px 20px rgba(0,0,0,0.5);
  backdrop-filter: blur(12px);
}
.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav-logo {
  display: flex; flex-direction: column;
  line-height: 1;
}
.nav-logo-main {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.01em;
}
.nav-logo-main span { color: var(--gold); }
.nav-logo-sub {
  font-size: 0.63rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 3px;
}
.nav-links {
  display: flex; gap: 0; align-items: center;
}
.nav-links a {
  padding: 8px 18px;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--light-gray);
  position: relative;
  transition: color var(--transition);
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: 2px; left: 18px; right: 18px; height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }
.nav-links a.active { color: var(--white); }
.nav-cta {
  background: var(--red);
  color: var(--white) !important;
  padding: 10px 22px !important;
  border-radius: var(--radius);
  font-weight: 600 !important;
  transition: background var(--transition) !important;
}
.nav-cta:hover { background: var(--red-dark) !important; }
.nav-cta::after { display: none !important; }
.nav-toggle {
  display: none;
  flex-direction: column; gap: 5px;
  background: transparent; padding: 6px;
  border-radius: 4px;
}
.nav-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* ─────────────────────────────────────────
   HERO
────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('../images/hero_meat.png');
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  animation: heroZoom 18s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1.05); }
  to   { transform: scale(1.15); }
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10,10,10,0.92) 0%,
    rgba(140,0,0,0.45) 50%,
    rgba(10,10,10,0.88) 100%
  );
}
.hero-content {
  position: relative; z-index: 2;
  max-width: var(--max-width);
  margin: 0 auto; padding: 0 24px;
  padding-top: 72px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.4);
  padding: 7px 18px;
  border-radius: 30px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  animation: fadeUp 0.8s ease both;
}
.hero-badge::before {
  content: '';
  display: inline-block; width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 1.05;
  color: var(--white);
  max-width: 720px;
  animation: fadeUp 0.8s 0.15s ease both;
}
.hero-title em {
  font-style: normal;
  background: linear-gradient(90deg, var(--red) 0%, var(--gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-description {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.90);
  max-width: 540px;
  margin: 24px 0 40px;
  line-height: 1.8;
  animation: fadeUp 0.8s 0.3s ease both;
}
.hero-actions {
  display: flex; gap: 16px; flex-wrap: wrap;
  animation: fadeUp 0.8s 0.45s ease both;
}
.hero-stats {
  display: flex; gap: 48px; flex-wrap: wrap;
  margin-top: 70px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.12);
  animation: fadeUp 0.8s 0.6s ease both;
}
.hero-stat-number {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #c0c0c0;
  margin-top: 5px;
}
.hero-scroll {
  position: absolute; bottom: 36px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  z-index: 2;
  animation: fadeIn 1s 1s ease both;
}
.hero-scroll span {
  font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}
.scroll-arrow {
  width: 28px; height: 28px;
  border: 2px solid rgba(201,168,76,0.5);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  animation: bounce 2s ease-in-out infinite;
}
.scroll-arrow svg { width: 12px; height: 12px; fill: var(--gold); }
@keyframes bounce {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(6px); }
}

/* ─────────────────────────────────────────
   BUTTONS
────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  transition: var(--transition);
  cursor: pointer;
  border: none;
}
.btn-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(196,18,48,0.4);
}
.btn-primary:hover {
  background: var(--red-dark);
  box-shadow: 0 6px 28px rgba(196,18,48,0.6);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.35);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--black);
  font-weight: 700;
}
.btn-gold:hover {
  box-shadow: 0 6px 28px rgba(201,168,76,0.5);
  transform: translateY(-2px);
}
.btn svg { width: 16px; height: 16px; }

/* ─────────────────────────────────────────
   ABOUT STRIP (Home)
────────────────────────────────────────── */
.about-strip {
  background: var(--dark2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.about-strip-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-strip-img {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  height: 440px;
}
.about-strip-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.about-strip-img:hover img { transform: scale(1.04); }
.about-strip-img::after {
  content: '';
  position: absolute; inset: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  pointer-events: none;
}
.about-strip-badge {
  position: absolute; bottom: -20px; right: -20px;
  width: 130px; height: 130px;
  background: var(--red);
  border-radius: 50%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  box-shadow: 0 8px 30px rgba(196,18,48,0.5);
  border: 3px solid var(--gold);
}
.badge-number {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}
.badge-text {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  margin-top: 3px;
}
.about-strip-features { margin-top: 32px; display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.feature-chip {
  display: flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 16px;
  font-size: 0.85rem;
  font-weight: 500;
}
.feature-chip-icon {
  width: 32px; height: 32px; flex-shrink: 0;
  background: rgba(196,18,48,0.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
}

/* ─────────────────────────────────────────
   PRODUCTS GRID
────────────────────────────────────────── */
.products-section { background: var(--dark); }
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 60px;
}
.product-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--dark2);
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.product-card-img {
  height: 280px;
  overflow: hidden;
  position: relative;
}
.product-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.product-card:hover .product-card-img img { transform: scale(1.08); }
.product-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.8) 0%, transparent 50%);
}
.product-card-tag {
  position: absolute; top: 16px; left: 16px;
  background: var(--red);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 20px;
}
.product-card-body { padding: 24px; }
.product-card-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.product-card-desc {
  font-size: 0.88rem;
  color: var(--light-gray);
  line-height: 1.7;
  margin-bottom: 20px;
}
.product-card-specs {
  display: flex; flex-direction: column; gap: 6px;
  margin-bottom: 20px;
}
.spec-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.82rem;
  color: var(--light-gray);
}
.spec-dot {
  width: 5px; height: 5px;
  background: var(--gold);
  border-radius: 50%; flex-shrink: 0;
}

/* ─────────────────────────────────────────
   DESTINATIONS
────────────────────────────────────────── */
.destinations-section { background: var(--dark2); }
.destinations-map {
  position: relative;
  margin-top: 60px;
}
.destinations-intro {
  text-align: center;
  font-size: 1rem;
  color: var(--light-gray);
  margin-bottom: 48px;
}
.destinations-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.dest-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  transition: var(--transition);
  cursor: default;
}
.dest-card:hover {
  background: rgba(196,18,48,0.12);
  border-color: rgba(196,18,48,0.5);
  transform: translateY(-4px);
}
.dest-flag { font-size: 2.8rem; margin-bottom: 12px; }
.dest-name {
  font-weight: 600;
  font-size: 0.92rem;
  margin-bottom: 4px;
}
.dest-label {
  font-size: 0.73rem;
  color: #b0b0b0;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ─────────────────────────────────────────
   CERTIFICATIONS STRIP
────────────────────────────────────────── */
.certs-strip { background: var(--dark); padding: 70px 0; }
.certs-items {
  display: flex; justify-content: center;
  gap: 20px; flex-wrap: wrap;
  margin-top: 48px;
}
.cert-item {
  display: flex; flex-direction: column; align-items: center;
  gap: 12px; padding: 28px 24px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  min-width: 150px;
  transition: var(--transition);
}
.cert-item:hover {
  background: rgba(201,168,76,0.08);
  border-color: rgba(201,168,76,0.4);
}
.cert-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
}
.cert-name {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-align: center;
  color: var(--white);
}
.cert-sub {
  font-size: 0.7rem;
  color: #b8b8b8;
  text-align: center;
}

/* ─────────────────────────────────────────
   CTA BANNER
────────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--red-deeper) 0%, var(--dark) 60%, var(--red-deeper) 100%);
  border-top: 1px solid rgba(196,18,48,0.35);
  border-bottom: 1px solid rgba(196,18,48,0.35);
  padding: 90px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(196,18,48,0.2) 0%, transparent 70%);
}
.cta-banner .section-title { color: var(--white); position: relative; z-index: 1; }
.cta-banner p { position: relative; z-index: 1; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-top: 36px; position: relative; z-index: 1; }

/* ─────────────────────────────────────────
   ABOUT PAGE
────────────────────────────────────────── */
.page-hero {
  height: 380px;
  position: relative;
  display: flex; align-items: center;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.35) saturate(0.8);
}
.page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(10,10,10,0.8) 0%, transparent 60%);
}
.page-hero-content {
  position: relative; z-index: 2;
  max-width: var(--max-width);
  margin: 0 auto; padding: 0 24px;
  padding-top: 72px;
}
.page-hero-label {
  font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 12px;
}
.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
}
.page-hero-line {
  width: 60px; height: 3px;
  background: linear-gradient(90deg, var(--red), var(--gold));
  margin-top: 20px;
  border-radius: 2px;
}

/* Timeline */
.timeline { margin-top: 60px; position: relative; }
.timeline::before {
  content: '';
  position: absolute; left: 32px; top: 0; bottom: 0;
  width: 2px; background: linear-gradient(to bottom, var(--red), var(--gold));
}
.timeline-item {
  display: flex; gap: 40px; align-items: flex-start;
  margin-bottom: 48px; padding-left: 0;
}
.timeline-dot {
  width: 64px; height: 64px; flex-shrink: 0;
  background: var(--dark2);
  border: 2px solid var(--red);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold);
  z-index: 1;
}
.timeline-body { padding-top: 16px; }
.timeline-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
}
.timeline-text { font-size: 0.9rem; color: var(--light-gray); line-height: 1.7; }

/* Values Grid */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}
.value-card {
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: var(--transition);
}
.value-card:hover {
  border-color: rgba(196,18,48,0.5);
  transform: translateY(-4px);
}
.value-icon {
  width: 56px; height: 56px;
  background: rgba(196,18,48,0.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}
.value-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
}
.value-text { font-size: 0.88rem; color: var(--light-gray); line-height: 1.7; }

/* ─────────────────────────────────────────
   PRODUCTS PAGE
────────────────────────────────────────── */
.product-detail-section {
  padding: 80px 0;
  border-bottom: 1px solid var(--border);
}
.product-detail-section:nth-child(even) { background: var(--dark2); }
.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.product-detail-grid.reverse { direction: rtl; }
.product-detail-grid.reverse > * { direction: ltr; }
.product-img-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  height: 420px;
  border: 1px solid var(--border);
}
.product-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.product-img-wrap:hover img { transform: scale(1.05); }
.product-detail-tag {
  display: inline-block;
  background: rgba(196,18,48,0.15);
  border: 1px solid rgba(196,18,48,0.4);
  color: var(--red);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
}
.product-detail-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 16px;
}
.product-detail-desc {
  font-size: 0.95rem;
  color: var(--light-gray);
  line-height: 1.8;
  margin-bottom: 28px;
}
.spec-table { width: 100%; border-collapse: collapse; margin-bottom: 28px; }
.spec-table tr { border-bottom: 1px solid var(--border); }
.spec-table td { padding: 10px 4px; font-size: 0.87rem; }
.spec-table td:first-child { color: var(--gray); width: 40%; }
.spec-table td:last-child { color: var(--white); font-weight: 500; }

/* ─────────────────────────────────────────
   LOGISTICS PAGE
────────────────────────────────────────── */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 60px;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 44px; left: 12.5%; right: 12.5%;
  height: 2px;
  background: linear-gradient(90deg, var(--red), var(--gold));
}
.step-item { padding: 0 20px; text-align: center; }
.step-number {
  width: 88px; height: 88px;
  background: var(--dark2);
  border: 2px solid var(--red);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold);
  margin: 0 auto 24px;
  position: relative; z-index: 1;
}
.step-title { font-weight: 600; font-size: 0.95rem; margin-bottom: 10px; }
.step-text { font-size: 0.82rem; color: var(--light-gray); line-height: 1.7; }

.countries-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.country-badge {
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  display: flex; flex-direction: column; align-items: center;
  gap: 10px;
  text-align: center;
  transition: var(--transition);
}
.country-badge:hover {
  border-color: var(--gold);
  background: rgba(201,168,76,0.05);
}
.country-flag { font-size: 2.4rem; }
.country-name { font-weight: 600; font-size: 0.88rem; }

/* ─────────────────────────────────────────
   CERTIFICATIONS PAGE
────────────────────────────────────────── */
.cert-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 60px;
}
.cert-detail-card {
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 32px;
  transition: var(--transition);
}
.cert-detail-card:hover {
  border-color: rgba(196,18,48,0.4);
  transform: translateY(-4px);
}
.cert-detail-icon {
  font-size: 2.4rem;
  margin-bottom: 16px;
}
.cert-detail-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.cert-detail-tag {
  display: inline-block;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.35);
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 3px 12px;
  border-radius: 20px;
  margin-bottom: 16px;
}
.cert-detail-text {
  font-size: 0.88rem;
  color: var(--light-gray);
  line-height: 1.75;
  margin-bottom: 20px;
}
.cert-points { display: flex; flex-direction: column; gap: 8px; }
.cert-point {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.85rem;
  color: var(--light-gray);
}
.cert-point::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ─────────────────────────────────────────
   CONTACT PAGE
────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  margin-top: 60px;
}
.contact-info { display: flex; flex-direction: column; gap: 28px; }
.contact-info-item {
  display: flex; gap: 16px; align-items: flex-start;
}
.contact-info-icon {
  width: 48px; height: 48px; flex-shrink: 0;
  background: rgba(196,18,48,0.15);
  border: 1px solid rgba(196,18,48,0.3);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
}
.contact-info-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}
.contact-info-value {
  font-size: 0.95rem;
  color: var(--light-gray);
  line-height: 1.6;
}
.whatsapp-btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: #25D366;
  color: var(--white);
  padding: 13px 26px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  margin-top: 8px;
  box-shadow: 0 4px 20px rgba(37,211,102,0.3);
}
.whatsapp-btn:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(37,211,102,0.45);
}

/* Contact Form */
.contact-form-wrap {
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 44px 40px;
}
.form-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 28px;
}
.form-group { margin-bottom: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--light-gray);
  margin-bottom: 8px;
}
.form-control {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 12px 16px;
  font-size: 0.92rem;
  color: var(--white);
  outline: none;
  transition: border-color var(--transition);
}
.form-control:focus {
  border-color: var(--gold);
  background: rgba(201,168,76,0.05);
}
.form-control::placeholder { color: var(--gray); }
textarea.form-control { resize: vertical; min-height: 130px; }
select.form-control option { background: var(--dark2); }
.form-success {
  display: none;
  text-align: center;
  padding: 28px;
  background: rgba(37,211,102,0.1);
  border: 1px solid rgba(37,211,102,0.3);
  border-radius: var(--radius);
  color: #25D366;
  font-weight: 600;
  margin-top: 16px;
}

/* ─────────────────────────────────────────
   FOOTER
────────────────────────────────────────── */
.footer {
  background: var(--dark);
  border-top: 1px solid var(--border);
  padding: 70px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--border);
}
.footer-brand-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}
.footer-brand-name span { color: var(--gold); }
.footer-brand-tag {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.footer-brand-desc {
  font-size: 0.87rem;
  color: var(--gray);
  line-height: 1.75;
  margin-bottom: 24px;
}
.footer-social {
  display: flex; gap: 10px;
}
.social-btn {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
  transition: var(--transition);
  color: var(--light-gray);
}
.social-btn:hover {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}
.footer-col-title {
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}
.footer-col-links {
  display: flex; flex-direction: column; gap: 10px;
}
.footer-col-links a {
  font-size: 0.87rem;
  color: var(--gray);
  transition: color var(--transition);
}
.footer-col-links a:hover { color: var(--gold); }
.footer-bottom {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom-text {
  font-size: 0.8rem;
  color: var(--gray);
}
.footer-bottom-text span { color: var(--gold); }

/* ─────────────────────────────────────────
   ANIMATIONS
────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.fade-up {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible {
  opacity: 1; transform: translateY(0);
}

/* ─────────────────────────────────────────
   MOBILE RESPONSIVE
────────────────────────────────────────── */
@media (max-width: 1024px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .destinations-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-strip-inner { gap: 48px; }
  .contact-grid { gap: 48px; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .cert-detail-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-steps::before { display: none; }
  .countries-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .section-pad { padding: 60px 0; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: fixed; top: 72px; left: 0; right: 0;
    background: rgba(10,10,10,0.98);
    padding: 24px;
    border-bottom: 1px solid var(--border);
    gap: 0;
  }
  .nav-links.open a { padding: 14px 8px; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .nav-links.open .nav-cta { margin-top: 12px; text-align: center; border-radius: var(--radius); }
  .hero-stats { gap: 28px; }
  .about-strip-inner { grid-template-columns: 1fr; gap: 40px; }
  .about-strip-img { height: 300px; }
  .about-strip-badge { width: 100px; height: 100px; bottom: -14px; right: -14px; }
  .products-grid { grid-template-columns: 1fr; }
  .destinations-grid { grid-template-columns: repeat(2, 1fr); }
  .product-detail-grid { grid-template-columns: 1fr; gap: 40px; }
  .product-detail-grid.reverse { direction: ltr; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 28px 20px; }
  .footer-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; max-width: 280px; }
  .form-row { grid-template-columns: 1fr; }
  .countries-grid { grid-template-columns: repeat(2, 1fr); }
  .certs-items { gap: 12px; }
}
