/* =========================================================
   PropGuruz – Complete CSS (Roboto + Gotham, sharp + smooth)
   Bootstrap used only for grid/carousel; styles are custom
========================================================= */

/* ===== Gotham (local files recommended) =====
   Put fonts here:
   /fonts/Gotham-Book.woff2
   /fonts/Gotham-Medium.woff2
   /fonts/Gotham-Bold.woff2
*/
@font-face{
  font-family:"Gotham";
  src:url("../fonts/Gotham-Book.woff2") format("woff2");
  font-weight:400;
  font-style:normal;
  font-display:swap;
}
@font-face{
  font-family:"Gotham";
  src:url("../fonts/Gotham-Medium.woff2") format("woff2");
  font-weight:500;
  font-style:normal;
  font-display:swap;
}
@font-face{
  font-family:"Gotham";
  src:url("../fonts/Gotham-Bold.woff2") format("woff2");
  font-weight:700;
  font-style:normal;
  font-display:swap;
}

/* ===== Theme ===== */
:root{
  --bg:#07090f;
  --ink:#0b1220;
  --text:#0f172a;
  --muted:#64748b;

  --brand-blue:#0b2f87;
  --brand-blue-2:#0a3fb6;
  --brand-yellow:#f0d000;

  --white:#ffffff;
  --soft:#f6f8fc;
  --card:#ffffff;

  --radius:18px;
  --shadow: 0 18px 55px rgba(2,6,23,.14);

  --font-heading:"Gotham","Montserrat","Poppins",sans-serif;
  --font-body:"Roboto",system-ui,-apple-system,"Segoe UI",sans-serif;

  --ease: cubic-bezier(.2,.8,.2,1);
  --ease2: cubic-bezier(.16,1,.3,1);
}

/* ===== Base ===== */
*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family:var(--font-body);
  font-weight:400;
  color:var(--text);
  background:var(--white);

  /* sharp text */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  letter-spacing:.1px;
}
a{ text-decoration:none; color:inherit; }
img{ max-width:100%; height:auto; display:block; }
button{ font-family:inherit; }

/* Typography (uniform) */
h1,h2,h3,h4,h5,h6,
.pg-h1,.pg-h2,
.pg-footer-title,.pg-about-title,
.pg-prop-title,.pg-card h4{
  font-family:var(--font-heading);
}
p{ margin:0; color:var(--muted); line-height:1.75; font-weight:400; }
strong{ font-weight:500; }

/* Reduce motion (accessibility) */
@media (prefers-reduced-motion: reduce){
  *{ animation:none !important; transition:none !important; scroll-behavior:auto !important; }
}

/* ===== Smooth reveal animation on sections ===== */
.pg-reveal{
  opacity:0;
  transform: translateY(18px);
  transition: opacity .7s var(--ease2), transform .7s var(--ease2);
  will-change: opacity, transform;
}
.pg-reveal.is-visible{
  opacity:1;
  transform: translateY(0);
}

/* Optional: small stagger helpers */
.pg-reveal.delay-1{ transition-delay:.06s; }
.pg-reveal.delay-2{ transition-delay:.12s; }
.pg-reveal.delay-3{ transition-delay:.18s; }
.pg-reveal.delay-4{ transition-delay:.24s; }

/* =========================================================
   Header / Nav
========================================================= */
.site-header{
  position:sticky;
  top:0;
  z-index:999;
  background: rgba(255,255,255,.84);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(15,23,42,.08);
}

.pg-nav{ position:relative; }
.pg-nav-inner{
  height:78px;
  display:flex;
  align-items:center;
  justify-content:space-between;
}

.pg-brand img{ width:190px; height:auto; }

.pg-nav-links{
  align-items:center;
  gap:22px;
}

.pg-nav-links a{
  font-family:var(--font-heading);
  font-weight:500;
  font-size:14px;
  letter-spacing:.25px;
  color: rgba(15,23,42,.85);
  position:relative;
  padding:8px 2px;
}
.pg-nav-links a:not(.pg-btn)::after{
  content:"";
  position:absolute;
  left:0;
  bottom:3px;
  width:0%;
  height:2px;
  background: linear-gradient(90deg, var(--brand-yellow), var(--brand-blue));
  transition: width .25s var(--ease);
  border-radius:2px;
}
.pg-nav-links a:not(.pg-btn):hover::after{ width:100%; }

/* Buttons */
.pg-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:12px 16px;
  border-radius:999px;
  font-family:var(--font-heading);
  font-weight:600;
  letter-spacing:.35px;
  border:1px solid transparent;
  transition: transform .15s var(--ease), box-shadow .15s var(--ease), background .15s var(--ease), border-color .15s var(--ease);
  user-select:none;
  white-space:nowrap;
}
.pg-btn:active{ transform: translateY(1px); }

.pg-btn-primary{
  background: linear-gradient(135deg, var(--brand-blue), var(--brand-blue-2));
  color:var(--white);
  box-shadow: 0 12px 28px rgba(11,47,135,.22);
}
.pg-btn-primary:hover{
  transform: translateY(-1px);
  box-shadow: 0 16px 36px rgba(11,47,135,.26);
}

.pg-btn-ghost{
  background: rgba(255,255,255,.7);
  border-color: rgba(15,23,42,.14);
  color: rgba(15,23,42,.9);
}
.pg-btn-ghost:hover{
  transform: translateY(-1px);
  border-color: rgba(15,23,42,.22);
}

.pg-btn-lite{
  background: rgba(11,47,135,.06);
  color: var(--brand-blue);
  border-color: rgba(11,47,135,.14);
}
.pg-btn-lite:hover{
  transform: translateY(-1px);
  background: rgba(11,47,135,.08);
}

/* Mobile burger (animated) */
.pg-burger{
  width:46px;
  height:46px;
  border-radius:12px;
  border:1px solid rgba(15,23,42,.12);
  background: rgba(255,255,255,.7);
  display:grid;
  place-items:center;
  cursor:pointer;
  padding:10px;
  transition: transform .15s var(--ease), border-color .15s var(--ease), background .15s var(--ease);
}
.pg-burger:hover{
  transform: translateY(-1px);
  border-color: rgba(15,23,42,.18);
  background: rgba(255,255,255,.9);
}
.pg-burger span{
  display:block;
  width:22px;
  height:2px;
  background: rgba(15,23,42,.85);
  border-radius:2px;
  transition: transform .22s var(--ease), opacity .18s var(--ease), width .22s var(--ease);
}
.pg-burger span:nth-child(2){ width:18px; justify-self:end; }
.pg-burger.is-open span:nth-child(1){ transform: translateY(6px) rotate(45deg); }
.pg-burger.is-open span:nth-child(2){ opacity:0; width:22px; }
.pg-burger.is-open span:nth-child(3){ transform: translateY(-6px) rotate(-45deg); }

/* Mobile menu panel (smooth open) */
.pg-mobile-panel{
  max-height:0;
  overflow:hidden;
  transition: max-height .34s var(--ease);
  border-top:1px solid rgba(15,23,42,.08);
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
}
.pg-mobile-panel.is-open{ max-height:420px; }

.pg-m-link{
  display:block;
  padding:14px 0;
  border-bottom:1px solid rgba(15,23,42,.07);
  font-family:var(--font-heading);
  font-weight:600;
  color: rgba(15,23,42,.9);
  transition: transform .15s var(--ease), color .15s var(--ease);
}
.pg-m-link:hover{
  transform: translateX(2px);
  color: rgba(15,23,42,1);
}
.pg-m-link:last-of-type{ border-bottom:none; }

/* =========================================================
   Hero / Slider
========================================================= */
.pg-hero{ position:relative; }

.pg-slide{
  min-height: 78vh;
  display:flex;
  align-items:center;
  background-size:cover;
  background-position:center;
  position:relative;
}
.pg-slide-overlay{
  position:absolute;
  inset:0;
  background:
    radial-gradient(900px 400px at 20% 30%, rgba(240,208,0,.22), transparent 60%),
    linear-gradient(90deg, rgba(2,6,23,.72), rgba(2,6,23,.42), rgba(2,6,23,.20));
}

.pg-slide-content{
  position:relative;
  z-index:2;
  padding: 42px 0;
  max-width: 760px;
}

.pg-eyebrow{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:8px 12px;
  border-radius:999px;
  background: rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.14);
  color: rgba(255,255,255,.9);
  font-weight:700;
  letter-spacing:.7px;
  font-size:12px;
  text-transform:uppercase;
}

.pg-h1{
  color:var(--white);
  font-weight:700;
  letter-spacing:-.6px;
  margin:14px 0 10px;
  font-size: clamp(30px, 4.2vw, 54px);
  line-height:1.05;
}
.pg-h1 span{ color: var(--brand-yellow); }

.pg-lead{
  color: rgba(255,255,255,.84);
  font-size: 16px;
  line-height:1.65;
  margin: 0 0 18px;
  max-width: 620px;
  font-weight:400;
}

.pg-hero-cta{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
}

/* Carousel buttons */
.pg-carousel-btn{ width:64px; opacity:1; }
.pg-carousel-icon{
  width:46px;
  height:46px;
  display:grid;
  place-items:center;
  border-radius:999px;
  background: rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.18);
  color:#fff;
  font-size:30px;
  line-height:1;
  transition: transform .15s var(--ease), background .15s var(--ease);
}
.pg-carousel-btn:hover .pg-carousel-icon{
  transform: translateY(-1px);
  background: rgba(255,255,255,.16);
}

/* Indicators */
.pg-indicators{ margin-bottom:22px; }
.pg-indicators [data-bs-target]{
  width:10px;
  height:10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.45);
  background: rgba(255,255,255,.25);
}
.pg-indicators .active{
  background: var(--brand-yellow);
  border-color: var(--brand-yellow);
}

/* Quick search strip */
.pg-quick{
  position:absolute;
  left:0;
  right:0;
  bottom:-42px;
  z-index:5;
}
.pg-quick-card{
  background: rgba(255,255,255,.96);
  border:1px solid rgba(15,23,42,.10);
  border-radius: 22px;
  box-shadow: var(--shadow);
  padding: 16px;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.pg-quick-card:hover{
  transform: translateY(-2px);
  box-shadow: 0 22px 70px rgba(2,6,23,.16);
}
.pg-quick-title{
  font-family:var(--font-heading);
  font-weight:700;
  margin-bottom:10px;
  color: rgba(15,23,42,.92);
  letter-spacing:-.2px;
}

/* Inputs */
.pg-input{
  width:100%;
  padding:12px 14px;
  border-radius:14px;
  border:1px solid rgba(15,23,42,.12);
  background:#fff;
  outline:none;
  font-weight:500;
  color: rgba(15,23,42,.9);
  transition: border-color .15s var(--ease), box-shadow .15s var(--ease);
}
.pg-input:focus{
  border-color: rgba(11,47,135,.32);
  box-shadow: 0 0 0 4px rgba(11,47,135,.10);
}
.pg-textarea{ resize: vertical; }

/* =========================================================
   Sections (shared)
========================================================= */
.pg-section{ padding: 88px 0; }
.pg-section-soft{ background: linear-gradient(180deg, #ffffff, var(--soft)); }

.pg-section-head{
  text-align:center;
  max-width: 780px;
  margin: 0 auto 26px;
}

.pg-split{
  text-align:left;
  max-width:100%;
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:16px;
}

.pg-h2{
  font-weight:700;
  letter-spacing:-.45px;
  font-size: clamp(24px, 2.4vw, 36px);
  margin: 0 0 8px;
  color: rgba(15,23,42,.96);
}
.pg-sub{
  margin:0;
  color: var(--muted);
  font-weight:400;
  line-height:1.7;
}

/* =========================================================
   Feature Cards
========================================================= */
.pg-card{
  height:100%;
  background: var(--card);
  border:1px solid rgba(15,23,42,.10);
  border-radius: 22px;
  padding: 18px;
  box-shadow: 0 10px 30px rgba(2,6,23,.06);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), border-color .2s var(--ease);
}
.pg-card:hover{
  transform: translateY(-3px);
  border-color: rgba(11,47,135,.18);
  box-shadow: 0 18px 45px rgba(2,6,23,.10);
}

.pg-icon{
  width:44px;
  height:44px;
  border-radius:14px;
  display:grid;
  place-items:center;
  background: rgba(240,208,0,.16);
  border: 1px solid rgba(240,208,0,.35);
  font-weight:700;
  color: rgba(15,23,42,.85);
  margin-bottom: 10px;
}
.pg-card h4{
  font-weight:700;
  margin: 0 0 8px;
  color: rgba(15,23,42,.92);
  letter-spacing:-.2px;
}
.pg-card p{
  margin:0;
  color: var(--muted);
  font-weight:400;
  line-height:1.7;
}

/* =========================================================
   Property Cards
========================================================= */
.pg-prop{
  background:#fff;
  border:1px solid rgba(15,23,42,.10);
  border-radius: 22px;
  overflow:hidden;
  box-shadow: 0 14px 45px rgba(2,6,23,.08);
  height:100%;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.pg-prop:hover{
  transform: translateY(-3px);
  box-shadow: 0 18px 55px rgba(2,6,23,.12);
}

.pg-prop-img{
  height: 220px;
  background-size:cover;
  background-position:center;
  transition: transform .35s var(--ease2);
}
.pg-prop:hover .pg-prop-img{ transform: scale(1.03); }

.pg-prop-body{ padding: 16px; }

.pg-prop-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  margin-bottom: 10px;
}
.pg-badge{
  display:inline-flex;
  align-items:center;
  padding:7px 10px;
  border-radius:999px;
  font-size:12px;
  font-weight:700;
  background: rgba(240,208,0,.16);
  border: 1px solid rgba(240,208,0,.35);
}
.pg-badge-rent{
  background: rgba(11,47,135,.08);
  border-color: rgba(11,47,135,.18);
}
.pg-price{
  font-family:var(--font-heading);
  font-weight:700;
  color: rgba(15,23,42,.92);
}
.pg-prop-title{
  font-weight:700;
  margin: 0 0 6px;
  letter-spacing:-.25px;
  color: rgba(15,23,42,.94);
}
.pg-prop-meta{
  margin:0 0 14px;
  color: var(--muted);
  font-weight:400;
}
.pg-prop-actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

/* =========================================================
   About Split (Image + Text)
========================================================= */
.pg-about-split{
  padding: 90px 0;
  background: #ffffff;
}

.pg-media-card{
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(15,23,42,.10);
  box-shadow: 0 18px 55px rgba(2,6,23,.10);
  min-height: 340px;
}
.pg-media-img{
  width: 100%;
  height: 100%;
  display:block;
  object-fit: cover;
  min-height: 340px;
  transition: transform .45s var(--ease2);
}
.pg-media-card:hover .pg-media-img{ transform: scale(1.02); }

/* optional badge (play-like) */
.pg-media-badge{
  position:absolute;
  inset:0;
  display:grid;
  place-items:center;
  text-decoration:none;
}
.pg-play{
  width: 78px;
  height: 78px;
  border-radius: 18px;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(15,23,42,.12);
  display:grid;
  place-items:center;
  box-shadow: 0 18px 60px rgba(0,0,0,.20);
  transition: transform .18s var(--ease), box-shadow .18s var(--ease);
}
.pg-play::before{
  content:"";
  width:0;
  height:0;
  border-left: 18px solid var(--brand-blue);
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  margin-left: 4px;
}
.pg-media-badge:hover .pg-play{
  transform: scale(1.05);
  box-shadow: 0 22px 70px rgba(0,0,0,.24);
}

/* caption strip */
.pg-media-caption{
  position:absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(2,6,23,.62);
  border: 1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(8px);
  color: rgba(255,255,255,.90);
  display:flex;
  flex-direction:column;
  gap:4px;
}
.pg-cap-title{
  font-family:var(--font-heading);
  font-weight:700;
  letter-spacing:-.2px;
}
.pg-cap-sub{
  font-weight:400;
  opacity: .9;
  font-size: 13px;
}

.pg-about-copy{ padding-left: 8px; }
.pg-about-title{
  font-weight:700;
  letter-spacing:-0.7px;
  line-height: 1.02;
  margin: 0;
  font-size: clamp(34px, 3.6vw, 56px);
  color: rgba(11,47,135,.95);
}
.pg-about-sub{
  margin-top: 18px;
  font-family:var(--font-heading);
  font-weight:600;
  font-size: 20px;
  color: rgba(15,23,42,.86);
}
.pg-about-text{
  margin-top: 14px;
  color: rgba(15,23,42,.70);
  font-weight:400;
  line-height: 1.85;
  font-size: 16px;
  max-width: 560px;
}
.pg-about-actions{
  margin-top: 18px;
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}

/* =========================================================
   Stats
========================================================= */
.pg-stats{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap:12px;
}
.pg-stat{
  background: #fff;
  border:1px solid rgba(15,23,42,.10);
  border-radius: 22px;
  padding: 18px;
  box-shadow: 0 12px 40px rgba(2,6,23,.06);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.pg-stat:hover{
  transform: translateY(-2px);
  box-shadow: 0 18px 55px rgba(2,6,23,.10);
}
.pg-stat-num{
  font-family:var(--font-heading);
  font-weight:700;
  font-size: 30px;
  color: var(--brand-blue);
}
.pg-stat-label{
  color: var(--muted);
  font-weight:400;
  margin-top: 2px;
}

/* =========================================================
   Testimonials
========================================================= */
.pg-quote{
  background:#fff;
  border:1px solid rgba(15,23,42,.10);
  border-radius: 22px;
  padding: 18px;
  height:100%;
  box-shadow: 0 12px 40px rgba(2,6,23,.06);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.pg-quote:hover{
  transform: translateY(-2px);
  box-shadow: 0 18px 55px rgba(2,6,23,.10);
}
.pg-quote p{
  margin:0 0 12px;
  font-weight:400;
  color: rgba(15,23,42,.86);
  line-height:1.75;
}
.pg-quote-by{
  font-family:var(--font-heading);
  font-weight:600;
  color: rgba(15,23,42,.9);
}

/* =========================================================
   Contact
========================================================= */
.pg-contact-card{
  background:#fff;
  border:1px solid rgba(15,23,42,.10);
  border-radius: 22px;
  padding: 18px;
  box-shadow: 0 16px 55px rgba(2,6,23,.08);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.pg-contact-card:hover{
  transform: translateY(-2px);
  box-shadow: 0 22px 70px rgba(2,6,23,.12);
}

.pg-contact-info h4{
  font-family:var(--font-heading);
  font-weight:700;
  margin:0 0 6px;
  color: rgba(15,23,42,.92);
}
.pg-info-line{
  color: rgba(15,23,42,.85);
  font-weight:400;
  margin-top: 8px;
}
.pg-divider{
  height:1px;
  background: rgba(15,23,42,.10);
  margin: 16px 0;
}
.pg-mini{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap:10px;
}
.pg-mini-card{
  border:1px solid rgba(15,23,42,.10);
  border-radius: 18px;
  padding: 12px;
  background: rgba(11,47,135,.04);
}
.pg-mini-title{
  font-family:var(--font-heading);
  font-weight:600;
}
.pg-mini-sub{
  color: var(--muted);
  font-weight:400;
  font-size: 13px;
}

.pg-note{
  margin:0;
  color: var(--muted);
  font-weight:400;
  font-size: 12px;
}

/* =========================================================
   Footer (Screenshot style)
========================================================= */
.pg-footer-pro{
  position:relative;
  background: radial-gradient(1200px 600px at 20% 10%, rgba(255,255,255,.06), transparent 55%),
              linear-gradient(180deg, #0a0c12, #07080d);
  color: rgba(255,255,255,.82);
  padding: 60px 0 26px;
  overflow:hidden;
}
.pg-footer-bg-rings{
  position:absolute;
  inset:0;
  pointer-events:none;
  opacity:.35;
  background:
    radial-gradient(circle at 78% 35%, transparent 0 220px, rgba(255,255,255,.10) 221px 222px, transparent 223px 420px, rgba(255,255,255,.08) 421px 422px, transparent 423px),
    radial-gradient(circle at 88% 60%, transparent 0 260px, rgba(255,255,255,.08) 261px 262px, transparent 263px 520px, rgba(255,255,255,.06) 521px 522px, transparent 523px);
}

.pg-footer-title{
  font-family:var(--font-heading);
  font-weight:700;
  font-size: 28px;
  color:#fff;
  letter-spacing:-.3px;
  margin: 0 0 18px;
}

.pg-footer-links-list{
  margin:0;
  padding:0;
  list-style:none;
}
.pg-footer-links-list li{ margin: 12px 0; }

.pg-footer-links-list a{
  display:flex;
  align-items:center;
  gap:12px;
  color: rgba(255,255,255,.78);
  font-weight:400;
  transition: color .15s var(--ease), transform .15s var(--ease);
}
.pg-footer-links-list a:hover{
  color:#fff;
  transform: translateX(2px);
}
.pg-bullet{
  width:0;
  height:0;
  border-left: 7px solid var(--brand-yellow);
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  opacity:.9;
}

.pg-footer-text{
  color: rgba(255,255,255,.76);
  font-weight:400;
  line-height:1.75;
}
.pg-footer-label{
  font-family:var(--font-heading);
  font-weight:600;
  color: rgba(255,255,255,.92);
  margin-bottom: 10px;
}
.pg-footer-line{ margin: 6px 0; }

.pg-footer-link{
  color: rgba(255,255,255,.86);
  font-weight:600;
}
.pg-footer-link:hover{ color:#fff; }
.pg-footer-link.accent{ color: var(--brand-yellow); }
.pg-footer-link.strong{
  font-family:var(--font-heading);
  font-size: 20px;
  font-weight:700;
}

.pg-social{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}
.pg-social-btn{
  width:48px;
  height:48px;
  display:grid;
  place-items:center;
  border-radius:8px;
  border:1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.92);
  transition: transform .15s var(--ease), background .15s var(--ease), border-color .15s var(--ease);
}
.pg-social-btn:hover{
  transform: translateY(-2px);
  background: rgba(255,255,255,.10);
  border-color: rgba(255,255,255,.26);
}

.pg-footer-divider{
  margin: 36px 0 18px;
  height:1px;
  background: rgba(255,255,255,.10);
}

.pg-footer-brandbar{
  display:flex;
  align-items:center;
  gap:14px;
}
.pg-footer-brandbar img{
  width:150px;
  height:auto;
  filter: drop-shadow(0 14px 34px rgba(0,0,0,.45));
}
.pg-footer-tagline{
  color: rgba(255,255,255,.78);
  font-weight:400;
}

.pg-footer-copy{
  color: rgba(255,255,255,.65);
  font-weight:400;
}

/* Floating Buttons */
.pg-float-actions{
  position:fixed;
  right: 22px;
  bottom: 22px;
  z-index: 9999;
  display:flex;
  flex-direction:column;
  gap:12px;
}
.pg-float-btn{
  display:flex;
  align-items:center;
  gap:10px;
  padding: 14px 18px;
  border-radius: 999px;
  font-family:var(--font-heading);
  font-weight:600;
  color:#fff;
  box-shadow: 0 18px 50px rgba(0,0,0,.30);
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(10px);
  transition: transform .15s var(--ease), box-shadow .15s var(--ease);
}
.pg-float-btn:hover{
  transform: translateY(-2px);
  box-shadow: 0 22px 60px rgba(0,0,0,.34);
}
.pg-float-consult{
  background: linear-gradient(135deg, rgba(62,90,255,.92), rgba(11,47,135,.92));
}
.pg-float-wa{
  background: linear-gradient(135deg, #1fd15f, #10b981);
}

/* =========================================================
   Responsive
========================================================= */
@media (max-width: 991px){
  .pg-quick{ position:static; margin-top:-16px; padding-bottom: 18px; }
  .pg-section{ padding: 68px 0; }
  .pg-slide{ min-height: 72vh; }
  .pg-split{ flex-direction:column; align-items:flex-start; }
  .pg-about-copy{ padding-left: 0; }
}

@media (max-width: 575px){
  .pg-brand img{ width:160px; }
  .pg-footer-title{ font-size: 24px; }
  .pg-float-actions{ right: 14px; bottom: 14px; }
  .pg-float-btn{ padding: 12px 14px; font-size: 14px; }
  .pg-mini{ grid-template-columns: 1fr; }
}