/* ===================== ROOT VARIABLES ===================== */
:root{
  --color-bg: #ffffff;
  --color-cream: #FBF9F4;
  --color-cream-2: #FCFAF5;
  --color-gold: #F2D170;
  --color-gold-dark: #E8C155;
  --color-dark: #13151E;
  --color-dark-2: #1B1D29;
  --color-text-muted: #757575;
  --color-text-muted-2: #6F7280;
  --color-border: #ECE7DA;
  --font-display: "Source Serif 4", serif;
  --font-body: "Source Serif 4", serif;
}


*{
  box-sizing: border-box;
}

body{
  font-family: var(--font-body);
  color: var(--color-dark);
  background: var(--color-bg);
  overflow-x: hidden;
}

a{
  text-decoration: none;
}

img{
  max-width: 100%;
}
p{
  color: var(--color-text-muted);
}

/* ===================== UTILITIES ===================== */
.btn-gold-pill {
  background-color: var(--color-gold);
  border: 1px solid var(--color-gold);
  color: var(--color-dark);
  font-weight: 500;
  font-size: 20px;
  border-radius: 50px;
  padding: 0.9rem 1.8rem;
  transition: all 0.25s ease;
  white-space: nowrap;
}
.btn-gold-pill:hover{
  background-color: var(--color-gold-dark);
  border-color: var(--color-gold-dark);
  color: var(--color-dark);
}

.btn-outline-pill{
  background-color: transparent;
  border: 1px solid var(--color-gold);
  color: var(--color-dark);
  font-weight: 500;
  font-size: 20px;
  border-radius: 50px;
  padding: 0.9rem 1.8rem;
  transition: all 0.25s ease;
  white-space: nowrap;
}
.btn-outline-pill:hover{
  border-color: var(--color-dark);
  background-color: var(--color-dark);
  color: #fff;
}

.btn-circle-dark{
  background-color: var(--color-dark);
  color: #fff;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.25s ease;
}
.btn-circle-dark:hover{
  background-color: var(--color-gold);
  color: var(--color-dark);
}

.btn-circle-gold {
  background-color: var(--color-gold);
  color: var(--color-dark);
  width: 60px;
  height: 60px;
  border-radius: 0 50% 50% 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 20px;
  font-weight: 700;
}

.section-eyebrow-line{
  display: inline-block;
  width: 36px;
  height: 2px;
  background-color: var(--color-gold);
  vertical-align: middle;
}

/* ===================== HEADER ===================== */
.site-header{
  background-color: #fff;
  position: relative;
  z-index: 50;
}

.brand-logo{
  width: 80px;
  height: 80px;
}

.main-nav .nav-link{
  color: var(--color-dark);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.4rem 0.2rem;
  position: relative;
}

.main-nav .nav-link.active{
  color: var(--color-dark);
}

.main-nav .nav-link.active::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 2px;
  background-color: var(--color-gold);
}

.main-nav .nav-link:hover{
  color: #8a7a4a;
}

/* ===================== HERO ===================== */
.hero-section{
  position: relative;
  padding: 100px 0;
  overflow: hidden;
  background-color: #fff;
  background-image: url(../images/hero_bg.png);
  background-size: 50%;
  background-position: top right;
  background-repeat: no-repeat;
  min-height: 700px;
  display: flex;
  align-items: center;
}

.hero-title{
  font-family: var(--font-display);
    font-weight: 600;
    font-size: 74px;
    line-height: 1.3;
    color: var(--color-dark);
    margin-bottom: 1.4rem;
    position: relative;
    z-index: 9;
}
.hero-title:after {
  content: "";
  background-image: url(../images/shape.svg);
  background-size: contain;
  position: absolute;
  bottom: 0;
  right: 36px;
  width: 70%;
  height: 60px;
  background-repeat: no-repeat;
  z-index: -1;
}
.hero-text{
  color: var(--color-text-muted);
  font-size: 20px;
  line-height: 1.7;
  width: 90%;
}

/* ---- Phone mockups ---- */
.hero-phones{
  display: flex;
  justify-content: end;
}
.hero-phones img{
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 90%;
    max-width: 45%;
}

/* ===================== STEPS SECTION ===================== */
/* ===================== STEPS SECTION ===================== */
.steps-section {
  background-color: var(--color-cream);
  padding: 90px 0 100px;
  position: relative;
  overflow: hidden;
}

/* Section heading */
.steps-heading {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 2.8rem;
  line-height: 1.2;
  color: var(--color-dark);
  text-align: center;
  position: relative;
  display: inline-block;
}

.steps-heading-underline {
  position: absolute;
  top: 50px;
  right: 0;
  display: block;
  width: 170px;
  height: auto;
}
.section-subtext{
  font-size: 20px;
  width: 720px;
  margin: 20px auto;
  max-width: 100%;
}
.steps-arrow-badge a{
  background-image: url(../images/btn_shape.svg);
  background-size: 100% 100%;
  color: var(--color-gold);
  width: 120px;
  height: 50px;
  display: block;
  margin: 2rem auto 3.5rem;
}
.steps-arrow-badge a i{
  display: none;
}

/* step columns row */
.steps-row {
  display: flex;
  align-items: flex-start;
  gap: 0;
}

/* individual step column */
.step-col {
  flex: 1;
  position: relative;
  text-align: center;
  padding: 0 30px;
}

.step-col:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 60%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--color-border) 20%, var(--color-border) 80%, transparent);
}

.step-bg-number {
  font-family: var(--font-display);
  font-size: 200px;
  font-weight: 700;
  color: rgba(20, 20, 30, 0.05);
  line-height: 1;
  user-select: none;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.step-icon-img {
  width: auto;
  height: 90px;
  display: block;
  margin: 0 auto;
  margin-bottom: 1.4rem;
  position: relative;
  z-index: 1;
}

/* title */
.step-title {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 23px;
  color: var(--color-dark);
  margin-bottom: 0.75rem;
  position: relative;
  z-index: 1;
}

/* body text */
.step-text {
  color: var(--color-text-muted-2);
  font-size: 0.875rem;
  line-height: 1.78;
  position: relative;
  z-index: 1;
}

/* responsive */
@media (max-width: 991.98px) {
  .steps-row { flex-direction: column; gap: 3rem; }
  .step-col::after { display: none; }
  .step-col { padding: 0 !important; }
  .step-text { max-width: 100%; }
}

/* ===================== FEATURES SECTION ===================== */
.features-section{
  background-color: #fff;
  padding: 100px 0;
}
.section-title{
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 2.8rem;
  line-height: 1.2;
  color: var(--color-dark);
  text-align: center;
  position: relative;
  display: inline-block;
}
.features-section .steps-heading-underline{
  right: 20%
}
.steps-heading-underline
.feature-row{
  padding: 30px 0;
}

.feature-number {
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 700;
  color: #e8c155c9;
  display: block;
  margin-bottom: 0.6rem;
  letter-spacing: 1px;
}

.feature-title{
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 36px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1.1rem;
  color: var(--color-dark);
}

.feature-text{
  color: var(--color-text-muted-2);
  font-size: 18px;
  line-height: 1.8;
  max-width: 480px;
  margin-bottom: 1.4rem;
}

.feature-checklist{
  list-style: none;
  padding: 0;
  margin: 0;
}
.feature-checklist li{
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--color-dark);
  margin-bottom: 0.7rem;
}
.feature-checklist li i {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #f2d17036;
  color: var(--color-gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}

.feature-img-wrap{
  /* background-color: var(--color-cream);
  border-radius: 24px;
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: center; */
}

.feature-img{
  /* border-radius: 16px;
  width: 100%;
  box-shadow: 0 20px 40px rgba(20,20,30,0.12); */
}

.feature-img-tall{
  width: 90%;
}

/* ===================== TESTIMONIALS SECTION ===================== */
.testimonials-section{
  background-color: var(--color-cream);
  padding: 100px 0;
  position: relative;
  background-image:
    radial-gradient(circle, rgba(20,20,30,0.045) 1px, transparent 1.5px);
  background-size: 22px 22px;
}

.testimonial-card{
  background: #fff;
  border-radius: 16px;
  padding: 1.6rem 1.4rem;
  height: 100%;
  box-shadow: 0 10px 30px rgba(20,20,30,0.05);
  border: 1px solid var(--color-border);
}

.testimonial-head{
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1rem;
}

.testimonial-avatar{
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-name{
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--color-dark);
}

.testimonial-role{
  font-size: 0.8rem;
  color: var(--color-text-muted-2);
}

.testimonial-text{
  font-size: 0.88rem;
  color: var(--color-text-muted-2);
  line-height: 1.7;
  margin-bottom: 0;
}

/* ===================== FOOTER ===================== */
.site-footer {
  background-color: var(--color-cream);
  border-top: 1px solid var(--color-border);
  color: var(--color-dark);
}

/* top main area */
.footer-main {
  padding: 56px 0;
}

/* col 1 — brand */
.footer-logo {
  width: 72px;
  height: 72px;
  object-fit: contain;
  margin-bottom: 1rem;
}

.footer-text {
  color: var(--color-text-muted-2);
  font-size: 0.875rem;
  line-height: 1.7;
  max-width: 240px;
  margin-bottom: 1.2rem;
}

/* social icons */
.footer-socials {
  display: flex;
  gap: 12px;
  align-items: center;
}

.social-circle {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  font-size: 1.2rem;
  transition: all 0.22s ease;
  background-color: rgb(242 209 112 / 20%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #66582F;
}
.social-circle:hover {
  background-color: var(--color-gold);
}

/* nav link columns */
.footer-col-title {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--color-dark);
  margin-bottom: 1.1rem;
}

.footer-nav-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.footer-nav-links a {
  color: var(--color-text-muted-2);
  font-size: 0.875rem;
  transition: color 0.2s ease;
}
.footer-nav-links a:hover {
  color: var(--color-dark);
}

/* contact info items (right col) */
.footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.footer-contact-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background-color: rgb(242 209 112 / 20%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #66582F;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.footer-contact-label {
  font-weight: 600;
  font-size: 0.82rem;
  color: var(--color-dark);
  margin-bottom: 0.1rem;
  line-height: 1;
}

.footer-contact-value {
  font-size: 0.8rem;
  color: var(--color-text-muted-2);
  margin: 0;
  line-height: 1.4;
}

/* divider */
.footer-divider {
  border-color: var(--color-border);
  margin: 0;
}

/* bottom bar */
.footer-bottom {
  padding: 18px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.footer-copy {
  color: var(--color-text-muted-2);
  font-size: 0.855rem;
}

.footer-tqnia-logo {
  height: 20px;
  width: auto;
  object-fit: contain;
  vertical-align: middle;
}

/* responsive */
@media (max-width: 991.98px) {
  .footer-main { padding: 35px 0; }
  .footer-col { margin-bottom: 2rem; }
}
@media (max-width: 575.98px) {
  .footer-bottom { text-align: center; }
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 991.98px){
  .hero-section{padding: 50px 0;min-height: 300px;background-size: 100%;}
  .hero-title{ font-size: 60px; }
  .hero-title:after{width: 60%;height: 40px;}
  .hero-curve{ display: none; }
  .hero-phones{ display: none; }
  .phone-frame{ width: 190px; height: 400px; }
  .phone-back .phone-frame{ width: 165px; height: 350px; }
  /* step-col responsive handled in steps-section block */
  .feature-row{ text-align: left; }
  .section-title{ font-size: 2rem; }
  .footer-nav-links{ gap: 0.6rem; }
}

@media (max-width: 575.98px){
  .hero-title{
    font-size: 40px;
  }
  .phone-frame{ width: 150px; height: 320px; }
  .phone-back .phone-frame{ width: 130px; height: 280px; }
  .phone-front{ left: 10px; }

}

/* ===================== TESTIMONIALS MARQUEE ===================== */
.testimonials-section {
  overflow: hidden;
  background-image: url(../images/testimonials-bg.png);
  background-size: cover;
}

.marquee-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 56px;
  overflow: hidden;
  /* fade edges */
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.marquee-track {
  display: flex;
  gap: 20px;
  width: max-content;
  cursor: grab;
  user-select: none;
  /* Force LTR so the flex row always flows left→right regardless of page dir.
     This is required for the seamless-loop duplicate trick to work in RTL pages. */
  direction: ltr;
}

.marquee-track:active {
  cursor: grabbing;
}

/* Row 1 → scrolls left (normal) */
.marquee-row-1 .marquee-track {
  animation: marquee-left 40s linear infinite;
}
.marquee-row-1:hover .marquee-track {
  animation-play-state: paused;
}

/* Row 2 → scrolls right (reverse) */
.marquee-row-2 .marquee-track {
  animation: marquee-right 45s linear infinite;
}
.marquee-row-2:hover .marquee-track {
  animation-play-state: paused;
}

@keyframes marquee-left {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes marquee-right {
  0%   { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

/* ── RTL overrides: reverse the scroll direction so row-1 goes right→left
   visually and row-2 goes left→right, matching the LTR behaviour. ── */
[dir="rtl"] .marquee-row-1 .marquee-track {
  animation-name: marquee-left-rtl;
}
[dir="rtl"] .marquee-row-2 .marquee-track {
  animation-name: marquee-right-rtl;
}
@keyframes marquee-left-rtl {
  0%   { transform: translateX(0); }
  100% { transform: translateX(50%); }
}
@keyframes marquee-right-rtl {
  0%   { transform: translateX(50%); }
  100% { transform: translateX(0); }
}

/* Dragging pauses animation */
.marquee-track.is-dragging {
  animation-play-state: paused !important;
}

/* Cards inside marquee */
.marquee-card {
  background: #fff;
  border-radius: 16px;
  padding: 1.4rem 1rem;
  border: 1px solid #ece7da3b;
  width: 330px;
  flex-shrink: 0;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
}
.marquee-card:hover {
  box-shadow: 0 12px 32px rgba(20,20,30,0.10);
  transform: translateY(-2px);
}

.marquee-stars {
  color: var(--color-gold-dark);
  font-size: 0.8rem;
  letter-spacing: 2px;
  margin-top: 0.7rem;
  display: none;
}

.marquee-text {
  font-size: 16px;
  color: var(--color-text-muted-2);
  line-height: 1.5;
  margin: 0;
  text-align: center;
}

.marquee-head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 0.9rem;
}

.marquee-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid var(--color-gold);
}

.marquee-name {
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--color-dark);
  line-height: 1.2;
}

.marquee-role {
  font-size: 0.76rem;
  color: var(--color-text-muted-2);
}

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

/* ===================== SAFETY SECTION ===================== */
.safety-section {
  background-color: var(--color-cream);
  padding: 90px 0 0;
  overflow: hidden;
  position: relative;
  background-image: url(../images/safety_bg.png);
  background-size: cover;
}
.safety-section .row{position: relative;}

/* decorative dots bg */
.safety-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(20,20,30,0.045) 1px, transparent 1.5px);
  background-size: 22px 22px;
  pointer-events: none;
}

.safety-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 3rem;
  line-height: 1.2;
  color: var(--color-dark);
  margin-bottom: 1.1rem;
  position: relative;
  display: inline-block;
}

.safety-desc {
  color: var(--color-text-muted-2);
  font-size: 0.97rem;
  line-height: 1.75;
  margin-bottom: 0;
}

.safety-arrow-btn{
  background-image: url(../images/btn_shape2.svg);
  background-size: 100% 100%;
  color: var(--color-gold);
  width: 120px;
  height: 50px;
  display: block;
}
.safety-arrow-btn i{
  display: none;
}

/* truck image strip */
.safety-truck-wrap {
  margin-top: 0;
    position: absolute;
    display: flex;
    align-items: flex-end;
    left: -12%;
    top: 50%;
    transform: translateY(-50%);
}
.safety-truck-img {
  display: block;
  width: 100%;
  max-width: 620px;
  object-fit: contain;
}

/* right cards grid */
.safety-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* base card */
.safety-card {
  background: #FBF7EE;
  border-radius: 20px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0px 0px 24px rgba(0, 0, 0, 0.04);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.safety-card:hover {
  background-color: #EDE8DB;
  box-shadow: 0 12px 36px rgba(20,20,30,0.09);
  transform: translateY(-2px);
}

.safety-card-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.safety-card-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.safety-card-title {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  color: var(--color-dark);
  margin-bottom: 0.55rem;
}

.safety-card-text {
  font-size: 0.84rem;
  color: var(--color-text-muted-2);
  line-height: 1.65;
  margin: 0;
}

/* responsive */
@media (max-width: 991.98px) {
  .safety-title { font-size: 2.1rem; }
  .safety-truck-wrap { justify-content: center; }
  .safety-truck-img { max-width: 440px; }
  .safety-cards-grid { margin-top: 2rem; }
  .safety-section { padding-bottom: 60px; }
}

@media (max-width: 575.98px) {
  .safety-cards-grid { grid-template-columns: 1fr; }
}

/* ===================== DOWNLOAD CTA SECTION ===================== */
.download-section {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: var(--color-dark);
}

/* full-bleed dark photo bg */
.download-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.download-section .container {
  position: relative;
  z-index: 2;
}

/* left content */
.download-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2.85rem;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 1.1rem;
}

.download-desc {
  color: rgba(255,255,255,0.7);
  font-size: 0.97rem;
  line-height: 1.75;
  margin-bottom: 2rem;
}

/* store buttons row */
.download-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-bottom: 2rem;
}

.download-store-btn {
  display: inline-block;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  flex-shrink: 0;
}
.download-store-btn img {
  height: 55px;
  width: auto;
  display: block;
}
.download-store-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}

/* star rating row */
.download-rating {
  display: flex;
  align-items: center;
  gap: 10px;
}

.download-stars {
  color: var(--color-gold);
  font-size: 1.15rem;
  letter-spacing: 2px;
}

.download-rating-text {
  color: rgba(255,255,255,0.75);
  font-size: 0.9rem;
}

.download-phones {
  position: absolute;
  right: 0;
  bottom: 0;
  top: 0;
  width: 52%;
  display: flex;
  justify-content: center;
  pointer-events: none;
}

.download-phone-back {
  height: 88%;
  z-index: 1;
}

.download-phone-front {
  height: 78%;
  z-index: 2;
  margin-top: auto;
}

/* responsive */
@media (max-width: 991.98px) {
  .download-section { min-height: 420px; padding: 80px 0; }
  .download-title { font-size: 2rem; }
  .download-phones {
    display: none;
  }
}

@media (max-width: 575.98px) {
  .download-title { font-size: 1.75rem; }
  .download-btns { flex-direction: column; align-items: flex-start; }
  .download-store-btn img { height: 46px; }
}

/* ===================== CONTACT SECTION ===================== */
.contact-section {
  padding: 100px 0;
  position: relative;
  background-image: url(../images/contact_bg.png);
  background-size: cover;
}

/* Left column */
.contact-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2.6rem;
  color: var(--color-dark);
  margin-bottom: 1.1rem;
  line-height: 1.2;
}

.contact-desc {
  color: var(--color-text-muted-2);
  font-size: 0.95rem;
  line-height: 1.75;
  max-width: 400px;
  margin-bottom: 2.4rem;
}

/* Contact info items */
.contact-info-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-info-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background-color: rgb(242 209 112 / 20%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #66582F;
  font-size: 1rem;
  flex-shrink: 0;
}

.contact-info-label {
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--color-dark);
  margin-bottom: 0.15rem;
}

.contact-info-value {
  font-size: 0.88rem;
  color: var(--color-text-muted-2);
  margin: 0;
}

.contact-card {
  background-color: rgb(242 209 112 / 20%);
  border-radius: 20px;
  padding: 25px;
}

.contact-card-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--color-dark);
  margin-bottom: 0.3rem;
}

.contact-card-subtitle {
  font-size: 0.85rem;
  color: var(--color-text-muted-2);
  margin-bottom: 1.8rem;
}

/* Form fields */
.contact-form .form-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-dark);
  margin-bottom: 0.45rem;
}

.contact-form .form-label .req {
  color: #c0392b;
  margin-left: 2px;
}

.contact-form .form-control {
  background-color: #fff;
  border: 1.5px solid var(--color-border);
  border-radius: 10px;
  padding: 0.7rem 1rem;
  font-size: 0.9rem;
  color: var(--color-dark);
  font-family: var(--font-body);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form .form-control:focus {
  border-color: var(--color-gold-dark);
  box-shadow: 0 0 0 3px rgba(242,209,112,0.18);
  outline: none;
}

.contact-form textarea.form-control {
  resize: none;
  min-height: 110px;
}

/* Submit button */
.contact-submit {
  display: block;
  width: 100%;
  background-color: var(--color-gold);
  border: none;
  border-radius: 10px;
  padding: 0.85rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-dark);
  cursor: pointer;
  transition: background-color 0.25s ease, transform 0.15s ease;
  margin-top: 0.5rem;
}

.contact-submit:hover {
  background-color: var(--color-gold-dark);
  transform: translateY(-1px);
}

.contact-submit:active {
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 991.98px) {
  .contact-title { font-size: 2rem; }
  .contact-card  { padding: 28px 22px; margin-top: 2.5rem; }
}

@media (max-width: 575.98px) {
  .contact-title { font-size: 1.75rem; }
  .btn-circle-gold{height: 50px;width: 50px;font-size: 16px;}
  .btn-gold-pill,.btn-outline-pill{
    font-size: 16px;
    padding: 0.7rem 0.9rem;
  }
  .steps-heading{font-size: 2rem;}
  .steps-heading-underline {
    top: 30px;
    width: 80px;
}
.testimonials-section{
  padding: 40px 0;
}
}
/* ===================== LANGUAGE SWITCHER BUTTON ===================== */
.lang-switcher {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: 1.5px solid var(--color-border);
  border-radius: 50px;
  padding: 0.38rem 0.85rem;
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-dark);
  transition: all 0.22s ease;
  white-space: nowrap;
  flex-shrink: 0;
}
.lang-switcher:hover {
  background-color: var(--color-gold);
  border-color: var(--color-gold);
  color: var(--color-dark);
}
.lang-icon {
  font-size: 1rem;
  line-height: 1;
}

/* ===================== RTL OVERRIDES ===================== */
[dir="rtl"] body {
  font-family: "Noto Sans Arabic", var(--font-body);
}

/* Active nav underline flips to right side in RTL */
[dir="rtl"] .main-nav .nav-link.active::after {
  left: auto;
  right: 0;
}

/* Hero title shape decoration mirrors */
[dir="rtl"] .hero-title::after {
  right: auto;
  left: 36px;
}
[dir="rtl"] .safety-truck-wrap{
  transform: translateY(-50%) rotateY(180deg);
  left: auto;
    right: -12%;
}

/* Hero phones mirror */
[dir="rtl"] .hero-phones img {
  right: auto;
  left: 0;
}

/* Steps – right padding becomes left padding */
[dir="rtl"] .step-col {
  padding: 0 0 0 32px;
}
[dir="rtl"] .step-col:not(:last-child)::after {
  right: auto;
  left: 0;
}
[dir="rtl"] .step-col:not(:first-child) {
  padding-left: 0;
  padding-right: 32px;
}

/* Feature checklist icon gap */
[dir="rtl"] .feature-checklist li {
  flex-direction: row-reverse;
  justify-content: flex-end;
}

/* Download overlay gradient flips */
[dir="rtl"] .download-overlay {
  background: linear-gradient(
    to left,
    rgba(13,15,22,0.92) 0%,
    rgba(13,15,22,0.70) 42%,
    rgba(13,15,22,0.10) 75%,
    transparent 100%
  );
}

/* Download phones mirror */
[dir="rtl"] .download-phones {
  right: auto;
  left: 0;
}
[dir="rtl"] .download-phone-back {
  right: auto;
  left: 60px;
}
[dir="rtl"] .download-phone-front {
  right: auto;
  left: 20px;
}

/* Marquee — mirror fade for RTL */
[dir="rtl"] .marquee-wrapper {
  -webkit-mask-image: linear-gradient(to left, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(to left, transparent 0%, black 8%, black 92%, transparent 100%);
}

/* Section eyebrow line margin */
[dir="rtl"] .section-eyebrow-line {
  margin-right: 0;
  margin-left: 0.5rem;
}

/* Form labels align right */
[dir="rtl"] .contact-form .form-label {
  text-align: right;
  display: block;
}
[dir="rtl"] .contact-form .form-control {
  text-align: right;
}

/* Testimonials marquee head */
[dir="rtl"] .marquee-head {
  flex-direction: row-reverse;
}

/* Download section content align */
[dir="rtl"] .download-desc,
[dir="rtl"] .download-title {
  text-align: right;
}
[dir="rtl"] .download-btns,
[dir="rtl"] .download-rating {
  flex-direction: row-reverse;
  justify-content: flex-end;
}

/* Responsive RTL tweaks */
@media (max-width: 991.98px) {
  [dir="rtl"] .download-phone-back { left: 30px; right: auto; }
  [dir="rtl"] .download-phone-front { left: auto; right: 30px; }
  [dir="rtl"] .download-btns { flex-direction: column; align-items: flex-end; }
}

/* =====================================================================
   SCROLL-REVEAL ANIMATIONS
   ===================================================================== */

/* Hidden state — applied by JS once the element is ready */
.reveal,
.reveal-left,
.reveal-right {
  opacity: 0;
  transition: opacity 0.78s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.78s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal       { transform: translateY(48px); }
.reveal-left  { transform: translateX(-60px); }
.reveal-right { transform: translateX(60px); }

/* Visible state — toggled by IntersectionObserver */
.reveal.in-view,
.reveal-left.in-view,
.reveal-right.in-view {
  opacity: 1;
  transform: translate(0, 0);
}

/* Stagger delays for sibling groups */
.reveal-d1 { transition-delay: 0.08s; }
.reveal-d2 { transition-delay: 0.18s; }
.reveal-d3 { transition-delay: 0.28s; }
.reveal-d4 { transition-delay: 0.40s; }

/* =====================================================================
   CONTINUOUS KEYFRAME ANIMATIONS
   ===================================================================== */

/* Hero image — gentle float */
@keyframes hero-float {
  0%, 100% { transform: translateY(0px);   }
  50%       { transform: translateY(-20px); }
}

/* Download phones — subtle float with slight offset between front/back */
@keyframes phone-float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-12px); }
}
.download-phone-front {
  animation: phone-float 4.8s ease-in-out infinite;
}
.download-phone-back {
  animation: phone-float 4.8s ease-in-out infinite 0.6s;
}

/* Steps arrow badge — ripple pulse */
@keyframes badge-pulse {
  0%, 100% { box-shadow: 0 0 0 0   rgba(242, 209, 112, 0.55); }
  50%       { box-shadow: 0 0 0 16px rgba(242, 209, 112, 0);   }
}

/* Gold CTA button — subtle shimmer sweep */
@keyframes btn-shimmer {
  0%   { background-position: -200% center; }
  100% { background-position:  200% center; }
}
.btn-gold-pill {
  background: linear-gradient(
    105deg,
    var(--color-gold)      38%,
    #fff5c0                50%,
    var(--color-gold)      62%
  );
  background-size: 250% auto;
  animation: btn-shimmer 3.2s linear infinite;
}
.btn-gold-pill:hover {
  animation-play-state: paused;
  background: var(--color-gold-dark);
  background-size: unset;
}

/* Navbar — drop-shadow when page is scrolled */
.site-header {
  transition: box-shadow 0.3s ease;
}
.site-header.scrolled {
  box-shadow: 0 4px 28px rgba(20, 20, 30, 0.09);
}

/* =====================================================================
   ACCESSIBILITY: respect user preference for reduced motion
   ===================================================================== */
@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal-left,
  .reveal-right {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .hero-phones,
  .download-phone-front,
  .download-phone-back{
    animation: none !important;
  }
  .btn-gold-pill {
    animation: none !important;
    background: var(--color-gold);
  }
}
}