/* ============================================================
   BLUEREEF TRADING CO. LLC — Global Stylesheet
   Design system: Apple-inspired minimalism, subtle glassmorphism
   ============================================================ */

:root{
  --blue: #00319B;
  --blue-deep: #001F63;
  --blue-darker: #001238;
  --cyan: #00DAFF;
  --white: #FFFFFF;
  --ink: #0A1830;
  --muted: #5B6B85;
  --muted-light: #8A96AC;
  --surface: #F5F8FC;
  --surface-2: #EEF3FA;
  --border-soft: rgba(0, 49, 155, 0.10);

  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --radius-pill: 999px;

  --shadow-soft: 0 20px 50px rgba(0, 30, 90, 0.10);
  --shadow-lift: 0 30px 70px rgba(0, 30, 90, 0.16);

  --ease: cubic-bezier(.22, 1, .36, 1);
  --container-max: 1240px;
}

*{ box-sizing: border-box; }

html{
  scroll-behavior: smooth;
  overflow-x: clip;
  width: 100%;
}

body{
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Google Sans Flex', 'Segoe UI', Roboto, sans-serif;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
  font-size: 16px;
  line-height: 1.6;
  opacity: 0;
}
body.is-loaded{
  opacity: 1;
  transition: opacity 0.6s var(--ease);
}

/* ---------- Scroll progress bar ---------- */
.scroll-progress{
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  z-index: 2000;
  transition: width 0.1s linear;
}

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

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

.container, .container-fluid{
  max-width: var(--container-max);
}

section{ position: relative; }

/* ---------- Typography ---------- */

h1, h2, h3, h4{
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0;
}

.section-eyebrow{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 16px;
}

.section-eyebrow-light{ color: var(--cyan); }

.section-title{
  font-size: clamp(1.9rem, 1.2rem + 2.4vw, 2.75rem);
  line-height: 1.15;
  margin-bottom: 20px;
}

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

.section-text{
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
  max-width: 640px;
  margin-bottom: 16px;
}

.section-text-light{ color: rgba(255,255,255,0.78); }

.section-head{
  max-width: 720px;
  margin: 0 0 56px;
  text-align: left;
}

/* ---------- Buttons ---------- */

.btn-primary-pill{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(100deg, var(--blue), #0044c9);
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 30px;
  border-radius: var(--radius-pill);
  border: none;
  box-shadow: 0 14px 30px rgba(0, 49, 155, 0.28);
  transition: transform 0.25s var(--ease), box-shadow 0.35s var(--ease);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.btn-primary-pill:hover{
  box-shadow: 0 18px 40px rgba(0, 49, 155, 0.36);
  color: var(--white);
}

.btn-ghost-pill{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(0, 49, 155, 0.06);
  color: var(--blue);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(0, 49, 155, 0.14);
  transition: background 0.3s var(--ease), transform 0.25s var(--ease);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.btn-ghost-pill:hover{
  background: rgba(0, 49, 155, 0.12);
  color: var(--blue);
}

/* Ripple element injected by JS on click */
.btn-ripple{
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.55);
  transform: scale(0);
  animation: ripple-anim 0.6s var(--ease);
  pointer-events: none;
  z-index: -1;
}
.btn-ghost-pill .btn-ripple{ background: rgba(0,49,155,0.16); }
@keyframes ripple-anim{
  to{ transform: scale(1); opacity: 0; }
}

.btn-light-pill{
  background: var(--white);
  color: var(--blue);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
}
.btn-light-pill:hover{ background: var(--white); color: var(--blue); }

.btn-ghost-pill-light{
  background: rgba(255,255,255,0.08);
  color: var(--white);
  border-color: rgba(255,255,255,0.28);
}
.btn-ghost-pill-light:hover{
  background: rgba(255,255,255,0.16);
  color: var(--white);
}

.btn-nav-cta{
  background: linear-gradient(100deg, var(--blue), #0044c9);
  color: var(--white);
  font-weight: 600;
  font-size: 0.88rem;
  padding: 11px 24px;
  border-radius: var(--radius-pill);
  align-items: center;
  box-shadow: 0 10px 22px rgba(0, 49, 155, 0.24);
  transition: transform 0.3s var(--ease);
}
.btn-nav-cta:hover{ transform: translateY(-2px); color: var(--white); }

/* ---------- Glass utilities ---------- */

.glass-card{
  background: rgba(255,255,255,0.66);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
}

/* ============================================================
   HEADER / NAVIGATION
   ============================================================ */

.site-header{
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: box-shadow 0.35s var(--ease), border-color 0.35s var(--ease), background 0.35s var(--ease);
}
.site-header.scrolled{
  box-shadow: 0 8px 30px rgba(0, 20, 60, 0.08);
  border-bottom-color: var(--border-soft);
}

.nav-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px clamp(20px, 5vw, 48px);
}

.brand-logo{ height: 38px; width: auto; transition: filter 0.35s var(--ease); }

.nav-menu{
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-links{
  display: flex;
  list-style: none;
  gap: 34px;
  margin: 0;
  padding: 0;
}

.nav-links a{
  font-size: 0.94rem;
  font-weight: 500;
  color: var(--ink);
  position: relative;
  padding: 6px 0;
  transition: color 0.25s var(--ease);
}
.nav-links a::after{
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  height: 2px; width: 0;
  background: linear-gradient(100deg, var(--blue), var(--cyan));
  transition: width 0.3s var(--ease);
}
.nav-links a:hover,
.nav-links a.active{ color: var(--blue); }
.nav-links a:hover::after,
.nav-links a.active::after{ width: 100%; }

.nav-toggle{
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px; height: 40px;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-toggle span{
  display: block;
  height: 2px;
  width: 100%;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease), background 0.35s var(--ease);
}
.nav-toggle.open span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2){ opacity: 0; }
.nav-toggle.open span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */

.hero{
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 150px 0 100px;
  isolation: isolate;
}

.hero-carousel{
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero-carousel,
.hero-carousel .carousel-inner,
.hero-carousel .carousel-item{
  height: 100%;
}
.hero-carousel .carousel-item img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
}

.hero-overlay{
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(115deg, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.62) 42%, rgba(0, 0, 0, 0.3) 68%, rgba(0, 0, 0, 0.58) 100%);
}

.hero-content{ max-width: 640px; }

.hero-title{
  font-size: clamp(2.5rem, 1.7rem + 3vw, 4rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  color: var(--white);
}

.hero-sub{
  font-size: 1.15rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.82);
  max-width: 540px;
  margin-bottom: 36px;
}

.hero-actions{
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

/* ============================================================
   MARQUEE STRIP
   ============================================================ */

.marquee-section{
  padding: 20px 0;
  background: var(--surface);
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
  overflow: hidden;
}

.marquee{
  display: flex;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.marquee-track{
  display: flex;
  align-items: center;
  gap: 48px;
  flex-shrink: 0;
  padding-right: 48px;
  animation: marquee-scroll 26s linear infinite;
}

.marquee:hover .marquee-track{ animation-play-state: paused; }

.marquee-chip{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--blue);
  white-space: nowrap;
}
.marquee-chip i{ color: var(--cyan); font-size: 0.85rem; }
.marquee-dot{ color: var(--muted-light); }

@keyframes marquee-scroll{
  from{ transform: translateX(0); }
  to{ transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce){
  .marquee-track{ animation: none; }
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */

.about-section{ padding: 110px 0; }

.about-visual{
  position: relative;
  height: 100%;
  min-height: 340px;
}

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

.about-float{
  position: absolute;
  left: 24px;
  bottom: -26px;
  padding: 16px 22px;
}
.dubai-float{
  position: absolute;
  right: 24px;
  bottom: -26px;
  padding: 16px 22px;
}

.about-float-row{
  display: flex;
  align-items: center;
  gap: 14px;
}
.about-float-row i{
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  color: var(--white);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.about-float-row strong{ display: block; font-size: 0.95rem; }
.about-float-row span{ display: block; font-size: 0.8rem; color: var(--muted); }

.check-list{
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.check-list li{
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.98rem;
  color: var(--ink);
}
.check-list i{
  width: 22px; height: 22px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(0, 218, 255, 0.16);
  color: var(--blue);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem;
  margin-top: 2px;
}

/* ============================================================
   PRODUCTS
   ============================================================ */

.products-section{
  padding: 110px 0;
  background: var(--surface);
}

.product-card{
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 100%;
  border: 1px solid var(--border-soft);
  position: relative;
  transition: transform 0.3s var(--ease), box-shadow 0.4s var(--ease);
  will-change: transform;
}
.product-card:hover{
  box-shadow: var(--shadow-lift);
}

.product-index{
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow: 0 8px 18px rgba(0, 20, 60, 0.22);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--blue);
}

.product-img-wrap{
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
}
.product-img-wrap img{
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.product-card:hover .product-img-wrap img{ transform: scale(1.06); }

.product-body{
  padding: 22px 28px 28px;
}

.product-icon{
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(0,49,155,0.10), rgba(0,218,255,0.14));
  color: var(--blue);
  font-size: 1.2rem;
  margin-bottom: 16px;
}

.product-card h3{ font-size: 1.2rem; margin-bottom: 8px; }
.product-card p{ color: var(--muted); font-size: 0.95rem; line-height: 1.6; margin: 0; }
.product-card p + p{ margin-top: 10px; }

/* ============================================================
   APPROACH / VALUES (dark)
   ============================================================ */

.approach-section{
  padding: 110px 0;
  background: linear-gradient(180deg, var(--blue-deep), var(--blue-darker));
  position: relative;
}
.approach-section::before{
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(50% 60% at 90% 0%, rgba(0,218,255,0.14), transparent 70%);
  pointer-events: none;
}

.approach-card{
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius-lg);
  padding: 34px 28px;
  height: 100%;
  transition: background 0.35s var(--ease), transform 0.4s var(--ease);
}
.approach-card:hover{
  background: rgba(255,255,255,0.09);
  transform: translateY(-6px);
}
.approach-card i{
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  color: var(--white);
  font-size: 1.3rem;
  margin-bottom: 20px;
}
.approach-card h3{ color: var(--white); font-size: 1.15rem; margin-bottom: 10px; }
.approach-card p{ color: rgba(255,255,255,0.68); font-size: 0.94rem; line-height: 1.65; margin: 0; }

/* ============================================================
   PROCESS / HOW WE TRADE
   ============================================================ */

.process-section{
  padding: 110px 0;
  background: var(--white);
}

.process-track{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 20px;
}

.process-step{
  text-align: left;
  padding-top: 18px;
  border-top: 2px solid var(--border-soft);
  transition: border-color 0.4s var(--ease);
}
.process-step.is-active{
  border-top-color: var(--cyan);
}

.process-num{
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--muted-light);
  margin-bottom: 14px;
  transition: color 0.4s var(--ease);
}
.process-step.is-active .process-num{
  color: var(--blue);
}

.process-step h3{ font-size: 1.08rem; margin-bottom: 8px; }
.process-step p{ color: var(--muted); font-size: 0.92rem; line-height: 1.6; max-width: 240px; margin: 0; }

@media (max-width: 767.98px){
  .process-track{ grid-template-columns: 1fr; gap: 32px; }
}

/* ============================================================
   DUBAI SECTION
   ============================================================ */

.dubai-section{ padding: 110px 0; }

/* ============================================================
   VISION & MISSION
   ============================================================ */

.vision-section{
  padding: 110px 0;
  background: linear-gradient(120deg, var(--blue) 0%, #002b8a 55%, var(--blue-deep) 100%);
  position: relative;
  overflow: hidden;
}
.vision-section::after{
  content: '';
  position: absolute;
  right: -10%; top: -20%;
  width: 60%; height: 140%;
  background: radial-gradient(circle, rgba(0,218,255,0.18), transparent 65%);
  pointer-events: none;
}

.mission-lead{
  color: var(--white);
  font-size: 1.35rem;
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 26px;
  max-width: 520px;
}

.mission-list{
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.mission-list li{
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: rgba(255,255,255,0.88);
  font-size: 1rem;
  line-height: 1.5;
}
.mission-list i{ color: var(--cyan); margin-top: 3px; flex-shrink: 0; }

/* ============================================================
   CTA BANNER
   ============================================================ */

.cta-banner{ padding: 110px 0; }

.cta-banner-inner{
  background: linear-gradient(120deg, var(--blue-deep), var(--blue));
  border-radius: var(--radius-xl);
  padding: 64px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lift);
}
.cta-banner-inner::before{
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(45% 90% at 90% 50%, rgba(0,218,255,0.22), transparent 70%);
  pointer-events: none;
}

.cta-banner-copy{ max-width: 560px; position: relative; }
.cta-banner-copy h2{ color: var(--white); font-size: clamp(1.6rem, 1.2rem + 1.6vw, 2.2rem); margin-bottom: 12px; }
.cta-banner-copy p{ color: rgba(255,255,255,0.78); font-size: 1.02rem; margin: 0; }

.cta-banner-actions{
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  position: relative;
}

/* ============================================================
   FOOTER
   ============================================================ */

.site-footer{
  background: var(--blue-darker);
  color: rgba(255,255,255,0.7);
  padding: 80px 0 0;
}

.footer-top{ padding-bottom: 56px; }

.footer-logo{
  height: 44px;
  margin-bottom: 18px;
  padding: 10px 16px;
  background: rgba(255,255,255,0.92);
  border-radius: var(--radius-sm);
}

.footer-tagline{
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.55);
  max-width: 320px;
  margin-bottom: 22px;
}

.footer-socials{ display: flex; gap: 12px; }
.footer-socials a{
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: var(--white);
  transition: background 0.3s var(--ease), transform 0.3s var(--ease);
}
.footer-socials a:hover{ background: linear-gradient(135deg, var(--blue), var(--cyan)); transform: translateY(-3px); }

.site-footer h4{
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 20px;
}

.footer-links{ list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.footer-links a{ font-size: 0.93rem; color: rgba(255,255,255,0.62); transition: color 0.25s var(--ease); }
.footer-links a:hover{ color: var(--cyan); }

.footer-contact{ list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 14px; }
.footer-contact li{ display: flex; align-items: flex-start; gap: 10px; font-size: 0.93rem; color: rgba(255,255,255,0.62); }
.footer-contact i{ color: var(--cyan); margin-top: 3px; }
.footer-contact a{ color: rgba(255,255,255,0.62); transition: color 0.25s var(--ease); }
.footer-contact a:hover{ color: var(--white); }

.footer-bottom{
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
}
.footer-bottom p{ margin: 0; }
.footer-credit a{
  color: rgba(255,255,255,0.65);
  font-weight: 600;
  transition: color 0.25s var(--ease);
}
.footer-credit a:hover{ color: var(--cyan); }

@media (min-width: 576px){
  .footer-bottom{
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

/* ============================================================
   FLOATING WHATSAPP
   ============================================================ */

.whatsapp-float{
  position: fixed;
  right: 26px;
  bottom: 26px;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25D366, #1EBE5B);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 14px 30px rgba(30, 190, 91, 0.4);
  z-index: 1200;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.whatsapp-float:hover{
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 18px 38px rgba(30, 190, 91, 0.5);
  color: var(--white);
}
.whatsapp-float::before{
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: inherit;
  animation: whatsapp-ring 2.6s ease-out infinite;
  z-index: -1;
}
@keyframes whatsapp-ring{
  0%{ transform: scale(1); opacity: 0.55; }
  100%{ transform: scale(1.9); opacity: 0; }
}

@media (prefers-reduced-motion: reduce){
  .whatsapp-float::before{ animation: none; }
}

/* ============================================================
   INNER PAGE HERO
   ============================================================ */

.page-hero{
  position: relative;
  padding: 150px 0 90px;
  overflow: hidden;
  background:
    radial-gradient(60% 70% at 85% 0%, rgba(0, 218, 255, 0.14), transparent 70%),
    radial-gradient(55% 60% at 5% 100%, rgba(0, 49, 155, 0.08), transparent 70%),
    var(--white);
  text-align: left;
}
.page-hero .eyebrow-pill{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--blue);
  background: rgba(0, 49, 155, 0.07);
  border: 1px solid rgba(0, 49, 155, 0.12);
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  margin-bottom: 22px;
}
.page-hero h1{
  font-size: clamp(2.2rem, 1.5rem + 2.6vw, 3.4rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}
.page-hero p{
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 620px;
  margin: 0;
  line-height: 1.7;
}
.page-hero-crumbs{
  display: flex;
  justify-content: flex-start;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--muted-light);
  margin-top: 24px;
}
.page-hero-crumbs a{ color: var(--blue); font-weight: 600; }

/* ============================================================
   TIMELINE (About page)
   ============================================================ */

.timeline{
  position: relative;
  max-width: 760px;
  margin: 0 auto;
  padding-left: 40px;
}
.timeline::before{
  content: '';
  position: absolute;
  left: 9px; top: 6px; bottom: 6px;
  width: 2px;
  background: var(--blue);
}
.timeline-item{
  position: relative;
  padding-bottom: 44px;
}
.timeline-item:last-child{ padding-bottom: 0; }
.timeline-dot{
  position: absolute;
  left: -40px; top: 4px;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--cyan);
}
.timeline-item h3{ font-size: 1.15rem; margin-bottom: 8px; }
.timeline-item p{ color: var(--muted); font-size: 0.96rem; line-height: 1.65; margin: 0; max-width: 560px; }
.timeline-tag{
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 6px;
}

/* ============================================================
   SERVICE CARDS
   ============================================================ */

.service-card{
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  height: 100%;
  transition: transform 0.35s var(--ease), box-shadow 0.4s var(--ease), border-color 0.35s var(--ease);
}
.service-card:hover{
  transform: translateY(-6px);
  box-shadow: var(--shadow-lift);
  border-color: transparent;
}
.service-num{
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--muted-light);
  letter-spacing: 0.06em;
  margin-bottom: 18px;
  display: block;
}
.service-card i{
  width: 50px; height: 50px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(0,49,155,0.10), rgba(0,218,255,0.14));
  color: var(--blue);
  font-size: 1.25rem;
  margin-bottom: 18px;
  transition: transform 0.4s var(--ease);
}
.service-card:hover i{ transform: rotate(-8deg) scale(1.08); }
.service-card h3{ font-size: 1.15rem; margin-bottom: 10px; }
.service-card p{ color: var(--muted); font-size: 0.95rem; line-height: 1.65; margin: 0; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */

.contact-info-card{
  display: flex;
  align-items: flex-start;
  gap: 16px;
  height: 100%;
  padding: 24px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-soft);
  transition: transform 0.3s var(--ease), box-shadow 0.35s var(--ease), border-color 0.3s var(--ease);
}
.contact-info-card:hover{
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
  border-color: transparent;
}
.contact-info-card i{
  width: 46px; height: 46px;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  color: var(--white);
  font-size: 1.1rem;
}
.contact-info-card h4{ font-size: 1rem; margin-bottom: 4px; }
.contact-info-card p, .contact-info-card a{ color: var(--muted); font-size: 0.92rem; margin: 0; display: block; }
.contact-info-card a:hover{ color: var(--blue); }

.contact-form-wrap{
  background: var(--surface);
  border-radius: var(--radius-xl);
  padding: 44px;
  border: 1px solid var(--border-soft);
}

.form-field{ margin-bottom: 20px; }
.form-field label{
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
}
.form-field input,
.form-field textarea{
  width: 100%;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-soft);
  background: var(--white);
  font-family: inherit;
  font-size: 0.96rem;
  color: var(--ink);
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.form-field input:focus,
.form-field textarea:focus{
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(0, 49, 155, 0.10);
}
.form-field textarea{ resize: vertical; min-height: 130px; }

.form-note{
  font-size: 0.84rem;
  color: var(--muted-light);
  margin-top: 12px;
}
.form-success{
  display: none;
  align-items: center;
  gap: 10px;
  background: rgba(0, 218, 255, 0.10);
  border: 1px solid rgba(0, 49, 155, 0.16);
  color: var(--blue);
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 600;
  margin-top: 18px;
}
.form-success.is-visible{ display: flex; }

.contact-form-title{ font-size: 1.7rem; }
.about-section.section-tight-top{ padding-top: 0; }

.map-frame{
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-soft);
  height: 100%;
  min-height: 340px;
}
.map-frame iframe{ width: 100%; height: 100%; min-height: 340px; border: 0; display: block; filter: grayscale(0.15) contrast(1.05); }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */

[data-reveal]{
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
  transition-delay: var(--reveal-delay, 0s);
}
[data-reveal].is-visible{
  opacity: 1;
  transform: translateY(0);
}

.stagger-row [data-reveal]{ transform: translateY(20px); }

@media (prefers-reduced-motion: reduce){
  [data-reveal]{ opacity: 1; transform: none; transition: none; }
  html{ scroll-behavior: auto; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 991.98px){
  .hero{ min-height: auto; padding: 130px 0 60px; }

  /* Below the lg breakpoint, image/text columns stack instead of sitting
     side by side, so the height:100% equal-height trick (matched against
     a sibling on the same row) no longer has a sibling to resolve against
     and produces an indeterminate, oversized box. Fall back to a normal
     aspect-ratio sized image here instead. */
  .about-visual{ height: auto; min-height: 0; }
  .about-img{ height: auto; min-height: 0; aspect-ratio: 4 / 3; }

  .nav-toggle{ display: flex; }

  .nav-menu{
    position: fixed;
    top: 70px;
    left: 0; right: 0;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    padding: 28px 24px 34px;
    border-bottom: 1px solid var(--border-soft);
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s var(--ease), transform 0.3s var(--ease), visibility 0.3s;
  }
  .nav-menu.open{
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .nav-links{
    flex-direction: column;
    gap: 18px;
    width: 100%;
  }
  .btn-nav-cta{ width: 100%; justify-content: center; }

  .glass-badge{ padding: 11px 14px; }
  .glass-badge strong{ font-size: 0.82rem; }
  .glass-badge span{ font-size: 0.72rem; }

  /* Bootstrap's col-lg-6 stacks below this same 992px breakpoint, so the
     floating badge (absolutely anchored to the image's bottom edge) needs
     to drop into normal flow here too — otherwise it overlaps the text
     column that now follows directly underneath the image. */
  .about-float, .dubai-float{ position: static; margin-top: 16px; }
}

@media (max-width: 767.98px){
  body{ font-size: 15.5px; }
  .page-hero{ padding: 40px 0 36px; }
  .about-section, .products-section, .approach-section, .dubai-section, .vision-section{
    padding: 76px 0;
  }
  .cta-banner{ padding: 76px 0; }
  .cta-banner-inner{ padding: 44px 28px; text-align: center; justify-content: center; }
  .cta-banner-actions{ justify-content: center; }
  .whatsapp-float{ width: 52px; height: 52px; font-size: 1.4rem; right: 18px; bottom: 18px; }
}

@media (max-width: 575.98px){
  .hero-actions{ flex-direction: column; }
  .hero-actions .btn-primary-pill,
  .hero-actions .btn-ghost-pill{ width: 100%; justify-content: center; }
  .section-head{ margin-bottom: 40px; }
}
