/* =========================================================
   KRAKETECH LLP — ELITE CLEAN WEBSITE SYSTEM
   ========================================================= */

:root{
  --bg:#060b18;
  --bg-soft:#0b1430;
  --panel:#0d1736;
  --panel-2:#111d43;
  --text:#f7f8fb;
  --muted:#b7bfd7;
  --line:rgba(255,255,255,0.08);
  --gold:#f3d37a;
  --gold-2:#e6c15d;
  --blue:#1b4fff;
  --blue-soft:rgba(80,120,255,0.18);
  --shadow:0 18px 48px rgba(0,0,0,0.35);
  --radius:22px;
  --container:1240px;
}

*,
*::before,
*::after{
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  margin:0;
  font-family:'Segoe UI',system-ui,-apple-system,sans-serif;
  background:
    radial-gradient(circle at top right, rgba(50,90,255,0.16), transparent 28%),
    radial-gradient(circle at bottom left, rgba(255,210,100,0.08), transparent 22%),
    linear-gradient(180deg,#050914 0%, #071022 100%);
  color:var(--text);
  line-height:1.6;
}

img{
  max-width:100%;
  display:block;
}

a{
  color:inherit;
  text-decoration:none;
}

.container{
  width:min(var(--container), calc(100% - 32px));
  margin-inline:auto;
}

/* =========================
   HEADER
   ========================= */

.site-header{
  position:sticky;
  top:0;
  z-index:999;
  backdrop-filter:blur(14px);
  -webkit-backdrop-filter:blur(14px);
  background:rgba(6,11,24,0.88);
  border-bottom:1px solid var(--line);
}

.header-row{
  display:grid;
  grid-template-columns:auto 1fr auto;
  align-items:center;
  gap:24px;
  min-height:84px;
}

.brand{
  display:flex;
  align-items:center;
  gap:14px;
  min-width:0;
}

.brand-logo{
  width:56px;
  height:56px;
  border-radius:18px;
  object-fit:cover;
  background:#0a1022;
  border:1px solid rgba(255,255,255,0.08);
  box-shadow:0 8px 24px rgba(0,0,0,0.25);
}

.brand-copy{
  line-height:1.05;
}


.site-header .brand-title{
  margin:0 !important;
  font-size:1.42rem !important;
  font-weight:800 !important;
  letter-spacing:0.4px !important;
  line-height:1 !important;
  background: linear-gradient(135deg, #F5C96A 0%, #D9A441 40%, #8A6A2A 100%) !important;
  background-clip:text !important;
  -webkit-background-clip:text !important;
  color:transparent !important;
  -webkit-text-fill-color:transparent !important;
  filter: drop-shadow(0 0 10px rgba(245,201,106,0.18)) !important;
  transition: filter 0.25s ease, transform 0.25s ease !important;
}

.site-header .brand-subtitle{
  margin-top:5px !important;
  font-size:0.79rem !important;
  font-weight:700 !important;
  color:#D9A441 !important;
  letter-spacing:1.1px !important;
  text-transform:uppercase !important;
  line-height:1 !important;
}

.site-header .brand:hover .brand-title{
  filter: drop-shadow(0 0 16px rgba(245,201,106,0.28)) !important;
}



.nav-toggle{
  display:none;
  width:48px;
  height:48px;
  border:none;
  border-radius:16px;
  background:rgba(255,255,255,0.06);
  color:#fff;
  font-size:1.25rem;
  cursor:pointer;
}

.nav-wrap{
  display:flex;
  align-items:center;
  justify-content:center;
}

.nav-menu{
  display:flex;
  align-items:center;
  gap:8px;
  flex-wrap:wrap;
}

.nav-menu a{
  padding:12px 16px;
  border-radius:14px;
  color:#dbe2f3;
  font-weight:600;
  font-size:1rem;
  transition:0.22s ease;
}

.nav-menu a:hover,
.nav-menu a.active{
  background:rgba(255,255,255,0.06);
  color:#fff;
}

.nav-actions{
  display:flex;
  align-items:center;
  gap:12px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border:none;
  cursor:pointer;
  border-radius:999px;
  font-weight:700;
  transition:0.22s ease;
  padding:12px 18px;
  white-space:nowrap;
}

.btn-ghost{
  background:rgba(255,255,255,0.06);
  color:#fff;
  border:1px solid rgba(255,255,255,0.08);
}

.btn-ghost:hover{
  background:rgba(255,255,255,0.10);
}

.btn-primary{
  background:linear-gradient(135deg,var(--gold),var(--gold-2));
  color:#151515;
  box-shadow:0 10px 26px rgba(243,211,122,0.22);
}

.btn-primary:hover{
  transform:translateY(-2px);
}

/* =========================
   HERO
   ========================= */

.hero,
.page-hero{
  position:relative;
  overflow:hidden;
  border-bottom:1px solid var(--line);
}

.hero .hero-bg,
.page-hero .hero-bg{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  filter:saturate(1.08) contrast(1.03);
}

.hero::after,
.page-hero::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(180deg, rgba(5,9,20,0.18) 0%, rgba(5,9,20,0.42) 40%, rgba(5,9,20,0.82) 100%);
}

.hero-inner,
.page-hero-inner{
  position:relative;
  z-index:1;
  width:min(var(--container), calc(100% - 32px));
  margin-inline:auto;
  text-align:center;
}

.hero{
  min-height:620px;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:80px 0;
}

.page-hero{
  min-height:420px;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:60px 0;
}

.hero-logo{
  width:90px;
  height:90px;
  margin:0 auto 18px;
  border-radius:26px;
  object-fit:cover;
  background:rgba(5,9,20,0.6);
  border:1px solid rgba(255,255,255,0.1);
  box-shadow:0 14px 40px rgba(0,0,0,0.4);
}

.eyebrow{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:6px 12px;
  border-radius:999px;
  background:rgba(243,211,122,0.12);
  border:1px solid rgba(243,211,122,0.22);
  color:var(--gold);
  font-size:0.78rem;
  letter-spacing:1px;
  text-transform:uppercase;
  font-weight:700;
  margin-bottom:14px;
}

.hero h1,
.page-hero h1{
  margin:0;
  line-height:1.03;
  font-weight:900;
  letter-spacing:-0.03em;
  background:linear-gradient(135deg,#ffffff 0%, #d9e8ff 40%, #f3d37a 100%);
  -webkit-background-clip:text;
  background-clip:text;
  -webkit-text-fill-color:transparent;
}

.hero h1{
  font-size:clamp(3rem, 8vw, 5.7rem);
}

.page-hero h1{
  font-size:clamp(2.4rem, 7vw, 4.4rem);
}

.hero p,
.page-hero p{
  max-width:860px;
  margin:18px auto 0;
  color:#e2e8fb;
  font-size:clamp(1.05rem, 2vw, 1.32rem);
}

/* =========================
   SECTIONS
   ========================= */

.section{
  padding:72px 0;
}

.section-tight{
  padding:48px 0;
}

.section-title{
  margin:0 0 12px;
  font-size:clamp(1.9rem, 4vw, 3rem);
  line-height:1.1;
  color:#fff;
  text-align:center;
}

.section-text{
  max-width:920px;
  margin:0 auto;
  color:var(--muted);
  text-align:center;
  font-size:1.04rem;
}

/* =========================
   GRID / CARDS
   ========================= */

.grid{
  display:grid;
  gap:28px;
  margin-top:30px;
}

.grid-3{
  grid-template-columns:repeat(3, minmax(0,1fr));
}

.grid-2{
  grid-template-columns:repeat(2, minmax(0,1fr));
}

.card-link{
  display:block;
}

.card{
  height:100%;
  overflow:hidden;
  border-radius:28px;
  background:linear-gradient(180deg, rgba(17,29,67,0.92), rgba(11,20,48,0.92));
  border:1px solid rgba(255,255,255,0.08);
  box-shadow:var(--shadow);
  transition:0.24s ease;
}

.card:hover{
  transform:translateY(-6px);
  border-color:rgba(243,211,122,0.26);
}

.card-media{
  height:220px;
  overflow:hidden;
}

.card-media img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:0.35s ease;
}

.card:hover .card-media img{
  transform:scale(1.04);
}

.card-body{
  padding:22px 22px 26px;
}

.badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:6px 12px;
  border-radius:999px;
  background:rgba(255,255,255,0.08);
  color:#f4f7ff;
  border:1px solid rgba(255,255,255,0.10);
  font-size:0.78rem;
  font-weight:700;
  margin-bottom:14px;
}

.card-title{
  margin:0 0 12px;
  font-size:1.55rem;
  line-height:1.15;
  color:#fff;
  font-weight:800;
}

.card-text{
  margin:0;
  color:#d8e0f3;
  font-size:1rem;
}

.card-arrow{
  margin-top:18px;
  color:var(--gold);
  font-weight:700;
  font-size:0.96rem;
}

/* =========================
   CONTENT BLOCKS
   ========================= */

.copy-wrap{
  max-width:980px;
  margin:0 auto;
}

.copy-wrap h2{
  margin:0 0 16px;
  font-size:2rem;
  color:#fff;
}

.copy-wrap p{
  margin:0 0 18px;
  color:var(--muted);
  font-size:1.05rem;
}

.info-panel{
  background:linear-gradient(180deg, rgba(17,29,67,0.86), rgba(11,20,48,0.86));
  border:1px solid rgba(255,255,255,0.08);
  border-radius:28px;
  padding:28px;
  box-shadow:var(--shadow);
}

.info-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr));
  gap:18px;
  margin-top:24px;
}

.info-item{
  background:rgba(255,255,255,0.04);
  border:1px solid rgba(255,255,255,0.06);
  border-radius:22px;
  padding:18px;
}

.info-item h3{
  margin:0 0 8px;
  font-size:1rem;
  color:var(--gold);
}

.info-item p{
  margin:0;
  color:#d9e2f7;
}

/* =========================
   CONTACT
   ========================= */

.contact-grid{
  display:grid;
  grid-template-columns:1.08fr 0.92fr;
  gap:28px;
  align-items:start;
}

.contact-person{
  display:flex;
  gap:18px;
  align-items:flex-start;
}

.contact-person img{
  width:94px;
  height:94px;
  object-fit:cover;
  border-radius:24px;
  border:1px solid rgba(255,255,255,0.08);
  background:#0a1022;
}

.contact-person h3{
  margin:0 0 6px;
  font-size:1.4rem;
  color:#fff;
}

.contact-person p{
  margin:0;
  color:var(--muted);
}

.quick-mails{
  display:grid;
  gap:12px;
  margin-top:22px;
}

.quick-mail{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:14px 16px;
  border-radius:18px;
  background:rgba(255,255,255,0.04);
  border:1px solid rgba(255,255,255,0.06);
}

.quick-mail strong{
  display:block;
  color:#fff;
}

.quick-mail span{
  color:var(--muted);
  font-size:0.94rem;
}

.form-group{
  display:grid;
  gap:10px;
  margin-bottom:16px;
}

label{
  font-size:0.94rem;
  color:#d9e2f7;
  font-weight:600;
}

input,
select,
textarea{
  width:100%;
  border:none;
  outline:none;
  border-radius:18px;
  padding:14px 16px;
  font:inherit;
  color:#fff;
  background:rgba(255,255,255,0.06);
  border:1px solid rgba(255,255,255,0.08);
}

textarea{
  min-height:140px;
  resize:vertical;
}

.form-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}

/* =========================
   CTA + FOOTER
   ========================= */

.footer-cta{
  padding:42px 0;
  border-top:1px solid rgba(255,255,255,0.08);
  border-bottom:1px solid rgba(255,255,255,0.08);
  background:
    radial-gradient(circle at top left, rgba(243,211,122,0.10), transparent 24%),
    radial-gradient(circle at bottom right, rgba(65,120,255,0.12), transparent 28%),
    linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
}

.footer-cta-inner{
  width:min(var(--container), calc(100% - 32px));
  margin-inline:auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:28px;
}

.footer-cta-copy h2{
  margin:0 0 10px;
  font-size:clamp(1.7rem, 4vw, 2.5rem);
  color:#fff;
  line-height:1.12;
}

.footer-cta-copy p{
  margin:0;
  color:var(--muted);
  max-width:760px;
}

.footer-cta-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}

.site-footer{
  padding:48px 0 22px;
  background:rgba(4,7,16,0.9);
}

.footer-grid{
  display:grid;
  grid-template-columns:1.2fr 0.9fr 1.1fr 0.8fr;
  gap:28px;
}

.footer-col h3,
.footer-col h4{
  margin:0 0 14px;
}

.footer-col h3{
  font-size:1.55rem;
  color:#fff;
}

.footer-col h4{
  font-size:1rem;
  color:var(--gold);
}

.footer-col p,
.footer-col li{
  color:var(--muted);
}

.footer-col ul{
  margin:0;
  padding:0;
  list-style:none;
}

.footer-col li{
  margin-bottom:10px;
}

.footer-col a{
  color:#dbe2f3;
}

.footer-col a:hover{
  color:#fff;
}

.footer-email-list{
  list-style:none;
  margin:0;
  padding:0;
}

.footer-email-list li{
  margin-bottom:10px;
}

.footer-email-list a{
  color:#d4d8e1;
  text-decoration:none;
}

.footer-email-list a:hover{
  color:#ffd966;
}

.footer-legal-strip{
  margin-top:26px;
  padding:18px 20px;
  border:1px solid rgba(255,255,255,0.08);
  border-radius:18px;
  background:rgba(255,255,255,0.04);
}



.footer-legal-strip p{
  margin:0 0 8px;
  color:#cfd6ea;
  line-height:1.4;
  font-size:0.65rem;  /* અગાઉ 0.92rem હતું */
  word-break:break-word;
}

.footer-legal-strip p:last-child{
  margin-bottom:0;
}

.footer-legal-strip a{
  color:#ffd966;
  text-decoration:none;
}

.footer-legal-strip a:hover{
  text-decoration:underline;
}

.footer-bottom{
  margin-top:24px;
  padding-top:18px;
  border-top:1px solid rgba(255,255,255,0.08);
  display:flex;
  justify-content:space-between;
  gap:16px;
  flex-wrap:wrap;
  color:#98a4c5;
  font-size:0.92rem;
}

.footer-note{
  color:#98a4c5;
}

/* =========================
   MODAL COMPOSE BOX
   ========================= */

.modal{
  position:fixed;
  inset:0;
  background:rgba(5,9,20,0.66);
  backdrop-filter:blur(6px);
  -webkit-backdrop-filter:blur(6px);
  display:none;
  align-items:center;
  justify-content:center;
  padding:20px;
  z-index:1200;
}

.modal.show{
  display:flex;
}

.modal-box{
  width:min(760px, 100%);
  background:#fff;
  color:#1d2438;
  border-radius:24px;
  overflow:hidden;
  box-shadow:0 20px 60px rgba(0,0,0,0.36);
}

.modal-head{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:18px 22px;
  border-bottom:1px solid rgba(0,0,0,0.08);
}

.modal-head h3{
  margin:0;
  font-size:1.25rem;
  color:#182033;
}

.modal-close{
  border:none;
  background:transparent;
  font-size:1.5rem;
  cursor:pointer;
  color:#6b7488;
}

.compose-shell{
  padding:0;
}

.compose-row{
  display:grid;
  grid-template-columns:100px 1fr;
  align-items:center;
  min-height:58px;
  padding:0 20px;
  border-bottom:1px solid rgba(0,0,0,0.08);
}

.compose-row label{
  color:#5e6780;
  font-weight:600;
}

.compose-row input,
.compose-row select,
.compose-row textarea{
  background:transparent;
  color:#172033;
  border:none;
  border-radius:0;
  padding:16px 0;
}

.compose-row textarea{
  min-height:220px;
}

.compose-foot{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:16px;
  padding:16px 20px 20px;
}

.compose-send{
  background:#2563eb;
  color:#fff;
  border:none;
  border-radius:999px;
  padding:12px 24px;
  font-weight:700;
  cursor:pointer;
}

.compose-note{
  color:#6b7488;
  font-size:0.9rem;
}

/* =========================
   TOAST
   ========================= */

.toast{
  position:fixed;
  right:18px;
  bottom:18px;
  z-index:1300;
  min-width:260px;
  max-width:420px;
  padding:14px 16px;
  border-radius:18px;
  color:#fff;
  background:#1f2937;
  box-shadow:0 14px 40px rgba(0,0,0,0.30);
  opacity:0;
  transform:translateY(16px);
  transition:0.25s ease;
}

.toast.show{
  opacity:1;
  transform:translateY(0);
}

.toast.success{
  background:#14532d;
}

.toast.error{
  background:#7f1d1d;
}

/* =========================
   RESPONSIVE
   ========================= */

@media (max-width: 1080px){
  .header-row{
    grid-template-columns:auto auto;
  }



  .nav-wrap{
    order:3;
    grid-column:1 / -1;
    justify-content:flex-start;
  }

  .nav-actions{
    margin-left:auto;
  }

  .grid-3{
    grid-template-columns:repeat(2, minmax(0,1fr));
  }

  .footer-grid{
    grid-template-columns:1fr 1fr;
  }

  .info-grid{
    grid-template-columns:1fr;
  }

  .contact-grid{
    grid-template-columns:1fr;
  }

  .footer-cta-inner{
    flex-direction:column;
    align-items:flex-start;
  }
}

@media (max-width: 760px){
  .header-row{
    grid-template-columns:1fr auto;
    gap:16px;
    min-height:76px;
  }

  .nav-toggle{
    display:inline-flex;
    align-items:center;
    justify-content:center;
  }

  .nav-wrap{
    display:none;
    grid-column:1 / -1;
    order:3;
    width:100%;
  }

  .nav-wrap.open{
    display:block;
  }

  .nav-menu{
    flex-direction:column;
    align-items:stretch;
    gap:8px;
    padding:8px 0 0;
  }

  .nav-menu a{
    text-align:left;
  }

  .nav-actions{
    width:100%;
    flex-direction:column;
    align-items:stretch;
    margin-top:12px;
  }

  .brand-title{
    font-size:1.22rem;
  }

  .hero,
  .page-hero{
    min-height:420px;
  }

  .hero-logo{
    width:74px;
    height:74px;
  }

  .grid-3,
  .grid-2,
  .footer-grid{
    grid-template-columns:1fr;
  }

  .compose-row{
    grid-template-columns:1fr;
    align-items:flex-start;
    padding-top:12px;
    padding-bottom:12px;
  }

  .compose-row label{
    margin-bottom:4px;
  }

  .footer-bottom{
    flex-direction:column;
    align-items:flex-start;
  }
}