/* RTL Override for Font-Family */
html[dir="rtl"] body, .rtl body, html[dir="rtl"], .rtl {
  font-family: 'Cairo', sans-serif;
}

/* ==========================================
   BASE STYLES & TYPOGRAPHY
   ========================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
   scroll-behavior: smooth; 
}

body {
  font-family: 'Outfit', sans-serif;
  background-color: #ffffff;
  color: #1d2d50;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: 0.2s ease;
}

/* Common Containers */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.text-center {
  text-align: center !important;
}

.w-full {
  width: 100%;
}

/* Headers & Titles */
.section-header {
  margin-bottom: 50px;
}

.section-header .sub-title {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  color: #c49a45;
  letter-spacing: 2px;
  margin-bottom: 12px;
  text-transform: uppercase;
}

html[dir="rtl"] .section-header .sub-title {
  letter-spacing: 0;
}

.section-header .main-title {
  font-size: 36px;
  font-weight: 700;
  color: #0e2b48;
  line-height: 1.3;
}

/* ==========================================
   BUTTONS & ACTIONS
   ========================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 6px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background-color: #0e2b48;
  color: #f8fafc;
}

.btn-primary:hover {
  background-color: #07192b;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(14, 43, 72, 0.2);
}

.btn-secondary {
  background-color: #ffffff;
  color: #0e2b48;
  border: 1px solid #e2e8f0;
}

.btn-secondary:hover {
  background-color: #f8fafd;
  transform: translateY(-2px);
  box-shadow: 0 2px 4px rgba(0,0,0,0.04);
}

.btn-gold {
  background-color: #c49a45;
  color: #f8fafc;
}

.btn-gold:hover {
  background-color: #dcae54;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(196, 154, 69, 0.3);
}

/* ==========================================
   TOP NAVBAR HEADER
   ========================================== */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 6%;
  background-color: #ffffff;
  box-shadow: 0 2px 4px rgba(0,0,0,0.04);
  position: sticky;
  top: 0;
  z-index: 100;
  transition: 0.3s ease;
}

.navbar .logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.navbar .logo-icon {
  color: #0e2b48;
}

.navbar .logo-text {
  display: flex;
  flex-direction: column;
}

.navbar .brand-name {
  font-size: 24px;
  font-weight: 700;
  color: #0e2b48;
  line-height: 1;
}

.navbar .brand-sub {
  font-size: 8px;
  font-weight: 700;
  color: #576574;
  letter-spacing: 1.5px;
  margin-top: 2px;
}

html[dir="rtl"] .navbar .brand-sub {
  letter-spacing: 0;
}

/* Navigation Links */
.navbar .nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.navbar .nav-links a {
  font-size: 15px;
  font-weight: 500;
  color: #1d2d50;
  padding: 6px 0;
  position: relative;
}

.navbar .nav-links a:hover,
.navbar .nav-links a.active {
  color: #0e2b48;
}

/* Link active bottom line transition */
.navbar .nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #c49a45;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.navbar .nav-links a:hover::after,
.navbar .nav-links a.active::after {
  transform: scaleX(1);
}

/* Navigation Actions (Language + Button) */
.navbar .nav-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Language Selector Dropdown */
.lang-selector {
  position: relative;
}

.lang-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  font-size: 14px;
  font-weight: 600;
  color: #1d2d50;
  cursor: pointer;
  padding: 8px 12px;
  border-radius: 6px;
  transition: 0.2s ease;
}

.lang-btn:hover {
  background-color: #f8fafd;
}

.dropdown-chevron {
  transition: transform 0.2s ease;
}

.lang-selector .lang-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  box-shadow: 0 10px 20px rgba(14, 43, 72, 0.06);
  min-width: 100px;
  margin-top: 5px;
  display: none;
  flex-direction: column;
  overflow: hidden;
  z-index: 110;
}

html[dir="rtl"] .lang-selector .lang-dropdown {
  right: auto;
  left: 0;
}

.lang-selector .lang-dropdown.show {
  display: flex;
}

.lang-selector .lang-dropdown a {
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 500;
  color: #1d2d50;
  transition: 0.2s ease;
}

.lang-selector .lang-dropdown a:hover {
  background-color: #f8fafd;
  color: #0e2b48;
}

.menu-toggle {
  display: none;
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero {
  position: relative;
  height: 80vh;
  min-height: 550px;
  background-image: url('assets/dutch_dairy_hero.png');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  color: #f8fafc;
  padding: 60px 8%;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 50%, rgba(14, 43, 72, 0.88) 0%, rgba(14, 43, 72, 0.45) 70%, rgba(14, 43, 72, 0.2) 100%);
  z-index: 1;
}

html[dir="rtl"] .hero-overlay {
  background: radial-gradient(circle at 70% 50%, rgba(14, 43, 72, 0.88) 0%, rgba(14, 43, 72, 0.45) 70%, rgba(14, 43, 72, 0.2) 100%);
}

.hero-content {
  position: relative;
  max-width: 600px;
  z-index: 2;
  animation: fadeInUp 1s ease;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #c49a45;
  background: rgba(196, 154, 69, 0.12);
  border: 1px solid rgba(196, 154, 69, 0.4);
  border-radius: 20px;
  padding: 6px 16px;
  margin-bottom: 20px;
}

.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #c49a45;
}

.hero-title {
  font-size: 52px;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 16px;
}

.hero-title .highlight {
  color: #f8fafc;
  display: block;
}

.hero-subtitle {
  font-size: 30px;
  font-weight: 400;
  color: #c49a45;
  margin-bottom: 24px;
}

.hero-desc {
  font-size: 16px;
  color: rgba(248, 250, 252, 0.85);
  margin-bottom: 36px;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: 16px;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ==========================================
   STATS BAR SECTION
   ========================================== */
.stats-bar {
  background-color: #0e2b48;
  color: #f8fafc;
  padding: 36px 0;
  position: relative;
  z-index: 5;
  border-top: none;
  border-bottom: none;
}

.stats-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: center;
  flex: 1;
}

.stat-icon {
  color: #c49a45;
  background-color: rgba(255, 255, 255, 0.05);
  padding: 12px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stat-info {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
}

.stat-label {
  font-size: 13px;
  color: rgba(248, 250, 252, 0.7);
  font-weight: 500;
}

/* Vertical Divider between cert items */
.cert-divider {
  width: 1px;
  height: 70px;
  background: rgba(255, 255, 255, 0.15);
  flex-shrink: 0;
  margin: 0 10px;
}

/* Certification Badge Items */
.cert-badge-item {
  flex-direction: column;
  gap: 12px;
  text-align: center;
  padding: 8px 16px;
  transition: transform 0.3s ease;
}

.cert-badge-item:hover {
  transform: translateY(-4px);
}

.cert-logo {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  transition: box-shadow 0.3s ease;
  background: transparent;
}

.cert-badge-item:hover .cert-logo {
  box-shadow: 0 4px 20px rgba(196, 154, 69, 0.25);
}

/* All logos use golden color */
.halal-logo,
.vegan-logo,
.vegetarian-logo,
.organic-logo {
  background: transparent;
  color: #c49a45;
}

.cert-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: rgba(248, 250, 252, 0.9);
  text-transform: uppercase;
}

/* ==========================================
   PRODUCTS SECTION
   ========================================== */
.products-section {
  padding: 80px 0;
  background-color: #ffffff;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.product-card {
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0,0,0,0.04);
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(14, 43, 72, 0.1);
  border-color: rgba(196, 154, 69, 0.2);
}

.product-card .card-image {
  height: 180px;
  overflow: hidden;
  position: relative;
  background-color: #f8fafd;
}

.product-card .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .card-image img {
  transform: scale(1.08);
}

.product-card .card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-card .card-title {
  font-size: 18px;
  font-weight: 600;
  color: #0e2b48;
  margin-bottom: 8px;
}

.product-card .card-text {
  font-size: 13px;
  color: #576574;
  margin-bottom: 20px;
  flex-grow: 1;
}

.product-card .card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #c49a45;
}

.product-card .card-link:hover {
  color: #0e2b48;
}

.product-card .arrow-icon {
  transition: transform 0.2s ease;
}

.product-card:hover .arrow-icon {
  transform: translateX(4px);
}

html[dir="rtl"] .product-card:hover .arrow-icon {
  transform: translateX(-4px) rotate(180deg);
}

html[dir="rtl"] .product-card .arrow-icon {
  transform: rotate(180deg);
}

/* ==========================================
   WHY CHOOSE US SECTION
   ========================================== */
.why-section {
  padding: 100px 0;
  background-color: #f8fafd;
  position: relative;
  overflow: hidden;
}

.why-section::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196,154,69,0.07) 0%, transparent 70%);
  pointer-events: none;
}

/* Header */
.why-header {
  text-align: center;
  margin-bottom: 60px;
}

.why-intro {
  font-size: 16px;
  color: #576574;
  max-width: 600px;
  margin: 16px auto 0;
  line-height: 1.8;
}

/* Layout: featured + grid */
.why-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 28px;
  align-items: start;
}

/* Featured Card */
.why-featured {
  background: #0e2b48;
  border-radius: 24px;
  padding: 48px 36px;
  color: #f8fafc;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 380px;
  transition: transform 0.3s ease;
}

.why-featured::after {
  content: '';
  position: absolute;
  bottom: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(196,154,69,0.12);
  pointer-events: none;
}

.why-featured:hover {
  transform: translateY(-4px);
}

.why-feat-number {
  font-size: 72px;
  font-weight: 800;
  line-height: 1;
  color: rgba(196,154,69,0.2);
  position: absolute;
  top: 20px;
  right: 28px;
  font-family: 'Outfit', sans-serif;
}

html[dir="rtl"] .why-feat-number {
  right: auto;
  left: 28px;
}

.why-feat-icon {
  width: 64px;
  height: 64px;
  background: rgba(196,154,69,0.15);
  border: 1px solid rgba(196,154,69,0.3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c49a45;
  margin-top: auto;
}

.why-feat-title {
  font-size: 26px;
  font-weight: 700;
  color: #f8fafc;
  line-height: 1.3;
}

.why-feat-desc {
  font-size: 15px;
  color: rgba(248,250,252,0.75);
  line-height: 1.8;
  max-width: 320px;
}

.why-feat-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #c49a45;
  background: rgba(196,154,69,0.12);
  border: 1px solid rgba(196,154,69,0.3);
  border-radius: 20px;
  padding: 5px 14px;
  margin-top: 8px;
  width: fit-content;
}

/* Small Cards Grid */
.why-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.why-card-new {
  background: #ffffff;
  border-radius: 12px;
  padding: 28px 24px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.04);
  border: 1px solid #e2e8f0;
  position: relative;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow: hidden;
}

.why-card-new::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: #c49a45;
  transition: width 0.3s ease;
}

.why-card-new:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(14, 43, 72, 0.06);
  border-color: rgba(196,154,69,0.2);
}

.why-card-new:hover::before {
  width: 100%;
}

.why-card-wide {
  grid-column: span 2;
  flex-direction: row;
  align-items: center;
  gap: 20px;
}

.why-card-wide .why-card-title,
.why-card-wide .why-card-text {
  margin: 0;
}

.why-card-num {
  font-size: 36px;
  font-weight: 800;
  color: rgba(14,43,72,0.06);
  line-height: 1;
  position: absolute;
  top: 12px;
  right: 16px;
  font-family: 'Outfit', sans-serif;
}

html[dir="rtl"] .why-card-num {
  right: auto;
  left: 16px;
}

.why-card-icon {
  width: 46px;
  height: 46px;
  background: #f8fafd;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0e2b48;
  flex-shrink: 0;
  transition: 0.2s ease;
}

.why-card-new:hover .why-card-icon {
  background: #0e2b48;
  color: #ffffff;
}

.why-card-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 700;
  color: #0e2b48;
  margin-bottom: 4px;
}

.why-card-text {
  font-size: 13px;
  color: #576574;
  line-height: 1.6;
}

/* ==========================================
   OUR STORY SECTION
   ========================================== */
.story-section {
  padding: 100px 0;
  background-color: #0e2b48;
  color: #f8fafc;
}

.story-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.story-text-col .sub-title {
  color: #c49a45 !important;
}

.story-text-col .main-title {
  color: #ffffff;
  margin-top: 10px;
  margin-bottom: 24px;
}

.story-desc {
  font-size: 16px;
  color: rgba(248, 250, 252, 0.85);
  line-height: 1.8;
  margin-bottom: 20px;
}

.story-mission {
  font-size: 15px;
  font-style: italic;
  color: rgba(248, 250, 252, 0.6);
  border-inline-start: 3px solid #c49a45;
  padding-inline-start: 16px;
  line-height: 1.7;
}

.story-values-col {
  display: flex;
  align-items: center;
  justify-content: center;
}

.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.value-pill {
  display: flex;
  align-items: center;
  gap: 12px;
  background-color: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  padding: 14px 20px;
  font-size: 15px;
  font-weight: 600;
  color: #f8fafc;
  transition: all 0.3s ease;
}

.value-pill:hover {
  background-color: rgba(196, 154, 69, 0.15);
  border-color: rgba(196, 154, 69, 0.4);
  transform: translateY(-2px);
}

.value-pill svg {
  color: #c49a45;
  flex-shrink: 0;
}

/* ==========================================
   MARKETS WE SERVE SECTION
   ========================================== */
.markets-section {
  padding: 100px 0;
  background-color: #f8fafd;
}

.section-sub-desc {
  font-size: 16px;
  color: #576574;
  max-width: 680px;
  margin: 16px auto 0;
  line-height: 1.8;
}

/* Split Layout */
.markets-layout-split {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: start;
  margin-top: 50px;
}

@media (max-width: 1024px) {
  .markets-layout-split {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.markets-column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Sub-heading */
.markets-subtitle-wrapper {
  margin-bottom: 10px;
  border-bottom: 2px solid rgba(196, 154, 69, 0.15);
  padding-bottom: 12px;
  display: flex;
  align-items: center;
}

.markets-subtitle {
  font-size: 18px;
  font-weight: 700;
  color: #0e2b48;
  letter-spacing: 0.5px;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-grow: 1;
}

.markets-subtitle::after {
  content: '';
  height: 2px;
  background: #c49a45;
  flex-grow: 1;
}

/* Horizontal Country Cards */
.market-country-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.market-country-card-horizontal {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 24px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 2px 4px rgba(0,0,0,0.04);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 24px;
  position: relative;
  overflow: hidden;
}

.market-country-card-horizontal::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 4px;
  background: linear-gradient(180deg, #0e2b48, #c49a45);
  opacity: 0;
  transition: opacity 0.2s ease;
}

html[dir="rtl"] .market-country-card-horizontal::before {
  left: auto;
  right: 0;
}

.market-country-card-horizontal:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(14, 43, 72, 0.06);
  border-color: rgba(196, 154, 69, 0.2);
}

.market-country-card-horizontal:hover::before {
  opacity: 1;
}

/* Horizontal Flag Badge */
.market-flag-wrapper-horizontal {
  position: relative;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #0e2b48;
  flex-shrink: 0;
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.market-flag-ring-horizontal {
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  border-radius: 50%;
  border: 1.5px solid transparent;
  border-top-color: #c49a45;
  border-bottom-color: #c49a45;
  animation: spin-ring 12s linear infinite;
  opacity: 0.4;
  transition: all 0.3s ease;
}

.market-country-card-horizontal:hover .market-flag-ring-horizontal {
  opacity: 0.9;
  border-color: #c49a45;
  transform: scale(1.04) rotate(180deg);
  animation-play-state: paused;
}

.market-country-card-horizontal:hover .market-flag-wrapper-horizontal {
  background: #0e2b48;
  box-shadow: 0 0 0 5px rgba(196, 154, 69, 0.25);
  transform: scale(1.1);
}

.market-flag {
  color: #ffffff;
  font-size: 30px;
  line-height: 1;
  display: block;
  z-index: 2;
  transition: transform 0.3s ease;
}

.market-country-card-horizontal:hover .market-flag {
  animation: flag-bounce 0.6s ease-in-out infinite alternate;
}

@keyframes flag-bounce {
  0% { transform: translateY(0); }
  100% { transform: translateY(-4px); }
}

.market-info-horizontal {
  flex-grow: 1;
}

.market-header-horizontal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
  flex-wrap: wrap;
  gap: 8px;
}

.market-country-name-horizontal {
  font-size: 18px;
  font-weight: 700;
  color: #0e2b48;
  margin: 0;
}

.market-badge-horizontal {
  background: rgba(196, 154, 69, 0.08);
  border: 1px solid rgba(196, 154, 69, 0.2);
  color: #c49a45;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.market-desc-horizontal {
  font-size: 13.5px;
  color: #576574;
  line-height: 1.6;
  margin-bottom: 12px;
}

/* Bullet Highlights for Scannability */
.market-highlights {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.market-highlights li {
  font-size: 12px;
  font-weight: 600;
  color: #0e2b48;
  display: flex;
  align-items: center;
  gap: 6px;
}

.market-highlights li svg {
  color: #c49a45;
  flex-shrink: 0;
}

/* Right Column: Sectors We Serve 2x2 grid */
.market-sectors-grid-2x2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 30px;
}

@media (max-width: 400px) {
.market-sectors-grid-2x2  {
  margin-top: 0px !important;
}
}

@media (max-width: 600px) {
  .market-sectors-grid-2x2 {
    grid-template-columns: 1fr;
    margin-top: 20px;
  }
}

.segment-card {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 2px 4px rgba(0,0,0,0.04);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.segment-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(14, 43, 72, 0.1);
  border-color: rgba(196, 154, 69, 0.25);
}

.segment-icon-badge {
  width: 52px;
  height: 52px;
  border-radius: 6px;
  background: #f8fafd;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  border: 1px solid #e2e8f0;
}

.segment-card:hover .segment-icon-badge {
  background: #0e2b48;
  border-color: #0e2b48;
  transform: scale(1.05);
}

.segment-icon {
  font-size: 24px;
  line-height: 1;
  transition: transform 0.2s ease;
}

.segment-card:hover .segment-icon {
  transform: scale(1.1);
}

.segment-body {
  flex-grow: 1;
  width: 100%;
}

.segment-title {
  font-size: 16px;
  font-weight: 700;
  color: #0e2b48;
  margin-bottom: 6px;
}

.segment-desc {
  font-size: 13px;
  color: #576574;
  line-height: 1.6;
}

.segment-hover-arrow {
  position: absolute;
  bottom: 20px;
  right: 20px;
  color: #c49a45;
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s ease;
}

html[dir="rtl"] .segment-hover-arrow {
  right: auto;
  left: 20px;
  transform: translateX(10px) scaleX(-1);
}



.segment-card:hover .segment-hover-arrow {
  opacity: 1;
  transform: translateX(0);
}

html[dir="rtl"] .segment-card:hover .segment-hover-arrow {
  transform: translateX(0) scaleX(-1);
}

/* ==========================================
   QUALITY CERTIFICATIONS
   ========================================== */
.certs-section {
  display: none;
  padding: 80px 0;
  background-color: #f8fafd;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
}

.certs-grid {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 50px;
}

.cert-item {
  flex: 1;
  min-width: 160px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Beautiful bespoke CSS badges mimicking the corporate cert labels */
.cert-badge-custom {
  background-color: #ffffff;
  border: 2px solid #0e2b48;
  padding: 12px 24px;
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-weight: 700;
  box-shadow: 0 2px 4px rgba(0,0,0,0.04);
  transition: transform 0.2s ease;
}

.cert-badge-custom:hover {
  transform: scale(1.05);
}

.cert-badge-custom .cert-logo-text {
  font-size: 20px;
  color: #0e2b48;
  letter-spacing: 1px;
}

.cert-badge-custom .cert-desc-text {
  font-size: 10px;
  color: #576574;
  letter-spacing: 0.5px;
  margin-top: 2px;
  text-transform: uppercase;
}

.cert-badge-custom.brcgs {
  border-color: #2e7d32;
}

.cert-badge-custom.brcgs .cert-logo-text {
  color: #2e7d32;
}

.cert-badge-custom.haccp {
  border-color: #c62828;
}

.cert-badge-custom.haccp .cert-logo-text {
  color: #c62828;
}

.cert-badge-custom.iso {
  border-color: #1565c0;
}

.cert-badge-custom.iso .cert-logo-text {
  color: #1565c0;
}

.cert-badge-custom.organic {
  border-color: #2e7d32;
  color: #2e7d32;
  flex-direction: row;
  gap: 8px;
  padding: 15px 24px;
}

.cert-badge-custom.organic .leaf-icon {
  color: #2e7d32;
}

/* ==========================================
   CONTACT & REQUEST A QUOTE SECTION
   ========================================== */
.contact-section {
  background-color: #0e2b48;
  padding: 100px 0;
  color: #f8fafc;
}

.contact-container {
  display: flex;
  align-items: stretch;
  gap: 80px;
}

.contact-left-card {
  flex: 1;
}

.text-gold {
  color: #c49a45 !important;
}

.text-white {
  color: #ffffff !important;
}

.contact-left-card .main-title {
  margin-top: 10px;
  margin-bottom: 40px;
}

.contact-features {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.feature-icon {
  background-color: rgba(255, 255, 255, 0.08);
  color: #c49a45;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 4px;
}

.feature-desc {
  font-size: 14px;
  color: rgba(248, 250, 252, 0.75);
}

/* Request Quote Form */
.contact-right-form {
  flex: 1.2;
  background-color: #07192b;
  padding: 40px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 20px 40px rgba(14, 43, 72, 0.1);
}

.quote-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: flex;
  gap: 20px;
}

.form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  padding: 14px 16px;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 6px;
  color: #f8fafc;
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  transition: all 0.2s ease;
}

.quote-form input::placeholder,
.quote-form textarea::placeholder {
  color: rgba(248, 250, 252, 0.5);
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  outline: none;
  border-color: #c49a45;
  background-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 3px rgba(196, 154, 69, 0.15);
}

/* Custom styled select box dropdown */
.quote-form select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23f8fafc' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 16px;
  padding-right: 40px;
}

html[dir="rtl"] .quote-form select {
  background-position: left 16px center;
  padding-right: 16px;
  padding-left: 40px;
}

.quote-form select option {
  background-color: #07192b;
  color: #f8fafc;
}

.quote-form textarea {
  resize: vertical;
}

/* ==========================================
   FOOTER SECTION
   ========================================== */
.site-footer {
  background-color: #ffffff;
  color: #1d2d50;
  padding: 80px 0 0;
  border-top: 1px solid #e2e8f0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr) 1.2fr;
  gap: 40px;
  padding-bottom: 60px;
}

.footer-col {
  display: flex;
  flex-direction: column;
}

.brand-col .logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.brand-col .logo .brand-name {
  font-size: 24px;
  font-weight: 700;
  color: #0e2b48;
}

.brand-col .brand-desc {
  font-size: 14px;
  color: #576574;
  margin-bottom: 24px;
  max-width: 280px;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-links a {
  background-color: #f8fafd;
  color: #0e2b48;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.social-links a:hover {
  background-color: #0e2b48;
  color: #ffffff;
  transform: translateY(-3px);
}

.footer-title {
  font-size: 16px;
  font-weight: 700;
  color: #0e2b48;
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 8px;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: #c49a45;
}

html[dir="rtl"] .footer-title::after {
  left: auto;
  right: 0;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 14px;
  color: #576574;
  font-weight: 500;
}

.footer-links a:hover {
  color: #0e2b48;
  padding-left: 4px;
}

html[dir="rtl"] .footer-links a:hover {
  padding-left: 0;
  padding-right: 4px;
}

.footer-info {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-info li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: #576574;
}

.footer-info li svg {
  color: #c49a45;
  flex-shrink: 0;
  margin-top: 3px;
}

/* Footer Bottom Bar */
.footer-bottom {
  border-top: 1px solid #e2e8f0;
  padding: 30px 0;
  background-color: #f8fafd;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.copyright {
  font-size: 13px;
  color: #576574;
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a {
  font-size: 13px;
  color: #576574;
}

.footer-legal a:hover {
  color: #0e2b48;
}

/* ==========================================
   PACKAGING & EXPORT SECTION
   ========================================== */
.packaging-section {
  padding: 100px 0;
  background-color: #f8fafd;
  position: relative;
  overflow: hidden;
}

.packaging-layout {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 60px;
  align-items: start;
}

.packaging-info {
  position: sticky;
  top: 120px;
}

.packaging-info .main-title {
  font-size: 38px;
  font-weight: 700;
  color: #0e2b48;
  line-height: 1.25;
  margin-top: 10px;
}

.packaging-info .section-sub-desc {
  margin-top: 20px;
  color: #576574;
  font-size: 15px;
  line-height: 1.8;
  max-width: 360px;
}

.packaging-decor {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 36px;
}

.decor-line {
  height: 2px;
  width: 80px;
  background: #c49a45;
}

.decor-circle {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #0e2b48;
}

/* Right Column Grid */
.packaging-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.packaging-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 36px 30px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.04);
  border: 1px solid #e2e8f0;
  position: relative;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
  overflow: hidden;
}

.packaging-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #0e2b48, #c49a45);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

html[dir="rtl"] .packaging-card::before {
  transform-origin: right;
  background: linear-gradient(270deg, #0e2b48, #c49a45);
}

.packaging-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(14, 43, 72, 0.1);
  border-color: rgba(196, 154, 69, 0.25);
}

.packaging-card:hover::before {
  transform: scaleX(1);
}

.packaging-card-num {
  font-size: 54px;
  font-weight: 800;
  color: rgba(14, 43, 72, 0.03);
  line-height: 1;
  position: absolute;
  top: 15px;
  right: 20px;
  font-family: 'Outfit', sans-serif;
  transition: all 0.3s ease;
}

html[dir="rtl"] .packaging-card-num {
  right: auto;
  left: 20px;
}

.packaging-card:hover .packaging-card-num {
  color: rgba(196, 154, 69, 0.08);
  transform: scale(1.08);
}

.packaging-icon-wrapper {
  width: 52px;
  height: 52px;
  background: #f8fafd;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0e2b48;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.packaging-card:hover .packaging-icon-wrapper {
  background: #0e2b48;
  color: #ffffff;
  border-color: #0e2b48;
  transform: scale(1.05);
}

.packaging-card-title {
  font-size: 17px;
  font-weight: 700;
  color: #0e2b48;
  margin: 0;
  z-index: 2;
}

.packaging-card-text {
  font-size: 13.5px;
  color: #576574;
  line-height: 1.7;
  margin: 0;
  z-index: 2;
}

/* ==========================================
   RESPONSIVENESS & MEDIA QUERIES
   ========================================== */

/* Large Tablets & Small Desktops (1024px) */
@media (max-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .packaging-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .packaging-info {
    position: relative;
    top: 0;
  }

  .packaging-info .section-sub-desc {
    max-width: 100%;
  }

  .packaging-decor {
    display: none;
  }
  
  .packaging-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  
  .why-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .story-layout {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .markets-countries-grid {
    grid-template-columns: 1fr 1fr;
  }

  .markets-segments-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
  
  .footer-bottom-content {
    justify-content: center;
    flex-direction: column;
    text-align: center;
  }
}

/* Tablets (768px) */
@media (max-width: 768px) {
  /* Navbar adjustments */
  .navbar {
    padding: 16px 24px;
  }

  .navbar .logo {
    order: 1;
  }

  .menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: none;
    border: none;
    color: #0e2b48;
    cursor: pointer;
    z-index: 120;
    order: 3;
  }

  .menu-toggle .line-top,
  .menu-toggle .line-mid,
  .menu-toggle .line-bot {
    transition: all 0.3s ease;
    transform-origin: center;
  }

  .menu-toggle.open .line-mid {
    opacity: 0;
  }

  .menu-toggle.open .line-top {
    transform: rotate(45deg) translate(4.5px, 4.5px);
  }

  .menu-toggle.open .line-bot {
    transform: rotate(-45deg) translate(4.5px, -4.5px);
  }

  .navbar .nav-links {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    max-height: 0;
    opacity: 0;
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    justify-content: flex-start;
    padding: 0;
    gap: 0;
    overflow: hidden;
    transition: max-height 0.3s ease ease-in-out, opacity 0.3s ease ease-in-out, padding 0.3s ease;
    box-shadow: 0 10px 15px rgba(0,0,0,0.05);
    border-top: 1px solid #e2e8f0;
    pointer-events: none;
  }

  .navbar .nav-links.active {
    max-height: 450px;
    opacity: 1;
    padding: 20px 0;
    pointer-events: auto;
  }

  .navbar .nav-links a {
    width: 100%;
    text-align: center;
    padding: 16px 0;
    font-size: 18px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
  }
  
  .navbar .nav-links a::after {
    display: none;
  }

  .navbar .nav-actions {
    order: 2;
    margin-inline-start: auto;
    margin-inline-end: 15px;
  }

  .nav-quote-btn {
    display: none; /* Hide on tablet/mobile navbar, rely on Hero & Contact sections */
  }

  /* Hero Section */
  .hero {
    height: 70vh;
    padding: 40px 24px;
    text-align: center;
  }

  .hero-overlay {
    background: rgba(14, 43, 72, 0.82) !important;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-title {
    font-size: 38px;
  }

  .hero-subtitle {
    font-size: 22px;
  }

  .hero-desc {
    margin: 0 auto 30px;
  }

  .hero-actions {
    justify-content: center;
  }

  /* Stats Bar */
  .stats-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    max-width: 100%;
    padding: 0;
  }

  .cert-divider {
    display: none;
  }

  .stat-item {
    justify-content: flex-start;
    padding: 16px 24px;
    gap: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  /* Right column items get a left border */
  .stat-item:nth-child(odd) {
    border-inline-end: 1px solid rgba(255, 255, 255, 0.08);
  }

  /* Remove bottom border from last two items */
  .stat-item:nth-last-child(-n+2) {
    border-bottom: none;
  }

  /* Splits Layout */
  .contact-container {
    flex-direction: column;
    gap: 50px;
  }

  .contact-right-form {
    padding: 30px 20px;
  }

  .story-layout {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .story-mission {
    text-align: start;
  }

  .story-values-col {
    justify-content: center;
  }

  .values-grid {
    grid-template-columns: 1fr 1fr;
  }

  .markets-countries-grid {
    grid-template-columns: 1fr;
  }

  .markets-segments-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .packaging-section {
    padding: 80px 0;
  }
  .packaging-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 40px;
  }
  .packaging-card {
    padding: 28px 22px;
  }
}

/* Mobile Phones (480px) */
@media (max-width: 480px) {
  .products-grid {
    grid-template-columns: 1fr;
  }

  .why-cards-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .stats-container {
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }

  .stat-item {
    padding: 14px 16px;
    gap: 12px;
  }

  .stat-number {
    font-size: 15px;
  }

  .stat-label {
    font-size: 11px;
  }

  .form-row {
    flex-direction: column;
    gap: 20px;
  }

  .certs-grid {
    gap: 24px;
  }

  .cert-item {
    min-width: 120px;
  }

  .cert-badge-custom {
    padding: 10px 16px;
  }

  .cert-badge-custom .cert-logo-text {
    font-size: 16px;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .packaging-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .markets-countries-grid {
    grid-template-columns: 1fr;
  }

  .markets-segments-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================
   MAINTENANCE OVERLAY STYLE
   ========================================== */
/* Hide navbar completely during maintenance mode */
header.navbar {
  display: none !important;
}

/* Lock scroll and prevent any interaction with background */
html, body {
  overflow: hidden !important;
  height: 100% !important;
  max-height: 100% !important;
  touch-action: none;
}


.maintenance-overlay {
  position: fixed;
  inset: 0;
  background-color: #07192b;
  background-image: radial-gradient(circle at 50% 50%, rgba(14, 43, 72, 0.95) 0%, #07192b 100%);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-y;
}


.maintenance-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 50px 40px;
  width: 100%;
  max-width: 600px;
  text-align: center;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  position: relative;
  animation: fadeInUp 0.8s ease;
}

.maintenance-logo {
  margin-bottom: 10px;
}

.maintenance-logo img {
  filter: brightness(0) invert(1);
}

/* Custom Overlay Language Selector */
.maint-lang-selector {
  display: flex;
  gap: 12px;
  background: rgba(255, 255, 255, 0.05);
  padding: 6px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.maint-lang-btn {
  background: none;
  border: none;
  color: rgba(248, 250, 252, 0.6);
  font-size: 13px;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.maint-lang-btn:hover {
  color: #f8fafc;
}

/* Highlight active language button dynamically or using document state */
html[lang="en"] .maint-lang-btn:nth-child(1),
html[lang="nl"] .maint-lang-btn:nth-child(2),
html[lang="ar"] .maint-lang-btn:nth-child(3) {
  background: #c49a45;
  color: #f8fafc;
  box-shadow: 0 4px 12px rgba(196, 154, 69, 0.25);
}

.maint-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.maint-title {
  font-size: 26px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.35;
}

html[dir="rtl"] .maint-title {
  font-family: 'Cairo', sans-serif;
}

.maint-text {
  font-size: 15px;
  color: rgba(248, 250, 252, 0.8);
  line-height: 1.8;
  max-width: 500px;
}

html[dir="rtl"] .maint-text {
  font-family: 'Cairo', sans-serif;
}

.maint-inquiry-box {
  background: rgba(196, 154, 69, 0.08);
  border: 1px dashed rgba(196, 154, 69, 0.3);
  padding: 24px;
  border-radius: 12px;
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}

.maint-inquiry-label {
  font-size: 14px;
  color: rgba(248, 250, 252, 0.7);
  font-weight: 500;
}

html[dir="rtl"] .maint-inquiry-label {
  font-family: 'Cairo', sans-serif;
}

.maint-email {
  font-size: 20px;
  font-weight: 700;
  color: #c49a45;
  letter-spacing: 0.5px;
  transition: color 0.2s ease;
}

.maint-email:hover {
  color: #dcae54;
}

.maint-footer-text {
  font-size: 14px;
  color: rgba(248, 250, 252, 0.5);
  font-style: italic;
}

html[dir="rtl"] .maint-footer-text {
  font-family: 'Cairo', sans-serif;
  font-style: normal;
}

/* Prominent developer bypass button at bottom */
.maint-bypass-btn {
  background-color: transparent;
  color: #c49a45;
  border: 1.5px solid #c49a45;
  border-radius: 6px;
  padding: 12px 28px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 15px;
  letter-spacing: 0.5px;
}

.maint-bypass-btn:hover {
  background-color: #c49a45;
  color: #07192b;
  box-shadow: 0 5px 15px rgba(196, 154, 69, 0.3);
  transform: translateY(-2px);
}

html[dir="rtl"] .maint-bypass-btn {
  font-family: 'Cairo', sans-serif;
}

/* Mobile responsive holding page adjustments */
@media (max-width: 576px) {
  .maintenance-card {
    padding: 40px 24px;
    gap: 24px;
    border-radius: 16px;
  }

  .maintenance-overlay {
    align-items: flex-start;
    padding: 40px 16px 24px;
  }
  
  .maint-title {
    font-size: 22px;
  }
  
  .maint-text {
    font-size: 14px;
  }
  
  .maint-email {
    font-size: 16px;
    word-break: break-all;
  }

  .maintenance-logo img {
    width: 160px;
  }
}

/* Very small screens */
@media (max-width: 375px) {
  .maintenance-card {
    padding: 30px 16px;
    gap: 20px;
  }
  .maint-title {
    font-size: 20px;
  }
}



/* RTL Form Inputs & Select Override */
html[dir="rtl"] .quote-form input,
html[dir="rtl"] .quote-form select,
html[dir="rtl"] .quote-form textarea,
.rtl .quote-form input,
.rtl .quote-form select,
.rtl .quote-form textarea {
  font-family: 'Cairo', sans-serif;
}
