/* =========================================================
   Beirut Lebanese Foods - Trade Terms Page Sections Only
   Load after theme-default.css
   ========================================================= */

/* =========================
   01. Design 
   ========================= */


.trade-page-template .container{
  width:94%;
  max-width:1400px;
  margin:0 auto;
}

/* =========================
   03. Premium Trade Hero
   ========================= */
.trade-hero-template{
  position:relative;
  min-height:580px;
  display:flex;
  align-items:center;
  overflow:hidden;
  background:
linear-gradient(
    to bottom,
    rgba(0,0,0,.80) 0px,
    rgba(0,0,0,.20) 130px,
    rgba(0,0,0,.12) 180px,
    rgba(0,0,0,.12) 100%
),
    url("../images/hero/trade-hero.webp") center/cover no-repeat;
}

.trade-hero-template:before{
  content:"";
  position:absolute;
  inset:0;
  z-index:1;
  /* تقليل القيم لجعل التداخلات أكثر خفة ونعومة */
  background:
    radial-gradient(circle at 25% 45%,rgba(169,205,46,.10),transparent 15%),
    linear-gradient(to bottom,rgba(0,0,0,.04),rgba(0,0,0,.20));
animation:tradeHeroZoom 18s ease-in-out infinite alternate;
}

@keyframes heroZoom{
  from{transform:scale(1);}
  to{transform:scale(1.07);}
}

.trade-hero-overlay{
  position:absolute;
  inset:0;
  z-index:1;
  background:rgba(0,0,0,.08);
}

.trade-hero-content{
  position:relative;
  z-index:2;
  max-width:860px;
  margin:0 auto;
  text-align:center;
  padding-top:90px;
  transform:translateY(10px);
}

.trade-kicker{
  display:inline-block;
  margin-bottom:10px;
  padding:8px 20px;
  border:1px solid rgba(255,255,255,.25);
  border-radius:50px;
  background:rgba(255,255,255,.12);
  color:#fff;
  font-size:12px;
  font-weight:800;
  letter-spacing:2px;
  text-transform:uppercase;
}

.trade-hero-content h1{
  margin:0 0 20px;
  color:#fff;
  font-family:var(--font-heading);
  font-size:50px;
  line-height:1.08;
  font-weight:700;
  text-shadow:0 15px 40px rgba(0,0,0,.35);
}

.trade-line{
  width:300px;
  height:3px;
  background:var(--blf-green);
  margin:0 auto 26px;
}

.trade-hero-content p{
  max-width:700px;
  margin:0 auto 30px;
  color:#eef3e3;
  font-size:17px;
  line-height:1.8;
}

.trade-hero-content .btn{
  min-height:28px;
  padding:13px 32px;
  border-radius:50px;
  background:var(--blf-green);
  color:#fff;
  font-weight:800;
  letter-spacing:1px;
  animation:floatBtn 3s ease-in-out infinite;
}

@keyframes floatBtn{
  0%,100%{transform:translateY(0);}
  50%{transform:translateY(-6px);}
}
.trade-hero-content .btn:hover{
  background:#fff;
  color:#222;
}

/* =========================
   04. General Section Layout
   ========================= */
.blf-section{
  padding:105px 0;
  position:relative;
}

.blf-section-title{
  max-width:780px;
  margin:0 auto 58px;
  text-align:center;
}

.blf-eyebrow{
  display:inline-block;
  padding:8px 18px;
  border-radius:999px;
  background:rgba(169,205,46,.15);
  color:var(--blf-green-dark);
  font-size:13px;
  font-weight:800;
  letter-spacing:1.4px;
  text-transform:uppercase;
  margin-bottom:16px;
}

.blf-section-title h2,
.trade-intro-card h2,
.payment-content h2,
.docs-content h2{
  font-family:var(--font-heading);
  color:var(--blf-dark);
  font-size:48px;
  line-height:1.15;
  font-weight:700;
  margin-bottom:16px;
}

.blf-section-title p,
.trade-intro-card p,
.payment-content p,
.docs-content p{
  font-size:16px;
  line-height:1.85;
  color:var(--blf-text);
}

/* =========================
   05. Intro Section
   ========================= */
.trade-intro-section{
  background:var(--blf-cream);
}

.trade-intro-card{
  background:#fff;
  max-width:980px;
  margin:0 auto;
  border-radius:10px;
  padding:60px 70px;
  box-shadow:var(--blf-shadow);
  border-top:5px solid var(--blf-green);
  text-align:center;
}

/* =========================
   06. Pricing & Currency Cards
   ========================= */
.trade-quick-section{
  background:#fff;
}

.quick-terms-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:28px;
}

.quick-term-card{
  background:#fff;
  border:1px solid var(--blf-border);
  border-radius:10px;
  padding:40px 32px;
  text-align:center;
  box-shadow:0 16px 45px rgba(0,0,0,.06);
  transition:.35s ease;
}

.quick-term-card:hover{
  transform:translateY(-8px);
  box-shadow:0 25px 65px rgba(0,0,0,.11);
}

.quick-icon{
  width:78px;
  height:78px;
  margin:0 auto 24px;
  border-radius:50%;
  background:rgba(169,205,46,.15);
  color:var(--blf-green-dark);
  display:flex;
  align-items:center;
  justify-content:center;
}

.quick-icon i{
  font-size:30px;
}

.quick-term-card h3{
  font-family:var(--font-heading);
  color:var(--blf-dark);
  font-size:28px;
  margin-bottom:14px;
}

.quick-term-card p{
  line-height:1.8;
}

.quick-term-card.featured{
  background:linear-gradient(135deg,var(--blf-green-dark),var(--blf-green));
}

.quick-term-card.featured h3,
.quick-term-card.featured p{
  color:#fff;
}

.quick-term-card.featured .quick-icon{
  background:#fff;
  color:var(--blf-green-dark);
}

/* =========================
   07. Incoterms Cards & Table
   ========================= */
.incoterms-section{
  background:var(--blf-cream);
}

.incoterms-cards{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:30px;
  margin-bottom:45px;
}

.incoterm-card{
  background:#fff;
  border-radius:10px;
  padding:44px;
  border:1px solid var(--blf-border);
  box-shadow:0 18px 50px rgba(0,0,0,.07);
  position:relative;
  overflow:hidden;
}

.incoterm-card:before{
  content:"";
  position:absolute;
  left:0;
  top:0;
  width:6px;
  height:100%;
  background:var(--blf-green);
}

.incoterm-card.highlighted{
  background:linear-gradient(135deg,#25221d,#3d4f1d);
}

.incoterm-card.highlighted h3,
.incoterm-card.highlighted p,
.incoterm-card.highlighted .transfer-point{
  color:#fff;
}

.incoterm-code{
  color:var(--blf-green);
  font-size:48px;
  font-weight:900;
  line-height:1;
  margin-bottom:18px;
}

.incoterm-card h3{
  font-family:var(--font-heading);
  font-size:32px;
  color:var(--blf-dark);
  margin-bottom:14px;
}

.incoterm-card p{
  line-height:1.8;
  margin-bottom:22px;
}

.transfer-point{
  display:flex;
  gap:10px;
  align-items:center;
  color:var(--blf-dark);
  font-weight:700;
}

.transfer-point i{
  color:var(--blf-green);
}

.trade-table-wrap{
  background:#fff;
  border-radius:10px;
  overflow:hidden;
  box-shadow:0 18px 50px rgba(0,0,0,.08);
}

.trade-table{
  width:100%;
  border-collapse:collapse;
  margin:0;
}

.trade-table th{
  background:var(--blf-dark);
  color:#fff;
  padding:20px;
  text-align:left;
  text-transform:uppercase;
  letter-spacing:.8px;
  font-size:13px;
}

.trade-table td{
  padding:22px 20px;
  border-bottom:1px solid #eee;
  color:#555;
}

.trade-table tbody tr:nth-child(even){
  background:#fdfcf6;
}

/* =========================
   08. Payment Protocol Section
   ========================= */
.payment-section{
  background:#fff;
}

.payment-grid{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:60px;
  align-items:center;
}

.payment-card{
  background:var(--blf-cream);
  border-radius:10px;
  padding:44px;
  border:1px solid var(--blf-border);
  box-shadow:var(--blf-shadow);
}

.payment-step{
  display:flex;
  gap:24px;
  align-items:flex-start;
  padding:24px 0;
  border-bottom:1px solid rgba(120,145,49,.18);
}

.payment-step:first-child{
  padding-top:0;
}

.payment-step span{
  width:76px;
  height:76px;
  border-radius:50%;
  background:var(--blf-green);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:24px;
  font-weight:900;
  flex-shrink:0;
}

.payment-step h3{
  font-family:var(--font-heading);
  color:var(--blf-dark);
  font-size:28px;
  margin-bottom:8px;
}

.payment-step p{
  line-height:1.75;
  margin:0;
}

.security-note{
  display:flex;
  gap:18px;
  background:#fff;
  border-radius:10px;
  padding:22px;
  margin-top:26px;
}

.security-note i{
  color:var(--blf-green-dark);
  font-size:28px;
}

.security-note p{
  margin:0;
  line-height:1.75;
}

/* =========================
   09. Cargo Integrity Cards
   ========================= */
.cargo-section{
  background:var(--blf-cream);
}

.cargo-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:28px;
}

.cargo-card{
  background:#fff;
  border-radius:10px;
  padding:42px 32px;
  border:1px solid var(--blf-border);
  box-shadow:0 16px 45px rgba(0,0,0,.06);
  transition:.35s ease;
}

.cargo-card:hover{
  transform:translateY(-8px);
}

.cargo-card i{
  width:72px;
  height:72px;
  border-radius:18px;
  background:linear-gradient(135deg,var(--blf-green-dark),var(--blf-green));
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:30px;
  margin-bottom:24px;
}

.cargo-card h3{
  font-family:var(--font-heading);
  color:var(--blf-dark);
  font-size:27px;
  margin-bottom:14px;
}

.cargo-card p{
  line-height:1.8;
}

/* =========================
   10. Documentation & Labeling CTA
   ========================= */
.docs-section{
  background:#fff;
}

.docs-box{
  display:grid;
  grid-template-columns:auto 1fr auto;
  gap:34px;
  align-items:center;
  background:linear-gradient(135deg,#25221d,#3d4f1d);
  border-radius:10px;
  padding:54px;
  box-shadow:var(--blf-shadow);
}

.docs-icon{
  width:92px;
  height:92px;
  border-radius:50%;
  background:#fff;
  color:var(--blf-green-dark);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:36px;
}

.docs-content h2,
.docs-content p{
  color:#fff;
}

.docs-content .blf-eyebrow{
  background:rgba(255,255,255,.12);
  color:#fff;
}

.docs-btn{
  white-space:nowrap;
  background:var(--blf-green);
  color:#fff;
  padding:15px 30px;
  border-radius:50px;
  text-decoration:none;
  text-transform:uppercase;
  font-weight:800;
}

.docs-btn:hover{
  background:#fff;
  color:#222;
}

/* =========================
   11. Responsive Layout
   ========================= */
@media(max-width:1199px){
  .trade-hero-content h1{
    font-size:54px;
  }
}

@media(max-width:991px){
  .trade-hero-template{
    min-height:500px;
  }

  .trade-hero-content{
    padding-top:80px;
    transform:translateY(25px);
  }

  .trade-hero-content h1{
    font-size:40px;
  }

  .trade-hero-content p{
    font-size:15px;
  }

  .blf-section{
    padding:75px 0;
  }

  .quick-terms-grid,
  .incoterms-cards,
  .payment-grid,
  .cargo-grid,
  .docs-box{
    grid-template-columns:1fr;
  }

  .docs-box{
    text-align:center;
  }

  .docs-icon{
    margin:0 auto;
  }
}

@media(max-width:575px){
  .trade-page-template .container{
    width:92%;
  }

  .trade-hero-template{
    min-height:460px;
  }

  .trade-hero-content h1{
    font-size:34px;
  }

  .trade-kicker{
    font-size:11px;
    padding:8px 16px;
  }

  .trade-intro-card,
  .payment-card,
  .incoterm-card,
  .docs-box{
    padding:32px 22px;
  }

  .blf-section-title h2,
  .trade-intro-card h2,
  .payment-content h2,
  .docs-content h2{
    font-size:34px;
  }

  .trade-table{
    min-width:680px;
  }

  .trade-table-wrap{
    overflow-x:auto;
  }

  .payment-step{
    flex-direction:column;
  }
}
