/*
Theme Name:        Property Store
Theme URI:         https://propertystore.in
Author:            Property Store Team
Author URI:        https://propertystore.in
Description:       A premium, high-converting real estate theme for Property Store. Features custom property listings, lead capture forms, EMI calculator, WhatsApp integration, and a fully responsive design with white, blue, and gold branding.
Version:           1.0.0
Requires at least: 6.0
Tested up to:      6.5
Requires PHP:      7.4
License:           GNU General Public License v2 or later
License URI:       https://www.gnu.org/licenses/gpl-2.0.html
Text Domain:       property-store
Tags:              real-estate, custom-menu, featured-images, threaded-comments, translation-ready
*/

/* ============================================================
   DESIGN TOKENS
============================================================ */
:root {
    --navy:       #0a1628;
    --blue:       #1a3a6b;
    --blue-mid:   #1e4d8c;
    --blue-light: #e8f0fe;
    --gold:       #c8a84b;
    --gold-light: #e8c96a;
    --gold-pale:  #fdf6e3;
    --green:      #0d7c4e;

    --white:      #ffffff;
    --off-white:  #f8f9fc;
    --gray-50:    #f1f4f9;
    --gray-100:   #e4e8f0;
    --gray-300:   #b8c0cc;
    --gray-500:   #6b7585;
    --gray-700:   #374151;
    --gray-900:   #111827;

    --font-display: 'Playfair Display', Georgia, serif;
    --font-body:    'DM Sans', sans-serif;

    --shadow-sm: 0 1px 3px rgba(10,22,40,.08), 0 1px 2px rgba(10,22,40,.04);
    --shadow-md: 0 4px 16px rgba(10,22,40,.10), 0 2px 4px rgba(10,22,40,.06);
    --shadow-lg: 0 12px 40px rgba(10,22,40,.13), 0 4px 8px rgba(10,22,40,.07);

    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 14px;
    --nav-height: 68px;
}

/* ============================================================
   RESET & BASE
============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-body); color: var(--gray-900); background: var(--white); overflow-x: hidden; -webkit-font-smoothing: antialiased; }
img, video { display: block; max-width: 100%; height: auto; }
a { color: var(--blue-mid); text-decoration: none; transition: color .2s; }
a:hover { color: var(--gold); }
button, input, select, textarea { font-family: var(--font-body); font-size: 1rem; }
ul, ol { list-style: none; }
h1,h2,h3,h4,h5,h6 { font-family: var(--font-display); font-weight: 700; line-height: 1.2; color: var(--navy); }
p { line-height: 1.7; }

/* ============================================================
   LAYOUT UTILITIES
============================================================ */
.ps-container { width: 100%; max-width: 1240px; margin: 0 auto; padding: 0 5%; }
.ps-section    { padding: 80px 5%; }
.ps-section-sm { padding: 48px 5%; }
.ps-text-center { text-align: center; }
.ps-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.ps-grid-3 { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px; }
.ps-grid-4 { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 24px; }

/* ============================================================
   TYPOGRAPHY HELPERS
============================================================ */
.ps-label {
    display: inline-block;
    font-family: var(--font-body);
    font-size: .72rem; font-weight: 700;
    letter-spacing: .12em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 10px;
}
.ps-title {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 700; line-height: 1.2; margin-bottom: .75rem;
}
.ps-subtitle { font-size: 1rem; color: var(--gray-500); line-height: 1.7; margin-bottom: 2.5rem; }

/* ============================================================
   BUTTONS
============================================================ */
.ps-btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 12px 28px; border-radius: var(--radius-md);
    font-size: .9rem; font-weight: 600; cursor: pointer;
    border: none; transition: all .2s; text-decoration: none; line-height: 1;
}
.ps-btn-primary  { background: linear-gradient(135deg, var(--blue), var(--blue-mid)); color: var(--white); }
.ps-btn-primary:hover  { opacity: .9; transform: translateY(-1px); color: var(--white); }
.ps-btn-gold     { background: var(--gold); color: var(--navy); }
.ps-btn-gold:hover     { background: var(--gold-light); transform: translateY(-1px); color: var(--navy); }
.ps-btn-navy     { background: var(--navy); color: var(--white); }
.ps-btn-navy:hover     { opacity: .88; transform: translateY(-1px); color: var(--white); }
.ps-btn-outline  { background: transparent; color: var(--navy); border: 2px solid var(--navy); }
.ps-btn-outline:hover  { background: rgba(10,22,40,.07); color: var(--navy); }
.ps-btn-lg { padding: 14px 36px; font-size: 1rem; }
.ps-btn-sm { padding: 8px 18px; font-size: .82rem; }

/* ============================================================
   BADGES
============================================================ */
.ps-badge {
    display: inline-block; padding: 4px 12px;
    border-radius: 50px; font-size: .7rem;
    font-weight: 700; letter-spacing: .05em; text-transform: uppercase;
}
.ps-badge-sale  { background: var(--blue);  color: var(--white); }
.ps-badge-rent  { background: var(--green); color: var(--white); }
.ps-badge-plot  { background: var(--gold);  color: var(--navy);  }
.ps-badge-sold  { background: var(--gray-500); color: var(--white); }
.ps-badge-verified { background: rgba(13,124,78,.12); color: var(--green); border: 1px solid rgba(13,124,78,.25); }
.ps-badge-featured { background: rgba(200,168,75,.15); color: #9a7520; border: 1px solid rgba(200,168,75,.3); }

/* ============================================================
   FORMS
============================================================ */
.ps-form-group { margin-bottom: 18px; }
.ps-form-group label {
    display: block; font-size: .75rem; font-weight: 600;
    color: var(--gray-700); margin-bottom: 6px;
    text-transform: uppercase; letter-spacing: .04em;
}
.ps-form-group input,
.ps-form-group select,
.ps-form-group textarea {
    width: 100%; border: 1.5px solid var(--gray-100);
    border-radius: var(--radius-md); padding: 11px 14px;
    font-size: .9rem; color: var(--gray-900);
    background: var(--white); transition: border-color .2s, box-shadow .2s;
    appearance: none;
}
.ps-form-group input:focus,
.ps-form-group select:focus,
.ps-form-group textarea:focus {
    outline: none; border-color: var(--blue-mid);
    box-shadow: 0 0 0 3px rgba(30,77,140,.1);
}
.ps-form-group textarea { resize: vertical; min-height: 100px; }
.ps-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.ps-form-submit {
    width: 100%; background: linear-gradient(135deg, var(--navy), var(--blue));
    color: var(--white); border: none; padding: 14px;
    border-radius: var(--radius-md); font-size: .95rem;
    font-weight: 600; cursor: pointer; transition: opacity .2s; letter-spacing: .02em;
}
.ps-form-submit:hover { opacity: .9; }
.ps-form-submit:disabled { opacity: .6; cursor: not-allowed; }

/* ============================================================
   NAVIGATION
============================================================ */
.ps-nav {
    position: sticky; top: 0; z-index: 500;
    background: var(--navy); padding: 0 5%;
    display: flex; align-items: center; justify-content: space-between;
    height: var(--nav-height);
    box-shadow: 0 2px 20px rgba(0,0,0,.25);
}
.ps-nav__logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.ps-nav__logo-icon {
    width: 36px; height: 36px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    border-radius: 8px; display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.ps-nav__logo-text { font-family: var(--font-display); font-size: 1.25rem; font-weight: 700; color: var(--white); }
.ps-nav__logo-text span { color: var(--gold); }
.ps-nav__links { display: flex; align-items: center; gap: 28px; }
.ps-nav__links a { color: rgba(255,255,255,.8); font-size: .875rem; font-weight: 500; transition: color .2s; }
.ps-nav__links a:hover,
.ps-nav__links .current-menu-item > a,
.ps-nav__links .current_page_item > a { color: var(--gold); }
.ps-nav__hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; padding: 4px; cursor: pointer; }
.ps-nav__hamburger span { width: 22px; height: 2px; background: var(--white); border-radius: 2px; display: block; transition: all .3s; }

/* Mobile Nav */
.ps-mobile-nav {
    display: none; position: fixed; inset: 0; background: var(--navy); z-index: 600;
    flex-direction: column; align-items: center; justify-content: center; gap: 24px;
    opacity: 0; transition: opacity .3s;
}
.ps-mobile-nav.ps-open { display: flex; opacity: 1; }
.ps-mobile-nav a { color: var(--white); font-size: 1.15rem; font-weight: 500; }
.ps-mobile-nav__close { position: absolute; top: 24px; right: 24px; background: none; border: none; color: var(--white); font-size: 1.5rem; cursor: pointer; }

/* ============================================================
   HERO
============================================================ */
.ps-hero {
    position: relative; min-height: 90vh;
    display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.ps-hero__bg {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 60%, #0d2a4e 100%);
}
.ps-hero__pattern {
    position: absolute; inset: 0; opacity: .035;
    background-image: repeating-linear-gradient(45deg, #fff 0, #fff 1px, transparent 0, transparent 50%);
    background-size: 30px 30px;
}
.ps-hero__content { position: relative; z-index: 2; text-align: center; padding: 4rem 5%; max-width: 880px; width: 100%; }
.ps-hero__badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(200,168,75,.15); border: 1px solid rgba(200,168,75,.4);
    color: var(--gold); padding: 6px 16px; border-radius: 50px;
    font-size: .75rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 1.5rem;
}
.ps-hero__badge::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }
.ps-hero h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 700; color: var(--white); line-height: 1.15; margin-bottom: 1rem; }
.ps-hero h1 em { color: var(--gold); font-style: italic; }
.ps-hero__sub { font-size: 1.05rem; color: rgba(255,255,255,.72); max-width: 540px; margin: 0 auto 2rem; }

/* Search Tabs */
.ps-search-tabs { display: flex; gap: 4px; background: rgba(255,255,255,.1); border-radius: 10px; padding: 4px; width: fit-content; margin: 0 auto 1.5rem; }
.ps-search-tab { padding: 8px 24px; border-radius: 7px; color: rgba(255,255,255,.7); font-size: .875rem; font-weight: 500; border: none; background: transparent; cursor: pointer; transition: all .2s; }
.ps-search-tab.active { background: var(--white); color: var(--navy); font-weight: 600; }

/* Search Box */
.ps-search-box {
    background: var(--white); border-radius: 14px; padding: 22px 26px;
    display: flex; flex-wrap: wrap; gap: 14px; align-items: flex-end;
    box-shadow: var(--shadow-lg);
}
.ps-search-field { flex: 1; min-width: 160px; }
.ps-search-field label { display: block; font-size: .7rem; font-weight: 700; color: var(--gray-500); text-transform: uppercase; letter-spacing: .07em; margin-bottom: 6px; }
.ps-search-field select, .ps-search-field input { width: 100%; border: 1.5px solid var(--gray-100); border-radius: 8px; padding: 10px 14px; font-size: .875rem; color: var(--gray-900); background: var(--gray-50); transition: border-color .2s; appearance: none; }
.ps-search-field select:focus, .ps-search-field input:focus { outline: none; border-color: var(--blue-mid); }

/* Hero Stats */
.ps-hero__stats { display: flex; gap: 32px; justify-content: center; margin-top: 3rem; flex-wrap: wrap; }
.ps-hero__stat { text-align: center; }
.ps-hero__stat-num { font-family: var(--font-display); font-size: 1.75rem; font-weight: 700; color: var(--gold); }
.ps-hero__stat-label { font-size: .78rem; color: rgba(255,255,255,.6); margin-top: 2px; }

/* ============================================================
   PROPERTY CARDS
============================================================ */
.ps-prop-card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .25s, box-shadow .25s; }
.ps-prop-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.ps-prop-card__img { position: relative; height: 215px; overflow: hidden; background: var(--gray-100); }
.ps-prop-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.ps-prop-card:hover .ps-prop-card__img img { transform: scale(1.06); }
.ps-prop-card__img-badge { position: absolute; top: 14px; left: 14px; }
.ps-prop-card__verified { position: absolute; top: 14px; right: 14px; background: rgba(255,255,255,.92); border-radius: 50px; padding: 3px 10px; font-size: .7rem; font-weight: 700; color: var(--green); }
.ps-prop-card__body { padding: 18px 20px; }
.ps-prop-card__price { font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.ps-prop-card__price span { font-size: .75rem; font-weight: 400; color: var(--gray-500); font-family: var(--font-body); }
.ps-prop-card__name { font-size: .95rem; font-weight: 600; color: var(--gray-700); margin-bottom: 8px; }
.ps-prop-card__name a { color: inherit; }
.ps-prop-card__name a:hover { color: var(--blue-mid); }
.ps-prop-card__loc { display: flex; align-items: center; gap: 5px; font-size: .82rem; color: var(--gray-500); margin-bottom: 14px; }
.ps-prop-card__meta { display: flex; gap: 14px; padding-top: 14px; border-top: 1px solid var(--gray-100); flex-wrap: wrap; }
.ps-prop-card__meta-item { font-size: .8rem; color: var(--gray-500); }
.ps-prop-card__meta-item strong { color: var(--gray-700); font-weight: 600; }

/* ============================================================
   WHY US CARDS
============================================================ */
.ps-why-card { padding: 26px; border-radius: var(--radius-lg); border: 1.5px solid var(--gray-100); background: var(--white); transition: all .25s; }
.ps-why-card:hover { border-color: var(--gold); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.ps-why-card__icon { width: 52px; height: 52px; border-radius: 12px; background: var(--blue-light); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; font-size: 24px; }
.ps-why-card h3 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; font-family: var(--font-body); }
.ps-why-card p { font-size: .875rem; color: var(--gray-500); line-height: 1.65; }

/* ============================================================
   TESTIMONIAL CARDS
============================================================ */
.ps-testi { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius-lg); padding: 26px; }
.ps-testi__stars { color: var(--gold); font-size: 1rem; letter-spacing: 2px; margin-bottom: 14px; }
.ps-testi__text { font-size: .9rem; color: rgba(255,255,255,.82); line-height: 1.75; margin-bottom: 18px; font-style: italic; }
.ps-testi__author { display: flex; align-items: center; gap: 12px; }
.ps-testi__avatar { width: 42px; height: 42px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: .9rem; color: var(--white); flex-shrink: 0; }
.ps-testi__name { font-weight: 600; color: var(--white); font-size: .9rem; }
.ps-testi__role { font-size: .78rem; color: rgba(255,255,255,.5); margin-top: 2px; }

/* ============================================================
   CTA BANNER
============================================================ */
.ps-cta-banner { background: linear-gradient(135deg, var(--gold), var(--gold-light)); padding: 64px 5%; text-align: center; }
.ps-cta-banner h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); color: var(--navy); margin-bottom: .75rem; }
.ps-cta-banner p { font-size: 1rem; color: rgba(10,22,40,.72); max-width: 500px; margin: 0 auto 2rem; }
.ps-cta-banner__btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   CONTACT SECTION
============================================================ */
.ps-contact-info h3 { font-size: 1.5rem; margin-bottom: 1rem; }
.ps-contact-info p { color: var(--gray-500); margin-bottom: 1.5rem; }
.ps-contact-items { display: flex; flex-direction: column; gap: 16px; }
.ps-contact-item { display: flex; align-items: flex-start; gap: 14px; }
.ps-contact-item__icon { width: 42px; height: 42px; border-radius: 10px; background: var(--gold-pale); border: 1px solid rgba(200,168,75,.3); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 18px; }
.ps-contact-item__label { font-size: .72rem; font-weight: 700; color: var(--gray-500); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 3px; }
.ps-contact-item__val { font-size: .9rem; color: var(--gray-700); font-weight: 500; }
.ps-contact-form { background: var(--off-white); border-radius: 16px; padding: 32px; }
.ps-contact-form h3 { font-size: 1.15rem; margin-bottom: 20px; font-family: var(--font-body); font-weight: 700; color: var(--navy); }

/* ============================================================
   SINGLE PROPERTY
============================================================ */
.ps-breadcrumb { font-size: .82rem; color: var(--gray-500); padding: 14px 5%; background: var(--off-white); border-bottom: 1px solid var(--gray-100); }
.ps-breadcrumb a { color: var(--blue-mid); }
.ps-breadcrumb span { color: var(--gray-300); margin: 0 7px; }
.ps-prop-detail { padding: 40px 5%; display: grid; grid-template-columns: 1fr 380px; gap: 40px; align-items: start; }
.ps-gallery__main { border-radius: var(--radius-lg); overflow: hidden; height: 390px; background: var(--gray-100); }
.ps-gallery__main img { width: 100%; height: 100%; object-fit: cover; }
.ps-gallery__thumbs { display: flex; gap: 10px; margin-top: 10px; }
.ps-gallery__thumb { flex: 1; height: 80px; border-radius: 8px; overflow: hidden; border: 2px solid transparent; cursor: pointer; background: var(--gray-100); }
.ps-gallery__thumb.active { border-color: var(--gold); }
.ps-gallery__thumb img { width: 100%; height: 100%; object-fit: cover; }
.ps-prop-detail__title { font-size: 1.8rem; color: var(--navy); margin: 24px 0 8px; }
.ps-prop-detail__metas { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin-bottom: 18px; }
.ps-prop-detail__price { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; color: var(--blue); margin-right: auto; }
.ps-chip { display: flex; align-items: center; gap: 5px; font-size: .8rem; color: var(--gray-500); background: var(--gray-50); padding: 5px 12px; border-radius: 50px; }
.ps-amenities { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; margin-bottom: 22px; }
.ps-amenity { display: flex; align-items: center; gap: 8px; font-size: .82rem; color: var(--gray-700); }
.ps-amenity::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }
.ps-nearby { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.ps-nearby-tag { background: var(--gray-50); border: 1px solid var(--gray-100); padding: 6px 14px; border-radius: 50px; font-size: .8rem; color: var(--gray-700); }
.ps-map-ph { background: linear-gradient(135deg, #e8f0fe, #d4e4fc); border-radius: 12px; height: 240px; display: flex; flex-direction: column; align-items: center; justify-content: center; border: 1.5px solid var(--gray-100); }
.ps-map-ph p { font-size: .85rem; color: var(--blue); font-weight: 600; margin-top: 8px; }

/* Inquiry Card */
.ps-inq-card { background: var(--white); border-radius: var(--radius-lg); border: 1.5px solid var(--gray-100); padding: 26px; box-shadow: var(--shadow-md); position: sticky; top: calc(var(--nav-height) + 20px); }
.ps-inq-card h3 { font-size: 1.15rem; margin-bottom: 18px; font-family: var(--font-body); font-weight: 700; }
.ps-wa-btn { display: flex; align-items: center; justify-content: center; gap: 8px; width: 100%; background: #25d366; color: var(--white); border: none; padding: 13px; border-radius: 8px; font-size: .875rem; font-weight: 600; cursor: pointer; margin-top: 10px; text-decoration: none; transition: opacity .2s; }
.ps-wa-btn:hover { opacity: .9; color: var(--white); }
.ps-brochure-link { display: block; text-align: center; margin-top: 12px; font-size: .82rem; color: var(--blue-mid); font-weight: 600; }

/* EMI Calculator */
.ps-emi { background: var(--gold-pale); border: 1.5px solid rgba(200,168,75,.3); border-radius: 12px; padding: 22px; margin-top: 22px; }
.ps-emi h4 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 14px; font-family: var(--font-body); }
.ps-emi__result { background: var(--white); border-radius: 8px; padding: 14px; margin-top: 12px; text-align: center; }
.ps-emi__amount { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; color: var(--blue); }
.ps-emi__label { font-size: .75rem; color: var(--gray-500); margin-top: 3px; }
.ps-emi .ps-form-group input { background: var(--white); }

/* ============================================================
   FILTER BAR (Listings)
============================================================ */
.ps-filter-bar { background: var(--white); border-bottom: 1px solid var(--gray-100); padding: 18px 5%; display: flex; flex-wrap: wrap; gap: 14px; align-items: flex-end; }
.ps-filter-field { display: flex; flex-direction: column; }
.ps-filter-label { font-size: .7rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--gray-500); margin-bottom: 5px; }
.ps-filter-bar select { border: 1.5px solid var(--gray-100); border-radius: 8px; padding: 9px 13px; font-size: .875rem; background: var(--gray-50); color: var(--gray-700); cursor: pointer; }
.ps-filter-bar select:focus { outline: none; border-color: var(--blue-mid); }
.ps-results-count { margin-left: auto; font-size: .875rem; color: var(--gray-500); align-self: center; }

/* ============================================================
   PAGE HERO (inner pages)
============================================================ */
.ps-page-hero { background: linear-gradient(135deg, var(--navy), var(--blue)); padding: 64px 5%; text-align: center; }
.ps-page-hero h1 { font-size: clamp(2rem, 4vw, 3rem); color: var(--white); margin-bottom: .75rem; }
.ps-page-hero p { color: rgba(255,255,255,.7); font-size: 1rem; max-width: 560px; margin: 0 auto; }

/* ============================================================
   ABOUT PAGE
============================================================ */
.ps-about-img { border-radius: 16px; overflow: hidden; max-height: 440px; }
.ps-about-img img { width: 100%; height: 100%; object-fit: cover; }
.ps-about-vals { display: flex; flex-direction: column; gap: 16px; margin-top: 22px; }
.ps-about-val { display: flex; align-items: flex-start; gap: 14px; }
.ps-about-val__num { width: 36px; height: 36px; border-radius: 8px; background: linear-gradient(135deg, var(--gold), var(--gold-light)); color: var(--navy); font-weight: 700; font-size: .875rem; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.ps-about-val__text h4 { font-weight: 700; color: var(--navy); margin-bottom: 4px; font-size: .95rem; font-family: var(--font-body); }
.ps-about-val__text p { font-size: .875rem; color: var(--gray-500); }
.ps-team-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 20px; margin-top: 2rem; }
.ps-team-card { text-align: center; padding: 26px 18px; border-radius: var(--radius-lg); border: 1.5px solid var(--gray-100); background: var(--white); transition: all .25s; }
.ps-team-card:hover { border-color: var(--gold); transform: translateY(-3px); }
.ps-team-avatar { width: 70px; height: 70px; border-radius: 50%; margin: 0 auto 12px; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; color: var(--white); }
.ps-team-name { font-weight: 700; color: var(--navy); margin-bottom: 4px; font-family: var(--font-body); }
.ps-team-role { font-size: .8rem; color: var(--gray-500); }

/* ============================================================
   BLOG
============================================================ */
.ps-blog-card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; border: 1.5px solid var(--gray-100); transition: all .25s; }
.ps-blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.ps-blog-card__img { height: 190px; overflow: hidden; background: var(--gray-100); }
.ps-blog-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.ps-blog-card:hover .ps-blog-card__img img { transform: scale(1.05); }
.ps-blog-card__body { padding: 20px; }
.ps-blog-card__cat { font-size: .7rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.ps-blog-card__body h3 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; line-height: 1.4; font-family: var(--font-body); }
.ps-blog-card__body h3 a { color: inherit; }
.ps-blog-card__body h3 a:hover { color: var(--blue-mid); }
.ps-blog-card__excerpt { font-size: .85rem; color: var(--gray-500); line-height: 1.65; margin-bottom: 14px; }
.ps-blog-card__meta { display: flex; align-items: center; gap: 10px; font-size: .78rem; color: var(--gray-300); }

/* ============================================================
   FOOTER
============================================================ */
.ps-footer { background: var(--navy); padding: 60px 5% 28px; }
.ps-footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.ps-footer__brand p { font-size: .875rem; color: rgba(255,255,255,.55); line-height: 1.7; margin-top: 14px; max-width: 260px; }
.ps-footer__col h4 { font-size: .8rem; font-weight: 700; color: var(--white); letter-spacing: .06em; text-transform: uppercase; margin-bottom: 14px; font-family: var(--font-body); }
.ps-footer__col ul { display: flex; flex-direction: column; gap: 9px; }
.ps-footer__col ul li a { font-size: .875rem; color: rgba(255,255,255,.55); transition: color .2s; }
.ps-footer__col ul li a:hover { color: var(--gold); }
.ps-footer__bottom { border-top: 1px solid rgba(255,255,255,.08); padding-top: 22px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px; }
.ps-footer__bottom p, .ps-footer__bottom a { font-size: .78rem; color: rgba(255,255,255,.4); }
.ps-footer__bottom a:hover { color: var(--gold); }

/* ============================================================
   WHATSAPP FLOAT
============================================================ */
.ps-wa-float { position: fixed; bottom: 28px; right: 28px; z-index: 400; width: 56px; height: 56px; background: #25d366; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 20px rgba(37,211,102,.45); border: none; cursor: pointer; transition: transform .2s; text-decoration: none; }
.ps-wa-float:hover { transform: scale(1.1); }

/* ============================================================
   SCROLL REVEAL
============================================================ */
.ps-reveal { opacity: 0; transform: translateY(24px); transition: opacity .55s, transform .55s; }
.ps-reveal.ps-visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   PAGINATION
============================================================ */
.ps-pagination { display: flex; justify-content: center; gap: 8px; margin-top: 40px; }
.ps-pagination a, .ps-pagination span { width: 40px; height: 40px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: .875rem; font-weight: 600; border: 1.5px solid var(--gray-100); color: var(--gray-700); transition: all .2s; }
.ps-pagination a:hover, .ps-pagination .current { background: var(--blue); border-color: var(--blue); color: var(--white); }

/* ============================================================
   TOAST NOTIFICATION
============================================================ */
.ps-toast { position: fixed; bottom: 100px; left: 50%; transform: translateX(-50%) translateY(20px); background: var(--navy); color: var(--white); padding: 12px 24px; border-radius: 8px; font-size: .875rem; font-weight: 500; z-index: 700; opacity: 0; transition: all .3s; pointer-events: none; box-shadow: var(--shadow-lg); }
.ps-toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
.ps-toast.success { background: var(--green); }

/* ============================================================
   LOADING SPINNER
============================================================ */
.ps-spinner { display: inline-block; width: 20px; height: 20px; border: 2px solid rgba(255,255,255,.3); border-radius: 50%; border-top-color: var(--white); animation: ps-spin .7s linear infinite; }
@keyframes ps-spin { to { transform: rotate(360deg); } }

/* ============================================================
   WORDPRESS CORE OVERRIDES
============================================================ */
.wp-block-image img { border-radius: var(--radius-md); }
.alignnone, .aligncenter { margin: 1.5rem 0; }
.aligncenter { text-align: center; }
.alignleft { float: left; margin: 0 1.5rem 1rem 0; }
.alignright { float: right; margin: 0 0 1rem 1.5rem; }
.wp-caption { max-width: 100%; }
.wp-caption-text { font-size: .82rem; color: var(--gray-500); margin-top: 6px; text-align: center; }
.sticky { /* WordPress sticky post */ }
.bypostauthor { /* WordPress */ }
.screen-reader-text { clip: rect(1px,1px,1px,1px); height: 1px; overflow: hidden; position: absolute; width: 1px; }

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 1024px) {
    .ps-footer__grid { grid-template-columns: 1fr 1fr; }
    .ps-prop-detail { grid-template-columns: 1fr; }
    .ps-inq-card { position: static; }
}
@media (max-width: 768px) {
    .ps-section { padding: 56px 5%; }
    .ps-grid-2 { grid-template-columns: 1fr; gap: 32px; }
    .ps-nav__links { display: none; }
    .ps-nav__hamburger { display: flex; }
    .ps-footer__grid { grid-template-columns: 1fr 1fr; gap: 28px; }
    .ps-form-row { grid-template-columns: 1fr; }
    .ps-hero__stats { gap: 20px; }
    .ps-amenities { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
    .ps-grid-3, .ps-grid-4 { grid-template-columns: 1fr; }
    .ps-footer__grid { grid-template-columns: 1fr; }
    .ps-cta-banner__btns { flex-direction: column; align-items: center; }
    .ps-search-box { flex-direction: column; }
    .ps-search-field { min-width: 100%; }
}
