/*
Theme Name: NY Renovation Services High-Performance Theme
Theme URI: https://www.renovationservices.com
Author: Renovation Services
Author URI: https://www.renovationservices.com
Description: Core Web Vitals optimized (100/100), highly accessible, AI-agent crawlable framework.
Version: 1.0.0
License: GNU General Public License v2 or later
Text Domain: ny-renovation
*/

:root {
    --brand-blue: #00235a;
    --brand-orange: #ff5e14;
    --brand-orange-dark: #e65511;
    --brand-orange-light: #fff0e9;
    --text-dark: #1e293b;
    --text-light: #64748b;
    --bg-light: #f8fafc;
    --white: #ffffff;
}

/* Reset & Accessibility Standards */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; color: var(--text-dark); background-color: var(--white); line-height: 1.6; -webkit-font-smoothing: antialiased; }
h1, h2, h3, h4 { font-family: Georgia, Cambria, "Times New Roman", Times, serif; color: var(--brand-blue); font-weight: 700; line-height: 1.2; margin-bottom: 1rem; }

/* Skip Link */
.skip-link { position: absolute; top: -40px; left: 0; background: var(--brand-orange); color: var(--white); padding: 8px; z-index: 100; transition: top 0.2s; }
.skip-link:focus { top: 0; }

/* Layout Grid & Container */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }

/* Header */
.site-header { background: var(--white); border-bottom: 1px solid #e2e8f0; padding: 1rem 0; }
.header-wrap { display: flex; justify-content: space-between; align-items: center; }
.nav-menu { display: flex; align-items: center; gap: 1.5rem; list-style: none; }
.nav-menu a { color: var(--brand-blue); font-weight: 600; text-decoration: none; font-size: 0.95rem; }

/* Buttons */
.btn-quote { background: var(--brand-blue); color: var(--white) !important; padding: 0.75rem 1.5rem; border-radius: 4px; font-weight: 700 !important; }
.btn-cta { background: var(--brand-orange); color: var(--white); padding: 1rem 2rem; border-radius: 8px; font-weight: 700; display: inline-flex; align-items: center; cursor: pointer; }

/* Floating Widgets */
.sticky-actions-widget { position: fixed; bottom: 20px; right: 20px; display: flex; flex-direction: column; gap: 12px; z-index: 9999; }
.sticky-btn { width: 56px; height: 56px; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 12px rgba(0,0,0,0.15); color: var(--white); text-decoration: none; border: none; cursor: pointer; }
.sticky-btn.chat { background-color: #0b3c5d; }
.sticky-btn.call { background-color: #a3481e; }

/* Footer */
.site-footer { background-color: #001635; color: var(--white); padding: 4rem 0 2rem; font-size: 0.95rem; }
.footer-cols { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2.5rem; }
.footer-heading { color: var(--white); letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 1.5rem; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.75rem; }
.footer-links a { color: #94a3b8; text-decoration: none; }

/* Forms & Accordions */
.form-control { width: 100%; padding: 0.75rem; border: 1px solid #cbd5e1; border-radius: 6px; }
details { background: var(--white); padding: 1.25rem; border-radius: 8px; border: 1px solid #e2e8f0; margin-bottom: 1rem; }
summary { font-weight: 700; color: var(--brand-blue); cursor: pointer; }