/* =========================
   CTK School of Prayer — Premium Revamp
   Theme: Deep Blue + Gold
   Font: Ubuntu (load in HTML head)
========================= */

:root{
  --bg: #070b18;
  --bg2:#050816;
  --card: rgba(255,255,255,.06);
  --card2: rgba(255,255,255,.08);
  --stroke: rgba(255,255,255,.12);
  --text: rgba(255,255,255,.92);
  --muted: rgba(255,255,255,.70);
  --muted2: rgba(255,255,255,.58);

  --blue: #2f5bff;
  --blue2:#1b3fbf;

  --gold: #caa35a;
  --gold2:#9d7b3d;

  --shadow: 0 18px 50px rgba(0,0,0,.45);
  --shadow2: 0 12px 30px rgba(0,0,0,.40);

  --radius: 18px;
  --radius2: 24px;

  --container: 1160px;
}

/* Base */
*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family: "Ubuntu", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: radial-gradient(1200px 700px at 20% 10%, rgba(47,91,255,.20), transparent 55%),
              radial-gradient(900px 600px at 90% 0%, rgba(202,163,90,.16), transparent 60%),
              linear-gradient(180deg, var(--bg), var(--bg2));
  color: var(--text);
  overflow-x:hidden;
}
a{ color:inherit; text-decoration:none; }
img{ max-width:100%; display:block; }

.container{
  width: min(var(--container), calc(100% - 44px));
  margin-inline:auto;
}

/* =========================
   Buttons
========================= */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:.55rem;
  padding:.9rem 1.15rem;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing:.2px;
  border: 1px solid transparent;
  transition: transform .2s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease;
  box-shadow: 0 0 0 rgba(0,0,0,0);
  user-select:none;
  white-space:nowrap;
}
.btn:active{ transform: translateY(1px); }

.btn-primary{
  background: linear-gradient(135deg, var(--blue), var(--blue2));
  box-shadow: 0 16px 30px rgba(47,91,255,.22);
}
.btn-primary:hover{
  transform: translateY(-1px);
  box-shadow: 0 20px 40px rgba(47,91,255,.26);
}

.btn-ghost{
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.14);
  backdrop-filter: blur(10px);
}
.btn-ghost:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.20);
}

/* =========================
   Topbar / Nav
========================= */
.topbar{
  position: sticky;
  top:0;
  z-index: 60;
  padding: 14px 0;
  transition: background .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.topbar::before{
  content:"";
  position:absolute;
  inset:0;
  background: rgba(5,8,22,.35);
  border-bottom: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(14px);
  opacity:0;
  transition: opacity .25s ease;
}
.topbar.is-sticky::before{ opacity:1; }
.topbar.is-sticky{ box-shadow: 0 10px 30px rgba(0,0,0,.25); }

.nav{
  position:relative;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 18px;
}

.brand{
  display:flex;
  align-items:center;
  gap: 12px;
  padding: 6px 10px;
  border-radius: 14px;
  transition: background .2s ease;
}
.brand:hover{ background: rgba(255,255,255,.05); }

.brand-logo{
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  display:grid;
  place-items:center;
  overflow:hidden;
}
.brand-logo img{
  width: 80%;
  height: 80%;
  object-fit: contain;
}
.brand-title{
  display:flex;
  flex-direction:column;
  line-height:1.05;
}
.brand-title strong{
  font-size: 1.05rem;
  letter-spacing:.4px;
}
.brand-title span{
  font-size: .86rem;
  color: var(--muted);
}

.navlinks{
  display:flex;
  gap: 18px;
  align-items:center;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(12px);
}
.navlinks a{
  font-weight: 700;
  font-size: .95rem;
  color: rgba(255,255,255,.78);
  padding: 8px 10px;
  border-radius: 999px;
  transition: background .2s ease, color .2s ease;
}
.navlinks a:hover{
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.92);
}
.navlinks a.active{
  background: linear-gradient(135deg, rgba(202,163,90,.20), rgba(47,91,255,.16));
  border: 1px solid rgba(202,163,90,.28);
  color: rgba(255,255,255,.95);
}

.nav-actions{
  display:flex;
  align-items:center;
  gap: 10px;
}
.nav-cta{ padding: .82rem 1.05rem; }

/* Burger */
.burger{
  width: 46px;
  height: 46px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(10px);
  display:none;
  cursor:pointer;
  transition: background .2s ease, transform .2s ease;
}
.burger:hover{ background: rgba(255,255,255,.08); transform: translateY(-1px); }
.burger-lines{ display:grid; gap: 6px; }
.burger-lines span{
  width: 20px;
  height: 2px;
  background: rgba(255,255,255,.9);
  border-radius: 4px;
}

/* =========================
   Drawer (Mobile)
========================= */
.drawer-backdrop{
  position:fixed;
  inset:0;
  background: rgba(0,0,0,.55);
  opacity:0;
  pointer-events:none;
  transition: opacity .25s ease;
  z-index: 80;
}
.drawer-backdrop.open{
  opacity:1;
  pointer-events:auto;
}

.drawer{
  position:fixed;
  top: 14px;
  right: 14px;
  width: min(360px, calc(100% - 28px));
  height: calc(100dvh - 28px);
  background: rgba(10,14,30,.86);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius2);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
  transform: translateX(110%);
  transition: transform .28s ease;
  z-index: 90;
  padding: 14px;
  display:flex;
  flex-direction:column;
}
.drawer.open{ transform: translateX(0); }

.drawer-header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
  padding: 10px;
  border-radius: 16px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
}
.drawer-title{
  display:flex;
  align-items:center;
  gap: 10px;
}
.brand-logo.mini{
  width: 38px;
  height: 38px;
  border-radius: 12px;
}
.close{
  width: 40px;
  height: 40px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.9);
  cursor:pointer;
  transition: transform .2s ease, background .2s ease;
}
.close:hover{ transform: translateY(-1px); background: rgba(255,255,255,.08); }

.drawer nav{
  display:flex;
  flex-direction:column;
  gap: 8px;
  margin-top: 14px;
  padding: 6px;
}
.drawer-link{
  padding: 12px 12px;
  border-radius: 14px;
  font-weight: 800;
  color: rgba(255,255,255,.82);
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.07);
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}
.drawer-link:hover{
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.12);
  transform: translateY(-1px);
}
.drawer-actions{
  margin-top:auto;
  display:grid;
  gap: 10px;
  padding: 10px 6px 6px;
}

/* =========================
   Hero
========================= */
.hero{
  position:relative;
  min-height: 92vh;
  display:grid;
  align-items:center;
  padding: 36px 0 48px;
}
.hero-media{
  position:absolute;
  inset:0;
  background:
    linear-gradient(180deg, rgba(7,11,24,.35), rgba(7,11,24,.88)),
    radial-gradient(900px 600px at 20% 30%, rgba(47,91,255,.22), transparent 60%),
    radial-gradient(700px 520px at 80% 20%, rgba(202,163,90,.16), transparent 60%),
    url("images/sermon-6.jpg");
  background-size: cover;
  background-position:center;
  filter: saturate(1.05);
}
.hero-inner{
  position:relative;
  z-index: 2;
}
.hero-center{
  text-align:center;
  max-width: 860px;
  margin-inline:auto;
  padding: 30px 16px;
}

.kicker{
  display:flex;
  align-items:center;
  justify-content:center;
  gap: 12px;
  color: rgba(255,255,255,.75);
  font-weight: 800;
  letter-spacing:.3px;
}
.kicker .line{
  width: 52px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(202,163,90,.9), transparent);
}

.hero-title{
  margin: 16px 0 10px;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  letter-spacing: .4px;
  line-height: 1.06;
  text-shadow: 0 18px 50px rgba(0,0,0,.45);
}
.location{
  display:inline-flex;
  align-items:center;
  gap: 10px;
  padding: 10px 14px;
  margin: 8px auto 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(12px);
  color: rgba(255,255,255,.86);
  font-weight: 800;
}
.location .dot{
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 0 0 6px rgba(202,163,90,.14);
}
.hero-sub{
  max-width: 760px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}
.hero-cta{
  display:flex;
  justify-content:center;
  gap: 12px;
  flex-wrap:wrap;
  margin-top: 20px;
}

.mini-proof{
  margin-top: 22px;
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap: 10px;
}
.pill{
  display:inline-flex;
  align-items:center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.10);
  color: rgba(255,255,255,.82);
  font-weight: 800;
  font-size: .92rem;
}
.pill i{
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--blue), var(--gold));
  box-shadow: 0 0 0 6px rgba(47,91,255,.12);
}

/* =========================
   Premium Band
========================= */
.band{
  padding: 26px 0 40px;
}
.band-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 20px;
  padding: 22px;
  border-radius: var(--radius2);
  background: linear-gradient(135deg, rgba(47,91,255,.12), rgba(202,163,90,.10));
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: var(--shadow2);
}
.band-inner h3{
  margin:0 0 6px;
  font-size: 1.25rem;
}
.band-inner p{
  margin:0;
  color: var(--muted);
  line-height: 1.7;
  max-width: 62ch;
}
.band-actions{
  display:flex;
  gap: 10px;
  flex-wrap:wrap;
}

/* =========================
   Footer
========================= */
footer{
  padding: 26px 0 34px;
  border-top: 1px solid rgba(255,255,255,.08);
  background: rgba(0,0,0,.12);
}
.footer-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 16px;
  color: rgba(255,255,255,.70);
  font-weight: 700;
}
.footer-links{
  display:flex;
  gap: 14px;
}
.footer-links a{
  color: rgba(255,255,255,.75);
  padding: 8px 10px;
  border-radius: 12px;
  transition: background .2s ease;
}
.footer-links a:hover{ background: rgba(255,255,255,.06); }

/* =========================
   Scroll to top
========================= */
.to-top{
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  color: #402fff;
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow2);
  cursor:pointer;
  opacity:0;
  pointer-events:none;
  transform: translateY(10px);
  transition: opacity .22s ease, transform .22s ease, background .2s ease;
  z-index: 70;
}
.to-top.show{
  opacity:1;
  pointer-events:auto;
  transform: translateY(0);
}
.to-top:hover{ background: rgba(255,255,255,.08); }

/* =========================
   Responsive
========================= */
@media (max-width: 980px){
  .navlinks{ display:none; }
  .burger{ display:inline-grid; place-items:center; }
}
@media (max-width: 720px){
  .nav-cta{ display:none; }
  .band-inner{
    flex-direction:column;
    align-items:flex-start;
  }
  .band-actions{ width:100%; }
  .band-actions .btn{ width:100%; }
}




/*===================================================ABOUT=========================================================*/
/* =========================
   Premium About (Animated + Blurred Background)
========================= */

/* =========================
   About (White Premium + Modern Animations)
========================= */

.about-white{
  background: #ffffff;
  color: #0b1220;
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}

/* subtle premium background pattern */
.about-white::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(700px 420px at 10% 10%, rgba(47,91,255,.10), transparent 60%),
    radial-gradient(620px 380px at 90% 12%, rgba(202,163,90,.16), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,1), rgba(255,255,255,1));
  opacity: 1;
  pointer-events:none;
}

.about-white::after{
  content:"";
  position:absolute;
  inset:-2px;
  background:
    linear-gradient(90deg, rgba(0,0,0,.02), transparent 16%, transparent 84%, rgba(0,0,0,.02));
  opacity: .6;
  pointer-events:none;
}

.about-white-wrap{
  position: relative;
  z-index: 2;
}

.about-white-head{
  text-align:center;
  max-width: 920px;
  margin: 0 auto 44px;
}

.about-badge{
  display:inline-flex;
  align-items:center;
  gap:.55rem;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(47,91,255,.08);
  border: 1px solid rgba(47,91,255,.14);
  font-weight: 900;
  letter-spacing:.2px;
}

.about-title{
  margin: 14px 0 12px;
  font-size: clamp(2rem, 3.6vw, 3.1rem);
  line-height: 1.08;
  letter-spacing: .2px;
}

.about-intro{
  margin: 0 auto;
  max-width: 78ch;
  color: rgba(11,18,32,.78);
  line-height: 1.9;
  font-size: 1.06rem;
}

/* Layout */
.about-white-grid{
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
  align-items: stretch;
}

.about-card{
  grid-column: span 6;
  background: rgba(255,255,255,.85);
  border: 1px solid rgba(15,23,42,.10);
  border-radius: 22px;
  padding: 26px;
  box-shadow: 0 18px 50px rgba(2,8,23,.08);
  position: relative;
  overflow:hidden;
  transform-style: preserve-3d;
}

/* premium top glow */
.about-card::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(520px 260px at 15% 0%, rgba(47,91,255,.12), transparent 62%),
    radial-gradient(520px 260px at 95% 10%, rgba(202,163,90,.16), transparent 62%);
  pointer-events:none;
  opacity: 1;
}

.about-card > *{ position:relative; z-index:2; }

.about-wide{ grid-column: span 12; }

.about-card-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
  margin-bottom: 12px;
}
.about-card h3{
  margin:0;
  font-size: 1.18rem;
  letter-spacing:.2px;
}
.about-chip{
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(202,163,90,.16);
  border: 1px solid rgba(202,163,90,.26);
  font-weight: 900;
  font-size: .86rem;
  color: rgba(11,18,32,.92);
}

.about-card p{
  margin:0;
  color: rgba(11,18,32,.78);
  line-height: 1.85;
}

/* modern divider */
.about-divider{
  height: 1px;
  margin: 16px 0;
  background: linear-gradient(90deg, transparent, rgba(11,18,32,.18), transparent);
}

/* Objectives list (premium) */
.about-list{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 14px;
  margin-top: 6px;
}
.about-li{
  position:relative;
  padding: 12px 12px 12px 42px;
  border-radius: 18px;
  border: 1px solid rgba(15,23,42,.08);
  background: rgba(47,91,255,.04);
  color: rgba(11,18,32,.80);
  line-height: 1.7;
  font-weight: 700;
}
.about-li::before{
  content:"";
  position:absolute;
  left: 14px;
  top: 16px;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, #2f5bff, #caa35a);
  box-shadow: 0 0 0 8px rgba(47,91,255,.10);
}

/* Core values pills */
.values-grid{
  display:flex;
  flex-wrap:wrap;
  gap: 10px;
  margin-top: 8px;
}
.value-pill{
  padding: 12px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.9);
  border: 1px solid rgba(15,23,42,.10);
  font-weight: 900;
  color: rgba(11,18,32,.82);
}
.value-pill b{
  color: rgba(11,18,32,.95);
  margin-right: 6px;
}

/* CTA inside white section (buttons remain your global) */
.about-cta{
  display:flex;
  gap: 10px;
  flex-wrap:wrap;
  margin-top: 16px;
}

/* Animated line shimmer (latest feel) */
.about-line{
  margin-top: 18px;
  height: 2px;
  width: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(47,91,255,.55), rgba(202,163,90,.65), transparent);
  opacity: .55;
  position: relative;
  overflow: hidden;
}
.about-line::after{
  content:"";
  position:absolute;
  top:0; left:-30%;
  width: 30%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.9), transparent);
  animation: shimmer 2.6s ease-in-out infinite;
  opacity: .55;
}
@keyframes shimmer{
  0%{ transform: translateX(0); }
  100%{ transform: translateX(450%); }
}

/* Hover premium lift */
.about-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 22px 70px rgba(2,8,23,.10);
  border-color: rgba(47,91,255,.14);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}



/* Responsive */
@media (max-width: 980px){
  .about-card{ grid-column: span 12; }
  .about-list{ grid-template-columns: 1fr; }
}





/* =========================   Leaders Premium (White + Elegant) ========================= */

.leaders-premium{
  background: #ffffff;
  color: #0b1220;
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}

/* subtle premium background */
.leaders-premium::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(700px 420px at 12% 10%, rgba(47,91,255,.10), transparent 60%),
    radial-gradient(620px 380px at 90% 14%, rgba(202,163,90,.16), transparent 60%),
    linear-gradient(180deg, #fff, #fff);
  pointer-events:none;
}

.leaders-head{
  text-align:center;
  max-width: 880px;
  margin: 0 auto 40px;
  position: relative;
  z-index: 2;
}

.leaders-badge{
  display:inline-flex;
  align-items:center;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(47,91,255,.08);
  border: 1px solid rgba(47,91,255,.14);
  font-weight: 900;
  letter-spacing:.2px;
}

.leaders-title{
  margin: 14px 0 10px;
  font-size: clamp(2rem, 3.4vw, 2.8rem);
  line-height: 1.08;
  letter-spacing: .2px;
}

.leaders-subtitle{
  margin: 0 auto;
  max-width: 70ch;
  color: rgba(11,18,32,.78);
  line-height: 1.85;
  font-size: 1.02rem;
}

/* Leader Card */
.leader-card{
  position: relative;
  display:grid;
  grid-template-columns: 360px 1fr;
  gap: 22px;
  padding: 22px;
  border-radius: 26px;
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(15,23,42,.10);
  box-shadow: 0 20px 70px rgba(2,8,23,.10);
  overflow:hidden;
  z-index: 2;
}

/* premium glow */
.leader-glow{
  position:absolute;
  inset:0;
  background:
    radial-gradient(520px 260px at 15% 0%, rgba(47,91,255,.12), transparent 62%),
    radial-gradient(520px 260px at 95% 10%, rgba(202,163,90,.16), transparent 62%);
  pointer-events:none;
  opacity: 1;
}

.leader-media{
  border-radius: 22px;
  overflow:hidden;
  border: 1px solid rgba(15,23,42,.10);
  background: #f7f8fb;
  box-shadow: 0 14px 40px rgba(2,8,23,.08);
}

.leader-media img{
  width: 100%;
  height: 100%;
  max-height: 420px;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform .35s ease;
}

.leader-body{
  padding: 8px 8px 8px 0;
  position: relative;
  z-index: 2;
}

.leader-top{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.leader-name{
  margin: 0;
  font-size: 1.35rem;
  letter-spacing: .2px;
}

.leader-pill{
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(202,163,90,.16);
  border: 1px solid rgba(202,163,90,.26);
  font-weight: 900;
  font-size: .9rem;
  color: rgba(11,18,32,.92);
  white-space: nowrap;
}

.leader-note{
  margin: 0;
  color: rgba(11,18,32,.78);
  line-height: 1.85;
}

.leader-actions{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 18px;
}

/* classy hover */
.leader-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 26px 90px rgba(2,8,23,.12);
  border-color: rgba(47,91,255,.16);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.leader-card:hover .leader-media img{
  transform: scale(1.06);
}

/* Responsive */
@media (max-width: 980px){
  .leader-card{
    grid-template-columns: 1fr;
  }
  .leader-media img{
    max-height: 360px;
  }
  .leader-actions .btn{
    width: 100%;
  }
}




/* =================================   WHAT WE OFFER ================================================= */

.offer-premium{
  position: relative;
  padding: 92px 0;
  overflow: hidden;
  isolation: isolate;
}

/* Same vibe as your hero/landing background */
.offer-bg{
  position:absolute;
  inset:0;
  background:
    radial-gradient(1200px 700px at 20% 10%, rgba(47,91,255,.18), transparent 55%),
    radial-gradient(900px 600px at 90% 0%, rgba(202,163,90,.14), transparent 60%),
    linear-gradient(180deg, var(--bg), var(--bg2));
  z-index: -3;
}

/* Soft overlay for depth */
.offer-overlay{
  position:absolute;
  inset:0;
  background:
    linear-gradient(180deg, rgba(7,11,24,.60), rgba(7,11,24,.86));
  z-index:-2;
  pointer-events:none;
}

.offer-wrap{ position: relative; z-index: 2; }

.offer-head{
  text-align: center;
  max-width: 900px;
  margin: 0 auto 42px;
}

.offer-badge{
  display:inline-flex;
  align-items:center;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(202,163,90,.14);
  border: 1px solid rgba(202,163,90,.28);
  font-weight: 900;
  letter-spacing: .2px;
  color: rgba(255,255,255,.92);
}

.offer-title{
  margin: 14px 0 10px;
  font-size: clamp(2rem, 3.4vw, 3rem);
  line-height: 1.08;
}

.offer-sub{
  margin: 0 auto;
  max-width: 70ch;
  color: var(--muted);
  line-height: 1.8;
}

/* Grid */
.offer-grid{
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
  margin-top: 22px;
}

/* Cards */
.offer-card{
  grid-column: span 4;
  padding: 26px;
  border-radius: var(--radius2);
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow2);
  position: relative;
  overflow:hidden;
  transform-style: preserve-3d;
}

/* Premium glow */
.offer-card::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(520px 240px at 18% 0%, rgba(47,91,255,.18), transparent 62%),
    radial-gradient(520px 240px at 92% 10%, rgba(202,163,90,.14), transparent 62%);
  opacity:.95;
  pointer-events:none;
}

.offer-card > *{ position:relative; z-index:2; }

.offer-icon{
  width: 52px;
  height: 52px;
  border-radius: 18px;
  display:grid;
  place-items:center;
  background: rgba(202,163,90,.10);
  border: 1px solid rgba(202,163,90,.20);
  margin-bottom: 14px;
}
.offer-icon svg{
  width: 28px;
  height: 28px;
  color: rgba(202,163,90,.95);
}

/* Typography */
.offer-h{
  margin: 0 0 10px;
  font-size: 1.18rem;
  letter-spacing: .2px;
}

.offer-p{
  margin: 0;
  color: rgba(255,255,255,.78);
  line-height: 1.85;
}

.offer-lines p{
  margin: 0 0 10px;
  color: rgba(255,255,255,.78);
  line-height: 1.85;
}

/* Shimmer line at bottom */
.offer-shine{
  margin-top: 18px;
  height: 2px;
  width: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(47,91,255,.55), rgba(202,163,90,.65), transparent);
  opacity: .6;
  position: relative;
  overflow: hidden;
}
.offer-shine::after{
  content:"";
  position:absolute;
  top:0; left:-30%;
  width: 30%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.9), transparent);
  animation: offerShimmer 2.8s ease-in-out infinite;
  opacity: .55;
}
@keyframes offerShimmer{
  0%{ transform: translateX(0); }
  100%{ transform: translateX(450%); }
}

/* Hover (classy) */
.offer-card:hover{
  transform: translateY(-4px);
  border-color: rgba(202,163,90,.18);
  box-shadow: 0 26px 90px rgba(0,0,0,.28);
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

/* Actions */
.offer-actions{
  margin-top: 22px;
  display:flex;
  justify-content:center;
  gap: 12px;
  flex-wrap:wrap;
}

/* Responsive */
@media (max-width: 980px){
  .offer-card{ grid-column: span 12; }
}



/* =========================Premium Registration Form (matches your dark navy + gold theme)=============================== */


*,
*::before,
*::after{
  box-sizing: border-box;
}

html, body{
  overflow-x: hidden;
}

/* =========================
   White Premium Registration
========================= */

.reg-white{
  padding: 100px 0;
  background: #ffffff;
}

.reg-card{
  width: 100%;
  max-width: 820px;
  margin: auto;
  padding: 40px 36px;
  border-radius: 28px;
  background: #ffffff;
  border: 1px solid rgba(15,23,42,.08);
  box-shadow: 0 30px 90px rgba(2,8,23,.10);
  position: relative;
  overflow: hidden;
  min-width: 0; /* key: prevent child overflow on grid */
}

/* subtle luxury accent */
.reg-card::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(500px 220px at 15% 0%, rgba(202,163,90,.12), transparent 60%),
    radial-gradient(500px 220px at 90% 10%, rgba(47,91,255,.10), transparent 60%);
  pointer-events:none;
}

.reg-card > *{ position:relative; z-index:2; }

.reg-header{
  text-align:center;
  max-width: 720px;
  margin: 0 auto 26px;
  min-width: 0;
}

.reg-badge{
  display:inline-block;
  padding: 9px 16px;
  border-radius: 999px;
  background: rgba(202,163,90,.15);
  border: 1px solid rgba(202,163,90,.30);
  font-weight: 800;
  color: #0b1220;
}

.reg-header h2{
  margin: 16px 0 10px;
  font-size: clamp(1.9rem, 3vw, 2.4rem);
  color: #0b1220;
}

.reg-header p{
  margin:0;
  color: rgba(11,18,32,.72);
  line-height: 1.85;
}

/* Grid */
.reg-grid{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr)); /* key: minmax(0,1fr) */
  gap: 18px;
}

.reg-field{
  display:flex;
  flex-direction:column;
  min-width: 0; /* key */
}

.reg-field.full{
  grid-column: span 2;
}

.reg-field label{
  font-weight: 700;
  margin-bottom: 8px;
  color: #0b1220;
}

/* Inputs - guaranteed no overflow */
.reg-field input,
.reg-field textarea{
  width: 100%;
  max-width: 100%;
  display:block;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid rgba(15,23,42,.18);
  background: #ffffff;
  font-size: 1rem;
  outline: none;
  transition: all .25s ease;
}

.reg-field input::placeholder,
.reg-field textarea::placeholder{
  color: rgba(11,18,32,.45);
}

/* Focus animation */
.reg-field input:focus,
.reg-field textarea:focus{
  border-color: rgba(202,163,90,.65);
  box-shadow: 0 0 0 6px rgba(202,163,90,.18);
  transform: translateY(-1px);
}

/* Error text */
.reg-field small{
  min-height: 16px;
  margin-top: 6px;
  font-weight: 700;
  font-size: .9rem;
  color: #c0392b;
}

/* Button */
.reg-btn{
  width: 100%;
  margin-top: 18px;
  padding: 1.05rem;
  border-radius: 999px;
  border: none;
  background: linear-gradient(135deg, #2f5bff, #1b3fbf);
  color: #ffffff;
  font-weight: 800;
  font-size: 1rem;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease, opacity .25s ease;
  box-shadow: 0 18px 40px rgba(47,91,255,.25);
}

.reg-btn:hover{
  transform: translateY(-2px);
  box-shadow: 0 26px 70px rgba(47,91,255,.30);
}

.reg-btn[disabled]{
  opacity: .7;
  cursor:not-allowed;
  transform:none;
}

/* Note */
.reg-note{
  text-align:center;
  margin-top: 14px;
  font-size: .92rem;
  color: rgba(11,18,32,.60);
}

/* Message */
.reg-message{
  margin-top: 18px;
  text-align:center;
  font-weight: 800;
  display:none;
}
.reg-message.success{ color: #1e8449; }
.reg-message.error{ color: #c0392b; }

/* Honeypot */
.reg-hp{ display:none; }



/* Responsive */
@media(max-width: 820px){
  .reg-grid{ grid-template-columns: 1fr; }
  .reg-field.full{ grid-column: span 1; }
}

@media (max-width: 520px){
  .reg-card{
    padding: 26px 18px;
    border-radius: 22px;
  }
}




/* =========================================================
   CTK — PAST EVENTS (UPDATED)
   ✅ Vertical scroll on mobile
   ✅ NO text overlay on image (text below image)
   ✅ Premium navy/black theme background
========================================================= */

.events-premium{
  position: relative;
  padding: 96px 0;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  isolation: isolate;
  contain: paint;
}

/* Background */
.events-premium .events-bg{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  z-index:-3;
  background:
    radial-gradient(900px 520px at 18% 18%, rgba(47,91,255,.20), transparent 60%),
    radial-gradient(800px 520px at 90% 12%, rgba(202,163,90,.14), transparent 62%),
    linear-gradient(180deg, #050814 0%, #070b18 40%, #02030a 100%);
}

/* Wrap */
.events-premium .events-wrap{
  position: relative;
  z-index: 2;
}

/* Header */
.events-premium .events-head{
  text-align:center;
  max-width: 920px;
  margin: 0 auto 44px;
}

.events-premium .events-badge{
  display:inline-flex;
  align-items:center;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(202,163,90,.14);
  border: 1px solid rgba(202,163,90,.28);
  color: rgba(255,255,255,.92);
  font-weight: 900;
  letter-spacing: .2px;
}

.events-premium .events-title{
  margin: 14px 0 10px;
  font-size: clamp(2rem, 3.4vw, 3rem);
  line-height: 1.08;
  color: rgba(255,255,255,.95);
  letter-spacing: .2px;
}

.events-premium .events-sub{
  margin: 0 auto;
  max-width: 72ch;
  color: rgba(255,255,255,.70);
  line-height: 1.85;
  font-weight: 700;
}

/* Grid (desktop) */
.events-premium .events-grid{
  display:grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px;
  width: 100%;
  max-width: 100%;
}

/* Card (NEW STRUCTURE: image top, text below) */
.events-premium .event-card{
  grid-column: span 4;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(12px);
  box-shadow: 0 22px 70px rgba(0,0,0,.35);
  max-width: 100%;
  display: flex;
  flex-direction: column;
}

/* Image area now becomes a real "top media" block */
.events-premium .event-media{
  position: relative;
  inset: unset;
  width: 100%;
  height: 250px;                 /* image height on desktop */
  background-size: cover;
  background-position: center;
  transform: none;
  filter: saturate(1.05) contrast(1.05);
}

/* Remove overlay on top of image (no text over image) */
.events-premium .event-overlay{
  display: none;
}

/* Text area BELOW the image */
.events-premium .event-body{
  position: relative;
  z-index: 2;
  padding: 18px 18px 20px;
  display:flex;
  flex-direction:column;
  gap: 10px;
}

/* Top row (pills) */
.events-premium .event-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 2px;
}

.events-premium .event-date,
.events-premium .event-chip{
  display:inline-flex;
  padding: 9px 14px;
  border-radius: 999px;
  font-weight: 900;
  font-size: .92rem;
  letter-spacing: .15px;
}

.events-premium .event-date{
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  color: rgba(255,255,255,.90);
}

.events-premium .event-chip{
  background: rgba(202,163,90,.16);
  border: 1px solid rgba(202,163,90,.30);
  color: rgba(255,255,255,.94);
}

/* Typography */
.events-premium .event-name{
  margin: 0;
  font-size: 1.25rem;
  line-height: 1.2;
  color: rgba(255,255,255,.96);
  letter-spacing: .2px;
}

.events-premium .event-host{
  margin: 0;
  color: rgba(255,255,255,.82);
  font-weight: 850;
}

.events-premium .event-desc{
  margin: 0;
  color: rgba(255,255,255,.74);
  line-height: 1.75;
  
  font-weight: 400 !important;
  opacity: 0.85
}

/* Bottom shine */
.events-premium .event-shine{
  position: relative;
  margin: 0 18px 18px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(47,91,255,.55), rgba(202,163,90,.65), transparent);
  opacity: .62;
  overflow: hidden;
}
.events-premium .event-shine::after{
  content:"";
  position:absolute;
  top:0;
  left:-30%;
  width: 30%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.9), transparent);
  animation: ctkeventShimmer 2.8s ease-in-out infinite;
  opacity: .55;
}
@keyframes ctkeventShimmer{
  0%{ transform: translateX(0); }
  100%{ transform: translateX(450%); }
}

/* Hover (desktop only) */
@media (hover:hover) and (pointer:fine){
  .events-premium .event-card{
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  }
  .events-premium .event-card:hover{
    transform: translateY(-6px);
    border-color: rgba(202,163,90,.18);
    box-shadow: 0 28px 90px rgba(0,0,0,.45);
  }
}

/* Footer buttons */
.events-premium .events-foot{
  margin-top: 24px;
  display:flex;
  justify-content:center;
  gap: 12px;
  flex-wrap:wrap;
}

/* Tablet */
@media (max-width: 980px){
  .events-premium .event-card{
    grid-column: span 12;
  }
  .events-premium .event-media{
    height: 280px;
  }
}

/* ✅ Mobile: Vertical scroll, stacked cards */
@media (max-width: 720px){
  .events-premium{
    padding: 78px 0;
  }

  .events-premium .events-grid{
    display: grid;
    grid-template-columns: 1fr;  /* one per row */
    gap: 16px;
  }

  .events-premium .event-card{
    grid-column: auto;
    border-radius: 26px;
  }

  .events-premium .event-media{
    height: 260px;              /* mobile image height */
    background-position: center;
  }

  .events-premium .event-name{
    font-size: 1.45rem;
    line-height: 1.15;
  }

  .events-premium .event-host{
    font-size: 1.05rem;
  }

  .events-premium .event-desc{
    font-size: 0.8rem;
    font-weight: 400 !important;
    opacity: 0.85
  }
}







/* =========================================Premium Blog Section (White)======================================== */

.blog-white{
  padding: 100px 0;
  background: #ffffff;
}

.blog-head{
  text-align:center;
  max-width: 920px;
  margin: 0 auto 34px;
}

.blog-badge{
  display:inline-flex;
  align-items:center;
  padding: 9px 16px;
  border-radius: 999px;
  background: rgba(202,163,90,.14);
  border: 1px solid rgba(202,163,90,.28);
  color: #0b1220;
  font-weight: 900;
  font-size: .85rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.blog-title{
  margin: 16px 0 10px;
  font-size: clamp(2.2rem, 4.5vw, 3.1rem);
  font-weight: 900;
  line-height: 1.1;
  color: #0b1220;
}

.blog-sub{
  margin: 0 auto;
  max-width: 50ch;
  color: rgba(11,18,32,.68);
  line-height: 1.85;
  font-weight: 550;
  font-size: clamp(1.05rem, 2.4vw, 1.2rem);
}

/* Grid */
.blog-grid{
  display:grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px;
  margin-top: 26px;
}

/* Card */
.blog-card{
  grid-column: span 4;
  border-radius: 26px;
  overflow:hidden;
  border: 1px solid rgba(15,23,42,.10);
  background: #fff;
  box-shadow: 0 24px 90px rgba(2,8,23,.08);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  min-width: 0;
}

.blog-card:hover{
  transform: translateY(-6px);
  border-color: rgba(202,163,90,.22);
  box-shadow: 0 34px 110px rgba(2,8,23,.12);
}

/* Media */
.blog-media{
  position: relative;
  display:block;
  height: 220px;
  overflow:hidden;
  text-decoration:none;
}

.blog-media img{
  width:100%;
  height:100%;
  object-fit: cover;
  display:block;
  transform: scale(1.04);
  transition: transform .8s ease;
}

.blog-card:hover .blog-media img{
  transform: scale(1.12);
}

.blog-chip{
  position:absolute;
  top: 14px;
  left: 14px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(15,23,42,.10);
  font-weight: 900;
  color: rgba(11,18,32,.88);
  font-size: .85rem;
}

/* Body */
.blog-body{
  padding: 18px 18px 20px;
}

.blog-meta{
  display:flex;
  align-items:center;
  gap: 10px;
  color: rgba(11,18,32,.58);
  font-weight: 750;
  font-size: .92rem;
}
.blog-meta .dot{
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: rgba(47,91,255,.95);
  display:inline-block;
}

.blog-h3{
  margin: 10px 0 8px;
  font-size: 1.18rem;
  line-height: 1.25;
}

.blog-h3 a{
  color: #0b1220;
  text-decoration:none;
  font-weight: 900;
}

.blog-text{
  margin: 0;
  color: rgba(11,18,32,.72);
  line-height: 1.8;
  font-weight: 500;
}

/* Footer */
.blog-foot{
  margin-top: 14px;
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 12px;
}

.blog-author{
  color: rgba(11,18,32,.62);
  font-weight: 800;
  font-size: .95rem;
}

.blog-link{
  color: rgba(47,91,255,.95);
  font-weight: 900;
  text-decoration:none;
}

.blog-actions{
  margin-top: 22px;
  display:flex;
  justify-content:center;
  gap: 12px;
  flex-wrap:wrap;
}

.blog-btn{
  border: none;
  cursor:pointer;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 900;
  background: linear-gradient(135deg, #2f5bff, #1b3fbf);
  color: #fff;
  box-shadow: 0 18px 55px rgba(47,91,255,.22);
  transition: transform .25s ease, box-shadow .25s ease;
}
.blog-btn:hover{
  transform: translateY(-2px);
  box-shadow: 0 26px 70px rgba(47,91,255,.28);
}

.blog-btn.ghost{
  background: rgba(11,18,32,.06);
  color: rgba(11,18,32,.86);
  border: 1px solid rgba(15,23,42,.12);
  box-shadow: none;
  text-align: center;
}



/* Responsive */
@media (max-width: 980px){
  .blog-card{ grid-column: span 12; }
  .blog-media{ height: 240px; }
}






/* ======================================================================= Premium FAQ (White)========================= */

.faq-white{
  padding: 100px 0;
  background: #ffffff;
}

.faq-head{
  text-align: center;
  max-width: 920px;
  margin: 0 auto 34px;
}

.faq-badge{
  display:inline-flex;
  align-items:center;
  padding: 9px 16px;
  border-radius: 999px;
  background: rgba(202,163,90,.14);
  border: 1px solid rgba(202,163,90,.28);
  color: #0b1220;
  font-weight: 900;
}

.faq-title{
  margin: 16px 0 10px;
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  color: #0b1220;
  letter-spacing: .2px;
  line-height: 1.12;
}

.faq-sub{
  margin:0;
  color: rgba(11,18,32,.70);
  line-height: 1.8;
  font-weight: 650;
}

.faq-grid{
  display:grid;
  grid-template-columns: 1.5fr .9fr;
  gap: 18px;
  align-items: start;
  margin-top: 26px;
}

/* FAQ list */
.faq-item{
  border-radius: 22px;
  background: #ffffff;
  border: 1px solid rgba(15,23,42,.10);
  box-shadow: 0 20px 70px rgba(2,8,23,.08);
  overflow: hidden;
}

.faq-item summary{
  list-style: none;
  cursor: pointer;
  padding: 18px 18px;
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 14px;
  font-weight: 900;
  color: #0b1220;
}

.faq-item summary::-webkit-details-marker{ display:none; }

.faq-item summary span{
  flex: 1;
  min-width: 0;
}

.faq-icon{
  width: 18px;
  height: 18px;
  border-radius: 999px;
  position: relative;
  flex: 0 0 18px;
  opacity: .9;
}
.faq-icon::before,
.faq-icon::after{
  content:"";
  position:absolute;
  inset: 0;
  margin:auto;
  background: rgba(47,91,255,.95);
  border-radius: 2px;
}
.faq-icon::before{ width: 18px; height: 2px; }
.faq-icon::after{ width: 2px; height: 18px; transition: transform .35s ease; }

.faq-item[open] .faq-icon::after{
  transform: scaleY(0); /* turns plus into minus */
}

.faq-body{
  padding: 0 18px 18px;
  color: rgba(11,18,32,.75);
  line-height: 1.8;
  font-weight: 600;
}

/* Smooth accordion feel */
.faq-item{
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.faq-item:hover{
  transform: translateY(-2px);
  border-color: rgba(202,163,90,.22);
  box-shadow: 0 26px 90px rgba(2,8,23,.10);
}

/* Side card */
.faq-side-card{
  border-radius: 26px;
  background: #ffffff;
  border: 1px solid rgba(15,23,42,.10);
  box-shadow: 0 26px 90px rgba(2,8,23,.08);
  padding: 22px;
  position: sticky;
  top: 92px;
}

.faq-side-card h3{
  margin: 0 0 8px;
  color:#0b1220;
  font-size: 1.25rem;
}

.faq-side-card p{
  margin: 0 0 16px;
  color: rgba(11,18,32,.72);
  line-height: 1.8;
  font-weight: 650;
}

.faq-side-actions{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.faq-side-mini{
  display:flex;
  flex-wrap: wrap;
  gap: 10px;
}

.mini-pill{
  display:inline-flex;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(47,91,255,.08);
  border: 1px solid rgba(47,91,255,.14);
  color: rgba(11,18,32,.78);
  font-weight: 850;
  font-size: .92rem;
}



/* Responsive */
@media (max-width: 980px){
  .faq-grid{
    grid-template-columns: 1fr;
  }
  .faq-side-card{
    position: relative;
    top: 0;
  }
}
/* ==============================
   FAQ TYPOGRAPHY HIERARCHY FIX
============================== */

/* Topic / badge */
.faq-badge{
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 800;
  margin-bottom: 10px;
}

/* Main heading (H1) */
.faq-title{
  font-size: clamp(2.2rem, 4.5vw, 3.1rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 14px;
}

/* Intro paragraph under heading */
.faq-sub{
  font-size: clamp(1.05rem, 2.4vw, 1.2rem);
  line-height: 1.85;
  font-weight: 500;
  max-width: 46ch;
  margin: 0 auto;
  color: rgba(11,18,32,.68);
}

/* FAQ question (accordion title) */
.faq-item summary{
  font-size: clamp(1.05rem, 2.4vw, 1.15rem);
  font-weight: 800;
  line-height: 1.4;
}

/* FAQ answer paragraph */
.faq-body{
  font-size: clamp(0.98rem, 2.2vw, 1.05rem);
  line-height: 1.85;
  font-weight: 400; /* NORMAL — not bold */
  color: rgba(11,18,32,.75);
}




/* Premium Footer (scoped so it won't affect other sections) */
.ctk-footer{
  position: relative;
  background: radial-gradient(1200px 600px at 20% -10%, rgba(255,255,255,.08), transparent 60%),
              radial-gradient(900px 500px at 90% 0%, rgba(255,255,255,.06), transparent 55%),
              linear-gradient(180deg, #07121f 0%, #050b12 100%);
  color: rgba(255,255,255,.86);
  border-top: 1px solid rgba(255,255,255,.08);
  overflow: hidden;
}

.ctk-footer a{
  color: rgba(255,255,255,.82);
  text-decoration: none;
  transition: opacity .2s ease, transform .2s ease;
}
.ctk-footer a:hover{
  opacity: 1;
  transform: translateY(-1px);
}

.ctk-footer__top{
  padding: 70px 0 45px;
}

.ctk-footer__grid{
  display: grid;
  grid-template-columns: 1.3fr .8fr .8fr 1fr;
  gap: 28px;
  align-items: start;
}

.ctk-footer__brand{ max-width: 520px; }

.ctk-footer__logo{
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.10);
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  box-shadow: 0 14px 40px rgba(0,0,0,.35);
}
.ctk-footer__logo img{
  width: 42px;
  height: 42px;
  object-fit: contain;
  display: block;
}

.ctk-footer__desc{
  line-height: 1.7;
  font-size: 0.98rem;
  color: rgba(255,255,255,.78);
  margin: 0 0 14px;
}

.ctk-footer__meta{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.ctk-footer__pill{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.10);
  font-size: .86rem;
}

.ctk-footer__col{ min-width: 160px; }

.ctk-footer__h{
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  letter-spacing: .3px;
  margin: 6px 0 14px;
  color: rgba(255,255,255,.95);
  font-size: 1rem;
}

.ctk-footer__list{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}
.ctk-footer__list a{
  opacity: .86;
}

.ctk-footer__newsletter .ctk-footer__small{
  margin: 0 0 12px;
  color: rgba(255,255,255,.76);
  line-height: 1.6;
  font-size: .95rem;
}

.ctk-footer__form{
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  margin: 10px 0 10px;
}

.ctk-footer__input{
  width: 100%;
  padding: 12px 14px;
  border-radius: 14px;
  outline: none;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.92);
}
.ctk-footer__input::placeholder{
  color: rgba(255,255,255,.55);
}

.ctk-footer__btn{
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.10);
  color: rgba(255,255,255,.92);
  cursor: pointer;
  font-weight: 700;
  letter-spacing: .2px;
}
.ctk-footer__btn:hover{
  background: rgba(255,255,255,.14);
}

.ctk-footer__tiny{
  margin: 0;
  font-size: .82rem;
  color: rgba(255,255,255,.62);
}
.ctk-footer__tiny a{ text-decoration: underline; text-underline-offset: 3px; }

.ctk-footer__bottom{
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 18px 0 10px;
}

.ctk-footer__bottomRow{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.ctk-footer__copyright{
  opacity: .82;
  font-size: .92rem;
}

.ctk-footer__bottomLinks{
  display: flex;
  gap: 16px;
  align-items: center;
}
.ctk-footer__bottomLinks a{
  opacity: .82;
  font-size: .92rem;
}

.ctk-footer__credits{
  text-align: center;
  padding: 10px 0 0;
  font-size: .86rem;
  color: rgba(255,255,255,.62);
}
.ctk-footer__credits span{
  color: rgba(255,255,255,.9);
  font-weight: 700;
}

/* Responsive */
@media (max-width: 980px){
  .ctk-footer__grid{
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 560px){
  .ctk-footer__grid{
    grid-template-columns: 1fr;
  }
  .ctk-footer__form{
    grid-template-columns: 1fr;
  }
}





/* =========================
   CTK Premium Footer (Scoped)
   ========================= */
.ctk-footer{
  position: relative;
  background: radial-gradient(1200px 600px at 20% -10%, rgba(255,255,255,.08), transparent 60%),
              radial-gradient(900px 500px at 90% 0%, rgba(255,255,255,.06), transparent 55%),
              linear-gradient(180deg, #07121f 0%, #050b12 100%);
  color: rgba(255,255,255,.86);
  border-top: 1px solid rgba(255,255,255,.08);
  overflow: hidden;
}

.ctk-footer a{
  color: rgba(255,255,255,.84);
  text-decoration: none;
  transition: opacity .2s ease, transform .2s ease, background .2s ease;
}
.ctk-footer a:hover{
  opacity: 1;
  transform: translateY(-1px);
}

.ctk-footer__top{
  padding: 68px 0 44px;
}

.ctk-footer__grid{
  display: grid;
  grid-template-columns: 1.25fr .8fr .95fr 1.15fr;
  gap: 26px;
  align-items: start;
}

/* Brand */
.ctk-footer__brand{ max-width: 560px; }

.ctk-footer__logo{
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.10);
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  box-shadow: 0 14px 40px rgba(0,0,0,.35);
}

.ctk-footer__logo img{
  width: 42px;
  height: 42px;
  object-fit: contain;
  display: block;
}

.ctk-footer__desc{
  margin: 0 0 14px;
  line-height: 1.7;
  font-size: .98rem;
  color: rgba(255,255,255,.78);
}

.ctk-footer__pills{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}

.ctk-footer__pill{
  display: inline-flex;
  align-items: center;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.10);
  font-size: .86rem;
}

/* Titles + lists */
.ctk-footer__h{
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  letter-spacing: .25px;
  margin: 6px 0 14px;
  color: rgba(255,255,255,.95);
  font-size: 1rem;
}

.ctk-footer__col{ min-width: 170px; }

.ctk-footer__list{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.ctk-footer__list a{ opacity: .86; }
.ctk-footer__list a:hover{ opacity: 1; }

/* CTA buttons in footer */
.ctk-footer__ctaRow{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.ctk-footer__ctaBtn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 14px;
  border-radius: 14px;
  font-weight: 700;
  letter-spacing: .2px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  opacity: .95;
}

.ctk-footer__ctaBtn.primary{
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.18);
}
.ctk-footer__ctaBtn.ghost{
  background: rgba(0,0,0,.18);
}

.ctk-footer__ctaBtn:hover{
  background: rgba(255,255,255,.14);
}

/* Social row */
.ctk-footer__social{
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}

.ctk-footer__socialBtn{
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 12px 34px rgba(0,0,0,.25);
}

.ctk-footer__socialBtn svg{
  width: 20px;
  height: 20px;
  fill: rgba(255,255,255,.86);
}

.ctk-footer__socialBtn:hover{
  background: rgba(255,255,255,.10);
}

/* Map */
.ctk-footer__map{ min-width: 240px; }

.ctk-footer__mapFrame{
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.05);
  box-shadow: 0 18px 50px rgba(0,0,0,.35);
}

.ctk-footer__mapFrame iframe{
  width: 100%;
  height: 220px;
  border: 0;
  display: block;
}

/* Tiny text */
.ctk-footer__tiny{
  margin: 10px 0 0;
  font-size: .84rem;
  color: rgba(255,255,255,.62);
  line-height: 1.6;
}
.ctk-footer__tiny a{
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Bottom bar */
.ctk-footer__bottom{
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 16px 0 10px;
}

.ctk-footer__bottomRow{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.ctk-footer__copy{
  opacity: .84;
  font-size: .92rem;
}

.ctk-footer__bottomLinks{
  display: flex;
  gap: 16px;
  align-items: center;
}
.ctk-footer__bottomLinks a{
  opacity: .84;
  font-size: .92rem;
}

.ctk-footer__credits{
  text-align: center;
  padding: 10px 0 0;
  font-size: .86rem;
  color: rgba(255,255,255,.62);
}
.ctk-footer__credits span{
  color: rgba(255,255,255,.92);
  font-weight: 800;
}


/* awe-socials */
.social-icons{
  display:flex;
  align-items:center;
  gap:16px;
  flex-wrap:wrap;
}

.social-icons a{
  width:50px;
  height:50px;

  display:flex;
  align-items:center;
  justify-content:center;

  text-decoration:none;

  border-radius:50%;

  background:rgba(255,255,255,0.08);

  border:1px solid rgba(255,255,255,0.12);

  color:#fff;

  font-size:22px;

  transition:0.3s ease;
}

.social-icons a:hover{
  transform:translateY(-4px);

  background:#2f5bff;

  border-color:#2f5bff;

  box-shadow:0 10px 25px rgba(47,91,255,0.35);
}

/* Responsive */
@media (max-width: 1024px){
  .ctk-footer__grid{
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px){
  .ctk-footer__grid{
    grid-template-columns: 1fr;
  }
  .ctk-footer__mapFrame iframe{
    height: 200px;
  }
}





