:root{
      --bg: #0b0d10;
      --card: #ffffff;
      --text: #0f172a;
      --muted: rgba(255,255,255,.78);
      --muted2: rgba(15,23,42,.62);
      --line: rgba(15,23,42,.10);
      --accent: #1176BD;
      --accentText: white;
      --shadow: 0 18px 40px rgba(0,0,0,.18);
      --radius-xl: 26px;
      --radius-lg: 18px;
      --radius-md: 14px;
      --max: 1300px;
       --pageBg: #f9f9f9; 
         --accentY: #f5ef69; 
    }

    *{ box-sizing:border-box; }
    html,body{ height:100%;
    scroll-behavior: smooth; }
    body{
      margin:0;
      font-family: Inter, ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
      background: #eee;
      color: var(--text);
    }

    .page{
  min-height:100vh;
  display:flex;
  justify-content:center;
  padding: 22px 18px 34px;
  position: relative;
  background:#f9f9f9;                 
  overflow-x: hidden;
}
.wrap{
      width:min(var(--max), 100%);
      position:relative;
      padding-top: 6px;
      z-index: 2; 
    }
/* Top Nav */
    .nav{
      height:92px;
      background: rgba(255,255,255,.92);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(0,0,0,.05);
      border-radius: 22px;
      box-shadow: 0 8px 24px rgba(0,0,0,.10);
      display:flex;
      align-items:center;
      justify-content:space-between;
      padding: 0 18px 0 18px;
    }

    .brand{
  display:flex;
  align-items:center;
  gap:10px;
}

.brand-logo{
  height:82px;          /* adjust if needed */
  width:auto;
  object-fit:contain;
}

    
    .nav-links{
      display:flex;
      gap:28px;
      align-items:center;
      font-size:14px;
      color: rgba(15,23,42,.70);
    }
    .nav-links a{
      text-decoration:none;
      color: inherit;
      padding: 10px 4px;
      border-radius: 10px;
      transition: .2s ease;
    }
    .nav-links a:hover{
      color: rgba(15,23,42,.95);
      background: rgba(15,23,42,.05);
    }

    .nav-cta{
      display:flex;
      align-items:center;
      gap:14px;
      font-size:14px;
      color: rgba(15,23,42,.65);
    }
    
    
    /***ABOUT US ***/

    /* ===== SECTION WRAP ===== */
.triple-sec{
  background: var(--pageBg);
  padding: 70px 18px 70px;
}

.triple-wrap{
  width: min(var(--max), 100%);
  margin: 0 auto;
}

/* Top row */
.triple-top{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap: 20px;
  margin-bottom: 26px;
}

.triple-title{
  margin: 0;
  font-size: clamp(46px, 5.2vw, 86px);
  line-height: 1.02;
  letter-spacing: -0.04em;
  font-weight: 500;
  color: #0f172a;
}
.about-t{
  margin-top: 90px;
}
.btn-services{
      display:inline-flex;
      align-items:center;
      justify-content:space-between;
      gap: 12px;
      min-width: 235px;
      padding: 14px 18px;
      border-radius: 999px;
      background: var(--accent);
      color:var(--accentText);
      text-decoration:none;
      font-weight: 600;
      box-shadow: 0 18px 34px rgba(0,0,0,.20);
      transition: transform .12s ease;
    }
    .btn-services:hover{ transform: translateY(-1px); }
    .arrow{
      width: 34px;
      height: 34px;
      border-radius: 999px;
      display:grid;
      place-items:center;
      background: rgba(255,255,255,.25);
      border: 1px solid rgba(0,0,0,.10);
      color: var(--accentText);
      backdrop-filter: blur(8px);
    }
    .arrow svg{ width:18px; height:18px; }


/* Grid */
.triple-grid{
  display:grid;
  grid-template-columns: 1.55fr 1fr 1.05fr;
  gap: 22px;
  align-items: stretch;
}

.t-card{
  background: #f9f9f9;
  border-radius: var(--radius-xl);
  
  overflow:hidden;
  border: 1px solid rgba(0,0,0,.05);
}

/* LEFT PHOTO CARD */
.t-card--photo{
  position: relative;
  min-height: 420px;

  /* replace with your sea image */
  background:
    linear-gradient(180deg, rgba(255,255,255,.22), rgba(0,0,0,.38)),
    url("denys-nevozhai-7nrsVjvALnA-unsplash.jpg") center/cover no-repeat;
}

.t-photo-overlay{
  position:absolute;
  inset:0;
  background: linear-gradient(180deg, rgba(0,0,0,.10), rgba(0,0,0,.55) 70%);
}

.t-photo-content{
  position:absolute;
  left: 38px;
  right: 38px;
  bottom: 34px;
  color: #fff;
}

.t-photo-content h3{
  margin: 0 0 28px;
  font-size: clamp(20px, 2.2vw, 30px);
  line-height: 1.08;
  font-weight: 500;
  letter-spacing: -0.02em;
  
}

.t-photo-content p{
  margin: 0;
  max-width: 560px;
  color: rgba(255,255,255,.78);
  font-size: 13.5px;
  line-height: 1.55;
}

/* MIDDLE STACK CARD */
.t-card--stack{
  padding: 24px;
}

.t-tags{
  display:flex;
  gap: 16px;
  align-items:center;
  margin-bottom: 18px;
  color: rgba(15,23,42,.75);
  font-size: 14px;
  font-weight: 500;
}

.t-tag{
  display:inline-flex;
  align-items:center;
  gap: 10px;
}
.t-tag i{
  width: 10px;
  height: 10px;
  border-radius: 4px;
  background: var(--accent);
  display:inline-block;
}

.t-stack{
  display:flex;
  flex-direction:column;
  gap: 12px;
}

.t-img{
  height: 96px;
  border-radius: 14px;
  background: #e5e7eb;
  border: 1px solid rgba(15,23,42,.08);
  background-size: cover;
  background-position: center;
}

/* replace with your 3 images */
.t-img-1{ background-image: url("road.jpg"); }
.t-img-2{ background-image: url("ship.jpg"); }
.t-img-3{ background-image: url("air.jpg"); }

/* RIGHT YELLOW CARD */
.t-card-list{
  background: var(--accent);
  padding: 24px;
  display: flex;
  justify-content: center;   /* vertical center */
  align-items: center;       /* horizontal center */
  border: 0;
  border-radius: var(--radius-xl);
}



/* LEFT LIST */
.about-list{
 
  display:flex;
  flex-direction:column;
  gap:14px;
}
.about-item{
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 999px;
  padding: 10px 18px;
  display:flex;
  align-items:center;
  gap:16px;
  box-shadow: 0 10px 26px rgba(0,0,0,.06);
}
.about-item .num{
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: var(--accent);
  display:grid;
  place-items:center;
  font-weight: 800;
  color:var(--accentText);
}
.about-item .txt{
  font-weight: 650;
  color: var(--text);
}
/* RESPONSIVE */
@media (max-width: 1100px){
  .triple-grid{
    grid-template-columns: 1fr;
  }
  .t-card--yellow{ order: 3; }
  .t-card--stack{ order: 2; }
  .t-card--photo{ order: 1; min-height: 420px; }
}

@media (max-width: 520px){
  .triple-top{
    flex-direction: column;
    align-items:flex-start;
  }
  .triple-btn{ margin-top: 8px; }
  .t-photo-content{ left: 18px; right: 18px; bottom: 18px; }
  .t-card--stack{ padding: 18px; }
  .t-card--yellow{ padding: 18px; }
}
/*section1*/
.why-sec{
  background: var(--pageBg);
  padding: 70px 18px 90px;
}

.why-wrap{
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 70px;
  align-items: start;
}

.why-kicker{
  display:flex;
  align-items:center;
  gap:10px;
  color: rgba(15,23,42,.7);
  font-size: 14px;
  margin-bottom: 22px;
}

.why-dot{
  width: 12px;
  height: 12px;
  border-radius: 4px;
  background: var(--accent);
}

.why-title{
  margin: 0;
  font-size: clamp(38px, 3.1vw, 56px);
  line-height: 1.15;
  letter-spacing: -0.04em;
  font-weight: 600;
}

.why-title .t-muted{ color: rgba(15,23,42,.42); font-weight: 200; }
.why-title .t-strong{ color: rgba(15,23,42,.96); font-weight: 650; }

.why-sub{
  margin: 26px 0 0;
  max-width: 620px;
  color: rgba(15,23,42,.60);
  font-size: 14px;
  line-height: 1.7;
}

/* RIGHT STATS */
/* RIGHT STATS (match screenshot) */
.why-right{
  display:grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 110px;   /* wide horizontal spacing like screenshot */
  row-gap: 78px;       /* vertical spacing like screenshot */
  align-content:start;
  justify-content:start;
}

.stat{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
}

.stat-num{
  font-size: clamp(72px, 6.2vw, 120px);
  line-height: .88;
  letter-spacing: -0.06em;
  font-weight: 400; /* key: lighter like reference */
  color: rgba(15,23,42,.95);
}

.stat-label{
  margin-top: 18px;
  font-size: 15px;
  line-height: 1.4;
  color: rgba(15,23,42,.55);
  max-width: 260px;
}
@media (max-width: 980px){
  .why-wrap{
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .why-right{
    column-gap: 50px;
    row-gap: 50px;
  }
}

@media (max-width: 560px){
  .why-right{
    grid-template-columns: 1fr;
  }
}

/**SECTION 2**/

/* COMMITMENT SECTION */
.commit-sec{
  background: var(--pageBg);
  padding: 80px 18px 90px;
}

.commit-wrap{
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 80px;
  align-items: start;
}

/* LEFT */
.commit-kicker{
  display:flex;
  align-items:center;
  gap: 12px;
  color: rgba(15,23,42,.75);
  font-size: 14px;
  font-weight: 600;
}

.commit-dot{
  width: 12px;
  height: 12px;
  background: var(--accent);
  border-radius: 4px;
}

.commit-title{
  margin: 22px 0 0;
  font-size: clamp(44px, 3.4vw, 64px);
  line-height: 1.15;
  letter-spacing: -0.05em;
  font-weight: 300;
}

.commit-title .t-muted{ color: rgba(15,23,42,.42); font-weight: 200; }
.commit-title .t-strong{ color: rgba(15,23,42,.96); font-weight: 650; }

.commit-sub{
  margin: 26px 0 0;
  max-width: 640px;
  color: rgba(15,23,42,.58);
  font-size: 15px;
  line-height: 1.7;
}

.commit-rule{
  margin-top: 26px;
  height: 1px;
  background: rgba(15,23,42,.10);
  width: min(720px, 100%);
}

/* bullets */
.commit-points{
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
  display:flex;
  flex-direction:column;
  gap: 16px;
}

.commit-points li{
  display:flex;
  align-items:flex-start;
  gap: 12px;
  color: rgba(15,23,42,.82);
  font-size: 15px;
  line-height: 1.6;
}

.commit-points b{
  color: rgba(15,23,42,.95);
  font-weight: 700;
}

.p-ico{
  font-size: 18px;
  line-height: 1;
  margin-top: 3px;
}



/* RIGHT IMAGE */
.commit-right{
  display:flex;
  justify-content:flex-end;
}

.commit-img{
  width: 100%;
  max-width: 740px;
  height: 520px;
  border-radius: 22px;
  background: #e5e7eb;
  background-image: url("warehouse.jpg"); /* <-- change */
  background-size: cover;
  background-position: center;
  
}

/* responsive */
@media (max-width: 980px){
  .commit-wrap{
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .commit-right{ justify-content:flex-start; }
  .commit-img{ height: 420px; }
}

@media (max-width: 520px){
  .commit-actions{ flex-direction: column; align-items:flex-start; }
  .commit-img{ height: 320px; }
}

/*** SECTION 3 ***/
.trust-sec{
  background: var(--pageBg);
  padding: 90px 18px 110px;
}

.trust-wrap{
  width: min(var(--max), 100%);
  margin: 0 auto;
}

/* HEADER */
.trust-head{
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 60px;
  align-items: start;
}

.trust-title{
  margin: 0;
  font-size: clamp(44px, 3.4vw, 64px);
  line-height: 1.1;
  letter-spacing: -0.04em;
  font-weight: 600;
}

.trust-title .t-strong{
  color: rgba(15,23,42,.95);
}

.trust-title .t-muted{
  color: rgba(15,23,42,.45);
  font-weight: 300;
}

.trust-sub{
  margin-top: 10px;
  max-width: 420px;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(15,23,42,.6);
}

/* IMAGE BOX */
.trust-image-box{
  margin-top: 70px;
  background: #fff;
  border-radius: var(--radius-xl);
  
  overflow: hidden;
}

.trust-image-box img{
  width: 100%;
  height: 420px;
  display: block;
  object-fit: cover;
}





/*** SERVICES***/
/* Hero */
    .hero{
      margin-top: 18px;
      color: #fff;
      position:relative;
      padding: 28px 6px 0;
      
    }
    .hero h2{
      margin:0 0 16px;
      font-size:  clamp(55px, 27.008px, 66px);
      line-height: 1.15;
      font-weight: 500;
      letter-spacing: -0.02em;
     color: #0F172A;
     
     
    }
    /* Cards panel */
    .panel{
      margin-top: 18px;
      background: rgba(255,255,255,.96);
      border: 1px solid rgba(0,0,0,.05);
      border-radius: var(--radius-xl);
      
      overflow:hidden;
    }

    .cards{
      display:grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 0;
      padding: 42px 42px 0;
    }

    .card{
      background: #fff;
      border: 1px solid rgba(15,23,42,.06);
      border-radius: 18px;
      padding: 22px 22px 18px;
      min-height: 350px;
      display:flex;
      flex-direction:column;
      justify-content:space-between;
      position:relative;
      overflow:hidden;
    }
    .cards .card{ margin: 0 12px 22px; }

    .card-top{
      display:flex;
      flex-direction:column;
      gap: 12px;
    }

    .icon{
      width: 46px;
      height: 46px;
      border-radius: 14px;
      background: rgba(15,23,42,.04);
      display:grid;
      place-items:center;
      border: 1px solid rgba(15,23,42,.06);
        color: var(--accent);

    }
    .icon svg{ width: 24px; height: 24px; opacity:.9; }

    .card h3{
      margin:0;
      font-size: 22px;
      font-weight: 500;
      letter-spacing: -0.02em;
      color: #0f172a;
    }

    .card p{
      margin:0;
      color: var(--muted2);
      line-height: 1.55;
      font-size: 14px;
      max-width: 92%;
    }

    .card-link{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap: 14px;
      color: #0f172a;
      text-decoration:none;
      font-weight: 600;
      margin-top: 14px;
      padding-top: 14px;
      border-top: 1px solid rgba(15,23,42,.12);
    }

    .card-link .mini-arrow{
      width: 26px; height: 26px;
      border-radius: 10px;
      display:grid; place-items:center;
      background: rgba(15,23,42,.05);
      border: 1px solid rgba(15,23,42,.06);
    }
    .card-link svg{ width: 16px; height: 16px; }

    /* Image strip at bottom of each card */
    .card-media{
      margin: 14px -22px -18px;
      height: 160px;
      background: #e5e7eb;
      border-top: 1px solid rgba(15,23,42,.06);
      background-size: cover;
      background-position: center;
    }

    .media-1{ background-image:url("friet.png") }
    .media-2{ background-image:url("crossborder.png"); }
    .media-3{ background-image:url("redistribution.png"); }
    .media-4{ background-image:url("intermodal.png"); }
    .media-5{ background-image:url("special\ product.png"); }
.media-6{ background-image:url("hazar.png"); }


    /* Small "Made in Framer" badge (optional) */
    .badge{
  padding: 22px 42px 32px;     /* aligns with cards padding */
  display: flex;
  justify-content: flex-end;   /* button on right side */
  background: transparent;
  justify-content: center;
}


/*** CONTACT ****/

/* CONTACT SECTION */
.contact-sec{
  background: var(--pageBg);
  padding: 70px 18px 90px;
}

.contact-wrap{
  width: min(var(--max), 100%);
  margin: 0 auto;
}

.contact-title{
  margin: 0 0 34px;
  font-size: clamp(46px, 5vw, 84px);
  line-height: 1.02;
  letter-spacing: -0.04em;
  font-weight: 500;
  color: #0f172a;
}

.contact-grid{
  display: grid;
  grid-template-columns: 1.25fr .9fr;
  gap: 26px;
  align-items: stretch;
}

/* LEFT CARD */
.contact-form-card{
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(0,0,0,.05);
  border-radius: var(--radius-xl);
 
  padding: 34px;
}

.contact-form{
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-row{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.field .label{
  display: block;
  font-size: 13px;
  color: rgba(15,23,42,.55);
  margin: 0 0 10px;
}

.input-wrap{
  position: relative;
}

.input-wrap input,
.input-wrap select,
.input-wrap textarea{
  width: 100%;
  border: 0;
  outline: none;
  background: rgba(15,23,42,.035);
  border: 1px solid rgba(15,23,42,.08);
  border-radius: 999px;
  padding: 16px 18px;
  font-size: 14px;
  color: #0f172a;
}

.input-wrap textarea{
  border-radius: 22px;
  padding: 16px 18px;
  resize: vertical;
  min-height: 140px;
}

.input-ico{
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  border-radius: 10px;
  border: 1px solid rgba(15,23,42,.10);
  background: rgba(255,255,255,.72);
  display: grid;
  place-items: center;
  font-weight: 700;
  color: rgba(15,23,42,.55);
}

.select-ico{
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: rgba(15,23,42,.55);
}

.input-wrap select{
  appearance: none;
  padding-right: 44px;
}

.contact-submit{
  margin-top: 10px;
  width: 100%;
  border: 0;
  background: var(--accent);
  color: #0f172a;
  border-radius: 999px;
  padding: 18px 22px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  
}

    .contact-submit:hover{ transform: translateY(-1px); box-shadow: 0 14px 28px rgba(245,239,105,.32); }

.submit-ico{
  width: 34px;
  height: 34px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.35);
  border: 1px solid rgba(15,23,42,.10);
}
.submit-ico svg{ width: 18px; height: 18px; }

/* RIGHT CARD */
.contact-info-card{
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative;
  padding: 28px;
  color: #fff;

  /* Replace with your image */
  background:
    linear-gradient(180deg, rgba(17,118,189,.12), rgba(0,0,0,.50) 58%, rgba(0,0,0,.72)),
    url("scene-with-photorealistic-logistics-operations-proceedings.jpg") center/cover no-repeat;
}

.info-kicker{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: rgba(255,255,255,.90);
  margin-bottom: 14px;
}

.info-kicker .k-dot{
  width: 10px;
  height: 10px;
  border-radius: 3px;
  background: var(--accent);
  box-shadow: 0 12px 20px rgba(245,239,105,.20);
}

.info-title{
  margin: 0 0 14px;
  font-size: clamp(26px, 2.4vw, 36px);
  line-height: 1.08;
  letter-spacing: -0.03em;
  font-weight: 600;
}

.info-sub{
  margin: 0;
  font-size: 13.5px;
  line-height: 1.55;
  color: rgba(255,255,255,.75);
  max-width: 420px;
}

.office{
  margin-top: 154px;
}

.office-title{
  margin: 0 0 12px;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.office-row{
  display: flex;
  gap: 10px;
  align-items: center;
  margin-top: 10px;
  color: rgba(255,255,255,.85);
  font-size: 13.5px;
}

.o-ico{
  width: 30px;
  height: 30px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.12);
  flex: 0 0 auto;
}

/* RESPONSIVE */
@media (max-width: 980px){
  .contact-grid{
    grid-template-columns: 1fr;
  }
  .contact-title{
    font-size: clamp(38px, 7vw, 66px);
  }
  .contact-form-card{ padding: 26px; }
  .form-row{ grid-template-columns: 1fr; }
  .contact-info-card{ min-height: 420px; }
}

@media (max-width: 520px){
  .contact-form-card{ padding: 18px; border-radius: 20px; }
  .contact-info-card{ padding: 18px; border-radius: 20px; }
  .input-wrap input, .input-wrap select{ padding: 14px 16px; }
}


/*common section 2*/

/* CTA SECTION */
.cta-sec{
  background: var(--pageBg);
  padding: 70px 18px 90px;
}

.cta-wrap{
  width: min(var(--max), 100%);
  margin: 0 auto;
}

.cta-card{
  display:grid;
  grid-template-columns: 46% 54%;
  
  overflow:hidden;
  min-height: 520px;
  background: rgba(255,255,255,.96);
      border: 1px solid rgba(0,0,0,.05);
      border-radius: var(--radius-xl);
}


/* LEFT */
.cta-left{
  background: var(--accent);
  display:grid;
  place-items:center;
  padding: 40px;
}

.cta-left-image{
  width: min(420px, 85%);
  aspect-ratio: 1 / 1;          /* keeps it square like screenshot block */
  border-radius: 28px;          /* optional, looks premium */
  background: url("aeroplaine.png") center / cover no-repeat;
  
}


/* RIGHT */
.cta-right{
  padding: 70px 70px;
}

.cta-title{
  margin:0;
  font-size: clamp(38px, 3.1vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  font-weight: 650;
}
.cta-muted{ color: rgba(15,23,42,.45); font-weight: 500; }
.cta-strong{ color: var(--text); font-weight: 800; }

.cta-sub{
  margin: 18px 0 0;
  max-width: 520px;
  color: rgba(15,23,42,.55);
  line-height: 1.6;
  font-size: 14px;
}

/* ACTIONS */
.cta-actions{
  display:flex;
  align-items:center;
  gap: 26px;
  margin-top: 26px;
}




.cta-link{
  display:inline-flex;
  align-items:center;
  gap: 12px;
  color: var(--text);
  text-decoration:none;
  font-weight: 650;
  padding-bottom: 6px;
  border-bottom: 2px solid rgba(15,23,42,.22);
}
.cta-link-ico{
  width: 34px;
  height: 34px;
 
  display:grid;
  place-items:center;
  
 
}
.cta-link-ico svg{ width: 16px; height: 16px; }

/* POINTS */
.cta-points{
  list-style:none;
  padding:0;
  margin: 26px 0 0;
  display:flex;
  flex-direction:column;
  gap: 10px;
  color: rgba(15,23,42,.75);
  font-size: 14px;
  font-weight: 600;
}

.cta-points li{
  display:flex;
  align-items:center;
  gap: 10px;
}

.p-ico{
  width: 22px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
}

/* RESPONSIVE */
/* RESPONSIVE */
@media (max-width: 980px){
  .cta-card{
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .cta-right{
    padding: 40px 26px;
  }
  .cta-left{
    padding: 46px 18px;
  }
  .cta-logo{
    width: min(360px, 72%);
  }
  .cta-actions{
    flex-wrap: wrap;
    gap: 14px;
  }
  .cta-btn{
    min-width: 100%;
  }
}

@media (max-width: 520px){
  .cta-title{ font-size: 34px; }
  .cta-sub{ font-size: 13.5px; }
}


/* FOOTER*/

/* FOOTER */
.footer-sec{
  background:#f9f9f9;
  padding: 90px 18px 40px;
  
}

.footer-wrap{
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
}

/* LEFT */
.footer-cols{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 90px;
}

.footer-col h4{
  margin: 0 0 18px;
  font-size: 14px;
  font-weight: 600;
  color: rgba(15,23,42,.6);
}

.footer-col ul{
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col li{
  margin-bottom: 14px;
}

.footer-col a{
  text-decoration: none;
  color: var(--text);
  font-size: 15px;
}

.footer-mail{
  display: inline-block;
  margin-top: 6px;
  font-weight: 500;
}
.footer-phone {
  font-weight: 700;
}
.footer-address {
  gap: 15px;
  line-height: 1.5;
  font-weight: 500;
}
.footer-social{
  display: flex;
  gap: 18px;
  margin-top: 18px;
}


.footer-social a{
  color: var(--text);
  opacity: .85;
  transition: opacity .2s ease, transform .2s ease;
}
.footer-social a:hover{
  opacity: 1;
  transform: translateY(-2px);
}
/* RIGHT */
.footer-cta{
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.footer-brand{
  display:flex;
  align-items:center;
  gap:12px;
}

.footer-logo{
  height:106px;          /* footer logo slightly bigger */
  width:auto;
  object-fit:contain;
}



.footer-cta h3{
  margin: 0;
  font-size: clamp(44px, 27.008px, 58px);
  line-height: 1.15;
  font-weight: 450;
}

.footer-form{
  display: flex;
  align-items: center;
  background: #f5f5f5;
  border-radius: 999px;
  padding: 19px 14px;
  max-width: 420px;
}

.footer-form input{
  border: none;
  background: transparent;
  outline: none;
  flex: 1;
  font-size: 14px;
}

.footer-form button{
  border: none;
  background: transparent;
  font-size: 22px;
  cursor: pointer;
}

/* BOTTOM */
.footer-bottom{
  margin-top: 60px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: rgba(15,23,42,.55);

  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 18px;
  padding-right: 18px;
}


/* RESPONSIVE */
@media (max-width: 900px){
  .footer-wrap{
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .footer-cols{
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 520px){
  .footer-cols{
    grid-template-columns: 1fr;
  }
  .footer-bottom{
    flex-direction: column;
    gap: 10px;
  }
}

@media (max-width: 980px){
  .nav-links{ display:none;}
}
 @media (max-width: 520px){
      .nav{ height:auto; padding: 14px; gap: 14px; flex-wrap:wrap; }
      .nav-cta{ width:100%; justify-content:space-between; }
      .hero-left h2{ font-size: 26px; }
      .btn-services{ width:100%; min-width: unset; }
    }





    /* HAMBURGER (hidden on desktop) */
.nav-burger{
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,.08);
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(10px);
  cursor: pointer;
  padding: 0;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex-direction: column;
  box-shadow: 0 8px 18px rgba(0,0,0,.08);
}

.nav-burger span{
  width: 20px;
  height: 2px;
  background: #0f172a;
  border-radius: 999px;
  display: block;
  transition: transform .2s ease, opacity .2s ease;
}

/* show burger only on mobile */
.nav-burger{ display:none; }

/* backdrop */
.nav-backdrop{
  position: fixed;
  inset: 0;
  background: rgba(15,23,42,.42);
  backdrop-filter: blur(2px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease;
  z-index: 50;
}

/* mobile menu drawer */
.nav-mobile{
  position: fixed;
  top: 18px;
  right: 18px;
  width: min(360px, calc(100% - 36px));
  background: rgba(255,255,255,.98);
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 20px;
  box-shadow: 0 26px 70px rgba(0,0,0,.22);
  padding: 14px;
  transform: translateY(-8px) scale(.98);
  opacity: 0;
  pointer-events: none;
  transition: transform .2s ease, opacity .2s ease;
  z-index: 60;
}

/* header row */
.nav-mobile-head{
  display:flex;
  align-items:center;
  justify-content: space-between;
  padding: 6px 8px 10px;
  border-bottom: 1px solid rgba(15,23,42,.08);
  margin-bottom: 10px;
}
.nav-mobile-title{
  font-weight: 700;
  color: rgba(15,23,42,.92);
}
.nav-close{
  border: 0;
  background: rgba(15,23,42,.06);
  width: 36px;
  height: 36px;
  border-radius: 12px;
  cursor: pointer;
  font-size: 16px;
}

/* menu links */
.nav-mobile-links{
  display:flex;
  flex-direction: column;
  gap: 6px;
  padding: 8px 2px 12px;
}

.nav-mobile-links a{
  text-decoration: none;
  color: rgba(15,23,42,.86);
  font-weight: 650;
  padding: 12px 12px;
  border-radius: 14px;
  background: rgba(15,23,42,.03);
  border: 1px solid rgba(15,23,42,.06);
}
.nav-mobile-links a:hover{
  background: rgba(15,23,42,.06);
}

/* CTA inside menu */
.nav-mobile-cta{
  margin-top: 10px;
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--accentText);
  text-decoration:none;
  font-weight: 700;
  box-shadow: 0 18px 34px rgba(0,0,0,.18);
}

/* hamburger button style */
.nav-burger{
  width: 46px;
  height: 46px;
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,.08);
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
  cursor: pointer;
  padding: 0;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex-direction: column;
  box-shadow: 0 10px 20px rgba(0,0,0,.12);
}
.nav-burger span{
  width: 20px;
  height: 2px;
  background: #0f172a;
  border-radius: 999px;
  display:block;
}

/* MOBILE RULES */
@media (max-width: 980px){
  .nav-links{ display:none; }

  /* HIDE desktop CTA fully */
  .nav-cta{ display:none; }

  /* Show burger */
  .nav-burger{ display:inline-flex; }
}

/* OPEN STATE */
.nav.open + .nav-burger{} /* (ignore, just to avoid editor warnings) */

/* OPEN STATE (FIXED) */
.nav.open-menu .nav-mobile{
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.nav.open-menu .nav-backdrop{
  opacity: 1;
  pointer-events: auto;
}
/* keep header & overlays on top of hero */
header.nav{
  position: relative;
  z-index: 9999;
}

/* menu & backdrop always on top */
.nav-backdrop{ z-index: 9998; }
.nav-mobile{ z-index: 9999; }

/* optional: keep hero under */
.hero, .panel{
  position: relative;
  z-index: 1;
}
.page::before{ pointer-events:none; }

header.nav{
  position: relative;
  z-index: 9999;
}

.nav-backdrop{ z-index: 9998; }
.nav-mobile{ z-index: 9999; }

/* OPEN STATE - FIXED */
.nav.open-menu .nav-mobile{
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.nav.open-menu .nav-backdrop{
  opacity: 1;
  pointer-events: auto;
}

.hero, .panel{
  position: relative;
  z-index: 1;
}

