/*
Theme Name: MVPM - Option 3 (Modern & Trustworthy)
Theme URI: https://mvpmrentals.com
Author: Mountain Village Property Management
Author URI: https://mvpmrentals.com
Description: A stunning, modern theme for Mountain Village Property Management. Features a Montana-inspired design with elegant typography, smooth animations, and full mobile responsiveness.
Version: 1.0.1
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: mvpm-theme
Tags: one-column, custom-colors, custom-menu, featured-images, full-width-template, theme-options
*/

/* ===== CSS VARIABLES ===== */
:root {
    /* Color Palette - Option 3: Modern & Trustworthy */
--color-midnight: #1C2541;
--color-slate: #5B6770;
--color-mountain: #5B6770;
--color-sky: #7F888F;
--color-glacier: #FAF8F5;
--color-snow: #FFFFFF;
--color-cream: #FAF8F5;
--color-copper: #C9A961;
--color-copper-light: #D8C18D;
--color-copper-dark: #9D844C;
--color-forest: #1C2541;
--color-gold: #C9A961;

/* RGB helpers (for rgba() usage) */
--ink-rgb: 28, 37, 65;
--accent-rgb: 201, 169, 97;
--surface-rgb: 250, 248, 245;
--forest-rgb: 28, 37, 65;
--sky-rgb: 91, 103, 112;

/* Soft tints for gradient badges */
--forest-tint-1: #DFE0E4;
--forest-tint-2: #C9CBD1;
--sky-tint-1: #E6E8EA;
--sky-tint-2: #D3D6D8;
/* Typography */
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 4rem;
    --space-xl: 6rem;
    --space-2xl: 10rem;
    
    /* Transitions */
    --transition-smooth: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-bounce: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    color: var(--color-midnight);
    background: var(--color-cream);
    line-height: 1.7;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

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

ul, ol {
    list-style: none;
}

/* ===== HEADER & NAVIGATION ===== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: var(--space-sm) var(--space-md);
    transition: var(--transition-smooth);
}

.site-header.scrolled {
    background: rgba(var(--surface-rgb), 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(var(--ink-rgb), 0.08);
}

.header-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-img {
    height: 42px;
    width: auto;
    display: block;
}
.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-text .company-name {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--color-midnight);
}

.logo-text .company-tagline {
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--color-mountain);
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

/* Main Navigation */
.main-navigation {
    display: flex;
    align-items: center;
}

.main-navigation ul {
    display: flex;
    gap: var(--space-md);
    align-items: center;
}

.main-navigation a {
    color: var(--color-slate);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    padding: 0.5rem 0;
}

.main-navigation a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-copper);
    transition: var(--transition-smooth);
}

.main-navigation a:hover {
    color: var(--color-copper);
}

.main-navigation a:hover::after {
    width: 100%;
}

.nav-cta {
    background: var(--color-copper) !important;
    color: white !important;
    padding: 0.8rem 1.5rem !important;
    border-radius: 8px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(var(--accent-rgb), 0.25);
}

.nav-cta::after {
    display: none !important;
}

.nav-cta:hover {
    background: var(--color-copper-dark) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(var(--accent-rgb), 0.35);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--color-midnight);
    transition: var(--transition-smooth);
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: var(--transition-bounce);
    cursor: pointer;
    border: none;
    font-family: var(--font-body);
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-copper) 0%, var(--color-copper-dark) 100%);
    color: white;
    box-shadow: 0 8px 30px rgba(var(--accent-rgb), 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(var(--accent-rgb), 0.4);
    color: white;
}

.btn-secondary {
    background: white;
    color: var(--color-midnight);
    box-shadow: 0 4px 20px rgba(var(--ink-rgb), 0.1);
    border: 2px solid transparent;
}

.btn-secondary:hover {
    border-color: var(--color-copper);
    transform: translateY(-3px);
}

.btn svg {
    width: 20px;
    height: 20px;
}

/* ===== HERO SECTION ===== */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--color-snow) 0%, var(--color-cream) 100%);
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 150%;
    background: radial-gradient(ellipse, rgba(107, 155, 184, 0.15) 0%, transparent 70%);
    animation: heroFloat 20s ease-in-out infinite;
}

.hero-bg::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 60%;
    height: 100%;
    background: radial-gradient(ellipse, rgba(var(--accent-rgb), 0.1) 0%, transparent 70%);
    animation: heroFloat 25s ease-in-out infinite reverse;
}

@keyframes heroFloat {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(30px, 30px) rotate(5deg); }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: var(--space-2xl) var(--space-md);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: center;
}

.hero-text {
    animation: slideUp 1s ease-out;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-mountain);
    box-shadow: 0 4px 20px rgba(var(--ink-rgb), 0.08);
    margin-bottom: var(--space-md);
    animation: slideUp 1s ease-out 0.2s both;
}

.hero-badge svg {
    width: 18px;
    height: 18px;
    fill: var(--color-gold);
}

.hero-section h1 {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 6vw, 4.5rem);
    font-weight: 600;
    line-height: 1.1;
    color: var(--color-midnight);
    margin-bottom: var(--space-md);
    animation: slideUp 1s ease-out 0.3s both;
}

.hero-section h1 .highlight {
    color: var(--color-copper);
    position: relative;
}

.hero-section h1 .highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    right: 0;
    height: 8px;
    background: rgba(var(--accent-rgb), 0.2);
    z-index: -1;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--color-slate);
    margin-bottom: var(--space-lg);
    max-width: 500px;
    animation: slideUp 1s ease-out 0.4s both;
}

.hero-ctas {
    display: flex;
    gap: var(--space-sm);
    flex-wrap: wrap;
    animation: slideUp 1s ease-out 0.5s both;
}

/* Hero Visual / Stats Card */
.hero-visual {
    position: relative;
    animation: slideUp 1s ease-out 0.6s both;
}

.hero-card {
    background: white;
    border-radius: 24px;
    padding: var(--space-lg);
    box-shadow: 0 25px 80px rgba(var(--ink-rgb), 0.12), 0 10px 30px rgba(var(--ink-rgb), 0.08);
    position: relative;
    overflow: hidden;
}

.hero-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--color-copper) 0%, var(--color-gold) 50%, var(--color-copper-light) 100%);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
}

.stat-item {
    text-align: center;
    padding: var(--space-sm);
}

.stat-number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-midnight);
    line-height: 1;
}

.stat-number span {
    color: var(--color-copper);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--color-mountain);
    margin-top: 0.5rem;
}

/* Floating Badges */
.hero-floating {
    position: absolute;
    background: white;
    border-radius: 16px;
    padding: 1rem 1.5rem;
    box-shadow: 0 15px 50px rgba(var(--ink-rgb), 0.15);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    animation: floatBadge 4s ease-in-out infinite;
}

@keyframes floatBadge {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.hero-floating.top-right {
    top: -20px;
    right: -40px;
}

.hero-floating.bottom-left {
    bottom: -20px;
    left: -40px;
    animation-delay: 2s;
}

.floating-icon {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-icon.green {
    background: linear-gradient(135deg, var(--forest-tint-1) 0%, var(--forest-tint-2) 100%);
    color: var(--color-forest);
}

.floating-icon.blue {
    background: linear-gradient(135deg, var(--sky-tint-1) 0%, var(--sky-tint-2) 100%);
    color: var(--color-mountain);
}

.floating-text strong {
    display: block;
    font-size: 0.95rem;
    color: var(--color-midnight);
}

.floating-text span {
    font-size: 0.8rem;
    color: var(--color-mountain);
}

/* ===== SECTION COMMON STYLES ===== */
.section-header {
    text-align: center;
    margin-bottom: var(--space-xl);
    position: relative;
    z-index: 1;
}

.section-tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-copper-light);
    margin-bottom: var(--space-sm);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    margin-bottom: var(--space-sm);
}

.section-subtitle {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ===== SERVICES SECTION ===== */
.services-section {
    padding: var(--space-2xl) var(--space-md);
    background: var(--color-midnight);
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(107, 155, 184, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(var(--accent-rgb), 0.1) 0%, transparent 40%);
}

.services-section .section-title {
    color: white;
}

.services-section .section-subtitle {
    color: var(--color-glacier);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--space-md);
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.service-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: var(--space-lg);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-copper), var(--color-gold));
    opacity: 0;
    transition: var(--transition-smooth);
}

.service-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
    border-color: rgba(var(--accent-rgb), 0.3);
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--color-copper) 0%, var(--color-copper-dark) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-md);
    box-shadow: 0 8px 25px rgba(var(--accent-rgb), 0.3);
}

.service-icon svg {
    width: 28px;
    height: 28px;
    color: white;
    stroke: white;
    fill: none;
}

.service-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
    margin-bottom: var(--space-sm);
}

.service-card p {
    color: var(--color-glacier);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ===== WHY CHOOSE US SECTION ===== */
.why-us-section {
    padding: var(--space-2xl) var(--space-md);
    background: var(--color-cream);
}

.why-us-section .section-tag {
    color: var(--color-copper);
}

.why-us-section .section-title {
    color: var(--color-midnight);
}

.why-us-section .section-subtitle {
    color: var(--color-slate);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-md);
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: white;
    border-radius: 20px;
    padding: var(--space-lg);
    box-shadow: 0 10px 40px rgba(var(--ink-rgb), 0.06);
    transition: var(--transition-smooth);
    border: 1px solid rgba(var(--ink-rgb), 0.05);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(var(--ink-rgb), 0.12);
}

.feature-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--color-snow) 0%, var(--color-glacier) 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-md);
    color: var(--color-mountain);
}

.feature-icon svg {
    width: 26px;
    height: 26px;
    stroke: currentColor;
    fill: none;
}

.feature-card h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--color-midnight);
    margin-bottom: var(--space-xs);
}

.feature-card p {
    color: var(--color-slate);
    font-size: 0.95rem;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-section {
    padding: var(--space-2xl) var(--space-md);
    background: linear-gradient(180deg, var(--color-snow) 0%, var(--color-cream) 100%);
}

.testimonials-section .section-tag {
    color: var(--color-copper);
}

.testimonials-section .section-title {
    color: var(--color-midnight);
}

.testimonials-section .section-subtitle {
    color: var(--color-slate);
}

.google-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(var(--ink-rgb), 0.08);
    margin-bottom: var(--space-lg);
}

.google-badge img {
    height: 24px;
}

.google-badge .stars {
    color: var(--color-gold);
    font-size: 1.1rem;
}

.google-badge .score {
    font-weight: 600;
    color: var(--color-midnight);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-md);
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background: white;
    border-radius: 24px;
    padding: var(--space-lg);
    box-shadow: 0 10px 40px rgba(var(--ink-rgb), 0.06);
    position: relative;
    transition: var(--transition-smooth);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(var(--ink-rgb), 0.1);
}

.testimonial-quote {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    font-family: var(--font-display);
    font-size: 4rem;
    color: var(--color-copper);
    opacity: 0.2;
    line-height: 1;
}

.testimonial-stars {
    color: var(--color-gold);
    font-size: 1.2rem;
    margin-bottom: var(--space-sm);
}

.testimonial-text {
    font-size: 1.05rem;
    color: var(--color-slate);
    line-height: 1.8;
    margin-bottom: var(--space-md);
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding-top: var(--space-sm);
    border-top: 1px solid rgba(var(--ink-rgb), 0.08);
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-copper-light) 0%, var(--color-copper) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 600;
    color: white;
}

.author-info strong {
    display: block;
    color: var(--color-midnight);
    font-size: 1rem;
}

.author-info span {
    color: var(--color-mountain);
    font-size: 0.85rem;
}

.google-source {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-left: auto;
    color: var(--color-mountain);
    font-size: 0.8rem;
}

.google-source svg {
    width: 20px;
    height: 20px;
}

/* ===== PRICING SECTION ===== */
.pricing-section {
    padding: var(--space-2xl) var(--space-md);
    background: var(--color-midnight);
    position: relative;
    overflow: hidden;
}

.pricing-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at 20% 50%, rgba(var(--accent-rgb), 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(107, 155, 184, 0.1) 0%, transparent 50%);
}

.pricing-section .section-title {
    color: white;
}

.pricing-section .section-subtitle {
    color: var(--color-glacier);
}

.pricing-card {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 32px;
    padding: var(--space-xl);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-copper), var(--color-gold), var(--color-copper-light));
}

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

.pricing-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--color-copper) 0%, var(--color-copper-dark) 100%);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: var(--space-md);
}

.pricing-title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: white;
    margin-bottom: var(--space-xs);
}

.pricing-amount {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: var(--space-sm);
}

.pricing-amount .number {
    font-family: var(--font-display);
    font-size: 5rem;
    font-weight: 700;
    color: var(--color-copper-light);
    line-height: 1;
}

.pricing-amount .percent {
    font-size: 2rem;
    color: var(--color-copper-light);
}

.pricing-amount .period {
    font-size: 1.2rem;
    color: var(--color-glacier);
}

.pricing-desc {
    color: var(--color-glacier);
    font-size: 1.1rem;
}

.pricing-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-sm);
    margin: var(--space-lg) 0;
}

.pricing-feature {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    color: white;
}

.pricing-feature svg {
    width: 24px;
    height: 24px;
    color: var(--color-copper-light);
    stroke: var(--color-copper-light);
    fill: none;
    flex-shrink: 0;
    margin-top: 2px;
}

.pricing-feature span {
    font-size: 0.95rem;
    line-height: 1.5;
}

.pricing-cta {
    text-align: center;
    margin-top: var(--space-lg);
}

.pricing-cta .btn-primary {
    font-size: 1.1rem;
    padding: 1.2rem 3rem;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    padding: var(--space-2xl) var(--space-md);
    background: var(--color-cream);
}

.contact-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: center;
}

.contact-content h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    color: var(--color-midnight);
    margin-bottom: var(--space-md);
}

.contact-content > p {
    font-size: 1.1rem;
    color: var(--color-slate);
    margin-bottom: var(--space-lg);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-copper);
    box-shadow: 0 4px 15px rgba(var(--ink-rgb), 0.08);
}

.contact-icon svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
    fill: none;
}

.contact-item-text a {
    color: var(--color-midnight);
    font-weight: 600;
    font-size: 1.1rem;
}

.contact-item-text a:hover {
    color: var(--color-copper);
}

.contact-item-text span {
    display: block;
    font-size: 0.85rem;
    color: var(--color-mountain);
}

/* Contact Form */
.contact-form-wrapper {
    background: white;
    border-radius: 24px;
    padding: var(--space-lg);
    box-shadow: 0 20px 60px rgba(var(--ink-rgb), 0.1);
}

.contact-form h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--color-midnight);
    margin-bottom: var(--space-md);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-sm);
}

.form-group {
    margin-bottom: var(--space-sm);
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-slate);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid rgba(var(--ink-rgb), 0.1);
    border-radius: 12px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition-smooth);
    background: var(--color-snow);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-copper);
    background: white;
}

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

/* ===== FOOTER ===== */
.site-footer {
    background: var(--color-midnight);
    padding: var(--space-xl) var(--space-md) var(--space-md);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--space-lg);
    padding-bottom: var(--space-lg);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
    max-width: 350px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
}

.footer-logo .logo-icon {
    background: linear-gradient(135deg, var(--color-copper) 0%, var(--color-copper-dark) 100%);
}

.footer-logo .company-name {
    color: white;
}

.footer-logo .company-tagline {
    color: var(--color-glacier);
}

.footer-brand > p {
    color: var(--color-glacier);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: var(--space-md);
}

.footer-credentials {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
}

.credential-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.8rem;
    color: var(--color-glacier);
}

.credential-badge svg {
    width: 16px;
    height: 16px;
    color: var(--color-copper-light);
    stroke: var(--color-copper-light);
    fill: none;
}

.footer-column h4 {
    color: white;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: var(--space-md);
    letter-spacing: 0.05em;
}

.footer-column ul li {
    margin-bottom: var(--space-xs);
}

.footer-column a {
    color: var(--color-glacier);
    font-size: 0.95rem;
}

.footer-column a:hover {
    color: var(--color-copper-light);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: var(--space-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-sm);
}

.footer-copyright {
    color: var(--color-glacier);
    font-size: 0.9rem;
}

.equal-housing {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-glacier);
    font-size: 0.85rem;
}

.equal-housing svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.footer-legal {
    display: flex;
    gap: var(--space-md);
}

.footer-legal a {
    color: var(--color-glacier);
    font-size: 0.9rem;
}

.footer-legal a:hover {
    color: var(--color-copper-light);
}

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text {
        order: 1;
    }

    .hero-visual {
        order: 2;
        max-width: 500px;
        margin: 0 auto;
    }

    .hero-subtitle {
        margin: 0 auto var(--space-lg);
    }

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

    .hero-floating {
        display: none;
    }

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

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

@media (max-width: 768px) {
    .main-navigation ul {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .hero-section h1 {
        font-size: 2.5rem;
    }

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

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand {
        max-width: none;
    }

    .footer-credentials {
        justify-content: center;
    }

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

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

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

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

/* ===== WORDPRESS SPECIFIC OVERRIDES ===== */
.wp-block-button__link {
    background: linear-gradient(135deg, var(--color-copper) 0%, var(--color-copper-dark) 100%);
    border-radius: 10px;
    padding: 1rem 2rem;
    font-weight: 600;
}

.wp-block-button__link:hover {
    background: var(--color-copper-dark);
}

/* Remove WordPress default margins */
.entry-content > * {
    margin-top: 0;
    margin-bottom: 0;
}

/* Contact Form 7 Styling */
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 select,
.wpcf7 textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid rgba(var(--ink-rgb), 0.1);
    border-radius: 12px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition-smooth);
    background: var(--color-snow);
}

.wpcf7 input:focus,
.wpcf7 select:focus,
.wpcf7 textarea:focus {
    outline: none;
    border-color: var(--color-copper);
    background: white;
}

.wpcf7 input[type="submit"] {
    background: linear-gradient(135deg, var(--color-copper) 0%, var(--color-copper-dark) 100%);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition-bounce);
    width: 100%;
}

.wpcf7 input[type="submit"]:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(var(--accent-rgb), 0.4);
}


@media (max-width: 768px) {
    .logo-img { height: 34px; }
}
