:root {
    --primary: #d97706;
    --primary-dark: #b45309;
    --secondary: #64748b;
    --bg: #ffffff;
    --bg-alt: #f8fafc;
    --text: #1e293b;
    --text-light: #64748b;
    --border: #e2e8f0;
    --radius: 8px;
    --shadow: 0 1px 3px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 25px rgba(0,0,0,0.1);
    --max-width: 1200px;
    --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--text); line-height: 1.7; background: var(--bg); }
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 1.5rem; }
.header { background: var(--bg); border-bottom: 1px solid var(--border); padding: 1rem 0; position: sticky; top: 0; z-index: 100; }
.header .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.logo { font-size: 1.5rem; font-weight: 700; color: var(--primary); text-decoration: none; }
.nav { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.nav a { text-decoration: none; color: var(--text); font-weight: 500; transition: color 0.2s; }
.nav a:hover { color: var(--primary); }
.hero { padding: 5rem 0; text-align: center; background: linear-gradient(135deg, var(--bg-alt) 0%, var(--bg) 100%); }
.hero h1 { font-size: clamp(2rem, 5vw, 3.5rem); margin-bottom: 1rem; }
.hero p { font-size: 1.2rem; color: var(--text-light); max-width: 600px; margin: 0 auto 2rem; }
.btn { display: inline-block; padding: 0.75rem 2rem; background: var(--primary); color: white; text-decoration: none; border-radius: var(--radius); font-weight: 600; transition: background 0.2s, transform 0.2s; margin: 0.25rem; }
.btn:hover { background: var(--primary-dark); transform: translateY(-2px); }
.btn-secondary { background: transparent; color: var(--primary); border: 2px solid var(--primary); }
.btn-secondary:hover { background: var(--primary); color: white; }
section { padding: 4rem 0; }
section:nth-child(even) { background: var(--bg-alt); }
.section-title { font-size: 2rem; text-align: center; margin-bottom: 0.5rem; }
.section-subtitle { text-align: center; color: var(--text-light); margin-bottom: 3rem; font-size: 1.1rem; }
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin-top: 1rem; }
.card { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius); padding: 2rem; transition: box-shadow 0.3s, transform 0.3s; }
.card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.card h3 { margin-bottom: 0.5rem; }
.card p { color: var(--text-light); }
.card .price { font-size: 1.2rem; font-weight: 700; color: var(--primary); margin-top: 1rem; }
.contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; }
.contact-item { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.5rem; }
.contact-icon { font-size: 1.5rem; min-width: 2rem; }
.hours-table { width: 100%; max-width: 500px; margin: 0 auto; border-collapse: collapse; }
.hours-table td { padding: 0.75rem 1rem; border-bottom: 1px solid var(--border); }
.hours-table td:first-child { font-weight: 600; }
.map-container { width: 100%; height: 450px; border-radius: var(--radius); overflow: hidden; margin-top: 2rem; }
.map-container iframe { width: 100%; height: 100%; border: 0; }
.footer { background: var(--text); color: white; padding: 3rem 0 1.5rem; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-bottom: 2rem; }
.footer h4 { margin-bottom: 1rem; }
.footer p, .footer a { color: #94a3b8; text-decoration: none; line-height: 2; }
.footer-bottom { border-top: 1px solid #334155; padding-top: 1.5rem; text-align: center; color: #64748b; font-size: 0.875rem; }
@media (max-width: 768px) {
    .hero { padding: 3rem 0; }
    section { padding: 3rem 0; }
    .header .container { justify-content: center; text-align: center; }
    .nav { justify-content: center; }
}

.card-icon { font-size: 2.5rem; margin-bottom: 0.5rem; }

.card-header { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.5rem; }
.card-header .card-icon { font-size: 1.8rem; margin-bottom: 0; }
.card-header h3 { margin-bottom: 0; }
