:root{
  --bg:#f3f7fb;
  --white:#ffffff;
  --surface:#f8fbff;
  --text:#122033;
  --muted:#66788d;
  --heading:#0d1c2c;

  --line:#e4ecf4;
  --line-dark:#d7e1eb;

  --primary:#0e4a7a;
  --primary-2:#1d6aa8;
  --secondary:#71b84a;
  --secondary-2:#4e8c2c;

  --dark:#0d2037;
  --dark-2:#112b46;

  --gold:#c6a670;
  --danger:#d65252;

  --grad-primary:linear-gradient(135deg,#0e4a7a 0%, #1c6cad 60%, #71b84a 100%);
  --grad-soft:linear-gradient(135deg, rgba(14,74,122,.08), rgba(113,184,74,.08));

  --shadow-xs:0 6px 18px rgba(15,31,52,.05);
  --shadow-sm:0 14px 34px rgba(15,31,52,.08);
  --shadow-md:0 22px 55px rgba(15,31,52,.12);
  --shadow-lg:0 38px 90px rgba(15,31,52,.16);

  --radius-sm:12px;
  --radius-md:18px;
  --radius-lg:26px;
  --radius-xl:34px;

  --container:1280px;
  --wrap:1180px;
  --header-h:88px;

  --transition:all .3s ease;
}

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  font-family:"Inter",system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  background:
    radial-gradient(circle at top left, rgba(113,184,74,.05), transparent 25%),
    radial-gradient(circle at top right, rgba(29,106,168,.06), transparent 30%),
    linear-gradient(180deg,#f7fbff 0%, #f2f6fa 100%);
  color:var(--text);
  line-height:1.5;
  overflow-x:hidden;
}

img{
  display:block;
  max-width:100%;
}

a{
  text-decoration:none;
  color:inherit;
}

button,
input{
  font:inherit;
}

button{
  background:none;
  border:none;
  cursor:pointer;
}

.container{
  width:min(calc(100% - 44px), var(--container));
  margin-inline:auto;
}

.wrap{
  width:min(calc(100% - 44px), var(--wrap));
  margin-inline:auto;
}

/* =========================
   HEADER
========================= */
.site-header{
  position:sticky;
  top:0;
  z-index:1000;
  background:rgba(255,255,255,.88);
  backdrop-filter:blur(18px);
  -webkit-backdrop-filter:blur(18px);
  border-bottom:1px solid rgba(222,232,242,.8);
  transition:var(--transition);
}

.site-header.is-scrolled{
  background:rgba(255,255,255,.96);
  box-shadow:0 12px 30px rgba(15,31,52,.08);
}

.nav-wrap{
  min-height:var(--header-h);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}

.brand{
  display:flex;
  align-items:center;
  flex-shrink:0;
}

.brand-logo-img{
  height:120px;
  width:auto;
  object-fit:contain;
  transition:all .3s ease;
}

.site-header.is-scrolled .brand-logo-img{
  height:84px;
}

.desktop-nav{
  display:flex;
  align-items:center;
  gap:28px;
  margin-left:auto;
}

.desktop-nav a,
.nav-item-dropdown > a{
  position:relative;
  font-size:13px;
  font-weight:700;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:#1d334b;
  transition:var(--transition);
}

.desktop-nav a::after,
.nav-item-dropdown > a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-8px;
  width:0;
  height:2px;
  border-radius:999px;
  background:var(--grad-primary);
  transition:width .28s ease;
}

.desktop-nav a:hover,
.nav-item-dropdown > a:hover{
  color:var(--primary);
}

.desktop-nav a:hover::after,
.nav-item-dropdown > a:hover::after{
  width:100%;
}

.nav-caret{
  font-size:10px;
  margin-left:3px;
}

.header-actions{
  display:flex;
  align-items:center;
  margin-left:18px;
}

.enquire-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:144px;
  height:48px;
  padding:0 24px;
  border-radius:999px;
  color:#fff;
  font-size:13px;
  font-weight:800;
  letter-spacing:.08em;
  background:var(--grad-primary);
  box-shadow:0 14px 30px rgba(14,74,122,.22);
  transition:var(--transition);
}

.enquire-btn:hover{
  transform:translateY(-2px);
  box-shadow:0 18px 38px rgba(14,74,122,.28);
}

.menu-toggle{
  width:46px;
  height:46px;
  display:none;
  align-items:center;
  justify-content:center;
  flex-direction:column;
  gap:5px;
  background:#eef4fa;
  border:1px solid var(--line);
  border-radius:14px;
}

.menu-toggle span{
  width:20px;
  height:2px;
  background:#1b334d;
  border-radius:999px;
  transition:var(--transition);
}

.menu-toggle.active span:nth-child(1){
  transform:translateY(7px) rotate(45deg);
}
.menu-toggle.active span:nth-child(2){
  opacity:0;
}
.menu-toggle.active span:nth-child(3){
  transform:translateY(-7px) rotate(-45deg);
}

.mobile-nav{
  display:none;
  padding:12px 18px 18px;
  background:#fff;
  border-top:1px solid var(--line);
}

.mobile-nav.active{
  display:block;
}

.mobile-nav a{
  display:block;
  padding:14px 10px;
  border-bottom:1px solid #eef3f8;
  font-size:14px;
  font-weight:700;
  color:#1c334d;
}

.mobile-nav a:last-child{
  border-bottom:none;
}

.mobile-enquire{
  margin-top:10px;
  text-align:center;
  color:#fff !important;
  background:var(--grad-primary);
  border-radius:14px;
}

/* HERO FULL */
.pk-hero-banner-full{
  position:relative;
  height:620px;
  border-radius:24px;
  overflow:hidden;
}

/* SLIDER */
.hero-slider{
  position:absolute;
  inset:0;
}

.hero-slide{
  position:absolute;
  inset:0;
  opacity:0;
  transition:opacity 1s ease;
}

.hero-slide img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.hero-slide.active{
  opacity:1;
}

/* OVERLAY */
.pk-hero-banner-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(to right, rgba(0,0,0,.55), rgba(0,0,0,.15));
  z-index:2;
}

/* SEARCH BOX (DESKTOP FLOAT) */
.pk-hero-search-box{
  position:absolute;
  bottom:30px;
  left:50%;
  transform:translateX(-50%);
  width:80%;
  max-width:900px;
  background:#fff;
  border-radius:16px;
  padding:16px;
  z-index:3;
  box-shadow:0 10px 40px rgba(0,0,0,.2);
}

/* SEARCH BODY */
.pk-hero-search-body{
  display:grid;
  grid-template-columns:1fr auto;
  gap:10px;
}

.pk-hero-search-field input{
  width:100%;
  height:48px;
  border:1px solid #ddd;
  border-radius:10px;
  padding:0 14px;
}

.pk-hero-search-btn{
  height:48px;
  padding:0 20px;
  background:#0e4a7a;
  color:#fff;
  border:none;
  border-radius:10px;
  cursor:pointer;
}

/* TABS */
.pk-hero-search-tabs{
  display:flex;
  gap:8px;
  margin-bottom:10px;
}

.pk-hero-tab{
  padding:6px 14px;
  border-radius:20px;
  border:1px solid #ddd;
  background:#f5f5f5;
  cursor:pointer;
}

.pk-hero-tab.active{
  background:#0e4a7a;
  color:#fff;
  border:none;
}

/* 📱 MOBILE RESPONSIVE */
@media (max-width:767px){

  .pk-hero-banner-full{
    height:auto;
    border-radius:16px;
  }

  .pk-hero-banner-image{
    height:240px;
  }

  .hero-slider{
    position:relative;
    height:240px;
  }

  .pk-hero-banner-overlay{
    display:none;
  }

  /* SEARCH BELOW IMAGE */
  .pk-hero-search-box{
    position:relative;
    transform:none;
    left:auto;
    bottom:auto;
    width:100%;
    margin-top:12px;
    border-radius:14px;
  }

  .pk-hero-search-body{
    grid-template-columns:1fr;
  }

  .pk-hero-search-btn{
    width:100%;
  }

}

.pk-highlights{
  padding:50px 0;
}

.pk-highlights-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px;
}

/* CARD */
.pk-highlight-card{
  background:#fff;
  padding:26px;
  border-radius:18px;
  box-shadow:0 10px 30px rgba(0,0,0,.06);
  transition:all .35s ease;
  border:1px solid #eee;
}

.pk-highlight-card:hover{
  transform:translateY(-6px);
  box-shadow:0 20px 50px rgba(0,0,0,.12);
}

/* ICON */
.pk-highlight-card .icon{
  width:52px;
  height:52px;
  border-radius:12px;
  background:#0e4a7a10;
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:14px;
}

.pk-highlight-card svg{
  width:24px;
  height:24px;
  fill:#0e4a7a;
}

/* TEXT */
.pk-highlight-card h3{
  font-size:18px;
  margin-bottom:8px;
  color:#0e2a47;
}

.pk-highlight-card p{
  font-size:14px;
  color:#666;
  line-height:1.6;
}

/* 📱 MOBILE */
@media(max-width:767px){
  .pk-highlights-grid{
    grid-template-columns:1fr;
  }
}
/* =========================
   COMMON SECTIONS
========================= */
.section,
.pk-section,
.spacer,
.blogsSection{
  padding:86px 0;
}

.section-head,
.pk-section-head,
.blogsHead{
  display:flex;
  align-items:end;
  justify-content:space-between;
  gap:18px;
  margin-bottom:34px;
}

.tag,
.pk-tag{
  display:inline-flex;
  align-items:center;
  padding:8px 14px;
  border-radius:999px;
  background:var(--grad-soft);
  border:1px solid rgba(14,74,122,.08);
  color:var(--primary);
  font-size:12px;
  font-weight:800;
  letter-spacing:.1em;
  text-transform:uppercase;
  margin-bottom:12px;
}

.section-head h2,
.pk-section-head h2,
.secTitle,
.blogsTitle{
  font-size:44px;
  line-height:1.08;
  font-weight:800;
  letter-spacing:-.03em;
  color:var(--heading);
}

.secTitle--center,
.secSub--center{
  text-align:center;
}

.secSub{
  max-width:760px;
  margin:14px auto 0;
  color:var(--muted);
  font-size:16px;
  line-height:1.8;
}

.view-link,
.pk-view-all,
.blogsMore{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-size:14px;
  font-weight:800;
  color:var(--primary);
  transition:var(--transition);
}

.view-link:hover,
.pk-view-all:hover,
.blogsMore:hover{
  transform:translateX(3px);
}

.blogsLine{
  display:block;
  width:90px;
  height:4px;
  border-radius:999px;
  margin-top:14px;
  background:var(--grad-primary);
}

/* =========================
   FEATURED PROJECTS CARDS
========================= */
.cards{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:26px;
}

.card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:30px;
  overflow:hidden;
  box-shadow:var(--shadow-sm);
  transition:var(--transition);
}

.card:hover{
  transform:translateY(-8px);
  box-shadow:var(--shadow-md);
}

.card-media{
  position:relative;
  height:290px;
  overflow:hidden;
}

.card-media img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .75s ease;
}

.card:hover .card-media img{
  transform:scale(1.08);
}

.pill{
  position:absolute;
  top:18px;
  left:18px;
  padding:10px 14px;
  border-radius:999px;
  background:rgba(255,255,255,.94);
  color:#17304a;
  font-size:12px;
  font-weight:800;
  box-shadow:0 8px 20px rgba(0,0,0,.10);
}

.card-body{
  padding:24px;
}

.card-body h3{
  font-size:26px;
  line-height:1.2;
  font-weight:800;
  color:#12263d;
  margin-bottom:8px;
}

.meta{
  color:var(--muted);
  font-size:14px;
  margin-bottom:16px;
}

.price{
  font-size:26px;
  font-weight:800;
  color:var(--secondary-2);
  margin-bottom:18px;
}

.card-actions{
  display:flex;
  gap:12px;
}

.btn-line,
.btn-solid{
  flex:1;
  height:50px;
  border-radius:15px;
  font-size:14px;
  font-weight:800;
  transition:var(--transition);
}

.btn-line{
  background:#f2f7fb;
  color:#17304b;
  border:1px solid #dce6ef;
}

.btn-line:hover{
  background:#eaf2f9;
}

.btn-solid{
  color:#fff;
  background:var(--grad-primary);
  box-shadow:0 14px 28px rgba(14,74,122,.18);
}

.btn-solid:hover{
  transform:translateY(-2px);
}

/* =========================
   TOP LOCATIONS
========================= */
.pk-location-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:24px;
}

.pk-location-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:28px;
  overflow:hidden;
  box-shadow:var(--shadow-sm);
  transition:var(--transition);
}

.pk-location-card:hover{
  transform:translateY(-7px);
  box-shadow:var(--shadow-md);
}

.pk-location-card img{
  width:100%;
  height:260px;
  object-fit:cover;
  transition:transform .75s ease;
}

.pk-location-card:hover img{
  transform:scale(1.06);
}

.pk-location-body{
  padding:20px 22px;
}

.pk-location-body h3{
  font-size:23px;
  font-weight:800;
  color:#163049;
}

/* =========================
   TYPES + BLOGS SLIDERS
========================= */
.typesSlider,
.blogsSlider{
  position:relative;
}

.typesViewport,
.blogsViewport{
  overflow:hidden;
}

.typesTrack,
.blogsTrack{
  display:flex;
  gap:24px;
  transition:transform .55s ease;
  will-change:transform;
}

.typeCard,
.blogCard{
  flex:0 0 calc((100% - 48px) / 3);
  min-width:0;
  background:#fff;
  border:1px solid var(--line);
  border-radius:28px;
  overflow:hidden;
  box-shadow:var(--shadow-sm);
  transition:var(--transition);
}

.typeCard:hover,
.blogCard:hover{
  transform:translateY(-8px);
  box-shadow:var(--shadow-md);
}

.typeCard__img,
.blogCard__img{
  height:250px;
  overflow:hidden;
}

.typeCard__img img,
.blogCard__img img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .75s ease;
}

.typeCard:hover .typeCard__img img,
.blogCard:hover .blogCard__img img{
  transform:scale(1.06);
}

.typeCard__body,
.blogCard__body{
  padding:24px;
}

.typeCard__body h3,
.blogCard__body h3{
  font-size:24px;
  line-height:1.25;
  font-weight:800;
  color:#13273f;
  margin-bottom:12px;
}

.typeLine{
  display:block;
  width:68px;
  height:4px;
  border-radius:999px;
  margin-bottom:14px;
  background:var(--grad-primary);
}

.typeCard__body p,
.blogCard__body p{
  color:var(--muted);
  font-size:14px;
  line-height:1.8;
  margin-bottom:20px;
}

.typeBtn,
.blogRead{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:138px;
  height:46px;
  padding:0 18px;
  border-radius:14px;
  font-size:14px;
  font-weight:800;
  transition:var(--transition);
}

.typeBtn{
  color:#fff;
  background:var(--grad-primary);
}

.blogRead{
  color:var(--primary);
  background:#edf4fa;
  border:1px solid #dce7f0;
}

.typeBtn:hover,
.blogRead:hover{
  transform:translateY(-2px);
}

.typesArrow,
.blogsArrow{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  z-index:3;
  width:54px;
  height:54px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#fff;
  color:#17304b;
  font-size:30px;
  border:1px solid var(--line);
  box-shadow:var(--shadow-sm);
  transition:var(--transition);
}

.typesArrow:hover,
.blogsArrow:hover{
  transform:translateY(-50%) scale(1.04);
}

.typesArrow--left,
.blogsArrow--left{
  left:-24px;
}

.typesArrow--right,
.blogsArrow--right{
  right:-24px;
}

.blogsDots{
  margin-top:24px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
}

.blogsDots button{
  width:10px;
  height:10px;
  border-radius:50%;
  background:#c6d3df;
  transition:var(--transition);
}

.blogsDots button.active{
  width:32px;
  border-radius:999px;
  background:var(--grad-primary);
}

/* =========================
   FOOTER
========================= */
.pk-footer{
  margin-top:22px;
  background:linear-gradient(180deg,#0d2037 0%, #0a1726 100%);
  color:#dce7f2;
}

.pk-footer-top{
  padding:74px 0 34px;
}

.pk-footer-grid{
  display:grid;
  grid-template-columns:1.05fr .8fr 1.45fr;
  gap:42px;
}

.pk-footer-logo{
  font-size:28px;
  line-height:1.1;
  font-weight:800;
  color:#fff;
  margin-bottom:18px;
  text-transform:lowercase;
}

.pk-footer-heading{
  font-size:18px;
  color:#fff;
  font-weight:800;
  margin-bottom:18px;
}

.pk-footer-subhead{
  margin-top:26px;
}

.pk-footer-text{
  color:#b9cadb;
  font-size:14px;
  line-height:1.8;
}

.pk-footer-space{
  margin:16px 0;
}

.pk-footer-links{
  list-style:none;
  display:grid;
  gap:12px;
}

.pk-footer-links a{
  color:#c7d6e4;
  transition:var(--transition);
}

.pk-footer-links a:hover{
  color:#fff;
  transform:translateX(4px);
  display:inline-block;
}

.pk-footer-socials{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:22px;
}

.pk-footer-socials a{
  width:42px;
  height:42px;
  border-radius:50%;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.1);
  transition:var(--transition);
}

.pk-footer-socials a:hover{
  transform:translateY(-3px);
  background:rgba(255,255,255,.14);
}

.pk-footer-projects{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  line-height:1.9;
}

.pk-footer-projects a{
  color:#d7e5f1;
}

.pk-footer-bottom{
  border-top:1px solid rgba(255,255,255,.08);
  padding:18px 0;
  text-align:center;
}

.pk-footer-bottom p{
  color:#a8bbcf;
  font-size:13px;
  line-height:1.7;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width:1240px){
  .cards{
    grid-template-columns:repeat(2,1fr);
  }

  .pk-location-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .trust-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .typeCard,
  .blogCard{
    flex:0 0 calc((100% - 24px) / 2);
  }

  .pk-footer-grid{
    grid-template-columns:1fr 1fr;
  }

  .pk-footer-col-wide{
    grid-column:1 / -1;
  }
}

@media (max-width:992px){
  .desktop-nav,
  .header-actions{
    display:none;
  }

  .menu-toggle{
    display:flex;
  }

  .pk-hero-banner-full{
    min-height:680px;
  }

  .pk-hero-banner-full::before{
    left:28px;
    top:92px;
    max-width:520px;
    font-size:44px;
  }

  .pk-hero-banner-full::after{
    left:28px;
    top:238px;
    max-width:500px;
    font-size:16px;
  }

  .pk-hero-search-box{
    left:24px;
    right:24px;
    bottom:24px;
  }

  .pk-hero-search-body{
    grid-template-columns:1fr;
  }

  .section,
  .pk-section,
  .spacer,
  .blogsSection{
    padding:70px 0;
  }

  .section-head h2,
  .pk-section-head h2,
  .secTitle,
  .blogsTitle{
    font-size:36px;
  }

  .typesArrow,
  .blogsArrow{
    display:none;
  }
}

@media (max-width:767px){
  .container,
  .wrap{
    width:min(calc(100% - 24px), 100%);
  }

  .nav-wrap{
    min-height:74px;
  }

  .brand-logo-img{
    height:48px;
  }

  .pk-hero-banner-section{
    padding-top:14px;
  }

  .pk-hero-banner-full{
    min-height:560px;
    border-radius:22px;
  }

  .pk-hero-banner-full::before{
    left:18px;
    top:66px;
    right:18px;
    max-width:unset;
    font-size:30px;
    line-height:1.14;
  }

  .pk-hero-banner-full::after{
    left:18px;
    right:18px;
    top:154px;
    max-width:unset;
    font-size:14px;
    line-height:1.7;
  }

  .pk-hero-search-box{
    left:14px;
    right:14px;
    bottom:14px;
    padding:14px;
    border-radius:18px;
  }

  .pk-hero-search-tabs{
    gap:8px;
    margin-bottom:12px;
  }

  .pk-hero-tab{
    font-size:12px;
    padding:10px 12px;
  }

  .pk-hero-search-field input,
  .pk-hero-search-btn{
    height:54px;
    border-radius:14px;
  }

  .trust-grid,
  .cards,
  .pk-location-grid{
    grid-template-columns:1fr;
  }

  .typeCard,
  .blogCard{
    flex:0 0 100%;
  }

  .section,
  .pk-section,
  .spacer,
  .blogsSection{
    padding:54px 0;
  }

  .section-head,
  .pk-section-head,
  .blogsHead{
    flex-direction:column;
    align-items:flex-start;
    margin-bottom:24px;
  }

  .section-head h2,
  .pk-section-head h2,
  .secTitle,
  .blogsTitle{
    font-size:28px;
  }

  .card-media,
  .pk-location-card img,
  .typeCard__img,
  .blogCard__img{
    height:220px;
  }

  .card-actions{
    flex-direction:column;
  }

  .pk-footer-grid{
    grid-template-columns:1fr;
    gap:30px;
  }

  .pk-footer-top{
    padding:54px 0 26px;
  }
}

@media (max-width:480px){
  .pk-hero-banner-full{
    min-height:520px;
  }

  .pk-hero-banner-full::before{
    font-size:26px;
  }

  .pk-hero-tab{
    flex:1 1 calc(50% - 8px);
    text-align:center;
  }

  .section-head h2,
  .pk-section-head h2,
  .secTitle,
  .blogsTitle{
    font-size:24px;
  }

  .card-media,
  .pk-location-card img,
  .typeCard__img,
  .blogCard__img{
    height:200px;
  }
}

/* CAROUSEL BASE */
.cardsViewport{
  overflow:hidden;
}

.cardsTrack{
  display:flex;
  gap:24px;
  transition:transform .5s ease;
  will-change:transform;
}

/* DESKTOP 4 CARDS */
.cardsTrack .card{
  flex:0 0 calc((100% - 72px) / 4);
}

/* TABLET */
@media(max-width:992px){
  .cardsTrack .card{
    flex:0 0 calc((100% - 24px) / 2);
  }
}

/* MOBILE */
@media(max-width:600px){
  .cardsTrack .card{
    flex:0 0 calc((100% - 16px) / 2);
  }
}

/* ARROWS */
.cardsArrow{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:48px;
  height:48px;
  border-radius:50%;
  background:#fff;
  border:1px solid #ddd;
  font-size:24px;
  cursor:pointer;
  z-index:5;
}

.cardsArrow--left{ left:-20px; }
.cardsArrow--right{ right:-20px; }

@media(max-width:992px){
  .cardsArrow{ display:none; }
}



/* MODAL BASE */
.pk-modal{
  position:fixed;
  inset:0;
  display:flex;
  align-items:center;
  justify-content:center;
  z-index:9999;
  opacity:0;
  visibility:hidden;
  transition:.3s ease;
}

/* ACTIVE */
.pk-modal.active{
  opacity:1;
  visibility:visible;
}

/* OVERLAY */
.pk-modal-overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.6);
  backdrop-filter:blur(6px);
}

/* BOX */
.pk-modal-box{
  position:relative;
  width:100%;
  max-width:420px;
  background:#fff;
  border-radius:20px;
  padding:30px;
  z-index:2;
  transform:translateY(40px);
  transition:.3s ease;
}

.pk-modal.active .pk-modal-box{
  transform:translateY(0);
}

/* CLOSE */
.pk-modal-close{
  position:absolute;
  top:12px;
  right:12px;
  width:36px;
  height:36px;
  border-radius:50%;
  background:#f2f2f2;
  font-size:20px;
}

/* FORM */
.pk-modal-form{
  display:flex;
  flex-direction:column;
  gap:12px;
  margin-top:15px;
}

.pk-modal-form input,
.pk-modal-form select{
  height:48px;
  padding:0 12px;
  border-radius:10px;
  border:1px solid #ddd;
}

.pk-modal-form button{
  margin-top:10px;
}