* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif; line-height: 1.6; color: #1e293b; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; }

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

header { background: #1e293b; color: #fff; padding: 1rem 0; position: sticky; top: 0; z-index: 100; }
header .container { display: flex; justify-content: space-between; align-items: center; }
.logo { font-size: 1.5rem; font-weight: 700; color: #fff; }
.logo span { color: #2563eb; }
nav { display: flex; gap: 2rem; align-items: center; }
nav a { color: #94a3b8; font-size: 0.9375rem; transition: color 0.2s; }
nav a:hover { color: #fff; }
.nav-btn { background: #2563eb; color: #fff !important; padding: 0.625rem 1.25rem; border-radius: 0.5rem; font-weight: 500; }
.nav-btn:hover { background: #1d4ed8; }

.hero { background: linear-gradient(135deg, #1e293b 0%, #334155 100%); color: #fff; padding: 5rem 0; }
.hero-content { max-width: 700px; }
.hero h1 { font-size: 3rem; font-weight: 700; line-height: 1.2; margin-bottom: 1.5rem; }
.hero h1 span { color: #60a5fa; }
.hero p { font-size: 1.25rem; color: #cbd5e1; margin-bottom: 2rem; }
.hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }

.btn { display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; padding: 0.875rem 1.75rem; border-radius: 0.5rem; font-size: 1rem; font-weight: 600; transition: all 0.2s; cursor: pointer; border: none; }
.btn-primary { background: #2563eb; color: #fff; }
.btn-primary:hover { background: #1d4ed8; }
.btn-secondary { background: #fff; color: #1e293b; }
.btn-secondary:hover { background: #f1f5f9; }
.btn-outline { background: transparent; color: #fff; border: 2px solid #fff; }
.btn-outline:hover { background: #fff; color: #1e293b; }
.btn-lg { padding: 1rem 2rem; font-size: 1.125rem; }

.section { padding: 5rem 0; }
.section-title { font-size: 2.25rem; font-weight: 700; text-align: center; margin-bottom: 1rem; }
.section-subtitle { font-size: 1.125rem; color: #64748b; text-align: center; max-width: 600px; margin: 0 auto 3rem; }
.section-alt { background: #f8fafc; }

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

.card { background: #fff; border-radius: 1rem; padding: 2rem; box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1); transition: transform 0.2s, box-shadow 0.2s; }
.card:hover { transform: translateY(-4px); box-shadow: 0 10px 25px -5px rgba(0,0,0,0.15); }
.card-icon { width: 60px; height: 60px; background: #eff6ff; border-radius: 0.75rem; display: flex; align-items: center; justify-content: center; margin-bottom: 1.5rem; }
.card-icon svg { width: 30px; height: 30px; color: #2563eb; }
.card h3 { font-size: 1.25rem; font-weight: 600; margin-bottom: 0.75rem; }
.card p { color: #64748b; }

.flooring-types { display: grid; grid-template-columns: repeat(6, 1fr); gap: 1rem; }
.flooring-type { text-align: center; padding: 1.5rem 1rem; background: #fff; border-radius: 0.75rem; border: 2px solid #e2e8f0; transition: all 0.2s; cursor: pointer; }
.flooring-type:hover { border-color: #2563eb; background: #eff6ff; }
.flooring-type svg { width: 48px; height: 48px; color: #2563eb; margin-bottom: 0.75rem; }
.flooring-type span { font-weight: 500; font-size: 0.9375rem; }

.quote-form-section { background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%); color: #fff; padding: 4rem 0; }
.quote-form-section h2 { font-size: 2rem; text-align: center; margin-bottom: 0.5rem; }
.quote-form-section p { text-align: center; color: #bfdbfe; margin-bottom: 2rem; }
.quote-form { max-width: 600px; margin: 0 auto; background: #fff; border-radius: 1rem; padding: 2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.form-group { margin-bottom: 1rem; }
.form-group label { display: block; font-size: 0.875rem; font-weight: 500; color: #374151; margin-bottom: 0.5rem; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 0.75rem 1rem; border: 1px solid #e2e8f0; border-radius: 0.5rem; font-size: 1rem; transition: border-color 0.2s; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: #2563eb; }

.trust-badges { display: flex; justify-content: center; gap: 3rem; padding: 2rem 0; flex-wrap: wrap; }
.trust-badge { display: flex; align-items: center; gap: 0.75rem; color: #64748b; }
.trust-badge svg { width: 24px; height: 24px; color: #16a34a; }

.testimonials { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.testimonial { background: #fff; border-radius: 1rem; padding: 2rem; box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1); }
.testimonial-stars { color: #fbbf24; margin-bottom: 1rem; }
.testimonial p { color: #475569; margin-bottom: 1.5rem; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 1rem; }
.testimonial-avatar { width: 48px; height: 48px; background: #e2e8f0; border-radius: 50%; }
.testimonial-name { font-weight: 600; }
.testimonial-location { font-size: 0.875rem; color: #64748b; }

footer { background: #1e293b; color: #fff; padding: 4rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-about p { color: #94a3b8; margin-top: 1rem; }
.footer-title { font-weight: 600; margin-bottom: 1rem; }
.footer-links { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-links a { color: #94a3b8; transition: color 0.2s; }
.footer-links a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid #334155; padding-top: 2rem; text-align: center; color: #64748b; }

.sticky-cta { display: none; position: fixed; bottom: 0; left: 0; right: 0; background: #2563eb; padding: 1rem; z-index: 99; }
.sticky-cta .btn { width: 100%; }

@media (max-width: 1024px) {
    .grid-3, .testimonials { grid-template-columns: repeat(2, 1fr); }
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .flooring-types { grid-template-columns: repeat(3, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .hero h1 { font-size: 2.25rem; }
    .hero { padding: 3rem 0; }
    .section { padding: 3rem 0; }
    .section-title { font-size: 1.75rem; }
    nav { display: none; }
    .grid-3, .grid-4, .testimonials { grid-template-columns: 1fr; }
    .flooring-types { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .sticky-cta { display: block; }
    .trust-badges { gap: 1.5rem; }
}
