 /* ===== GLOBAL RESET ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
:root { --pkr-navy: #07194e; --pkr-navy-dark: #041338; --pkr-gold: #d4af37; --pkr-gold-light: #f5d878; --pkr-white: #ffffff; }
body { font-family: 'Inter', sans-serif; overflow-x: hidden; }
a { text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ol, ul {
padding-left: 0rem!important; }


    /* ================================================================
   FIX: Right-side gap / overflow strip on mobile
   Root cause: hero section or its children exceed viewport width
   ================================================================ */

html,body {max-width: 100%;overflow-x: hidden;}
.pkr-adpage-hero-section {overflow-x: hidden;}
.pkr-adpage-hero-section .pkr-adpage-hero-section__content .row {overflow-x: hidden;}
.pkr-adpage-hero-section .col-lg-4 img,
.pkr-adpage-hero-section .pkr-adpage-hero-section__hero-img {max-width: 100%;width: 100%;}
.pkr-adpage-hero-section__bg-desktop,
.pkr-adpage-hero-section__bg-mobile {max-width: 100vw;overflow: hidden;}

/* ------------navbar----------- */
/* ── Base Navbar ─────────────────────────────────────────── */
.pkr-nav {
    position: fixed;
    top: 0; left: 0;
    width: 100%; max-width: 100vw;
    z-index: 9999;
    transition: background 0.35s ease, box-shadow 0.35s ease;
    background: transparent;
}
.pkr-nav.pkr-nav--scrolled {
    background: #07194e;
    box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

/* ── Container ───────────────────────────────────────────── */
.pkr-nav__container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 9px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

/* ── Logo ────────────────────────────────────────────────── */
.pkr-nav__logo {
    height: 70px;
    width: auto;
    display: block;
}

/* ── Desktop Links ───────────────────────────────────────── */
.pkr-nav__links {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
    margin: 0; padding: 0;
    flex: 1;
    justify-content: center;
}
.pkr-nav__link {
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    padding: 6px 12px;
    border-radius: 6px;
    text-decoration: none;
    transition: color 0.25s, background 0.25s;
    white-space: nowrap;
}
.pkr-nav__link:hover {
    color: #d4af37;
    background: rgba(212,175,55,0.08);
}

/* ── Call Button ─────────────────────────────────────────── */
.pkr-nav__call-btn {
    background: #d4af37;
    color: #111;
    padding: 7px 14px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.25s;
    flex-shrink: 0;
}
.pkr-nav__call-btn:hover {
    background: #f0c95a;
    color: #111;
}

/* ── Burger (hidden on desktop) ─────────────────────────── */
.pkr-nav__burger {
    display: none;
    position: relative;
   width: 35px;
    height: 23px;
    cursor: pointer;
    flex-shrink: 0;
    z-index: 10001;
}
.pkr-nav__burger input {
    display: none;
}
.pkr-nav__burger span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: #ffffff;
    border-radius: 9px;
    left: 0;
    transition: 0.28s ease-in-out;
}
.pkr-nav__burger span:nth-of-type(1) {
    top: 0;
    transform-origin: left center;
}
.pkr-nav__burger span:nth-of-type(2) {
    top: 50%;
    transform: translateY(-50%);
    transform-origin: left center;
}
.pkr-nav__burger span:nth-of-type(3) {
    top: 100%;
    transform-origin: left center;
    transform: translateY(-100%);
}
/* Burger → X animation */
.pkr-nav__burger input:checked ~ span:nth-of-type(1) {
    transform: rotate(45deg);
    top: 1px;
    left: 4px;
}
.pkr-nav__burger input:checked ~ span:nth-of-type(2) {
    width: 0%;
    opacity: 0;
}
.pkr-nav__burger input:checked ~ span:nth-of-type(3) {
    transform: rotate(-45deg);
    top: 26px;
    left: 4px;
}

/* ── Mobile Drawer ───────────────────────────────────────── */
.pkr-nav__drawer {
    display: none; /* JS toggles .pkr-nav__drawer--open */
    flex-direction: column;
    gap: 0;
    background: #07194e;
    border-top: 1px solid rgba(212,175,55,0.25);
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1),
                padding 0.3s ease;
}
.pkr-nav__drawer.pkr-nav__drawer--open {
    display: flex;
    max-height: 500px;
    padding: 12px 0 20px;
}

.pkr-nav__drawer-links {
    list-style: none;
    margin: 0; padding: 0 20px;
    display: flex;
    flex-direction: column;
}
.pkr-nav__drawer-link {
    display: block;
    color: rgba(255,255,255,0.85);
    font-size: 16px;
    font-weight: 500;
    padding: 13px 8px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    text-decoration: none;
    transition: color 0.2s, padding-left 0.2s;
}
.pkr-nav__drawer-link:hover {
    color: #d4af37;
    padding-left: 14px;
}
.pkr-nav__drawer-links li:last-child .pkr-nav__drawer-link {
    border-bottom: none;
}

.pkr-nav__drawer-call {
    display: block;
    margin: 16px 20px 0;
    background: #d4af37;
    color: #07194e;
    font-weight: 700;
    font-size: 15px;
    padding: 13px 20px;
    border-radius: 10px;
    text-decoration: none;
    text-align: center;
    transition: background 0.2s;
}
.pkr-nav__drawer-call:hover {
    background: #f0c95a;
    color: #07194e;
}

/* ── Responsive breakpoint ──────────────────────────────── */
@media (max-width: 991px) {
    .pkr-nav__links   { display: none; }
    .pkr-nav__call-btn { display: block; }
    .pkr-nav__burger  { display: none; }
}

@media (max-width: 480px) {
    .pkr-nav__container { padding: 8px 16px; }
    .pkr-nav__logo { height: 54px; }
}


/* ===== HERO SECTION ===== */
.pkr-adpage-hero-section { position: relative; min-height: 900px; overflow: visible; /* important */padding-bottom: 80px; padding-top: 120px; }
.pkr-adpage-hero-section .pkr-adpage-hero-section__bg-desktop { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }
.pkr-adpage-hero-section .pkr-adpage-hero-section__bg-mobile { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; display: none; }
.pkr-adpage-hero-section .pkr-adpage-hero-section__overlay { position: absolute; inset: 0; background:linear-gradient(112deg, rgba(7,0,0,4.96) 0%, rgba(7,19,78,0.98) 35%, rgba(7,25,78,-0.6) 46%, rgba(7,0,0,-0.92) 100%) }
.pkr-adpage-hero-section .pkr-adpage-hero-section__content { position: relative; z-index: 5; }


    /* HERO ROW */
.pkr-adpage-hero-section .pkr-adpage-hero-section__row { min-height: 720px; align-items: center; padding: 30px 0 100px; }
.pkr-adpage-cta-banner__btn-primary,
.pkr-adpage-cta-banner__btn-secondary{box-shadow: 0 10px 25px rgba(0,0,0,0.18);}
/* LEFT COL */
.pkr-adpage-hero-section .pkr-adpage-hero-section__tag { display: inline-flex; align-items: center; padding: 10px 16px; border: 1px solid rgba(212,175,55,.55); border-radius: 8px; color: var(--pkr-gold-light); font-size: 13px; font-weight: 600; letter-spacing: .5px; margin-bottom: 22px; }
.pkr-adpage-hero-section .pkr-adpage-hero-section__title { font-family: 'Playfair Display', serif; font-size: 68px; line-height: .96; font-weight: 700; color: #fff; margin-bottom: 18px; }
.pkr-adpage-hero-section .pkr-adpage-hero-section__title span { color: var(--pkr-gold); }
.pkr-adpage-hero-section .pkr-adpage-hero-section__location { display: flex; align-items: center; gap: 9px; color: #fff; font-size: 18px; margin-bottom: 22px; }
.pkr-adpage-hero-section .pkr-adpage-hero-section__location i { color: var(--pkr-gold); }
/* PRICE BADGES */
.pkr-adpage-hero-section .pkr-adpage-hero-section__price-row { display: flex; gap: 14px; margin-bottom: 26px; flex-wrap: wrap; }
.pkr-adpage-hero-section .pkr-adpage-hero-section__price-badge { background: rgba(212,175,55,.15); border: 1.5px solid var(--pkr-gold); border-radius: 12px; padding: 12px 18px; text-align: center; min-width: 110px; }
.pkr-adpage-hero-section .pkr-adpage-hero-section__price-badge-type { display: block; font-size: 13px; font-weight: 600; color: var(--pkr-gold-light); letter-spacing: .5px; margin-bottom: 4px; }
.pkr-adpage-hero-section .pkr-adpage-hero-section__price-badge-amount { display: block; font-size: 32px; font-weight: 700; color: #fff; line-height: 1.1; }
.pkr-adpage-hero-section .pkr-adpage-hero-section__price-badge-label { display: block; font-size: 11px; color: #cbd5e1; margin-top: 3px; }
/* FEATURES */
.pkr-adpage-hero-section .pkr-adpage-hero-section__features { display: flex; flex-direction: column; gap: 9px; }
.pkr-adpage-hero-section .pkr-adpage-hero-section__feature-item { display: flex; align-items: center; gap: 14px; color: #fff; }
.pkr-adpage-hero-section .pkr-adpage-hero-section__feature-icon { width: 60px; height: 60px; border-radius: 50%; border: 1px solid rgba(212,175,55,.45); display: flex; align-items: center; justify-content: center; color: var(--pkr-gold); font-size: 30px; flex-shrink: 0; }
.pkr-adpage-hero-section .pkr-adpage-hero-section__feature-text { font-size: 15px; line-height: 1.4; }
/* HERO IMAGE (CENTER) */
.pkr-adpage-hero-section .pkr-adpage-hero-section__hero-img-wrap { text-align: center; }
.pkr-adpage-hero-section .pkr-adpage-hero-section__hero-img { width: 100%; max-width: 500px; height: auto; margin: 0 auto; }
/* ENQUIRY FORM */
.pkr-adpage-hero-section .pkr-adpage-hero-section__form-box { background: rgba(4,19,56,.93); padding: 28px 26px; border-radius: 18px; backdrop-filter: blur(10px); box-shadow: 0 10px 30px rgba(0,0,0,.3); }
.pkr-adpage-hero-section .pkr-adpage-hero-section__form-title { color: #fff; font-weight: 700; font-size: 20px; text-align: center; margin-bottom: 4px; }
.pkr-adpage-hero-section .pkr-adpage-hero-section__form-sub { color: #cbd5e1; text-align: center; font-size: 13px; margin-bottom: 20px; }
.pkr-adpage-hero-section .pkr-adpage-hero-section__form-input { height: 50px; background: transparent; border: 1px solid rgba(255,255,255,.18); color: #fff; margin-bottom: 12px; border-radius: 8px; width: 100%; padding: 0 14px; font-size: 14px; font-family: 'Inter', sans-serif; }
.pkr-adpage-hero-section .pkr-adpage-hero-section__form-input::placeholder { color: #8fa3bc; }
.pkr-adpage-hero-section .pkr-adpage-hero-section__form-input:focus { outline: none; border-color: var(--pkr-gold); }
.pkr-adpage-hero-section .pkr-adpage-hero-section__form-select { height: 50px; background: #041338; border: 1px solid rgba(255,255,255,.18); color: #8fa3bc; margin-bottom: 12px; border-radius: 8px; width: 100%; padding: 0 14px; font-size: 14px; font-family: 'Inter', sans-serif; }
.pkr-adpage-hero-section .pkr-adpage-hero-section__form-select:focus { outline: none; border-color: var(--pkr-gold); color: #fff; }
.pkr-adpage-hero-section .pkr-adpage-hero-section__form-textarea { background: transparent; border: 1px solid rgba(255,255,255,.18); color: #fff; margin-bottom: 12px; border-radius: 8px; width: 100%; padding: 12px 14px; font-size: 14px; font-family: 'Inter', sans-serif; resize: none; }
.pkr-adpage-hero-section .pkr-adpage-hero-section__form-textarea::placeholder { color: #8fa3bc; }
.pkr-adpage-hero-section .pkr-adpage-hero-section__form-textarea:focus { outline: none; border-color: var(--pkr-gold); }
.pkr-adpage-hero-section .pkr-adpage-hero-section__form-btn { width: 100%; background: var(--pkr-gold); border: none; height: 52px; font-weight: 700; font-size: 15px; border-radius: 8px; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 8px; transition: background .3s; font-family: 'Inter', sans-serif; }
.pkr-adpage-hero-section .pkr-adpage-hero-section__form-btn:hover { background: #f0c95a; }
.pkr-adpage-hero-section .pkr-adpage-hero-section__form-disclaimer { font-size: 11px; color: #8fa3bc; text-align: center; margin-top: 8px; }
/* TRUST BAR */
.pkr-adpage-hero-section .pkr-adpage-hero-section__trust-bar {position: absolute;left: 50%;bottom: -128px; /* move outside hero */transform: translateX(-50%);width: 88%;background:#07194e;border-radius: 16px;padding: 30px 20px;z-index: 10;}
.pkr-adpage-hero-section .pkr-adpage-hero-section__trust-item { display: flex; align-items: center; gap: 14px; justify-content: center; }
.pkr-adpage-hero-section .pkr-adpage-hero-section__trust-icon { font-size: 38px; color: var(--pkr-gold); }
.pkr-adpage-hero-section .pkr-adpage-hero-section__trust-label { color: #fff; margin: 0; font-weight: 700; font-size: 22px; line-height: 1.2; }
.pkr-adpage-hero-section .pkr-adpage-hero-section__trust-sublabel { font-size: 15px; color: #c9d4e8; }
.pkr-adpage-hero-section .pkr-adpage-hero-section__trust-divider { border-right: 1px solid rgba(255,255,255,.1); }

/* ===== LOCATION SECTION ===== */
.pkr-adpage-location-section { padding: 120px 0 0; background: #fffcfc; }
.pkr-adpage-location-section .pkr-adpage-location-section__heading { font-family: 'Playfair Display', serif; font-size: 42px; line-height: 1.08; font-weight: 700; color: #1a1a2e; margin-bottom: 10px; }
.pkr-adpage-location-section .pkr-adpage-location-section__heading span { display: block; color: #c89d3c; }
.pkr-adpage-location-section .pkr-adpage-location-section__divider { width: 36px; height: 3px; background: #c89d3c; border-radius: 2px; margin-bottom: 18px; }
.pkr-adpage-location-section .pkr-adpage-location-section__desc { font-size: 14px; line-height: 1.85; color: #555; margin-bottom: 20px; max-width: 100%; }
/* ===== 6 FEATURE POINTS STYLING ===== */
.pkr-adpage-feature-list { list-style: none; padding: 0; margin: 0 0 28px 0; }
.pkr-adpage-feature-list li { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; font-size: 14px; color: #1a1a2e; font-weight: 500; }
.pkr-adpage-feature-list li i { color: #c89d3c; font-size: 18px; width: 24px; text-align: centelocationr; }
.pkr-adpage-feature-list li span { line-height: 1.4; }
.pkr-adpage-location-section .pkr-adpage-location-section__explore-btn { display: inline-flex; align-items: center; padding: 13px 26px; background: #07194e; color: #fff; border-radius: 6px; font-weight: 600; font-size: 14px; transition: background .3s; text-decoration: none; margin-top: 6px; }
.pkr-adpage-location-section .pkr-adpage-location-section__explore-btn:hover { background: #0a2770; color: #fff; }
.pkr-adpage-location-section .pkr-adpage-location-section__map-wrap { position: relative; }
.pkr-adpage-location-section .pkr-adpage-location-section__map-img { width: 100%; height: auto; display: block; border-radius: 10px; }
.pkr-adpage-location-section .pkr-adpage-location-section__marker { position: absolute; display: flex; align-items: flex-start; gap: 9px; }
.pkr-adpage-location-section .pkr-adpage-location-section__pin-wrap { display: flex; flex-direction: column; align-items: center; flex-shrink: 0; }
.pkr-adpage-location-section .pkr-adpage-location-section__pin-head { width: 40px; height: 40px; border-radius: 50% 50% 50% 0; transform: rotate(-45deg); display: flex; align-items: center; justify-content: center; box-shadow: 0 6px 18px rgba(0,0,0,.28); position: relative; }
/* Icon counter-rotates so it's upright inside the rotated head */
.pkr-adpage-location-section .pkr-adpage-location-section__pin-icon { transform: rotate(45deg); font-size: 20px; color: #fff; display: flex; align-items: center; justify-content: center; }
/* Tiny dot at the very tip of the pin */
.pkr-adpage-location-section .pkr-adpage-location-section__pin-tip { width: 8px; height: 8px; border-radius: 50%; margin-top: -2px; opacity: .55; }
/* Pulsing halo around the head */
.pkr-adpage-location-section .pkr-adpage-location-section__pin-halo { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%) rotate(0deg); width: 64px; height: 64px; border-radius: 50%; opacity: 0; animation: pkrLocHalo 2.8s ease-out infinite; }
@keyframes pkrLocHalo { 0% { transform: translate(-50%,-50%) scale(.7); opacity: .6; } 100% { transform: translate(-50%,-50%) scale(1.6); opacity: 0; } }
/* Stagger halo delays */
.pkr-adpage-location-section .pkr-adpage-location-section__marker--2 .pkr-adpage-location-section__pin-halo { animation-delay: -0.5s; }
.pkr-adpage-location-section .pkr-adpage-location-section__marker--3 .pkr-adpage-location-section__pin-halo { animation-delay: -1s; }
.pkr-adpage-location-section .pkr-adpage-location-section__marker--4 .pkr-adpage-location-section__pin-halo { animation-delay: -1.5s; }
.pkr-adpage-location-section .pkr-adpage-location-section__marker--5 .pkr-adpage-location-section__pin-halo { animation-delay: -2s; }
.pkr-adpage-location-section .pkr-adpage-location-section__marker--6 .pkr-adpage-location-section__pin-halo { animation-delay: -2.4s; }
/* ===== PIN COLOUR VARIANTS (Glass crystal effect with gradients) ===== */
.pkr-adpage-location-section .pkr-adpage-location-section__pin-head--red { background: radial-gradient(circle at 38% 35%, #fca5a5, #ef4444 60%, #b91c1c); }
.pkr-adpage-location-section .pkr-adpage-location-section__pin-tip--red { background: #b91c1c; }
.pkr-adpage-location-section .pkr-adpage-location-section__pin-halo--red { border: 2px solid rgba(239,68,68,.5); }
.pkr-adpage-location-section .pkr-adpage-location-section__pin-head--purple { background: radial-gradient(circle at 38% 35%, #e9d5ff, #a855f7 60%, #7e22ce); }
.pkr-adpage-location-section .pkr-adpage-location-section__pin-tip--purple { background: #7e22ce; }
.pkr-adpage-location-section .pkr-adpage-location-section__pin-halo--purple { border: 2px solid rgba(168,85,247,.5); }
.pkr-adpage-location-section .pkr-adpage-location-section__pin-head--green { background: radial-gradient(circle at 38% 35%, #bbf7d0, #22c55e 60%, #15803d); }
.pkr-adpage-location-section .pkr-adpage-location-section__pin-tip--green { background: #15803d; }
.pkr-adpage-location-section .pkr-adpage-location-section__pin-halo--green { border: 2px solid rgba(34,197,94,.5); }
.pkr-adpage-location-section .pkr-adpage-location-section__pin-head--indigo { background: radial-gradient(circle at 38% 35%, #c7d2fe, #6366f1 60%, #3730a3); }
.pkr-adpage-location-section .pkr-adpage-location-section__pin-tip--indigo { background: #3730a3; }
.pkr-adpage-location-section .pkr-adpage-location-section__pin-halo--indigo { border: 2px solid rgba(99,102,241,.5); }
.pkr-adpage-location-section .pkr-adpage-location-section__pin-head--teal { background: radial-gradient(circle at 38% 35%, #99f6e4, #14b8a6 60%, #0f766e); }
.pkr-adpage-location-section .pkr-adpage-location-section__pin-tip--teal { background: #0f766e; }
.pkr-adpage-location-section .pkr-adpage-location-section__pin-halo--teal { border: 2px solid rgba(20,184,166,.5); }
.pkr-adpage-location-section .pkr-adpage-location-section__pin-head--cyan { background: radial-gradient(circle at 38% 35%, #a5f3fc, #06b6d4 60%, #0e7490); }
.pkr-adpage-location-section .pkr-adpage-location-section__pin-tip--cyan { background: #0e7490; }
.pkr-adpage-location-section .pkr-adpage-location-section__pin-halo--cyan { border: 2px solid rgba(6,182,212,.5); }
/* Marker text styling */
.pkr-adpage-location-section .pkr-adpage-location-section__marker-label { display: flex; flex-direction: column; padding-top: 4px; background: rgba(255,255,240,0.85); backdrop-filter: blur(2px); border-radius: 20px; padding: 4px 10px; margin-top: 4px; }
.pkr-adpage-location-section .pkr-adpage-location-section__marker-name { font-size: 12px; font-weight: 700; color: #1a1a2e; line-height: 1.3; }
.pkr-adpage-location-section .pkr-adpage-location-section__marker-dist { font-size: 11px; font-weight: 600; color: #c89d3c; }
/* ===== MARKER POSITIONS – matching the image layout ===== */
.pkr-adpage-location-section .pkr-adpage-location-section__marker--1 { top: 15%; left: 11%; }
.pkr-adpage-location-section .pkr-adpage-location-section__marker--2 { top: 3%; left: 56%; }
.pkr-adpage-location-section .pkr-adpage-location-section__marker--3 { top: 12%; right: 12%; left: auto; }
.pkr-adpage-location-section .pkr-adpage-location-section__marker--4 { top: 24%; right: 0%; left: auto; }
.pkr-adpage-location-section .pkr-adpage-location-section__marker--5 { bottom: 49%; left: 10%; top: auto; }
.pkr-adpage-location-section .pkr-adpage-location-section__marker--6 { bottom: 25%; right: 13%; left: auto; top: auto; }
/* ===== OFFERS SECTION (4 cards below) ===== */
.pkr-adpage-offers-section { background: #07194e; border-radius: 16px; padding:14px 28px 1px; margin-top: 0px; }
.pkr-adpage-offers-section .pkr-adpage-offers-section__heading { text-align: center; font-family: 'Playfair Display', serif; font-size: 38px; font-weight: 700; color: #fff; margin-bottom: 10px; line-height: 1.2; }
.pkr-adpage-offers-section .pkr-adpage-offers-section__heading span { color: #d4af37; }
.pkr-adpage-offers-section .pkr-adpage-offers-section__divider { width: 40px; height: 3px; background: #d4af37; border-radius: 2px; margin: 0 auto 34px; }
.pkr-adpage-offers-section .pkr-adpage-offers-section__card { height: 100%; display: flex; align-items: center; gap: 20px; padding: 10px 22px; border: 1.5px solid rgba(212,175,55,.4); border-radius: 10px; transition: border-color .3s, transform .2s; background: rgba(255,255,245,0.02); backdrop-filter: blur(1px); }
.pkr-adpage-offers-section .pkr-adpage-offers-section__card:hover { border-color: #d4af37; transform: translateY(-4px); }
.pkr-adpage-offers-section .pkr-adpage-offers-section__icon { width: 70px; height: 70px; display: flex; align-items: center; justify-content: center; border: 2px solid #d4af37; border-radius: 50%; color: #d4af37; font-size: 28px; flex-shrink: 0; transition: all 0.2s; }
.pkr-adpage-offers-section .pkr-adpage-offers-section__card:hover .pkr-adpage-offers-section__icon { background: rgba(212,175,55,0.1); transform: scale(1.02); }
.pkr-adpage-offers-section .pkr-adpage-offers-section__card-title { font-family: math; font-size: 26px; font-weight: 800; color: #fff; line-height: 1.05; margin-bottom: 6px; }
.pkr-adpage-offers-section .pkr-adpage-offers-section__card-desc { margin: 0; color: #d1d5db; font-size: 13px; line-height: 1.5; }
.pkr-adpage-offers-section .pkr-adpage-offers-section__note { text-align: center; margin-top: 22px; font-size: 12px; color: #9ca3af; }

      

        /* ============================================================
   SPECIFICATIONS SECTION - 9 CARDS PROFESSIONAL DESIGN
   ============================================================ */
.pkr-ad-page-specifications-new{padding:28px 0;background:#07194e;}
.pkr-ad-page-specifications-new__header{margin-bottom:3rem;}
.pkr-ad-page-specifications-new__tag{display:inline-block;background:rgba(26, 155, 108, 0.10);color:#ffffff;font-size:0.75rem;font-weight:700;letter-spacing:0.12em;text-transform:uppercase;padding:0.3rem 1rem;border-radius:50px;margin-bottom:0.8rem;}
.pkr-ad-page-specifications-new__heading{font-size:clamp(1.8rem, 3.5vw, 2.6rem);font-weight:700;color:#ffffff;margin-bottom:0.5rem;}
.pkr-ad-page-specifications-new__heading--accent{color:#d4af37;}
.pkr-ad-page-specifications-new__subtext{color:#ffffff;font-size:0.95rem;max-width:560px;margin:0 auto;}
.pkr-ad-page-specifications-new__grid{display:grid;grid-template-columns:repeat(3, 1fr);gap:30px;}
.pkr-ad-page-specifications-new__card{background:#ffffff00;border-radius:10px;overflow:hidden;transition:all 0.3s ease;}
.pkr-ad-page-specifications-new__card:hover{transform:translateY(-5px);}
.pkr-ad-page-specifications-new__card-img{width:100%;height:277px;overflow:hidden;}
.pkr-ad-page-specifications-new__card-img img{width:100%;height:100%;object-fit:cover;transition:transform 0.5s ease;}
.pkr-ad-page-specifications-new__card:hover .pkr-ad-page-specifications-new__card-img img{transform:scale(1.05);}
.pkr-ad-page-specifications-new__card-content{padding:20px;}
.pkr-ad-page-specifications-new__card-title{font-size:1.2rem;font-weight:700;color:#ffffff;margin-bottom:4px;}
.pkr-ad-page-specifications-new__card-subtitle{font-size:0.75rem;font-weight:600;color:#ffffff;text-transform:uppercase;letter-spacing:0.05em;margin-bottom:10px;}
.pkr-ad-page-specifications-new__card-desc{font-size:0.85rem;color:#ffffff;line-height:1.6;margin-bottom:15px;}
.pkr-ad-page-specifications-new__read-more{background:none;border:none;color:#ffffff;font-size:0.8rem;font-weight:600;cursor:pointer;padding:0;display:inline-flex;align-items:center;gap:5px;transition:all 0.2s;}
.pkr-ad-page-specifications-new__read-more:hover{color:#0f7a52;gap:8px;}
.pkr-ad-page-specifications-new__read-more i{font-size:0.75rem;transition:transform 0.2s;}
.pkr-ad-page-specifications-new__card-details{display:none;margin-top:15px;padding-top:15px;border-top:1px solid #eef2f6;}
.pkr-ad-page-specifications-new__card-details.show{display:block;animation:pkrFadeIn 0.3s ease;}
@keyframes pkrFadeIn{from{opacity:0;transform:translateY(-5px);}to{opacity:1;transform:translateY(0);}}
.pkr-ad-page-specifications-new__card-details ul{list-style:none;padding:0;margin:0;}
.pkr-ad-page-specifications-new__card-details ul li{font-size:0.8rem;color:#475569;padding:6px 0;display:flex;align-items:center;gap:8px;border-bottom:1px dashed #f1f5f9;}
.pkr-ad-page-specifications-new__card-details ul li:last-child{border-bottom:none;}
.pkr-ad-page-specifications-new__card-details ul li i{color:#1a9b6c;font-size:0.75rem;flex-shrink:0;}
.testimonials-section{position:relative;background:linear-gradient(90deg, #1b336e 0%, #07194e 50%, #1b336e 100%);padding:34px 0;overflow:hidden;}
.testimonials-section .section-label{display:none;}
.testimonials-section .section-title{text-align:center;color:#fff;font-size:20px;font-weight:700;margin-bottom:35px;line-height:1;}
.testimonials-section .chevron{color:#d4af37;font-size:18px;}
.testimonials-header{justify-content:center;margin-bottom:25px;}
.testimonials-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:14px;}
.testimonial-card{background:transparent;border:1px solid rgba(212,175,55,.55);border-radius:8px;padding:16px 18px;min-height:160px;transition:.3s;}
.testimonial-card:hover{border-color:#d4af37;transform:translateY(-3px);}
.quote-icon{color:#d4af37;font-size:70px;font-weight:700;line-height:1;margin-bottom:8px;}
.testimonial-text{color:rgba(255,255,255,.9);font-size:15px;line-height:1.6;margin-bottom:18px;min-height:70px;}
.testimonial-author{display:flex;align-items:center;justify-content:space-between;}
.testimonial-author-left{display:flex;align-items:center;gap:10px;}
.author-avatar{width:44px;height:44px;border-radius:50%;overflow:hidden;flex-shrink:0;background:none;padding:0;}
.author-avatar img{width:100%;height:100%;object-fit:cover;display:block;}
.author-name{color:#fff;font-size:15px;font-weight:600;margin-bottom:2px;}
.author-role{color:rgba(255,255,255,.7);font-size:13px;}
.stars{color:#f5d878;font-size:23px;letter-spacing:2px;white-space:nowrap;}

/* CTA */

/* ==================================================
CTA BANNER SECTION
================================================== */
.pkr-adpage-cta-banner{position:relative;min-height:540px;display:flex;align-items:center;justify-content:center;overflow:hidden;background:url("Images/cta.webp") center center/cover no-repeat;}
.pkr-adpage-cta-banner::before{content:"";position:absolute;inset:0;z-index:1;}
.pkr-adpage-cta-banner .container{position:relative;z-index:2;}
.pkr-adpage-cta-banner__content{max-width:650px;margin:0 auto;text-align:center;}
.pkr-adpage-cta-banner__content h2{font-family:'Playfair Display', serif;font-size:46px;font-weight:700;line-height:1.1;color:#07194e;margin-bottom:14px;}
.pkr-adpage-cta-banner__content p{font-size:17px;line-height:1.7;color:#2d3748;font-weight:500;margin-bottom:30px;}
.pkr-adpage-cta-banner__actions{display:flex;justify-content:center;align-items:center;gap:18px;flex-wrap:wrap;}
.pkr-adpage-cta-banner__btn-primary{display:inline-flex;align-items:center;justify-content:center;min-width:197px;height:42px;background:#e5b84d;color:#07194e;text-decoration:none;font-weight:700;font-size:14px;border-radius:12px;transition:.3s ease;}
.pkr-adpage-cta-banner__btn-primary:hover{background:#d4af37;color:#07194e;transform:translateY(-2px);}
.pkr-adpage-cta-banner__btn-secondary{display:inline-flex;align-items:center;justify-content:center;gap:10px;min-width:197px;height:42px;background:#07194e;color:#fff;text-decoration:none;font-weight:700;font-size:14px;border-radius:12px;transition:.3s ease;}
.pkr-adpage-cta-banner__btn-secondary:hover{background:#0c286f;color:#fff;transform:translateY(-2px);}
.pkr-adpage-cta-banner__btn-secondary i{font-size:18px;}
.pkr-ad-page-fixed-whatsapp{position:fixed !important;right:20px !important;bottom:20px !important;width:56px !important;height:56px !important;display:flex !important;align-items:center !important;justify-content:center !important;background:#25D366 !important;color:#fff !important;border-radius:50% !important;text-decoration:none !important;z-index:99999 !important;box-shadow:0 10px 25px rgba(0,0,0,.25), 0 0 30px rgba(37,211,102,.5);animation:pkrWhatsappFloat 3s ease-in-out infinite;}
.pkr-ad-page-fixed-whatsapp i{font-size:34px !important;line-height:1 !important;color:#fff !important;}
@keyframes pkrWhatsappFloat{0%,100%{transform:translateY(0);}50%{transform:translateY(-8px);}}


/*====================== Floor Plan============================ */
.pkr-adpage-floorplans-section{padding:30px 0;background:#fff;}
.pkr-adpage-floorplans-section .container{max-width:1140px;margin:0 auto;padding:12px 20px;}
.pkr-adpage-floorplans-section__header{text-align:center;margin-bottom:48px;}
.pkr-adpage-floorplans-section__title{font-size:42px;font-weight:700;color:#081d53;margin-bottom:24px;line-height:1.2;}
.pkr-adpage-floorplans-section__tabs{display:flex;justify-content:center;gap:10px;}
.pkr-adpage-floorplans-section__tab{border:none;background:#edf0f5;padding:10px 28px;border-radius:8px;font-size:15px;font-weight:600;color:#374151;cursor:pointer;transition:background 0.2s, color 0.2s;}
.pkr-adpage-floorplans-section__tab.active{background:#081d53;color:#fff;}
.pkr-adpage-floorplans-section__content{display:grid;grid-template-columns:60% 40%;gap:40px;align-items:start;}
.pkr-adpage-floorplans-section__image-col{position:relative;}
.pkr-adpage-floorplans-section__image-wrap{position:relative;width:100%;aspect-ratio:1000 / 800;background:#f8f9fc;border-radius:16px;overflow:hidden;display:flex;align-items:center;justify-content:center;box-shadow:0 4px 12px rgba(0, 0, 0, 0.02);}
.pkr-adpage-floorplans-section__image{width:100%;height:100%;display:block;object-fit:contain;object-position:center;transition:opacity 0.25s ease;background:#ffffff;}
.pkr-adpage-floorplans-section__image.fading{opacity:0;}
.pkr-adpage-floorplans-section__nav{width:40px;height:40px;border:none;border-radius:50%;background:#081d53;color:#fff;position:absolute;top:50%;transform:translateY(-50%);cursor:pointer;display:flex;align-items:center;justify-content:center;z-index:5;transition:opacity 0.2s, background 0.2s;font-size:18px;line-height:1;}
.pkr-adpage-floorplans-section__nav:disabled{opacity:0.3;cursor:default;}
.pkr-adpage-floorplans-section__nav:not(:disabled):hover{background:#0e2d7d;}
.pkr-adpage-floorplans-section__prev{left:5px;}
.pkr-adpage-floorplans-section__next{right:5px;}
.pkr-adpage-floorplans-section__dots{display:flex;justify-content:center;gap:7px;margin-top:20px;}
.pkr-adpage-floorplans-section__dot{width:8px;height:8px;border-radius:50%;background:#d1d5db;border:none;cursor:pointer;padding:0;transition:background 0.2s, transform 0.2s;}
.pkr-adpage-floorplans-section__dot.active{background:#081d53;transform:scale(1.25);}
.pkr-adpage-floorplans-section__details{display:flex;flex-direction:column;}
.pkr-adpage-floorplans-section__typical{font-size:14px;font-weight:800;letter-spacing:1px;text-transform:uppercase;color:#d4af37;background:#fef7e0;display:inline-block;padding:4px 12px;border-radius:30px;margin-bottom:16px;width:fit-content;}
.pkr-adpage-floorplans-section__details h3{font-size:32px;font-weight:700;color:#081d53;margin-bottom:20px;line-height:1.2;}
.pkr-adpage-floorplans-section__meta{display:grid;gap:16px;margin-bottom:28px;padding-bottom:28px;border-bottom:1px solid #e5e7eb;}
.pkr-adpage-floorplans-section__meta strong{display:block;font-size:13px;font-weight:700;color:#111827;margin-bottom:2px;}
.pkr-adpage-floorplans-section__meta span{font-size:15px;font-weight:500;color:#1f2937;}
.pkr-adpage-floorplans-section__features{list-style:none;padding:0;margin:0 0 32px;}
.pkr-adpage-floorplans-section__features li{margin-bottom:13px;display:flex;align-items:center;gap:10px;font-size:14px;color:#374151;}
.pkr-adpage-floorplans-section__features li i{color:#d4af37;font-size:17px;flex-shrink:0;}
.pkr-adpage-floorplans-section__btn{display:inline-block;background:#081d53;color:#fff;padding:14px 32px;border-radius:8px;font-size:15px;font-weight:600;text-decoration:none;transition:background 0.2s;text-align:center;max-width:220px;}
.pkr-adpage-floorplans-section__btn:hover{background:#0e2d7d;color:#fff;}

/* ===================== AMENITIES SECTION ===================== */

.pkr-adpage-amenities-section{padding:40px 0;background:#ffffff;overflow:hidden;}
.pkr-adpage-amenities-section .pkr-adpage-amenities-section__top-row{margin-bottom:30px;}
.pkr-adpage-amenities-section .pkr-adpage-amenities-section__heading{font-size:40px;font-weight:700;line-height:1.1;color:#081d53;margin-bottom:10px;}
.pkr-adpage-amenities-section .pkr-adpage-amenities-section__sub{font-size:18px;color:#6b7280;margin:0;}
.pkr-adpage-amenities-section .pkr-adpage-amenities-section__top-row .pkr-adpage-amenities-section__nav{display:none;}
.pkr-adpage-amenities-section .pkr-adpage-amenities-section__track{display:flex;gap:18px;overflow-x:auto;scrollbar-width:none;scroll-behavior:smooth;scroll-snap-type:x mandatory;padding:10px 0 35px;}
.pkr-adpage-amenities-section .pkr-adpage-amenities-section__track::-webkit-scrollbar{display:none;}
.pkr-adpage-amenities-section .pkr-adpage-amenities-section__card{position:relative;min-width:309px;flex:0 0 309px;border-radius:18px;overflow:visible;scroll-snap-align:start;}
.pkr-adpage-amenities-section .pkr-adpage-amenities-section__card-img{width:100%;height:220px;object-fit:cover;border-radius:18px;display:block;transition:transform .45s ease;}
.pkr-adpage-amenities-section .pkr-adpage-amenities-section__card:hover .pkr-adpage-amenities-section__card-img{transform:scale(1.05);}
.pkr-adpage-amenities-section .pkr-adpage-amenities-section__card-overlay{display:none;}
.pkr-adpage-amenities-section .pkr-adpage-amenities-section__card-label{position:absolute;left:50%;bottom:-18px;transform:translateX(-50%);display:flex;justify-content:center;width:auto;}
.pkr-adpage-amenities-section .pkr-adpage-amenities-section__card-label-pill{background:#f5f5f5;border-radius:50px;padding:11px 22px;display:flex;align-items:center;gap:8px;font-size:15px;font-weight:600;color:#1f2937;white-space:nowrap;box-shadow:0 8px 20px rgb(42 35 35 / 26%);}
.pkr-adpage-amenities-section .pkr-adpage-amenities-section__card-label-icon{width:auto;height:auto;color:#d4af37;font-size:15px;}
.pkr-adpage-amenities-section{position:relative;}
.pkr-adpage-amenities-section__side-nav{position:absolute;top:58%;transform:translateY(-50%);width:48px;height:48px;border-radius:50%;border:none;background:#081d53;color:#fff;display:flex;align-items:center;justify-content:center;font-size:22px;z-index:20;cursor:pointer;transition:.3s;}
.pkr-adpage-amenities-section__side-nav:hover{background:#d4af37;color:#081d53;}
.pkr-adpage-amenities-section__side-prev{left:236px;}
.pkr-adpage-amenities-section__side-next{right:236px;}


/* ============================================================
     LOCATION
   ============================================================ */
.pkr-loc-adv{position:relative;width:100%;min-height:676px;overflow:hidden;font-family:'Inter', system-ui, sans-serif;display:flex;align-items:stretch;}
.pkr-loc-adv__bg{position:absolute;inset:0;z-index:0;}
.pkr-loc-adv__bg img{width:100%;height:100%;object-fit:cover;object-position:center center;display:block;}
.pkr-loc-adv__dark-panel{position:absolute;inset:0;z-index:1;background:linear-gradient(to right, rgb(5 17 54 / 97%) 0%, rgb(8 19 52 / 97%) 38%, rgb(13 25 66 / 75%) 52%, rgba(5, 12, 35, 0.0) 68%);backdrop-filter:blur(0px);}
.pkr-loc-adv__dark-panel::before{content:'';position:absolute;left:-80px;bottom:-80px;width:500px;height:500px;border-radius:50%;border:1px solid rgba(180, 145, 60, 0.10);box-shadow:0 0 0 40px rgba(180,145,60,0.05), 0 0 0 90px rgba(180,145,60,0.04), 0 0 0 145px rgba(180,145,60,0.03), 0 0 0 200px rgba(180,145,60,0.02);pointer-events:none;}
.pkr-loc-adv__wrap{position:relative;z-index:2;display:grid;grid-template-columns:42% 58%;min-height:560px;padding-top:0;padding-bottom:0;}
.pkr-loc-adv__left{padding:123px 40px 48px 0;display:flex;flex-direction:column;gap:0;}
.pkr-loc-adv__eyebrow{display:flex;align-items:center;gap:12px;margin-bottom:30px;}
.pkr-loc-adv__eyebrow-logo{height:100px;width:auto;filter:brightness(0) invert(1);opacity:0.85;}
.pkr-loc-adv__eyebrow-txt{font-size:0.72rem;font-weight:700;letter-spacing:0.22em;text-transform:uppercase;color:rgba(255,255,255,0.85);}
.pkr-loc-adv__eyebrow-line{flex:1;height:1px;background:linear-gradient(to right, rgba(180,145,60,0.6), rgba(180,145,60,0.1));max-width:60px;}
.pkr-loc-adv__eyebrow-dot{font-size:13px;color:#c9a84c;}
.pkr-loc-adv__tabs{display:flex;gap:0;margin-bottom:24px;border-bottom:1px solid rgba(180,145,60,0.2);}
.pkr-loc-adv__tab{display:inline-flex;align-items:center;gap:7px;background:transparent;border:none;border-bottom:2px solid transparent;color:rgba(255,255,255,0.45);font-family:'Inter', sans-serif;font-size:18px;font-weight:600;letter-spacing:0.06em;padding:9px 18px 10px;cursor:pointer;transition:all 0.22s ease;margin-bottom:-1px;white-space:nowrap;}
.pkr-loc-adv__tab i{font-size:13px;}
.pkr-loc-adv__tab:hover{color:rgba(255,255,255,0.75);}
.pkr-loc-adv__tab--active{color:#c9a84c;border-bottom:2px solid #c9a84c;background:rgba(201,168,76,0.06);}
.pkr-loc-adv__tab--active i{color:#c9a84c;}
.pkr-loc-adv__panel{display:none;animation:pkrPanelIn 0.28s ease;}
.pkr-loc-adv__panel--active{display:block;}
@keyframes pkrPanelIn{from{opacity:0;transform:translateY(8px);}to{opacity:1;transform:translateY(0);}}
.pkr-loc-adv__panel-title{font-size:0.72rem;font-weight:700;letter-spacing:0.14em;text-transform:uppercase;color:#c9a84c;margin-bottom:14px;padding-bottom:8px;border-bottom:1px solid rgba(201,168,76,0.15);}
.pkr-loc-adv__list{list-style:none;padding:0;margin:0;display:flex;flex-direction:column;gap:0;}
.pkr-loc-adv__list li{display:flex;align-items:center;gap:10px;padding:9px 0;border-bottom:1px solid rgba(255,255,255,0.06);transition:background 0.15s;}
.pkr-loc-adv__list li:last-child{border-bottom:none;}
.pkr-loc-adv__list li:hover{padding-left:4px;}
.pkr-loc-adv__dot{width:6px;height:6px;border-radius:50%;background:#c9a84c;flex-shrink:0;box-shadow:0 0 6px rgba(201,168,76,0.6);}
.pkr-loc-adv__place{flex:1;font-size:20px;color:rgb(255 255 255);font-weight:400;line-height:1.4;}
.pkr-loc-adv__time{font-size:0.78rem;font-weight:700;color:#c9a84c;white-space:nowrap;flex-shrink:0;}
.pkr-loc-adv__right{position:relative;min-height:560px;}
.pkr-loc-adv__pin{position:absolute;display:flex;flex-direction:column;align-items:center;z-index:5;}
.pkr-loc-adv__pin-label{background:rgba(5,12,40,0.90);border:1px solid rgba(255,255,255,0.25);color:#fff;font-size:0.70rem;font-weight:700;letter-spacing:0.06em;padding:5px 12px;border-radius:4px;text-align:center;line-height:1.3;white-space:nowrap;box-shadow:0 2px 12px rgba(0,0,0,0.4);}
.pkr-loc-adv__pin-label span{display:block;font-size:0.60rem;font-weight:500;color:rgba(255,255,255,0.6);letter-spacing:0.04em;text-transform:uppercase;}
.pkr-loc-adv__pin-line{width:1px;height:28px;background:linear-gradient(to bottom, rgba(255,255,255,0.5), rgba(255,255,255,0.1));}
.pkr-loc-adv__pin-dot{width:9px;height:9px;border-radius:50%;background:#c9a84c;border:2px solid #fff;box-shadow:0 0 8px rgba(201,168,76,0.8), 0 0 16px rgba(201,168,76,0.4);animation:pkrPinPulse 2s ease-in-out infinite alternate;}
@keyframes pkrPinPulse{0%{box-shadow:0 0 6px rgba(201,168,76,0.7), 0 0 14px rgba(201,168,76,0.3);}100%{box-shadow:0 0 12px rgba(201,168,76,1.0), 0 0 28px rgba(201,168,76,0.6);}}
.pkr-loc-adv__pin--1{top:18%;left:28%;}
.pkr-loc-adv__pin--2{top:24%;right:10%;}
.pkr-otp-modal{border:none;border-radius:24px;padding:35px;text-align:center;}
.pkr-otp-logo{width:180px;margin:0 auto 20px;display:block;}
.pkr-otp-input{height:55px;border-radius:12px;text-align:center;font-size:22px;letter-spacing:8px;margin:20px 0;}
.pkr-verify-btn{width:100%;height:55px;border:none;border-radius:12px;background:#d4af37;color:#07194e;font-weight:700;}
.pkr-ad-page-footer{background:#07194e;padding:80px 0 0;color:rgba(255,255,255,0.75);}
.pkr-ad-page-footer__brand img{margin-bottom:1.2rem;}
.pkr-ad-page-footer__brand-text{font-size:0.9rem;line-height:1.7;margin-bottom:1.5rem;}
.pkr-ad-page-footer__social{display:flex;gap:0.75rem;flex-wrap:wrap;}
.pkr-ad-page-footer__social-link{width:40px;height:40px;border-radius:50%;background:rgba(255,255,255,0.08);border:1px solid rgba(255,255,255,0.15);color:rgb(215 180 0 / 75%);display:flex;align-items:center;justify-content:center;font-size:1rem;transition:var(--pkr-transition);}
.pkr-ad-page-footer__social-link:hover{background:var(--pkr-teal);border-color:var(--pkr-teal);color:var(--pkr-white);transform:translateY(-3px);}
.pkr-ad-page-footer__col-heading{font-size:0.85rem;font-weight:700;letter-spacing:0.12em;text-transform:uppercase;color:var(--pkr-white);margin-bottom:1.2rem;}
.pkr-ad-page-footer__links li{margin-bottom:0.5rem;}
.pkr-ad-page-footer__link{color:rgba(255,255,255,0.65);font-size:0.88rem;transition:color 0.2s;}
.pkr-ad-page-footer__link:hover{color:var(--pkr-teal-light);}
.pkr-ad-page-footer__address{font-size:0.88rem;line-height:1.7;}
.pkr-ad-page-footer__address p{margin-bottom:0.6rem;display:flex;align-items:flex-start;gap:0.5rem;}
.pkr-ad-page-footer__address .bi{color:#c1a300;flex-shrink:0;margin-top:3px;}
.pkr-ad-page-footer__bottom{margin-top:4rem;border-top:1px solid rgba(255,255,255,0.10);padding:1.4rem 0;display:flex;align-items:center;justify-content:space-between;flex-wrap:wrap;gap:0.8rem;}
.pkr-ad-page-footer__copyright{font-size:0.83rem;color:rgba(255,255,255,0.5);margin:0;}
.pkr-ad-page-footer__legal{display:flex;align-items:center;gap:0.75rem;flex-wrap:wrap;font-size:0.83rem;color:rgba(255,255,255,0.4);}
.pkr-ad-page-footer__legal-link{color:rgba(255,255,255,0.65);font-weight:600;font-size:0.83rem;transition:color 0.2s;}
.pkr-ad-page-footer__legal-link:hover{color:var(--pkr-teal-light);}
.pkr-ad-page-footer__links {list-style: none !important;padding-left: 0 !important;margin-left: 0 !important;}
.pkr-ad-page-footer__links li {list-style: none !important;}



/* ================================================================
   PKR FORM – REAL-TIME VALIDATION STATES
   ================================================================ */

/* Valid input */
.pkr-adpage-hero-section .pkr-adpage-hero-section__form-input.pkr-valid,
.pkr-adpage-hero-section .pkr-adpage-hero-section__form-select.pkr-valid,
.pkr-adpage-hero-section .pkr-adpage-hero-section__form-textarea.pkr-valid {border-color: #22c55e !important;background: rgba(34,197,94,0.06) !important;}
/* Invalid input */
.pkr-adpage-hero-section .pkr-adpage-hero-section__form-input.pkr-invalid,
.pkr-adpage-hero-section .pkr-adpage-hero-section__form-select.pkr-invalid,
.pkr-adpage-hero-section .pkr-adpage-hero-section__form-textarea.pkr-invalid {border-color: #ef4444 !important;background: rgba(239,68,68,0.06) !important;}
/* Feedback message line */
.pkr-field-feedback {font-size: 11.5px;margin-top: -8px;margin-bottom: 9px;padding-left: 4px;display: flex;align-items: center;gap: 5px;min-height: 18px;transition: color 0.2s;}
.pkr-field-feedback--ok {color: #4ade80;}
.pkr-field-feedback--error {color: #f87171;}
.pkr-field-feedback i {font-size: 12px;flex-shrink: 0;}
/* ================================================================
   SUBMIT BUTTON STATES
   ================================================================ */
.pkr-adpage-hero-section .pkr-adpage-hero-section__form-btn:disabled {background: #6b7280 !important;cursor: not-allowed !important;opacity: 0.7;}
.pkr-adpage-hero-section .pkr-adpage-hero-section__form-btn.pkr-btn-ready {background: var(--pkr-gold) !important;animation: pkrBtnPulse 2s ease-in-out infinite;}
@keyframes pkrBtnPulse {0%, 100% { box-shadow: 0 0 0 0 rgba(212,175,55,0.55); } 50%       { box-shadow: 0 0 0 8px rgba(212,175,55,0); }}
.pkr-adpage-hero-section .pkr-adpage-hero-section__form-btn.pkr-btn-loading {background: #5a6a8a !important;animation: none !important;cursor: not-allowed;gap: 10px;}
.pkr-spinner {display: inline-block;width: 18px;height: 18px;border: 2.5px solid rgba(7,25,78,0.3);border-top-color: #07194e;border-radius: 50%;animation: pkrSpin 0.75s linear infinite;flex-shrink: 0;}
@keyframes pkrSpin {to { transform: rotate(360deg); }}
/* ================================================================
   SUCCESS MODAL  (theme: navy + gold, no Bootstrap dependency)
   ================================================================ */
#pkrSuccessModal {position: fixed;inset: 0;z-index: 99999;pointer-events: auto;}
.pkr-smodal-backdrop {position: absolute;inset: 0;background: rgba(4, 14, 50, 0.82);backdrop-filter: blur(5px);display: flex;align-items: center;justify-content: center;padding: 16px;opacity: 0;transition: opacity 0.32s ease;}
.pkr-smodal-backdrop--in {opacity: 1;}
.pkr-smodal-box {background: #07194e;border: 1.5px solid rgba(212,175,55,0.45);border-radius: 20px;width: 100%;max-width: 440px;box-shadow: 0 30px 80px rgba(0,0,0,0.55);overflow: hidden;transform: translateY(32px) scale(0.96);opacity: 0;transition: transform 0.36s cubic-bezier(0.34,1.46,0.64,1), opacity 0.3s ease;}
.pkr-smodal-box--in {transform: translateY(0) scale(1);opacity: 1;}
.pkr-smodal-header {background: linear-gradient(135deg, #041338 0%, #07194e 60%, #0d2870 100%);border-bottom: 1px solid rgba(212,175,55,0.3);padding: 18px 22px;display: flex;align-items: center;justify-content: space-between;}
.pkr-smodal-logo {height: 44px;width: auto;object-fit: contain;display: block;}
.pkr-smodal-close {background: rgba(255,255,255,0.08);border: 1px solid rgba(255,255,255,0.15);color: #fff;font-size: 20px;line-height: 1;width: 34px;height: 34px;border-radius: 50%;cursor: pointer;display: flex;align-items: center;justify-content: center;transition: background 0.2s;}
.pkr-smodal-close:hover { background: rgba(212,175,55,0.25); }
.pkr-smodal-body {padding: 28px 28px 16px;text-align: center;}
.pkr-smodal-check-wrap {margin: 0 auto 18px;width: 72px;height: 72px;}
.pkr-smodal-checkmark {width: 72px;height: 72px;border-radius: 50%;display: block;stroke-width: 3;stroke: #d4af37;stroke-miterlimit: 10;}
.pkr-smodal-checkmark__circle {stroke: #d4af37;stroke-dasharray: 166;stroke-dashoffset: 166;stroke-width: 3;stroke-miterlimit: 10;fill: rgba(212,175,55,0.1);animation: pkrStrokeCircle 0.55s cubic-bezier(0.65, 0, 0.45, 1) 0.15s forwards;}
.pkr-smodal-checkmark__check {transform-origin: 50% 50%;stroke-dasharray: 48;stroke-dashoffset: 48;stroke: #d4af37;stroke-width: 3;animation: pkrStrokeCheck 0.4s cubic-bezier(0.65, 0, 0.45, 1) 0.65s forwards;}
@keyframes pkrStrokeCircle {100% { stroke-dashoffset: 0; }}
@keyframes pkrStrokeCheck {100% { stroke-dashoffset: 0; }}
.pkr-smodal-title {font-family: 'Playfair Display', serif;font-size: 26px;font-weight: 700;color: #d4af37;margin-bottom: 10px;}
.pkr-smodal-msg {font-size: 14px;color: #c9d4e8;line-height: 1.7;margin-bottom: 0;}
.pkr-smodal-divider {width: 40px;height: 2px;background: linear-gradient(90deg, transparent, #d4af37, transparent);margin: 18px auto;border-radius: 2px;}
.pkr-smodal-dl-label {font-size: 13px;color: rgba(255,255,255,0.75);margin-bottom: 14px;}
.pkr-smodal-dl-btn {display: inline-flex;align-items: center;justify-content: center;gap: 10px;width: 100%;max-width: 320px;height: 52px;background: linear-gradient(135deg, #d4af37 0%, #f5d878 50%, #c89d3c 100%);color: #07194e;font-weight: 700;font-size: 15px;border-radius: 10px;text-decoration: none;transition: transform 0.2s, box-shadow 0.2s;box-shadow: 0 6px 22px rgba(212,175,55,0.40);margin-bottom: 14px;}
.pkr-smodal-dl-btn:hover {transform: translateY(-2px);box-shadow: 0 10px 30px rgba(212,175,55,0.55);color: #07194e;}
.pkr-smodal-dl-btn i {font-size: 20px;}
.pkr-smodal-note {font-size: 11.5px;color: rgba(255,255,255,0.45);margin: 0;}
.pkr-smodal-footer {padding: 14px 28px 20px;text-align: center;}
.pkr-smodal-close-btn {background: rgba(255,255,255,0.07);border: 1px solid rgba(255,255,255,0.18);color: rgba(255,255,255,0.65);font-size: 13px;font-weight: 600;padding: 9px 30px;border-radius: 8px;cursor: pointer;transition: background 0.2s, color 0.2s;font-family: 'Inter', sans-serif;}
.pkr-smodal-close-btn:hover {background: rgba(212,175,55,0.15);color: #d4af37;border-color: rgba(212,175,55,0.4);}
/* ================================================================
   TOAST (error / info)
   ================================================================ */
.pkr-toast {position: fixed;bottom: 90px;right: 20px;z-index: 100000;background: #1e293b;border: 1px solid rgba(255,255,255,0.15);border-radius: 10px;padding: 13px 20px;color: #f1f5f9;font-size: 14px;font-family: 'Inter', sans-serif;display: flex;align-items: center;gap: 10px;box-shadow: 0 10px 30px rgba(0,0,0,0.35);max-width: 340px;transform: translateY(20px);opacity: 0;transition: transform 0.35s ease, opacity 0.35s ease;}
.pkr-toast--in {transform: translateY(0);opacity: 1;}
.pkr-toast--error { border-color: rgba(239,68,68,0.5); }
.pkr-toast--error i { color: #f87171; }
.pkr-toast i { font-size: 16px; flex-shrink: 0; }


/* ================================================================================================================== */
/* =============================================Responsive=========================================================== */
/* ================================================================================================================== */



@media (max-width:1100px) {
    .pkr-adpage-hero-section__brochure-btn{
        display: none !important;
    }}


@media (max-width:1000px) {
 div#exclusive-area-pc-hide {
    display: none;
}
  .grid-system-for-mobile {
   display: grid;
    grid-template-columns: 1fr 1fr;
    grid-row-gap: 13px;
    grid-column-gap: 13px;
}
.grid-system-for-mobile .inside-each-box article.pkr-adpage-offers-section__card {
    padding: 16px 10px;
}
.grid-system-for-mobile .inside-each-box article.pkr-adpage-offers-section__card .pkr-adpage-offers-section__icon {
    width: auto;
    height: auto !important;
    padding: 6px 11px;
    font-size: 21px;
}
.grid-system-for-mobile .inside-each-box article.pkr-adpage-offers-section__card h3.pkr-adpage-offers-section__card-title {
    font-size: 15px;
    width: 100%;
}
.grid-system-for-mobile .inside-each-box article.pkr-adpage-offers-section__card p.pkr-adpage-offers-section__card-desc {
    font-size: 12px;
}
.pkr-adpage-offers-section .pkr-adpage-offers-section__divider{
    margin: 0 auto 18px;
}  
.pkr-adpage-offers-section{
    margin-top: 10px;
}
.pkr-adpage-floorplans-section__meta {
    display: flex;
    flex-wrap: wrap;}

}

@media (min-width:1000px) {

   .grid-system-for-mobile {
    display: none;
   } 
   .pkr-adpage-offers-section{
    margin-top: 10px;
}
}



@media (max-width: 768px) {.pkr-adpage-hero-section .col-lg-4:nth-child(2) {display: none;}}
@media (max-width:768px){.pkr-ad-page-footer{padding:17px 0 0;}.pkr-ad-page-footer__bottom{flex-direction:column;text-align:center;gap:0.5rem;}.pkr-ad-page-footer__legal{justify-content:center;}}
@media (max-width: 768px) {
.pkr-adpage-hero-section .pkr-adpage-hero-section__overlay {position: relative;}
.pkr-adpage-location-section { padding: 48px 0 0; }
.pkr-adpage-hero-section .pkr-adpage-hero-section__feature-icon {        width: 34px;
        height: 35px;
        font-size: 17px;}
.pkr-adpage-hero-section__navbar {padding: 0px 0;}
.pkr-adpage-cta-banner__actions {flex-wrap: nowrap;}
.pkr-adpage-location-section .pkr-adpage-location-section__heading { font-size: 28px; }
.pkr-adpage-location-section .pkr-adpage-location-section__desc { max-width: 100%; }
.pkr-adpage-location-section .pkr-adpage-location-section__left-col { margin-bottom: 50px; }
.pkr-adpage-location-section .pkr-adpage-location-section__pin-head { width: 29px; height: 29px; }
.pkr-adpage-location-section .pkr-adpage-location-section__pin-icon { font-size: 13px; }
.pkr-adpage-location-section .pkr-adpage-location-section__marker-name { font-size: 9px; }
.pkr-adpage-location-section .pkr-adpage-location-section__marker-dist { font-size: 9px; }
.pkr-adpage-location-section .pkr-adpage-location-section__marker-label { padding: 2px 6px; }
.pkr-adpage-offers-section { padding: 20px 20px 24px; margin-top: 28px; border-radius: 12px; }
.pkr-adpage-offers-section .pkr-adpage-offers-section__heading { font-size: 22px; }
.pkr-adpage-offers-section .pkr-adpage-offers-section__card-title { font-size: 32px; }
.pkr-adpage-offers-section .pkr-adpage-offers-section__icon { width: 54px; height: 54px; font-size: 22px; }
.pkr-adpage-offers-section .pkr-adpage-offers-section__card { padding: 18px 16px; gap: 12px; }
.pkr-adpage-amenities-section .pkr-adpage-amenities-section__card-label-pill {padding: 7px 18px;font-size: 12px;}
.pkr-adpage-location-section .pkr-adpage-location-section__pin-tip { width: 3px;height: 3px;}
.pkr-adpage-hero-section .pkr-adpage-hero-section__left-col{text-align: center;}
.pkr-adpage-hero-section .pkr-adpage-hero-section__tag{
           display: flex !important;
        width: max-content;
        padding: 4px 9px;
        font-size: 8px;
        margin-bottom: 10px;}
.pkr-adpage-hero-section .pkr-adpage-hero-section__location{justify-content: left;
        font-size: 11px;
            width: 158px;}
.pkr-adpage-hero-section .pkr-adpage-hero-section__price-row{justify-content: space-between;
        margin-top: 212px;
        margin-bottom: 20px;
            flex-direction: column;
        width: 21%;}
.pkr-adpage-hero-section .pkr-adpage-hero-section__features{align-items: center;
        flex-direction: column;}
.pkr-adpage-hero-section .pkr-adpage-hero-section__feature-item{ width: 100%;max-width: 350px;}     }
.pkr-adpage-location-section .pkr-adpage-location-section__marker--7 { bottom: 17%; left: 30%; }
.pkr-adpage-location-section .pkr-adpage-location-section__pin-head--yellow { background: radial-gradient(circle at 38% 35%, #fef08a, #eab308 60%, #a16207); }
.pkr-adpage-location-section .pkr-adpage-location-section__pin-tip--yellow { background: #a16207; }
.pkr-adpage-location-section .pkr-adpage-location-section__pin-halo--yellow { border: 2px solid rgba(234,179,8,.5); }
.pkr-adpage-location-section .pkr-adpage-location-section__marker--7 .pkr-adpage-location-section__pin-halo { animation-delay: -3s; }
 @media (max-width: 576px) {div#enquire { width: 100%!important;}.pkr-adpage-offers-section .pkr-adpage-offers-section__card { flex-direction: column; text-align: center; gap: 10px; }  .pkr-adpage-location-section .pkr-adpage-location-section__marker--1 {top: 8%;left: 10%;}
.pkr-adpage-location-section .pkr-adpage-location-section__marker--7 { bottom: 12%; left: 20%; }
.pkr-adpage-location-section .pkr-adpage-location-section__marker--4 {top: 16%;right: -6%;}.pkr-adpage-location-section .pkr-adpage-location-section__marker--6 {bottom: 19%; right: 6%;}
.pkr-adpage-location-section .pkr-adpage-location-section__marker--3 { top: 5%; right: 3%;}
.pkr-adpage-location-section .pkr-adpage-location-section__marker--2 { top: -4%;left: 53%;}
.pkr-adpage-amenities-section__side-next {right: 15px;}
.pkr-adpage-amenities-section__side-prev { left: 15px;}}
@media (max-width:900px){.pkr-loc-adv{min-height:unset;}.pkr-loc-adv__dark-panel{background:rgba(5,12,35,0.72);}.pkr-loc-adv__wrap{grid-template-columns:1fr;min-height:unset;}.pkr-loc-adv__left{padding:36px 20px 32px;}.pkr-loc-adv__right{min-height:280px;display:block;}.pkr-loc-adv__tab{flex:1;justify-content:center;font-size:0.72rem;padding:8px 8px 9px;}}
@media (max-width:480px){.pkr-loc-adv__tab{color:white;font-size:15px;padding:7px 6px;}.pkr-loc-adv__tab i{display:none;}.pkr-loc-adv__place{font-size:17px;}}
@media (max-width:1400px){.pkr-adpage-amenities-section .pkr-adpage-amenities-section__card{min-width:280px;flex:0 0 280px;}}
@media (max-width:991px){.pkr-adpage-amenities-section .pkr-adpage-amenities-section__heading{font-size:38px;}.pkr-adpage-amenities-section .pkr-adpage-amenities-section__sub{font-size:16px;}.pkr-adpage-amenities-section .pkr-adpage-amenities-section__card{min-width:260px;flex:0 0 260px;}.pkr-adpage-amenities-section .pkr-adpage-amenities-section__card-img{height:200px;}}
@media (max-width:767px){.pkr-adpage-amenities-section{padding:24px 0;}.pkr-adpage-amenities-section .pkr-adpage-amenities-section__heading{font-size:30px;}.pkr-adpage-amenities-section .pkr-adpage-amenities-section__card{min-width:75vw;flex:0 0 75vw;}.pkr-adpage-amenities-section__side-nav{width:35px;height:35px;font-size:11px;}}
@media (max-width:991px){.pkr-adpage-floorplans-section__content{grid-template-columns:1fr;gap:32px;}.pkr-adpage-floorplans-section__title{font-size:32px;}.pkr-adpage-floorplans-section__image-wrap{aspect-ratio:1000 / 700;}.pkr-adpage-floorplans-section__prev{left:0px;}.pkr-adpage-floorplans-section__next{right:0px;}.pkr-adpage-floorplans-section__btn{max-width:100%;text-align:center;}}
@media (max-width:480px){.pkr-adpage-floorplans-section{padding:0px 0;}.pkr-adpage-floorplans-section__title{font-size:26px;}.pkr-adpage-floorplans-section__details h3{font-size:24px;}.pkr-adpage-floorplans-section__typical{font-size:12px;}}
@media (max-width:991px){.pkr-adpage-cta-banner{min-height:320px;padding:50px 20px;}.pkr-adpage-cta-banner__content h2{font-size:42px;}.pkr-adpage-cta-banner__content p{font-size:18px;}}
@media (max-width:576px){.pkr-adpage-cta-banner{min-height:350px;}.pkr-adpage-cta-banner__content h2{font-size:32px;}.pkr-adpage-cta-banner__content p{font-size:16px;line-height:1.6;}.pkr-adpage-cta-banner__actions{gap:12px;}.pkr-adpage-cta-banner__btn-primary,.pkr-adpage-cta-banner__btn-secondary{width:100%;max-width:280px;min-width:auto;}}
@media (max-width:768px){.pkr-adpage-hero-section{min-height:auto;padding-bottom:0;}.pkr-loc-adv__dark-panel{background:linear-gradient(to right, rgb(5 17 54 / 97%) 0%, rgb(8 19 52 / 102%) 38%, rgb(13 25 66 / 75%) 91%, rgba(5, 12, 35, 0.0) 115%);}.pkr-adpage-hero-section .pkr-adpage-hero-section__bg-desktop{display:none;}.pkr-adpage-hero-section .pkr-adpage-hero-section__bg-mobile{display:block;}.pkr-adpage-hero-section .pkr-adpage-hero-section__overlay{background:linear-gradient(105deg, rgba(7,25,79,.97) 27%, rgba(7,25,78,-0.08) 101%, rgba(7,25,78,-0.15) 51%);}.pkr-adpage-hero-section .pkr-adpage-hero-section__logo{height:65px;}.pkr-adpage-hero-section .pkr-adpage-hero-section__row{padding:20px 0 20px;min-height:auto;gap:2px;flex-direction:column;}
.pkr-adpage-hero-section .pkr-adpage-hero-section__title { font-size: 30px;text-align: left; margin-bottom: 6px; }
.testimonial-card {padding: 5px 7px;}
.quote-icon {font-size: 29px; margin-bottom: 0px;}
.testimonial-author {flex-direction: column;align-items: flex-start;}
.testimonial-author-left { display: flex; align-items: center;gap: 15px;flex-direction: row;}
.author-avatar { width: 34px; height: 34px;}
.author-name { font-size: 11px;margin-bottom: 2px;}
.author-role {font-size: 8px;}
.stars {font-size: 14px;}
.testimonial-text { font-size:13px !important; }
.quote-icon { font-size: 42px; margin-bottom: 0px;}
.pkr-nav__call-btn {padding: 5px 11px; font-size: 12px;}

.pkr-adpage-hero-section .pkr-adpage-hero-section__hero-img{max-width:100%;}.pkr-adpage-hero-section .pkr-adpage-hero-section__trust-bar{position:relative;bottom:auto;left:auto;transform:none;width:100%;border-radius:0;display:none;}.pkr-adpage-hero-section .pkr-adpage-hero-section__trust-divider{border-right:none;border-bottom:1px solid rgba(255,255,255,.1);padding-bottom:16px;margin-bottom:4px;}.pkr-adpage-hero-section .pkr-adpage-hero-section__trust-divider:last-child{border-bottom:none;}.pkr-ad-page-fixed-whatsapp{width:50px !important;height:50px !important;}.pkr-ad-page-fixed-whatsapp i{font-size:30px !important;}}
@media(max-width:991px){.testimonials-grid{grid-template-columns:1fr 1fr;}.testimonial-text{min-height:auto;margin-bottom: 15px;
        font-size: 15px;}}
@media (max-width:1024px){.pkr-ad-page-specifications-new__grid{grid-template-columns:repeat(2, 1fr);gap:3px;}}
@media (max-width:768px){.pkr-ad-page-specifications-new{padding:16px 6px;}.pkr-adpage-hero-section .pkr-adpage-hero-section__brochure-btn{padding:3px 8px;font-size:13px;}
      .pkr-ad-page-specifications-new__grid{    
                grid-template-columns: 1fr 1fr;
        grid-column-gap: 10px;
        grid-row-gap: 12px;}
        .pkr-ad-page-specifications-new__card-img{height:124px;}
        .pkr-ad-page-specifications-new__card-content{        padding: 10px 4px;
        border: 1px solid #ffffff3b;}
        .pkr-ad-page-specifications-new__card-title{
            font-size: 13px;
            margin-bottom: 4px;
        }
        .pkr-ad-page-specifications-new__card-subtitle{
            font-size: 10px;
    font-weight: 600;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 4px;
        }
        .pkr-ad-page-specifications-new__card-desc {
    font-size: 11px;
    color: #ffffff;
    line-height: 1.6;
    margin-bottom: 3px;
}
.pkr-ad-page-specifications-new__header {
    margin-bottom: 15px;
}
.pkr-ad-page-footer__bottom{
    margin: 0px;
    padding: 7px 0px;
}
.pkr-ad-page-footer__copyright{
    font-size: 10px;
}
div#bootom-padding-setup {
    margin: 7px 0px;
}

.pkr-adpage-hero-section .pkr-adpage-hero-section__feature-item{

    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.pkr-adpage-hero-section .pkr-adpage-hero-section__price-badge{
    padding: 5px 6px;
    text-align: center;
}
.pkr-adpage-hero-section .pkr-adpage-hero-section__price-badge-type{
    font-size: 10px;
}
.pkr-adpage-hero-section .pkr-adpage-hero-section__price-badge-amount{
    font-size: 20px;
}
.pkr-adpage-hero-section .pkr-adpage-hero-section__price-badge-label{
    font-size: 10px;
}
.pkr-adpage-hero-section .pkr-adpage-hero-section__feature-text{
    font-size: 12px;
}
.pkr-adpage-hero-section{
    padding-top: 64px;
}
}


