/*
Theme Name: Revolutionary Properties
Theme URI: https://revolutionaryproperties.com
Author: Revolutionary IT
Author URI: https://revolutionaryit.com
Description: A modern WordPress theme for rental properties, mini-home communities, and RV parks. Includes a built-in dashboard, demo importer, and full support for Revolutionary Blocks page builder. Perfect for property managers, RV resort owners, and short-term/long-term rental operators.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: properties
Tags: real-estate, rental, business, full-width-template, custom-header, custom-menu, custom-logo, featured-images, threaded-comments, rtl-language-support, translation-ready, block-styles, wide-blocks

This theme is designed for use with Revolutionary Blocks. A child theme (Revolutionary Properties Child) is auto-installed on activation.
*/

/* ==========================================================================
   BASE RESET & ROOT VARIABLES
   ========================================================================== */
:root {
    --prop-primary:       #2f6f4f;   /* forest green – outdoors / community */
    --prop-primary-dark:  #1f4e37;
    --prop-primary-light: #4f9a73;
    --prop-secondary:     #d97706;   /* warm amber – sunset / welcome */
    --prop-accent:        #f59e0b;
    --prop-dark:          #1c2a24;   /* deep forest */
    --prop-dark-alt:      #243b32;
    --prop-text:          #1f2937;
    --prop-gray:          #6b7280;
    --prop-gray-light:    #f6f4ee;   /* warm off-white */
    --prop-white:         #ffffff;
    --prop-border:        #e5e0d4;
    --prop-heading-font:  'Poppins', 'Segoe UI', sans-serif;
    --prop-body-font:     'Inter', 'Segoe UI', sans-serif;
    --prop-mono-font:     'JetBrains Mono', 'Courier New', monospace;
    --prop-radius:        10px;
    --prop-radius-lg:     20px;
    --prop-shadow:        0 4px 24px rgba(28, 42, 36, 0.10);
    --prop-shadow-lg:     0 8px 48px rgba(28, 42, 36, 0.18);
    --prop-transition:    all 0.3s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
    font-family: var(--prop-body-font);
    color: var(--prop-dark);
    background: var(--prop-white);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* ==========================================================================
   TYPOGRAPHY
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--prop-heading-font);
    font-weight: 700;
    line-height: 1.2;
    color: var(--prop-dark);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

p { margin-bottom: 1rem; }
a { color: var(--prop-primary); text-decoration: none; transition: var(--prop-transition); }
a:hover { color: var(--prop-primary-dark); }

strong, b { font-weight: 700; }
em, i { font-style: italic; }
code { font-family: var(--prop-mono-font); background: var(--prop-gray-light); padding: 2px 6px; border-radius: 4px; font-size: 0.9em; }
blockquote { border-left: 4px solid var(--prop-primary); padding: 1rem 1.5rem; margin: 1.5rem 0; background: var(--prop-gray-light); border-radius: 0 var(--prop-radius) var(--prop-radius) 0; }

img { max-width: 100%; height: auto; display: block; }
ul, ol { padding-left: 1.5rem; margin-bottom: 1rem; }
li { margin-bottom: 0.25rem; }

/* ==========================================================================
   LAYOUT
   ========================================================================== */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.container-wide {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-padding { padding: 5rem 0; }
.section-padding-sm { padding: 3rem 0; }

.text-center { text-align: center; }
.text-left   { text-align: left; }
.text-right  { text-align: right; }

/* Grid helpers */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }

@media (max-width: 1024px) {
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .grid-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
    .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.75rem;
    border-radius: var(--prop-radius);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--prop-transition);
    text-decoration: none;
    line-height: 1;
    white-space: nowrap;
}

.btn-primary {
    background: var(--prop-primary);
    color: var(--prop-white);
    border-color: var(--prop-primary);
}
.btn-primary:hover {
    background: var(--prop-primary-dark);
    border-color: var(--prop-primary-dark);
    color: var(--prop-white);
    transform: translateY(-2px);
    box-shadow: var(--prop-shadow-lg);
}

.btn-secondary {
    background: var(--prop-secondary);
    color: var(--prop-dark);
    border-color: var(--prop-secondary);
}
.btn-secondary:hover {
    background: #00a882;
    border-color: #00a882;
    color: var(--prop-white);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--prop-primary);
    border-color: var(--prop-primary);
}
.btn-outline:hover {
    background: var(--prop-primary);
    color: var(--prop-white);
    transform: translateY(-2px);
}

.btn-outline-white {
    background: transparent;
    color: var(--prop-white);
    border-color: rgba(255,255,255,0.6);
}
.btn-outline-white:hover {
    background: var(--prop-white);
    color: var(--prop-primary);
    border-color: var(--prop-white);
}

.btn-lg { padding: 1rem 2.25rem; font-size: 1.05rem; }
.btn-sm { padding: 0.5rem 1.25rem; font-size: 0.85rem; }

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */
#prop-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: transparent;
    transition: var(--prop-transition);
}

#prop-header.scrolled {
    background: rgba(13, 27, 42, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

#prop-header.header-light {
    background: var(--prop-white);
    border-bottom: 1px solid var(--prop-border);
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    gap: 2rem;
}

/* Logo */
.site-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
    text-decoration: none;
}

.site-logo img {
    height: 44px;
    width: auto;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-name {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--prop-white);
    letter-spacing: -0.5px;
}

.logo-tagline {
    font-size: 0.65rem;
    font-weight: 400;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

#prop-header.header-light .logo-name { color: var(--prop-dark); }
#prop-header.header-light .logo-tagline { color: var(--prop-gray); }

/* Primary Nav — stretch items to full header height so there's no dead zone
   above/below the links (which would break hover when crossing to the dropdown). */
.primary-nav {
    display: flex;
    align-items: stretch;
    gap: 0.25rem;
    height: 100%;
}

.primary-nav > li {
    list-style: none;
    position: relative;
    display: flex;
    align-items: center;
}

.primary-nav > li > a {
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0 0.9rem;
    font-size: 0.92rem;
    font-weight: 500;
    color: rgba(255,255,255,0.88);
    border-radius: 6px;
    transition: var(--prop-transition);
    white-space: nowrap;
}

.primary-nav > li > a:hover,
.primary-nav > li.current-menu-item > a,
.primary-nav > li.current-menu-ancestor > a {
    color: var(--prop-white);
    background: rgba(255,255,255,0.1);
}

#prop-header.header-light .primary-nav > li > a { color: var(--prop-dark); }
#prop-header.header-light .primary-nav > li > a:hover { background: var(--prop-gray-light); color: var(--prop-primary); }

/* Dropdown */
.primary-nav > li.menu-item-has-children { position: relative; }

/* Submenu sits IMMEDIATELY below the menu item (which now fills the full header
   height — see .primary-nav > li above). No gap to cross. */
.primary-nav .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: var(--prop-white);
    border: 1px solid var(--prop-border);
    border-radius: var(--prop-radius-lg);
    box-shadow: var(--prop-shadow-lg);
    padding: 0.5rem;
    margin: 0;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(4px);
    transition: opacity .2s ease, transform .2s ease, visibility 0s linear .2s;
    z-index: 9999;
}

.primary-nav > li:hover > .sub-menu,
.primary-nav > li:focus-within > .sub-menu,
.primary-nav .sub-menu:hover {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
    transition-delay: 0s;
}

.primary-nav .sub-menu li a {
    display: block;
    padding: 0.6rem 1rem;
    color: var(--prop-dark);
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: 6px;
    transition: var(--prop-transition);
}

.primary-nav .sub-menu li a:hover {
    background: var(--prop-gray-light);
    color: var(--prop-primary);
    padding-left: 1.25rem;
}

/* Header — Right side nav */
#header-right-nav { flex-shrink: 0; }
.header-right-nav {
    display: flex; align-items: center; gap: 0.1rem;
    list-style: none; margin: 0; padding: 0;
}
.header-right-nav > li { list-style: none; position: relative; }
.header-right-nav > li > a {
    display: block;
    padding: 0.45rem 0.75rem;
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    border-radius: 4px;
    transition: color 0.15s ease, background 0.15s ease;
}
.header-right-nav > li > a:hover,
.header-right-nav > li.current-menu-item > a {
    color: var(--prop-white);
    background: rgba(255,255,255,0.08);
}
#prop-header.header-light .header-right-nav > li > a { color: var(--prop-text); }
#prop-header.header-light .header-right-nav > li > a:hover,
#prop-header.header-light .header-right-nav > li.current-menu-item > a {
    color: var(--prop-primary); background: var(--prop-gray-light);
}

/* Mobile right-nav (within mobile-nav drawer) */
.mobile-right-nav {
    list-style: none; margin: 1.25rem 0 0; padding: 1rem 0 0;
    border-top: 1px solid var(--prop-border);
}
.mobile-right-nav li { padding: 0.5rem 0; }
.mobile-right-nav a {
    color: var(--prop-muted); font-size: 0.9rem; text-decoration: none; font-weight: 500;
}
.mobile-right-nav a:hover { color: var(--prop-primary); }

@media (max-width: 1024px) {
    #header-right-nav { display: none; }
}

/* Header — logo image variants */
.site-logo-img { display: block; max-height: 48px; width: auto; }
.site-logo-light { display: none; }
#prop-header.header-transparent:not(.scrolled) .site-logo-default { display: none; }
#prop-header.header-transparent:not(.scrolled) .site-logo-light   { display: block; }

/* Header — TRANSPARENT mode */
#prop-header.header-transparent {
    background: transparent;
    box-shadow: none;
    border-bottom: 0;
}
#prop-header.header-transparent .primary-nav > li > a,
#prop-header.header-transparent .header-right-nav > li > a {
    color: rgba(255,255,255,0.92);
}
#prop-header.header-transparent .primary-nav > li > a:hover,
#prop-header.header-transparent .header-right-nav > li > a:hover { color: #fff; background: rgba(255,255,255,0.08); }

/* When user scrolls past hero, transparent header becomes solid */
#prop-header.header-transparent.scrolled {
    background: var(--prop-white);
    box-shadow: 0 4px 18px rgba(13,27,42,.07);
    border-bottom: 1px solid var(--prop-border);
}
#prop-header.header-transparent.scrolled .primary-nav > li > a,
#prop-header.header-transparent.scrolled .header-right-nav > li > a {
    color: var(--prop-text);
}
#prop-header.header-transparent.scrolled .primary-nav > li > a:hover,
#prop-header.header-transparent.scrolled .header-right-nav > li > a:hover {
    color: var(--prop-primary); background: var(--prop-gray-light);
}

/* Header — STICKY */
#prop-header.header-sticky { position: sticky; top: 0; z-index: 9999; }

/* Header — OVERLAY mode (hamburger menu at all sizes) */
#prop-header.header-overlay-mode #primary-nav,
#prop-header.header-overlay-mode #header-right-nav { display: none !important; }
#prop-header.header-overlay-mode .menu-toggle { display: flex !important; }
#prop-header.header-overlay-mode.header-transparent .menu-toggle span { background: #fff; }

body.nav-open { overflow: hidden; }

/* Mobile Nav — UPGRADE to fullscreen overlay when triggered */
.mobile-nav {
    /* Override default dropdown — go fullscreen overlay */
    position: fixed !important;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, #0d1b2a 0%, #162032 100%);
    padding: 80px 32px 48px;
    z-index: 9998;
    overflow-y: auto;
    transform: translateY(-100%);
    opacity: 0;
    transition: transform .35s ease, opacity .35s ease;
    display: block !important;
    visibility: hidden;
}
.mobile-nav.active { transform: translateY(0); opacity: 1; visibility: visible; }
.mobile-nav > ul {
    max-width: 720px;
    margin: 0 auto;
    list-style: none;
    padding: 0;
}
.mobile-nav > ul > li > a {
    display: block;
    padding: 18px 0;
    color: #fff;
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    text-decoration: none;
    transition: color .15s ease, padding-left .25s ease;
}
.mobile-nav > ul > li > a:hover { color: var(--prop-secondary); padding-left: 12px; }
.mobile-nav .sub-menu {
    list-style: none;
    padding: 8px 0 12px 16px;
    margin: 0;
}
.mobile-nav .sub-menu li a {
    font-size: 1rem;
    color: rgba(255,255,255,0.7);
    padding: 8px 0;
    display: block;
    text-decoration: none;
}
.mobile-nav .sub-menu li a:hover { color: var(--prop-primary-light); }
.mobile-right-nav {
    list-style: none;
    margin: 32px auto 0;
    padding: 24px 0 0;
    max-width: 720px;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}
.mobile-right-nav li a {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    text-decoration: none;
    font-weight: 500;
}
.mobile-right-nav li a:hover { color: #fff; }

/* Hamburger spans go light on overlay-open or transparent state */
body.nav-open .menu-toggle span { background: #fff; }

/* Header CTA */
.header-cta { display: flex; align-items: center; gap: 0.75rem; flex-shrink: 0; }
#prop-header.header-overlay-mode .header-cta { display: none; }
@media (min-width: 1025px) {
    #prop-header.header-overlay-mode .header-cta { display: flex; }
}

/* Hamburger */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 6px;
    background: none;
    border: none;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--prop-white);
    border-radius: 2px;
    transition: var(--prop-transition);
}

#prop-header.header-light .menu-toggle span { background: var(--prop-dark); }

.menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav */
.mobile-nav {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: var(--prop-dark);
    padding: 1.5rem;
    z-index: 9998;
    border-top: 1px solid rgba(255,255,255,0.1);
    max-height: calc(100vh - 80px);
    overflow-y: auto;
}

.mobile-nav.active { display: block; }

.mobile-nav ul { list-style: none; padding: 0; }
.mobile-nav ul li a {
    display: block;
    padding: 0.8rem 0;
    color: rgba(255,255,255,0.9);
    font-size: 1rem;
    font-weight: 500;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.mobile-nav ul li a:hover { color: var(--prop-secondary); }
.mobile-nav .sub-menu { padding-left: 1rem; }
.mobile-nav .sub-menu li a { font-size: 0.9rem; color: rgba(255,255,255,0.7); }

/* ==========================================================================
   HERO
   ========================================================================== */
.prop-hero-fallback {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--prop-dark) 0%, var(--prop-dark-alt) 50%, #0a2540 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 120px 0 80px;
}

.prop-hero-fallback::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 50% at 70% 50%, rgba(10, 102, 194, 0.25) 0%, transparent 70%),
        radial-gradient(ellipse 40% 40% at 20% 80%, rgba(0, 200, 160, 0.15) 0%, transparent 60%);
}

.prop-hero-fallback::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
}

.hero-content-wrap {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(10, 102, 194, 0.2);
    border: 1px solid rgba(10, 102, 194, 0.4);
    color: var(--prop-secondary);
    padding: 0.35rem 1rem;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.hero-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--prop-secondary);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.5); }
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    color: var(--prop-white);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.hero-title .highlight {
    background: linear-gradient(135deg, var(--prop-primary-light), var(--prop-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 2.5rem;
    line-height: 1.8;
    max-width: 560px;
}

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }

.hero-stats {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.hero-stat-item { text-align: left; }
.hero-stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--prop-white);
    line-height: 1;
    display: block;
}
.hero-stat-label {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.25rem;
    display: block;
}

/* ==========================================================================
   SECTION HEADERS
   ========================================================================== */
.section-header { margin-bottom: 3.5rem; }
.section-header.center { text-align: center; }

.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--prop-primary);
    margin-bottom: 0.75rem;
    position: relative;
    padding-left: 1.5rem;
}

.section-tag::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1rem;
    height: 2px;
    background: var(--prop-primary);
}

.section-header.center .section-tag { padding-left: 0; }
.section-header.center .section-tag::before { display: none; }

.section-title {
    font-size: clamp(1.75rem, 3vw, 2.75rem);
    font-weight: 800;
    color: var(--prop-dark);
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.section-title .accent { color: var(--prop-primary); }

.section-subtitle {
    font-size: 1.05rem;
    color: var(--prop-gray);
    max-width: 580px;
    line-height: 1.8;
}

.section-header.center .section-subtitle { margin: 0 auto; }

/* ==========================================================================
   SERVICE CARDS
   ========================================================================== */
.services-section { background: var(--prop-white); }

.service-card {
    background: var(--prop-white);
    border: 1px solid var(--prop-border);
    border-radius: var(--prop-radius-lg);
    padding: 2rem;
    transition: var(--prop-transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--prop-primary), var(--prop-secondary));
    transform: scaleX(0);
    transition: var(--prop-transition);
}

.service-card:hover {
    border-color: transparent;
    box-shadow: var(--prop-shadow-lg);
    transform: translateY(-6px);
}

.service-card:hover::before { transform: scaleX(1); }

.service-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(10, 102, 194, 0.1), rgba(0, 200, 160, 0.1));
    border-radius: var(--prop-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    font-size: 1.5rem;
    color: var(--prop-primary);
    transition: var(--prop-transition);
}

.service-card:hover .service-icon {
    background: var(--prop-primary);
    color: var(--prop-white);
}

.service-title {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--prop-dark);
}

.service-desc {
    font-size: 0.92rem;
    color: var(--prop-gray);
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.service-link {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--prop-primary);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: var(--prop-transition);
}

.service-link::after {
    content: '→';
    transition: var(--prop-transition);
}

.service-link:hover { color: var(--prop-primary-dark); }
.service-link:hover::after { transform: translateX(4px); }

/* ==========================================================================
   WHY CHOOSE US / FEATURES
   ========================================================================== */
.features-section {
    background: linear-gradient(135deg, var(--prop-dark) 0%, var(--prop-dark-alt) 100%);
    color: var(--prop-white);
    position: relative;
    overflow: hidden;
}

.features-section::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(10, 102, 194, 0.15), transparent 70%);
    pointer-events: none;
}

.features-section .section-title { color: var(--prop-white); }
.features-section .section-subtitle { color: rgba(255,255,255,0.65); }

.feature-item {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    padding: 1.5rem;
    border-radius: var(--prop-radius-lg);
    transition: var(--prop-transition);
}

.feature-item:hover { background: rgba(255,255,255,0.05); }

.feature-icon-wrap {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--prop-primary), var(--prop-secondary));
    border-radius: var(--prop-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--prop-white);
    flex-shrink: 0;
}

.feature-content h4 { color: var(--prop-white); margin-bottom: 0.5rem; font-size: 1.05rem; }
.feature-content p { color: rgba(255,255,255,0.6); font-size: 0.9rem; line-height: 1.65; margin: 0; }

/* ==========================================================================
   PROCESS / HOW IT WORKS
   ========================================================================== */
.process-section { background: var(--prop-gray-light); }

.process-steps { display: flex; flex-direction: column; gap: 0; }

.process-step {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 2rem 0;
    border-bottom: 1px solid var(--prop-border);
    position: relative;
}

.process-step:last-child { border-bottom: none; }

.step-number {
    width: 56px;
    height: 56px;
    background: var(--prop-primary);
    color: var(--prop-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 800;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.process-step:not(:last-child) .step-number::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: calc(100% + 2rem + 1px);
    background: linear-gradient(to bottom, var(--prop-primary), var(--prop-border));
    z-index: 0;
}

.step-content h3 { font-size: 1.15rem; margin-bottom: 0.5rem; }
.step-content p { font-size: 0.92rem; color: var(--prop-gray); margin: 0; line-height: 1.7; }

/* ==========================================================================
   STATS / COUNTER STRIP
   ========================================================================== */
.stats-strip {
    background: linear-gradient(135deg, var(--prop-primary) 0%, var(--prop-primary-dark) 100%);
    padding: 3.5rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

@media (max-width: 768px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .stats-grid { grid-template-columns: 1fr; } }

.stat-item {}

.stat-number {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--prop-white);
    line-height: 1;
    display: block;
}

.stat-label {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.5rem;
    display: block;
}

.stat-divider {
    width: 32px;
    height: 2px;
    background: rgba(255,255,255,0.3);
    margin: 0.75rem auto 0;
    border-radius: 2px;
}

/* ==========================================================================
   TECHNOLOGY STACK
   ========================================================================== */
.tech-stack-section { background: var(--prop-white); }

.tech-logos-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.5rem;
    align-items: center;
}

@media (max-width: 1024px) { .tech-logos-grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 640px) { .tech-logos-grid { grid-template-columns: repeat(3, 1fr); } }

.tech-logo-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.25rem 1rem;
    border: 1px solid var(--prop-border);
    border-radius: var(--prop-radius-lg);
    transition: var(--prop-transition);
    text-align: center;
}

.tech-logo-item:hover {
    border-color: var(--prop-primary);
    box-shadow: var(--prop-shadow);
    transform: translateY(-3px);
}

.tech-logo-item .tech-icon {
    font-size: 2rem;
    color: var(--prop-gray);
    transition: var(--prop-transition);
}
.tech-logo-item:hover .tech-icon { color: var(--prop-primary); }

.tech-logo-item span {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--prop-gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */
.testimonials-section { background: var(--prop-gray-light); }

.testimonial-card {
    background: var(--prop-white);
    border: 1px solid var(--prop-border);
    border-radius: var(--prop-radius-lg);
    padding: 2rem;
    transition: var(--prop-transition);
}

.testimonial-card:hover {
    box-shadow: var(--prop-shadow-lg);
    transform: translateY(-4px);
}

.testimonial-stars {
    color: #f59e0b;
    font-size: 1rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.testimonial-text {
    font-size: 0.95rem;
    color: var(--prop-dark);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    background: var(--prop-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--prop-white);
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
}

.author-info {}
.author-name { font-weight: 700; font-size: 0.92rem; color: var(--prop-dark); }
.author-role { font-size: 0.8rem; color: var(--prop-gray); }

/* ==========================================================================
   BLOG / INSIGHTS
   ========================================================================== */
.blog-card {
    background: var(--prop-white);
    border-radius: var(--prop-radius-lg);
    overflow: hidden;
    border: 1px solid var(--prop-border);
    transition: var(--prop-transition);
}

.blog-card:hover { box-shadow: var(--prop-shadow-lg); transform: translateY(-4px); }

.blog-thumb {
    width: 100%;
    height: 220px;
    object-fit: cover;
    background: var(--prop-gray-light);
}

.blog-body { padding: 1.5rem; }

.blog-meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.blog-cat {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--prop-primary);
    background: rgba(10, 102, 194, 0.1);
    padding: 2px 8px;
    border-radius: 4px;
}

.blog-date { font-size: 0.8rem; color: var(--prop-gray); }

.blog-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--prop-dark);
    margin-bottom: 0.75rem;
    line-height: 1.4;
    transition: var(--prop-transition);
}

.blog-card:hover .blog-title { color: var(--prop-primary); }

.blog-excerpt { font-size: 0.88rem; color: var(--prop-gray); line-height: 1.65; margin-bottom: 1.25rem; }

/* ==========================================================================
   CTA BAND
   ========================================================================== */
.cta-band {
    background: linear-gradient(135deg, var(--prop-dark) 0%, #0a2540 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.cta-band::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(10, 102, 194, 0.2), transparent 70%);
}

.cta-band-inner { position: relative; z-index: 1; }
.cta-band h2 { color: var(--prop-white); font-size: clamp(1.75rem, 3vw, 2.75rem); margin-bottom: 1rem; }
.cta-band p { color: rgba(255,255,255,0.65); font-size: 1.05rem; margin-bottom: 2rem; max-width: 520px; margin-left: auto; margin-right: auto; }
.cta-band .cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ==========================================================================
   CONTACT FORM
   ========================================================================== */
.contact-section { background: var(--prop-white); }

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: start;
}

@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-info h3 { font-size: 1.5rem; margin-bottom: 0.75rem; }
.contact-info p { color: var(--prop-gray); margin-bottom: 2rem; }

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.contact-detail-icon {
    width: 40px;
    height: 40px;
    background: rgba(10, 102, 194, 0.1);
    border-radius: var(--prop-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--prop-primary);
    font-size: 1rem;
    flex-shrink: 0;
}

.contact-detail-text { font-size: 0.9rem; }
.contact-detail-text strong { display: block; color: var(--prop-dark); font-weight: 600; margin-bottom: 0.2rem; }
.contact-detail-text span { color: var(--prop-gray); }

.contact-form {}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
@media (max-width: 540px) { .form-row { grid-template-columns: 1fr; } }

.form-group { margin-bottom: 1rem; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--prop-dark); margin-bottom: 0.4rem; }

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1.5px solid var(--prop-border);
    border-radius: var(--prop-radius);
    font-family: var(--prop-body-font);
    font-size: 0.92rem;
    color: var(--prop-dark);
    background: var(--prop-white);
    transition: var(--prop-transition);
    outline: none;
    appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--prop-primary);
    box-shadow: 0 0 0 3px rgba(10, 102, 194, 0.12);
}

.form-group textarea { resize: vertical; min-height: 130px; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
#prop-footer {
    background: var(--prop-dark);
    color: rgba(255,255,255,0.7);
    padding-top: 4rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2.5rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-brand {}
.footer-brand .logo-name { color: var(--prop-white); font-size: 1.5rem; }
.footer-brand .logo-tagline { color: rgba(255,255,255,0.4); }
.footer-brand p { font-size: 0.9rem; line-height: 1.8; margin-top: 1rem; margin-bottom: 1.5rem; }

.footer-social { display: flex; gap: 0.75rem; }
.social-link {
    width: 38px;
    height: 38px;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.6);
    font-size: 0.95rem;
    transition: var(--prop-transition);
}
.social-link:hover { background: var(--prop-primary); border-color: var(--prop-primary); color: var(--prop-white); }

.footer-col h4 {
    color: var(--prop-white);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.25rem;
}

.footer-col ul { list-style: none; padding: 0; }
.footer-col ul li { margin-bottom: 0.65rem; }
.footer-col ul li a {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.55);
    transition: var(--prop-transition);
}
.footer-col ul li a:hover { color: var(--prop-white); padding-left: 4px; }

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 0;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-bottom-text { font-size: 0.83rem; }
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a { font-size: 0.83rem; color: rgba(255,255,255,0.5); }
.footer-bottom-links a:hover { color: var(--prop-white); }

/* ==========================================================================
   ELEMENTOR OVERRIDES
   ========================================================================== */
.elementor-page .prop-hero-fallback { display: none; }

.elementor-section.prop-section-dark { background: var(--prop-dark) !important; }
.elementor-section.prop-section-primary { background: var(--prop-primary) !important; }
.elementor-section.prop-section-gray { background: var(--prop-gray-light) !important; }

.elementor-widget-heading .elementor-heading-title { font-family: var(--prop-heading-font) !important; }

/* Elementor button enhancements */
.elementor-button {
    border-radius: var(--prop-radius) !important;
    font-weight: 600 !important;
    transition: var(--prop-transition) !important;
}

/* ==========================================================================
   WORDPRESS CORE / GUTENBERG
   ========================================================================== */
.wp-block-image img { border-radius: var(--prop-radius); }
.wp-block-quote { border-left: 4px solid var(--prop-primary); }
.wp-block-button__link { border-radius: var(--prop-radius) !important; }

.entry-content img { border-radius: var(--prop-radius); }
.entry-content table { width: 100%; border-collapse: collapse; margin-bottom: 1.5rem; }
.entry-content table th, .entry-content table td { padding: 0.75rem 1rem; border: 1px solid var(--prop-border); text-align: left; }
.entry-content table th { background: var(--prop-gray-light); font-weight: 700; }

.alignleft { float: left; margin: 0 1.5rem 1rem 0; }
.alignright { float: right; margin: 0 0 1rem 1.5rem; }
.aligncenter { display: block; margin: 0 auto 1.5rem; }

/* ==========================================================================
   PAGINATION
   ========================================================================== */
.prop-pagination {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    margin-top: 3rem;
}

.prop-pagination a, .prop-pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid var(--prop-border);
    border-radius: var(--prop-radius);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--prop-dark);
    transition: var(--prop-transition);
}

.prop-pagination a:hover, .prop-pagination .current {
    background: var(--prop-primary);
    border-color: var(--prop-primary);
    color: var(--prop-white);
}

/* ==========================================================================
   UTILITIES
   ========================================================================== */
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* ==========================================================================
   FRONT PAGE LAYOUT HELPERS
   ========================================================================== */
.why-us-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.process-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 4rem;
    align-items: start;
}

@media (max-width: 900px) {
    .why-us-grid,
    .process-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}

.blog-thumb-placeholder {
    width: 100%;
    height: 220px;
    background: var(--prop-gray-light);
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-thumb-placeholder i {
    font-size: 2.5rem;
    color: var(--prop-border);
}

/* ==========================================================================
   SCROLL-TO-TOP
   ========================================================================== */
#scroll-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 44px;
    height: 44px;
    background: var(--prop-primary);
    color: var(--prop-white);
    border: none;
    border-radius: var(--prop-radius);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    box-shadow: var(--prop-shadow);
    opacity: 0;
    visibility: hidden;
    transition: var(--prop-transition);
    z-index: 8888;
}

#scroll-top.visible { opacity: 1; visibility: visible; }
#scroll-top:hover { background: var(--prop-primary-dark); transform: translateY(-3px); }

/* ==========================================================================
   PRELOADER
   ========================================================================== */
#prop-preloader {
    position: fixed;
    inset: 0;
    background: var(--prop-dark);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#prop-preloader.loaded { opacity: 0; visibility: hidden; }

.preloader-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.preloader-logo-text { color: var(--prop-white); font-size: 1.5rem; font-weight: 800; }

.preloader-bar {
    width: 200px;
    height: 3px;
    background: rgba(255,255,255,0.1);
    border-radius: 3px;
    overflow: hidden;
}

.preloader-bar::after {
    content: '';
    display: block;
    height: 100%;
    background: linear-gradient(90deg, var(--prop-primary), var(--prop-secondary));
    border-radius: 3px;
    animation: load-bar 1.5s ease forwards;
}

@keyframes load-bar {
    from { width: 0; }
    to { width: 100%; }
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1024px) {
    .primary-nav, .header-cta { display: none; }
    .menu-toggle { display: flex; }
    .section-padding { padding: 3.5rem 0; }
}

@media (max-width: 768px) {
    .hero-actions { flex-direction: column; align-items: flex-start; }
    .hero-stats { gap: 1.5rem; }
    .process-step { grid-template-columns: 60px 1fr; }
}

@media (max-width: 480px) {
    .container { padding: 0 1rem; }
    .btn-lg { padding: 0.85rem 1.5rem; font-size: 0.95rem; }
    .header-inner { height: 68px; }
}

/* ==========================================================================
   PROPERTIES — front page additions
   ========================================================================== */
.alt-bg { background: var(--prop-gray-light); }

/* Rental cards (featured rentals) */
.rental-card { display: block; background: #fff; border: 1px solid var(--prop-border); border-radius: var(--prop-radius-lg); overflow: hidden; text-decoration: none; color: inherit; transition: transform .25s, box-shadow .25s; }
.rental-card:hover { transform: translateY(-4px); box-shadow: var(--prop-shadow-lg); }
.rental-card-img { aspect-ratio: 4/3; overflow: hidden; background: var(--prop-gray-light); }
.rental-card-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.rental-card-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 3rem; color: var(--prop-primary); opacity: .35; }
.rental-card-body { padding: 1.4rem 1.5rem 1.6rem; }
.rental-card-body h3 { color: var(--prop-dark); font-size: 1.2rem; margin: 0 0 .5rem; }
.rental-card-body p { color: var(--prop-gray); font-size: .95rem; line-height: 1.6; margin: 0 0 .9rem; }
.rental-card-link { color: var(--prop-primary); font-weight: 700; font-size: .9rem; }

/* Amenities grid */
.amenities-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 1rem; max-width: 1100px; margin: 0 auto; }
.amenity-tile { background: #fff; border: 1px solid var(--prop-border); border-radius: var(--prop-radius); padding: 1.1rem .8rem; text-align: center; display: flex; flex-direction: column; gap: .5rem; align-items: center; transition: transform .2s, border-color .2s; }
.amenity-tile:hover { border-color: var(--prop-primary); transform: translateY(-2px); }
.amenity-tile i { font-size: 1.6rem; color: var(--prop-primary); }
.amenity-tile span { font-size: .85rem; color: var(--prop-text); font-weight: 600; }

/* Promise cards (why us) */
.promise-card { background: #fff; border: 1px solid var(--prop-border); border-radius: var(--prop-radius-lg); padding: 2rem 1.6rem; text-align: center; transition: transform .25s, box-shadow .25s; }
.promise-card:hover { transform: translateY(-4px); box-shadow: var(--prop-shadow); }
.promise-icon { width: 64px; height: 64px; border-radius: 16px; background: rgba(47,111,79,.10); display: inline-flex; align-items: center; justify-content: center; font-size: 1.5rem; color: var(--prop-primary); margin-bottom: 1rem; }
.promise-card h3 { color: var(--prop-dark); font-size: 1.2rem; margin: 0 0 .5rem; }
.promise-card p { color: var(--prop-gray); font-size: .95rem; line-height: 1.7; margin: 0; }

/* CTA band variations */
.cta-band { background: var(--prop-primary); }
.cta-band-inner { display: grid; grid-template-columns: 1fr auto; gap: 2rem; align-items: center; max-width: 1100px; margin: 0 auto; padding: 3rem 1.5rem; }
.cta-band-actions { display: flex; gap: 1rem; align-items: center; flex-wrap: wrap; }
.btn-amber { background: var(--prop-secondary); color: var(--prop-dark); }
.btn-amber:hover { background: var(--prop-accent); }
.btn-outline-white { border: 2px solid rgba(255,255,255,.6); color: #fff; background: transparent; }
.btn-outline-white:hover { background: rgba(255,255,255,.12); }

/* Contact section */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 3rem; }
.contact-info h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); color: var(--prop-dark); margin: .8rem 0 1rem; }
.contact-info p { color: var(--prop-gray); line-height: 1.8; margin-bottom: 1.4rem; }
.contact-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: .8rem; color: var(--prop-text); }
.contact-list i { color: var(--prop-primary); margin-right: .55rem; }
.contact-list a { color: var(--prop-primary); }
.contact-form-wrap { background: #fff; border: 1px solid var(--prop-border); border-radius: var(--prop-radius-lg); padding: 2rem; }

/* Testimonials */
.testimonial-card { background: #fff; border: 1px solid var(--prop-border); border-radius: var(--prop-radius-lg); padding: 1.8rem; }
.testimonial-card .stars { color: var(--prop-secondary); margin-bottom: .8rem; font-size: 1.2rem; }
.testimonial-card .testimonial-text { color: var(--prop-text); font-style: italic; line-height: 1.7; margin: 0 0 1rem; }
.testimonial-author strong { display: block; color: var(--prop-dark); }
.testimonial-author span { color: var(--prop-gray); font-size: .85rem; }

/* Stats grid */
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; text-align: center; }
.stat-number { display: block; font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; color: var(--prop-primary); line-height: 1.1; }
.stat-label { color: var(--prop-gray); font-size: .9rem; text-transform: uppercase; letter-spacing: 1px; }

/* Blog cards */
.blog-card { background: #fff; border: 1px solid var(--prop-border); border-radius: var(--prop-radius-lg); overflow: hidden; transition: transform .25s, box-shadow .25s; }
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--prop-shadow-lg); }
.blog-card-img { aspect-ratio: 16/9; overflow: hidden; background: var(--prop-gray-light); }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; }
.blog-card-placeholder { display: flex; align-items: center; justify-content: center; height: 100%; color: var(--prop-primary); opacity: .4; font-size: 2.5rem; }
.blog-card-body { padding: 1.4rem 1.5rem; }
.blog-meta { color: var(--prop-gray); font-size: .8rem; text-transform: uppercase; letter-spacing: 1px; }
.blog-title { margin: .5rem 0 .8rem; font-size: 1.1rem; }
.blog-title a { color: var(--prop-dark); text-decoration: none; }
.blog-title a:hover { color: var(--prop-primary); }
.blog-link { color: var(--prop-primary); font-weight: 700; font-size: .88rem; }

/* Forms */
.prop-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: .8rem; margin-bottom: .8rem; }
.prop-form input, .prop-form textarea { width: 100%; padding: .8rem 1rem; border: 1px solid var(--prop-border); border-radius: var(--prop-radius); font-family: inherit; font-size: .95rem; box-sizing: border-box; }
.prop-form input:focus, .prop-form textarea:focus { border-color: var(--prop-primary); outline: none; }
.prop-form textarea { margin-bottom: .8rem; }

@media (max-width: 768px) {
    .stats-grid     { grid-template-columns: repeat(2, 1fr); }
    .cta-band-inner { grid-template-columns: 1fr; text-align: center; }
    .contact-grid   { grid-template-columns: 1fr; }
    .prop-form .form-row { grid-template-columns: 1fr; }
}
