* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    color: #333;
    line-height: 1.6;
}

/* ── Nav ─────────────────────────────── */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2563eb;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

nav a {
    text-decoration: none;
    color: #555;
    font-weight: 500;
    transition: color 0.2s;
}

nav a:hover { color: #2563eb; }

/* ── Hero ────────────────────────────── */
.hero {
    background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
    color: #fff;
    text-align: center;
    padding: 6rem 5%;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    background: #fff;
    color: #2563eb;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* ── Sections ────────────────────────── */
section {
    padding: 5rem 5%;
}

section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: #1e293b;
}

/* ── Grid ────────────────────────────── */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

/* ── Service Cards ───────────────────── */
.card {
    background: #f8fafc;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.2s;
}

.card:hover { transform: translateY(-4px); }

.card-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1rem;
}

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

.card h3 {
    margin-bottom: 0.5rem;
    color: #1e293b;
}

.card p { color: #64748b; }

/* ── Pricing ─────────────────────────── */
.pricing { background: #f1f5f9; }

.price-card {
    background: #fff;
    border-radius: 12px;
    padding: 2.5rem 2rem;
    text-align: center;
    border: 2px solid transparent;
    transition: border-color 0.2s;
}

.price-card.featured {
    border-color: #2563eb;
    position: relative;
}

.price-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.price {
    font-size: 3rem;
    font-weight: 700;
    color: #2563eb;
    margin: 1rem 0;
}

.price-card ul {
    list-style: none;
    color: #64748b;
}

.price-card li {
    padding: 0.4rem 0;
    border-bottom: 1px solid #f1f5f9;
}

.note {
    text-align: center;
    margin-top: 2rem;
    color: #64748b;
}

/* ── Hours ───────────────────────────── */
table {
    margin: 0 auto;
    border-collapse: collapse;
    font-size: 1.1rem;
}

table td {
    padding: 0.75rem 2rem;
    border-bottom: 1px solid #e2e8f0;
}

table td:first-child {
    font-weight: 600;
    color: #1e293b;
}

.hours p {
    text-align: center;
    margin-top: 1rem;
    color: #64748b;
}

/* ── Contact ─────────────────────────── */
.contact { background: #f8fafc; }

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 800px;
    margin: 0 auto;
}

.contact-grid h3 {
    margin: 1rem 0 0.25rem;
    color: #1e293b;
}

.contact-grid p { color: #64748b; }

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.75rem;
    margin-bottom: 1rem;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37,99,235,0.1);
}

.contact-form .btn {
    background: #2563eb;
    color: #fff;
    width: 100%;
}

/* ── Footer ──────────────────────────── */
footer {
    text-align: center;
    padding: 2rem 5%;
    color: #94a3b8;
    font-size: 0.9rem;
}

/* ── Responsive ──────────────────────── */
@media (max-width: 640px) {
    .hero h1 { font-size: 2rem; }
    nav ul { gap: 1rem; font-size: 0.9rem; }
    .contact-grid { grid-template-columns: 1fr; }
    table td { padding: 0.5rem 1rem; }
}
