/* ============================================
   MIDRAR General Trading PLC
   Design System & Styles
   ============================================ */

/* ---------- CSS Reset ---------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ---------- Design Tokens ---------- */
:root {
  /* Brand Colors */
  --brand-900: #3b0d0d;
  --brand-800: #591414;
  --brand-700: #7d1c1c;
  --brand-600: #9c2323;
  --brand-500: #D32F2F;
  --brand-400: #df5858;
  --brand-300: #e88787;
  --brand-200: #f1baba;
  --brand-100: #faeaea;
  --brand-50: #fdf5f5;

  --gold-900: #5c3a0a;
  --gold-800: #8b5e14;
  --gold-700: #b07a1b;
  --gold-600: #c9922a;
  --gold-500: #d4a843;
  --gold-400: #e0be6a;
  --gold-300: #ebd48e;
  --gold-200: #f3e5b5;
  --gold-100: #faf2db;
  --gold-50: #fdf8ed;

  --neutral-900: #1a1a1a;
  --neutral-800: #2d2d2d;
  --neutral-700: #404040;
  --neutral-600: #5c5c5c;
  --neutral-500: #787878;
  --neutral-400: #a0a0a0;
  --neutral-300: #c4c4c4;
  --neutral-200: #e0e0e0;
  --neutral-100: #f0f0f0;
  --neutral-50: #fafafa;

  --white: #ffffff;
  --black: #000000;

  /* Semantic Colors */
  --color-primary: var(--brand-700);
  --color-primary-dark: var(--brand-800);
  --color-primary-light: var(--brand-100);
  --color-accent: var(--gold-600);
  --color-accent-dark: var(--gold-800);
  --color-accent-light: var(--gold-100);
  --color-text: var(--neutral-800);
  --color-text-light: var(--neutral-600);
  --color-text-muted: var(--neutral-500);
  --color-bg: var(--white);
  --color-bg-alt: var(--brand-50);
  --color-bg-warm: var(--gold-50);
  --color-border: var(--neutral-200);

  /* Typography */
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-accent: 'Outfit', sans-serif;

  /* Font Sizes (fluid) */
  --text-xs: clamp(0.694rem, 0.66vw + 0.53rem, 0.8rem);
  --text-sm: clamp(0.833rem, 0.8vw + 0.63rem, 0.95rem);
  --text-base: clamp(0.95rem, 0.5vw + 0.85rem, 1.065rem);
  --text-lg: clamp(1.1rem, 0.8vw + 0.9rem, 1.25rem);
  --text-xl: clamp(1.25rem, 1.2vw + 0.95rem, 1.5rem);
  --text-2xl: clamp(1.5rem, 1.8vw + 1rem, 2rem);
  --text-3xl: clamp(1.875rem, 2.5vw + 1.2rem, 2.75rem);
  --text-4xl: clamp(2.25rem, 3.5vw + 1.2rem, 3.5rem);
  --text-5xl: clamp(2.75rem, 4.5vw + 1.2rem, 4.5rem);

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;
  --space-5xl: 8rem;

  /* Layout */
  --max-width: 1200px;
  --max-width-narrow: 900px;
  --header-height: 80px;

  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 20px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.12);
  --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.15);
  --shadow-gold: 0 4px 20px rgba(201, 146, 42, 0.2);
  --shadow-green: 0 4px 20px rgba(125, 28, 28, 0.15);

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 300ms ease;
  --transition-slow: 500ms ease;
  --transition-bounce: 500ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ---------- Base Styles ---------- */
html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.7;
  color: var(--color-text);
  background: var(--color-bg);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--color-accent);
}

ul, ol {
  list-style: none;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--brand-900);
}

h1 { font-size: var(--text-5xl); }
h2 { font-size: var(--text-4xl); }
h3 { font-size: var(--text-3xl); }
h4 { font-size: var(--text-2xl); }
h5 { font-size: var(--text-xl); }
h6 { font-size: var(--text-lg); }

p {
  margin-bottom: var(--space-md);
  color: var(--color-text-light);
}

.text-accent {
  color: var(--color-accent);
}

.text-gradient {
  background: linear-gradient(135deg, var(--brand-700), var(--gold-600));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

.container--narrow {
  max-width: var(--max-width-narrow);
}

.section {
  padding: var(--space-5xl) 0;
}

.section--alt {
  background: var(--color-bg-alt);
}

.section--warm {
  background: var(--color-bg-warm);
}

.section--dark {
  background: linear-gradient(135deg, var(--brand-900), var(--brand-800));
  color: var(--white);
}

.section--dark h2,
.section--dark h3,
.section--dark h4,
.section--dark p {
  color: var(--white);
}

.section--dark p {
  color: rgba(255, 255, 255, 0.8);
}

.section__header {
  text-align: center;
  margin-bottom: var(--space-4xl);
}

.section__subtitle {
  font-family: var(--font-accent);
  font-size: var(--text-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--color-accent);
  margin-bottom: var(--space-sm);
  display: block;
}

.section__title {
  margin-bottom: var(--space-lg);
}

.section__desc {
  max-width: 620px;
  margin: 0 auto;
  font-size: var(--text-lg);
}

/* ---------- Grid ---------- */
.grid {
  display: grid;
  gap: var(--space-2xl);
}

.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 0.875rem 2rem;
  font-family: var(--font-accent);
  font-size: var(--text-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-base);
  text-decoration: none;
  line-height: 1;
}

.btn--primary {
  background: linear-gradient(135deg, var(--brand-700), var(--brand-600));
  color: var(--white);
  box-shadow: var(--shadow-green);
}

.btn--primary:hover {
  background: linear-gradient(135deg, var(--brand-800), var(--brand-700));
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(125, 28, 28, 0.3);
  color: var(--white);
}

.btn--accent {
  background: linear-gradient(135deg, var(--gold-600), var(--gold-500));
  color: var(--white);
  box-shadow: var(--shadow-gold);
}

.btn--accent:hover {
  background: linear-gradient(135deg, var(--gold-700), var(--gold-600));
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(201, 146, 42, 0.35);
  color: var(--white);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn--outline:hover {
  background: var(--white);
  color: var(--brand-800);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn--outline-dark {
  background: transparent;
  color: var(--brand-700);
  border: 2px solid var(--brand-700);
}

.btn--outline-dark:hover {
  background: var(--brand-700);
  color: var(--white);
  transform: translateY(-2px);
}

.btn--lg {
  padding: 1.1rem 2.5rem;
  font-size: var(--text-base);
}

.btn--sm {
  padding: 0.6rem 1.25rem;
  font-size: var(--text-xs);
}

.btn svg,
.btn i {
  width: 18px;
  height: 18px;
}

/* ---------- Header & Navigation ---------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
  transition: all var(--transition-base);
  background: var(--white);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

.header__logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  z-index: 1001;
}

.header__logo img {
  height: 64px;
  width: auto;
}

.nav__list {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.nav__link {
  font-family: var(--font-accent);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--neutral-700);
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: var(--space-sm) 0;
  position: relative;
  transition: color var(--transition-fast);
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-accent);
  transition: width var(--transition-base);
}

.nav__link:hover::after,
.nav__link.active::after {
  width: 100%;
}

.nav__link:hover,
.nav__link.active {
  color: var(--color-accent);
}

.nav__cta {
  margin-left: var(--space-md);
}

/* Mobile Menu Toggle */
.nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  cursor: pointer;
  z-index: 1001;
  background: none;
  border: none;
  gap: 5px;
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--neutral-800);
  transition: all var(--transition-base);
  border-radius: 2px;
}

.nav__toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav__toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav__toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ---------- Hero Section ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    135deg,
    rgba(59, 13, 13, 0.85) 0%,
    rgba(89, 20, 20, 0.75) 40%,
    rgba(125, 28, 28, 0.6) 100%
  );
}

.hero__content {
  max-width: 700px;
  color: var(--white);
  padding-top: var(--header-height);
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 0.5rem 1.25rem;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-full);
  font-family: var(--font-accent);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-300);
  margin-bottom: var(--space-xl);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero__title {
  font-size: var(--text-5xl);
  color: var(--white);
  margin-bottom: var(--space-lg);
  line-height: 1.1;
}

.hero__title .highlight {
  color: var(--gold-400);
}

.hero__desc {
  font-size: var(--text-xl);
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: var(--space-2xl);
  line-height: 1.6;
  max-width: 560px;
}

.hero__actions {
  display: flex;
  gap: var(--space-lg);
  flex-wrap: wrap;
}

.hero__stats {
  display: flex;
  gap: var(--space-3xl);
  margin-top: var(--space-4xl);
  padding-top: var(--space-2xl);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.hero__stat {
  text-align: left;
}

.hero__stat-value {
  font-family: var(--font-heading);
  font-size: var(--text-3xl);
  font-weight: 700;
  color: var(--gold-400);
  line-height: 1;
  margin-bottom: 4px;
}

.hero__stat-label {
  font-family: var(--font-accent);
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.6);
}

/* Decorative floating shapes */
.hero__shapes {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 45%;
  z-index: -1;
  pointer-events: none;
}

.hero__shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.08;
  background: var(--gold-400);
}

.hero__shape--1 {
  width: 400px;
  height: 400px;
  top: 10%;
  right: -5%;
  animation: float 8s ease-in-out infinite;
}

.hero__shape--2 {
  width: 250px;
  height: 250px;
  bottom: 20%;
  right: 15%;
  background: var(--brand-400);
  animation: float 6s ease-in-out infinite reverse;
}

.hero__shape--3 {
  width: 150px;
  height: 150px;
  top: 40%;
  right: 30%;
  animation: float 10s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-30px) rotate(5deg); }
}

/* ---------- Product Cards ---------- */
.product-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
  cursor: pointer;
  group: product;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.product-card__image {
  position: relative;
  width: 100%;
  height: 260px;
  overflow: hidden;
}

.product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.product-card:hover .product-card__image img {
  transform: scale(1.08);
}

.product-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 50%,
    rgba(59, 13, 13, 0.8) 100%
  );
  opacity: 0;
  transition: opacity var(--transition-base);
}

.product-card:hover .product-card__overlay {
  opacity: 1;
}

.product-card__body {
  padding: var(--space-lg) var(--space-xl);
}

.product-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--brand-100);
  color: var(--brand-700);
  margin-bottom: var(--space-md);
  font-size: 1.25rem;
}

.product-card__title {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  color: var(--brand-900);
  margin-bottom: var(--space-sm);
}

.product-card__desc {
  font-size: var(--text-sm);
  color: var(--color-text-light);
  line-height: 1.6;
  margin-bottom: var(--space-md);
}

.product-card__link {
  font-family: var(--font-accent);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-accent);
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  transition: gap var(--transition-base);
}

.product-card__link:hover {
  gap: var(--space-sm);
  color: var(--color-accent-dark);
}

/* ---------- Feature Cards ---------- */
.feature-card {
  padding: var(--space-2xl);
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--color-border);
  transition: all var(--transition-base);
  text-align: center;
}

.feature-card:hover {
  border-color: var(--brand-300);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.feature-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--brand-100), var(--gold-100));
  color: var(--brand-700);
  font-size: 1.75rem;
  margin-bottom: var(--space-lg);
}

.feature-card__title {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  color: var(--brand-900);
  margin-bottom: var(--space-sm);
}

.feature-card__desc {
  font-size: var(--text-sm);
  color: var(--color-text-light);
  margin-bottom: 0;
}

/* ---------- Process Steps ---------- */
.process {
  display: flex;
  align-items: flex-start;
  gap: var(--space-xl);
  position: relative;
}

.process__step {
  flex: 1;
  text-align: center;
  position: relative;
}

.process__step::after {
  content: '';
  position: absolute;
  top: 35px;
  right: -50%;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-400), var(--brand-400));
  z-index: 0;
}

.process__step:last-child::after {
  display: none;
}

.process__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-700), var(--brand-600));
  color: var(--white);
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  font-weight: 700;
  margin-bottom: var(--space-lg);
  position: relative;
  z-index: 1;
  box-shadow: var(--shadow-green);
}

.process__title {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  color: var(--brand-900);
  margin-bottom: var(--space-sm);
}

.process__desc {
  font-size: var(--text-sm);
  color: var(--color-text-light);
  margin-bottom: 0;
}

/* ---------- Trust Bar ---------- */
.trust-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--space-3xl);
  padding: var(--space-2xl) 0;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  text-align: center;
}

.trust-item__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-100), var(--gold-100));
  color: var(--brand-700);
  font-size: 1.5rem;
}

.trust-item__label {
  font-family: var(--font-accent);
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--neutral-600);
}

/* ---------- CTA Section ---------- */
.cta {
  position: relative;
  text-align: center;
  padding: var(--space-5xl) 0;
  background: linear-gradient(135deg, var(--brand-900), var(--brand-800));
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: var(--gold-600);
  opacity: 0.05;
}

.cta::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: var(--brand-400);
  opacity: 0.08;
}

.cta__content {
  position: relative;
  z-index: 1;
}

.cta h2 {
  color: var(--white);
  margin-bottom: var(--space-lg);
}

.cta p {
  color: rgba(255, 255, 255, 0.8);
  font-size: var(--text-lg);
  max-width: 550px;
  margin: 0 auto var(--space-2xl);
}

.cta__actions {
  display: flex;
  justify-content: center;
  gap: var(--space-lg);
  flex-wrap: wrap;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--brand-900);
  color: rgba(255, 255, 255, 0.7);
  padding-top: var(--space-5xl);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: var(--space-3xl);
  padding-bottom: var(--space-4xl);
}

.footer__brand p {
  color: rgba(255, 255, 255, 0.6);
  font-size: var(--text-sm);
  margin-top: var(--space-lg);
  line-height: 1.8;
}

.footer__logo {
  height: 44px;
  width: auto;
  filter: brightness(0) invert(1);
}

.footer__heading {
  font-family: var(--font-accent);
  font-size: var(--text-sm);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--white);
  margin-bottom: var(--space-xl);
}

.footer__links li {
  margin-bottom: var(--space-sm);
}

.footer__links a {
  color: rgba(255, 255, 255, 0.6);
  font-size: var(--text-sm);
  transition: all var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
}

.footer__links a:hover {
  color: var(--gold-400);
  transform: translateX(4px);
}

.footer__contact li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
  font-size: var(--text-sm);
}

.footer__contact-icon {
  color: var(--gold-500);
  font-size: 1rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: var(--space-xl) 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: var(--text-xs);
}

.footer__social {
  display: flex;
  gap: var(--space-md);
}

.footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.6);
  transition: all var(--transition-base);
}

.footer__social a:hover {
  background: var(--gold-600);
  color: var(--white);
  transform: translateY(-3px);
}

/* ---------- WhatsApp Button ---------- */
.whatsapp-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: var(--white);
  font-size: 28px;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: all var(--transition-base);
  text-decoration: none;
  animation: pulse-whatsapp 2s infinite;
}

.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
  color: var(--white);
}

@keyframes pulse-whatsapp {
  0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6); }
}

/* ---------- Quote Modal ---------- */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
  padding: var(--space-xl);
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: var(--space-3xl);
  max-width: 560px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  transform: scale(0.9) translateY(20px);
  transition: transform var(--transition-base);
  box-shadow: var(--shadow-xl);
}

.modal-overlay.active .modal {
  transform: scale(1) translateY(0);
}

.modal__close {
  position: absolute;
  top: var(--space-lg);
  right: var(--space-lg);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--neutral-100);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--neutral-600);
  transition: all var(--transition-fast);
}

.modal__close:hover {
  background: var(--neutral-200);
  color: var(--neutral-900);
}

.modal__title {
  font-size: var(--text-2xl);
  margin-bottom: var(--space-sm);
}

.modal__desc {
  font-size: var(--text-sm);
  color: var(--color-text-light);
  margin-bottom: var(--space-2xl);
}

/* ---------- Forms ---------- */
.form-group {
  margin-bottom: var(--space-lg);
}

.form-label {
  display: block;
  font-family: var(--font-accent);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--neutral-700);
  margin-bottom: var(--space-sm);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--color-text);
  background: var(--neutral-50);
  border: 2px solid var(--neutral-200);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
  outline: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--brand-400);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(125, 28, 28, 0.1);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23666' d='M1.41 0L6 4.58 10.59 0 12 1.41l-6 6-6-6z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

/* ---------- Page Headers (inner pages) ---------- */
.page-header {
  position: relative;
  padding: calc(var(--header-height) + var(--space-4xl)) 0 var(--space-4xl);
  background: linear-gradient(135deg, var(--brand-900), var(--brand-800));
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: var(--gold-600);
  opacity: 0.04;
}

.page-header__content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.page-header__title {
  color: var(--white);
  margin-bottom: var(--space-md);
}

.page-header__desc {
  color: rgba(255, 255, 255, 0.7);
  font-size: var(--text-lg);
  max-width: 560px;
  margin: 0 auto;
}

.page-header__breadcrumb {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-xl);
  font-family: var(--font-accent);
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.page-header__breadcrumb a {
  color: rgba(255, 255, 255, 0.5);
}

.page-header__breadcrumb a:hover {
  color: var(--gold-400);
}

.page-header__breadcrumb span {
  color: var(--gold-400);
}

.page-header__separator {
  color: rgba(255, 255, 255, 0.3);
}

/* ---------- Contact Info ---------- */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.contact-info__item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-lg);
}

.contact-info__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--brand-100), var(--gold-100));
  color: var(--brand-700);
  font-size: 1.25rem;
  flex-shrink: 0;
}

.contact-info__label {
  font-family: var(--font-accent);
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--neutral-500);
  margin-bottom: var(--space-xs);
}

.contact-info__value {
  font-size: var(--text-base);
  color: var(--color-text);
  margin-bottom: 0;
}

/* ---------- Map Section ---------- */
.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  height: 400px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ---------- Scroll Animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Stagger children */
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-stagger.visible > *:nth-child(1) { transition-delay: 0ms; opacity: 1; transform: translateY(0); }
.reveal-stagger.visible > *:nth-child(2) { transition-delay: 100ms; opacity: 1; transform: translateY(0); }
.reveal-stagger.visible > *:nth-child(3) { transition-delay: 200ms; opacity: 1; transform: translateY(0); }
.reveal-stagger.visible > *:nth-child(4) { transition-delay: 300ms; opacity: 1; transform: translateY(0); }
.reveal-stagger.visible > *:nth-child(5) { transition-delay: 400ms; opacity: 1; transform: translateY(0); }
.reveal-stagger.visible > *:nth-child(6) { transition-delay: 500ms; opacity: 1; transform: translateY(0); }

/* ---------- About Page Styles ---------- */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
  align-items: center;
}

.about-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  position: relative;
}

.about-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(59, 13, 13, 0.3));
  z-index: 1;
}

.about-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.about-values {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-xl);
  margin-top: var(--space-2xl);
}

.about-value {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
}

.about-value__icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: var(--brand-100);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-700);
  flex-shrink: 0;
  font-size: 1.1rem;
}

.about-value__title {
  font-family: var(--font-accent);
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--brand-900);
  margin-bottom: 2px;
}

.about-value__desc {
  font-size: var(--text-xs);
  color: var(--neutral-600);
  margin-bottom: 0;
}

/* ---------- Markets Section ---------- */
.market-card {
  padding: var(--space-2xl);
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--color-border);
  text-align: center;
  transition: all var(--transition-base);
}

.market-card:hover {
  border-color: var(--gold-300);
  box-shadow: var(--shadow-gold);
  transform: translateY(-4px);
}

.market-card__region {
  font-size: 2.5rem;
  margin-bottom: var(--space-md);
}

.market-card__title {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  color: var(--brand-900);
  margin-bottom: var(--space-sm);
}

.market-card__countries {
  font-size: var(--text-sm);
  color: var(--color-text-light);
  margin-bottom: 0;
  line-height: 1.8;
}

/* ---------- Quality Section ---------- */
.quality-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-xl);
}

.quality-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-lg);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

.quality-item:hover {
  box-shadow: var(--shadow-md);
}

.quality-item__number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-700), var(--brand-600));
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 700;
  flex-shrink: 0;
}

.quality-item__title {
  font-family: var(--font-accent);
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--brand-900);
  margin-bottom: var(--space-xs);
}

.quality-item__desc {
  font-size: var(--text-sm);
  color: var(--color-text-light);
  margin-bottom: 0;
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: var(--space-2xl); }
  .about-split { grid-template-columns: 1fr; }
  .quality-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .section { padding: var(--space-4xl) 0; }

  .grid--2,
  .grid--3,
  .grid--4 {
    grid-template-columns: 1fr;
  }

  /* Navigation */
  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 360px;
    height: 100vh;
    background: var(--brand-900);
    padding: calc(var(--header-height) + var(--space-2xl)) var(--space-2xl) var(--space-2xl);
    transition: right var(--transition-base);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.3);
  }

  .nav.open {
    right: 0;
  }

  .nav__list {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-xl);
  }

  .nav__link {
    color: var(--white) !important;
    font-size: var(--text-base);
  }

  .nav__cta {
    margin-left: 0;
    margin-top: var(--space-lg);
  }

  .nav__toggle {
    display: flex;
  }

  /* Hero */
  .hero__stats {
    flex-direction: column;
    gap: var(--space-lg);
  }

  .hero__actions {
    flex-direction: column;
  }

  .hero__actions .btn {
    text-align: center;
    justify-content: center;
  }

  /* Process */
  .process {
    flex-direction: column;
  }

  .process__step::after {
    display: none;
  }

  /* Footer */
  .footer__grid {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }

  .footer__bottom {
    flex-direction: column;
    gap: var(--space-md);
    text-align: center;
  }

  /* Trust bar */
  .trust-bar {
    gap: var(--space-xl);
  }

  /* About */
  .about-values {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 var(--space-md);
  }

  .section { padding: var(--space-3xl) 0; }
  
  .hero { min-height: 100svh; }

  .hero__content {
    text-align: center;
  }

  .hero__desc {
    margin-left: auto;
    margin-right: auto;
  }

  .hero__badge {
    margin-left: auto;
    margin-right: auto;
  }

  .hero__actions {
    align-items: center;
  }
}

/* ---------- Utility Classes ---------- */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: var(--space-md); }
.mt-2 { margin-top: var(--space-xl); }
.mt-3 { margin-top: var(--space-2xl); }
.mt-4 { margin-top: var(--space-3xl); }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: var(--space-md); }
.mb-2 { margin-bottom: var(--space-xl); }
.mb-3 { margin-bottom: var(--space-2xl); }
.flex-center { display: flex; align-items: center; justify-content: center; }
.gap-1 { gap: var(--space-md); }
.gap-2 { gap: var(--space-xl); }
