/* Ontario Webco — styles.css */
:root {
    --navy: #1A3A6B;
    --blue: #1565C0;
    --orange: #FF6F00;
    --orange-dark: #E65100;
    --bg: #F0F4FD;
    --bg-white: #ffffff;
    --accent: #90CAF9;
    --text: #0D1B2A;
    --text-light: #4A5568;
    --border: #CBD5E1;
    --max-width: 1200px;
    --header-height: 72px;
    --font-head: 'Syne', sans-serif;
    --font-body: 'DM Sans', sans-serif;
    --radius: 8px;
    --shadow: 0 4px 24px rgba(26,58,107,0.10);
    --shadow-lg: 0 8px 48px rgba(26,58,107,0.15);
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-body); color: var(--text); background: var(--bg-white); line-height: 1.6; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
.container { width: 100%; max-width: var(--max-width); margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 5rem 0; }
.section-alt { background: var(--bg); }
h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 700; line-height: 1.15; }
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }
p { color: var(--text-light); line-height: 1.75; }
.btn { display: inline-flex; align-items: center; gap: .5rem; padding: .875rem 1.75rem; border-radius: var(--radius); font-family: var(--font-body); font-weight: 700; font-size: 1rem; cursor: pointer; border: 2px solid transparent; transition: all .2s ease; text-decoration: none; white-space: nowrap; }
.btn-primary { background: var(--orange); color: #fff; border-color: var(--orange); }
.btn-primary:hover { background: var(--orange-dark); border-color: var(--orange-dark); transform: translateY(-2px); box-shadow: 0 6px 24px rgba(255,111,0,.4); }
.btn-secondary { background: transparent; color: #fff; border-color: rgba(255,255,255,.6); }
.btn-secondary:hover { background: rgba(255,255,255,.1); border-color: #fff; }
.btn-outline { background: transparent; color: var(--blue); border-color: var(--blue); }
.btn-outline:hover { background: var(--blue); color: #fff; }
.btn-lg { padding: 1.1rem 2.25rem; font-size: 1.125rem; }
.site-header { position: sticky; top: 0; z-index: 1000; height: var(--header-height); background: var(--navy); box-shadow: 0 2px 20px rgba(0,0,0,.25); display: flex; align-items: center; }
.header-inner { display: flex; align-items: center; justify-content: space-between; width: 100%; }
.logo { display: flex; align-items: center; text-decoration: none; }
.logo img { height: 56px; width: auto; display: block; }
.nav { display: flex; align-items: center; gap: 2rem; list-style: none; }
.nav a { color: rgba(255,255,255,.8); font-weight: 500; font-size: .95rem; transition: color .2s; }
.nav a:hover, .nav a.active { color: #fff; }
.header-cta { display: flex; align-items: center; gap: 1rem; }
.header-phone { color: var(--accent); font-weight: 700; font-size: .9rem; display: none; }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: .5rem; }
.hamburger span { display: block; width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: all .3s; }
.hero { position: relative; background: linear-gradient(135deg, var(--navy) 0%, #0D2248 60%, #1565C0 100%); padding: 7rem 0 6rem; color: #fff; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: center; position: relative; z-index: 1; }
.hero-badge { display: inline-flex; align-items: center; gap: .5rem; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2); border-radius: 50px; padding: .4rem 1rem; font-size: .85rem; color: var(--accent); font-weight: 600; margin-bottom: 1.5rem; }
.hero h1 { color: #fff; margin-bottom: 1.25rem; }
.hero h1 span { color: var(--orange); }
.hero-sub { font-size: 1.125rem; color: rgba(255,255,255,.8); margin-bottom: 2rem; max-width: 520px; }
.hero-actions { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.hero-trust { margin-top: 2.5rem; display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
.hero-trust-item { display: flex; align-items: center; gap: .5rem; font-size: .875rem; color: rgba(255,255,255,.75); }
.hero-visual { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); border-radius: 16px; padding: 2rem; }
.hero-visual-header { display: flex; align-items: center; gap: .5rem; margin-bottom: 1.5rem; }
.browser-dots { display: flex; gap: 6px; }
.browser-dots span { width: 12px; height: 12px; border-radius: 50%; }
.browser-dots .d1 { background: #FF5F57; }
.browser-dots .d2 { background: #FFBD2E; }
.browser-dots .d3 { background: #28CA41; }
.browser-url { flex: 1; background: rgba(255,255,255,.1); border-radius: 6px; padding: .3rem .75rem; font-size: .75rem; color: rgba(255,255,255,.6); }
.site-mockup-bar { height: 8px; background: rgba(255,255,255,.15); border-radius: 4px; margin-bottom: .75rem; }
.site-mockup-bar.short { width: 60%; }
.site-mockup-bar.shorter { width: 40%; }
.site-mockup-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: .5rem; margin: 1rem 0; }
.site-mockup-card { background: rgba(255,255,255,.08); border-radius: 6px; height: 60px; }
.site-mockup-btn { background: var(--orange); border-radius: 6px; height: 36px; width: 60%; }
.stat-boxes { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; margin-top: 1rem; }
.stat-box { background: rgba(255,255,255,.08); border-radius: 8px; padding: .875rem; }
.stat-box-val { font-family: var(--font-head); font-weight: 800; font-size: 1.5rem; color: var(--orange); }
.stat-box-label { font-size: .72rem; color: rgba(255,255,255,.6); margin-top: .2rem; }
.trust-bar { background: var(--navy); padding: 1.5rem 0; }
.trust-bar-inner { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; align-items: center; }
.trust-item { display: flex; align-items: center; gap: .75rem; color: rgba(255,255,255,.85); font-size: .9rem; font-weight: 500; }
.trust-item svg { color: var(--orange); flex-shrink: 0; }
.services-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
.service-card { background: var(--bg-white); border: 1px solid var(--border); border-radius: 12px; padding: 2rem; transition: all .25s; position: relative; overflow: hidden; }
.service-card::before { content: ''; position: absolute; top: 0; left: 0; width: 4px; height: 100%; background: var(--orange); transform: scaleY(0); transition: transform .25s; transform-origin: bottom; }
.service-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: var(--accent); }
.service-card:hover::before { transform: scaleY(1); }
.service-icon { width: 56px; height: 56px; background: var(--bg); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem; color: var(--blue); }
.service-card h3 { margin-bottom: .75rem; }
.service-card p { font-size: .95rem; margin-bottom: 1.25rem; }
.service-link { color: var(--blue); font-weight: 700; font-size: .9rem; display: inline-flex; align-items: center; gap: .35rem; transition: gap .2s; }
.service-link:hover { gap: .6rem; }
.section-label { display: inline-flex; align-items: center; gap: .5rem; color: var(--orange); font-weight: 700; font-size: .85rem; text-transform: uppercase; letter-spacing: .1em; margin-bottom: .75rem; }
.section-label::before { content: ''; width: 24px; height: 2px; background: var(--orange); border-radius: 2px; }
.section-head { margin-bottom: 3rem; }
.section-head h2 { margin-bottom: .75rem; }
.section-head p { max-width: 560px; font-size: 1.05rem; }
.testimonials-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
.testimonial-card { background: var(--bg-white); border: 1px solid var(--border); border-radius: 12px; padding: 2rem; }
.stars { color: #FFA000; font-size: 1.1rem; margin-bottom: 1rem; }
.testimonial-card blockquote { font-style: italic; margin-bottom: 1.25rem; color: var(--text); line-height: 1.7; }
.testimonial-author { font-weight: 700; font-size: .9rem; }
.testimonial-role { font-size: .8rem; color: var(--text-light); }
.cta-section { background: linear-gradient(135deg, var(--navy), #1565C0); color: #fff; padding: 5rem 0; text-align: center; }
.cta-section h2 { color: #fff; margin-bottom: 1rem; }
.cta-section p { color: rgba(255,255,255,.8); font-size: 1.05rem; max-width: 520px; margin: 0 auto 2rem; }
.cta-actions { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }
.quote-form { background: var(--bg-white); border-radius: 16px; padding: 2.5rem; box-shadow: var(--shadow-lg); }
.quote-form h3 { margin-bottom: 1.5rem; color: var(--navy); }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-weight: 600; font-size: .875rem; margin-bottom: .4rem; color: var(--text); }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: .8rem 1rem; border: 2px solid var(--border); border-radius: var(--radius); font-family: var(--font-body); font-size: 1rem; color: var(--text); background: var(--bg-white); transition: border-color .2s; appearance: none; -webkit-appearance: none; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--blue); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-submit { width: 100%; padding: 1rem; font-size: 1.05rem; }
.form-reassurance { text-align: center; font-size: .825rem; color: var(--text-light); margin-top: .75rem; }
.about-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: center; }
.about-visual { background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%); border-radius: 16px; padding: 3rem 2rem; color: #fff; text-align: center; }
.about-visual .big-num { font-family: var(--font-head); font-size: 4.5rem; font-weight: 900; color: var(--orange); line-height: 1; }
.about-visual .big-label { font-size: 1rem; color: rgba(255,255,255,.8); margin-top: .5rem; }
.about-list { list-style: none; margin: 1.5rem 0; }
.about-list li { display: flex; align-items: flex-start; gap: .75rem; padding: .5rem 0; border-bottom: 1px solid var(--border); color: var(--text-light); font-size: .95rem; }
.about-list li:last-child { border-bottom: none; }
.about-list li svg { color: var(--blue); flex-shrink: 0; margin-top: .2rem; }
.areas-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.area-pill { background: var(--bg-white); border: 1px solid var(--border); border-radius: 50px; padding: .75rem 1.25rem; display: flex; align-items: center; gap: .5rem; font-weight: 600; font-size: .9rem; color: var(--navy); transition: all .2s; }
.area-pill:hover { background: var(--navy); color: #fff; border-color: var(--navy); }
.area-pill svg { color: var(--orange); }
.site-footer { background: #0A1929; color: rgba(255,255,255,.7); padding: 4rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; margin-bottom: 3rem; }
.footer-col h4 { font-family: var(--font-head); color: #fff; margin-bottom: 1rem; font-size: 1rem; }
.footer-col p { font-size: .9rem; line-height: 1.7; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: .5rem; }
.footer-links a { color: rgba(255,255,255,.65); font-size: .9rem; transition: color .2s; }
.footer-links a:hover { color: var(--orange); }
.footer-contact-item { display: flex; align-items: flex-start; gap: .75rem; margin-bottom: .75rem; font-size: .9rem; }
.footer-contact-item svg { color: var(--orange); flex-shrink: 0; margin-top: 2px; }
.footer-contact-item a { color: rgba(255,255,255,.7); transition: color .2s; }
.footer-contact-item a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding-top: 2rem; display: flex; flex-direction: column; gap: 1rem; align-items: center; text-align: center; font-size: .825rem; }
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a { color: rgba(255,255,255,.5); transition: color .2s; }
.footer-bottom-links a:hover { color: #fff; }
.page-hero { background: linear-gradient(135deg, var(--navy), #1565C0); padding: 4rem 0; color: #fff; text-align: center; }
.page-hero h1 { color: #fff; margin-bottom: .75rem; }
.page-hero p { color: rgba(255,255,255,.8); font-size: 1.05rem; max-width: 560px; margin: 0 auto; }
.breadcrumb { display: flex; align-items: center; gap: .5rem; justify-content: center; font-size: .85rem; margin-bottom: 1rem; color: rgba(255,255,255,.6); }
.breadcrumb a { color: var(--accent); }
.breadcrumb span { color: rgba(255,255,255,.4); }
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; }
.contact-info-item { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.5rem; }
.contact-icon { width: 48px; height: 48px; background: var(--bg); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--blue); flex-shrink: 0; }
.contact-info-item h4 { font-size: 1rem; margin-bottom: .25rem; }
.contact-info-item p, .contact-info-item a { font-size: .9rem; color: var(--text-light); }
.contact-info-item a:hover { color: var(--blue); }
.service-feature-list { list-style: none; margin: 1.5rem 0; }
.service-feature-list li { display: flex; align-items: flex-start; gap: .75rem; padding: .6rem 0; border-bottom: 1px solid var(--border); color: var(--text-light); }
.service-feature-list li:last-child { border-bottom: none; }
.service-feature-list li svg { color: var(--orange); flex-shrink: 0; margin-top: 3px; }
.service-detail-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; }
.mobile-nav { display: none; position: fixed; top: var(--header-height); left: 0; right: 0; background: var(--navy); z-index: 999; padding: 1.5rem; border-top: 1px solid rgba(255,255,255,.1); }
.mobile-nav.open { display: block; }
.mobile-nav ul { list-style: none; }
.mobile-nav li { border-bottom: 1px solid rgba(255,255,255,.08); }
.mobile-nav a { display: block; padding: .875rem 0; color: rgba(255,255,255,.85); font-weight: 500; font-size: 1rem; }
.mobile-nav .btn { width: 100%; justify-content: center; margin-top: 1rem; }
@media (min-width: 600px) {
    .trust-bar-inner { grid-template-columns: repeat(4, 1fr); }
    .areas-grid { grid-template-columns: repeat(3, 1fr); }
    .footer-bottom { flex-direction: row; justify-content: space-between; text-align: left; }
}
@media (min-width: 768px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    .about-grid { grid-template-columns: 1fr 1.4fr; }
    .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; }
    .contact-grid { grid-template-columns: 1fr 1fr; }
    .service-detail-grid { grid-template-columns: 1.4fr 1fr; }
    .header-phone { display: block; }
}
@media (min-width: 1024px) {
    .nav { display: flex; }
    .hamburger { display: none; }
    .services-grid { grid-template-columns: repeat(3, 1fr); }
    .testimonials-grid { grid-template-columns: repeat(3, 1fr); }
    .hero-grid { grid-template-columns: 1.1fr .9fr; }
}
@media (max-width: 1023px) {
    .nav { display: none; }
    .hamburger { display: flex; }
}
@media print {
    .site-header, .site-footer, .cta-section { display: none; }
}
