/*
Theme Name: Sacramento Valley Property Management
Theme URI: https://sacramentovalley.doorgrow.com
Author: DoorGrow
Author URI: https://doorgrow.com
Description: Professional property management theme for Sacramento Valley PM. Built for easy content management via REST API.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: svpm
*/

/* ============================================
   CSS VARIABLES - Managed via Theme Settings
   ============================================ */
:root {
    /* Primary Colors */
    --red-primary: #D64541;
    --red-dark: #B33A37;
    --red-darker: #8B2E2B;
    --red-light: #E8706D;

    /* Neutrals */
    --white: #FFFFFF;
    --off-white: #FAFAFA;
    --cream: #F8F6F3;
    --gray-100: #F5F5F5;
    --gray-200: #EEEEEE;
    --gray-300: #D4D4D4;
    --gray-500: #737373;
    --gray-600: #525252;
    --gray-700: #404040;
    --gray-800: #2D2D2D;
    --gray-900: #1A1A1A;

    /* Typography */
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Source Sans 3', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Spacing */
    --section-padding: clamp(60px, 8vw, 100px);
    --container-width: 1200px;
    --container-padding: clamp(20px, 5vw, 40px);

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
}

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-700);
    background: var(--white);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--red-primary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--red-dark);
}

/* ============================================
   UTILITIES
   ============================================ */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.section-padding {
    padding: var(--section-padding) 0;
}

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

.section-title {
    font-size: clamp(32px, 5vw, 48px);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: clamp(16px, 2vw, 18px);
    color: var(--gray-500);
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all var(--transition-base);
}

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

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

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--red-primary);
}

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

.btn-white:hover {
    background: var(--gray-100);
    color: var(--red-dark);
    transform: translateY(-2px);
}

/* ============================================
   TOP BAR
   ============================================ */
.top-bar {
    background: var(--gray-800);
    color: var(--white);
    padding: 10px 0;
    font-size: 14px;
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.top-bar-links {
    display: flex;
    gap: 24px;
}

.top-bar-links a {
    color: var(--gray-300);
    font-weight: 500;
}

.top-bar-links a:hover {
    color: var(--white);
}

.top-bar-phone {
    color: var(--red-light);
    font-weight: 700;
}

/* ============================================
   HEADER
   ============================================ */
.header {
    background: var(--white);
    padding: 16px 0;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    color: var(--gray-800);
    line-height: 1.2;
}

.logo span {
    display: block;
    color: var(--red-primary);
}

.nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-links a {
    color: var(--gray-700);
    font-weight: 500;
    padding: 8px 0;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--red-primary);
    transition: width var(--transition-base);
}

.nav-links a:hover {
    color: var(--red-primary);
}

.nav-links a:hover::after {
    width: 100%;
}

/* Navigation Dropdown */
.nav-links > li {
    position: relative;
}

.nav-links .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 280px;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    padding: 12px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.2s ease;
    z-index: 100;
    list-style: none;
}

.nav-links > li:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-links .sub-menu li {
    padding: 0;
}

.nav-links .sub-menu a {
    display: block;
    padding: 10px 20px;
    color: var(--gray-700);
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
}

.nav-links .sub-menu a:hover {
    background: var(--gray-100);
    color: var(--red-primary);
}

.nav-links .sub-menu a::after {
    display: none;
}

/* Dropdown arrow indicator */
.nav-links > li.menu-item-has-children > a::after {
    content: '';
    position: static;
    display: inline-block;
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4px solid currentColor;
    margin-left: 6px;
    vertical-align: middle;
    transition: transform 0.2s;
    background: none;
}

.nav-links > li.menu-item-has-children:hover > a::after {
    transform: rotate(180deg);
}

.nav-phone {
    color: var(--red-primary);
    font-weight: 700;
    font-size: 18px;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--gray-800) 0%, var(--gray-900) 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('assets/images/hero-bg-aerial.webp') center/cover no-repeat;
    opacity: 0.85;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(26,26,26,0.75) 0%, rgba(26,26,26,0.5) 50%, rgba(26,26,26,0.25) 100%);
}

.hero-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 80px 0;
}

.hero-content {
    color: var(--white);
}

.hero-badge {
    display: inline-block;
    background: var(--red-primary);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-title {
    font-size: clamp(36px, 5vw, 56px);
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero-title span {
    color: var(--red-light);
}

.hero-text {
    font-size: 18px;
    font-weight: 500;
    color: var(--gray-300);
    margin-bottom: 32px;
    line-height: 1.7;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.hero-photo {
    position: relative;
    z-index: 2;
    max-width: 400px;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.4));
}

.hero-photo img {
    width: 100%;
    height: auto;
}

.hero-photo-bg {
    position: absolute;
    bottom: 0;
    right: -20px;
    width: 300px;
    height: 300px;
    background: var(--red-primary);
    border-radius: 50%;
    opacity: 0.2;
    z-index: 1;
}

/* ============================================
   TRUST BAR
   ============================================ */
.trust-bar {
    background: var(--red-primary);
    padding: 16px 0;
    text-align: center;
}

.trust-bar p {
    color: var(--white);
    font-weight: 600;
    font-size: 15px;
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services {
    background: var(--cream);
}

.services-header {
    text-align: center;
    margin-bottom: 60px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.service-card {
    background: var(--white);
    padding: 32px 24px;
    border-radius: 12px;
    text-align: center;
    transition: all var(--transition-base);
    border: 1px solid var(--gray-200);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--red-primary);
}

.service-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--red-light) 0%, var(--red-primary) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon svg {
    width: 32px;
    height: 32px;
    fill: var(--white);
}

.service-card h3 {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--gray-800);
}

.service-card p {
    font-size: 14px;
    color: var(--gray-500);
    line-height: 1.6;
}

/* ============================================
   WHY CHOOSE US
   ============================================ */
.why-choose {
    background: var(--white);
}

.why-choose-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.why-choose-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.why-choose-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.why-choose-content > p:first-of-type {
    margin-bottom: 32px !important;
}

.why-choose-list {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.why-choose-item {
    display: flex;
    gap: 20px;
}

.why-choose-number {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: var(--red-primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
}

.why-choose-item-content h4 {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 6px;
}

.why-choose-item-content p {
    font-size: 15px;
    color: var(--gray-500);
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
    background: linear-gradient(135deg, var(--red-darker) 0%, var(--red-dark) 100%);
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.testimonials-header h2 {
    color: var(--white);
}

.testimonials-header p {
    color: rgba(255,255,255,0.8);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    position: relative;
    z-index: 2;
}

.testimonial-card {
    background: var(--white);
    padding: 36px;
    border-radius: 16px;
    text-align: center;
    transition: transform var(--transition-base);
}

.testimonial-card:hover {
    transform: translateY(-4px);
}

.testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 20px;
    overflow: hidden;
    border: 4px solid var(--red-light);
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-card h4 {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 4px;
}

.testimonial-role {
    color: var(--red-primary);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
}

.testimonial-text {
    font-size: 15px;
    color: var(--gray-600);
    line-height: 1.7;
    font-style: italic;
}

.testimonial-text::before {
    content: '"';
    font-family: var(--font-display);
    font-size: 48px;
    color: var(--red-light);
    display: block;
    line-height: 1;
    margin-bottom: -10px;
}

/* ============================================
   RENTAL ANALYSIS
   ============================================ */
.rental-analysis {
    background: var(--cream);
}

.rental-analysis-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.rental-analysis-content h2 {
    font-size: clamp(42px, 6vw, 60px);
    margin-bottom: 20px;
    line-height: 1.1;
}

.rental-analysis-content h2 span {
    font-family: 'Brush Script MT', cursive;
    color: var(--red-primary);
    font-weight: 400;
}

.rental-analysis-list {
    list-style: none;
    margin: 24px 0 32px;
}

.rental-analysis-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    font-size: 16px;
}

.rental-analysis-list .check-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    color: var(--red-primary);
}

.trust-badges {
    display: flex;
    gap: 24px;
    margin-top: 32px;
}

.trust-badge img {
    height: 50px;
    width: auto;
    opacity: 0.7;
    filter: grayscale(30%);
    transition: opacity var(--transition-fast);
}

.trust-badge img:hover {
    opacity: 1;
    filter: grayscale(0%);
}

.rental-analysis-form {
    background: var(--white);
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}

/* Multi-Step Form Progress */
.form-progress {
    margin-bottom: 32px;
}

.form-progress-text {
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-600);
    margin-bottom: 8px;
    text-align: center;
}

.form-progress-bar {
    height: 6px;
    background: var(--gray-200);
    border-radius: 3px;
    overflow: hidden;
}

.form-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--red-primary), var(--red-light));
    border-radius: 3px;
    transition: width 0.4s ease;
}

/* Form Steps */
.form-step {
    display: none;
    animation: fadeIn 0.3s ease;
}

.form-step.active {
    display: block;
}

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

.form-step-title {
    font-family: var(--font-body);
    font-size: 20px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 24px;
    text-align: center;
}

/* Form Options (Radio Buttons) */
.form-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.form-options.error .form-option {
    border-color: #dc2626;
}

.form-option {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 20px;
    border: 2px solid var(--gray-200);
    border-radius: 12px;
    cursor: pointer;
    transition: all var(--transition-fast);
    background: var(--white);
}

.form-option:hover {
    border-color: var(--red-light);
    background: #fef7f7;
}

.form-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.form-option input[type="radio"]:checked + .form-option-radio {
    border-color: var(--red-primary);
    background: var(--red-primary);
}

.form-option input[type="radio"]:checked + .form-option-radio::after {
    transform: scale(1);
}

.form-option input[type="radio"]:checked ~ .form-option-text {
    color: var(--gray-900);
    font-weight: 600;
}

.form-option-radio {
    width: 24px;
    height: 24px;
    border: 2px solid var(--gray-300);
    border-radius: 50%;
    flex-shrink: 0;
    position: relative;
    transition: all var(--transition-fast);
}

.form-option-radio::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 10px;
    height: 10px;
    background: var(--white);
    border-radius: 50%;
    transition: transform 0.2s ease;
}

.form-option-text {
    font-size: 16px;
    color: var(--gray-700);
    line-height: 1.4;
    transition: all var(--transition-fast);
}

/* Form Fields */
.form-fields {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    margin-bottom: 0;
}

.form-label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 15px;
    color: var(--gray-800);
}

.form-label .required {
    color: var(--red-primary);
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--gray-200);
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: 16px;
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
    background: var(--white);
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--red-primary);
    box-shadow: 0 0 0 3px rgba(196, 30, 58, 0.1);
}

.form-input.field-error,
.form-textarea.field-error {
    border-color: #dc2626;
    background: #fef2f2;
}

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

/* Form Navigation */
.form-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 32px;
    gap: 16px;
}

.form-nav .btn {
    flex: 1;
    max-width: 200px;
}

.form-nav #prev-btn {
    background: transparent;
    border: 2px solid var(--gray-300);
    color: var(--gray-700);
}

.form-nav #prev-btn:hover {
    border-color: var(--gray-400);
    background: var(--gray-100);
}

.form-nav #next-btn,
.form-nav #submit-btn {
    margin-left: auto;
}

/* ============================================
   LOCAL EXPERTS
   ============================================ */
.local-experts {
    background: var(--white);
}

.local-experts-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.local-experts-image {
    position: relative;
}

.local-experts-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}

.local-experts-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--red-primary);
    color: var(--white);
    padding: 16px 24px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 14px;
    box-shadow: var(--shadow-md);
}

.local-experts-badge span {
    display: block;
    font-size: 24px;
}

.local-experts-content h2 {
    margin-bottom: 20px;
}

.local-experts-content p {
    font-size: 16px;
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 20px;
}

/* ============================================
   FOOTER CTA
   ============================================ */
.footer-cta {
    background: var(--red-primary);
    padding: 40px 0;
    text-align: center;
}

.footer-cta h3 {
    color: var(--white);
    font-size: clamp(24px, 3vw, 32px);
    margin-bottom: 8px;
}

.footer-cta p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 24px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--gray-800);
    color: var(--gray-300);
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid var(--gray-700);
}

.footer-brand .footer-logo {
    display: block;
    margin-bottom: 20px;
}

.footer-brand .footer-logo-img {
    max-width: 280px;
    height: auto;
    filter: brightness(0) invert(1);
}

.footer-brand p {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: var(--gray-700);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: background var(--transition-fast);
}

.footer-social a:hover {
    background: var(--red-primary);
}

.footer-links h4 {
    color: var(--white);
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--gray-400);
    font-size: 14px;
}

.footer-links a:hover {
    color: var(--red-light);
}

.footer-contact-item {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 14px;
}

.footer-contact-item svg {
    width: 20px;
    height: 20px;
    fill: var(--red-primary);
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-bottom {
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 14px;
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    color: var(--gray-400);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-choose-inner,
    .rental-analysis-inner,
    .local-experts-inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content {
        order: 1;
    }

    .hero-image {
        order: 2;
    }

    .hero-text {
        margin: 0 auto 32px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .nav-links {
        display: none;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .top-bar-links {
        display: none;
    }
}

/* ============================================
   MOBILE MENU
   ============================================ */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 110;
}

.hamburger {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--gray-800);
    position: relative;
    transition: background var(--transition-fast);
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    left: 0;
    width: 24px;
    height: 2px;
    background: var(--gray-800);
    transition: transform var(--transition-base);
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    bottom: -8px;
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger {
    background: transparent;
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger::before {
    transform: translateY(8px) rotate(45deg);
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger::after {
    transform: translateY(-8px) rotate(-45deg);
}

/* Hide mobile secondary links on desktop - must be BEFORE media query */
.mobile-secondary-links {
    display: none;
}

/* Hide submenu toggle on desktop */
.submenu-toggle {
    display: none;
}

@media (max-width: 1024px) {
    /* Show submenu toggle on mobile */
    .submenu-toggle {
        display: block;
    }
    .mobile-menu-toggle {
        display: block;
    }

    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 80px 32px 32px;
        gap: 0;
        box-shadow: var(--shadow-lg);
        transition: right var(--transition-base);
        z-index: 100;
    }

    .nav.nav-open {
        right: 0;
    }

    .nav-links {
        display: flex;
        flex-direction: column;
        gap: 0;
        width: 100%;
    }

    .nav-links li {
        border-bottom: 1px solid var(--gray-200);
    }

    .nav-links a {
        display: block;
        padding: 16px 0;
    }

    .nav-phone {
        margin-top: 24px;
        padding: 16px 0;
    }

    body.menu-open {
        overflow: hidden;
    }

    body.menu-open::before {
        content: '';
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 90;
    }

    /* Mobile Submenu Toggle */
    .menu-item-has-children {
        position: relative;
    }

    .menu-item-has-children > a {
        display: inline-block;
    }

    .submenu-toggle {
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        background: none;
        border: none;
        padding: 8px;
        cursor: pointer;
        color: var(--gray-500);
        transition: transform var(--transition-fast), color var(--transition-fast);
    }

    .submenu-toggle:hover {
        color: var(--red-primary);
    }

    .submenu-open > .submenu-toggle {
        transform: translateY(-50%) rotate(180deg);
        color: var(--red-primary);
    }

    .menu-item-has-children .sub-menu {
        display: none;
        padding-left: 16px;
        margin-top: 8px;
    }

    .submenu-open > .sub-menu {
        display: block;
    }

    .sub-menu li {
        margin-bottom: 0;
    }

    .sub-menu a {
        font-size: 14px !important;
        padding: 8px 0 !important;
        color: var(--gray-600) !important;
    }

    .sub-menu a:hover {
        color: var(--red-primary) !important;
    }

    .mobile-secondary-links {
        display: flex;
        flex-direction: column;
        width: 100%;
        margin-top: 24px;
        padding-top: 24px;
        border-top: 1px solid var(--gray-200);
    }

    .mobile-secondary-links a {
        display: block;
        padding: 12px 0;
        color: var(--gray-600);
        font-size: 15px;
        text-decoration: none;
        transition: color var(--transition-fast);
    }

    .mobile-secondary-links a:hover {
        color: var(--red-primary);
    }
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger animation delays for service cards */
.service-card.animate-on-scroll:nth-child(1) { transition-delay: 0.0s; }
.service-card.animate-on-scroll:nth-child(2) { transition-delay: 0.1s; }
.service-card.animate-on-scroll:nth-child(3) { transition-delay: 0.2s; }
.service-card.animate-on-scroll:nth-child(4) { transition-delay: 0.3s; }
.service-card.animate-on-scroll:nth-child(5) { transition-delay: 0.4s; }
.service-card.animate-on-scroll:nth-child(6) { transition-delay: 0.5s; }
.service-card.animate-on-scroll:nth-child(7) { transition-delay: 0.6s; }
.service-card.animate-on-scroll:nth-child(8) { transition-delay: 0.7s; }

/* Testimonial card stagger */
.testimonial-card.animate-on-scroll:nth-child(1) { transition-delay: 0.0s; }
.testimonial-card.animate-on-scroll:nth-child(2) { transition-delay: 0.15s; }
.testimonial-card.animate-on-scroll:nth-child(3) { transition-delay: 0.3s; }

/* Why choose item stagger */
.why-choose-item.animate-on-scroll:nth-child(1) { transition-delay: 0.0s; }
.why-choose-item.animate-on-scroll:nth-child(2) { transition-delay: 0.1s; }
.why-choose-item.animate-on-scroll:nth-child(3) { transition-delay: 0.2s; }
.why-choose-item.animate-on-scroll:nth-child(4) { transition-delay: 0.3s; }

/* Header scroll state */
.header-scrolled {
    box-shadow: var(--shadow-md);
}

/* ============================================
   PAGE CONTENT (for interior pages)
   ============================================ */
.page-content {
    padding: var(--section-padding) 0;
}

.page-header {
    margin-bottom: 40px;
}

.page-title {
    font-size: clamp(32px, 5vw, 48px);
}

.page-body {
    max-width: 800px;
}

.page-body p {
    margin-bottom: 1.5em;
    line-height: 1.8;
}

.page-body h2 {
    margin-top: 2em;
    margin-bottom: 0.5em;
}

.page-body ul,
.page-body ol {
    margin-bottom: 1.5em;
    padding-left: 1.5em;
}

.page-body li {
    margin-bottom: 0.5em;
}

/* ============================================
   FORM VALIDATION STATES
   ============================================ */
.field-error {
    border-color: #e53e3e !important;
}

.field-error:focus {
    box-shadow: 0 0 0 3px rgba(229, 62, 62, 0.2);
}

/* ============================================
   WORDPRESS SPECIFIC
   ============================================ */
.alignleft {
    float: left;
    margin-right: 1.5em;
    margin-bottom: 1em;
}

.alignright {
    float: right;
    margin-left: 1.5em;
    margin-bottom: 1em;
}

.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.wp-caption {
    max-width: 100%;
}

.wp-caption-text {
    font-size: 14px;
    color: var(--gray-500);
    margin-top: 8px;
}

/* Screen reader text */
.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
}

.screen-reader-text:focus {
    background-color: var(--white);
    border-radius: 3px;
    box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
    clip: auto !important;
    color: var(--gray-800);
    display: block;
    font-size: 14px;
    font-weight: bold;
    height: auto;
    left: 5px;
    line-height: normal;
    padding: 15px 23px 14px;
    text-decoration: none;
    top: 5px;
    width: auto;
    z-index: 100000;
}

/* ============================================
   PAGE HERO (Interior Pages)
   ============================================ */
.page-hero {
    position: relative;
    padding: 80px 0;
    background: linear-gradient(135deg, var(--gray-800) 0%, var(--gray-900) 100%);
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1560518883-ce09059eeffa?w=1920&q=80') center/cover no-repeat;
    opacity: 0.15;
}

.page-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26,26,26,0.9) 0%, rgba(26,26,26,0.7) 100%);
}

.page-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.page-hero h1 {
    font-size: clamp(36px, 5vw, 52px);
    color: var(--white);
    margin-bottom: 16px;
}

.page-hero p {
    font-size: 18px;
    color: var(--gray-300);
    line-height: 1.7;
}

.page-hero-accent {
    width: 60px;
    height: 4px;
    background: var(--red-primary);
    margin: 24px auto 0;
    border-radius: 2px;
}

/* ============================================
   ABOUT PAGE - OUR STORY
   ============================================ */
.our-story {
    background: var(--white);
}

.our-story-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.our-story-content h2 {
    font-size: clamp(28px, 4vw, 40px);
    margin-bottom: 24px;
}

.our-story-content h2 span {
    color: var(--red-primary);
}

.our-story-content p {
    font-size: 17px;
    color: var(--gray-600);
    line-height: 1.9;
    margin-bottom: 20px;
}

.our-story-image {
    position: relative;
}

.our-story-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}

.story-quote {
    position: absolute;
    bottom: -30px;
    left: -30px;
    background: var(--red-primary);
    color: var(--white);
    padding: 24px 32px;
    border-radius: 12px;
    max-width: 320px;
    box-shadow: var(--shadow-lg);
}

.story-quote p {
    font-style: italic;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 8px;
}

.story-quote span {
    font-weight: 700;
    font-size: 14px;
}

/* ============================================
   ABOUT PAGE - MEET AMANDA
   ============================================ */
.meet-amanda {
    background: linear-gradient(to right, var(--cream) 0%, var(--cream) 40%, var(--red-primary) 40%, var(--red-dark) 100%);
    position: relative;
    overflow: hidden;
}

.meet-amanda-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.amanda-photo-wrapper {
    position: relative;
    padding: 20px 0;
}

.amanda-photo {
    position: relative;
    z-index: 2;
}

.amanda-photo img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    object-fit: cover;
}

.amanda-photo-frame {
    position: absolute;
    top: 0;
    left: -15px;
    right: 35px;
    bottom: 40px;
    border: 4px solid var(--red-primary);
    border-radius: 16px;
    z-index: 1;
}

.amanda-credentials {
    position: absolute;
    bottom: 0;
    right: 40px;
    background: var(--white);
    padding: 16px 24px;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    z-index: 3;
}

.amanda-credentials p {
    font-size: 13px;
    color: var(--gray-500);
    margin-bottom: 4px;
}

.amanda-credentials span {
    font-weight: 700;
    color: var(--gray-800);
    font-size: 14px;
}

.meet-amanda-content {
    color: var(--white);
    padding-left: 20px;
    padding-right: 20px;
}

.meet-amanda-content h2 {
    font-size: clamp(28px, 4vw, 40px);
    color: var(--white);
    margin-bottom: 8px;
}

.meet-amanda-content .title {
    color: rgba(255,255,255,0.8);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 24px;
}

.meet-amanda-content p {
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255,255,255,0.9);
    margin-bottom: 16px;
}

.amanda-contact {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.amanda-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
    font-size: 15px;
}

.amanda-contact-item svg {
    width: 20px;
    height: 20px;
    fill: var(--white);
    opacity: 0.8;
}

/* ============================================
   ABOUT PAGE - VALUES
   ============================================ */
.values {
    background: var(--white);
}

.values-header {
    text-align: center;
    margin-bottom: 60px;
}

.values-header h2 {
    font-size: clamp(28px, 4vw, 40px);
    margin-bottom: 16px;
}

.values-header p {
    font-size: 18px;
    color: var(--gray-500);
    max-width: 600px;
    margin: 0 auto;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.value-card {
    text-align: center;
    padding: 40px 24px;
    background: var(--gray-100);
    border-radius: 16px;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--red-primary);
    transform: scaleX(0);
    transition: transform var(--transition-base);
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    background: var(--white);
}

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

.value-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--red-light) 0%, var(--red-primary) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.value-icon svg {
    width: 36px;
    height: 36px;
    fill: var(--white);
}

.value-card h3 {
    font-family: var(--font-body);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--gray-800);
}

.value-card p {
    font-size: 15px;
    color: var(--gray-500);
    line-height: 1.7;
}

/* ============================================
   ABOUT PAGE - WHY SACRAMENTO
   ============================================ */
.why-sacramento {
    background: var(--cream);
    position: relative;
}

.why-sacramento-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.why-sacramento-content h2 {
    font-size: clamp(28px, 4vw, 40px);
    margin-bottom: 24px;
}

.why-sacramento-content p {
    font-size: 17px;
    color: var(--gray-600);
    line-height: 1.9;
    margin-bottom: 20px;
}

.service-areas {
    margin-top: 32px;
}

.service-areas h4 {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 16px;
}

.area-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.area-tag {
    background: var(--white);
    color: var(--gray-700);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    border: 1px solid var(--gray-200);
    transition: all var(--transition-fast);
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}

.area-tag:hover {
    background: var(--red-primary);
    color: var(--white);
    border-color: var(--red-primary);
}

.sacramento-map {
    position: relative;
}

.sacramento-map img {
    width: 100%;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}

.map-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(214,69,65,0.1) 0%, rgba(214,69,65,0.05) 100%);
    border-radius: 16px;
}

/* ============================================
   ABOUT PAGE - STATS
   ============================================ */
.stats {
    background: linear-gradient(135deg, var(--red-darker) 0%, var(--red-dark) 100%);
    padding: 60px 0;
}

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

.stat-item {
    color: var(--white);
}

.stat-number {
    font-family: var(--font-display);
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 15px;
    color: rgba(255,255,255,0.8);
    font-weight: 500;
}

/* ============================================
   ABOUT PAGE - CTA
   ============================================ */
.about-cta {
    background: var(--white);
    text-align: center;
}

.about-cta-inner {
    max-width: 700px;
    margin: 0 auto;
}

.about-cta h2 {
    font-size: clamp(28px, 4vw, 40px);
    margin-bottom: 16px;
}

.about-cta p {
    font-size: 18px;
    color: var(--gray-500);
    margin-bottom: 32px;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-secondary {
    background: var(--gray-100);
    color: var(--gray-700);
}

.btn-secondary:hover {
    background: var(--gray-200);
    color: var(--gray-700);
    transform: translateY(-2px);
}

/* ============================================
   ABOUT PAGE - RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .our-story-inner,
    .meet-amanda-inner,
    .why-sacramento-inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .meet-amanda {
        background: linear-gradient(180deg, var(--cream) 0%, var(--cream) 30%, var(--red-primary) 30%, var(--red-dark) 100%);
    }

    .meet-amanda-content {
        padding-left: 0;
        padding-right: 0;
    }

    .amanda-photo-wrapper {
        display: flex;
        justify-content: center;
    }

    .amanda-photo img {
        max-width: 350px;
    }

    .amanda-credentials {
        position: relative;
        right: auto;
        left: auto;
        bottom: auto;
        transform: none;
        margin: 20px auto 0;
        text-align: center;
    }

    .amanda-photo-wrapper {
        flex-direction: column;
        align-items: center;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .story-quote {
        position: relative;
        bottom: auto;
        left: auto;
        margin-top: 24px;
        max-width: 100%;
    }
}

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

    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .amanda-photo-frame {
        display: none;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons .btn {
        width: 100%;
    }
}

/* ============================================
   PAGE HERO (Interior Pages)
   ============================================ */
.page-hero {
    background: linear-gradient(135deg, var(--red-dark) 0%, var(--red-primary) 100%);
    padding: 80px 0 60px;
    color: var(--white);
    text-align: center;
}

.page-hero-content h1 {
    font-size: clamp(36px, 5vw, 56px);
    margin-bottom: 16px;
    color: var(--white);
}

.page-hero-content p {
    font-size: clamp(16px, 2vw, 20px);
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.page-hero-accent {
    width: 60px;
    height: 4px;
    background: var(--gold);
    margin: 24px auto 0;
    border-radius: 2px;
}

/* ============================================
   PRICING PAGE
   ============================================ */
.pricing-intro {
    background: var(--white);
    text-align: center;
}

.pricing-intro-content {
    max-width: 700px;
    margin: 0 auto;
}

.pricing-intro-content h2 {
    font-size: clamp(28px, 4vw, 40px);
    margin-bottom: 16px;
}

.pricing-intro-content h2 span {
    color: var(--red-primary);
}

.pricing-cards {
    background: var(--cream);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    align-items: stretch;
}

.pricing-card {
    background: var(--white);
    border-radius: 16px;
    padding: 32px;
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

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

.pricing-card-featured {
    border: 3px solid var(--red-primary);
    transform: scale(1.05);
}

.pricing-card-featured:hover {
    transform: scale(1.05) translateY(-4px);
}

.pricing-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--red-primary);
    color: var(--white);
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
}

.pricing-card-header {
    text-align: center;
    margin-bottom: 24px;
}

.pricing-card-header h3 {
    font-size: 24px;
    margin-bottom: 4px;
    color: var(--gray-900);
}

.pricing-subtitle {
    color: var(--gray-500);
    font-size: 14px;
}

.pricing-card-price {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
    margin-bottom: 24px;
}

.price-amount {
    display: block;
    font-size: 48px;
    font-weight: 700;
    color: var(--red-primary);
    line-height: 1;
}

.price-unit {
    display: block;
    font-size: 14px;
    color: var(--gray-500);
    margin-top: 4px;
}

.pricing-card-description {
    margin-bottom: 24px;
}

.pricing-card-description p {
    color: var(--gray-600);
    font-size: 15px;
}

.pricing-features {
    list-style: none;
    margin-bottom: 32px;
    flex-grow: 1;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 8px 0;
    font-size: 15px;
    color: var(--gray-700);
}

.pricing-features .check-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: var(--red-primary);
    margin-top: 2px;
}

.pricing-card-cta {
    text-align: center;
}

.pricing-card-cta .btn {
    width: 100%;
}

/* What's Included */
.whats-included {
    background: var(--white);
}

.whats-included-header {
    text-align: center;
    margin-bottom: 48px;
}

.whats-included-header h2 {
    font-size: clamp(28px, 4vw, 36px);
    margin-bottom: 12px;
}

.whats-included-header h2 span {
    color: var(--red-primary);
}

.included-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.included-item {
    text-align: center;
    padding: 24px;
}

.included-icon {
    width: 60px;
    height: 60px;
    background: var(--cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.included-icon svg {
    width: 28px;
    height: 28px;
    fill: var(--red-primary);
}

.included-item h4 {
    font-size: 18px;
    margin-bottom: 8px;
}

.included-item p {
    color: var(--gray-600);
    font-size: 15px;
}

/* Pricing FAQ */
.pricing-faq {
    background: var(--cream);
}

.faq-header {
    text-align: center;
    margin-bottom: 48px;
}

.faq-header h2 {
    font-size: clamp(28px, 4vw, 36px);
    margin-bottom: 12px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-faq .faq-item {
    background: var(--white);
    padding: 24px 28px;
    border-radius: 12px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.pricing-faq .faq-item h4 {
    font-size: 18px;
    margin-bottom: 12px;
    color: var(--gray-900);
}

.pricing-faq .faq-item p {
    color: var(--gray-600);
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
    flex-grow: 1;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-options {
    background: var(--white);
}

.contact-options-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.contact-option {
    background: var(--cream);
    padding: 40px 32px;
    border-radius: 16px;
    text-align: center;
}

.contact-option-icon {
    width: 70px;
    height: 70px;
    background: var(--red-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.contact-option-icon svg {
    width: 32px;
    height: 32px;
    fill: var(--white);
}

.contact-option h3 {
    font-size: 22px;
    margin-bottom: 8px;
}

.contact-value {
    font-size: 18px;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 4px;
}

.contact-note {
    font-size: 14px;
    color: var(--gray-500);
    margin-bottom: 20px;
}

.contact-option .btn-outline {
    color: var(--red-primary);
    border-color: var(--red-primary);
}

.contact-option .btn-outline:hover {
    background: var(--red-primary);
    color: var(--white);
    border-color: var(--red-primary);
}

.contact-map {
    background: var(--gray-200);
}

.map-container {
    width: 100%;
    height: 400px;
}

.map-container iframe {
    display: block;
}

.contact-service-area {
    background: var(--cream);
    text-align: center;
}

.service-area-content h2 {
    font-size: clamp(28px, 4vw, 36px);
    margin-bottom: 12px;
}

.service-area-content h2 span {
    color: var(--red-primary);
}

.area-tags-large {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin: 32px 0;
}

.area-tags-large .area-tag {
    background: var(--white);
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 15px;
    font-weight: 500;
    color: var(--gray-700);
    border: 1px solid var(--gray-200);
    transition: all var(--transition-fast);
    text-decoration: none;
    display: inline-block;
}

.area-tags-large .area-tag:hover {
    background: var(--red-primary);
    color: var(--white);
    border-color: var(--red-primary);
}

.service-area-note {
    color: var(--gray-600);
    font-size: 15px;
    max-width: 500px;
    margin: 0 auto;
}

/* ============================================
   OWNERS PAGE
   ============================================ */
.owner-benefits {
    background: var(--white);
}

.owner-benefits-header {
    text-align: center;
    margin-bottom: 48px;
}

.owner-benefits-header h2 {
    font-size: clamp(28px, 4vw, 40px);
    margin-bottom: 12px;
}

.owner-benefits-header h2 span {
    color: var(--red-primary);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.benefit-card {
    background: var(--cream);
    padding: 32px;
    border-radius: 16px;
}

.benefit-icon {
    width: 56px;
    height: 56px;
    background: var(--red-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.benefit-icon svg {
    width: 28px;
    height: 28px;
    fill: var(--white);
}

.benefit-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.benefit-card p {
    color: var(--gray-600);
    line-height: 1.6;
}

/* What We Do Section */
.what-we-do {
    background: var(--cream);
}

.what-we-do-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.what-we-do-content h2 {
    font-size: clamp(28px, 4vw, 36px);
    margin-bottom: 16px;
}

.what-we-do-content h2 span {
    color: var(--red-primary);
}

.services-list {
    list-style: none;
    margin-top: 32px;
}

.services-list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--gray-200);
}

.services-list li:last-child {
    border-bottom: none;
}

.services-list .check-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    color: var(--red-primary);
    margin-top: 2px;
}

.services-list strong {
    display: block;
    font-size: 16px;
    margin-bottom: 4px;
}

.services-list span {
    color: var(--gray-600);
    font-size: 14px;
}

.what-we-do-image {
    position: relative;
}

.what-we-do-image img {
    width: 100%;
    border-radius: 16px;
}

.image-accent {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--red-primary);
    border-radius: 16px;
    z-index: -1;
}

/* Owner Portal */
.owner-portal {
    background: var(--white);
}

.owner-portal-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.owner-portal-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}

.owner-portal-content h2 {
    font-size: clamp(28px, 4vw, 36px);
    margin-bottom: 16px;
}

.portal-features {
    list-style: none;
    margin: 24px 0 32px;
}

.portal-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 16px;
}

.portal-features .check-icon {
    width: 22px;
    height: 22px;
    color: var(--red-primary);
}

/* Owner Resources */
.owner-resources {
    background: var(--gray-100);
}

.owner-resources-header {
    text-align: center;
    margin-bottom: 48px;
}

.owner-resources-header h2 {
    font-size: clamp(28px, 4vw, 36px);
    margin-bottom: 12px;
}

.owner-resources-header p {
    font-size: 18px;
    color: var(--gray-600);
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.resource-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px;
    background: var(--white);
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.resource-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.resource-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: linear-gradient(135deg, var(--red-light) 0%, #fde8eb 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.resource-icon svg {
    width: 24px;
    height: 24px;
    fill: var(--red-primary);
}

.resource-content {
    flex: 1;
}

.resource-content h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 4px;
}

.resource-content p {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.4;
}

.resource-download {
    font-size: 13px;
    font-weight: 600;
    color: var(--red-primary);
    white-space: nowrap;
}

/* Owner FAQ */
.owner-faq {
    background: var(--cream);
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    color: var(--gray-900);
    transition: background var(--transition-fast);
}

.faq-question:hover {
    background: var(--cream);
}

.faq-icon {
    width: 24px;
    height: 24px;
    fill: var(--red-primary);
    flex-shrink: 0;
    transition: transform var(--transition-fast);
}

.faq-answer {
    display: none;
    padding: 0 24px 20px;
}

.faq-answer p {
    color: var(--gray-600);
    line-height: 1.7;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-item.active .faq-answer {
    display: block;
}

/* ============================================
   TENANTS PAGE
   ============================================ */
.tenant-quick-links {
    background: var(--white);
}

.quick-links-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.quick-link-card {
    background: var(--cream);
    padding: 32px 24px;
    border-radius: 16px;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    transition: all var(--transition-base);
    position: relative;
}

.quick-link-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    background: var(--white);
}

.quick-link-icon {
    width: 56px;
    height: 56px;
    background: var(--red-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.quick-link-icon svg {
    width: 28px;
    height: 28px;
    fill: var(--white);
}

.quick-link-card h3 {
    font-size: 20px;
    margin-bottom: 8px;
}

.quick-link-card p {
    color: var(--gray-600);
    font-size: 14px;
    flex-grow: 1;
}

.quick-link-arrow {
    position: absolute;
    top: 32px;
    right: 24px;
    font-size: 24px;
    color: var(--red-primary);
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.quick-link-card:hover .quick-link-arrow {
    opacity: 1;
}

/* Application Process */
.application-process {
    background: var(--cream);
}

.process-header {
    text-align: center;
    margin-bottom: 48px;
}

.process-header h2 {
    font-size: clamp(28px, 4vw, 36px);
    margin-bottom: 12px;
}

.process-header h2 span {
    color: var(--red-primary);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.process-step {
    text-align: center;
    position: relative;
}

.process-step::after {
    content: '';
    position: absolute;
    top: 35px;
    right: -12px;
    width: 24px;
    height: 2px;
    background: var(--gray-300);
}

.process-step:last-child::after {
    display: none;
}

.step-number {
    width: 70px;
    height: 70px;
    background: var(--red-primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.process-step h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.process-step p {
    color: var(--gray-600);
    font-size: 14px;
}

.process-cta {
    text-align: center;
    margin-top: 48px;
}

/* Tenant FAQ */
.tenant-faq {
    background: var(--white);
}

/* Tenant Contact */
.tenant-contact {
    background: var(--cream);
}

.tenant-contact-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.tenant-contact-content h2 {
    font-size: clamp(28px, 4vw, 36px);
    margin-bottom: 16px;
}

.contact-methods {
    margin-top: 24px;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--gray-200);
}

.contact-method:last-child {
    border-bottom: none;
}

.contact-method svg {
    width: 24px;
    height: 24px;
    fill: var(--red-primary);
    flex-shrink: 0;
}

.contact-method strong {
    display: block;
    font-size: 14px;
    color: var(--gray-500);
    margin-bottom: 4px;
}

.contact-method p {
    margin: 0;
    font-size: 16px;
}

.emergency-notice {
    background: var(--red-dark);
    color: var(--white);
    padding: 32px;
    border-radius: 16px;
}

.emergency-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.emergency-icon svg {
    width: 28px;
    height: 28px;
    fill: var(--white);
}

.emergency-notice h4 {
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--white);
}

.emergency-notice p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    line-height: 1.6;
}

/* ============================================
   REALTORS PAGE
   ============================================ */
.realtor-intro {
    background: var(--white);
}

.realtor-intro-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.realtor-intro-content h2 {
    font-size: clamp(28px, 4vw, 40px);
    margin-bottom: 20px;
}

.realtor-intro-content h2 span {
    color: var(--red-primary);
}

.realtor-intro-content p {
    margin-bottom: 16px;
    line-height: 1.7;
}

.realtor-intro-image img {
    width: 100%;
    border-radius: 16px;
}

/* How It Works */
.how-it-works {
    background: var(--cream);
}

.how-it-works-header {
    text-align: center;
    margin-bottom: 48px;
}

.how-it-works-header h2 {
    font-size: clamp(28px, 4vw, 36px);
    margin-bottom: 12px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.step-card {
    background: var(--white);
    padding: 32px 24px;
    border-radius: 16px;
    text-align: center;
}

.step-card .step-number {
    width: 60px;
    height: 60px;
    font-size: 24px;
}

.step-card h3 {
    font-size: 18px;
    margin-bottom: 12px;
}

.step-card p {
    color: var(--gray-600);
    font-size: 14px;
}

/* Realtor Benefits */
.realtor-benefits {
    background: var(--white);
}

.benefits-header {
    text-align: center;
    margin-bottom: 48px;
}

.benefits-header h2 {
    font-size: clamp(28px, 4vw, 36px);
}

.benefit-item {
    background: var(--cream);
    padding: 24px;
    border-radius: 12px;
    text-align: center;
}

.benefit-item .benefit-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 16px;
}

.benefit-item h4 {
    font-size: 16px;
    margin-bottom: 8px;
}

.benefit-item p {
    color: var(--gray-600);
    font-size: 14px;
}

/* Referral Form */
.referral-form-section {
    background: var(--cream);
}

.referral-form-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.referral-form-content h2 {
    font-size: clamp(28px, 4vw, 36px);
    margin-bottom: 16px;
}

.referral-guarantee {
    background: var(--white);
    padding: 24px;
    border-radius: 12px;
    display: flex;
    gap: 20px;
    margin-top: 32px;
    border: 1px solid var(--gray-200);
}

.referral-guarantee svg {
    width: 40px;
    height: 40px;
    fill: var(--red-primary);
    flex-shrink: 0;
}

.referral-guarantee h4 {
    font-size: 16px;
    margin-bottom: 8px;
}

.referral-guarantee p {
    color: var(--gray-600);
    font-size: 14px;
    margin: 0;
}

.referral-form-wrapper {
    background: var(--white);
    padding: 32px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
}

.referral-form h3 {
    font-size: 18px;
    margin: 24px 0 16px;
    padding-top: 24px;
    border-top: 1px solid var(--gray-200);
}

.referral-form h3:first-of-type {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

.btn-full {
    width: 100%;
}

/* Realtor Contact */
.realtor-contact {
    background: var(--red-dark);
    color: var(--white);
    text-align: center;
}

.realtor-contact-inner h2 {
    font-size: clamp(28px, 4vw, 36px);
    margin-bottom: 12px;
    color: var(--white);
}

.realtor-contact-inner p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 24px;
}

.contact-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
}

/* ============================================
   APPLICATION PROCESS PAGE
   ============================================ */
.app-requirements {
    background: var(--white);
}

.requirements-header {
    text-align: center;
    margin-bottom: 48px;
}

.requirements-header h2 {
    font-size: clamp(28px, 4vw, 36px);
    margin-bottom: 12px;
}

.requirements-header h2 span {
    color: var(--red-primary);
}

.requirements-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.requirement-card {
    background: var(--cream);
    padding: 32px 24px;
    border-radius: 16px;
    text-align: center;
}

.requirement-icon {
    width: 60px;
    height: 60px;
    background: var(--red-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.requirement-icon svg {
    width: 28px;
    height: 28px;
    fill: var(--white);
}

.requirement-card h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.requirement-card p {
    color: var(--gray-600);
    font-size: 14px;
}

/* Qualification Criteria */
.qualification-criteria {
    background: var(--cream);
}

.criteria-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.criteria-content h2 {
    font-size: clamp(28px, 4vw, 36px);
    margin-bottom: 16px;
}

.criteria-list {
    list-style: none;
    margin-top: 24px;
}

.criteria-list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--gray-200);
}

.criteria-list .check-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    color: var(--red-primary);
}

.criteria-list strong {
    display: block;
    margin-bottom: 4px;
}

.criteria-list span {
    color: var(--gray-600);
    font-size: 14px;
}

.criteria-note {
    background: var(--white);
    padding: 24px;
    border-radius: 12px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.note-icon {
    width: 50px;
    height: 50px;
    background: var(--cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.note-icon svg {
    width: 28px;
    height: 28px;
    fill: var(--red-primary);
}

.criteria-note h4 {
    font-size: 16px;
    margin-bottom: 8px;
}

.criteria-note p {
    color: var(--gray-600);
    font-size: 14px;
    margin: 0;
}

/* Application Steps */
.application-steps {
    background: var(--white);
}

.steps-header {
    text-align: center;
    margin-bottom: 48px;
}

.steps-header h2 {
    font-size: clamp(28px, 4vw, 36px);
}

.steps-timeline {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
}

.steps-timeline::before {
    content: '';
    position: absolute;
    left: 35px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--gray-200);
}

.timeline-step {
    display: flex;
    gap: 24px;
    margin-bottom: 32px;
    position: relative;
}

.timeline-step:last-child {
    margin-bottom: 0;
}

.step-marker {
    width: 70px;
    height: 70px;
    background: var(--red-primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.step-content {
    padding-top: 12px;
}

.step-content h3 {
    font-size: 20px;
    margin-bottom: 8px;
}

.step-content p {
    color: var(--gray-600);
    margin-bottom: 16px;
}

.btn-sm {
    padding: 10px 20px;
    font-size: 14px;
}

/* Move-In Costs */
.move-in-costs {
    background: var(--cream);
}

.costs-inner {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.costs-inner h2 {
    font-size: clamp(28px, 4vw, 36px);
    margin-bottom: 12px;
}

.costs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin: 32px 0;
}

.cost-item {
    background: var(--white);
    padding: 24px;
    border-radius: 12px;
}

.cost-item h4 {
    font-size: 18px;
    margin-bottom: 8px;
}

.cost-item p {
    color: var(--gray-600);
    font-size: 14px;
    margin: 0;
}

.costs-note {
    background: var(--white);
    padding: 20px;
    border-radius: 12px;
    text-align: left;
}

.costs-note p {
    color: var(--gray-600);
    font-size: 14px;
    margin: 0;
}

/* App FAQ */
.app-faq {
    background: var(--white);
}

/* App CTA */
.app-cta {
    background: var(--red-dark);
    color: var(--white);
    text-align: center;
}

.app-cta-inner h2 {
    font-size: clamp(28px, 4vw, 36px);
    margin-bottom: 12px;
    color: var(--white);
}

.app-cta-inner p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 24px;
}

/* ============================================
   RENTAL SEARCH PAGE
   ============================================ */
.rental-search-section {
    background: var(--white);
}

.search-intro {
    text-align: center;
    margin-bottom: 48px;
}

.search-intro h2 {
    font-size: clamp(28px, 4vw, 36px);
    margin-bottom: 12px;
}

.search-intro h2 span {
    color: var(--red-primary);
}

.listings-embed {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 24px;
}

.listings-embed iframe {
    display: block;
    min-height: 800px;
}

.listings-note {
    text-align: center;
    padding: 16px;
    color: var(--gray-600);
    font-size: 14px;
}

.listings-note a {
    color: var(--red-primary);
    text-decoration: underline;
}

.listings-note a:hover {
    color: var(--red-dark);
}

.no-listings {
    text-align: center;
    padding: 60px 32px;
    background: var(--cream);
    border-radius: 16px;
}

.no-listings-icon {
    width: 80px;
    height: 80px;
    background: var(--gray-200);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.no-listings-icon svg {
    width: 40px;
    height: 40px;
    fill: var(--gray-400);
}

.no-listings h3 {
    font-size: 24px;
    margin-bottom: 12px;
}

.no-listings p {
    color: var(--gray-600);
    max-width: 500px;
    margin: 0 auto 16px;
}

.notify-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 24px;
}

.notify-or {
    color: var(--gray-500);
}

/* Search Tips */
.search-tips {
    background: var(--cream);
}

.tips-header {
    text-align: center;
    margin-bottom: 48px;
}

.tips-header h2 {
    font-size: clamp(28px, 4vw, 36px);
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.tip-card {
    background: var(--white);
    padding: 32px 24px;
    border-radius: 16px;
    text-align: center;
}

.tip-icon {
    width: 56px;
    height: 56px;
    background: var(--red-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.tip-icon svg {
    width: 28px;
    height: 28px;
    fill: var(--white);
}

.tip-card h4 {
    font-size: 18px;
    margin-bottom: 12px;
}

.tip-card p {
    color: var(--gray-600);
    font-size: 14px;
}

/* Search Areas */
.search-areas {
    background: var(--white);
}

.areas-content {
    text-align: center;
}

.areas-content h2 {
    font-size: clamp(28px, 4vw, 36px);
    margin-bottom: 12px;
}

/* Search CTA */
.search-cta {
    background: var(--red-dark);
    color: var(--white);
    text-align: center;
}

.search-cta-inner h2 {
    font-size: clamp(28px, 4vw, 36px);
    margin-bottom: 12px;
    color: var(--white);
}

.search-cta-inner p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 24px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ============================================
   PAY RENT PAGE
   ============================================ */
.payment-portal {
    background: var(--white);
}

.portal-card {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    background: var(--cream);
    padding: 48px 40px;
    border-radius: 24px;
}

.portal-icon {
    width: 80px;
    height: 80px;
    background: var(--red-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.portal-icon svg {
    width: 40px;
    height: 40px;
    fill: var(--white);
}

.portal-card h2 {
    font-size: clamp(28px, 4vw, 36px);
    margin-bottom: 16px;
}

.portal-card p {
    color: var(--gray-600);
    margin-bottom: 24px;
}

.btn-lg {
    padding: 16px 40px;
    font-size: 18px;
}

.portal-note {
    font-size: 14px;
    color: var(--gray-500);
    margin-top: 16px;
    margin-bottom: 0;
}

/* Payment Methods */
.payment-methods {
    background: var(--cream);
}

.methods-header {
    text-align: center;
    margin-bottom: 48px;
}

.methods-header h2 {
    font-size: clamp(28px, 4vw, 36px);
    margin-bottom: 12px;
}

.methods-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.method-card {
    background: var(--white);
    padding: 32px;
    border-radius: 16px;
    text-align: center;
    position: relative;
}

.method-featured {
    border: 2px solid var(--red-primary);
}

.method-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--red-primary);
    color: var(--white);
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}

.method-icon {
    width: 60px;
    height: 60px;
    background: var(--cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.method-icon svg {
    width: 28px;
    height: 28px;
    fill: var(--red-primary);
}

.method-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.method-card p {
    color: var(--gray-600);
    font-size: 14px;
}

.method-benefits {
    list-style: none;
    text-align: left;
    margin: 24px 0;
}

.method-benefits li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 14px;
}

.method-benefits .check-icon {
    width: 18px;
    height: 18px;
    color: var(--red-primary);
}

.method-details {
    text-align: left;
    background: var(--cream);
    padding: 16px;
    border-radius: 8px;
    margin: 20px 0;
}

.method-details p {
    margin: 0 0 12px;
}

.method-details p:last-child {
    margin-bottom: 0;
}

.method-note {
    font-size: 13px;
    color: var(--gray-500);
    font-style: italic;
}

.option-number,
.option-email {
    font-weight: 700;
    font-size: 18px;
    color: var(--red-primary);
    margin: 16px 0;
}

/* Payment Info */
.payment-info {
    background: var(--white);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.info-card {
    background: var(--cream);
    padding: 32px;
    border-radius: 16px;
    text-align: center;
}

.info-icon {
    width: 56px;
    height: 56px;
    background: var(--red-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.info-icon svg {
    width: 28px;
    height: 28px;
    fill: var(--white);
}

.info-card h3 {
    font-size: 18px;
    margin-bottom: 12px;
}

.info-card p {
    color: var(--gray-600);
    font-size: 14px;
}

/* Autopay CTA */
.autopay-cta {
    background: var(--cream);
}

.autopay-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
    max-width: 900px;
    margin: 0 auto;
}

.autopay-content h2 {
    font-size: clamp(24px, 4vw, 32px);
    margin-bottom: 16px;
}

.autopay-benefits {
    list-style: none;
    display: flex;
    gap: 24px;
    margin-top: 16px;
}

.autopay-benefits li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
}

.autopay-benefits .check-icon {
    width: 20px;
    height: 20px;
    color: var(--red-primary);
}

/* Payment Help */
.payment-help {
    background: var(--white);
    text-align: center;
}

.help-inner h2 {
    font-size: clamp(24px, 4vw, 32px);
    margin-bottom: 12px;
}

.help-inner p {
    color: var(--gray-600);
    margin-bottom: 24px;
}

.help-contact {
    display: flex;
    gap: 16px;
    justify-content: center;
}

/* ============================================
   REPAIR REQUEST PAGE
   ============================================ */
.emergency-notice-section {
    background: var(--white);
    padding: 40px 0;
}

.emergency-box {
    background: var(--red-dark);
    color: var(--white);
    padding: 32px 40px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 24px;
}

.emergency-box .emergency-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.emergency-box .emergency-icon svg {
    width: 36px;
    height: 36px;
    fill: var(--white);
}

.emergency-content h3 {
    font-size: 22px;
    margin-bottom: 8px;
    color: var(--white);
}

.emergency-content p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 16px;
}

/* Request Options */
.request-options {
    background: var(--cream);
}

.options-header {
    text-align: center;
    margin-bottom: 48px;
}

.options-header h2 {
    font-size: clamp(28px, 4vw, 36px);
    margin-bottom: 12px;
}

.options-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.option-card {
    background: var(--white);
    padding: 32px;
    border-radius: 16px;
    text-align: center;
    position: relative;
}

.option-featured {
    border: 2px solid var(--red-primary);
}

.option-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--red-primary);
    color: var(--white);
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}

.option-icon {
    width: 60px;
    height: 60px;
    background: var(--cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.option-icon svg {
    width: 28px;
    height: 28px;
    fill: var(--red-primary);
}

.option-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.option-card > p {
    color: var(--gray-600);
    font-size: 14px;
}

.option-benefits {
    list-style: none;
    text-align: left;
    margin: 20px 0;
}

.option-benefits li {
    padding: 6px 0;
    font-size: 14px;
    color: var(--gray-600);
}

/* Request Tips */
.request-tips {
    background: var(--white);
}

.tips-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.tips-content h2 {
    font-size: clamp(28px, 4vw, 36px);
    margin-bottom: 16px;
}

.tips-list {
    list-style: none;
    margin-top: 24px;
}

.tips-list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--gray-200);
}

.tips-list .check-icon {
    width: 24px;
    height: 24px;
    color: var(--red-primary);
    flex-shrink: 0;
}

.tips-list strong {
    display: block;
    margin-bottom: 4px;
}

.tips-list span {
    color: var(--gray-600);
    font-size: 14px;
}

.tips-image img {
    width: 100%;
    border-radius: 16px;
}

/* Emergency Types */
.emergency-types {
    background: var(--cream);
}

.emergency-types-header {
    text-align: center;
    margin-bottom: 48px;
}

.emergency-types-header h2 {
    font-size: clamp(28px, 4vw, 36px);
    margin-bottom: 12px;
}

.emergency-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.emergency-column {
    background: var(--white);
    padding: 32px;
    border-radius: 16px;
}

.emergency-column.emergency {
    border: 2px solid var(--red-primary);
}

.emergency-column.non-emergency {
    border: 2px solid var(--gray-300);
}

.emergency-column h3 {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 20px;
    margin-bottom: 20px;
}

.emergency-column h3 svg {
    width: 28px;
    height: 28px;
}

.emergency-column.emergency h3 {
    color: var(--red-primary);
}

.emergency-column.emergency h3 svg {
    fill: var(--red-primary);
}

.emergency-column.non-emergency h3 {
    color: var(--gray-700);
}

.emergency-column.non-emergency h3 svg {
    fill: var(--gray-500);
}

.emergency-column ul {
    list-style: none;
    margin-bottom: 24px;
}

.emergency-column li {
    padding: 8px 0;
    color: var(--gray-600);
    font-size: 15px;
    border-bottom: 1px solid var(--gray-100);
}

/* Expect Section */
.expect-section {
    background: var(--white);
}

.expect-header {
    text-align: center;
    margin-bottom: 48px;
}

.expect-header h2 {
    font-size: clamp(28px, 4vw, 36px);
}

.expect-timeline {
    max-width: 600px;
    margin: 0 auto;
}

.timeline-item {
    display: flex;
    gap: 20px;
    margin-bottom: 24px;
}

.timeline-marker {
    width: 50px;
    height: 50px;
    background: var(--red-primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    flex-shrink: 0;
}

.timeline-content h4 {
    font-size: 18px;
    margin-bottom: 6px;
}

.timeline-content p {
    color: var(--gray-600);
    font-size: 14px;
    margin: 0;
}

/* ============================================
   MOVE IN/OUT PAGE
   ============================================ */
.move-in-section,
.move-out-section {
    background: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-header h2 {
    font-size: clamp(28px, 4vw, 40px);
    margin-bottom: 12px;
}

.section-header h2 span {
    color: var(--red-primary);
}

.move-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.move-checklist {
    background: var(--cream);
    padding: 32px;
    border-radius: 16px;
}

.move-checklist h3 {
    font-size: 20px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--red-primary);
}

.checklist {
    list-style: none;
}

.checklist li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--gray-200);
}

.checklist li:last-child {
    border-bottom: none;
}

.checklist .check-icon {
    width: 22px;
    height: 22px;
    color: var(--red-primary);
    flex-shrink: 0;
    margin-top: 2px;
}

.checklist span {
    font-size: 15px;
    color: var(--gray-700);
}

.section-divider {
    padding: 40px 0;
}

.section-divider hr {
    border: none;
    border-top: 2px solid var(--gray-200);
}

/* Notice Box */
.notice-box {
    background: var(--cream);
    padding: 32px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 48px;
    border-left: 4px solid var(--red-primary);
}

.notice-icon {
    width: 60px;
    height: 60px;
    background: var(--red-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.notice-icon svg {
    width: 30px;
    height: 30px;
    fill: var(--white);
}

.notice-content h3 {
    font-size: 20px;
    margin-bottom: 8px;
}

.notice-content p {
    color: var(--gray-600);
    margin: 0;
}

/* Deposit Section */
.deposit-section {
    background: var(--cream);
}

.deposit-inner {
    max-width: 800px;
    margin: 0 auto;
}

.deposit-content h2 {
    font-size: clamp(28px, 4vw, 36px);
    margin-bottom: 16px;
    text-align: center;
}

.deposit-content > p {
    text-align: center;
    margin-bottom: 32px;
}

.deposit-tips {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 32px;
}

.deposit-tip {
    background: var(--white);
    padding: 24px;
    border-radius: 12px;
    text-align: center;
}

.deposit-tip h4 {
    font-size: 18px;
    margin-bottom: 8px;
}

.deposit-tip p {
    color: var(--gray-600);
    font-size: 14px;
    margin: 0;
}

.deposit-timeline {
    background: var(--white);
    padding: 24px;
    border-radius: 12px;
    text-align: center;
}

.deposit-timeline p {
    color: var(--gray-700);
    margin: 0;
}

/* Deductions Section */
.deductions-section {
    background: var(--white);
}

.deductions-header {
    text-align: center;
    margin-bottom: 48px;
}

.deductions-header h2 {
    font-size: clamp(28px, 4vw, 36px);
    margin-bottom: 12px;
}

.deductions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.deduction-item {
    background: var(--cream);
    padding: 24px;
    border-radius: 12px;
    text-align: center;
}

.deduction-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.deduction-avoid {
    background: #fef2f2;
}

.deduction-avoid svg {
    width: 24px;
    height: 24px;
    fill: #dc2626;
}

.deduction-item h4 {
    font-size: 16px;
    margin-bottom: 8px;
}

.deduction-item p {
    color: var(--gray-600);
    font-size: 14px;
    margin: 0;
}

/* Move Contact */
.move-contact {
    background: var(--red-dark);
    color: var(--white);
    text-align: center;
}

.move-contact-inner h2 {
    font-size: clamp(28px, 4vw, 36px);
    margin-bottom: 12px;
    color: var(--white);
}

.move-contact-inner p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 24px;
}

/* ============================================
   RESPONSIVE - NEW PAGES
   ============================================ */
@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .pricing-card-featured {
        transform: none;
    }

    .pricing-card-featured:hover {
        transform: translateY(-4px);
    }

    .included-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-options-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .what-we-do-inner,
    .owner-portal-inner,
    .realtor-intro-inner,
    .referral-form-inner,
    .criteria-inner,
    .tips-inner,
    .tenant-contact-inner {
        grid-template-columns: 1fr;
    }

    .quick-links-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-steps,
    .steps-grid,
    .requirements-grid,
    .tips-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-step::after {
        display: none;
    }

    .methods-grid,
    .options-grid,
    .info-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .emergency-grid {
        grid-template-columns: 1fr;
    }

    .move-content {
        grid-template-columns: 1fr;
    }

    .deposit-tips,
    .deductions-grid,
    .costs-grid {
        grid-template-columns: 1fr;
    }

    .autopay-inner {
        flex-direction: column;
        text-align: center;
    }

    .autopay-benefits {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .page-hero {
        padding: 60px 0 40px;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .quick-links-grid,
    .process-steps,
    .steps-grid,
    .requirements-grid,
    .tips-grid {
        grid-template-columns: 1fr;
    }

    .emergency-box {
        flex-direction: column;
        text-align: center;
    }

    .notice-box {
        flex-direction: column;
        text-align: center;
    }

    .steps-timeline::before {
        left: 20px;
    }

    .step-marker,
    .timeline-marker {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .contact-actions,
    .help-contact,
    .notify-actions {
        flex-direction: column;
    }

    .notify-or {
        display: none;
    }

    .autopay-benefits {
        flex-direction: column;
        gap: 12px;
    }
}

/* ============================================
   BLOG ARCHIVE
   ============================================ */
.blog-archive {
    background: var(--cream);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.blog-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.blog-card-image {
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--gray-200);
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-normal);
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.05);
}

.blog-card-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--gray-200) 0%, var(--gray-300) 100%);
}

.blog-card-placeholder svg {
    width: 48px;
    height: 48px;
    fill: var(--gray-400);
}

.blog-card-content {
    padding: 24px;
}

.blog-card-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 13px;
}

.blog-date {
    color: var(--gray-500);
}

.blog-category {
    background: var(--red-primary);
    color: var(--white);
    padding: 4px 10px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-card-title {
    font-size: 20px;
    line-height: 1.3;
    margin-bottom: 12px;
}

.blog-card-title a {
    color: var(--gray-900);
    text-decoration: none;
    transition: color var(--transition-fast);
}

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

.blog-card-excerpt {
    color: var(--gray-600);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 16px;
}

.blog-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--red-primary);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: gap var(--transition-fast);
}

.blog-card-link:hover {
    gap: 10px;
}

.blog-card-link svg {
    transition: transform var(--transition-fast);
}

.blog-card-link:hover svg {
    transform: translateX(2px);
}

/* Blog Pagination */
.blog-pagination {
    margin-top: 48px;
    display: flex;
    justify-content: center;
}

.blog-pagination .nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.blog-pagination a,
.blog-pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    padding: 0 16px;
    background: var(--white);
    color: var(--gray-700);
    border-radius: 8px;
    font-weight: 500;
    text-decoration: none;
    transition: all var(--transition-fast);
}

.blog-pagination a:hover {
    background: var(--red-primary);
    color: var(--white);
}

.blog-pagination .current {
    background: var(--red-primary);
    color: var(--white);
}

.blog-pagination .prev,
.blog-pagination .next {
    gap: 6px;
}

.no-posts {
    text-align: center;
    padding: 80px 32px;
    background: var(--white);
    border-radius: 16px;
}

.no-posts h2 {
    margin-bottom: 12px;
}

.no-posts p {
    color: var(--gray-600);
}

/* Blog Responsive */
@media (max-width: 1024px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .blog-card-content {
        padding: 20px;
    }

    .blog-card-title {
        font-size: 18px;
    }
}

/* ============================================
   SINGLE POST
   ============================================ */
.single-post .post-header {
    background: linear-gradient(135deg, var(--red-dark) 0%, var(--red-primary) 100%);
    padding: 100px 0 60px;
    color: var(--white);
}

.post-header-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.post-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 20px;
    font-size: 14px;
}

.post-date {
    opacity: 0.8;
}

.post-category {
    background: rgba(255, 255, 255, 0.2);
    padding: 4px 12px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.post-title {
    font-size: clamp(32px, 5vw, 48px);
    line-height: 1.2;
    margin-bottom: 16px;
    color: var(--white);
}

.post-excerpt {
    font-size: 18px;
    opacity: 0.9;
    line-height: 1.6;
}

.post-featured-image {
    margin-top: -40px;
    margin-bottom: 40px;
}

.post-featured-image img {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    display: block;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.post-content {
    background: var(--white);
}

.post-content-inner {
    max-width: 750px;
    margin: 0 auto;
    font-size: 17px;
    line-height: 1.8;
    color: var(--gray-700);
}

.post-content-inner h2 {
    font-size: 28px;
    margin: 48px 0 20px;
    color: var(--gray-900);
}

.post-content-inner h3 {
    font-size: 22px;
    margin: 36px 0 16px;
    color: var(--gray-900);
}

.post-content-inner p {
    margin-bottom: 24px;
}

.post-content-inner ul,
.post-content-inner ol {
    margin-bottom: 24px;
    padding-left: 24px;
}

.post-content-inner li {
    margin-bottom: 8px;
}

.post-content-inner blockquote {
    border-left: 4px solid var(--red-primary);
    padding: 20px 24px;
    margin: 32px 0;
    background: var(--cream);
    border-radius: 0 8px 8px 0;
    font-style: italic;
    font-size: 18px;
}

.post-content-inner img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 24px 0;
}

.post-content-inner a {
    color: var(--red-primary);
    text-decoration: underline;
}

.post-content-inner a:hover {
    color: var(--red-dark);
}

/* Post Navigation */
.post-navigation {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid var(--gray-200);
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

.post-nav-link {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 20px;
    background: var(--cream);
    border-radius: 12px;
    text-decoration: none;
    transition: all var(--transition-fast);
}

.post-nav-link:hover {
    background: var(--gray-200);
}

.post-nav-next {
    text-align: right;
}

.post-nav-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.post-nav-title {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    color: var(--gray-900);
    line-height: 1.4;
}

.back-to-blog {
    text-align: center;
    margin-top: 48px;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

.back-to-blog .btn-outline {
    color: var(--red-primary);
    border-color: var(--red-primary);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.back-to-blog .btn-outline:hover {
    background: var(--red-primary);
    color: var(--white);
}

/* Single Post Responsive */
@media (max-width: 768px) {
    .single-post .post-header {
        padding: 80px 0 50px;
    }

    .post-featured-image {
        margin-top: -20px;
    }

    .post-content-inner {
        font-size: 16px;
    }

    .post-navigation {
        grid-template-columns: 1fr;
    }

    .post-nav-next {
        text-align: left;
    }
}

/* ============================================
   CITY LANDING PAGES
   ============================================ */

/* City Hero */
.city-hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-align: center;
    overflow: hidden;
}

.city-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.city-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.7) 100%);
}

.city-hero .container {
    position: relative;
    z-index: 2;
}

.city-hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 24px;
}

.city-hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(4px);
    padding: 8px 20px;
    border-radius: 24px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.city-hero h1 {
    font-size: clamp(36px, 6vw, 56px);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 20px;
    color: var(--white);
}

.city-hero p {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto 32px;
}

.city-hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline-white:hover {
    background: var(--white);
    color: var(--red-primary);
}

/* City Stats */
.city-stats {
    background: var(--red-primary);
}

.city-stats .stat-number {
    color: var(--white);
}

.city-stats .stat-label {
    color: rgba(255, 255, 255, 0.85);
}

/* City Intro */
.city-intro {
    background: var(--white);
}

.city-intro-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.city-intro-content h2 {
    font-size: clamp(28px, 4vw, 40px);
    margin-bottom: 24px;
}

.city-intro-content p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--gray-700);
    margin-bottom: 20px;
}

.city-intro-content .btn {
    margin-top: 16px;
}

/* City Guarantee */
.city-why-choose {
    background: var(--gray-100);
}

.city-guarantee {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    background: var(--white);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    max-width: 800px;
    margin: 0 auto;
}

.city-guarantee-icon {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--red-primary) 0%, var(--red-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.city-guarantee-icon svg {
    width: 32px;
    height: 32px;
    fill: var(--white);
}

.city-guarantee-content h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

.city-guarantee-content p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray-700);
    margin: 0;
}

/* City Services */
.city-services {
    background: var(--white);
}

.city-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.city-services-cta {
    text-align: center;
    margin-top: 48px;
}

/* City Pricing Preview */
.city-pricing {
    background: var(--gray-100);
}

.pricing-preview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.pricing-preview-card {
    background: var(--white);
    padding: 32px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}

.pricing-preview-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-600);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.pricing-preview-value {
    display: block;
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 700;
    color: var(--red-primary);
    margin-bottom: 8px;
}

.pricing-preview-note {
    display: block;
    font-size: 14px;
    color: var(--gray-600);
}

.city-pricing-cta {
    text-align: center;
    margin-top: 40px;
}

/* City Areas Section */
.city-areas {
    background: var(--white);
}

.city-areas-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.city-contact-info h2 {
    font-size: clamp(24px, 3vw, 32px);
    margin-bottom: 24px;
}

.city-contact-card {
    background: var(--gray-100);
    padding: 24px;
    border-radius: 12px;
    margin-bottom: 32px;
}

.city-contact-item {
    margin-bottom: 16px;
}

.city-contact-item:last-child {
    margin-bottom: 0;
}

.city-contact-item strong {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: var(--gray-600);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.city-contact-item a,
.city-contact-item span {
    font-size: 16px;
    color: var(--gray-900);
}

.city-contact-item a:hover {
    color: var(--red-primary);
}

.city-areas-list h3 {
    font-size: 18px;
    margin-bottom: 16px;
}

.area-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.area-link {
    display: inline-block;
    padding: 8px 16px;
    background: var(--gray-100);
    color: var(--gray-700);
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all var(--transition-fast);
}

.area-link:hover {
    background: var(--red-primary);
    color: var(--white);
}

.area-link.current {
    background: var(--red-primary);
    color: var(--white);
}

.city-map {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
}

.city-map iframe {
    width: 100%;
    height: 400px;
    border: none;
}

.city-map-placeholder {
    height: 400px;
}

.city-map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* City CTA */
.city-cta {
    background: linear-gradient(135deg, var(--red-primary) 0%, var(--red-dark) 100%);
    color: var(--white);
    text-align: center;
}

.city-cta-inner {
    max-width: 700px;
    margin: 0 auto;
}

.city-cta h2 {
    font-size: clamp(28px, 4vw, 40px);
    color: var(--white);
    margin-bottom: 16px;
}

.city-cta p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
}

.city-cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* City Page Responsive */
@media (max-width: 1024px) {
    .city-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .city-hero {
        min-height: 60vh;
    }

    .city-hero-content {
        padding: 40px 20px;
    }

    .city-guarantee {
        flex-direction: column;
        text-align: center;
        padding: 32px 24px;
    }

    .city-guarantee-icon {
        margin: 0 auto;
    }

    .city-services-grid,
    .pricing-preview-grid {
        grid-template-columns: 1fr;
    }

    .city-areas-inner {
        grid-template-columns: 1fr;
    }

    .city-map {
        order: -1;
    }
}
