/* ==========================================================================
   Hunayn Group Pvt Ltd - Design System & Stylesheet
   Theme: Background Peach Colour Palette with Slate Charcoal Typography & Logo Amber Gold Accents
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Tajawal:wght@400;500;700;800&display=swap');

:root {
  /* Warm Peach Palette */
  --bg-peach-light: #fff8f3;
  --bg-peach-main: #fdeee4;
  --bg-peach-card: #ffffff;
  --bg-peach-soft: #fff2ea;
  --bg-dark-header: #121e33; /* Deep navy for brand logo header framing */
  
  --accent-gold: #f58e1d;
  --accent-gold-bright: #ff9e2e;
  --accent-gold-glow: rgba(245, 142, 29, 0.25);
  --accent-orange-dark: #ea580c;
  --accent-cyan: #0284c7;

  --text-main: #1e293b;     /* Deep slate charcoal for maximum contrast on peach */
  --text-dark: #0f172a;     /* Deep charcoal heading color */
  --text-muted: #475569;    /* Readable slate body text */
  --text-dim: #64748b;
  --text-light: #f8fafc;    /* White text for dark cards/header */

  --border-light: rgba(245, 142, 29, 0.18);
  --border-subtle: rgba(15, 23, 42, 0.08);
  --border-gold: rgba(245, 142, 29, 0.4);

  --font-en: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-ar: 'Tajawal', 'Cairo', sans-serif;

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-main: 0 15px 35px -10px rgba(234, 88, 12, 0.08), 0 4px 12px -2px rgba(15, 23, 42, 0.04);
  --shadow-gold: 0 10px 25px -5px rgba(245, 142, 29, 0.35);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-en);
  background-color: var(--bg-peach-light);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  background-image: 
    radial-gradient(circle at 15% 20%, rgba(245, 142, 29, 0.06) 0%, transparent 45%),
    radial-gradient(circle at 85% 60%, rgba(234, 88, 12, 0.05) 0%, transparent 45%);
  background-attachment: fixed;
}

/* Arabic RTL Font Switcher */
[dir="rtl"] body {
  font-family: var(--font-ar);
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

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

button, input, select, textarea {
  font-family: inherit;
  outline: none;
  border: none;
}

/* Container */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Typography Helpers */
.gradient-text {
  background: linear-gradient(135deg, var(--text-dark) 0%, var(--accent-orange-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gradient-accent {
  background: linear-gradient(135deg, var(--accent-gold) 0%, #ea580c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1.1rem;
  border-radius: 50px;
  background: #ffe8d8;
  border: 1px solid var(--border-gold);
  color: #c2410c;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.3px;
  box-shadow: 0 2px 8px rgba(245, 142, 29, 0.15);
}

.section-header {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 3.5rem auto;
}

.section-header .badge {
  margin-bottom: 1rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1.125rem;
  font-weight: 500;
}

/* ==========================================================================
   Header & Navigation Bar
   ========================================================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
  background: rgba(18, 30, 51, 0.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
  transition: var(--transition);
}

.header.scrolled {
  padding: 0.75rem 0;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1480px;
}

.logo-brand-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transition: var(--transition);
}

.logo-brand-link:hover {
  opacity: 0.9;
}

.header-logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
  border-radius: 6px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.nav-link {
  color: #cbd5e1;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  position: relative;
  white-space: nowrap;
}

.nav-link:hover, .nav-link.active {
  color: var(--accent-gold-bright);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-gold);
  transition: var(--transition);
  border-radius: 2px;
}

[dir="rtl"] .nav-link::after {
  left: auto;
  right: 0;
}

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

header .nav-menu .nav-mobile-quote-btn {
  display: none !important;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.lang-switch {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  padding: 3px;
  cursor: pointer;
}

.lang-btn {
  padding: 0.35rem 0.85rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  color: #cbd5e1;
  background: transparent;
  cursor: pointer;
  transition: var(--transition);
}

.lang-btn.active {
  background: var(--accent-gold);
  color: #0c1524;
  box-shadow: 0 2px 10px rgba(245, 142, 29, 0.4);
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.75rem 1.6rem;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--accent-gold) 0%, #ea580c 100%);
  color: #ffffff;
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: var(--shadow-gold);
  transition: var(--transition);
  cursor: pointer;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 35px -5px rgba(245, 142, 29, 0.5);
  background: linear-gradient(135deg, var(--accent-gold-bright) 0%, var(--accent-gold) 100%);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.75rem 1.6rem;
  border-radius: var(--radius-md);
  background: #ffffff;
  border: 1px solid var(--border-gold);
  color: var(--text-dark);
  font-weight: 700;
  font-size: 0.95rem;
  transition: var(--transition);
  box-shadow: var(--shadow-main);
  cursor: pointer;
}

.btn-secondary:hover {
  background: #fff8f3;
  border-color: var(--accent-gold);
  transform: translateY(-2px);
}

.mobile-toggle {
  display: none;
  background: transparent;
  color: #ffffff;
  font-size: 1.5rem;
  cursor: pointer;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
  padding: 11rem 0 6rem 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #fdeee4 0%, var(--bg-peach-light) 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3.5rem;
  align-items: center;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: 3.25rem;
  font-weight: 800;
  line-height: 1.15;
  margin: 1.25rem 0;
  color: var(--text-dark);
  letter-spacing: -0.5px;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  line-height: 1.6;
}

.hero-desc {
  font-size: 1rem;
  color: var(--text-main);
  margin-bottom: 2.25rem;
  border-left: 4px solid var(--accent-gold);
  padding-left: 1.25rem;
  background: rgba(255, 255, 255, 0.6);
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

[dir="rtl"] .hero-desc {
  border-left: none;
  border-right: 4px solid var(--accent-gold);
  padding-left: 0;
  padding-right: 1.25rem;
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-light);
}

.stat-card {
  text-align: left;
}

[dir="rtl"] .stat-card {
  text-align: right;
}

.stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent-orange-dark);
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 600;
}

.hero-visual {
  position: relative;
}

.hero-card-featured {
  background: #ffffff;
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-xl);
  padding: 1.25rem;
  box-shadow: 0 20px 45px -10px rgba(234, 88, 12, 0.15);
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.hero-card-featured:hover {
  transform: translateY(-5px);
}

.hero-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
  background: var(--bg-peach-main);
  cursor: pointer;
}

.hero-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.hero-card-featured:hover img {
  transform: scale(1.04);
}

.hero-card-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: linear-gradient(135deg, var(--accent-gold) 0%, #ea580c 100%);
  color: #ffffff;
  padding: 0.4rem 0.9rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(245, 142, 29, 0.4);
  z-index: 5;
}

[dir="rtl"] .hero-card-badge {
  right: auto;
  left: 1rem;
}

.float-card {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: #ffffff;
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  box-shadow: 0 15px 35px rgba(15, 23, 42, 0.12);
  z-index: 10;
  animation: float 4s ease-in-out infinite alternate;
}

[dir="rtl"] .float-card {
  left: auto;
  right: -20px;
}

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

.float-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #ffe8d8;
  color: #ea580c;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

/* ==========================================================================
   Product Spotlight Sections (Brass Anchors, Fischer Plugs, Access Panels)
   ========================================================================== */
.product-spotlight-section {
  padding: 6rem 0;
  position: relative;
  background: var(--bg-peach-light);
}

.product-spotlight-section.alt-bg {
  background: var(--bg-peach-main);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.spotlight-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.spotlight-img-box {
  background: #ffffff;
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-xl);
  padding: 1.25rem;
  box-shadow: var(--shadow-main);
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition);
}

.spotlight-img-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -10px rgba(245, 142, 29, 0.2);
}

.spotlight-img-box img {
  border-radius: var(--radius-lg);
  width: 100%;
  height: 380px;
  object-fit: cover;
}

.spotlight-heading {
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.spotlight-text {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.spotlight-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.spotlight-feat-pill {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.75rem 1rem;
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-dark);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.spotlight-feat-pill i {
  color: #ea580c;
  font-size: 1.1rem;
}

/* ==========================================================================
   Access Panels Section
   ========================================================================== */
.access-panels-section {
  padding: 6rem 0;
  position: relative;
  background: var(--bg-peach-soft);
}

.ap-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
  margin-bottom: 5rem;
}

.ap-poster-box {
  background: #ffffff;
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-xl);
  padding: 1.25rem;
  box-shadow: var(--shadow-main);
  position: relative;
  overflow: hidden;
}

.ap-poster-box img {
  border-radius: var(--radius-lg);
  width: 100%;
  height: 420px;
  object-fit: cover;
  cursor: pointer;
  transition: var(--transition);
}

.ap-poster-box:hover img {
  transform: scale(1.02);
}

.ap-features-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.ap-feat-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.25rem;
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  transition: var(--transition);
}

.ap-feat-item:hover {
  border-color: var(--accent-gold);
  transform: translateX(6px);
}

[dir="rtl"] .ap-feat-item:hover {
  transform: translateX(-6px);
}

.ap-feat-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #ffe8d8;
  border: 1px solid var(--border-gold);
  color: #ea580c;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.ap-feat-content h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.25rem;
}

.ap-feat-content p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.ap-pills-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.ap-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.9rem;
  border-radius: 50px;
  background: #ffffff;
  border: 1px solid var(--border-gold);
  color: #c2410c;
  font-size: 0.85rem;
  font-weight: 700;
}

.ap-sizes-box {
  background: #ffffff;
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-xl);
  padding: 3rem 2.5rem;
  box-shadow: var(--shadow-main);
}

.ap-sizes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.size-card {
  background: var(--bg-peach-light);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: var(--transition);
  position: relative;
}

.size-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent-gold);
  box-shadow: 0 15px 30px -5px rgba(245, 142, 29, 0.15);
}

.size-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  background: #ffe8d8;
  color: #ea580c;
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: 0.85rem;
}

.size-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.size-dims {
  font-size: 0.95rem;
  font-weight: 700;
  color: #ea580c;
  margin-bottom: 0.85rem;
}

.size-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ==========================================================================
   Products Gallery Showcase
   ========================================================================== */
.products-section {
  padding: 6rem 0;
  background: var(--bg-peach-light);
}

.filter-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}

.filter-btn {
  padding: 0.65rem 1.4rem;
  border-radius: 50px;
  background: #ffffff;
  border: 1px solid var(--border-light);
  color: var(--text-muted);
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
}

.filter-btn:hover, .filter-btn.active {
  background: linear-gradient(135deg, var(--accent-gold) 0%, #ea580c 100%);
  color: #ffffff;
  border-color: transparent;
  box-shadow: var(--shadow-gold);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
}

.prod-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-main);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.prod-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent-gold);
  box-shadow: 0 20px 40px -10px rgba(234, 88, 12, 0.15);
}

.prod-img-box {
  position: relative;
  aspect-ratio: 4/3;
  background: var(--bg-peach-main);
  overflow: hidden;
  cursor: pointer;
}

.prod-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.prod-card:hover .prod-img-box img {
  transform: scale(1.06);
}

.prod-overlay {
  position: absolute;
  inset: 0;
  background: rgba(18, 30, 51, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.prod-card:hover .prod-overlay {
  opacity: 1;
}

.btn-view-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--accent-gold);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.prod-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.prod-cat-tag {
  font-size: 0.78rem;
  font-weight: 700;
  color: #ea580c;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.5rem;
}

.prod-title-text {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 0.6rem;
  line-height: 1.35;
}

.prod-desc-text {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  line-height: 1.5;
  flex-grow: 1;
}

.prod-card-footer {
  padding-top: 1rem;
  border-top: 1px solid var(--border-subtle);
}

.btn-inquire-sm {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #ea580c;
  font-weight: 700;
  font-size: 0.88rem;
  transition: var(--transition);
}

.btn-inquire-sm:hover {
  color: var(--accent-gold);
  transform: translateX(4px);
}

[dir="rtl"] .btn-inquire-sm:hover {
  transform: translateX(-4px);
}

/* ==========================================================================
   About Us Section
   ========================================================================== */
.about-section {
  padding: 6rem 0;
  background: var(--bg-peach-main);
}

.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 4rem;
  align-items: center;
}

.about-img-box {
  background: #ffffff;
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-xl);
  padding: 1.25rem;
  box-shadow: var(--shadow-main);
}

.about-img-box img {
  border-radius: var(--radius-lg);
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.about-badge {
  margin-bottom: 1rem;
}

.about-paragraph {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  line-height: 1.75;
}

.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-top: 2rem;
}

.about-hl-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.about-hl-card h5 {
  color: var(--text-dark);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.about-hl-card p {
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* ==========================================================================
   Why Choose Us Section
   ========================================================================== */
.why-section {
  padding: 6rem 0;
  background: var(--bg-peach-light);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.why-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: var(--transition);
  position: relative;
  box-shadow: var(--shadow-main);
}

.why-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent-gold);
  box-shadow: 0 20px 40px -10px rgba(234, 88, 12, 0.15);
}

.why-num {
  font-size: 2.25rem;
  font-weight: 800;
  color: rgba(245, 142, 29, 0.25);
  position: absolute;
  top: 1rem;
  right: 1.25rem;
}

[dir="rtl"] .why-num {
  right: auto;
  left: 1.25rem;
}

.why-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: #ffe8d8;
  color: #ea580c;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.25rem;
}

.why-text-content {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.4;
}

.why-banner {
  background: linear-gradient(135deg, #121e33 0%, #1e293b 100%);
  border-radius: var(--radius-xl);
  padding: 3.5rem 3rem;
  text-align: center;
  box-shadow: 0 20px 50px rgba(18, 30, 51, 0.3);
  color: #ffffff;
}

.why-banner h3 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.why-banner p {
  color: #cbd5e1;
  max-width: 700px;
  margin: 0 auto 2rem auto;
  font-size: 1.05rem;
}

/* ==========================================================================
   Global Export Section
   ========================================================================== */
.export-section {
  padding: 6rem 0;
  background: var(--bg-peach-soft);
}

.export-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}

.export-content p {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  line-height: 1.7;
}

.export-strength-box {
  background: #ffffff;
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  margin-top: 2rem;
  box-shadow: var(--shadow-main);
}

.export-strength-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.export-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.export-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
}

.export-item i {
  color: #ea580c;
  font-size: 1.15rem;
}

.export-map-card {
  background: linear-gradient(135deg, #121e33 0%, #1e293b 100%);
  border-radius: var(--radius-xl);
  padding: 3rem 2.5rem;
  text-align: center;
  box-shadow: 0 20px 45px rgba(18, 30, 51, 0.3);
  color: #ffffff;
}

.export-globe-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(245, 142, 29, 0.2);
  color: var(--accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.25rem;
  margin: 0 auto 1.5rem auto;
}

.export-map-title {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.export-map-desc {
  color: #cbd5e1;
  font-size: 0.95rem;
  margin-bottom: 2rem;
}

.export-badge-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.export-location-tag {
  padding: 0.4rem 1rem;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent-gold-bright);
}

/* ==========================================================================
   Contact & Inquiry Section
   ========================================================================== */
.contact-section {
  padding: 6rem 0;
  background: var(--bg-peach-main);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3.5rem;
}

.contact-info-card {
  background: #ffffff;
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-main);
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}

.contact-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #ffe8d8;
  color: #ea580c;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  flex-shrink: 0;
}

.contact-details h5 {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}

.contact-details a, .contact-details p {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
}

.contact-details a:hover {
  color: #ea580c;
}

.btn-whatsapp-direct {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem;
  border-radius: var(--radius-md);
  background: #25d366;
  color: #ffffff;
  font-weight: 700;
  font-size: 1.05rem;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
  transition: var(--transition);
  margin-top: auto;
}

.btn-whatsapp-direct:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(37, 211, 102, 0.4);
}

.contact-form-card {
  background: #ffffff;
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-main);
}

.form-title {
  font-size: 1.75rem;
  font-weight: 800;
  margin-bottom: 1.75rem;
  color: var(--text-dark);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.form-control {
  width: 100%;
  padding: 0.85rem 1.25rem;
  border-radius: var(--radius-md);
  background: var(--bg-peach-light);
  border: 1px solid var(--border-light);
  color: var(--text-dark);
  font-size: 0.95rem;
  font-weight: 500;
  transition: var(--transition);
}

.form-control:focus {
  background: #ffffff;
  border-color: var(--accent-gold);
  box-shadow: 0 0 0 4px rgba(245, 142, 29, 0.15);
}

textarea.form-control {
  resize: vertical;
  min-height: 130px;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
  background: #121e33;
  color: #ffffff;
  padding: 5rem 0 2.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-logo-img {
  height: 52px;
  width: auto;
  border-radius: 6px;
  margin-bottom: 0.75rem;
}

.footer-tagline {
  color: #cbd5e1;
  font-size: 0.95rem;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 2rem;
  color: #94a3b8;
  font-size: 0.9rem;
  flex-wrap: wrap;
  gap: 1rem;
}

/* ==========================================================================
   Modal Lightbox
   ========================================================================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(15px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-box {
  background: #ffffff;
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-xl);
  max-width: 900px;
  width: 100%;
  overflow: hidden;
  position: relative;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(15, 23, 42, 0.6);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  cursor: pointer;
  z-index: 10;
  transition: var(--transition);
}

.modal-close:hover {
  background: #ea580c;
}

.modal-body {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
}

.modal-img-container {
  aspect-ratio: 4/3;
  background: var(--bg-peach-main);
}

.modal-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-info {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.modal-title {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.modal-desc {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-grid, .ap-grid, .spotlight-grid, .about-grid, .export-grid, .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .ap-sizes-grid {
    grid-template-columns: 1fr;
  }
  
  .modal-body {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  header .nav-actions .nav-desktop-quote-btn {
    display: none !important;
  }

  header .nav-menu .nav-mobile-quote-btn {
    display: inline-flex !important;
    width: 100%;
    margin-top: 1rem;
  }

  .mobile-toggle {
    display: block;
  }

  .nav-menu {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: #121e33;
    flex-direction: column;
    padding: 2rem;
    gap: 1.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    transform: translateY(-150%);
    transition: transform 0.4s ease;
  }

  .nav-menu.active {
    transform: translateY(0);
  }

  .hero-title {
    font-size: 2.35rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .why-grid {
    grid-template-columns: 1fr;
  }
  
  .spotlight-features {
    grid-template-columns: 1fr;
  }
}
