/* ========================================
   Creative Property Maintenance - Styles
   Premium Dark Luxury Theme
   Charcoal + Coral Palette
======================================== */

/* --- CSS Custom Properties --- */
:root {
    --bg-primary: #0d0d0d;
    --bg-secondary: #141414;
    --bg-tertiary: #1a1a1a;
    --bg-card: #1e1e1e;
    --bg-card-hover: #252525;
    
    --coral: #FF6B4A;
    --coral-light: #FF8A70;
    --coral-dark: #E5553A;
    --coral-glow: rgba(255, 107, 74, 0.15);
    --coral-glow-strong: rgba(255, 107, 74, 0.3);
    
    --gold: #D4A574;
    --gold-light: #E8C4A0;
    --gold-dark: #B8894E;
    --gold-glow: rgba(212, 165, 116, 0.12);
    
    --text-primary: #FFFFFF;
    --text-secondary: #B0B0B0;
    --text-muted: #666666;
    --text-inverse: #1a1a1a;
    
    --border-color: rgba(255, 255, 255, 0.06);
    --border-hover: rgba(255, 107, 74, 0.3);
    
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;
    
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 16px 64px rgba(0, 0, 0, 0.5);
    --shadow-coral: 0 8px 32px rgba(255, 107, 74, 0.2);
    
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Reset & Base --- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: var(--font-body);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

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

ul {
    list-style: none;
}

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

/* --- Typography --- */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.cor
