/* ============================================================
   Wear Caravan - Main Stylesheet
   Organized sections: base, layout, components, responsive,
   and final project-specific adjustments.
   ============================================================ */

:root {
  --navy:#082b50;
  --navy-2:#041d36;
  --gold:#c99443;
  --gold-2:#e2b765;
  --ink:#142338;
  --muted:#6c7888;
  --line:#e7e2da;
  --soft:#f6f4ef;
  --white:#fff;
  --shadow:0 18px 45px rgba(7,32,59,.12);
  --radius:24px;
}
* {
  box-sizing:border-box
}
html {
  scroll-behavior:smooth
}
body {
  margin:0;
  font-family:Tahoma,Arial,sans-serif;
  color:var(--ink);
  background:#fff;
  line-height:1.8
}
img {
  max-width:100%;
  display:block
}
a {
  text-decoration:none;
  color:inherit
}
button,input,textarea,select {
  font:inherit
}
.container {
  width:min(1180px,calc(100% - 34px));
  margin:auto
}
.topbar {
  background:var(--navy-2);
  color:#fff;
  font-size:13px
}
.topbar-inner {
  height:38px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px
}
.topbar a {
  color:#f1c87c
}
.site-header {
  position:sticky;
  top:0;
  z-index:100;
  background:rgba(255,255,255,.96);
  backdrop-filter:blur(12px);
  border-bottom:1px solid rgba(8,43,80,.08)
}
.nav-wrap {
  min-height:90px;
  display:grid;
  grid-template-columns:auto 1fr auto;
  align-items:center;
  gap:28px;
  direction:ltr
}
.brand {
  display:flex;
  align-items:center;
  gap:14px;
  direction:ltr
}
.brand img {
  width:112px;
  height:68px;
  object-fit:contain
}
.brand-copy {
  direction:rtl;
  text-align:right
}
.brand-copy strong {
  display:block;
  color:var(--navy);
  font-size:19px
}
.brand-copy small {
  color:var(--gold);
  font-weight:700
}
.main-nav {
  display:flex;
  justify-content:center;
  gap:28px;
  direction:rtl
}
.main-nav a {
  font-weight:700;
  color:#24364a;
  position:relative;
  padding:32px 0
}
.main-nav a:after {
  content:"";
  position:absolute;
  right:0;
  left:0;
  bottom:20px;
  height:3px;
  background:var(--gold);
  transform:scaleX(0);
  transition:.25s
}
.main-nav a:hover,.main-nav a.active {
  color:var(--navy)
}
.main-nav a:hover:after,.main-nav a.active:after {
  transform:scaleX(1)
}
.header-actions {
  display:flex;
  align-items:center;
  gap:10px;
  direction:rtl
}
.btn {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:52px;
  padding:0 24px;
  border-radius:14px;
  font-weight:800;
  border:1px solid transparent;
  transition:.25s
}
.btn:hover {
  transform:translateY(-2px)
}
.btn-gold {
  background:var(--gold);
  color:#fff;
  box-shadow:0 12px 24px rgba(201,148,67,.22)
}
.btn-navy {
  background:var(--navy);
  color:#fff
}
.btn-outline {
  border-color:rgba(255,255,255,.45);
  color:#fff;
  background:rgba(255,255,255,.08)
}
.btn-wa {
  background:#20c86a;
  color:#fff
}
.icon-btn {
  width:50px;
  height:50px;
  border-radius:14px;
  border:1px solid #dce4eb;
  display:grid;
  place-items:center;
  color:var(--navy)
}
.icon-btn svg,.floating-actions svg {
  width:22px;
  fill:currentColor
}
.menu-toggle {
  display:none;
  width:48px;
  height:48px;
  border:1px solid #dde4ea;
  background:#fff;
  border-radius:14px;
  padding:12px
}
.menu-toggle span {
  display:block;
  height:2px;
  background:var(--navy);
  margin:5px 0
}
.hero {
  min-height:720px;
  position:relative;
  display:grid;
  align-items:center;
  background:url('../images/hero.webp') center/cover no-repeat;
  overflow:hidden;
  color:#fff
}
.hero:before {
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(90deg,rgba(4,29,54,.14) 0%,rgba(4,29,54,.36) 42%,rgba(4,29,54,.92) 100%)
}
.hero:after {
  content:"";
  position:absolute;
  width:600px;
  height:600px;
  border:1px solid rgba(226,183,101,.28);
  border-radius:50%;
  right:-250px;
  top:80px
}
.hero-content {
  position:relative;
  z-index:2;
  max-width:690px;
  margin-right:auto;
  padding:80px 0
}
.hero .eyebrow {
  color:#f5d18d
}
.hero h1 {
  font-size:clamp(44px,6vw,78px);
  line-height:1.14;
  margin:16px 0 18px
}
.hero h1 span {
  color:var(--gold-2)
}
.hero p {
  font-size:19px;
  color:#e5edf4;
  max-width:650px
}
.hero-actions {
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top:30px
}
.hero-points {
  display:flex;
  gap:24px;
  flex-wrap:wrap;
  margin-top:32px;
  color:#dfe8f0;
  font-weight:700
}
.hero-points span:before {
  content:"✓";
  color:var(--gold-2);
  margin-left:8px
}
.section {
  padding:90px 0
}
.section-soft {
  background:linear-gradient(180deg,#faf9f6,#f4f1eb)
}
.section-dark {
  background:var(--navy-2);
  color:#fff
}
.section-head {
  text-align:center;
  max-width:800px;
  margin:0 auto 42px
}
.eyebrow {
  display:inline-flex;
  align-items:center;
  gap:10px;
  color:var(--gold);
  font-weight:900;
  font-size:14px
}
.eyebrow:before,.eyebrow:after {
  content:"";
  width:28px;
  height:2px;
  background:currentColor
}
.section-title {
  font-size:clamp(32px,4vw,52px);
  line-height:1.25;
  color:var(--navy);
  margin:10px 0
}
.section-title span {
  color:var(--gold)
}
.section-dark .section-title {
  color:#fff
}
.section-head p {
  color:var(--muted);
  margin:0
}
.section-dark .section-head p {
  color:#b9c6d3
}
.products-grid {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px
}
.product-card {
  background:#fff;
  border:1px solid var(--line);
  border-radius:var(--radius);
  overflow:hidden;
  box-shadow:0 12px 30px rgba(8,43,80,.07);
  transition:.3s
}
.product-card:hover {
  transform:translateY(-7px);
  box-shadow:var(--shadow)
}
.product-image {
  height:300px;
  position:relative;
  overflow:hidden
}
.product-image img {
  width:100%;
  height:100%;
  object-fit:cover;
  transition:.45s
}
.product-card:hover .product-image img {
  transform:scale(1.04)
}
.product-image:after {
  content:"";
  position:absolute;
  inset:auto 0 0;
  height:80px;
  background:linear-gradient(transparent,rgba(4,29,54,.55))
}
.product-body {
  padding:24px
}
.product-body h3 {
  margin:0 0 8px;
  color:var(--navy);
  font-size:24px
}
.product-body p {
  color:var(--muted);
  min-height:86px;
  margin:0 0 20px
}
.card-actions {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px
}
.card-actions .btn {
  min-height:48px;
  padding:0 12px;
  font-size:14px
}
.about-split {
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:60px;
  align-items:center;
  direction:ltr
}
.about-media {
  position:relative;
  direction:rtl
}
.about-media img {
  border-radius:32px;
  box-shadow:var(--shadow);
  width:100%;
  aspect-ratio:1/1;
  object-fit:cover
}
.about-media:before {
  content:"";
  position:absolute;
  left:-22px;
  bottom:-22px;
  width:45%;
  height:45%;
  border:2px solid var(--gold);
  border-radius:28px;
  z-index:-1
}
.about-copy {
  direction:rtl
}
.about-copy h2 {
  font-size:46px;
  line-height:1.25;
  color:var(--navy);
  margin:12px 0
}
.about-copy p {
  color:var(--muted)
}
.stats {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:12px;
  margin:28px 0
}
.stat {
  background:var(--soft);
  border-radius:18px;
  padding:18px;
  text-align:center
}
.stat strong {
  display:block;
  color:var(--navy);
  font-size:25px
}
.stat span {
  font-size:13px;
  color:var(--muted)
}
.works-grid {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px
}
.work-item {
  border-radius:20px;
  overflow:hidden;
  position:relative;
  cursor:zoom-in;
  background:#ddd;
  box-shadow:0 10px 24px rgba(8,43,80,.08)
}
.work-item img {
  width:100%;
  height:330px;
  object-fit:cover;
  transition:.4s
}
.work-item:hover img {
  transform:scale(1.04)
}
.work-item:after {
  content:"تكبير الصورة";
  position:absolute;
  inset:auto 14px 14px 14px;
  background:rgba(4,29,54,.82);
  color:#fff;
  border-radius:12px;
  text-align:center;
  padding:9px;
  opacity:0;
  transform:translateY(8px);
  transition:.3s
}
.work-item:hover:after {
  opacity:1;
  transform:none
}
.steps {
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px
}
.step {
  border:1px solid rgba(226,183,101,.25);
  background:rgba(255,255,255,.04);
  border-radius:20px;
  padding:26px
}
.step b {
  display:inline-grid;
  place-items:center;
  width:46px;
  height:46px;
  border-radius:14px;
  background:var(--gold);
  color:#fff;
  margin-bottom:14px
}
.step h3 {
  margin:0 0 6px
}
.step p {
  color:#b9c6d3;
  margin:0
}
.why-grid {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px
}
.why-card {
  border:1px solid var(--line);
  border-radius:20px;
  padding:26px;
  background:#fff
}
.why-card .ico {
  width:48px;
  height:48px;
  border-radius:14px;
  background:#f7ecda;
  color:var(--gold);
  display:grid;
  place-items:center;
  font-size:22px;
  font-weight:900
}
.why-card h3 {
  color:var(--navy)
}
.faq-wrap {
  max-width:900px;
  margin:auto
}
.faq-item {
  border:1px solid #dfe5ea;
  border-radius:18px;
  margin-bottom:14px;
  overflow:hidden;
  background:#fff
}
.faq-q {
  width:100%;
  border:0;
  background:#fff;
  padding:22px 24px;
  font-weight:900;
  color:var(--navy);
  display:flex;
  justify-content:space-between;
  align-items:center;
  text-align:right;
  cursor:pointer
}
.faq-arrow {
  width:34px;
  height:34px;
  border-radius:10px;
  background:#f2f6f9;
  display:grid;
  place-items:center;
  transition:.25s
}
.faq-item.open .faq-arrow {
  transform:rotate(180deg);
  background:#f8ecda
}
.faq-a {
  max-height:0;
  overflow:hidden;
  transition:max-height .3s ease
}
.faq-a p {
  padding:0 24px 22px;
  margin:0;
  color:var(--muted)
}
.cta {
  padding:62px 0;
  background:linear-gradient(120deg,var(--navy-2),var(--navy));
  color:#fff;
  position:relative;
  overflow:hidden
}
.cta:after {
  content:"";
  position:absolute;
  width:420px;
  height:420px;
  border:70px solid rgba(201,148,67,.14);
  border-radius:50%;
  left:-180px;
  top:-160px
}
.cta-inner {
  position:relative;
  z-index:2;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:30px
}
.cta h2 {
  font-size:38px;
  margin:0
}
.cta p {
  margin:8px 0 0;
  color:#c4d0dc
}
.cta .hero-actions {
  margin:0
}
.page-hero {
  padding:100px 0 80px;
  background:linear-gradient(135deg,#f7f3eb,#eef3f7);
  position:relative;
  overflow:hidden
}
.page-hero:after {
  content:"";
  position:absolute;
  width:360px;
  height:360px;
  border:70px solid rgba(201,148,67,.08);
  border-radius:50%;
  left:-120px;
  top:-180px
}
.page-hero-inner {
  text-align:center;
  position:relative;
  z-index:1
}
.page-hero h1 {
  font-size:56px;
  color:var(--navy);
  margin:12px 0
}
.page-hero p {
  max-width:780px;
  margin:auto;
  color:var(--muted)
}
.detail-grid {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:48px;
  align-items:center;
  direction:ltr
}
.detail-media {
  direction:rtl
}
.detail-media img {
  width:100%;
  border-radius:28px;
  aspect-ratio:1/1;
  object-fit:cover;
  box-shadow:var(--shadow)
}
.detail-copy {
  direction:rtl
}
.detail-copy h2 {
  font-size:42px;
  color:var(--navy);
  line-height:1.25
}
.detail-copy p {
  color:var(--muted)
}
.detail-list {
  display:grid;
  gap:12px;
  margin:24px 0
}
.detail-list div {
  background:var(--soft);
  border:1px solid #ece7dd;
  border-radius:14px;
  padding:14px
}
.detail-list div:before {
  content:"✓";
  color:var(--gold);
  font-weight:900;
  margin-left:10px
}
.rich-section {
  text-align:center
}
.rich-section>p {
  max-width:900px;
  margin:0 auto;
  color:var(--muted)
}
.check-grid {
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:14px;
  max-width:900px;
  margin:28px auto 0
}
.check-item {
  padding:18px;
  border-radius:16px;
  background:#f7f9fb;
  border:1px solid #e3e8ed
}
.check-item:before {
  content:"✓";
  display:inline-grid;
  place-items:center;
  width:28px;
  height:28px;
  border-radius:9px;
  background:#f4e8d4;
  color:var(--gold);
  margin-left:8px;
  font-weight:900
}
.contact-grid {
  display:grid;
  grid-template-columns:.8fr 1.2fr;
  gap:32px
}
.contact-card,.form-card {
  border:1px solid var(--line);
  border-radius:24px;
  background:#fff;
  padding:30px;
  box-shadow:0 12px 28px rgba(8,43,80,.06)
}
.contact-card h2,.form-card h2 {
  color:var(--navy)
}
.contact-links {
  display:grid;
  gap:12px
}
.contact-links a {
  padding:14px;
  border-radius:13px;
  background:var(--soft);
  font-weight:800;
  color:var(--navy)
}
.form-grid {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px
}
.field {
  display:grid;
  gap:7px
}
.field.full {
  grid-column:1/-1
}
.field input,.field select,.field textarea {
  border:1px solid #d9e0e6;
  border-radius:13px;
  padding:14px;
  background:#fff;
  outline:none
}
.field textarea {
  min-height:150px;
  resize:vertical
}
.field input:focus,.field select:focus,.field textarea:focus {
  border-color:var(--gold);
  box-shadow:0 0 0 3px rgba(201,148,67,.1)
}
.footer {
  background:#041d36;
  color:#fff;
  padding:70px 0 18px
}
.footer-grid {
  display:grid;
  grid-template-columns:.8fr 1fr 1.35fr 1.2fr;
  gap:42px;
  direction:rtl
}
.footer h3 {
  color:#f2cb83;
  margin-top:0
}
.footer a {
  display:block;
  color:#dce6ef;
  margin:8px 0
}
.footer a:hover {
  color:#f2cb83
}
.footer p {
  color:#aebdca
}
.footer-brand img {
  width:170px;
  background:#fff;
  border-radius:18px;
  padding:12px;
  margin-bottom:14px
}
.footer-bottom {
  border-top:1px solid rgba(255,255,255,.12);
  padding-top:18px;
  margin-top:38px;
  color:#92a5b5;
  text-align:center
}
.floating-actions {
  position:fixed;
  left:18px;
  bottom:22px;
  z-index:150;
  display:flex;
  flex-direction:column;
  gap:8px
}
.floating-actions a,.floating-actions button {
  width:54px;
  height:54px;
  border-radius:16px;
  border:0;
  display:grid;
  place-items:center;
  color:#fff;
  box-shadow:0 12px 25px rgba(0,0,0,.18);
  cursor:pointer
}
.float-call,.float-top {
  background:var(--navy)
}
.float-wa {
  background:#20c86a
}
.floating-actions svg {
  width:24px;
  fill:currentColor
}
.lightbox {
  position:fixed;
  inset:0;
  background:rgba(3,18,34,.94);
  z-index:999;
  display:none;
  align-items:center;
  justify-content:center;
  padding:30px
}
.lightbox.open {
  display:flex
}
.lightbox img {
  max-width:min(1000px,86vw);
  max-height:82vh;
  border-radius:16px
}
.lightbox-close,.lightbox-prev,.lightbox-next {
  position:absolute;
  border:0;
  color:#fff;
  background:rgba(255,255,255,.12);
  width:54px;
  height:54px;
  border-radius:14px;
  font-size:28px;
  cursor:pointer
}
.lightbox-close {
  top:24px;
  left:24px
}
.lightbox-prev {
  right:24px
}
.lightbox-next {
  left:24px
}
.lightbox-count {
  position:absolute;
  bottom:18px;
  color:#fff;
  font-weight:800
}
@media(max-width:1050px) {
  .main-nav {
    gap:18px
  }
  .brand-copy {
    display:none
  }
  .products-grid {
    grid-template-columns:repeat(2,1fr)
  }
  .works-grid {
    grid-template-columns:repeat(2,1fr)
  }
}
@media(max-width:900px) {
  .topbar {
    display:none
  }
  .nav-wrap {
    min-height:76px;
    grid-template-columns:auto 1fr auto;
    gap:12px
  }
  .brand img {
    width:92px;
    height:58px
  }
  .main-nav {
    position:absolute;
    top:76px;
    right:17px;
    left:17px;
    background:#fff;
    box-shadow:var(--shadow);
    border-radius:18px;
    padding:12px;
    display:none;
    flex-direction:column;
    gap:0
  }
  .main-nav.open {
    display:flex
  }
  .main-nav a {
    padding:13px 14px;
    border-bottom:1px solid #edf0f3
  }
  .main-nav a:after {
    display:none
  }
  .menu-toggle {
    display:block
  }
  .header-actions .btn {
    display:none
  }
  .hero {
    min-height:650px;
    background-position:55% center
  }
  .hero:before {
    background:linear-gradient(180deg,rgba(4,29,54,.18),rgba(4,29,54,.88))
  }
  .hero-content {
    margin:auto;
    text-align:center;
    padding:90px 0 55px
  }
  .hero p {
    margin:auto
  }
  .hero-actions,.hero-points {
    justify-content:center
  }
  .about-split,.detail-grid,.contact-grid {
    grid-template-columns:1fr;
    gap:32px
  }
  .about-media {
    order:1
  }
  .about-copy {
    order:2;
    text-align:center
  }
  .stats {
    max-width:600px;
    margin:25px auto
  }
  .steps {
    grid-template-columns:repeat(2,1fr)
  }
  .why-grid {
    grid-template-columns:repeat(2,1fr)
  }
  .cta-inner {
    flex-direction:column;
    text-align:center
  }
  .footer-grid {
    grid-template-columns:1fr 1fr
  }
}
@media(max-width:650px) {
  .container {
    width:min(100% - 24px,1180px)
  }
  .section {
    padding:65px 0
  }
  .hero {
    min-height:610px
  }
  .hero h1 {
    font-size:42px
  }
  .hero p {
    font-size:16px
  }
  .hero-actions .btn {
    width:100%
  }
  .hero-points {
    gap:10px 18px;
    font-size:13px
  }
  .products-grid,.works-grid,.steps,.why-grid,.check-grid,.form-grid,.footer-grid {
    grid-template-columns:1fr
  }
  .product-image {
    height:265px
  }
  .product-body p {
    min-height:auto
  }
  .card-actions {
    grid-template-columns:1fr
  }
  .work-item img {
    height:300px
  }
  .about-copy h2,.detail-copy h2 {
    font-size:34px
  }
  .page-hero {
    padding:72px 0 58px
  }
  .page-hero h1 {
    font-size:42px
  }
  .stats {
    grid-template-columns:1fr
  }
  .cta h2 {
    font-size:30px
  }
  .floating-actions {
    left:10px;
    bottom:12px
  }
  .floating-actions a,.floating-actions button {
    width:48px;
    height:48px
  }
  .lightbox-prev {
    right:10px
  }
  .lightbox-next {
    left:10px
  }
  .lightbox-close {
    left:10px;
    top:10px
  }
}
/* ===== 2026 refined UI pass ===== */
body {
  font-family:"Cairo",Tahoma,Arial,sans-serif;
  font-weight:500;
  line-height:1.75;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}
:root {
  --radius:20px;
  --shadow:0 16px 38px rgba(7,32,59,.11)
}
.topbar {
  font-size:12.5px
}
.topbar-inner {
  height:36px
}
.nav-wrap {
  min-height:82px;
  gap:24px
}
.brand {
  gap:11px
}
.brand img {
  width:102px;
  height:62px
}
.brand-copy strong {
  font-size:17px
}
.brand-copy small {
  font-size:12px
}
.main-nav {
  gap:23px
}
.main-nav a {
  font-size:14px;
  font-weight:700;
  padding:28px 0
}
.main-nav a:after {
  bottom:17px;
  height:2px;
  border-radius:10px
}
.header-actions {
  gap:8px
}
.btn {
  min-height:48px;
  padding:0 20px;
  border-radius:12px;
  font-size:14px;
  gap:7px
}
.btn svg {
  width:19px;
  height:19px;
  fill:currentColor;
  flex:0 0 auto
}
.icon-btn {
  width:46px;
  height:46px;
  border-radius:12px
}
.icon-btn svg {
  width:20px
}
.hero {
  min-height:650px
}
.hero-content {
  max-width:650px;
  padding:70px 0
}
.hero h1 {
  font-size:clamp(38px,5vw,62px);
  line-height:1.2;
  margin:13px 0 16px;
  letter-spacing:-.35px
}
.hero p {
  font-size:17px;
  line-height:1.9;
  max-width:620px
}
.hero-actions {
  margin-top:25px
}
.hero-points {
  margin-top:27px;
  font-size:14px;
  gap:20px
}
.section {
  padding:76px 0
}
.section-head {
  max-width:740px;
  margin-bottom:34px
}
.eyebrow {
  font-size:12.5px;
  letter-spacing:.15px
}
.eyebrow:before,.eyebrow:after {
  width:22px
}
.section-title {
  font-size:clamp(28px,3.4vw,42px);
  margin:8px 0 10px;
  letter-spacing:-.2px
}
.section-head p {
  font-size:15px;
  line-height:1.9
}
.products-grid {
  gap:20px
}
.product-card {
  border-radius:20px;
  box-shadow:0 8px 24px rgba(8,43,80,.065)
}
.product-card:hover {
  transform:translateY(-4px)
}
.product-image {
  height:265px
}
.product-image:after {
  height:58px
}
.product-body {
  padding:21px
}
.product-body h3 {
  font-size:20px;
  line-height:1.45;
  margin:0 0 7px;
  font-weight:800
}
.product-body p {
  font-size:14px;
  line-height:1.9;
  min-height:80px;
  margin:0 0 17px
}
.card-actions {
  gap:8px
}
.card-actions .btn {
  min-height:44px;
  font-size:13px;
  border-radius:11px;
  padding:0 10px
}
.card-actions .btn-navy {
  background:#0b355e
}
.card-actions .btn-wa {
  background:#1fae5f
}
.card-actions .btn-wa svg {
  width:17px;
  height:17px
}
.about-copy h2 {
  font-size:38px
}
.detail-copy h2 {
  font-size:36px
}
.about-copy p,.detail-copy p,.rich-section>p {
  font-size:15px
}
.stats {
  margin:24px 0
}
.stat strong {
  font-size:22px
}
.why-card,.step {
  padding:22px
}
.why-card h3,.step h3 {
  font-size:18px
}
.why-card p,.step p {
  font-size:14px
}
.why-card .ico {
  width:44px;
  height:44px;
  border-radius:12px;
  font-size:20px
}
.page-hero {
  padding:82px 0 66px
}
.page-hero h1 {
  font-size:clamp(34px,4vw,46px);
  line-height:1.35;
  margin:8px 0 10px
}
.page-hero p {
  font-size:15px
}
.detail-list div {
  font-size:14px
}
.faq-q {
  padding:18px 20px;
  font-size:15px
}
.faq-arrow {
  width:32px;
  height:32px;
  border-radius:9px
}
.faq-arrow svg {
  width:18px;
  height:18px;
  fill:currentColor
}
.faq-a p {
  font-size:14px;
  padding:0 20px 19px
}
.cta {
  padding:52px 0
}
.cta h2 {
  font-size:32px
}
.cta p {
  font-size:14px
}
.footer {
  padding-top:58px
}
.footer-grid {
  gap:34px
}
.footer h3 {
  font-size:17px
}
.footer a,.footer p {
  font-size:13.5px
}
.footer-brand img {
  width:150px;
  border-radius:15px
}
.footer-bottom {
  font-size:12px
}
.floating-actions {
  gap:7px
}
.floating-actions a,.floating-actions button {
  width:50px;
  height:50px;
  border-radius:14px
}
.floating-actions svg,.float-top svg {
  width:21px;
  height:21px;
  fill:currentColor
}
.contact-card,.form-card {
  padding:26px;
  border-radius:20px
}
.contact-card h2,.form-card h2 {
  font-size:26px
}
.field span {
  font-size:13px;
  font-weight:700
}
.field input,.field select,.field textarea {
  font-size:14px;
  padding:12px 13px;
  border-radius:11px
}
@media(max-width:900px) {
  .nav-wrap {
    min-height:72px
  }
  .main-nav {
    top:72px
  }
  .brand img {
    width:86px;
    height:54px
  }
  .hero {
    min-height:600px
  }
  .hero-content {
    padding:72px 0 48px
  }
  .section {
    padding:64px 0
  }
}
@media(max-width:650px) {
  .section {
    padding:56px 0
  }
  .hero {
    min-height:570px
  }
  .hero h1 {
    font-size:36px
  }
  .hero p {
    font-size:15px
  }
  .product-image {
    height:245px
  }
  .product-body {
    padding:18px
  }
  .product-body h3 {
    font-size:19px
  }
  .page-hero {
    padding:62px 0 50px
  }
  .page-hero h1 {
    font-size:34px
  }
  .about-copy h2,.detail-copy h2 {
    font-size:29px
  }
  .cta h2 {
    font-size:26px
  }
}
/* ===== Requested final adjustments v3 ===== */
/* Hero desktop: move the full copy visibly toward the right. */
@media (min-width: 901px) {
  .hero-content {
    transform:translateX(180px);
  }
}
.hero h1 .hero-white-title {
  color:#fff !important
}
/* Products: compact image, then service name, description, details and quotation buttons vertically. */
.products-grid {
  align-items:stretch
}
.product-card {
  display:flex;
  flex-direction:column;
  height:100%
}
.product-image {
  height:180px;
  flex:0 0 180px
}
.product-body {
  display:flex;
  flex-direction:column;
  align-items:stretch;
  flex:1;
  padding:20px
}
.product-body h3 {
  margin:0 0 7px
}
.product-desc-label {
  display:block;
  color:var(--gold);
  font-size:12px;
  font-weight:800;
  margin:0 0 4px
}
.product-body p {
  min-height:72px;
  margin:0 0 14px
}
.card-actions {
  display:grid;
  grid-template-columns:1fr;
  gap:9px;
  margin-top:auto
}
.card-actions .btn {
  width:100%;
  justify-content:center;
  text-align:center
}
@media(max-width:1050px) {
  .product-image {
    height:175px;
    flex-basis:175px
  }
}
/* Phone/tablet: center all visible copy and actions. */
@media(max-width:900px) {
  .hero-content {
    transform:none;
    text-align:center
  }
  .hero-content .eyebrow,.hero-content h1,.hero-content p, .section-head,.product-body,.about-copy,.detail-copy,.rich-section, .page-hero-inner,.cta-inner,.footer,.footer-grid,.footer-brand,.footer-contact, .contact-card,.form-card,.faq-wrap,.step,.why-card {
    text-align:center;
  }
  .hero-actions,.hero-points,.card-actions,.detail-copy .hero-actions, .about-copy .hero-actions,.cta .hero-actions {
    justify-content:center;
  }
  .product-desc-label {
    align-self:center
  }
  .detail-list div {
    text-align:center
  }
  .footer-brand img {
    margin-left:auto;
    margin-right:auto
  }
  .footer a {
    text-align:center
  }
  .faq-q {
    text-align:center;
    justify-content:center;
    gap:10px
  }
}
@media(max-width:650px) {
  .product-image {
    height:190px;
    flex-basis:190px
  }
  .product-body p {
    min-height:auto
  }
  .product-body {
    padding:18px
  }
  .hero-points {
    justify-content:center
  }
}
/* ===== Final requested corrections v4 ===== */
html,body {
  max-width:100%;
  overflow-x:hidden
}
@supports (overflow:clip) {
  html,body {
    overflow-x:clip
  }
}
.site-header,.topbar,.hero,.section,.page-hero,.cta,.footer {
  max-width:100%;
  overflow-x:hidden
}
/* Desktop hero: place the full copy on the right side, close to the palm/crane area. */
@media (min-width:901px) {
  .hero > .container {
    display:flex;
    justify-content:flex-end;
    align-items:center;
    width:min(1180px,calc(100% - 34px))
  }
  .hero-content {
    width:min(650px,100%);
    max-width:650px;
    margin:0;
    transform:none !important;
    text-align:right;
  }
  .hero-content p {
    margin-right:0;
    margin-left:auto
  }
  .hero-actions,.hero-points {
    justify-content:flex-start
  }
}
/* Product cards: no small 'service description' heading. */
.product-desc-label {
  display:none !important
}
/* Mobile: all copy centered and absolutely no horizontal page overflow. */
@media (max-width:900px) {
  html,body {
    width:100%;
    max-width:100%;
    overflow-x:hidden
  }
  @supports (overflow:clip) {
    html,body {
      overflow-x:clip
    }
  }
  .container {
    width:calc(100% - 24px);
    max-width:1180px;
    margin-left:auto;
    margin-right:auto
  }
  .hero > .container {
    display:block
  }
  .hero-content {
    width:100%;
    max-width:100%;
    margin:0 auto;
    transform:none !important;
    text-align:center;
    padding-left:0;
    padding-right:0
  }
  .hero-content h1,.hero-content p,.hero-content .eyebrow {
    max-width:100%;
    margin-left:auto;
    margin-right:auto;
    text-align:center
  }
  .hero-actions,.hero-points {
    width:100%;
    max-width:100%;
    justify-content:center
  }
  .hero-actions .btn {
    max-width:100%
  }
  .nav-wrap,.main-nav,.products-grid,.product-card,.product-body,.section-head,.cta-inner,.footer-grid {
    max-width:100%;
    min-width:0
  }
  .product-card,.product-body {
    width:100%
  }
  img,svg {
    max-width:100%
  }
}
/* ===== Wear Caravan update: full product images + clean mobile menu ===== */
:root {
  --navy:#14293a;
  --navy-2:#0d1f2e;
  --gold:#b87a1d;
  --gold-2:#d8a144;
  --soft:#f7f5f0
}
.product-image {
  height:auto!important;
  flex-basis:auto!important;
  aspect-ratio:1/1;
  background:#f5f5f3
}
.product-image img {
  width:100%;
  height:100%;
  object-fit:cover
}
.product-card {
  border-radius:22px
}
.site-header {
  overflow:visible!important
}
.menu-toggle {
  cursor:pointer;
  position:relative;
  z-index:1002
}
.menu-toggle.active span:nth-child(1) {
  transform:translateY(7px) rotate(45deg)
}
.menu-toggle.active span:nth-child(2) {
  opacity:0
}
.menu-toggle.active span:nth-child(3) {
  transform:translateY(-7px) rotate(-45deg)
}
.menu-toggle span {
  transition:.22s ease
}
@media(max-width:900px) {
  .site-header {
    overflow:visible!important
  }
  .nav-wrap {
    position:relative
  }
  .main-nav {
    position:absolute!important;
    top:calc(100% + 8px)!important;
    right:12px!important;
    left:auto!important;
    width:min(310px,calc(100vw - 24px));
    max-height:none!important;
    background:#fff!important;
    border:1px solid #e6e9ec;
    border-radius:15px!important;
    padding:8px!important;
    box-shadow:0 18px 45px rgba(10,25,38,.18)!important;
    display:none!important;
    flex-direction:column!important;
    align-items:stretch!important;
    gap:2px!important;
    z-index:1001!important;
    overflow:visible!important
  }
  .main-nav.open {
    display:flex!important
  }
  .main-nav a {
    display:block!important;
    width:100%;
    padding:12px 15px!important;
    border:0!important;
    border-radius:10px;
    text-align:right!important;
    color:#1b2b38!important;
    background:#fff;
    font-size:14px!important
  }
  .main-nav a:hover,.main-nav a.active {
    background:#f6f2ea!important;
    color:var(--navy)!important
  }
  .main-nav a:after {
    display:none!important
  }
}
@media(max-width:650px) {
  .product-image {
    aspect-ratio:1/1!important;
    height:auto!important;
    flex-basis:auto!important
  }
}

/* ===== Definitive card centering fix ===== */
.why-card,
.step {
  display:flex !important;
  flex-direction:column !important;
  align-items:center !important;
  justify-content:flex-start !important;
  text-align:center !important;
}

.why-card .ico,
.step b {
  align-self:center !important;
  margin:0 auto 14px !important;
  float:none !important;
  position:static !important;
}

.why-card h3,
.why-card p,
.step h3,
.step p {
  width:100% !important;
  text-align:center !important;
  margin-left:auto !important;
  margin-right:auto !important;
}

/* Wear Caravan: four direct contact actions */
.floating-actions{gap:10px;}
.float-call-2,.float-wa-2{display:flex!important;}


/* ===== Wear Caravan final hero + contact dock polish ===== */
.hero {
  min-height: 680px;
  background-position: center center;
}
.hero:before {
  background: linear-gradient(90deg, rgba(4,29,54,.18) 0%, rgba(4,29,54,.40) 46%, rgba(4,29,54,.90) 100%);
}
.hero:after {
  width: 520px;
  height: 520px;
  right: -220px;
  top: 90px;
  border-color: rgba(226,183,101,.22);
}
.hero-content {
  width: min(620px,100%);
  max-width: 620px;
  padding: 38px 38px 34px;
  background: linear-gradient(145deg, rgba(4,29,54,.78), rgba(4,29,54,.52));
  border: 1px solid rgba(226,183,101,.24);
  border-radius: 28px;
  box-shadow: 0 28px 70px rgba(0,0,0,.22);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}
.hero .eyebrow {
  display: inline-flex;
  align-items: center;
  width: auto;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(226,183,101,.13);
  border: 1px solid rgba(226,183,101,.28);
  color: #f6d695;
  font-size: 13px;
  font-weight: 800;
}
.hero h1 {
  font-size: clamp(42px,5vw,64px);
  line-height: 1.18;
  margin: 16px 0 14px;
  letter-spacing: -.4px;
}
.hero h1 .hero-white-title { display:block; margin-top:6px; }
.hero p {
  font-size: 17px;
  line-height: 1.9;
  color: #edf3f8;
  max-width: 570px;
}
.hero-actions { gap: 10px; margin-top: 24px; }
.hero-actions .btn {
  min-width: 145px;
  min-height: 50px;
  border-radius: 14px;
  font-weight: 800;
}
.hero-points {
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
  gap: 9px;
  margin-top: 24px;
  width: 100%;
}
.hero-points span {
  display:flex;
  align-items:center;
  justify-content:center;
  min-height:48px;
  padding:9px 10px;
  border-radius:13px;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.11);
  text-align:center;
  line-height:1.55;
  font-size:12.5px;
}
.hero-points span:before { margin-left:6px; }

/* Compact 2x2 contact dock instead of a tall stack covering the page. */
.floating-actions {
  left: 16px;
  bottom: 16px;
  display: grid;
  grid-template-columns: repeat(2,48px);
  gap: 8px;
  padding: 8px;
  background: rgba(255,255,255,.94);
  border: 1px solid rgba(15,43,67,.10);
  border-radius: 20px;
  box-shadow: 0 16px 40px rgba(0,0,0,.18);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.floating-actions a,.floating-actions button {
  width:48px;
  height:48px;
  border-radius:14px;
  box-shadow:none;
  transition:transform .2s ease, box-shadow .2s ease, filter .2s ease;
}
.floating-actions a:hover,.floating-actions button:hover {
  transform:translateY(-2px);
  box-shadow:0 8px 18px rgba(0,0,0,.15);
  filter:brightness(1.04);
}
.float-call { background:#12344d; }
.float-wa { background:#18c86a; }
.floating-actions svg { width:22px; height:22px; }
.float-top {
  grid-column:1/-1;
  justify-self:center;
  width:42px !important;
  height:38px !important;
  border-radius:12px !important;
  background:#0d2940;
}

@media (min-width:901px) {
  .hero > .container { justify-content:flex-end; }
  .hero-content { margin:0; text-align:right; }
  .hero-actions { justify-content:flex-start; }
}

@media (max-width:900px) {
  .hero {
    min-height: 0;
    padding: 58px 0;
    background-position: 48% center;
  }
  .hero:before {
    background: linear-gradient(180deg,rgba(4,29,54,.56),rgba(4,29,54,.82));
  }
  .hero:after { display:none; }
  .hero-content {
    width: min(100%,650px);
    max-width:650px;
    margin:0 auto;
    padding: 32px 22px 26px;
    border-radius:22px;
    text-align:center;
  }
  .hero .eyebrow { margin-inline:auto; }
  .hero h1 {
    width:100%;
    max-width:none;
    font-size:clamp(33px,8vw,46px);
    line-height:1.22;
    margin:14px auto 13px;
  }
  .hero h1 .hero-white-title { display:block; }
  .hero p {
    width:100%;
    max-width:560px;
    margin-inline:auto;
    font-size:15.5px;
    line-height:1.85;
  }
  .hero-actions {
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    width:min(100%,380px);
    margin:22px auto 0;
  }
  .hero-actions .btn {
    width:100%;
    min-width:0;
    padding-inline:12px;
  }
  .hero-points {
    grid-template-columns:repeat(3,minmax(0,1fr));
    width:100%;
    margin-top:18px;
  }
  .floating-actions {
    left:12px;
    bottom:12px;
    grid-template-columns:repeat(2,44px);
    padding:7px;
    gap:7px;
    border-radius:18px;
  }
  .floating-actions a,.floating-actions button {
    width:44px;
    height:44px;
    border-radius:13px;
  }
  .floating-actions .float-top { display:none !important; }
  .floating-actions svg { width:20px; height:20px; }
}

@media (max-width:480px) {
  .hero { padding:44px 0; }
  .hero-content { padding:27px 15px 22px; border-radius:19px; }
  .hero h1 { font-size:32px; }
  .hero p { font-size:14.5px; line-height:1.8; }
  .hero-actions { grid-template-columns:1fr 1fr; gap:8px; }
  .hero-actions .btn { min-height:46px; font-size:14px; }
  .hero-points { grid-template-columns:1fr; gap:7px; }
  .hero-points span { min-height:40px; padding:7px 9px; font-size:12.5px; }
}
