/* ============================================================================
   D&D Property Management - Main Stylesheet
   Brand: Navy #0f1c48 | Gold #B37c3d | Gray #8b8383 | Dark #484848
   Fonts: Playfair Display (headings) | Montserrat (body)
   ============================================================================ */

/* Skip link — accessibility */
.skip-link {
    position: absolute;
    top: -100%;
    left: 1rem;
    z-index: 100000;
    padding: .75rem 1.5rem;
    background: #0f1c48;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: .9rem;
    border-radius: 0 0 6px 6px;
    text-decoration: none;
    transition: top .2s;
}
.skip-link:focus {
    top: 0;
}

:root {
    --color-navy: #0f1c48;
    --color-charcoal: #0f1c48;
    --color-gold: #B37c3d;
    --color-cream: #f5f0e8;
    --color-white: #ffffff;
    --color-text-dark: #484848;
    --color-text-light: #8b8383;
    --color-border: #d4cfc7;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
    --transition: all 400ms cubic-bezier(0.77, 0, 0.175, 1);
    --card-hover-lift: translateY(-5px);
}

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

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

body {
    font-family: var(--font-body);
    color: var(--color-text-dark);
    background-color: var(--color-white);
    line-height: 1.6;
    font-weight: 500;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--color-navy);
    margin-bottom: 1rem;
    font-weight: 700;
}

h1 { font-size: 3rem; line-height: 1.2; }
h2 { font-size: 2.25rem; margin-bottom: 1.5rem; margin-top: 2rem; }
h2:first-child { margin-top: 0; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p { margin-bottom: 1rem; font-size: 1rem; color: var(--color-text-light); font-weight: 500; }
a { color: var(--color-navy); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--color-gold); }
strong { color: var(--color-navy); }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ============================================================================
   HEADER
   ============================================================================ */
.site-header, .header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--color-white);
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    width: 100%;
}

.header-content, .nav {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    gap: 2rem;
}

.logo h1 { font-size: 1.5rem; margin: 0; }
.logo-d { color: var(--color-gold); }

.main-nav ul, .nav-links {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-nav a, .nav-links a {
    display: block;
    padding: 0.5rem 0.75rem;
    font-weight: 600;
    white-space: nowrap;
    color: var(--color-navy);
    text-decoration: none;
    transition: color 0.2s ease;
}

.main-nav a:hover, .nav-links a:hover {
    color: var(--color-gold);
}

/* ============================================================================
   HAMBURGER MENU
   ============================================================================ */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1100;
    position: relative;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-navy);
    border-radius: 2px;
    transition: all 0.3s ease;
    position: absolute;
}

.hamburger span:nth-child(1) { transform: translateY(-7px); }
.hamburger span:nth-child(2) { transform: translateY(0); }
.hamburger span:nth-child(3) { transform: translateY(7px); }

/* Hamburger open state */
.mobile-nav-open .hamburger span:nth-child(1) {
    transform: rotate(45deg);
}
.mobile-nav-open .hamburger span:nth-child(2) {
    opacity: 0;
}
.mobile-nav-open .hamburger span:nth-child(3) {
    transform: rotate(-45deg);
}

/* Mobile nav overlay */
.mobile-nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 28, 72, 0.97);
    z-index: 1050;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.77, 0, 0.175, 1);
}

.mobile-nav-open .mobile-nav-overlay {
    display: flex;
    transform: translateX(0);
}

.mobile-nav-overlay a {
    display: block;
    color: var(--color-white);
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    padding: 0.75rem 0;
    text-align: center;
    transition: color 0.2s ease;
}

.mobile-nav-overlay a:hover {
    color: var(--color-gold);
}

.mobile-nav-overlay .btn-primary {
    margin-top: 1.5rem;
    font-size: 1rem;
    padding: 0.75rem 2.5rem;
}

/* ============================================================================
   HERO
   ============================================================================ */
.hero {
    position: relative;
    background: linear-gradient(135deg, #0f1c48 0%, #162557 100%);
    color: var(--color-white);
    padding: 8rem 0;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(179, 124, 61, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(179, 124, 61, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(15, 28, 72, 0.7);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-title { font-size: 3.5rem; color: var(--color-white); margin-bottom: 1rem; line-height: 1.2; font-weight: 700; }
.hero-subtitle { font-size: 1.5rem; color: var(--color-gold); margin-bottom: 1rem; font-weight: 600; }
.hero-description { font-size: 1.125rem; color: rgba(255, 255, 255, 0.9); margin-bottom: 2rem; }

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================================================
   BUTTONS
   ============================================================================ */
.btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    font-weight: 700;
    text-align: center;
    border-radius: 4px;
    transition: var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 1rem;
    font-family: var(--font-body);
}

.btn-primary {
    background-color: var(--color-gold);
    color: var(--color-white);
}

.btn-primary:hover {
    background-color: #9a6a33;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 24px rgba(179, 124, 61, 0.35);
    color: var(--color-white);
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-white);
    border-color: var(--color-white);
}

.btn-secondary:hover {
    background-color: var(--color-white);
    color: var(--color-navy);
}

.btn-small { padding: 0.5rem 1.5rem; font-size: 0.9rem; }
.btn-large { padding: 1rem 2.5rem; font-size: 1.125rem; }

/* ============================================================================
   COMPANIES SECTION
   ============================================================================ */
.companies-section { padding: 4rem 0; background-color: var(--color-white); }
.companies-section h2 { text-align: center; margin-bottom: 0.5rem; }
.section-subtitle { text-align: center; font-size: 1.1rem; color: var(--color-text-light); margin-bottom: 3rem; font-weight: 500; }

.companies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.company-card {
    background-color: var(--color-white);
    border: 2px solid var(--color-border);
    padding: 2rem;
    border-radius: 8px;
    transition: var(--transition);
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

@keyframes fadeInUp {
    to { opacity: 1; transform: translateY(0); }
    from { opacity: 0; transform: translateY(20px); }
}

.company-card:hover {
    border-color: var(--color-gold);
    box-shadow: 0 12px 24px rgba(179, 124, 61, 0.15);
    transform: translateY(-8px);
}

.icon-placeholder { width: 60px; height: 60px; background: linear-gradient(135deg, var(--color-gold) 0%, #9a6a33 100%); border-radius: 4px; margin-bottom: 1rem; }
.company-card h3 { margin-bottom: 0.5rem; }
.card-tagline { color: var(--color-gold); font-weight: 700; margin-bottom: 1rem; }
.card-link { display: inline-block; color: var(--color-gold); font-weight: 700; margin-top: 1rem; transition: var(--transition); }
.card-link:hover { transform: translateX(4px); }

/* ============================================================================
   VALUE SECTION
   ============================================================================ */
.value-section { padding: 4rem 0; background-color: var(--color-cream); }
.value-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.value-card {
    background-color: var(--color-white);
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid var(--color-gold);
    transition: var(--transition);
}

.value-card:hover { box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1); }
.value-card h3 { margin-bottom: 1rem; color: var(--color-navy); }

/* ============================================================================
   STATS SECTION
   ============================================================================ */
.stats-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #0f1c48 0%, #162557 100%);
    color: var(--color-white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-card { padding: 2rem; }
.stat-number { font-size: 3rem; font-family: var(--font-heading); color: var(--color-gold); display: block; margin-bottom: 0.5rem; font-weight: 700; }
.stat-label { font-size: 1.1rem; opacity: 0.9; font-weight: 500; }

/* ============================================================================
   TESTIMONIALS
   ============================================================================ */
.testimonials-section { padding: 4rem 0; background-color: var(--color-white); }
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: linear-gradient(135deg, var(--color-cream) 0%, var(--color-white) 100%);
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid var(--color-gold);
}

.testimonial-text { font-style: italic; color: var(--color-text-dark); margin-bottom: 1rem; }
.testimonial-author { font-weight: 700; color: var(--color-navy); font-size: 0.95rem; }

/* ============================================================================
   CTA SECTION
   ============================================================================ */
.cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #0f1c48 0%, #162557 100%);
    color: var(--color-white);
    text-align: center;
}

.cta-section h2 { color: var(--color-white); margin-bottom: 1rem; }
.cta-contact { margin-top: 1.5rem; font-size: 1.1rem; color: var(--color-gold); }
.cta-inner { text-align: center; max-width: 720px; margin: 0 auto; }
.cta-desc { color: rgba(255,255,255,0.8); font-size: 1.1rem; margin-bottom: 2rem; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 1.5rem; }
.cta-contact a { color: var(--color-gold); }
.cta-contact a:hover { color: #d4983f; }

/* ============================================================================
   PAGE HERO
   ============================================================================ */
.page-hero {
    position: relative;
    background: linear-gradient(135deg, #0f1c48 0%, #162557 100%);
    color: var(--color-white);
    padding: 5rem 0 4rem;
    text-align: center;
    overflow: hidden;
}

.page-hero-bg-gradient {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 60%, rgba(179, 124, 61, 0.1) 0%, transparent 55%);
    pointer-events: none;
}
.page-hero-content { position: relative; z-index: 2; }
.page-hero h1 { color: var(--color-white); margin-bottom: 0.75rem; }
.page-hero p { color: var(--color-gold); font-size: 1.25rem; }
.page-hero-tagline { color: rgba(255,255,255,0.8); font-size: 1.2rem; max-width: 680px; margin: 0 auto; }

/* ============================================================================
   CONTENT SECTION
   ============================================================================ */
.content-section { padding: 4rem 0; }
.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.content-main { padding-right: 2rem; }
.content-list { list-style: none; margin-bottom: 2rem; }
.content-list li { padding: 0.75rem 0; padding-left: 2rem; position: relative; }
.content-list li::before { content: '\2713'; position: absolute; left: 0; color: var(--color-gold); font-weight: bold; }

.content-sidebar { display: flex; flex-direction: column; gap: 2rem; }
.info-box, .contact-box {
    background-color: var(--color-cream);
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid var(--color-gold);
}

.info-box h3, .contact-box h3 { margin-bottom: 1rem; }
.info-box ul { list-style: none; }
.info-box li { padding: 0.5rem 0; font-size: 0.95rem; }

/* ============================================================================
   BREADCRUMB
   ============================================================================ */
.breadcrumb { padding: 2rem 0 1rem; }
.breadcrumb ol { list-style: none; display: flex; flex-wrap: wrap; gap: 0.5rem; align-items: center; }
.breadcrumb li { display: flex; align-items: center; }
.breadcrumb li:not(:last-child)::after { content: '/'; margin-left: 0.5rem; color: var(--color-text-light); }
.breadcrumb a { color: var(--color-gold); }
.breadcrumb span { color: var(--color-text-light); }

.breadcrumb-bar {
    background: var(--color-cream);
    border-bottom: 1px solid var(--color-border);
    padding: 0.65rem 0;
}

/* ============================================================================
   SERVICE SHOWCASE
   ============================================================================ */
.service-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.service-item {
    background-color: var(--color-cream);
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid var(--color-gold);
    transition: var(--transition);
}

.service-item:hover { box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1); transform: translateY(-4px); }

/* ============================================================================
   BENEFITS GRID
   ============================================================================ */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.benefit-card {
    background-color: var(--color-white);
    padding: 2rem;
    border-radius: 8px;
    border: 2px solid var(--color-border);
    transition: var(--transition);
}

.benefit-card:hover {
    border-color: var(--color-gold);
    box-shadow: 0 8px 16px rgba(179, 124, 61, 0.15);
}

/* ============================================================================
   PROCESS STEPS
   ============================================================================ */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.step { position: relative; padding-left: 4rem; }
.step-number {
    position: absolute; left: 0;
    width: 3rem; height: 3rem;
    background: linear-gradient(135deg, var(--color-gold) 0%, #9a6a33 100%);
    color: var(--color-white);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.25rem; font-weight: 700;
    border-radius: 50%;
}

/* ============================================================================
   CONTACT
   ============================================================================ */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info { padding-right: 1rem; }
.contact-form {
    background-color: var(--color-cream);
    padding: 2rem;
    border-radius: 8px;
}

.info-block { margin-bottom: 2rem; }
.form-group { margin-bottom: 1.5rem; }
.form-group label { display: block; margin-bottom: 0.5rem; font-weight: 700; color: var(--color-navy); }
.form-group input, .form-group textarea, .form-group select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--color-border);
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
}

.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
    outline: none;
    border-color: var(--color-gold);
    box-shadow: 0 0 0 3px rgba(179, 124, 61, 0.1);
}

.company-links { list-style: none; }
.company-links li { padding: 0.5rem 0; }
.company-links a { color: var(--color-gold); font-weight: 600; }

/* ============================================================================
   BLOG
   ============================================================================ */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.blog-card {
    background-color: var(--color-white);
    border: 2px solid var(--color-border);
    padding: 2rem;
    border-radius: 8px;
    transition: var(--transition);
}

.blog-card:hover {
    border-color: var(--color-gold);
    box-shadow: 0 12px 24px rgba(179, 124, 61, 0.15);
}

.blog-meta { display: flex; gap: 1rem; margin-bottom: 1rem; font-size: 0.9rem; }
.blog-category { background-color: var(--color-cream); color: var(--color-navy); padding: 0.25rem 0.75rem; border-radius: 4px; font-weight: 600; }
.blog-date { color: var(--color-text-light); }
.blog-card h3 { margin-bottom: 1rem; }
.blog-link { display: inline-block; color: var(--color-gold); font-weight: 700; margin-top: 1rem; transition: var(--transition); }
.blog-link:hover { transform: translateX(4px); }

/* BLOG POST */
.blog-post { padding: 3rem 0; }
.post-header { margin-bottom: 3rem; padding-bottom: 2rem; border-bottom: 2px solid var(--color-border); }
.post-header h1 { margin-bottom: 1rem; }
.post-meta { display: flex; gap: 1.5rem; font-size: 0.95rem; color: var(--color-text-light); flex-wrap: wrap; }
.post-category { background-color: var(--color-cream); color: var(--color-navy); padding: 0.25rem 0.75rem; border-radius: 4px; font-weight: 600; }
.post-content { font-size: 1.05rem; line-height: 1.8; max-width: 800px; }
.post-intro { font-size: 1.2rem; font-weight: 600; color: var(--color-navy); margin-bottom: 2rem; }
.post-content h2 { margin-top: 2.5rem; }
.post-content h3 { margin-top: 1.5rem; margin-bottom: 1rem; }

.faq-section { padding: 5rem 0; }
.faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    max-width: 860px;
    margin: 0 auto;
}
.faq-item {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-left: 4px solid var(--color-gold);
    border-radius: 8px;
    padding: 1.5rem 2rem;
}
.faq-item h3 { margin-top: 0; margin-bottom: 0.75rem; color: var(--color-navy); }

/* FAQ Accordion (details/summary) */
.faq-accordion { margin: 1.5rem 0; }
.faq-accordion details { background: var(--color-white); border: 1px solid var(--color-border); border-left: 4px solid var(--color-gold); border-radius: 8px; margin-bottom: 0.75rem; overflow: hidden; }
.faq-accordion details summary { padding: 1.25rem 1.5rem; font-weight: 700; color: var(--color-navy); cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; font-family: var(--font-heading); }
.faq-accordion details summary::-webkit-details-marker { display: none; }
.faq-accordion details summary::after { content: '+'; font-size: 1.4rem; color: var(--color-gold); font-weight: 300; }
.faq-accordion details[open] summary::after { content: '\2212'; }
.faq-accordion details[open] summary { border-bottom: 1px solid var(--color-border); }
.faq-accordion details p { padding: 1rem 1.5rem; color: var(--color-text); line-height: 1.7; margin: 0; }

/* Service Page Process Steps (Enhanced) */
.service-process-steps { list-style: none; padding: 0; margin: 2rem 0 2.5rem; counter-reset: pm-step; }
.service-process-steps li { counter-increment: pm-step; position: relative; padding: 1.5rem 1.5rem 1.5rem 5rem; margin-bottom: 1rem; background: var(--color-cream, #f8f6f0); border-radius: 8px; border: 1px solid var(--color-border); }
.service-process-steps li::before { content: counter(pm-step); position: absolute; left: 1.25rem; top: 1.5rem; width: 2.5rem; height: 2.5rem; background: linear-gradient(135deg, var(--color-gold) 0%, #9a6a33 100%); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 1rem; }
.service-process-steps li strong { display: block; color: var(--color-navy); margin-bottom: 0.35rem; font-family: var(--font-heading); }

/* Service Page Section Spacing */
.service-page-main h2 { margin-top: 2.5rem; }
.service-page-main h2:first-child { margin-top: 0; }
.service-page-main h3 { margin-top: 2rem; margin-bottom: 0.75rem; }

.author-box { background-color: var(--color-cream); padding: 2rem; border-radius: 8px; margin-top: 3rem; }
.author-box h3 { margin-bottom: 1rem; }
.post-nav { margin-top: 3rem; padding-top: 2rem; border-top: 2px solid var(--color-border); }

/* ============================================================================
   SERVICE AREAS
   ============================================================================ */
.service-areas-list { margin: 2rem 0; }
.service-areas-list ul { columns: 2; column-gap: 2rem; list-style: none; }
.service-areas-list li { break-inside: avoid; padding: 0.75rem 0; padding-left: 2rem; position: relative; }
.service-areas-list li::before { content: '\2022'; position: absolute; left: 0; color: var(--color-gold); font-weight: bold; }

/* CTA BOX */
.cta-box {
    background-color: var(--color-cream);
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid var(--color-gold);
    margin: 2rem 0;
    text-align: center;
}

/* ============================================================================
   FOOTER
   ============================================================================ */
.site-footer {
    background-color: var(--color-navy);
    color: var(--color-white);
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 { color: var(--color-gold); margin-bottom: 1rem; }
.footer-section p { color: rgba(255, 255, 255, 0.8); font-size: 0.95rem; }
.footer-section ul { list-style: none; }
.footer-section li { margin-bottom: 0.75rem; }
.footer-section a { color: rgba(255, 255, 255, 0.8); transition: var(--transition); }
.footer-section a:hover { color: var(--color-gold); }

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 1rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.footer-brand { max-width: 320px; }
.footer-logo { font-family: var(--font-heading); font-size: 1.25rem; margin-bottom: 1rem; }
.footer-tagline { font-style: italic; color: rgba(255,255,255,0.5); font-size: 0.9rem; margin-top: 0.75rem; }
.footer-tagline-bottom { font-size: 0.8rem; margin-top: 0.25rem; opacity: 0.5; }
.footer-nav-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1rem;
    margin-top: 1.25rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}
.footer-nav-links a { font-size: 0.85rem; color: rgba(255,255,255,0.6); }
.footer-nav-links a:hover { color: var(--color-gold); }

/* ============================================================================
   UTILITY CLASSES
   ============================================================================ */
.text-center { text-align: center; }
.text-gold { color: var(--color-gold); }
.bg-cream { background-color: var(--color-cream); }
.bg-charcoal, .bg-navy { background-color: var(--color-navy); color: var(--color-white); }
.mt-2 { margin-top: 2rem; }
.mb-2 { margin-bottom: 2rem; }
.error-page h1 { color: var(--color-gold); }
.legal-content { max-width: 900px; margin: 0 auto; }
.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

/* ============================================================================
   LUXURY INTERACTION SYSTEM
   ============================================================================ */

/* Card Hover System */
.service-card:hover,
.company-card:hover,
.blog-card:hover,
.review-card:hover {
    transform: var(--card-hover-lift);
    box-shadow: 0 20px 60px rgba(15, 28, 72, 0.20);
    border-color: var(--color-gold);
}

/* ============================================================================
   ANNOUNCEMENT BAR
   ============================================================================ */
.announcement-bar {
    background: var(--color-navy);
    color: rgba(255,255,255,0.90);
    padding: 0.55rem 1.25rem;
    font-size: 0.875rem;
    border-bottom: 1px solid rgba(179, 124, 61, 0.30);
    position: relative;
    z-index: 1001;
}
.announcement-content {
    max-width: 1240px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}
.announcement-contact a, .announcement-phone {
    color: var(--color-gold);
    font-weight: 700;
    text-decoration: none;
    transition: opacity 0.2s ease;
}
.announcement-contact a:hover, .announcement-phone:hover {
    opacity: 0.75;
}
.announcement-bar a { color: var(--color-gold); }
.announcement-bar a:hover { color: #d4983f; }
.announcement-divider { color: rgba(255,255,255,0.3); }

/* ============================================================================
   LOGO
   ============================================================================ */
.logo-link {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--color-navy);
    text-decoration: none;
    transition: var(--transition);
}
.logo-link:hover { color: var(--color-navy); }
.logo-dd { color: var(--color-gold); }
.logo-text { color: var(--color-navy); }

/* Nav CTA Button */
.btn-nav-cta {
    font-size: 0.9rem;
    padding: 0.6rem 1.4rem;
    white-space: nowrap;
}

/* Header Scrolled State */
.header-scrolled {
    box-shadow: 0 4px 20px rgba(15, 28, 72, 0.12);
}

/* Phone Hover States */
a[href^="tel"] {
    transition: color 0.2s ease, opacity 0.2s ease;
}
a[href^="tel"]:hover {
    color: var(--color-gold);
    opacity: 0.85;
}
.btn[href^="tel"]:hover {
    background: rgba(179, 124, 61, 0.12);
    border-color: var(--color-gold);
    color: var(--color-gold);
    transform: translateY(-1px);
}

/* ============================================================================
   DROPDOWN NAV
   ============================================================================ */
.nav-dropdown { position: relative; }
.dropdown-arrow { font-size: 0.65rem; margin-left: 0.25rem; transition: var(--transition); }
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 240px;
    background: var(--color-white);
    box-shadow: 0 8px 24px rgba(15, 28, 72, 0.16);
    border-top: 2px solid var(--color-gold);
    border-radius: 0 0 6px 6px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: opacity 200ms ease, transform 200ms ease, visibility 200ms ease;
    z-index: 200;
    pointer-events: none;
    will-change: transform, opacity;
    list-style: none;
    margin: 0;
    padding: 0.5rem 0;
}
.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}
.dropdown-menu li { list-style: none; }
.dropdown-menu li a {
    display: block;
    padding: 0.6rem 1.25rem;
    color: var(--color-navy);
    font-size: 0.9rem;
    white-space: nowrap;
    transition: background 0.15s ease, color 0.15s ease;
}
.dropdown-menu li a:hover {
    background: rgba(179, 124, 61, 0.08);
    color: var(--color-gold);
}
.nav-dropdown.open .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); pointer-events: auto; }
.nav-dropdown.open .dropdown-arrow { transform: rotate(180deg); }
.nav-active { color: var(--color-gold) !important; border-bottom-color: var(--color-gold) !important; }

/* ============================================================================
   HERO FULL (index.html)
   ============================================================================ */
.hero-full {
    min-height: 92vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 6rem 0 5rem;
    overflow: hidden;
    background: linear-gradient(135deg, #0f1c48 0%, #162557 60%, #0f1c48 100%);
}
.hero-bg-gradient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 15% 50%, rgba(179, 124, 61, 0.12) 0%, transparent 55%),
        radial-gradient(circle at 85% 20%, rgba(179, 124, 61, 0.07) 0%, transparent 45%);
    pointer-events: none;
}
.hero-gold-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    opacity: 0.06;
}
.hero-gold-orb-1 {
    width: 500px; height: 500px;
    background: radial-gradient(circle, var(--color-gold), transparent 70%);
    top: -100px; right: -100px;
}
.hero-gold-orb-2 {
    width: 300px; height: 300px;
    background: radial-gradient(circle, var(--color-gold), transparent 70%);
    bottom: -50px; left: 5%;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(179, 124, 61, 0.15);
    border: 1px solid rgba(179, 124, 61, 0.4);
    color: var(--color-gold);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}
.hero-badge-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--color-gold);
    animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
    0%,100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}
.highlight {
    color: var(--color-gold);
    position: relative;
}
.highlight::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-gold), transparent);
    border-radius: 2px;
}

/* Button variants */
.btn-outline-white {
    background: transparent;
    color: var(--color-white);
    border: 2px solid rgba(255,255,255,0.6);
    transition: var(--transition);
}
.btn-outline-white:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--color-white);
    color: var(--color-white);
}
.btn-outline-dark {
    background: transparent;
    color: var(--color-navy);
    border: 2px solid var(--color-navy);
    transition: var(--transition);
}
.btn-outline-dark:hover {
    background: var(--color-navy);
    color: var(--color-white);
}
.btn-secondary-dark {
    display: inline-block;
    background: transparent;
    color: var(--color-navy);
    border: 2px solid var(--color-navy);
    padding: 0.75rem 2rem;
    border-radius: 4px;
    font-weight: 700;
    transition: var(--transition);
}
.btn-secondary-dark:hover {
    background: var(--color-navy);
    color: var(--color-white);
}
.btn-icon { margin-right: 0.4rem; }

/* Hero stat card */
.hero-stat-card {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(179, 124, 61, 0.3);
    border-radius: 12px;
    padding: 1rem 2rem;
    margin-top: 2.5rem;
    backdrop-filter: blur(4px);
}
.hero-stat-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--color-gold);
    font-weight: 700;
    line-height: 1;
}
.hero-stat-label {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.8);
    max-width: 180px;
    line-height: 1.4;
}

/* ============================================================================
   TRUST STRIP
   ============================================================================ */
.trust-strip {
    background: var(--color-white);
    border-bottom: 2px solid var(--color-cream);
    padding: 1.25rem 0;
}
.trust-strip-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}
.trust-item { display: flex; align-items: center; gap: 0.5rem; font-size: 0.95rem; font-weight: 600; }
.trust-icon { font-size: 1.1rem; color: var(--color-gold); }
.trust-divider { width: 1px; height: 24px; background: var(--color-border); }

/* ============================================================================
   SECTION HEADERS
   ============================================================================ */
.section-header { text-align: center; margin-bottom: 3rem; }
.section-eyebrow {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 0.75rem;
}
.section-eyebrow-light {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
    margin-bottom: 0.75rem;
}

/* ============================================================================
   NETWORK SECTION
   ============================================================================ */
.network-section { padding: 5rem 0; }
.network-cta-row {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--color-border);
}
.network-cta-row p { max-width: 680px; margin: 0 auto 1.5rem; }
.company-card-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

/* ============================================================================
   SERVICES SECTION
   ============================================================================ */
.services-section { padding: 5rem 0; }
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.75rem;
}
.service-card {
    background: var(--color-white);
    border: 2px solid var(--color-border);
    border-radius: 10px;
    padding: 2rem;
    transition: var(--transition);
}
.service-card-icon {
    font-size: 2.25rem;
    display: block;
    margin-bottom: 1rem;
}

/* Stats Plus */
.stat-plus { font-size: 2rem; vertical-align: super; }

/* ============================================================================
   WHY SECTION
   ============================================================================ */
.why-section { padding: 5rem 0; }
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}
.why-card {
    background: var(--color-white);
    border: 2px solid var(--color-border);
    border-radius: 10px;
    padding: 2rem;
    position: relative;
    transition: var(--transition);
}
.why-card:hover {
    transform: var(--card-hover-lift);
    box-shadow: 0 20px 60px rgba(15, 28, 72, 0.15);
    border-color: var(--color-gold);
}
.why-card-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-cream);
    line-height: 1;
    margin-bottom: 1rem;
}

/* ============================================================================
   REVIEW CARDS
   ============================================================================ */
.review-card {
    background: var(--color-white);
    border: 2px solid var(--color-border);
    border-radius: 10px;
    padding: 2rem;
    transition: var(--transition);
}
.review-stars { color: var(--color-gold); font-size: 1.2rem; margin-bottom: 1rem; }
.review-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}
.reviewer-avatar {
    width: 52px; height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0f1c48, #162557);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.reviewer-initials {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-gold);
}
.reviewer-name { font-weight: 700; color: var(--color-navy); display: block; }
.reviewer-role { font-size: 0.875rem; color: var(--color-text-light); display: block; }
.review-text { font-style: italic; color: var(--color-text-dark); margin-bottom: 1rem; line-height: 1.7; }
.review-footer { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 0.5rem; }
.review-date { font-size: 0.85rem; color: var(--color-text-light); }
.review-service-tag {
    background: var(--color-cream);
    color: var(--color-navy);
    font-size: 0.8rem;
    font-weight: 700;
    padding: 0.2rem 0.65rem;
    border-radius: 4px;
}
.testimonial-role { font-size: 0.85rem; color: var(--color-text-light); margin-top: 0.25rem; }

/* ============================================================================
   AREAS PREVIEW SECTION
   ============================================================================ */
.areas-preview-section { padding: 5rem 0; background: var(--color-white); }
.areas-preview-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.areas-preview-list { list-style: none; margin: 1.5rem 0 2rem; }
.areas-preview-list li {
    padding: 0.6rem 0 0.6rem 1.75rem;
    position: relative;
    border-bottom: 1px solid var(--color-border);
    font-weight: 600;
}
.areas-preview-list li::before { content: '\2192'; position: absolute; left: 0; color: var(--color-gold); }
.areas-preview-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}
.area-stat-card {
    background: var(--color-cream);
    border-radius: 10px;
    border-left: 4px solid var(--color-gold);
    padding: 1.5rem;
    text-align: center;
}
.area-stat-num {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--color-navy);
    line-height: 1;
    margin-bottom: 0.4rem;
}
.area-stat-lbl { font-size: 0.85rem; color: var(--color-text-light); font-weight: 700; }

/* ============================================================================
   ABOUT PAGE
   ============================================================================ */
.about-story-section { padding: 5rem 0; }
.about-story-layout {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 4rem;
    align-items: start;
}
.about-story-sidebar { display: flex; flex-direction: column; gap: 2rem; }
.about-vision-box {
    background: linear-gradient(135deg, #0f1c48, #162557);
    color: var(--color-white);
    padding: 2rem;
    border-radius: 10px;
    border-top: 4px solid var(--color-gold);
}
.about-vision-box h3 { color: var(--color-gold); margin-bottom: 0.75rem; }
.about-vision-box p { color: rgba(255,255,255,0.8); }
.vision-statement {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-style: italic;
    color: var(--color-white);
    margin-bottom: 1rem;
    display: block;
}

/* ============================================================================
   TEAM SECTION
   ============================================================================ */
.team-section { padding: 5rem 0; }
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2.5rem;
}
.team-card {
    background: var(--color-white);
    border: 2px solid var(--color-border);
    border-radius: 12px;
    padding: 2.5rem;
    transition: var(--transition);
}
.team-card:hover {
    border-color: var(--color-gold);
    box-shadow: 0 20px 60px rgba(15, 28, 72, 0.12);
}
.team-avatar {
    width: 80px; height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0f1c48, #162557);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 1.5rem;
    border: 3px solid var(--color-gold);
}
.team-avatar-initials {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-gold);
}
.team-role {
    color: var(--color-gold);
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 1rem;
    display: block;
}

/* ============================================================================
   APPROACH / PILLARS
   ============================================================================ */
.approach-section { padding: 5rem 0; }
.pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
}
.pillar-card {
    background: var(--color-white);
    border: 2px solid var(--color-border);
    border-radius: 10px;
    padding: 2rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.pillar-card:hover {
    transform: var(--card-hover-lift);
    box-shadow: 0 20px 60px rgba(15, 28, 72, 0.15);
    border-color: var(--color-gold);
}
.pillar-number {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--color-cream);
    line-height: 1;
    margin-bottom: 0.5rem;
}
.pillar-icon { font-size: 2rem; display: block; margin-bottom: 1rem; }

/* ============================================================================
   NETWORK ADVANTAGE
   ============================================================================ */
.network-advantage-section { padding: 5rem 0; }
.network-advantage-layout {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 4rem;
    align-items: start;
}
.advantage-list { list-style: none; margin: 0 0 1.5rem; }
.advantage-list li {
    padding: 0.65rem 0;
    border-bottom: 1px solid var(--color-border);
    font-weight: 600;
    color: var(--color-navy);
}
.advantage-list li:last-child { border-bottom: none; }
.network-advantage-list {
    background: var(--color-cream);
    border-radius: 10px;
    border-left: 4px solid var(--color-gold);
    padding: 2rem;
}
.network-advantage-list h3 { margin-bottom: 1.25rem; }

/* ============================================================================
   REVIEWS PAGE
   ============================================================================ */
.reviews-hero .reviews-aggregate {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}
.aggregate-stars { font-size: 2rem; color: var(--color-gold); line-height: 1; }
.aggregate-score {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-gold);
    line-height: 1;
}
.aggregate-count { color: rgba(255,255,255,0.7); font-size: 1rem; }
.reviews-filter-bar {
    background: var(--color-white);
    border-bottom: 2px solid var(--color-cream);
    padding: 1rem 0;
    position: sticky;
    top: 64px;
    z-index: 50;
}
.reviews-filter-tabs, .blog-filter-tabs {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}
.filter-tab {
    background: transparent;
    border: 2px solid var(--color-border);
    border-radius: 50px;
    padding: 0.45rem 1.1rem;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--color-text-light);
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-body);
}
.filter-tab:hover {
    border-color: var(--color-gold);
    color: var(--color-gold);
}
.filter-tab-active {
    background: var(--color-navy);
    border-color: var(--color-navy);
    color: var(--color-white);
}
.reviews-section { padding: 4rem 0; }
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
}

/* ============================================================================
   SERVICE AREAS PAGE
   ============================================================================ */
.primary-cities-section { padding: 5rem 0; }
.primary-cities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}
.city-card {
    background: var(--color-white);
    border: 2px solid var(--color-border);
    border-radius: 12px;
    padding: 2rem;
    transition: var(--transition);
}
.city-card:hover {
    transform: var(--card-hover-lift);
    box-shadow: 0 20px 60px rgba(15, 28, 72, 0.15);
    border-color: var(--color-gold);
}
.city-card-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.25rem;
}
.city-icon { font-size: 2rem; flex-shrink: 0; }
.city-card h3 { margin: 0 0 0.35rem; }
.city-stat-badge {
    display: inline-block;
    background: var(--color-cream);
    color: var(--color-text-dark);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
}
.city-communities {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--color-border);
}
.city-communities-num {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-gold);
    line-height: 1;
}
.city-communities-lbl { font-size: 0.85rem; color: var(--color-text-light); }
.extended-coverage-section { padding: 5rem 0; }
.extended-areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.25rem;
}
.area-card {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    padding: 1.25rem;
    transition: var(--transition);
    text-align: center;
}
.area-card:hover {
    border-color: var(--color-gold);
    box-shadow: 0 8px 24px rgba(179, 124, 61, 0.12);
    transform: translateY(-3px);
}
.area-card-icon { font-size: 1.5rem; display: block; margin-bottom: 0.5rem; color: var(--color-gold); }
.area-card h4 { margin: 0 0 0.5rem; font-size: 1rem; }
.area-card p { font-size: 0.85rem; margin: 0; }
.communities-section { padding: 5rem 0; }
.communities-type-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}
.community-type-card {
    background: var(--color-white);
    border: 2px solid var(--color-border);
    border-radius: 10px;
    padding: 2rem;
    transition: var(--transition);
    text-align: center;
}
.community-type-card:hover {
    transform: var(--card-hover-lift);
    border-color: var(--color-gold);
    box-shadow: 0 20px 60px rgba(15, 28, 72, 0.12);
}
.community-type-icon { font-size: 2.5rem; display: block; margin-bottom: 1rem; }

/* ============================================================================
   BLOG PAGE
   ============================================================================ */
.featured-post-section { padding: 4rem 0 3rem; }
.featured-post-card {
    background: linear-gradient(135deg, var(--color-cream) 0%, var(--color-white) 100%);
    border: 2px solid var(--color-gold);
    border-radius: 12px;
    padding: 2.5rem;
    position: relative;
    transition: var(--transition);
}
.featured-post-card:hover {
    box-shadow: 0 20px 60px rgba(179, 124, 61, 0.15);
}
.featured-post-badge {
    position: absolute;
    top: -1px;
    left: 2rem;
    background: var(--color-gold);
    color: var(--color-white);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.3rem 0.75rem;
    border-radius: 0 0 6px 6px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.featured-post-layout {
    display: grid;
    grid-template-columns: 3fr 1fr;
    gap: 3rem;
    align-items: start;
    margin-top: 1rem;
}
.featured-post-excerpt { font-size: 1.05rem; color: var(--color-text-dark); line-height: 1.7; margin-bottom: 1.5rem; }
.featured-post-meta { border-left: 2px solid var(--color-gold); padding-left: 1.5rem; }
.featured-meta-item { margin-bottom: 1.25rem; }
.featured-meta-label { display: block; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--color-gold); margin-bottom: 0.2rem; }
.featured-meta-value { font-size: 0.95rem; color: var(--color-navy); font-weight: 700; }
.blog-listing-section { padding: 2rem 0 5rem; }
.blog-filter-tabs { margin-bottom: 2.5rem; }

/* ============================================================================
   MOBILE NAV TICKER
   ============================================================================ */
.nav-mobile-ticker { display: none; }
@media (max-width: 1024px) {
    .nav-mobile-ticker {
        display: flex;
        align-items: center;
        flex: 1;
        overflow: hidden;
        margin: 0 12px;
        mask-image: linear-gradient(to right, transparent 0, #000 12%, #000 88%, transparent 100%);
        -webkit-mask-image: linear-gradient(to right, transparent 0, #000 12%, #000 88%, transparent 100%);
    }
    .nav-ticker-track {
        display: flex;
        gap: 10px;
        animation: tickerScroll 22s linear infinite;
        white-space: nowrap;
        will-change: transform;
    }
    .nav-ticker-track:hover { animation-play-state: paused; }
    .nav-ticker-pill {
        display: inline-flex;
        align-items: center;
        gap: 5px;
        background: rgba(255,255,255,0.13);
        border: 1px solid rgba(255,255,255,0.22);
        backdrop-filter: blur(6px);
        color: rgba(255,255,255,0.92);
        font-size: 0.875rem;
        font-weight: 500;
        letter-spacing: 0.06em;
        text-transform: uppercase;
        padding: 5px 11px;
        border-radius: 999px;
        flex-shrink: 0;
        transition: background 0.2s ease;
    }
    @keyframes tickerScroll { 0% { transform: translateX(0); } to { transform: translateX(-50%); } }
}
@media (min-width: 769px) { .nav-mobile-ticker { display: none !important; } }
.nav-account {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 9999px;
    background: rgba(255,255,255,0.1);
    color: #fff;
    text-decoration: none;
    cursor: pointer;
    flex-shrink: 0;
    transition: all 0.18s ease;
}
.nav-account:hover { background: rgba(255,255,255,0.2); transform: translateY(-1px); }

/* ============================================================================
   BOOKING CALENDAR WIDGET
   ============================================================================ */
.booking-calendar-widget {
    max-width: 700px;
    width: 100%;
    margin: 0 auto;
    background: #fff;
    border-radius: 20px;
    padding: 32px 36px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08), 0 1px 4px rgba(0,0,0,0.04);
    border: 1px solid rgba(179, 124, 61, 0.1);
    box-sizing: border-box;
    overflow-x: hidden;
    min-width: 0;
}
.booking-progress { display: flex; justify-content: center; gap: 24px; margin-bottom: 32px; flex-wrap: wrap; }
.bp-step { font-size: 14px; color: var(--color-text-light); font-weight: 700; padding: 8px 16px; border-radius: 20px; background: var(--color-cream); transition: background 0.3s, color 0.3s; }
.bp-step.active { background: var(--color-navy); color: #fff; }
.bp-step.done { background: #27ae60; color: #fff; }
.bc-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.bc-title { font-size: 18px; font-weight: 700; }
.bc-nav { background: none; border: 1px solid var(--color-border); border-radius: 8px; padding: 8px 14px; cursor: pointer; font-size: 16px; transition: background 0.2s, color 0.2s, border-color 0.2s; }
.bc-nav:hover { background: var(--color-navy); color: #fff; border-color: var(--color-navy); }
.bc-grid { border: 1px solid var(--color-border); border-radius: 12px; overflow: hidden; width: 100%; min-width: 0; }
.bc-row { display: grid; grid-template-columns: repeat(7, 1fr); }
.bc-days-header { background: var(--color-cream); }
.bc-day-label { padding: 10px; text-align: center; font-size: 12px; font-weight: 700; color: var(--color-text-light); text-transform: uppercase; }
.bc-cell { padding: 12px; text-align: center; font-size: 14px; cursor: default; transition: background 0.2s, color 0.2s; min-height: 44px; display: flex; align-items: center; justify-content: center; }
.bc-past { color: #767676; }
.bc-available { cursor: pointer; font-weight: 600; color: var(--color-navy); }
.bc-available:hover { background: rgba(179, 124, 61, 0.08); color: var(--color-navy); }
.bc-selected { background: var(--color-navy) !important; color: #fff !important; border-radius: 50%; font-weight: 700; }
.bc-legend { display: flex; gap: 16px; justify-content: center; margin-top: 12px; font-size: 12px; color: var(--color-text-light); }
.bc-leg-sel { color: var(--color-navy); }
.bc-leg-past { color: #767676; }
.bc-loading { text-align: center; padding: 16px; color: var(--color-navy); font-weight: 600; }
.bs-header { margin-bottom: 16px; }
.bs-header h4 { margin: 8px 0 0; font-size: 18px; }
.bs-back { background: none; border: none; color: var(--color-gold); cursor: pointer; font-size: 14px; padding: 0; }
.bs-back:hover { text-decoration: underline; }
.bs-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.bs-slot { padding: 14px; text-align: center; border-radius: 10px; font-size: 14px; font-weight: 600; transition: border-color 0.2s, background 0.2s, color 0.2s; border: 2px solid transparent; }
.bs-available { background: var(--color-cream); cursor: pointer; border-color: var(--color-border); }
.bs-available:hover { border-color: var(--color-navy); background: rgba(179, 124, 61, 0.08); }
.bs-selected { border-color: var(--color-navy) !important; background: var(--color-navy) !important; color: #fff !important; }
.bs-booked { background: #f5f5f5; color: #bbb; text-decoration: line-through; cursor: not-allowed; }
.bf-top-bar { margin-bottom: 12px; }
.bf-summary { background: rgba(179, 124, 61, 0.08); padding: 14px 20px; border-radius: 10px; margin-bottom: 20px; font-size: 15px; color: var(--color-navy); }
.bf-form { display: flex; flex-direction: column; gap: 14px; }
.bf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; min-width: 0; }
.bf-group label { display: block; font-size: 13px; font-weight: 700; margin-bottom: 4px; color: var(--color-text-dark); }
.bf-group input, .bf-group textarea { width: 100%; padding: 12px; border: 1px solid var(--color-border); border-radius: 8px; font-size: 14px; box-sizing: border-box; transition: border-color 0.2s; }
.bf-group input:focus, .bf-group textarea:focus { border-color: var(--color-gold); outline: none; }
.bf-submit { margin-top: 8px; }
.bf-disclaimer { text-align: center; font-size: 12px; color: var(--color-text-light); margin-top: 8px; }
.booking-success { text-align: center; padding: 40px 20px; }
.bsuc-icon { width: 60px; height: 60px; background: #27ae60; color: #fff; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; font-size: 28px; margin-bottom: 16px; }
.booking-success h3 { font-size: 22px; margin-bottom: 8px; }
.booking-success p { color: var(--color-text-light); font-size: 15px; line-height: 1.6; }
.bsuc-account { margin-top: 24px; padding: 20px; background: var(--color-cream); border-radius: 12px; }
.bsuc-account p { margin-bottom: 16px; }
.bsuc-dismiss { background: none; border: 1px solid var(--color-border); padding: 10px 20px; border-radius: 8px; cursor: pointer; margin-left: 12px; }

/* Screen Reader Only */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ============================================================================
   BOOKING SECTION
   ============================================================================ */
.booking-section {
    background: var(--color-cream);
    padding: 5rem 0;
}
.booking-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}
.booking-section-header {
    text-align: center;
    margin-bottom: 2.5rem;
}
.booking-section-header .section-tag {
    display: inline-block;
    background: rgba(15, 28, 72, 0.08);
    color: var(--color-navy);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 999px;
    margin-bottom: 1rem;
}
.booking-section-header .section-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--color-navy);
    margin-bottom: 0.75rem;
}
.booking-section-desc {
    max-width: 560px;
    margin: 0 auto;
    color: var(--color-text-light);
    font-size: 1rem;
    line-height: 1.7;
}

/* ============================================================================
   BEFORE/AFTER SECTION
   ============================================================================ */
.before-after-section {
    padding: 5rem 0;
    background: var(--color-cream);
}
.before-after-section .section-header {
    text-align: center;
    margin-bottom: 3rem;
}
.before-after-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}
.before-after-card {
    background: var(--color-white);
    border-radius: 10px;
    border-top: 4px solid var(--color-gold);
    padding: 2rem;
    box-shadow: 0 4px 16px rgba(15, 28, 72, 0.08);
    transition: var(--transition);
}
.before-after-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(15, 28, 72, 0.14);
}
.before-after-card h3 {
    color: var(--color-navy);
    margin-bottom: 1rem;
}
.before-after-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    margin-bottom: 0.5rem;
}
.before-after-label.before {
    background: rgba(179, 124, 61, 0.1);
    color: var(--color-gold);
}
.before-after-label.after {
    background: rgba(39, 174, 96, 0.1);
    color: #27ae60;
}

/* ============================================================================
   PM AREAS TEASER
   ============================================================================ */
.pm-areas-teaser {
    padding: 5rem 0;
    background: linear-gradient(135deg, #0f1c48 0%, #162557 100%);
    color: var(--color-white);
}
.pm-areas-teaser h2 {
    color: var(--color-white);
    text-align: center;
    margin-bottom: 0.5rem;
}
.pm-areas-teaser .section-subtitle {
    color: rgba(255,255,255,0.7);
    margin-bottom: 3rem;
}
.pm-areas-city-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    max-width: 900px;
    margin: 0 auto 2.5rem;
}
.pm-areas-city-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 8px;
    font-weight: 600;
    transition: var(--transition);
}
.pm-areas-city-item:hover {
    background: rgba(179, 124, 61, 0.15);
    border-color: rgba(179, 124, 61, 0.4);
}
.pm-areas-check {
    color: var(--color-gold);
    font-weight: 700;
    flex-shrink: 0;
}
.pm-areas-teaser .cta-actions {
    text-align: center;
    margin-top: 2rem;
}

/* ============================================================================
   PM TRUST SECTION
   ============================================================================ */
.pm-trust-section {
    padding: 4rem 0;
    background: var(--color-white);
    border-bottom: 2px solid var(--color-cream);
}
.pm-trust-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
}
.pm-trust-badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: var(--color-cream);
    border-radius: 10px;
    border: 1px solid var(--color-border);
    font-weight: 700;
    color: var(--color-navy);
    transition: var(--transition);
}
.pm-trust-badge:hover {
    border-color: var(--color-gold);
    box-shadow: 0 4px 12px rgba(179, 124, 61, 0.12);
}
.pm-trust-badge-icon {
    font-size: 1.5rem;
    color: var(--color-gold);
}

/* ============================================================================
   PM BLOG SECTION
   ============================================================================ */
.pm-blog-section {
    padding: 5rem 0;
    background: var(--color-cream);
}
.pm-blog-section h2 {
    text-align: center;
    margin-bottom: 0.5rem;
}
.pm-blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}
.pm-blog-card {
    background: var(--color-white);
    border-radius: 10px;
    padding: 2rem;
    border-left: 4px solid var(--color-gold);
    box-shadow: 0 2px 12px rgba(15, 28, 72, 0.06);
    transition: var(--transition);
}
.pm-blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(15, 28, 72, 0.12);
}
.pm-blog-card h3 { margin-bottom: 0.75rem; }
.pm-blog-card .blog-meta { margin-bottom: 0.75rem; }

/* ============================================================================
   PM OWNER FAQ (Accordion)
   ============================================================================ */
.pm-owner-faq {
    padding: 5rem 0;
    background: var(--color-white);
}
.pm-owner-faq h2 {
    text-align: center;
    margin-bottom: 2.5rem;
}
.pm-faq-list {
    max-width: 800px;
    margin: 0 auto;
}
.pm-faq-item {
    border: 1px solid var(--color-border);
    border-left: 4px solid var(--color-gold);
    border-radius: 8px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: var(--transition);
}
.pm-faq-item:hover {
    border-color: var(--color-gold);
}
.pm-faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 1.25rem 1.5rem;
    background: var(--color-white);
    border: none;
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-navy);
    text-align: left;
    transition: background 0.2s ease;
}
.pm-faq-question:hover {
    background: var(--color-cream);
}
.pm-faq-icon {
    font-size: 1.25rem;
    color: var(--color-gold);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 1rem;
}
.pm-faq-item.open .pm-faq-icon {
    transform: rotate(45deg);
}
.pm-faq-answer {
    padding: 0 1.5rem 1.25rem;
    color: var(--color-text-light);
    line-height: 1.7;
    display: none;
}
.pm-faq-item.open .pm-faq-answer {
    display: block;
}

/* ============================================================================
   PM PORT STATS (Full-width dark)
   ============================================================================ */
.pm-port-stats {
    padding: 4rem 0;
    background: linear-gradient(135deg, #0f1c48 0%, #162557 100%);
    color: var(--color-white);
}
.pm-port-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 2rem;
    text-align: center;
}
.pm-port-stat {
    padding: 1.5rem;
}
.pm-port-stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-gold);
    margin-bottom: 0.5rem;
    line-height: 1;
}
.pm-port-stat-label {
    font-size: 1rem;
    color: rgba(255,255,255,0.8);
    font-weight: 500;
}

/* ============================================================================
   PM RESOURCES
   ============================================================================ */
.pm-resources {
    padding: 5rem 0;
    background: var(--color-cream);
}
.pm-resources h2 {
    text-align: center;
    margin-bottom: 2.5rem;
}
.pm-resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}
.pm-resource-card {
    background: var(--color-white);
    border-radius: 10px;
    padding: 2rem;
    border: 2px solid var(--color-border);
    transition: var(--transition);
}
.pm-resource-card:hover {
    border-color: var(--color-gold);
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(15, 28, 72, 0.12);
}
.pm-resource-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 1rem;
    color: var(--color-gold);
}
.pm-resource-card h3 { margin-bottom: 0.75rem; }

/* ============================================================================
   PM GUARANTEE BANNER
   ============================================================================ */
.pm-guarantee {
    padding: 4rem 0;
    background: linear-gradient(135deg, #0f1c48 0%, #162557 100%);
    color: var(--color-white);
    text-align: center;
}
.pm-guarantee h2 {
    color: var(--color-white);
    margin-bottom: 1rem;
}
.pm-guarantee p {
    color: rgba(255,255,255,0.8);
    max-width: 680px;
    margin: 0 auto 2rem;
    font-size: 1.1rem;
}
.pm-guarantee-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(179, 124, 61, 0.15);
    border: 2px solid rgba(179, 124, 61, 0.4);
    border-radius: 12px;
    padding: 1rem 2rem;
    margin-bottom: 2rem;
}
.pm-guarantee-badge-icon {
    font-size: 2rem;
    color: var(--color-gold);
}
.pm-guarantee-badge-text {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-gold);
}

/* ============================================================================
   WHO WE HELP / LANDLORD TYPE CARDS
   ============================================================================ */
.who-we-help-section {
    padding: 5rem 0;
    background: var(--color-white);
}
.who-we-help-section h2 {
    text-align: center;
    margin-bottom: 2.5rem;
}
.landlord-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}
.landlord-type-card {
    background: var(--color-white);
    border: 2px solid var(--color-border);
    border-radius: 12px;
    padding: 2rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.landlord-type-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--color-gold);
}
.landlord-type-card:hover {
    border-color: var(--color-gold);
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(15, 28, 72, 0.12);
}
.landlord-type-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 1rem;
}
.landlord-type-card h3 {
    margin-bottom: 0.75rem;
    color: var(--color-navy);
}
.landlord-type-card p {
    margin-bottom: 1rem;
}
.landlord-type-features {
    list-style: none;
    margin: 0;
    padding: 0;
}
.landlord-type-features li {
    padding: 0.4rem 0 0.4rem 1.5rem;
    position: relative;
    font-weight: 500;
    color: var(--color-text-dark);
}
.landlord-type-features li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: var(--color-gold);
    font-weight: 700;
}

/* ============================================================================
   FULL-SERVICE MANAGEMENT CHECKLIST
   ============================================================================ */
.full-service-section {
    padding: 5rem 0;
    background: var(--color-cream);
}
.full-service-section h2 {
    text-align: center;
    margin-bottom: 1rem;
}
.full-service-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
    max-width: 960px;
    margin: 0 auto;
}
.full-service-checklist {
    list-style: none;
    margin: 0;
    padding: 0;
}
.full-service-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--color-border);
    font-weight: 500;
    color: var(--color-text-dark);
}
.full-service-checklist li:last-child {
    border-bottom: none;
}
.full-service-check {
    color: var(--color-gold);
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
}
.full-service-highlight {
    background: var(--color-white);
    border-radius: 10px;
    border-left: 4px solid var(--color-gold);
    padding: 2rem;
    box-shadow: 0 4px 16px rgba(15, 28, 72, 0.06);
}
.full-service-highlight h3 {
    color: var(--color-navy);
    margin-bottom: 1rem;
}

/* ============================================================================
   WHY LANDLORDS SWITCH - COMPARISON TABLE
   ============================================================================ */
.why-switch-section {
    padding: 5rem 0;
    background: var(--color-white);
}
.why-switch-section h2 {
    text-align: center;
    margin-bottom: 2.5rem;
}
.comparison-table {
    max-width: 900px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid var(--color-border);
}
.comparison-table-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    background: linear-gradient(135deg, #0f1c48 0%, #162557 100%);
    color: var(--color-white);
    font-weight: 700;
    font-size: 0.95rem;
}
.comparison-table-header > div {
    padding: 1rem 1.5rem;
}
.comparison-table-header .col-dd {
    color: var(--color-gold);
}
.comparison-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    border-bottom: 1px solid var(--color-border);
    transition: background 0.2s ease;
}
.comparison-row:last-child {
    border-bottom: none;
}
.comparison-row:hover {
    background: var(--color-cream);
}
.comparison-row > div {
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    font-weight: 500;
}
.comparison-feature {
    color: var(--color-navy);
    font-weight: 700;
}
.comparison-check {
    color: var(--color-gold);
    font-size: 1.25rem;
    font-weight: 700;
}
.comparison-x {
    color: var(--color-text-light);
    font-size: 1.25rem;
}

/* ============================================================================
   RESPONSIVE - 1024px
   ============================================================================ */
@media (max-width: 1024px) {
    .areas-preview-layout { grid-template-columns: 1fr; gap: 3rem; }
    .about-story-layout { grid-template-columns: 1fr; gap: 3rem; }
    .network-advantage-layout { grid-template-columns: 1fr; gap: 3rem; }
    .featured-post-layout { grid-template-columns: 1fr; gap: 2rem; }
    .featured-post-meta {
        border-left: none;
        border-top: 2px solid var(--color-gold);
        padding-left: 0;
        padding-top: 1.5rem;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }
    .full-service-layout { grid-template-columns: 1fr; }
    .comparison-table-header,
    .comparison-row { grid-template-columns: 2fr 1fr 1fr; }
}

/* ============================================================================
   RESPONSIVE - 768px (MOBILE)
   ============================================================================ */
@media (max-width: 768px) {
    .container { padding: 0 1rem; }

    /* Hamburger visible on mobile */
    .hamburger { display: flex; }

    /* Hide desktop nav on mobile */
    .main-nav { display: none; }
    .btn-nav-cta { display: none; }

    /* Header stays horizontal */
    .header-content {
        flex-direction: row;
        gap: 0.5rem;
        height: 60px;
    }

    /* Typography */
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    .hero-title { font-size: 2.25rem; }
    .hero-subtitle { font-size: 1.15rem; }

    /* Hero */
    .hero-full { min-height: auto; padding: 4rem 0 3rem; }
    .hero-stat-card { flex-direction: column; text-align: center; }
    .hero-cta { flex-direction: column; align-items: center; }
    .hero-badge { font-size: 0.75rem; }

    /* Grid sections - all single column */
    .companies-grid,
    .value-grid,
    .stats-grid,
    .benefits-grid,
    .process-steps,
    .services-grid,
    .why-grid,
    .reviews-grid,
    .blog-grid,
    .primary-cities-grid,
    .team-grid,
    .pillars-grid,
    .testimonials-grid,
    .before-after-grid,
    .pm-blog-grid,
    .pm-resources-grid,
    .landlord-types-grid,
    .pm-port-stats-grid,
    .pm-areas-city-grid,
    .extended-areas-grid,
    .communities-type-grid {
        grid-template-columns: 1fr;
    }

    /* Two-column grids on mobile */
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .areas-preview-stats { grid-template-columns: 1fr 1fr; }
    .pm-port-stats-grid { grid-template-columns: 1fr 1fr; }
    .pm-areas-city-grid { grid-template-columns: 1fr 1fr; }
    .extended-areas-grid { grid-template-columns: 1fr 1fr; }

    /* Content/layout grids */
    .content-grid { grid-template-columns: 1fr; }
    .content-main { padding-right: 0; }
    .contact-layout { grid-template-columns: 1fr; }
    .contact-form { margin-top: 2rem; }
    .service-areas-list ul { columns: 1; }

    /* Trust strip */
    .trust-strip-grid { gap: 1rem; }
    .trust-divider { display: none; }

    /* Reviews */
    .reviews-filter-bar { top: 0; position: static; }
    .aggregate-score { font-size: 2rem; }

    /* Announcement bar */
    .announcement-content { flex-direction: column; gap: 0.4rem; text-align: center; }
    .announcement-divider { display: none; }

    /* Post meta */
    .post-meta { flex-direction: column; gap: 0.5rem; }

    /* Comparison table mobile */
    .comparison-table-header,
    .comparison-row {
        grid-template-columns: 1.5fr 1fr 1fr;
        font-size: 0.85rem;
    }
    .comparison-table-header > div,
    .comparison-row > div {
        padding: 0.75rem 0.75rem;
    }

    /* Full service */
    .full-service-layout { grid-template-columns: 1fr; }

    /* Trust badges wrap */
    .pm-trust-grid { gap: 1rem; }
    .pm-trust-badge { padding: 0.75rem 1rem; font-size: 0.9rem; }

    /* FAQ */
    .pm-faq-question { font-size: 1rem; padding: 1rem 1.25rem; }

    /* Booking */
    .booking-calendar-widget { padding: 20px 16px; max-width: 100%; }
    .bc-day-label { padding: 8px 2px; font-size: 12px; }
    .bc-cell { padding: 8px 2px; min-height: 36px; font-size: 13px; }
}

/* ============================================================================
   RESPONSIVE - 600px
   ============================================================================ */
@media (max-width: 600px) {
    .booking-calendar-widget { padding: 16px 10px; border-radius: 14px; }
    .bc-cell { padding: 6px 2px; font-size: 12px; min-height: 34px; }
    .bs-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
    .bf-row { grid-template-columns: 1fr; }
    .booking-progress { gap: 8px; flex-wrap: wrap; }
    .bp-step { font-size: 12px; padding: 6px 10px; }

    .stats-grid { grid-template-columns: 1fr; }
    .pm-port-stats-grid { grid-template-columns: 1fr; }
    .pm-areas-city-grid { grid-template-columns: 1fr; }
    .extended-areas-grid { grid-template-columns: 1fr; }
}

/* ============================================================================
   RESPONSIVE - 400px
   ============================================================================ */
@media (max-width: 400px) {
    .booking-calendar-widget { padding: 12px 6px; border-radius: 12px; }
    .bc-cell { padding: 4px 1px; font-size: 12px; min-height: 30px; }
    .bp-step { font-size: 12px; padding: 5px 8px; }
    .bc-day-label { padding: 6px 1px; font-size: 12px; }
}

/* ============================================================================
   HOME PAGE RESTRUCTURE — New Section Styles (April 2026)
   ============================================================================ */

/* --- Background Utilities --- */
.bg-navy { background: var(--color-charcoal); color: #fff; }
.bg-cream { background-color: var(--color-cream); }
.bg-white { background-color: var(--color-white); }
.heading-white { color: #fff; }

/* --- Container Narrow --- */
.container-narrow { max-width: 900px; margin: 0 auto; padding: 0 2rem; }

/* --- Link Accent --- */
.link-accent { color: var(--color-gold); font-weight: 700; }
.link-accent:hover { text-decoration: underline; }

/* --- Section Footer Helpers --- */
.section-footer-cta { text-align: center; margin-top: 2.5rem; font-size: 0.95rem; color: var(--color-text-light); }
.section-footer-note { text-align: center; margin-top: 1rem; font-size: 0.85rem; color: var(--color-text-light); }

/* --- Hamburger Button --- */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    z-index: 1010;
}
.hamburger span {
    display: block;
    width: 24px;
    height: 2.5px;
    background: var(--color-charcoal);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}
.hamburger.active span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

@media (max-width: 768px) {
    .hamburger { display: flex; }
    .main-nav ul {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: #fff;
        padding: 1rem 2rem;
        box-shadow: 0 8px 24px rgba(0,0,0,0.12);
        z-index: 1000;
    }
    .main-nav.nav-open ul { display: flex !important; }
}

/* --- 5. Trust Badges --- */
.trust-badges-section { padding: 4rem 0; border-top: 1px solid var(--color-border); border-bottom: 1px solid var(--color-border); }
.trust-badges-heading {
    text-align: center;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-gold);
    margin-bottom: 2.25rem;
}
.trust-badges-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.25rem; }
.trust-badge-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    background: var(--color-cream);
    border: 2px solid var(--color-border);
    border-radius: 12px;
    padding: 1.25rem 1.75rem;
    min-width: 140px;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.trust-badge-card:hover { border-color: var(--color-charcoal); box-shadow: 0 4px 16px rgba(26,26,46,0.12); }
.trust-badge-icon { font-size: 1.75rem; line-height: 1; }
.trust-badge-label {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-charcoal);
    text-align: center;
}
.trust-badge-sub { font-size: 0.72rem; color: var(--color-text-light); text-align: center; line-height: 1.4; }
@media (max-width: 600px) { .trust-badges-grid { gap: 0.75rem; } .trust-badge-card { min-width: 120px; padding: 1rem 1.25rem; } }

/* --- 8. Landlord Profiles --- */
.landlord-profiles-section { padding: 5rem 0; }
.landlord-profiles-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; }
.landlord-profile-card {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--color-border);
    transition: box-shadow 0.2s, transform 0.2s;
    background: var(--color-white);
}
.landlord-profile-card:hover { box-shadow: 0 10px 32px rgba(26,26,46,0.12); transform: translateY(-4px); }
.landlord-profile-top { padding: 2rem 1.75rem 1.5rem; background: var(--color-cream); }
.landlord-profile-icon { font-size: 2.25rem; margin-bottom: 1rem; display: block; }
.landlord-profile-eyebrow {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-gold);
    margin: 0 0 0.4rem;
}
.landlord-profile-name { font-family: var(--font-heading); font-size: 1.15rem; font-weight: 700; color: var(--color-charcoal); margin: 0; }
.landlord-profile-body { padding: 1.5rem 1.75rem; }
.landlord-profile-desc { font-size: 0.875rem; color: var(--color-text-light); line-height: 1.7; margin: 0 0 1rem; }
.landlord-profile-quote {
    font-size: 0.875rem;
    color: var(--color-charcoal);
    font-weight: 600;
    line-height: 1.6;
    margin: 0;
    padding: 0.75rem;
    background: rgba(201,168,76,0.06);
    border-left: 3px solid var(--color-gold);
    border-radius: 0 6px 6px 0;
}
@media (max-width: 768px) { .landlord-profiles-grid { grid-template-columns: 1fr; } }
@media (min-width: 481px) and (max-width: 768px) { .landlord-profiles-grid { grid-template-columns: repeat(2, 1fr); } }

/* --- 9. Full-Service Checklist (included-section) --- */
.included-section { padding: 5rem 0; }
.included-sub { font-size: 1rem; color: rgba(255,255,255,0.7); max-width: 560px; margin: 0 auto; text-align: center; }
.included-cols { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2.5rem; }
.included-col-title {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-gold);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin: 0 0 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(201,168,76,0.3);
}
.included-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.6rem; }
.included-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: 0.875rem;
    color: rgba(255,255,255,0.82);
    line-height: 1.55;
}
.included-check { color: var(--color-gold); font-size: 0.9rem; flex-shrink: 0; margin-top: 0.15rem; }
.included-cta-row { text-align: center; margin-top: 3rem; }
.btn-gold {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--color-gold);
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
}
.btn-gold:hover { background: #b89535; transform: translateY(-2px); color: #fff; }
@media (max-width: 768px) { .included-cols { grid-template-columns: 1fr; gap: 2rem; } }

/* --- 10. Comparison Table --- */
.compare-section { padding: 5rem 0; }
.compare-table {
    width: 100%;
    border-collapse: collapse;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(26,26,46,0.08);
}
.compare-table thead tr { background: var(--color-charcoal); }
.compare-table thead th {
    padding: 1rem 1.25rem;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    text-align: center;
    color: #fff;
}
.compare-table thead th:first-child { text-align: left; color: rgba(255,255,255,0.7); }
.compare-table tbody tr:nth-child(even) { background: var(--color-cream); }
.compare-table tbody tr:nth-child(odd) { background: #fff; }
.compare-table tbody td {
    padding: 0.875rem 1.25rem;
    font-size: 0.875rem;
    color: var(--color-text-light);
    border-bottom: 1px solid var(--color-border);
}
.compare-table tbody td:first-child { font-weight: 600; color: var(--color-charcoal); }
.compare-table tbody td:nth-child(2) { text-align: center; }
.compare-table tbody td:nth-child(3) { text-align: center; font-weight: 600; }
.compare-yes { font-size: 1.1rem; color: #27ae60; }
.compare-no { font-size: 1.1rem; color: #c0392b; }
@media (max-width: 600px) {
    .compare-table thead th, .compare-table tbody td { padding: 0.75rem 0.875rem; font-size: 0.8rem; }
}

/* --- 11. How It Works --- */
.how-it-works-section { padding: 5rem 0; }
.hiw-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; text-align: center; }
.hiw-step { padding: 2rem 1rem; }
.hiw-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--color-charcoal);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0 auto 1.25rem;
}
.hiw-title { font-size: 1rem; margin: 0 0 0.5rem; }
.hiw-desc { color: var(--color-text-light); font-size: 0.875rem; line-height: 1.6; }
@media (max-width: 768px) { .hiw-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .hiw-grid { grid-template-columns: 1fr; } }

/* --- 12. Before & After --- */
.before-after-section { padding: 5rem 0; }
.ba-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.ba-card {
    background: var(--color-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(26,26,46,0.08);
    border-top: 4px solid var(--color-gold);
}
.ba-card-inner { padding: 1.75rem; }
.ba-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-gold);
    background: rgba(201,168,76,0.1);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    margin-bottom: 1rem;
}
.ba-columns { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1.25rem; }
.ba-before { background: #fef2f2; border-radius: 8px; padding: 1rem; }
.ba-after { background: #f0fdf4; border-radius: 8px; padding: 1rem; }
.ba-label { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; margin-bottom: 0.5rem; }
.ba-label-before { color: #c0392b; }
.ba-label-after { color: #16a34a; }
.ba-text { font-size: 0.875rem; color: var(--color-text-light); line-height: 1.6; margin: 0; }
.ba-quote {
    font-style: italic;
    font-size: 0.875rem;
    color: var(--color-charcoal);
    border-left: 3px solid var(--color-gold);
    padding-left: 1rem;
    margin: 0;
}
.ba-attribution { font-size: 0.8rem; color: var(--color-text-light); margin-top: 0.75rem; }

/* --- 15. Blog Preview --- */
.blog-preview-section { padding: 5rem 0; }
.blog-preview-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; }
.blog-preview-card {
    background: var(--color-cream);
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--color-border);
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.2s, transform 0.2s;
}
.blog-preview-card:hover { box-shadow: 0 8px 28px rgba(26,26,46,0.12); transform: translateY(-3px); }
.blog-preview-accent { height: 6px; background: linear-gradient(90deg, var(--color-charcoal), var(--color-gold)); }
.blog-preview-body { padding: 1.75rem; display: flex; flex-direction: column; gap: 0.75rem; flex: 1; }
.blog-preview-cat {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-charcoal);
    background: rgba(26,26,46,0.08);
    padding: 0.25rem 0.65rem;
    border-radius: 20px;
}
.blog-preview-title { font-family: var(--font-heading); font-size: 1.05rem; font-weight: 700; color: var(--color-charcoal); margin: 0; line-height: 1.4; }
.blog-preview-title a { color: var(--color-charcoal); text-decoration: none; }
.blog-preview-title a:hover { color: var(--color-gold); }
.blog-preview-desc { font-size: 0.875rem; color: var(--color-text-light); line-height: 1.7; margin: 0; flex: 1; }
.blog-preview-link {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--color-charcoal);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    margin-top: 0.5rem;
}
.blog-preview-link:hover { color: var(--color-gold); }
@media (max-width: 768px) { .blog-preview-grid { grid-template-columns: 1fr; } }
@media (min-width: 481px) and (max-width: 768px) { .blog-preview-grid { grid-template-columns: repeat(2, 1fr); } }

/* --- 16. Owner FAQ Accordion --- */
.owner-faq { padding: 5rem 0; }
.owner-faq-list { display: flex; flex-direction: column; gap: 0; max-width: 860px; margin: 0 auto; }
.owner-faq-item { border-bottom: 1px solid var(--color-border); }
.owner-faq-item:first-child { border-top: 1px solid var(--color-border); }
.owner-faq-q {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 1.4rem 0;
    cursor: pointer;
    list-style: none;
}
.owner-faq-q h3 { font-family: var(--font-heading); font-size: 1.05rem; font-weight: 700; color: var(--color-charcoal); margin: 0; flex: 1; }
.owner-faq-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--color-charcoal);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    flex-shrink: 0;
    transition: transform 0.25s;
}
.owner-faq-item.open .owner-faq-icon { transform: rotate(45deg); }
.owner-faq-a { display: none; padding: 0 0 1.4rem; font-size: 0.95rem; color: var(--color-text-light); line-height: 1.75; }
.owner-faq-item.open .owner-faq-a { display: block; }
.owner-faq-a strong { color: var(--color-charcoal); }
@media (max-width: 600px) { .owner-faq-q h3 { font-size: 0.95rem; } }

/* --- 17. Service Areas Pills --- */
.service-areas-section { padding: 5rem 0; }
.area-pills { display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center; margin-bottom: 2.5rem; }
.area-pill {
    display: inline-block;
    padding: 0.6rem 1.25rem;
    border-radius: 30px;
    background: #fff;
    border: 2px solid var(--color-gold);
    color: var(--color-charcoal);
    font-weight: 600;
    font-size: 0.875rem;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}
.area-pill:hover { background: var(--color-gold); color: #fff; }

/* --- 18. Satisfaction Guarantee --- */
.guarantee-section {
    padding: 4.5rem 0;
    background: linear-gradient(135deg, var(--color-charcoal) 0%, #1a1a35 100%);
    text-align: center;
}
.guarantee-icon { font-size: 3rem; line-height: 1; margin-bottom: 1.25rem; }
.guarantee-title { font-family: var(--font-heading); font-size: clamp(1.7rem, 3.5vw, 2.4rem); font-weight: 700; color: #fff; margin: 0 0 1rem; }
.guarantee-highlight { color: var(--color-gold); }
.guarantee-body { font-size: 1.05rem; color: rgba(255,255,255,0.8); line-height: 1.75; max-width: 680px; margin: 0 auto 2.5rem; }
.guarantee-points { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.25rem; margin-bottom: 2.5rem; }
.guarantee-point {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 8px;
    padding: 0.65rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #fff;
}
.guarantee-check { color: var(--color-gold); font-size: 1.1rem; }

/* --- 19. Resources --- */
.resources-section { padding: 5rem 0; }
.resources-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.resource-card {
    background: var(--color-white);
    border-radius: 14px;
    padding: 2rem 1.75rem;
    border: 1px solid var(--color-border);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: box-shadow 0.2s, transform 0.2s;
}
.resource-card:hover { box-shadow: 0 8px 28px rgba(26,26,46,0.1); transform: translateY(-3px); }
.resource-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(26,26,46,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}
.resource-card-title { font-family: var(--font-heading); font-size: 1.05rem; font-weight: 700; color: var(--color-charcoal); margin: 0; }
.resource-card-body { font-size: 0.875rem; color: var(--color-text-light); line-height: 1.7; margin: 0; flex: 1; }
.resource-card-link {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--color-charcoal);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}
.resource-card-link:hover { color: var(--color-gold); }
@media (max-width: 768px) { .resources-grid { grid-template-columns: 1fr; } }
@media (min-width: 481px) and (max-width: 768px) { .resources-grid { grid-template-columns: repeat(2, 1fr); } }

/* --- Scroll to Top Button --- */
.scroll-top-btn {
    position: fixed;
    bottom: 24px;
    left: 24px;
    z-index: 999;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--color-accent, #B37c3d);
    color: #fff;
    border: none;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: opacity 300ms ease, visibility 300ms ease, transform 200ms ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.scroll-top-btn svg { width: 22px; height: 22px; }
.scroll-top-btn.visible { opacity: 1; visibility: visible; }
.scroll-top-btn:hover { transform: translateY(-3px); box-shadow: 0 6px 20px rgba(0,0,0,0.2); }
@media (max-width: 768px) { .scroll-top-btn { display: none; } }

/* --- Mega Menu --- */
.nav-mega-parent { position: relative; }
.mega-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
    padding: 1.25rem;
    min-width: 380px;
    z-index: 1000;
}
.nav-mega-parent.open .mega-menu { display: block; }
.mega-menu-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
}
.mega-menu-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 0.75rem;
    border-radius: 8px;
    color: var(--color-primary, #0f1c48);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: background 0.15s;
    white-space: nowrap;
}
.mega-menu-item:hover { background: var(--color-off-white, #f5f0e8); }
@media (max-width: 768px) {
    .mega-menu {
        position: static;
        transform: none;
        box-shadow: none;
        min-width: auto;
        padding: 0.5rem 0;
        background: transparent;
    }
    .mega-menu-grid { grid-template-columns: 1fr; }
    .mega-menu-item { color: #fff; padding: 0.5rem 1rem; }
    .mega-menu-item:hover { background: rgba(255,255,255,0.1); }
}

/* --- Logo Image --- */
.logo-img { height: 50px; width: auto; display: block; }
.footer-logo-img { height: 40px; width: auto; }

/* --- Sticky Mobile CTA --- */
.sticky-mobile-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: #fff;
    border-top: 2px solid var(--color-gold);
    padding: 0.75rem 1rem;
    gap: 0.75rem;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
}
.sticky-mobile-cta a {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    text-align: center;
}
.sticky-cta-call { background: #f5f5f5; color: var(--color-charcoal); border: 2px solid #ddd; gap: 0.4rem; }
.sticky-cta-quote { background: var(--color-gold); color: #fff; }
@media (max-width: 768px) { .sticky-mobile-cta { display: flex; } }

/* ============================================================================
   Newsletter Subscription Section
   ============================================================================ */
.newsletter-section {
    background-color: var(--color-navy);
    padding: 4rem 0;
    text-align: center;
}

.newsletter-inner {
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-heading {
    font-family: var(--font-heading);
    color: var(--color-white);
    font-size: 2.25rem;
    margin-bottom: 0.75rem;
}

.newsletter-subtitle {
    font-family: var(--font-body);
    color: var(--color-text-light);
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.newsletter-form {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    margin-bottom: 1rem;
}

.newsletter-input {
    flex: 1;
    padding: 0.85rem 1.25rem;
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.08);
    color: var(--color-white);
    font-family: var(--font-body);
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s ease;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.45);
}

.newsletter-input:focus {
    border-color: var(--color-gold);
}

.newsletter-btn {
    padding: 0.85rem 2rem;
    background-color: var(--color-gold);
    color: var(--color-white);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    white-space: nowrap;
}

.newsletter-btn:hover {
    background-color: #9a6a33;
    transform: translateY(-1px);
}

.newsletter-privacy {
    font-family: var(--font-body);
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.8rem;
    margin-top: 0.75rem;
}

@media (max-width: 600px) {
    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-btn {
        width: 100%;
    }

    .newsletter-heading {
        font-size: 1.75rem;
    }

    .newsletter-section {
        padding: 3rem 0;
    }
}

/* ============================================================================
   Intake Form Section
   ============================================================================ */
.intake-section { padding: 3.5rem 0; background: #fff; }
.intake-grid { display: grid; grid-template-columns: 1fr 380px; gap: 2.5rem; max-width: 1100px; margin: 0 auto; }
.intake-form-wrap h2 { font-family: var(--font-heading); color: #2a2a2a; font-size: 1.8rem; margin-bottom: 1.75rem; }
.intake-form .if-group { margin-bottom: 1.25rem; }
.intake-form .if-group label { display: block; font-weight: 700; color: #2a2a2a; font-size: 0.95rem; margin-bottom: 0.4rem; font-family: var(--font-body); }
.intake-form .if-group input,
.intake-form .if-group select,
.intake-form .if-group textarea {
    width: 100%; padding: 0.85rem 1rem; border: 1px solid #ddd; border-radius: 8px;
    font-size: 0.95rem; font-family: var(--font-body); color: #333; background: #fff;
    transition: border-color 0.2s;
}
.intake-form .if-group input:focus,
.intake-form .if-group select:focus,
.intake-form .if-group textarea:focus { border-color: var(--color-gold); outline: none; }
.intake-form .if-group input::placeholder,
.intake-form .if-group textarea::placeholder { color: #aaa; }
.intake-form .if-group textarea { resize: vertical; min-height: 120px; }
.intake-form .if-group select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23666' stroke-width='1.5' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; cursor: pointer; }
.intake-submit { display: block; width: 100%; padding: 1rem; background: var(--color-gold); color: #fff; font-weight: 700; font-size: 1.1rem; font-family: var(--font-body); border: none; border-radius: 8px; cursor: pointer; transition: background 0.2s, transform 0.2s; }
.intake-submit:hover { background: #9a6a33; transform: translateY(-1px); }
.intake-note { color: #888; font-size: 0.85rem; margin-top: 0.75rem; }
.intake-success { display: none; text-align: center; padding: 2rem; }
.intake-success .if-check { font-size: 3rem; color: #27ae60; margin-bottom: 0.5rem; }
.intake-success h3 { font-family: var(--font-heading); color: #0f1c48; font-size: 1.3rem; margin-bottom: 0.5rem; }
.intake-success p { color: #555; font-size: 0.95rem; }

/* Intake sidebar */
.intake-sidebar { display: flex; flex-direction: column; gap: 1.5rem; }
.intake-contact-card { background: #0f1c48; color: #fff; border-radius: 16px; padding: 2rem; }
.intake-contact-card h3 { font-family: var(--font-heading); font-size: 1.2rem; margin-bottom: 1.25rem; color: #fff; }
.intake-contact-card .icc-row { display: flex; align-items: center; gap: 0.6rem; margin-bottom: 0.75rem; font-size: 0.95rem; }
.intake-contact-card .icc-row a { color: #fff; text-decoration: none; font-weight: 600; }
.intake-contact-card .icc-hours { margin-top: 1rem; font-size: 0.9rem; opacity: 0.9; line-height: 1.6; }
.intake-contact-card .icc-sister { margin-top: 1.25rem; font-size: 0.85rem; opacity: 0.75; line-height: 1.5; border-top: 1px solid rgba(255,255,255,0.15); padding-top: 1rem; }
.intake-areas-card { background: #f9f3f3; border-radius: 16px; padding: 2rem; }
.intake-areas-card h3 { font-family: var(--font-heading); font-size: 1.15rem; color: #2a2a2a; margin-bottom: 1rem; }
.intake-areas-pills { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.intake-areas-pills span { background: #fff; border: 1px solid #ddd; border-radius: 6px; padding: 0.35rem 0.75rem; font-size: 0.82rem; color: #333; font-weight: 500; }

/* Calendar section on contact page */
.calendar-section { padding: 3.5rem 0; background: #f9f3f3; }
.calendar-section h2 { font-family: var(--font-heading); color: #0f1c48; font-size: 1.5rem; text-align: center; margin-bottom: 0.5rem; }
.calendar-section .cal-sub { text-align: center; color: #666; font-size: 0.95rem; margin-bottom: 2rem; }

@media (max-width: 768px) {
    .intake-grid { grid-template-columns: 1fr; }
    .intake-sidebar { order: -1; }
    .intake-form-wrap h2 { font-size: 1.5rem; }
}

/* CTA cards row */
.cta-cards-section { background: #f8f9fa; padding: 3rem 0; }
.cta-cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.cta-card { background: #fff; padding: 2rem; border-radius: 12px; text-align: center; box-shadow: 0 2px 8px rgba(0,0,0,0.06); transition: transform 0.2s, box-shadow 0.2s; }
.cta-card:hover { transform: translateY(-2px); box-shadow: 0 4px 16px rgba(0,0,0,0.1); }
.cta-card-icon { font-size: 2rem; margin-bottom: 1rem; }
.cta-card h3 { margin: 0 0 0.5rem; font-family: var(--font-heading); color: #2a2a2a; font-size: 1.1rem; }
.cta-card a { color: #2a2a2a; font-weight: 600; font-size: 1.05rem; text-decoration: none; }
.cta-card p { color: #666; font-size: 0.875rem; margin-top: 0.5rem; }
@media (max-width: 600px) { .cta-cards-grid { grid-template-columns: 1fr; } }

/* ============================================================
   MOBILE RESPONSIVENESS FIX — 2026-04-03
   Comprehensive mobile overhaul for D&D Property Management
   ============================================================ */

@media (max-width: 768px) {
  /* Mobile nav already handled with .hamburger and .main-nav patterns */
  /* Ensure full-screen overlay for main-nav */
  .main-nav ul {
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    flex-direction: column;
    padding: 1.5rem 2rem;
    gap: 0.5rem;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    z-index: 1001;
    overflow-y: auto;
    display: none;
  }
  .main-nav.nav-open ul {
    display: flex !important;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    z-index: 1100;
    padding: 80px 24px 24px;
    overflow-y: auto;
    gap: 0;
  }
  .main-nav.nav-open ul > li { border-bottom: 1px solid #eee; }
  .main-nav.nav-open ul > li > a { display: block; padding: 16px 0; font-size: 1.1rem; color: #1a1a1a; text-decoration: none; }
  .hamburger { z-index: 1200; }

  /* Logo sizing */
  .header-logo img,
  .logo-img { max-height: 40px; height: 40px; width: auto; }

  /* Section padding reduction */
  section { padding: 3rem 0; }

  /* Typography scaling */
  h1 { font-size: clamp(1.75rem, 5vw, 2.5rem); }
  h2 { font-size: clamp(1.5rem, 4vw, 2.25rem); }
  h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); }
  .hero-title { font-size: clamp(1.75rem, 5vw, 2.5rem); }
  .hero-subtitle { font-size: 1.1rem; }

  /* Hero */
  .hero-full { min-height: auto; padding: 3rem 0 2.5rem; }
  .hero-stat-card { flex-direction: column; text-align: center; width: 100%; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { width: 100%; text-align: center; }
  .hero-badge { font-size: 0.75rem; }

  /* Grid collapses — all single column */
  .companies-grid,
  .value-grid,
  .benefits-grid,
  .process-steps,
  .services-grid,
  .why-grid,
  .reviews-grid,
  .blog-grid,
  .primary-cities-grid,
  .team-grid,
  .pillars-grid,
  .testimonials-grid,
  .before-after-grid,
  .pm-blog-grid,
  .pm-resources-grid,
  .landlord-types-grid,
  .communities-type-grid,
  .landlord-profiles-grid,
  .blog-preview-grid,
  .resources-grid,
  .ba-grid,
  .cta-cards-grid,
  .intake-grid {
    grid-template-columns: 1fr;
  }

  /* Two-column grids on mobile */
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .areas-preview-stats { grid-template-columns: 1fr 1fr; }
  .pm-port-stats-grid { grid-template-columns: 1fr 1fr; }
  .pm-areas-city-grid { grid-template-columns: 1fr 1fr; }
  .extended-areas-grid { grid-template-columns: 1fr 1fr; }
  .hiw-grid { grid-template-columns: 1fr 1fr; }

  /* Content/layout grids */
  .content-grid { grid-template-columns: 1fr; }
  .content-main { padding-right: 0; }
  .contact-layout { grid-template-columns: 1fr; }
  .contact-form { margin-top: 2rem; }
  .included-cols { grid-template-columns: 1fr; gap: 2rem; }
  .full-service-layout { grid-template-columns: 1fr; }

  /* Card padding reduction */
  .service-card { padding: 1.25rem; }
  .review-card { padding: 1.25rem; }

  /* Mega menu mobile */
  .mega-menu { min-width: auto; width: 100%; left: 0; transform: none; border-radius: 0; }
  .mega-menu-grid { grid-template-columns: 1fr; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .footer-bottom-links { justify-content: center; flex-wrap: wrap; }

  /* Announcement bar */
  .announcement-content { flex-direction: column; gap: 0.4rem; text-align: center; }
  .announcement-divider { display: none; }

  /* Trust strip */
  .trust-strip-grid { gap: 1rem; }
  .trust-divider { display: none; }
  .pm-trust-grid { gap: 1rem; }
  .pm-trust-badge { padding: 0.75rem 1rem; font-size: 0.9rem; }

  /* No horizontal overflow */
  .booking-calendar-widget { max-width: 100%; overflow-x: hidden; }
  img, video { max-width: 100%; height: auto; }

  /* Comparison table */
  .comparison-table-header,
  .comparison-row {
    grid-template-columns: 1.5fr 1fr 1fr;
    font-size: 0.85rem;
  }

  /* Reviews */
  .reviews-filter-bar { top: 0; position: static; }
  .aggregate-score { font-size: 2rem; }

  /* FAQ */
  .pm-faq-question { font-size: 1rem; padding: 1rem 1.25rem; }
  .owner-faq-q h3 { font-size: 1rem; }

  /* Intake form */
  .intake-grid { grid-template-columns: 1fr; }

  /* BA columns stay side-by-side within card */
  .ba-columns { grid-template-columns: 1fr 1fr; gap: 0.75rem; }
}

/* ── Sticky Mobile CTA Bar ── */
.mobile-cta-bar {
  display: none;
}

@media (max-width: 768px) {
  .mobile-cta-bar {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: var(--color-charcoal, #1a1a2e);
    padding: 0.75rem 1rem;
    gap: 0.5rem;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
    justify-content: center;
    align-items: center;
  }
  .mobile-cta-bar .btn {
    flex: 1;
    text-align: center;
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
    border-radius: 6px;
    max-width: 180px;
  }
  body { padding-bottom: 72px; }
}

/* ── Extra small screens ── */
@media (max-width: 480px) {
  :root { --container-padding: 0.875rem; }
  h1, .hero-title { font-size: 1.75rem; }
  h2 { font-size: 1.5rem; }
  .btn-xl, .btn-primary-xl { padding: 0.85rem 1.5rem; font-size: 1rem; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .hiw-grid { grid-template-columns: 1fr; }
  .pm-port-stats-grid { grid-template-columns: 1fr; }
  .pm-areas-city-grid { grid-template-columns: 1fr; }
  .extended-areas-grid { grid-template-columns: 1fr; }
  .main-nav ul { top: 50px; }
}

/* ============================================================================
   ANNOUNCEMENT BAR — 2-ROW
   ============================================================================ */
.announce-top {
  background: #0a1230;
  color: rgba(255,255,255,0.92);
  text-align: center;
  padding: 0.45rem 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.announce-top a {
  color: var(--color-gold);
  text-decoration: underline;
}
.announce-bottom {
  background: #080e28;
  color: rgba(255,255,255,0.78);
  text-align: center;
  padding: 0.35rem 1rem;
  font-size: 0.78rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.announce-bottom a {
  color: var(--color-gold);
  font-weight: 700;
  text-decoration: none;
}
.announce-bottom .announce-divider {
  color: rgba(255,255,255,0.5);
}

/* ============================================================================
   ACCOUNT ICON — GREY RING
   ============================================================================ */
.nav-account {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid #c0c0c0;
  color: var(--color-navy);
  transition: border-color 0.2s ease, color 0.2s ease;
  flex-shrink: 0;
}
.nav-account:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
}

/* ============================================================================
   HEADER SCROLL — HIDE/SHOW + SHADOW
   ============================================================================ */
.site-header {
  transition: transform 0.35s cubic-bezier(0.77, 0, 0.175, 1), box-shadow 0.35s ease;
}
.site-header.hidden {
  transform: translateY(-100%);
}
.site-header.scrolled {
  box-shadow: 0 4px 24px rgba(15, 28, 72, 0.14);
}

/* ============================================================================
   FAQ ARROWS — GOLD
   ============================================================================ */
.faq-accordion details summary::after {
  color: #B37c3d;
  font-weight: 700;
  transition: transform 0.25s ease;
}
.faq-accordion details[open] summary::after {
  color: #B37c3d;
}
.pm-faq-question::after,
.owner-faq-q::after {
  color: #B37c3d;
}

/* ============================================================================
   CTA SECTION — 3-STOP GRADIENT
   ============================================================================ */
.cta-section {
  background: linear-gradient(135deg, #0f1c48 0%, #162557 50%, #162557 100%);
}

/* ============================================================================
   PM-PAGE-HERO — REDESIGNED HERO FOR INNER PAGES
   ============================================================================ */
.pm-page-hero {
  position: relative;
  background: linear-gradient(135deg, #0f1c48 0%, #162557 60%, #0f1c48 100%);
  color: #fff;
  padding: 5rem 0 4rem;
  overflow: hidden;
  text-align: center;
}
.pm-page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(179,124,61,0.10) 0%, transparent 55%),
    radial-gradient(circle at 80% 80%, rgba(179,124,61,0.05) 0%, transparent 50%);
  pointer-events: none;
}
.pm-page-hero .hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  margin: 0 auto;
}
.pm-page-hero .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(179,124,61,0.15);
  border: 1px solid rgba(179,124,61,0.4);
  color: var(--color-gold);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.pm-page-hero h1 {
  font-size: clamp(2rem, 4.5vw, 3rem);
  color: #fff;
  margin-bottom: 1rem;
  line-height: 1.2;
}
.pm-page-hero h1 em {
  font-style: italic;
  color: var(--color-gold);
}
.pm-page-hero .hero-stat-card {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(179,124,61,0.3);
  border-radius: 12px;
  padding: 0.85rem 1.75rem;
  margin-top: 2rem;
  backdrop-filter: blur(4px);
}
@media (max-width: 768px) {
  .pm-page-hero { padding: 3.5rem 0 3rem; }
  .pm-page-hero h1 { font-size: 1.75rem; }
}


/* Mobile Sticky CTA Bar */
.mobile-sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: var(--color-primary, #2C3E2D);
    padding: 0.5rem 1rem;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.15);
}
.mobile-sticky-cta .sticky-cta-inner {
    display: flex;
    gap: 0.5rem;
    max-width: 600px;
    margin: 0 auto;
}
.mobile-sticky-cta .sticky-cta-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.7rem 0.5rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    text-align: center;
}
.mobile-sticky-cta .sticky-cta-call {
    background: #fff;
    color: var(--color-primary, #2C3E2D);
}
.mobile-sticky-cta .sticky-cta-quote {
    background: var(--color-accent, #A67C2A);
    color: #fff;
}
@media (max-width: 768px) {
    .mobile-sticky-cta { display: block; }
    body { padding-bottom: 70px; }
}


/* === Components from Master Template === */
.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-ui);
    font-size: var(--text-sm);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .18em;
    color: #B37c3d;
    background: rgba(179,124,61,0.12);
    border: 1px solid rgba(179,124,61,0.3);
    border-radius: 100px;
    padding: 5px 14px 5px 10px;
    margin-bottom: var(--space-4)
}

.section-tag::before {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: currentColor;
    flex-shrink: 0;
    opacity: 0.85
}

.section-title {
    font-size: clamp(var(--text-3xl), 5vw, var(--text-5xl));
    margin-bottom: var(--space-4);
    color: var(--color-gray-900)
}

.section-description {
    font-size: var(--text-lg);
    color: var(--color-gray-600);
    max-width: 600px
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-12)
}

.section-header .section-description {
    margin: 0 auto
}

.service-card-modern:hover .service-btn svg {
    transform: translateX(4px)
}

.carousel-arrow {
    border-radius: var(--radius-full)
}

.carousel-arrow:hover,
.service-card-new h3 {
    color: var(--color-white)
}

.carousel-dots .dot,
.carousel-dots button {
    width: 10px;
    height: 10px;
    border-radius: var(--radius-full);
    background: var(--color-gray-300);
    border: 0;
    cursor: pointer;
    transition: all var(--transition-base)
}

.carousel-dots button.active,
.feature-item .feature-icon {
    background: var(--color-accent);
    width: 30px
}

.why-us {
    padding: var(--space-10)0 var(--space-24)
}

.why-us-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
    align-items: center
}

.why-us-description {
    font-size: var(--text-lg);
    color: var(--color-gray-600);
    margin-bottom: var(--space-8)
}

.why-us-image {
    position: relative
}

.why-us-image img {
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-xl);
    width: 100%;
    height: auto;
    aspect-ratio: 4/3;
    object-fit: cover
}

.service-map {
    height: 100%
}

    .why-us-grid {
        grid-template-columns: 1fr;
        gap: var(--space-10)
    }

    .why-us-image {
        order: -1
    }

    .service-map {
        height: 320px
    }

    .services-carousel {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch
    }

.service-detail-content .section-tag,
.value-card h4 {
    margin-bottom: var(--space-3)
}

.services-carousel-section::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -10%;
    width: 60%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(179, 124, 61, .04)0, transparent 70%);
    pointer-events: none
}

.service-card-modern {
    border-radius: var(--radius-xl);
    height: 100%;
    text-decoration: none;
    color: var(--color-white);
    transition: transform 0.25s cubic-bezier(0.4,0,1,1), box-shadow .4s ease
}

.service-card-modern:hover .service-btn {
    background: var(--color-accent-light)
}

.trusted-by {
    padding: var(--space-12)0;
    background: var(--color-white);
    border-bottom: 1px solid var(--color-gray-200)
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: var(--space-2);
    margin-top: var(--space-6)
}

    .testimonials-carousel-wrapper .carousel-arrow {
        display: none
    }

.social-modern-cta .section-tag {
    display: inline-block;
    margin-bottom: var(--space-4)
}

.service-hero .section-tag {
    color: #B37c3d;
    background: rgba(179,124,61,0.12);
    border: 1px solid rgba(179,124,61,0.3);
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-full);
    display: inline-block
}

.stat-block {
    text-align: center;
    color: var(--color-white);
    padding: 1rem 2rem;
    position: relative
}

.stat-block+.stat-block::before {
    content: "";
    position: absolute;
    left: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: rgba(255, 255, 255, .15)
}

.stat-block .stat-label {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, .8);
    font-weight: 500;
    letter-spacing: .02em
}

    .stat-block {
        padding: 1.5rem 1rem
    }

    .stat-block:nth-child(2)::before,
    .stat-block:nth-child(4)::before {
        display: none
    }

    .stat-block:nth-child(3),
    .stat-block:nth-child(4) {
        border-top: 1px solid rgba(255, 255, 255, .12)
    }

.booking-section-header .section-tag {
    display: inline-block;
    margin-bottom: 0.6rem;
}

.booking-section-header .section-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    color: var(--color-primary, #0a1233);
    margin: 0 0 0.65rem;
    line-height: 1.2;
}

.services-carousel[data-simple="1"] {
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    /* Align first card with the section-header-row left edge on all screen sizes.
       On viewports ≤ 1280px the container runs edge-to-edge so var(--space-6) (24px)
       is enough.  On wider viewports the 1280px container is centred, so we add half
       the overflow to match its left edge — same calculation the homepage JS uses. */
    padding-left: max(var(--space-6), calc((100vw - 1280px) / 2 + var(--space-6)));
    scroll-padding-left: max(var(--space-6), calc((100vw - 1280px) / 2 + var(--space-6)));
}

.services-carousel[data-simple="1"] .service-slide {
    scroll-snap-align: start;
}

    .service-card-modern {
        border-radius: 20px
    }

    .section-tag {
        font-size: .875rem
    }

.services-carousel-section {
    padding: var(--space-20)0 var(--space-12);
    background: var(--color-gray-50);
    position: relative;
    overflow: hidden
}

.services-carousel-section .container {
    max-width: 1280px;
    margin: 0 auto;
    padding-left: var(--space-6);
    padding-right: var(--space-6)
}

.section-header-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: var(--space-6);
    margin-bottom: 4px
}

.section-header-left {
    text-align: left;
    margin-bottom: 0
}

.section-header-left .section-description {
    margin: 0;
    max-width: 520px
}

.services-carousel {
    display: flex;
    gap: 16px;
    overflow-x: scroll;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: none;
    scrollbar-width: none;
    flex: 1;
    padding: 0 24px var(--space-4) 24px
}

.services-carousel::-webkit-scrollbar {
    display: none
}

.service-card-modern {
    width: 100%;
    min-height: 420px;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 16px rgba(26, 58, 92, .1);
    transition: box-shadow .3s ease
}

.service-card-modern:hover {
    transform: none;
    box-shadow: 0 6px 28px rgba(26, 58, 92, .15)
}

.service-card-modern:hover .service-card-bg {
    transform: none
}

.carousel-arrow {
    display: flex;
    color: var(--color-gray-600)
}

.carousel-arrow {
    position: relative;
    flex-shrink: 0;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--color-white);
    border: 1.5px solid var(--color-gray-200);
    box-shadow: 0 1px 4px rgba(0, 0, 0, .06);
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all .2s ease
}

.carousel-arrow svg {
    width: 18px;
    height: 18px
}

.carousel-arrow:hover {
    background: var(--color-accent);
    border-color: var(--color-accent);
    color: #fff;
    box-shadow: 0 4px 12px rgba(179, 124, 61, .25);
    transform: none
}

.carousel-dots {
    display: none
}

    .service-card-modern {
        min-height: 380px
    }

    .services-carousel-section {
        padding: var(--space-10)0 var(--space-8)
    }

    .section-header-row {
        position: relative;
        flex-direction: column;
        align-items: flex-start;
        gap: var(--space-2);
        margin-bottom: 3px;
        padding-bottom: 42px
    }

    .section-header-left .section-title {
        font-size: var(--text-3xl)
    }

    .section-header-left .section-description {
        font-size: var(--text-sm);
        line-height: 1.5;
        max-width: calc(100% - 88px)
    }

    .carousel-arrow {
        width: 34px;
        height: 34px
    }

    .carousel-arrow svg {
        width: 15px;
        height: 15px
    }

    .services-carousel {
        gap: 12px;
        padding-left: 4vw;
        padding-right: 4vw;
        scroll-snap-type: x mandatory
    }

    .service-card-modern {
        min-height: 380px
    }

.social-modern-section .section-header {
    margin-bottom: var(--space-12)
}

.blog-related .section-header {
    margin-bottom: 2.5rem
}

.service-map {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl)
}

.service-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: var(--radius-xl)
}

.about-community-section .section-tag,
.footer-bottom-links a:hover {
    color: #B37c3d
}

.about-community-section .section-title {
    color: rgba(255, 255, 255, .85)
}

.about-community-section .section-description,
.community-card p {
    color: rgba(255, 255, 255, .55)
}

.section-header {
    min-height: 48px;
}

.services-carousel {
    min-height: 400px;
    contain: layout;
}

.section-tag {
    color: #B37c3d !important;
    font-weight: 700;
    background: rgba(179,124,61,0.12) !important;
    border: 1px solid rgba(179,124,61,0.3) !important;
    border-radius: 100px !important;
    padding: 5px 14px 5px 10px !important;
    letter-spacing: .18em !important;
}

.section-description {
    color: #333 !important;
}

.about-community-section .section-description {
    color: rgba(255, 255, 255, 0.9) !important;
}

.related-articles-carousel-section .section-header { text-align: center; margin-bottom: 28px; }
.related-articles-carousel-wrap { position: relative; }

.tcarousel-row {
    overflow: hidden;
    width: 100%;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 12%, #000 88%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, #000 12%, #000 88%, transparent 100%);
}

.tcarousel-track {
    display: flex;
    gap: 16px;
    width: max-content;
    will-change: transform;
}

.tcarousel-row--left .tcarousel-track {
    animation: tcarousel-left 32s linear infinite;
}

.tcarousel-row--right .tcarousel-track {
    animation: tcarousel-right 32s linear infinite;
}

.tcarousel-row:hover .tcarousel-track {
    animation-play-state: paused;
}

.tcarousel-card {
    background: linear-gradient(145deg, #0d1f35 0%, #0a1928 100%);
    border: 1px solid rgba(179,124,61,0.18);
    border-radius: 14px;
    padding: 20px 22px;
    width: 280px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: border-color 0.2s;
}

.tcarousel-card:hover { border-color: rgba(179,124,61,0.45); }


.tcarousel-card-stars {
    color: #f5c842;
    font-size: 13px;
    letter-spacing: 2px;
}

.tcarousel-card-text {
    color: #b8cfe0;
    font-size: 13.5px;
    line-height: 1.58;
    flex: 1;
}

.tcarousel-card-footer {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 4px;
}

.tcarousel-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
    background: #2d6a9f;
}

.tcarousel-card-author strong {
    display: block;
    color: #e8f0f8;
    font-size: 13.5px;
    font-weight: 600;
}

.tcarousel-card-author span {
    color: #5a88ac;
    font-size: 12px;
}

.tcarousel-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    color: #5a88ac;
    margin-top: 2px;
    font-weight: 500;
}

.tcarousel-rows {
    display: flex;
    flex-direction: column;
    gap: 14px;
    overflow: hidden;
}

    .tcarousel-card { width: 230px; padding: 16px 18px; }
    .tcarousel-card-text { font-size: 12.5px; }

.facebook-feed-section {
    padding: var(--space-24) 0;
    background: linear-gradient(180deg, var(--color-gray-50) 0%, var(--color-white) 100%);
}

.facebook-feed-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-12);
    align-items: center;
    margin-top: var(--space-12);
}

.fb-feed-wrapper {
    background: var(--color-white);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-xl);
    padding: var(--space-4);
    overflow: hidden;
}

.social-cta {
    background: linear-gradient(135deg, #1877f2 0%, #0d5bc6 100%);
    padding: var(--space-10);
    border-radius: var(--radius-2xl);
    color: var(--color-white);
}

.social-cta-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-6);
}

.social-cta-icon svg {
    color: var(--color-white);
}

.social-cta h3 {
    font-size: var(--text-2xl);
    color: var(--color-white);
    margin-bottom: var(--space-3);
}

.social-cta>p {
    font-size: var(--text-base);
    opacity: 0.9;
    margin-bottom: var(--space-6);
}

.social-benefits {
    list-style: none;
    margin-bottom: var(--space-6);
}

.social-benefits li {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    margin-bottom: var(--space-3);
    font-size: var(--text-sm);
}

.social-benefits svg {
    color: rgba(255, 255, 255, 0.8);
    flex-shrink: 0;
}

/* === PM Brand Color Override (appended) === */
:root {
    --color-primary: #0f1c48;
    --color-primary-light: #1a3060;
    --color-primary-dark: #0a1233;
    --color-accent: #D4AA2A;
    --color-accent-light: #e0be5a;
    --color-accent-dark: #b8860b;
    --color-secondary: #D4AA2A;
    --color-secondary-light: #e0be5a;
    --shadow-glow: 0 0 40px rgba(212, 170, 42, 0.3);
}

/* ====== Property Management Inner Page Hero System ====== */
.int-page-hero, .page-hero, .inner-page-hero, .page-header {
    position: relative;
    background: linear-gradient(155deg, #0f1c48 0%, #0f1c48dd 50%, #0f1c48cc 100%);
    padding: 7rem 0 5rem;
    overflow: hidden;
}
.int-page-hero::before, .page-hero::before, .inner-page-hero::before, .page-header::before {
    content: '';
    position: absolute;
    top: -80px; right: -60px;
    width: 420px; height: 420px;
    background: radial-gradient(circle, #D4AA2A15 0%, transparent 68%);
    pointer-events: none;
}
.int-page-hero::after, .page-hero::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #D4AA2A 50%, transparent);
    opacity: 0.4;
}
.int-page-hero .container, .page-hero .container, .inner-page-hero .container, .page-header .container {
    position: relative; z-index: 1;
}
/* Breadcrumb inside hero */
.int-page-hero .breadcrumb ol, .page-hero .breadcrumb ol {
    display: flex; gap: 0.35rem; list-style: none;
    padding: 0; margin: 0 0 1.5rem;
    font-size: 0.82rem; color: rgba(255,255,255,0.45);
}
.int-page-hero .breadcrumb li:not(:last-child)::after {content:'›'; margin-left:0.35rem;}
.int-page-hero .breadcrumb a, .page-hero .breadcrumb a {
    color: rgba(255,255,255,0.5); text-decoration: none; transition: color 0.2s;
}
.int-page-hero .breadcrumb a:hover { color: #D4AA2A; }
/* Hero pill */
.hero-pill {
    display: inline-flex; align-items: center; gap: 0.35rem;
    border: 1px solid #D4AA2A70; border-radius: 50px;
    padding: 0.35rem 1.1rem; font-size: 0.72rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.1em;
    color: #D4AA2A; margin-bottom: 1.25rem; background: #D4AA2A12;
}
/* Hero heading */
.int-page-hero h1, .page-hero h1, .inner-page-hero h1, .page-header h1 {
    font-size: clamp(1.8rem, 4.5vw, 3rem);
    font-weight: 800; color: #fff; line-height: 1.18;
    margin: 0 0 1.25rem; max-width: 680px;
}
.int-page-hero h1 em, .page-hero h1 em { font-style: italic; color: #D4AA2A; }
/* Hero sub */
.hero-sub {
    color: rgba(255,255,255,0.72); font-size: 1.025rem;
    line-height: 1.75; max-width: 560px; margin: 0 0 2rem;
}
/* Hero card */
.hero-card {
    display: inline-block;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
    border-radius: 1rem; padding: 1.5rem 2rem; text-align: center; min-width:160px;
}
.hero-card-num { display:block; font-size:2.4rem; font-weight:800; color:#D4AA2A; line-height:1; }
.hero-card-label { display:block; font-size:0.88rem; font-weight:600; color:rgba(255,255,255,0.82); margin-top:0.4rem; }
.hero-card-sub { display:block; font-size:0.78rem; color:rgba(255,255,255,0.45); margin-top:0.25rem; }
/* Inner page CTA section */
.int-page-cta {
    background: linear-gradient(135deg, #0f1c48, #0f1c48aa);
    padding: 4rem 0; text-align: center; color: #fff;
}
.int-page-cta h2 { font-size: clamp(1.5rem, 3vw, 2rem); font-weight:800; margin:0 0 1rem; }

/* ============================================
   PORTED FROM DDHS — Phase 3.5 (2026-05-06)
   Adds: footer-contact-strip, fcs-*, sub-hero-proof-bar, mid-cta-banner
   Cross-site: uses var fallbacks so brand colors apply
   ============================================ */
/* ===== Mid-page CTA Banner ===== */
.mid-cta-banner {
    position: relative;
    overflow: hidden;
    padding: 4.5rem 1.5rem;
    margin: 4rem 0;
    color: #fff;
    text-align: center;
    isolation: isolate;
}
@media (max-width: 640px) {
    .mid-cta-banner { padding: 3.25rem 1rem; margin: 3rem 0; }
    .mid-cta-actions { flex-direction: column; gap: .85rem; }
}


/* ===== Footer contact strip ===== */
.footer-contact-strip {
    list-style: none;
    padding: 1.5rem 0;
    margin: 0 0 2.5rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border-top: 1px solid rgba(255, 255, 255, .08);
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.footer-contact-strip > li {
    position: relative;
    padding: .25rem 1.5rem;
}

.footer-contact-strip > li + li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 18%;
    bottom: 18%;
    width: 1px;
    background: rgba(255, 255, 255, .08);
}

.fcs-item {
    display: flex;
    align-items: center;
    gap: .85rem;
    color: rgba(255, 255, 255, .92);
    text-decoration: none;
    transition: color 180ms ease;
}

.fcs-item[href]:hover {
    color: #fff;
}

.fcs-item[href]:hover .fcs-icon {
    color: var(--color-accent, #C49A1A);
}

.fcs-icon {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    color: var(--color-accent, #C49A1A);
    opacity: .9;
    transition: color 180ms ease;
}

.fcs-body {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.fcs-label {
    font-family: var(--font-body, 'Sora', sans-serif);
    font-size: .68rem;
    text-transform: uppercase;
    letter-spacing: .14em;
    color: rgba(255, 255, 255, .5);
    font-weight: 600;
}

.fcs-value {
    color: #fff;
    font-weight: 600;
    font-size: .92rem;
    line-height: 1.3;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
@media (max-width: 900px) {
    .footer-contact-strip { grid-template-columns: repeat(2, 1fr); gap: 1.25rem 0; padding: 1.5rem 0; }
    .footer-contact-strip > li { padding: .25rem 1rem; }
    .footer-contact-strip > li:nth-child(odd)::before,
    .footer-contact-strip > li:first-child::before { display: none; }
}
@media (max-width: 520px) {
    .footer-contact-strip { grid-template-columns: 1fr; gap: 1rem 0; }
    .footer-contact-strip > li { padding: .25rem 0; }
    .footer-contact-strip > li::before { display: none; }
    .fcs-value { white-space: normal; }
}
