/* =============================================
   Al Daliil Al Asasy Trade — Main Stylesheet
   ============================================= */

/* ---------- CSS Variables ---------- */
:root {
  --color-primary: #b5953a;
  --color-primary-dark: #967a2e;
  --color-dark: #0a1628;
  --color-light: #f7f7f7;
  --color-text: #1a1a1a;
  --color-text-muted: #666;
  --color-white: #ffffff;
  --font-main: 'Cairo', sans-serif;
  --transition: all 0.3s ease;
  --shadow: 0 4px 30px rgba(0,0,0,0.1);
  --radius: 8px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  color: var(--color-text);
  line-height: 1.6;
  overflow-x: hidden;
  background: var(--color-white);
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- NAVBAR ---------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: background 0.4s ease, box-shadow 0.4s ease;
  background: transparent;
}

.navbar.scrolled {
  background: var(--color-white);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

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

.nav-logo img {
  height: 64px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: filter 0.4s ease;
}

.navbar.scrolled .nav-logo img {
  filter: none;
}

.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav-links a {
  font-size: 15px;
  font-weight: 500;
  color: var(--color-white);
  position: relative;
  padding: 4px 0;
  letter-spacing: 0.02em;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-primary);
  transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.navbar.scrolled .nav-links a {
  color: var(--color-text);
}

.lang-toggle {
  padding: 8px 20px;
  border: 1px solid var(--color-white);
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-white);
  transition: var(--transition);
}

.lang-toggle:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-white);
}

.navbar.scrolled .lang-toggle {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.navbar.scrolled .lang-toggle:hover {
  background: var(--color-primary);
  color: var(--color-white);
}

.hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 28px;
  color: var(--color-white);
  cursor: pointer;
  padding: 4px;
  line-height: 1;
}

.navbar.scrolled .hamburger {
  color: var(--color-text);
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 80px;
  left: 0;
  width: 100%;
  background: var(--color-white);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  padding: 24px;
  transform: translateY(-10px);
  opacity: 0;
  transition: all 0.3s ease;
  z-index: 999;
}

.mobile-menu.open {
  transform: translateY(0);
  opacity: 1;
}

.mobile-menu a {
  display: block;
  padding: 14px 0;
  font-size: 16px;
  font-weight: 500;
  color: var(--color-text);
  border-bottom: 1px solid #eee;
}

.mobile-menu a:last-child {
  border-bottom: none;
}

.mobile-menu .lang-toggle {
  display: block;
  margin-top: 16px;
  padding: 12px 0;
  text-align: center;
  color: var(--color-primary);
  border: 1px solid var(--color-primary);
  border-radius: 4px;
  font-weight: 600;
}

.mobile-menu .lang-toggle:hover {
  background: var(--color-primary);
  color: var(--color-white);
}

/* ---------- HERO SECTION ---------- */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0;
  transition: opacity 1s ease;
}

/* Only show when actually playing — no play button ever visible */
.hero-video.is-playing {
  opacity: 1;
}

/* Fallback image when video fails */
.hero-fallback {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,22,40,0.7) 0%, rgba(10,22,40,0.5) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 900px;
  padding: 0 24px;
}

.hero-title {
  font-size: clamp(36px, 7vw, 72px);
  font-weight: 900;
  color: var(--color-white);
  line-height: 1.15;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.hero-title .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.6s forwards;
}

.hero-subtitle {
  font-size: clamp(16px, 2vw, 20px);
  color: rgba(255,255,255,0.85);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.hero-wave {
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  z-index: 3;
}

.scroll-arrow {
  position: absolute;
  bottom: 120px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  color: var(--color-white);
  font-size: 28px;
  animation: bounce 2s infinite;
  cursor: pointer;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: 50%;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
  40% { transform: translateX(-50%) translateY(-12px); }
  60% { transform: translateX(-50%) translateY(-6px); }
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ---------- SECTION COMMON ---------- */
.section {
  padding: 100px 0;
}

.section-label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  color: var(--color-text);
  line-height: 1.2;
  margin-bottom: 20px;
}

.section-desc {
  font-size: 17px;
  color: var(--color-text-muted);
  max-width: 600px;
  line-height: 1.7;
}

/* ---------- STATS SECTION ---------- */
.stats-section {
  background: var(--color-dark);
  padding: 100px 0;
  text-align: center;
}

.stats-section .section-label {
  color: var(--color-primary);
}

.stats-section .section-title {
  color: var(--color-white);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 60px;
}

.stat-card {
  text-align: center;
  padding: 32px 20px;
}

.stat-card .counter {
  font-size: 56px;
  font-weight: 800;
  color: var(--color-primary);
  display: block;
  line-height: 1;
}

.stat-card .stat-suffix {
  font-size: 24px;
  font-weight: 700;
  color: var(--color-primary);
}

.stat-card .stat-label {
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  margin-top: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ---------- PRODUCTS SHOWCASE ---------- */
.products-showcase {
  background: var(--color-white);
  padding: 100px 0;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 60px;
}

.product-showcase-card {
  text-align: center;
  position: relative;
  padding: 40px 20px;
  border-radius: var(--radius);
  transition: var(--transition);
  cursor: pointer;
  overflow: hidden;
}

.product-showcase-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(181,149,58,0.06) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.5s ease;
  border-radius: var(--radius);
}

.product-showcase-card:hover::before {
  opacity: 1;
}

.product-img-wrapper {
  position: relative;
  width: 260px;
  height: 260px;
  margin: 0 auto 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  animation: floatProduct 4s ease-in-out infinite;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.12));
}

.product-showcase-card:hover .product-img-wrapper img {
  transform: scale(1.1) rotate(3deg);
  filter: drop-shadow(0 30px 50px rgba(0,0,0,0.18));
}

@keyframes floatProduct {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.product-showcase-card:nth-child(2) .product-img-wrapper img {
  animation-delay: -1.3s;
}

.product-showcase-card:nth-child(3) .product-img-wrapper img {
  animation-delay: -2.6s;
}

.product-showcase-name {
  position: relative;
  z-index: 1;
}

.product-letter-spaced {
  display: block;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-dark);
  margin-bottom: 12px;
  transition: color 0.3s ease;
}

.product-showcase-card:hover .product-letter-spaced {
  color: var(--color-primary);
}

.product-showcase-name p {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.6;
  max-width: 280px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s ease 0.1s;
}

.product-showcase-card:hover .product-showcase-name p {
  opacity: 1;
  transform: translateY(0);
}

.btn-primary {
  display: inline-block;
  padding: 14px 40px;
  background: var(--color-primary);
  color: var(--color-white);
  font-size: 15px;
  font-weight: 600;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  z-index: 1;
  letter-spacing: 0.02em;
}

.btn-primary:hover {
  background: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(181,149,58,0.3);
}

.btn-outline {
  display: inline-block;
  padding: 14px 40px;
  background: transparent;
  color: var(--color-white);
  font-size: 15px;
  font-weight: 600;
  border-radius: 4px;
  border: 2px solid var(--color-white);
  cursor: pointer;
  transition: var(--transition);
}

.btn-outline:hover {
  background: var(--color-white);
  color: var(--color-dark);
}

/* ---------- SERVICES SECTION ---------- */
.services-section {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.service-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.service-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,22,40,0.8);
  z-index: 2;
}

.service-content {
  position: relative;
  z-index: 3;
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.service-text {
  color: var(--color-white);
}

.service-text .section-label {
  color: var(--color-primary);
}

.service-text h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  color: var(--color-white);
  margin-bottom: 20px;
  line-height: 1.2;
}

.service-text p {
  font-size: 17px;
  color: rgba(255,255,255,0.75);
  line-height: 1.8;
  margin-bottom: 32px;
}

.service-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 40px;
  backdrop-filter: blur(10px);
}

.service-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 16px;
}

.service-card p {
  font-size: 15px;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
}

.service-detail {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, opacity 0.3s ease;
  opacity: 0;
}

.service-detail.open {
  max-height: 500px;
  opacity: 1;
  margin-top: 16px;
}

.service-detail p {
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
}

/* ---------- PARTNERS SECTION ---------- */
.partners-section {
  padding: 100px 0;
  text-align: center;
  background: var(--color-light);
}

.partners-description {
  font-size: 18px;
  color: var(--color-text-muted);
  max-width: 700px;
  margin: 0 auto 50px;
  line-height: 1.8;
}

.partners-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.partners-logos img {
  height: 70px;
  width: auto;
  opacity: 0.7;
  transition: var(--transition);
  filter: grayscale(30%);
}

.partners-logos img:hover {
  opacity: 1;
  filter: grayscale(0);
}

.tagline {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: 0.05em;
}

/* ---------- FOOTER ---------- */
.footer {
  background: var(--color-dark);
  color: rgba(255,255,255,0.7);
  padding: 80px 0 0;
}

.footer-top {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand img {
  height: 64px;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.social-links {
  display: flex;
  gap: 16px;
}

.social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.social-links a:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
}

.social-links a svg {
  width: 18px;
  height: 18px;
  fill: var(--color-white);
}

.footer-col h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul li a {
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}

.footer-col ul li a:hover {
  color: var(--color-primary);
}

.footer-col .phone-link {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-primary);
  direction: ltr;
  display: inline-block;
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px;
  text-align: center;
  font-size: 14px;
  color: rgba(255,255,255,0.4);
}

/* ---------- PAGE HERO (Inner Pages) ---------- */
.page-hero {
  position: relative;
  height: 50vh;
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.page-hero .hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.page-hero .hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,22,40,0.7);
  z-index: 2;
}

.page-hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 0 24px;
}

.page-hero-content h1 {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 900;
  color: var(--color-white);
  margin-bottom: 16px;
}

.page-hero-content p {
  font-size: 18px;
  color: rgba(255,255,255,0.8);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ---------- ABOUT PAGE ---------- */
.mvv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 40px;
}

.mvv-card {
  background: var(--color-white);
  border-radius: var(--radius);
  padding: 40px 32px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  transition: var(--transition);
  border-top: 4px solid transparent;
}

.mvv-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
  border-top-color: var(--color-primary);
}

.mvv-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--color-text);
}

.mvv-card p,
.mvv-card ul li {
  font-size: 15px;
  color: var(--color-text-muted);
  line-height: 1.7;
}

.mvv-card ul {
  padding-left: 20px;
  list-style: disc;
}

.mvv-card ul li {
  margin-bottom: 8px;
}

.goals-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.goal-card {
  position: relative;
  height: 360px;
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
  background-size: cover;
  background-position: center;
}

.goal-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(10,22,40,0.85) 100%);
}

.goal-card .goal-number {
  position: relative;
  z-index: 1;
  font-size: 56px;
  font-weight: 900;
  color: var(--color-primary);
  opacity: 0.5;
  line-height: 1;
  margin-bottom: 8px;
}

.goal-card h3 {
  position: relative;
  z-index: 1;
  font-size: 20px;
  font-weight: 700;
  color: var(--color-white);
}

.story-image {
  margin-top: 60px;
  border-radius: var(--radius);
  overflow: hidden;
  width: 100%;
}

.story-image img {
  width: 100%;
  height: auto;
}

/* ---------- PRODUCTS PAGE ---------- */
.product-detail-card {
  display: grid;
  grid-template-columns: 0.4fr 0.6fr;
  gap: 48px;
  align-items: center;
  background: var(--color-white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  border: 1px solid #eee;
  margin-bottom: 40px;
  transition: var(--transition);
}

.product-detail-card:hover {
  box-shadow: 0 8px 40px rgba(0,0,0,0.1);
  border-color: var(--color-primary);
}

.product-detail-card:nth-child(even) {
  direction: ltr;
}

[dir="rtl"] .product-detail-card:nth-child(even) {
  direction: rtl;
}

.product-detail-img {
  height: 100%;
  min-height: 360px;
  overflow: hidden;
  background: var(--color-light);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
}

.product-detail-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  max-height: 320px;
  transition: transform 0.6s ease;
}

.product-detail-card:hover .product-detail-img img {
  transform: scale(1.05);
}

.product-detail-content {
  padding: 48px 48px 48px 0;
}

.product-detail-content h3 {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 800;
  color: var(--color-dark);
  margin-bottom: 16px;
}

.product-detail-content > p {
  font-size: 16px;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: 28px;
}

.specs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.spec-item {
  background: var(--color-light);
  border-radius: 6px;
  padding: 14px 18px;
}

.spec-item-label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-primary);
  margin-bottom: 4px;
}

.spec-item-value {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: var(--color-text);
}

@media (max-width: 768px) {
  .product-detail-card {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .product-detail-img {
    min-height: 240px;
    padding: 24px;
  }

  .product-detail-content {
    padding: 32px 24px;
  }

  .specs-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- CONTACT PAGE ---------- */
.contact-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - 80px);
}

.contact-form-side {
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-form-side h2 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 32px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--color-text);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 15px;
  font-family: var(--font-main);
  transition: var(--transition);
  background: var(--color-white);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(181,149,58,0.15);
}

.form-group textarea {
  height: 140px;
  resize: vertical;
}

.form-success {
  display: none;
  padding: 16px;
  background: #e8f5e9;
  color: #2e7d32;
  border-radius: 4px;
  margin-top: 16px;
  font-weight: 500;
}

.form-success.show {
  display: block;
}

.contact-info-side {
  background: var(--color-dark);
  color: var(--color-white);
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.info-block {
  margin-bottom: 40px;
}

.info-block h4 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-primary);
  margin-bottom: 8px;
}

.info-block p,
.info-block a {
  font-size: 17px;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
}

.info-block a:hover {
  color: var(--color-primary);
}

/* ---------- CONTACT PAGE (Redesigned) ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: start;
}

.contact-form-card {
  background: var(--color-white);
  border-radius: var(--radius);
  padding: 48px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  border: 1px solid #eee;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.contact-info-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.contact-info-card {
  background: var(--color-white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  border: 1px solid #eee;
  transition: var(--transition);
}

.contact-info-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
  border-color: var(--color-primary);
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(181,149,58,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.contact-info-icon svg {
  width: 22px;
  height: 22px;
  color: var(--color-primary);
}

.contact-info-card h4 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-primary);
  margin-bottom: 8px;
}

.contact-info-value {
  font-size: 17px;
  color: var(--color-text);
  line-height: 1.7;
  font-weight: 500;
}

a.contact-info-value:hover {
  color: var(--color-primary);
}

.contact-info-icon--whatsapp {
  background: rgba(37,211,102,0.1);
}

.contact-info-icon--whatsapp svg {
  color: #25d366;
}

.contact-info-card--whatsapp:hover {
  border-color: #25d366;
}

@media (max-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .contact-form-card {
    padding: 32px 24px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-info-cards {
    grid-template-columns: 1fr;
  }
}

/* ---------- CAREERS PAGE ---------- */
.careers-content {
  padding: 80px 0;
}

.job-list {
  display: grid;
  gap: 20px;
  margin-top: 40px;
}

.job-card {
  background: var(--color-white);
  border: 1px solid #eee;
  border-radius: var(--radius);
  padding: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
}

.job-card:hover {
  box-shadow: var(--shadow);
  border-color: var(--color-primary);
}

.job-info h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}

.job-meta {
  display: flex;
  gap: 20px;
  font-size: 14px;
  color: var(--color-text-muted);
}

.job-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.no-jobs {
  text-align: center;
  padding: 80px 24px;
  color: var(--color-text-muted);
  font-size: 18px;
}

/* ---------- LEADERSHIP PAGE ---------- */
.leadership-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 40px;
}

.leader-card {
  background: var(--color-white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  transition: var(--transition);
  cursor: pointer;
}

.leader-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}

.leader-photo {
  width: 100%;
  height: 300px;
  object-fit: cover;
  background: #e0e0e0;
}

.leader-info {
  padding: 24px;
}

.leader-info h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 4px;
}

.leader-info .leader-title {
  font-size: 14px;
  color: var(--color-primary);
  font-weight: 600;
  margin-bottom: 0;
}

.leader-bio {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, padding 0.3s ease;
  padding: 0 24px;
  font-size: 15px;
  color: var(--color-text-muted);
  line-height: 1.7;
}

.leader-card.expanded .leader-bio {
  max-height: 300px;
  padding: 0 24px 24px;
}

/* ---------- SERVICES PAGE ---------- */
.services-page-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 40px;
}

.service-page-card {
  position: relative;
  height: 400px;
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 40px;
  background-size: cover;
  background-position: center;
  cursor: pointer;
  transition: var(--transition);
}

.service-page-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 20%, rgba(10,22,40,0.9) 100%);
  transition: var(--transition);
}

.service-page-card:hover::after {
  background: linear-gradient(180deg, transparent 10%, rgba(10,22,40,0.95) 100%);
}

.service-page-card h3 {
  position: relative;
  z-index: 1;
  font-size: 24px;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 12px;
}

.service-page-card p {
  position: relative;
  z-index: 1;
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, opacity 0.3s ease;
  opacity: 0;
}

.service-page-card:hover p {
  max-height: 200px;
  opacity: 1;
}

/* ---------- MODAL ---------- */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 2000;
  align-items: center;
  justify-content: center;
}

.modal-overlay.open {
  display: flex;
}

.modal {
  background: var(--color-white);
  border-radius: var(--radius);
  padding: 40px;
  max-width: 500px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--color-text-muted);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: var(--transition);
}

.modal-close:hover {
  background: var(--color-light);
}

.modal h2 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 24px;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .product-img-wrapper {
    width: 200px;
    height: 200px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-top {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-content {
    grid-template-columns: 1fr;
  }

  .mvv-grid {
    grid-template-columns: 1fr;
  }

  .goals-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .leadership-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-page-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .products-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .product-img-wrapper {
    width: 180px;
    height: 180px;
  }

  .product-showcase-name p {
    opacity: 1;
    transform: translateY(0);
  }

  .nav-links {
    display: none;
  }

  .lang-toggle {
    display: none;
  }

  .hamburger {
    display: block;
  }

  .mobile-menu {
    display: block;
  }

  .hero-title {
    font-size: clamp(28px, 8vw, 48px);
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .stat-card .counter {
    font-size: 40px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .contact-section {
    grid-template-columns: 1fr;
  }

  .contact-form-side,
  .contact-info-side {
    padding: 48px 24px;
  }

  .product-info {
    padding: 24px;
  }

  .product-image {
    width: 100%;
    opacity: 0.08;
  }

  .goals-grid {
    grid-template-columns: 1fr;
  }

  .leadership-grid {
    grid-template-columns: 1fr;
  }

  .job-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .section {
    padding: 60px 0;
  }
}

@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .stat-card .counter {
    font-size: 36px;
  }

  .partners-logos {
    gap: 30px;
  }

  .partners-logos img {
    height: 50px;
  }
}
