:root {
  --color-black: #111111;
  --color-red: #d32027;
  --color-red-dark: #a5151b;
  --color-yellow: #ffcc00;
  --color-yellow-dark: #e0b200;
  --color-bg: #f8f9fa;
  --color-surface: #ffffff;
  --color-muted: #6b7280;
  --color-border: #e5e7eb;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-medium: 0 8px 30px rgba(0, 0, 0, 0.12);
  --transition: 300ms cubic-bezier(0.4, 0, 0.2, 1);
  --max-width: 1280px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  background-color: var(--color-bg);
  color: var(--color-black);
  min-height: 100vh;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  width: 100%;
}

body.lang-ar {
  font-family: "Tajawal", system-ui, -apple-system, "Segoe UI", sans-serif;
  direction: rtl;
}

body.lang-en {
  direction: ltr;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style: none;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: 2rem;
  width: 100%;
}

/* TOP BAR */
.top-bar {
  background-color: var(--color-red);
  color: #ffffff;
  padding-block: 0.5rem;
  font-size: 0.85rem;
  position: relative;
  z-index: 100;
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-inline: 2rem;
  gap: 1rem;
}

.top-bar-left {
  display: flex;
  align-items: center;
}

.top-bar-left .lang-toggle {
  border: 1px solid rgba(255, 255, 255, 0.3);
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.top-bar-left .lang-btn {
  color: rgba(255, 255, 255, 0.9);
  padding: 0.3rem 0.8rem;
  font-size: 0.8rem;
  min-width: 2.5rem;
}

.top-bar-left .lang-btn.active {
  background-color: rgba(255, 255, 255, 0.25);
  color: #ffffff;
}

.top-bar-left .lang-btn:hover:not(.active) {
  background-color: rgba(255, 255, 255, 0.15);
  color: #ffffff;
}

.top-bar-right {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  flex-wrap: wrap;
}

.top-bar-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: #ffffff;
  transition: opacity var(--transition);
  font-size: 0.85rem;
  white-space: nowrap;
}

.top-bar-link:hover {
  opacity: 0.8;
}

.top-bar-icon {
  font-size: 0.9rem;
  opacity: 0.9;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.top-bar-icon svg {
  width: 16px;
  height: 16px;
  color: #ffffff;
  fill: #ffffff;
  display: block;
}

/* HEADER */
header {
  position: sticky;
  top: 0;
  z-index: 50;
  background-color: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--color-border);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-block: 1.2rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.brand-logo {
  height: 50px;
  width: auto;
  display: block;
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.brand-main {
  font-weight: 700;
  letter-spacing: 0.05em;
  font-size: 1.1rem;
  text-transform: uppercase;
  color: var(--color-black);
}

.brand-sub {
  font-size: 0.75rem;
  color: var(--color-muted);
  font-weight: 400;
}

nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links {
  display: flex;
  gap: 2rem;
  font-size: 0.9rem;
  font-weight: 500;
}

.nav-links a {
  position: relative;
  padding-block: 0.3rem;
  color: var(--color-muted);
  transition: color var(--transition);
}

.nav-links a:hover {
  color: var(--color-black);
}

.nav-links a::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  height: 2px;
  border-radius: 999px;
  background-color: var(--color-red);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--transition);
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.lang-toggle {
  display: inline-flex;
  align-items: center;
  border-radius: 8px;
  border: 1px solid var(--color-border);
  background-color: var(--color-surface);
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.lang-btn {
  border: none;
  background: none;
  padding: 0.4rem 0.9rem;
  font-size: 0.8rem;
  cursor: pointer;
  color: var(--color-muted);
  text-transform: uppercase;
  font-weight: 500;
  min-width: 2.8rem;
  transition: background-color var(--transition), color var(--transition);
}

.lang-btn.active {
  background-color: var(--color-black);
  color: #ffffff;
}

.header-cta {
  display: none;
  font-size: 0.78rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  border: 1px solid var(--color-border);
  color: var(--color-muted);
}

/* HERO */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: heroImageZoom 25s ease-in-out infinite alternate;
}

@keyframes heroImageZoom {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.15);
  }
}

.hero-gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.6) 0%,
    rgba(0, 0, 0, 0.4) 50%,
    rgba(211, 32, 39, 0.5) 100%
  );
  z-index: 1;
}

.hero-gradient-overlay::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at 30% 50%,
    rgba(255, 204, 0, 0.15) 0%,
    transparent 60%
  );
  z-index: 1;
}

.hero-container {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.hero-content-wrapper {
  max-width: 850px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}

/* Hero Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 1.2rem;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 0.5rem;
  animation: fadeInDown 0.8s ease-out;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--color-yellow);
  border-radius: 50%;
  animation: pulseDot 2s ease-in-out infinite;
}

@keyframes pulseDot {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.7;
    transform: scale(1.2);
  }
}

/* Hero Heading */
.hero-heading {
  font-size: clamp(3rem, 6vw + 1rem, 6rem);
  font-weight: 900;
  line-height: 1.1;
  margin: 0;
  letter-spacing: -0.02em;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.6), 0 2px 15px rgba(0, 0, 0, 0.4);
}

body.lang-ar .hero-heading {
  direction: rtl;
}

.hero-line {
  display: block;
  opacity: 0;
  transform: translateY(50px);
  animation: slideUpFade 1s ease-out forwards;
}

.hero-line-1 {
  animation-delay: 0.2s;
}

.hero-line-2 {
  animation-delay: 0.5s;
}

.hero-line.highlight {
  color: var(--color-yellow);
  position: relative;
  text-shadow: 0 4px 30px rgba(255, 204, 0, 0.5), 0 2px 15px rgba(0, 0, 0, 0.5);
  filter: drop-shadow(0 0 15px rgba(255, 204, 0, 0.4));
}

.hero-line.highlight::after {
  content: "";
  position: absolute;
  bottom: 0.1em;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--color-yellow), var(--color-red));
  border-radius: 3px;
  transform: scaleX(0);
  transform-origin: left;
  animation: underlineExpand 1.2s ease-out 0.8s forwards;
}

body.lang-ar .hero-line.highlight::after {
  transform-origin: right;
}

@keyframes slideUpFade {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes underlineExpand {
  to {
    transform: scaleX(1);
  }
}

/* Hero Description */
.hero-description {
  font-size: clamp(1.1rem, 1.5vw + 0.5rem, 1.35rem);
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.95);
  max-width: 700px;
  margin: 0;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease-out 0.7s forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hero Buttons */
.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  margin-top: 0.5rem;
}

.hero-btn-1 {
  opacity: 0;
  transform: translateY(20px) scale(0.95);
  animation: buttonSlideIn 0.8s ease-out 1s forwards;
}

.hero-btn-2 {
  opacity: 0;
  transform: translateY(20px) scale(0.95);
  animation: buttonSlideIn 0.8s ease-out 1.2s forwards;
}

@keyframes buttonSlideIn {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Reduced motion support for hero animations */
@media (prefers-reduced-motion: reduce) {
  .hero-line,
  .hero-description,
  .hero-btn-1,
  .hero-btn-2,
  .hero-badge {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }
  
  .hero-bg-image {
    animation: none !important;
  }
  
  .badge-dot {
    animation: none !important;
  }
}

.btn {
  border-radius: 12px;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  padding: 0.9rem 2rem;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all var(--transition);
  font-family: inherit;
}

.btn-primary {
  background-color: var(--color-red);
  color: #ffffff;
  box-shadow: var(--shadow-soft);
}

.btn-primary:hover {
  background-color: var(--color-red-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

.btn-outline {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.btn-outline:hover {
  border-color: #ffffff;
  background-color: rgba(255, 255, 255, 0.1);
}

.btn-secondary {
  background-color: var(--color-yellow);
  color: var(--color-black);
  box-shadow: var(--shadow-soft);
}

.btn-secondary:hover {
  background-color: var(--color-yellow-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

.hero-note {
  font-size: 0.85rem;
  color: var(--color-muted);
  margin-top: 1.5rem;
}

.hero-note strong {
  color: var(--color-black);
  font-weight: 600;
}

.hero-contact-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background-color: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  font-size: 0.85rem;
  margin-top: 1.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  color: #ffffff;
}

.hero-contact-chip span:first-child {
  font-weight: 600;
}

.hero-contact-chip a {
  color: var(--color-yellow);
  font-weight: 600;
  transition: color var(--transition);
}

.hero-contact-chip a:hover {
  color: #ffffff;
}

/* HERO VISUAL WITH IMAGE */
.hero-visual {
  position: relative;
  display: grid;
  gap: 1.5rem;
}

.hero-photo {
  border-radius: var(--radius-xl);
  background-color: var(--color-bg);
  border: 1px solid var(--color-border);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-medium);
  aspect-ratio: 4 / 3;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.hero-photo:hover img {
  transform: scale(1.05);
}

.photo-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background-color: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  padding: 1rem 1.2rem;
  font-size: 0.8rem;
  box-shadow: var(--shadow-medium);
  max-width: 85%;
}

.photo-badge-title {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
  color: var(--color-black);
}

.photo-badge-row {
  display: flex;
  gap: 1.2rem;
  font-size: 0.78rem;
  color: var(--color-muted);
  margin-top: 0.5rem;
  flex-wrap: wrap;
}

.hero-logo-strip {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.85rem;
  color: var(--color-muted);
  font-weight: 500;
}

.hero-logo-strip img {
  width: 80px;
  height: 60px;
  border-radius: 8px;
  border: 1px solid var(--color-border);
  background-color: #ffffff;
  padding: 0.5rem;
  object-fit: cover;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

/* GENERIC SECTIONS */
section {
  padding-block: 5rem;
}

.section-header {
  margin-bottom: 3rem;
  text-align: center;
}

body.lang-ar .section-header {
  text-align: center;
}

.section-kicker {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-red);
  margin-bottom: 0.8rem;
  font-weight: 600;
}

.section-title {
  font-size: clamp(2rem, 2.5vw + 1rem, 2.75rem);
  margin-bottom: 0.8rem;
  color: var(--color-black);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--color-muted);
  max-width: 42rem;
  margin-inline: auto;
  line-height: 1.7;
}

/* ABOUT */
.about {
  background-color: var(--color-bg);
}

.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: stretch;
  margin-bottom: 3rem;
}

.card {
  border-radius: var(--radius-xl);
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  padding: 2.5rem;
  box-shadow: var(--shadow-soft);
  transition: transform var(--transition), box-shadow var(--transition);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-medium);
}

.about-list {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
  font-size: 0.95rem;
  line-height: 1.7;
}

.about-item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.bullet {
  width: 8px;
  height: 8px;
  margin-top: 0.5rem;
  border-radius: 999px;
  background-color: var(--color-yellow);
  flex-shrink: 0;
}

/* About Image */
.about-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  height: 100%;
  box-shadow: var(--shadow-soft);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  align-items: stretch;
}

.about-image:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-medium);
}

.about-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.about-image:hover .about-img {
  transform: scale(1.05);
}

/* About Goals */
.about-goals {
  margin-top: 3rem;
}

.goals-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.goal-box {
  border-radius: var(--radius-lg);
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  padding: 2rem;
  box-shadow: var(--shadow-soft);
  transition: transform var(--transition), box-shadow var(--transition);
}

.goal-box:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-medium);
}

.goal-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-black);
  margin-bottom: 1rem;
  display: block;
}

.goal-box p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--color-muted);
  margin: 0;
}

.goal-box strong {
  color: var(--color-black);
  font-weight: 600;
}

/* PRODUCTS */
.products {
  background-color: #ffffff;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
}

.product-card {
  border-radius: var(--radius-lg);
  background-color: var(--color-bg);
  border: 1px solid var(--color-border);
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  font-size: 0.95rem;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.product-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--color-red), var(--color-yellow));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-medium);
  border-color: var(--color-red);
}

.product-card:hover::before {
  transform: scaleX(1);
}

.product-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-red);
  font-weight: 600;
}

.product-title {
  font-weight: 700;
  color: var(--color-black);
  font-size: 1.1rem;
}

.product-meta {
  margin-top: auto;
  font-size: 0.85rem;
  color: var(--color-muted);
  line-height: 1.6;
}

/* MARKETS */
.markets {
  background-color: #1a1a1a;
  color: #ffffff;
}

.markets .section-header {
  color: #ffffff;
}

.markets .section-kicker {
  color: var(--color-yellow);
}

.markets .section-title {
  color: #ffffff;
}

.markets .section-subtitle {
  color: rgba(255, 255, 255, 0.8);
}

.markets-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2.5rem;
  align-items: stretch;
}

.market-card {
  border-radius: var(--radius-lg);
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2rem;
  font-size: 0.95rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  transition: all var(--transition);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.market-card .about-list {
  flex: 1;
}

.market-card .about-item {
  color: rgba(255, 255, 255, 0.9);
}

.market-card .about-item strong {
  color: #ffffff;
}

.market-card .bullet {
  background-color: var(--color-yellow);
}

.market-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
  border-color: rgba(255, 255, 255, 0.2);
}

.market-card-featured {
  background: linear-gradient(135deg, rgba(211, 32, 39, 0.2) 0%, rgba(255, 204, 0, 0.15) 100%);
  border: 2px solid var(--color-red);
  position: relative;
  overflow: hidden;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: all var(--transition);
}

.market-card-featured::after {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 204, 0, 0.03) 0%, transparent 70%);
  pointer-events: none;
}

.market-card-featured .market-title {
  color: var(--color-yellow);
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.market-card-featured p {
  color: rgba(255, 255, 255, 0.95);
  position: relative;
  z-index: 2;
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.market-card-featured .badge-row {
  position: relative;
  z-index: 2;
  margin-top: auto;
}

.market-card-featured:hover {
  border-color: var(--color-yellow);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.25);
  transform: translateY(-4px) scale(1.01);
}

.market-title {
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.8rem;
  font-size: 1.2rem;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1rem;
  font-size: 0.8rem;
}

.badge-pill {
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background-color: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  backdrop-filter: blur(10px);
}

.market-card-featured .badge-pill {
  background-color: rgba(255, 204, 0, 0.2);
  border-color: rgba(255, 204, 0, 0.4);
  color: var(--color-yellow);
}

/* CONTACT */
.contact {
  background-color: var(--color-bg);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-main {
  width: 100%;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.contact-link-card {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  text-decoration: none;
  color: inherit;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.contact-link-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--color-red), var(--color-yellow));
  transform: scaleY(0);
  transform-origin: top;
  transition: transform var(--transition);
}

.contact-link-card:hover {
  border-color: var(--color-red);
  box-shadow: var(--shadow-soft);
  transform: translateX(4px);
}

.contact-link-card:hover::before {
  transform: scaleY(1);
}

.contact-link-card-address {
  cursor: default;
}

.contact-link-card-address:hover {
  transform: none;
}

.contact-link-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background-color: var(--color-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
  transition: all var(--transition);
}

.contact-link-card:hover .contact-link-icon {
  background-color: rgba(211, 32, 39, 0.1);
  transform: scale(1.1);
}

.contact-link-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.contact-link-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-muted);
  font-weight: 600;
}

.contact-link-value {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-black);
  line-height: 1.4;
  word-break: break-word;
  overflow-wrap: break-word;
}

.contact-link-card:hover .contact-link-value {
  color: var(--color-red);
}

.contact-link-arrow {
  font-size: 1.2rem;
  color: var(--color-muted);
  transition: all var(--transition);
  flex-shrink: 0;
}

.contact-link-card:hover .contact-link-arrow {
  color: var(--color-red);
  transform: translateX(4px);
}

.contact-sidebar {
  border-radius: var(--radius-xl);
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  padding: 2.5rem;
  box-shadow: var(--shadow-soft);
  position: sticky;
  top: 100px;
}

.sidebar-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-black);
  margin: 0 0 1.5rem 0;
  line-height: 1.3;
}

.sidebar-text {
  font-size: 0.95rem;
  color: var(--color-muted);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.sidebar-note {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--color-border);
  font-size: 0.9rem;
  color: var(--color-muted);
  line-height: 1.7;
  font-style: italic;
}

/* IMAGE GALLERY */
.image-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.gallery-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-soft);
  transition: all var(--transition);
}

.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-medium);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* REVEAL ANIMATION */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 600ms ease-out, transform 600ms ease-out;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* FOOTER */
footer {
  border-top: 1px solid var(--color-border);
  background-color: #ffffff;
  padding-block: 2rem 2.5rem;
  margin-top: auto;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: var(--color-muted);
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-inner strong {
  color: var(--color-black);
  font-weight: 700;
}

.footer-links {
  display: flex;
  gap: 1rem;
  font-weight: 500;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .container {
    padding-inline: 1.5rem;
  }

  .top-bar-inner {
    padding-inline: 1.5rem;
  }

  .hero-container {
    padding: 0;
  }
  
  .hero-heading {
    font-size: clamp(2.5rem, 5vw + 1rem, 4.5rem);
  }

  .hero-content-wrapper {
    padding-inline: 1rem;
  }

  .about-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-image {
    min-height: 400px;
  }

  .goals-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .markets-layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 3rem;
  }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .contact-sidebar {
    position: static;
  }

  .products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  section {
    padding-block: 4rem;
  }

  .hero {
    height: 100vh;
  }

  .section-subtitle {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .container {
    padding-inline: 1.25rem;
  }

  .top-bar {
    font-size: 0.75rem;
    padding-block: 0.4rem;
  }

  .top-bar-inner {
    flex-direction: column;
    gap: 0.5rem;
    padding-inline: 1.25rem;
  }

  .top-bar-left,
  .top-bar-right {
    width: 100%;
    justify-content: center;
  }

  .top-bar-right {
    gap: 0.8rem;
    flex-wrap: wrap;
  }

  .top-bar-link {
    font-size: 0.7rem;
  }

  .top-bar-icon svg {
    width: 14px;
    height: 14px;
  }

  .header-inner {
    flex-wrap: wrap;
    padding-block: 1rem;
    gap: 1rem;
  }

  .brand-logo {
    height: 40px;
  }

  nav {
    width: 100%;
    justify-content: space-between;
  }

  .header-cta {
    display: inline-flex;
  }

  .nav-links {
    gap: 1.2rem;
    font-size: 0.85rem;
  }

  .hero-container {
    padding: 0;
  }

  .hero-content-wrapper {
    padding-inline: 1rem;
    gap: 1.2rem;
  }

  .hero-heading {
    font-size: clamp(2.2rem, 5vw + 1rem, 3.5rem);
    gap: 0.2rem;
  }

  .hero-description {
    font-size: clamp(1rem, 1.2vw + 0.5rem, 1.15rem);
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
    gap: 0.8rem;
  }

  .hero-buttons .btn {
    width: 100%;
    justify-content: center;
    padding: 0.8rem 1.5rem;
    font-size: 0.95rem;
  }

  .hero-badge {
    font-size: 0.8rem;
    padding: 0.4rem 1rem;
  }

  .section-title {
    font-size: clamp(1.75rem, 4vw + 1rem, 2.25rem);
  }

  .section-subtitle {
    font-size: 0.95rem;
    padding-inline: 0.5rem;
    line-height: 1.6;
    max-width: 100%;
    margin-inline: auto;
    display: block;
    width: 100%;
    box-sizing: border-box;
  }

  .section-header {
    margin-bottom: 2rem;
  }

  .hero {
    height: 100vh;
  }

  .about-layout {
    gap: 1.5rem;
  }

  .card {
    padding: 2rem;
  }

  .goal-box {
    padding: 1.5rem;
  }

  .market-card {
    padding: 1.5rem;
  }

  .market-card-featured {
    padding: 1.5rem;
  }

  .contact-link-card {
    padding: 1.2rem;
    gap: 1.2rem;
  }

  .contact-link-icon {
    width: 44px;
    height: 44px;
    font-size: 1.2rem;
  }

  .contact-sidebar {
    padding: 2rem;
  }

  .sidebar-title {
    font-size: 1.2rem;
  }

  .products-grid {
    gap: 1.2rem;
  }

  .product-card {
    padding: 1.5rem 1.2rem;
  }
}

@media (max-width: 600px) {
  .container {
    padding-inline: 1rem;
  }

  .top-bar-inner {
    padding-inline: 1rem;
  }

  .nav-links {
    display: none;
  }

  .hero-content-wrapper {
    padding-inline: 0.5rem;
    gap: 1rem;
  }

  .hero-heading {
    font-size: clamp(1.8rem, 6vw + 0.5rem, 2.8rem);
  }

  .hero-description {
    font-size: clamp(0.95rem, 2vw + 0.5rem, 1.1rem);
    margin-bottom: 1.5rem;
  }

  .hero-badge {
    font-size: 0.75rem;
    padding: 0.35rem 0.9rem;
  }

  .hero-buttons .btn {
    padding: 0.75rem 1.25rem;
    font-size: 0.9rem;
  }

  .section-header {
    margin-bottom: 1.5rem;
  }

  .section-kicker {
    font-size: 0.75rem;
    margin-bottom: 0.6rem;
  }

  .section-title {
    font-size: clamp(1.5rem, 5vw + 0.5rem, 2rem);
    margin-bottom: 0.6rem;
  }

  .section-subtitle {
    font-size: 0.9rem;
    line-height: 1.6;
    padding-inline: 0;
  }

  section {
    padding-block: 3rem;
  }

  .products-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 1rem;
  }

  .product-card {
    padding: 1.5rem 1rem;
  }

  .card {
    padding: 1.5rem;
  }

  .about-layout {
    gap: 1.5rem;
  }

  .about-image {
    min-height: 300px;
  }

  .goals-grid {
    gap: 1rem;
  }

  .goal-box {
    padding: 1.25rem;
  }

  .goal-title {
    font-size: 1rem;
    margin-bottom: 0.8rem;
  }

  .markets-layout {
    gap: 1.5rem;
  }

  .market-card {
    padding: 1.5rem;
  }

  .market-card-featured {
    padding: 1.5rem;
  }

  .market-title {
    font-size: 1.1rem;
  }

  .market-card-featured .market-title {
    font-size: 1.2rem;
  }

  .contact-layout {
    gap: 1.5rem;
  }

  .contact-link-card {
    padding: 1rem;
    gap: 1rem;
    flex-wrap: wrap;
  }

  .contact-link-content {
    min-width: 0;
    flex: 1;
  }

  .contact-link-icon {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }

  .contact-link-value {
    font-size: 0.9rem;
  }

  .contact-link-arrow {
    font-size: 1rem;
  }

  .contact-sidebar {
    padding: 1.5rem;
  }

  .sidebar-title {
    font-size: 1.1rem;
    margin-bottom: 1rem;
  }

  .sidebar-text {
    font-size: 0.9rem;
    margin-bottom: 1rem;
  }

  .sidebar-note {
    font-size: 0.85rem;
    margin-top: 1rem;
    padding-top: 1rem;
  }

  .image-gallery {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
    padding-inline: 1rem;
  }

  .footer-links {
    justify-content: center;
  }

  .top-bar-link {
    font-size: 0.65rem;
    white-space: nowrap;
  }

  .top-bar-icon {
    font-size: 0.8rem;
  }

  .top-bar-icon svg {
    width: 12px;
    height: 12px;
  }
}

@media (max-width: 400px) {
  .container {
    padding-inline: 0.75rem;
  }

  .top-bar-inner {
    padding-inline: 0.75rem;
  }

  .hero-content-wrapper {
    padding-inline: 0.75rem;
  }

  .hero-heading {
    font-size: clamp(1.6rem, 7vw + 0.5rem, 2.2rem);
  }

  .section-title {
    font-size: clamp(1.4rem, 6vw + 0.5rem, 1.8rem);
  }

  .card,
  .goal-box,
  .market-card,
  .contact-sidebar {
    padding: 1.25rem;
  }

  .contact-link-card {
    padding: 0.9rem;
  }

  .top-bar-right {
    gap: 0.5rem;
  }

  .top-bar-link {
    font-size: 0.6rem;
  }
}

