/* =====================================================================
   JJR TRADING LTD — BRAND STYLESHEET
   Navy (#0B2545) + Orange (#F37801), warm cream section backgrounds.
   Built on top of Bootstrap 5 grid/utilities loaded via CDN in index.php.
   ===================================================================== */

:root{
  --navy:        #0B2545;
  --navy-deep:   #071A33;
  --navy-mid:    #143A6B;
  --navy-tint:   #EEF2F8;
  --orange:      #F37801;
  --orange-dark: #D96A00;
  --orange-tint: #FFF1E2;
  --cream:       #F8F6F1;
  --white:       #FFFFFF;
  --ink:         #17212E;
  --slate:       #5C6B7D;
  --line:        #E6E9EE;
  --radius:      14px;
  --shadow-sm:   0 2px 10px rgba(11,37,69,.06);
  --shadow-md:   0 12px 32px rgba(11,37,69,.12);
  --font-head:   'Poppins', sans-serif;
  --font-body:   'Inter', sans-serif;
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  font-family:var(--font-body);
  color:var(--ink);
  background:var(--white);
  font-size:16px;
  line-height:1.7;
  overflow-x:hidden;
}
h1,h2,h3,h4,h5,h6{
  font-family:var(--font-head);
  color:var(--navy);
  font-weight:700;
  line-height:1.25;
  margin:0 0 .6em;
}
p{ margin:0 0 1em; color:var(--slate); }
a{ color:var(--orange); text-decoration:none; transition:.2s ease; }
a:hover{ color:var(--orange-dark); }
img{ max-width:100%; height:auto; display:block; }
ul{ margin:0; padding:0; list-style:none; }
section{ position:relative; }

.container{ max-width:1200px; }

/* ---------- Eyebrow / section heading ---------- */
.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-family:var(--font-head);
  font-size:13px;
  font-weight:700;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:var(--orange);
  margin-bottom:14px;
}
.eyebrow::before{
  content:'';
  width:22px; height:2px;
  background:var(--orange);
  display:inline-block;
}
.section-head{ max-width:640px; margin-bottom:48px; }
.section-head.center{ margin-left:auto; margin-right:auto; text-align:center; }
.section-head h2{ font-size:clamp(28px,3.4vw,40px); }
.section-pad{ padding:96px 0; }
.bg-cream{ background:var(--cream); }
.bg-navy{ background:var(--navy); }
.bg-navy-deep{ background:var(--navy-deep); }
.text-white-90{ color:rgba(255,255,255,.86); }

/* ---------- Buttons ---------- */
.btn{
  font-family:var(--font-head);
  font-weight:600;
  font-size:15px;
  border-radius:8px;
  padding:14px 30px;
  border:2px solid transparent;
  display:inline-flex;
  align-items:center;
  gap:8px;
  transition:.25s ease;
  cursor:pointer;
}
.btn-orange{
  background:var(--orange);
  color:var(--white);
  box-shadow:0 8px 20px rgba(243,120,1,.28);
}
.btn-orange:hover{ background:var(--orange-dark); color:var(--white); transform:translateY(-2px); }
.btn-outline-light{
  background:transparent;
  border-color:rgba(255,255,255,.55);
  color:var(--white);
}
.btn-outline-light:hover{ background:rgba(255,255,255,.12); color:var(--white); border-color:var(--white); }
.btn-outline-navy{
  background:transparent;
  border-color:var(--navy);
  color:var(--navy);
}
.btn-outline-navy:hover{ background:var(--navy); color:var(--white); }
.btn-block-full{ width:100%; justify-content:center; }
.btn-sm-tag{
  font-size:13px;
  padding:9px 16px;
  border-radius:6px;
}

/* =====================================================================
   HEADER / NAVIGATION
   ===================================================================== */
.site-header{
  position:sticky; top:0; left:0; right:0; z-index:1000;
  background:rgba(255,255,255,.97);
  backdrop-filter:blur(6px);
  border-bottom:1px solid var(--line);
  transition:.25s ease;
}
.site-header.shrink{ box-shadow:var(--shadow-sm); }
.topbar{
  background:var(--navy-deep);
  color:rgba(255,255,255,.85);
  font-size:13px;
}
.topbar a{ color:rgba(255,255,255,.85); }
.topbar a:hover{ color:var(--orange); }
.topbar .container{ display:flex; justify-content:space-between; align-items:center; padding:8px 15px; flex-wrap:wrap; gap:6px; }
.topbar-item{ display:inline-flex; align-items:center; gap:6px; margin-right:18px; }
.topbar-socials a{ margin-left:12px; font-size:14px; }

.navbar-main{ padding:14px 0; display:flex; align-items:center; justify-content:space-between; gap:20px; }
.brand img{ height:46px; width:auto; }
.main-nav{ display:flex; align-items:center; gap:2px; }
.main-nav a{
  color:var(--navy);
  font-family:var(--font-head);
  font-weight:600;
  font-size:15px;
  padding:10px 16px;
  border-radius:6px;
}
.main-nav a:hover{ color:var(--orange); background:var(--orange-tint); }
.nav-cta{ display:flex; align-items:center; gap:14px; }
.nav-phone{ display:flex; align-items:center; gap:8px; font-family:var(--font-head); font-weight:700; color:var(--navy); }
.nav-phone i{ color:var(--orange); font-size:20px; }
.menu-toggle{
  display:none;
  width:44px; height:44px;
  border-radius:8px;
  border:1px solid var(--line);
  background:var(--white);
  align-items:center; justify-content:center;
  font-size:20px; color:var(--navy);
  cursor:pointer;
}

/* Mobile offcanvas menu */
.site-mobile-menu{
  position:fixed; top:0; right:-320px; width:300px; height:100%;
  background:var(--navy-deep); z-index:2000; padding:28px 24px;
  overflow-y:auto; transition:right .35s ease;
  box-shadow:-10px 0 40px rgba(0,0,0,.25);
}
body.offcanvas-menu .site-mobile-menu{ right:0; }
.site-mobile-menu-header{ display:flex; justify-content:space-between; align-items:center; margin-bottom:28px; }
.site-mobile-menu-close{ color:#fff; font-size:26px; background:none; border:0; cursor:pointer; }
.site-mobile-menu-body a{
  display:block; padding:14px 4px; color:rgba(255,255,255,.85);
  font-family:var(--font-head); font-weight:600; font-size:16px;
  border-bottom:1px solid rgba(255,255,255,.08);
}
.site-mobile-menu-body a:hover{ color:var(--orange); }
body.offcanvas-menu::after{
  content:''; position:fixed; inset:0; background:rgba(7,26,51,.55); z-index:1500;
}

/* =====================================================================
   HERO — echoes the logo's roller-shutter warehouse door
   ===================================================================== */
.hero{
  position:relative;
  background:
    radial-gradient(1100px 500px at 85% -10%, rgba(243,120,1,.20), transparent 60%),
    linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 55%, var(--navy-mid) 100%);
  color:#fff;
  padding:120px 0 150px;
  overflow:hidden;
}
.hero::after{
  content:'';
  position:absolute; left:0; right:0; bottom:0; height:64px;
  background:repeating-linear-gradient(
    to bottom,
    rgba(255,255,255,.06) 0px, rgba(255,255,255,.06) 6px,
    transparent 6px, transparent 12px
  );
  opacity:.5;
}
.hero-badge{
  display:inline-flex; align-items:center; gap:8px;
  background:rgba(255,255,255,.1);
  border:1px solid rgba(255,255,255,.18);
  padding:8px 16px; border-radius:30px;
  font-size:13px; font-weight:600; color:#fff;
  margin-bottom:22px;
}
.hero-badge i{ color:var(--orange); }
.hero h1{
  color:#fff;
  font-size:clamp(34px,5vw,58px);
  line-height:1.12;
  margin-bottom:22px;
}
.hero h1 span{ color:var(--orange); }
.hero p.lead{
  font-size:18px; color:rgba(255,255,255,.82); max-width:540px; margin-bottom:34px;
}
.hero-actions{ display:flex; gap:16px; flex-wrap:wrap; margin-bottom:52px; }
.hero-trust{ display:flex; gap:34px; flex-wrap:wrap; }
.hero-trust-item{ display:flex; align-items:center; gap:10px; color:rgba(255,255,255,.85); font-size:14px; font-weight:600; }
.hero-trust-item i{ color:var(--orange); font-size:18px; }

.hero-visual{ position:relative; }
.hero-card{
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.14);
  border-radius:var(--radius);
  padding:28px;
  backdrop-filter:blur(6px);
}
.hero-card-grid{ display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.hero-stat{
  background:rgba(255,255,255,.07);
  border-radius:10px; padding:20px;
  text-align:center;
}
.hero-stat .num{ font-family:var(--font-head); font-size:30px; font-weight:800; color:var(--orange); display:block; }
.hero-stat .label{ font-size:12.5px; color:rgba(255,255,255,.75); font-weight:600; text-transform:uppercase; letter-spacing:.04em; }

/* =====================================================================
   TRUST / LOGO BAR
   ===================================================================== */
.trust-strip{ background:var(--white); padding:28px 0; border-bottom:1px solid var(--line); }
.trust-strip .row{ align-items:center; }
.trust-strip-item{ display:flex; align-items:center; gap:12px; justify-content:center; padding:10px 0; }
.trust-strip-item i{ font-size:26px; color:var(--orange); }
.trust-strip-item span{ font-family:var(--font-head); font-weight:700; font-size:14px; color:var(--navy); }

/* =====================================================================
   CATEGORY CARDS — clipped "price tag" corner, echoing warehouse tags
   ===================================================================== */
.category-card{
  position:relative;
  background:var(--white);
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:34px 26px;
  height:100%;
  transition:.3s ease;
  clip-path:polygon(0 0,100% 0,100% 100%,22px 100%,0 calc(100% - 22px));
}
.category-card:hover{ transform:translateY(-6px); box-shadow:var(--shadow-md); border-color:transparent; }
.category-card .icon{
  width:60px; height:60px; border-radius:14px;
  background:var(--orange-tint);
  display:flex; align-items:center; justify-content:center;
  font-size:28px; color:var(--orange);
  margin-bottom:20px;
  transition:.3s ease;
}
.category-card:hover .icon{ background:var(--orange); color:#fff; }
.category-card h3{ font-size:19px; margin-bottom:10px; }
.category-card p{ font-size:14.5px; margin-bottom:16px; }
.category-card .cat-link{
  font-family:var(--font-head); font-weight:700; font-size:13.5px;
  color:var(--navy); display:inline-flex; align-items:center; gap:6px;
}
.category-card .cat-link i{ transition:.2s; }
.category-card:hover .cat-link i{ transform:translateX(4px); }

/* =====================================================================
   FEATURES / WHY CHOOSE US
   ===================================================================== */
.feature-row{ display:flex; gap:20px; padding:26px 0; border-bottom:1px solid var(--line); }
.feature-row:last-child{ border-bottom:0; }
.feature-icon{
  flex:0 0 54px; width:54px; height:54px; border-radius:12px;
  background:var(--navy); color:#fff;
  display:flex; align-items:center; justify-content:center; font-size:22px;
}
.feature-copy h3{ font-size:17px; margin-bottom:6px; }
.feature-copy p{ font-size:14.5px; margin-bottom:0; }

.why-visual{
  position:relative; border-radius:var(--radius); overflow:hidden;
  background:linear-gradient(160deg,var(--navy),var(--navy-mid));
  min-height:420px; padding:44px; display:flex; flex-direction:column; justify-content:flex-end;
  color:#fff;
}
.why-visual .ribbon{
  position:absolute; top:26px; right:-46px; background:var(--orange);
  color:#fff; font-family:var(--font-head); font-weight:700; font-size:13px;
  padding:8px 60px; transform:rotate(45deg); box-shadow:0 4px 10px rgba(0,0,0,.2);
}
.why-visual h4{ color:#fff; font-size:22px; margin-bottom:8px; }
.why-visual p{ color:rgba(255,255,255,.78); font-size:14.5px; }

/* =====================================================================
   ABOUT
   ===================================================================== */
.about-media{
  position:relative; border-radius:var(--radius); overflow:hidden;
  background:var(--navy-tint); padding:0; min-height:380px;
  display:flex; align-items:center; justify-content:center;
}
.about-media .logo-wrap{ padding:60px; background:#fff; border-radius:var(--radius); box-shadow:var(--shadow-md); margin:24px; }
.about-checklist li{
  display:flex; align-items:flex-start; gap:12px; margin-bottom:14px; font-size:15px; color:var(--ink); font-weight:500;
}
.about-checklist i{ color:var(--orange); font-size:18px; margin-top:2px; }

/* =====================================================================
   STEPS ("HOW IT WORKS")
   ===================================================================== */
.step-card{ text-align:center; padding:0 10px; position:relative; }
.step-num{
  width:64px; height:64px; border-radius:50%;
  background:var(--white); border:2px solid var(--orange);
  color:var(--orange); font-family:var(--font-head); font-weight:800; font-size:22px;
  display:flex; align-items:center; justify-content:center;
  margin:0 auto 20px;
}
.step-card h3{ font-size:18px; }
.step-card p{ font-size:14.5px; }
.step-connector{
  position:absolute; top:32px; left:calc(50% + 42px); width:calc(100% - 84px);
  height:2px; background:repeating-linear-gradient(to right,var(--orange) 0 8px,transparent 8px 16px);
  z-index:0;
}

/* =====================================================================
   TESTIMONIALS
   ===================================================================== */
.testimonial-card{
  background:var(--white); border:1px solid var(--line); border-radius:var(--radius);
  padding:30px; height:100%;
}
.testimonial-stars{ color:var(--orange); font-size:14px; margin-bottom:14px; letter-spacing:2px; }
.testimonial-quote{ font-size:15px; color:var(--ink); margin-bottom:22px; font-style:italic; }
.testimonial-person{ display:flex; align-items:center; gap:12px; }
.testimonial-avatar{
  width:46px; height:46px; border-radius:50%; background:var(--navy);
  color:#fff; display:flex; align-items:center; justify-content:center;
  font-family:var(--font-head); font-weight:700; font-size:16px;
}
.testimonial-name{ font-family:var(--font-head); font-weight:700; font-size:14.5px; color:var(--navy); }
.testimonial-role{ font-size:12.5px; color:var(--slate); }

/* =====================================================================
   FAQ (accordion)
   ===================================================================== */
.faq-accordion .accordion-item{
  background:var(--white); border:1px solid var(--line); border-radius:10px !important;
  margin-bottom:14px; overflow:hidden;
}
.faq-accordion .accordion-button{
  font-family:var(--font-head); font-weight:600; font-size:15.5px; color:var(--navy);
  padding:20px 24px; box-shadow:none;
}
.faq-accordion .accordion-button:not(.collapsed){ background:var(--orange-tint); color:var(--navy); }
.faq-accordion .accordion-button:focus{ box-shadow:none; border-color:var(--line); }
.faq-accordion .accordion-button::after{ filter:none; }
.faq-accordion .accordion-body{ padding:4px 24px 22px; font-size:14.5px; color:var(--slate); }

/* =====================================================================
   CTA BANNER
   ===================================================================== */
.cta-banner{
  background:linear-gradient(120deg,var(--orange) 0%,var(--orange-dark) 100%);
  border-radius:var(--radius);
  padding:56px 48px;
  color:#fff;
  position:relative; overflow:hidden;
}
.cta-banner h2{ color:#fff; font-size:clamp(24px,3vw,34px); margin-bottom:10px; }
.cta-banner p{ color:rgba(255,255,255,.9); margin-bottom:0; }

/* =====================================================================
   CONTACT
   ===================================================================== */
.contact-info-card{
  background:var(--navy); color:#fff; border-radius:var(--radius); padding:40px 32px; height:100%;
}
.contact-info-card h3{ color:#fff; font-size:20px; }
.contact-info-row{ display:flex; gap:14px; margin-bottom:22px; align-items:flex-start; }
.contact-info-row i{ color:var(--orange); font-size:20px; margin-top:3px; }
.contact-info-row div{ font-size:14.5px; color:rgba(255,255,255,.85); }
.contact-info-row strong{ display:block; color:#fff; font-family:var(--font-head); font-size:14.5px; margin-bottom:3px; }
.contact-socials{ display:flex; gap:10px; margin-top:8px; }
.contact-socials a{
  width:38px; height:38px; border-radius:8px; background:rgba(255,255,255,.1);
  display:flex; align-items:center; justify-content:center; color:#fff;
}
.contact-socials a:hover{ background:var(--orange); }

.contact-form-card{ background:var(--white); border:1px solid var(--line); border-radius:var(--radius); padding:40px 36px; box-shadow:var(--shadow-sm); }
.form-label{ font-family:var(--font-head); font-weight:600; font-size:13.5px; color:var(--navy); margin-bottom:6px; }
.form-control, .form-select{
  border:1px solid var(--line); border-radius:8px; padding:12px 14px; font-size:14.5px;
  background:var(--cream);
}
.form-control:focus, .form-select:focus{
  border-color:var(--orange); box-shadow:0 0 0 3px rgba(243,120,1,.15); background:#fff;
}
#formAlert{ display:none; border-radius:8px; padding:14px 18px; font-size:14.5px; margin-bottom:20px; }
#formAlert.success{ display:block; background:#E7F6EC; color:#1E7A3B; border:1px solid #BEE7CB; }
#formAlert.error{ display:block; background:#FDECEA; color:#B3261E; border:1px solid #F6C6C2; }
.hp-field{ position:absolute; left:-9999px; top:-9999px; }

/* =====================================================================
   FOOTER
   ===================================================================== */
.site-footer{ background:var(--navy-deep); color:rgba(255,255,255,.72); padding:80px 0 0; }
.footer-brand img{ height:42px; margin-bottom:18px; }
.site-footer h5{ color:#fff; font-size:15.5px; margin-bottom:20px; letter-spacing:.02em; }
.footer-links a{ display:block; color:rgba(255,255,255,.65); font-size:14.5px; padding:6px 0; }
.footer-links a:hover{ color:var(--orange); }
.footer-bottom{ border-top:1px solid rgba(255,255,255,.1); margin-top:56px; padding:22px 0; font-size:13px; }
.footer-bottom .row{ align-items:center; }
.footer-socials a{
  width:36px; height:36px; border-radius:50%; background:rgba(255,255,255,.08);
  display:inline-flex; align-items:center; justify-content:center; color:#fff; margin-left:8px;
}
.footer-socials a:hover{ background:var(--orange); }

/* Go-to-top */
.gototop{
  position:fixed; right:24px; bottom:24px; width:46px; height:46px; border-radius:50%;
  background:var(--orange); color:#fff; display:flex; align-items:center; justify-content:center;
  font-size:18px; opacity:0; visibility:hidden; transform:translateY(10px);
  transition:.3s ease; z-index:900; box-shadow:var(--shadow-md);
}
.gototop.active{ opacity:1; visibility:visible; transform:translateY(0); }
.gototop:hover{ background:var(--orange-dark); color:#fff; }

/* =====================================================================
   RESPONSIVE
   ===================================================================== */
@media (max-width: 991px){
  .main-nav, .nav-phone{ display:none; }
  .menu-toggle{ display:flex; }
  .hero{ padding:90px 0 110px; text-align:center; }
  .hero p.lead{ margin-left:auto; margin-right:auto; }
  .hero-actions{ justify-content:center; }
  .hero-trust{ justify-content:center; }
  .section-pad{ padding:70px 0; }
  .step-connector{ display:none; }
  .contact-form-card{ padding:28px 22px; margin-top:24px; }
}
@media (max-width: 575px){
  .cta-banner{ padding:40px 26px; text-align:center; }
  .hero-card-grid{ grid-template-columns:1fr 1fr; }
}
