/* ==========================================================================
   شركة جزيرة السفن للتجارة العامة المحدودة
   Jazirat Al-Sufun for General Trading L.L.C
   Master Luxury Stylesheet - 2026
   ========================================================================== */

/* 1. Google Fonts Import (3 Distinct Arabic Fonts) */
@import url('https://fonts.googleapis.com/css2?family=Amiri:ital,wght@0,400;0,700;1,400;1,700&family=Cairo:wght@400;500;600;700;800;900&family=Tajawal:wght@300;400;500;700;800&family=Reem+Kufi:wght@400;500;600;700&display=swap');

/* 2. Root Variables & Color Tokens */
:root {
  /* Brand Fonts */
  --font-brand: 'Reem Kufi', 'Amiri', serif;
  --font-heading: 'Cairo', sans-serif;
  --font-body: 'Tajawal', sans-serif;

  /* Primary Luxury Palette */
  --color-navy-darkest: #060d17;
  --color-navy-dark: #0a1628;
  --color-navy-mid: #11223d;
  --color-navy-surface: #162b4c;
  --color-navy-card: rgba(17, 34, 61, 0.75);
  
  /* Gold Accent Spectrum */
  --color-gold-light: #fbeea4;
  --color-gold: #d4af37;
  --color-gold-metallic: #c5a059;
  --color-gold-dark: #997828;
  --gradient-gold: linear-gradient(135deg, #fceb9e 0%, #d4af37 50%, #997828 100%);
  --gradient-gold-subtle: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(212, 175, 55, 0.03) 100%);
  --gradient-gold-border: linear-gradient(135deg, #fbeea4, #d4af37, #856417);
  
  /* Neutrals & Contrast */
  --color-white: #ffffff;
  --color-text-main: #f8fafc;
  --color-text-muted: #94a3b8;
  --color-text-light: #cbd5e1;
  --color-border-glass: rgba(212, 175, 55, 0.22);
  --color-border-soft: rgba(255, 255, 255, 0.08);

  /* Shadows */
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.25);
  --shadow-md: 0 10px 25px -5px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 20px 40px -10px rgba(0, 0, 0, 0.6);
  --shadow-gold: 0 10px 30px -5px rgba(212, 175, 55, 0.25);

  /* Layout & Transitions */
  --border-radius-sm: 8px;
  --border-radius-md: 16px;
  --border-radius-lg: 24px;
  --transition-normal: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

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

body {
  direction: rtl;
  text-align: right;
  font-family: var(--font-body);
  background-color: var(--color-navy-darkest);
  color: var(--color-text-main);
  line-height: 1.75;
  overflow-x: hidden;
  background-image: 
    radial-gradient(circle at 10% 20%, rgba(212, 175, 55, 0.04) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(30, 62, 98, 0.2) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(10, 22, 40, 0.9) 0%, #060d17 100%);
  background-attachment: fixed;
}

/* Typography Hierarchy */
h1, h2, h3, h4, h5, h6 {
  color: var(--color-text-main);
  line-height: 1.35;
}

.brand-font {
  font-family: var(--font-brand) !important;
}

.heading-font {
  font-family: var(--font-heading) !important;
}

.body-font {
  font-family: var(--font-body) !important;
}

/* Luxury Text Gradient */
.text-gold-gradient {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

/* Reusable Containers */
.container {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.section-spacing {
  padding-top: 6rem;
  padding-bottom: 6rem;
  position: relative;
}

/* Badges & Accents */
.badge-gold {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid var(--color-border-glass);
  color: var(--color-gold-light);
  padding: 0.4rem 1.1rem;
  border-radius: 9999px;
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 600;
  backdrop-filter: blur(10px);
}

.badge-gold i {
  color: var(--color-gold);
}

/* Section Header Component */
.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 4rem auto;
}

.section-header .section-subtitle {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-gold);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.section-header .section-title {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--color-white);
  margin-bottom: 1.25rem;
}

.section-header .section-desc {
  font-size: 1.1rem;
  color: var(--color-text-muted);
  line-height: 1.8;
}

/* Divider Flourish */
.gold-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 1.5rem auto;
}

.gold-divider::before, .gold-divider::after {
  content: '';
  height: 1px;
  width: 60px;
  background: var(--gradient-gold);
}

.gold-divider i {
  color: var(--color-gold);
  font-size: 0.9rem;
}

/* Luxury Glass Card */
.glass-card {
  background: var(--color-navy-card);
  border: 1px solid var(--color-border-glass);
  border-radius: var(--border-radius-md);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: var(--shadow-md);
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.glass-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 175, 55, 0.45);
  box-shadow: var(--shadow-gold);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.85rem 1.8rem;
  border-radius: var(--border-radius-sm);
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition-normal);
  border: 1px solid transparent;
}

.btn-gold {
  background: var(--gradient-gold);
  color: #060d17;
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.45);
  color: #000;
}

.btn-outline-gold {
  background: rgba(212, 175, 55, 0.05);
  color: var(--color-gold-light);
  border-color: var(--color-gold);
  backdrop-filter: blur(8px);
}

.btn-outline-gold:hover {
  background: rgba(212, 175, 55, 0.18);
  color: #ffffff;
  border-color: #fbeea4;
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: #25d366;
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  background: #20ba59;
  transform: translateY(-2px);
  color: #fff;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45);
}

/* ==========================================================================
   4. Top Bar & Navigation
   ========================================================================== */
.top-bar {
  background: rgba(6, 13, 23, 0.95);
  border-bottom: 1px solid var(--color-border-soft);
  font-size: 0.85rem;
  padding: 0.5rem 0;
  color: var(--color-text-muted);
}

.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.top-bar-info {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.top-bar-item {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.top-bar-item i {
  color: var(--color-gold);
}

.main-navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(10, 22, 40, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--color-border-glass);
  transition: var(--transition-normal);
}

.navbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.85rem;
  padding-bottom: 0.85rem;
}

/* Brand Logo */
.brand-logo-wrap {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
}

.brand-emblem {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: linear-gradient(135deg, #11223d, #0a1628);
  border: 1.5px solid var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.25);
  position: relative;
  overflow: hidden;
}

.brand-emblem::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(212, 175, 55, 0.15), transparent);
  transform: rotate(45deg);
}

.brand-emblem i {
  font-size: 1.65rem;
  color: var(--color-gold);
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: var(--font-brand);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.2;
}

.brand-tagline {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  color: var(--color-gold);
  letter-spacing: 0.5px;
}

/* Nav Links */
.nav-menu {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 1.5rem;
}

.nav-link {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-text-light);
  text-decoration: none;
  transition: var(--transition-normal);
  padding: 0.4rem 0.2rem;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-gold);
  transition: var(--transition-normal);
}

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

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

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

.menu-toggle {
  display: none;
  background: none;
  border: 1px solid var(--color-border-glass);
  color: var(--color-gold);
  font-size: 1.4rem;
  padding: 0.4rem 0.75rem;
  border-radius: var(--border-radius-sm);
  cursor: pointer;
}

/* ==========================================================================
   5. Hero Section
   ========================================================================== */
.hero-section {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding: 4rem 0 6rem 0;
  overflow: hidden;
}

.hero-glow-1 {
  position: absolute;
  top: 10%;
  right: -10%;
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.12) 0%, transparent 70%);
  filter: blur(60px);
  pointer-events: none;
}

.hero-glow-2 {
  position: absolute;
  bottom: 0;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(30, 62, 98, 0.28) 0%, transparent 70%);
  filter: blur(70px);
  pointer-events: none;
}

.hero-grid-pattern {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(212, 175, 55, 0.03) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(212, 175, 55, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: radial-gradient(circle at center, black 40%, transparent 80%);
  -webkit-mask-image: radial-gradient(circle at center, black 40%, transparent 80%);
  pointer-events: none;
}

.hero-content {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-text {
  max-width: 680px;
}

.hero-slogan-wrap {
  margin-bottom: 1.25rem;
}

.hero-title {
  font-family: var(--font-brand);
  font-size: 3.4rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.25rem;
}

.hero-subtitle {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-gold);
  margin-bottom: 1.5rem;
}

.hero-paragraph {
  font-size: 1.15rem;
  color: var(--color-text-light);
  line-height: 1.9;
  margin-bottom: 2.25rem;
}

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

.hero-trust-badges {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--color-border-soft);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.trust-item i {
  color: var(--color-gold);
  font-size: 1.1rem;
}

/* Hero Visual / Feature Card */
.hero-visual-card {
  background: linear-gradient(145deg, rgba(17, 34, 61, 0.85), rgba(10, 22, 40, 0.92));
  border: 1.5px solid var(--color-border-glass);
  border-radius: var(--border-radius-lg);
  padding: 2.25rem;
  box-shadow: var(--shadow-lg), 0 0 35px rgba(212, 175, 55, 0.12);
  position: relative;
}

.hero-visual-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: var(--gradient-gold);
  border-top-left-radius: var(--border-radius-lg);
  border-top-right-radius: var(--border-radius-lg);
}

.card-official-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.75rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--color-border-soft);
}

.official-badge-iraq {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.iraq-flag-icon {
  width: 28px;
  height: 20px;
  border-radius: 3px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.4);
}

.official-text {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-white);
}

.card-capital-feature {
  text-align: center;
  background: rgba(6, 13, 23, 0.6);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: var(--border-radius-md);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.capital-label {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-bottom: 0.35rem;
}

.capital-amount {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--color-gold-light);
  line-height: 1.2;
}

.capital-sub {
  font-size: 0.85rem;
  color: var(--color-text-light);
  margin-top: 0.25rem;
}

.card-points-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.card-point {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  font-size: 0.95rem;
  color: var(--color-text-light);
}

.card-point-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.15);
  color: var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

/* ==========================================================================
   6. Key Stats Counter Bar
   ========================================================================== */
.stats-bar-section {
  position: relative;
  margin-top: -3rem;
  z-index: 10;
}

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

.stat-box {
  background: linear-gradient(135deg, rgba(22, 43, 76, 0.85), rgba(10, 22, 40, 0.95));
  border: 1px solid var(--color-border-glass);
  border-radius: var(--border-radius-md);
  padding: 1.75rem 1.25rem;
  text-align: center;
  backdrop-filter: blur(15px);
  box-shadow: var(--shadow-md);
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.stat-box:hover {
  transform: translateY(-5px);
  border-color: var(--color-gold);
  box-shadow: var(--shadow-gold);
}

.stat-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 1rem auto;
  border-radius: 12px;
  background: rgba(212, 175, 55, 0.12);
  color: var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
}

.stat-value {
  font-family: var(--font-heading);
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--color-white);
  line-height: 1.15;
  margin-bottom: 0.35rem;
  direction: ltr;
  display: inline-block;
}

.stat-currency {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-gold);
  margin-right: 0.3rem;
}

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

/* ==========================================================================
   7. About Us & Executive Leadership
   ========================================================================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.about-text-content .about-lead {
  font-size: 1.2rem;
  color: var(--color-gold-light);
  font-weight: 600;
  margin-bottom: 1.25rem;
  line-height: 1.8;
}

.about-text-content p {
  color: var(--color-text-light);
  font-size: 1.05rem;
  margin-bottom: 1.25rem;
  line-height: 1.85;
}

.about-features-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}

.about-feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--color-border-soft);
  padding: 0.85rem 1rem;
  border-radius: var(--border-radius-sm);
}

.about-feature-item i {
  color: var(--color-gold);
  font-size: 1.2rem;
}

.about-feature-item span {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-text-main);
}

/* Leadership Showcase Card */
.leadership-card {
  background: linear-gradient(145deg, #11223d, #0b172a);
  border: 1.5px solid var(--color-border-glass);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.leadership-image-wrap {
  position: relative;
  width: 100%;
  height: 380px;
  overflow: hidden;
}

.leadership-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.6s ease;
}

.leadership-card:hover .leadership-image-wrap img {
  transform: scale(1.04);
}

.leadership-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11, 23, 42, 0.95) 10%, transparent 60%);
}

.leadership-badge-tag {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: rgba(6, 13, 23, 0.85);
  border: 1px solid var(--color-gold);
  color: var(--color-gold-light);
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.35rem 0.9rem;
  border-radius: 9999px;
  backdrop-filter: blur(8px);
}

.leadership-details {
  padding: 1.75rem 2rem 2rem 2rem;
}

.leader-name {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--color-white);
  margin-bottom: 0.35rem;
}

.leader-role {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-gold);
  margin-bottom: 1rem;
}

.leader-meta {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  font-size: 0.9rem;
  color: var(--color-text-muted);
  border-top: 1px solid var(--color-border-soft);
  padding-top: 1rem;
}

.leader-meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.leader-meta-item i {
  color: var(--color-gold);
}

/* Secondary Admin Workspace Card */
.admin-workspace-preview {
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  background: rgba(17, 34, 61, 0.6);
  border: 1px solid var(--color-border-soft);
  border-radius: var(--border-radius-md);
  padding: 1rem;
}

.admin-thumb {
  width: 90px;
  height: 70px;
  border-radius: var(--border-radius-sm);
  overflow: hidden;
  flex-shrink: 0;
  border: 1px solid var(--color-border-glass);
}

.admin-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.admin-info h4 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 0.25rem;
}

.admin-info p {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-bottom: 0;
}

/* ==========================================================================
   8. Vision, Mission & Values
   ========================================================================== */
.vmv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.vmv-card {
  background: linear-gradient(160deg, rgba(22, 43, 76, 0.65), rgba(10, 22, 40, 0.85));
  border: 1.5px solid var(--color-border-glass);
  border-radius: var(--border-radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  position: relative;
  backdrop-filter: blur(15px);
  transition: var(--transition-normal);
}

.vmv-card:hover {
  transform: translateY(-8px);
  border-color: var(--color-gold);
  box-shadow: var(--shadow-gold);
}

.vmv-icon-bubble {
  width: 76px;
  height: 76px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(17, 34, 61, 0.8));
  border: 1.5px solid var(--color-gold);
  margin: 0 auto 1.75rem auto;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold-light);
  font-size: 2rem;
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
}

.vmv-title {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--color-white);
  margin-bottom: 1rem;
}

.vmv-desc {
  font-size: 1.02rem;
  color: var(--color-text-light);
  line-height: 1.85;
}

.values-pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-top: 1.25rem;
}

.values-pill {
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.25);
  color: var(--color-gold-light);
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.3rem 0.75rem;
  border-radius: 9999px;
}

/* ==========================================================================
   9. Capital & Financial Evolution (Timeline)
   ========================================================================== */
.evolution-timeline {
  position: relative;
  max-width: 1050px;
  margin: 0 auto;
}

.timeline-track {
  position: absolute;
  top: 40px;
  right: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(90deg, #162b4c, var(--color-gold), #162b4c);
  z-index: 1;
}

.timeline-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
  z-index: 2;
}

.timeline-step-card {
  background: var(--color-navy-card);
  border: 1.5px solid var(--color-border-glass);
  border-radius: var(--border-radius-lg);
  padding: 2rem 1.75rem;
  text-align: right;
  backdrop-filter: blur(16px);
  transition: var(--transition-normal);
  position: relative;
}

.timeline-step-card.active {
  border-color: var(--color-gold);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.25);
  background: linear-gradient(160deg, rgba(22, 43, 76, 0.9), rgba(11, 23, 42, 0.95));
}

.timeline-badge-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-navy-dark);
  border: 2px solid var(--color-gold);
  color: var(--color-gold-light);
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.35);
}

.timeline-step-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 0.5rem;
}

.timeline-amount {
  font-family: var(--font-heading);
  font-size: 1.85rem;
  font-weight: 900;
  color: var(--color-gold-light);
  line-height: 1.2;
  margin-bottom: 0.35rem;
}

.timeline-amount-sub {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-bottom: 1.25rem;
}

.timeline-meta-list {
  border-top: 1px solid var(--color-border-soft);
  padding-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: var(--color-text-light);
}

.timeline-meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.timeline-meta-item i {
  color: var(--color-gold);
  font-size: 0.8rem;
}

/* ==========================================================================
   10. Strategic Competitive Advantage (Basra)
   ========================================================================== */
.advantage-wrapper {
  background: linear-gradient(135deg, rgba(17, 34, 61, 0.85), rgba(6, 13, 23, 0.95));
  border: 1.5px solid var(--color-border-glass);
  border-radius: var(--border-radius-lg);
  padding: 3.5rem;
  position: relative;
  overflow: hidden;
}

.advantage-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle at 10% 50%, rgba(212, 175, 55, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.advantage-content-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: center;
}

.advantage-header h3 {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-white);
  margin-bottom: 1.25rem;
}

.advantage-header p {
  color: var(--color-text-light);
  font-size: 1.05rem;
  line-height: 1.85;
  margin-bottom: 2rem;
}

.ports-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.port-card {
  background: rgba(6, 13, 23, 0.7);
  border: 1px solid var(--color-border-soft);
  border-radius: var(--border-radius-md);
  padding: 1.25rem;
  transition: var(--transition-normal);
}

.port-card:hover {
  border-color: var(--color-gold);
  transform: translateY(-3px);
}

.port-card-icon {
  color: var(--color-gold);
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.port-card h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 0.35rem;
}

.port-card p {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  margin-bottom: 0;
  line-height: 1.6;
}

/* Strategic Map Card Visual */
.basra-hub-card {
  background: linear-gradient(145deg, #162b4c, #0a1628);
  border: 1px solid var(--color-border-glass);
  border-radius: var(--border-radius-md);
  padding: 2rem;
  text-align: center;
  position: relative;
}

.hub-circle-animation {
  width: 120px;
  height: 120px;
  margin: 0 auto 1.5rem auto;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.1);
  border: 2px dashed var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold);
  font-size: 3rem;
  animation: rotateHub 25s linear infinite;
}

@keyframes rotateHub {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.basra-hub-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--color-white);
  margin-bottom: 0.5rem;
}

.basra-hub-text {
  font-size: 0.92rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* ==========================================================================
   11. Organizational Structure & Divisions
   ========================================================================== */
.divisions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.division-card {
  background: var(--color-navy-card);
  border: 1.5px solid var(--color-border-glass);
  border-radius: var(--border-radius-lg);
  padding: 2.25rem 1.75rem;
  backdrop-filter: blur(16px);
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.division-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 0%;
  height: 3px;
  background: var(--gradient-gold);
  transition: var(--transition-normal);
}

.division-card:hover {
  transform: translateY(-6px);
  border-color: var(--color-gold);
  box-shadow: var(--shadow-gold);
}

.division-card:hover::before {
  width: 100%;
}

.division-num {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 900;
  color: rgba(212, 175, 55, 0.15);
}

.division-icon {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.25);
  color: var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
}

.division-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--color-white);
  margin-bottom: 0.85rem;
}

.division-desc {
  font-size: 0.98rem;
  color: var(--color-text-light);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.division-badge-tag {
  align-self: flex-start;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--color-gold);
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

/* ==========================================================================
   12. Infrastructure & Operations Pillars
   ========================================================================== */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.pillar-card {
  background: rgba(17, 34, 61, 0.6);
  border: 1px solid var(--color-border-soft);
  border-radius: var(--border-radius-md);
  padding: 1.75rem;
  text-align: center;
  transition: var(--transition-normal);
}

.pillar-card:hover {
  border-color: var(--color-border-glass);
  background: rgba(17, 34, 61, 0.9);
  transform: translateY(-4px);
}

.pillar-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.1);
  color: var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin: 0 auto 1.25rem auto;
}

.pillar-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 0.75rem;
}

.pillar-text {
  font-size: 0.92rem;
  color: var(--color-text-muted);
  line-height: 1.75;
}

/* ==========================================================================
   13. Gallery & Inventory Showcase
   ========================================================================== */
.gallery-filter-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.filter-btn {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.65rem 1.4rem;
  border-radius: 9999px;
  background: rgba(17, 34, 61, 0.6);
  border: 1px solid var(--color-border-soft);
  color: var(--color-text-light);
  cursor: pointer;
  transition: var(--transition-normal);
}

.filter-btn:hover, .filter-btn.active {
  background: var(--gradient-gold);
  color: #060d17;
  border-color: transparent;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.gallery-item {
  position: relative;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  border: 1.5px solid var(--color-border-glass);
  background: #0b172a;
  box-shadow: var(--shadow-md);
  aspect-ratio: 4 / 3;
  cursor: pointer;
  transition: var(--transition-normal);
}

.gallery-item.tall {
  aspect-ratio: 9 / 16;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6, 13, 23, 0.92) 0%, rgba(6, 13, 23, 0.2) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: var(--transition-normal);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-tag {
  align-self: flex-start;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  background: var(--color-gold);
  color: #060d17;
  padding: 0.2rem 0.65rem;
  border-radius: 4px;
  margin-bottom: 0.5rem;
}

.gallery-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 0.25rem;
}

.gallery-desc {
  font-size: 0.85rem;
  color: var(--color-text-light);
  line-height: 1.5;
}

.gallery-zoom-icon {
  position: absolute;
  top: 1rem;
  left: 1rem;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(6, 13, 23, 0.8);
  border: 1px solid var(--color-gold);
  color: var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
}

/* Lightbox Modal */
.lightbox-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(4, 9, 16, 0.95);
  backdrop-filter: blur(15px);
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

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

.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-img {
  max-width: 100%;
  max-height: 75vh;
  object-fit: contain;
  border-radius: var(--border-radius-md);
  border: 1.5px solid var(--color-gold);
  box-shadow: 0 0 40px rgba(212, 175, 55, 0.3);
}

.lightbox-caption {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-white);
  margin-top: 1rem;
  text-align: center;
}

.lightbox-close {
  position: absolute;
  top: -2.5rem;
  left: 0;
  background: none;
  border: none;
  color: var(--color-gold);
  font-size: 2rem;
  cursor: pointer;
  transition: var(--transition-normal);
}

.lightbox-close:hover {
  color: #fff;
  transform: scale(1.1);
}

/* ==========================================================================
   14. Legal Identity & Official Accreditation Card
   ========================================================================== */
.legal-card-wrapper {
  background: linear-gradient(145deg, rgba(22, 43, 76, 0.9), rgba(10, 22, 40, 0.98));
  border: 2px solid var(--color-gold);
  border-radius: var(--border-radius-lg);
  padding: 3.5rem;
  position: relative;
  box-shadow: var(--shadow-lg), 0 0 50px rgba(212, 175, 55, 0.2);
}

.legal-card-seal {
  position: absolute;
  top: -28px;
  right: 50%;
  transform: translateX(50%);
  background: var(--color-navy-darkest);
  border: 2px solid var(--color-gold);
  padding: 0.5rem 2rem;
  border-radius: 9999px;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--color-gold-light);
  box-shadow: 0 4px 20px rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
}

.legal-data-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.legal-item {
  background: rgba(6, 13, 23, 0.5);
  border: 1px solid var(--color-border-soft);
  border-radius: var(--border-radius-md);
  padding: 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
}

.legal-label {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-gold);
  margin-bottom: 0.35rem;
}

.legal-val {
  font-size: 1.05rem;
  color: var(--color-white);
  font-weight: 600;
}

.legal-verification-box {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.12), rgba(17, 34, 61, 0.8));
  border: 1.5px solid var(--color-gold);
  border-radius: var(--border-radius-md);
  padding: 2rem;
  margin-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.verification-info h4 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--color-gold-light);
  margin-bottom: 0.35rem;
}

.verification-info p {
  color: var(--color-text-light);
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* ==========================================================================
   15. Contact & RFQ Section
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3rem;
  align-items: flex-start;
}

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-card-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  background: var(--color-navy-card);
  border: 1px solid var(--color-border-glass);
  border-radius: var(--border-radius-md);
  padding: 1.5rem;
  backdrop-filter: blur(12px);
  transition: var(--transition-normal);
}

.contact-card-item:hover {
  border-color: var(--color-gold);
  transform: translateX(-4px);
}

.contact-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.3);
  color: var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.contact-card-body h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 0.35rem;
}

.contact-card-body p {
  font-size: 0.95rem;
  color: var(--color-text-light);
  line-height: 1.65;
  margin-bottom: 0;
}

/* Interactive RFQ Form */
.rfq-form-card {
  background: var(--color-navy-card);
  border: 1.5px solid var(--color-border-glass);
  border-radius: var(--border-radius-lg);
  padding: 2.5rem;
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-lg);
}

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

.form-label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 0.5rem;
}

.form-control {
  width: 100%;
  background: rgba(6, 13, 23, 0.7);
  border: 1px solid var(--color-border-soft);
  border-radius: var(--border-radius-sm);
  padding: 0.85rem 1.15rem;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-white);
  transition: var(--transition-normal);
}

.form-control:focus {
  outline: none;
  border-color: var(--color-gold);
  background: rgba(6, 13, 23, 0.95);
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.25);
}

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

/* Toast Alert Notification */
.toast-notice {
  display: none;
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  background: linear-gradient(135deg, #11223d, #0a1628);
  border: 1.5px solid var(--color-gold);
  color: #fff;
  padding: 1rem 1.5rem;
  border-radius: var(--border-radius-md);
  box-shadow: 0 10px 30px rgba(0,0,0,0.6);
  z-index: 10000;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  align-items: center;
  gap: 0.75rem;
  animation: slideInToast 0.4s ease;
}

.toast-notice.show {
  display: flex;
}

@keyframes slideInToast {
  from { transform: translateY(50px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* ==========================================================================
   16. Corporate Footer
   ========================================================================== */
.footer-corporate {
  background: #040911;
  border-top: 1px solid var(--color-border-glass);
  padding: 5rem 0 2rem 0;
  position: relative;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--color-white);
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.75rem;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 40px;
  height: 2px;
  background: var(--gradient-gold);
}

.footer-desc {
  color: var(--color-text-muted);
  font-size: 0.92rem;
  line-height: 1.8;
  margin-top: 1rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  color: var(--color-text-muted);
  text-decoration: none;
  font-size: 0.92rem;
  transition: var(--transition-normal);
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.footer-links a:hover {
  color: var(--color-gold-light);
  transform: translateX(-4px);
}

.footer-bottom {
  border-top: 1px solid var(--color-border-soft);
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

/* Floating Action Button (WhatsApp) */
.floating-whatsapp {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.85rem;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
  z-index: 999;
  text-decoration: none;
  transition: var(--transition-bounce);
}

.floating-whatsapp:hover {
  transform: scale(1.12);
  color: #fff;
}

/* Scroll To Top Button */
.scroll-top-btn {
  position: fixed;
  bottom: 6.5rem;
  right: 2.3rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(17, 34, 61, 0.9);
  border: 1px solid var(--color-border-glass);
  color: var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-normal);
}

.scroll-top-btn.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-top-btn:hover {
  background: var(--color-gold);
  color: #000;
  transform: translateY(-3px);
}

/* ==========================================================================
   17. Responsive Design & Media Queries
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .hero-text {
    max-width: 100%;
    text-align: center;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-trust-badges {
    justify-content: center;
  }

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

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

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

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

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

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

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

  .timeline-track {
    display: none;
  }

  .timeline-steps-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .top-bar {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .nav-menu {
    position: fixed;
    top: 75px;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: calc(100vh - 75px);
    background: rgba(10, 22, 40, 0.98);
    backdrop-filter: blur(25px);
    flex-direction: column;
    align-items: flex-start;
    padding: 2rem;
    gap: 1.25rem;
    border-left: 1px solid var(--color-border-glass);
    transition: 0.4s ease;
    box-shadow: -10px 0 30px rgba(0,0,0,0.5);
  }

  .nav-menu.open {
    right: 0;
  }

  .hero-title {
    font-size: 2.4rem;
  }

  .hero-subtitle {
    font-size: 1.2rem;
  }

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

  .vmv-grid, .divisions-grid, .gallery-grid, .legal-data-grid, .contact-grid {
    grid-template-columns: 1fr;
  }

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

  .advantage-wrapper {
    padding: 2rem 1.5rem;
  }

  .legal-card-wrapper {
    padding: 2rem 1.5rem;
  }

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

/* Print Optimization */
@media print {
  body {
    background: #fff !important;
    color: #000 !important;
  }
  .main-navbar, .floating-whatsapp, .scroll-top-btn, .gallery-filter-bar, .rfq-form-card {
    display: none !important;
  }
}
