:root {
    --dental-light: #e3f2fd;
    --dental-blue: #1976d2;
    --dental-dark: #0d47a1;
    --dental-dark-text: #1a237e;
    --dental-green: #25d366;
    --dental-yellow: #fbbf24;
}

body {
    background: #fff;
    color: #222;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-services {
    padding: 4rem 0 2rem 0;
    background: linear-gradient(135deg, var(--dental-light) 0%, #fff 100%);
    text-align: center;
}

.hero-title {
    font-size: 3rem;
    font-weight: bold;
    color: var(--dental-dark-text);
    margin-bottom: 1rem;
}

.hero-description {
    font-size: 1.25rem;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
}

.services-list-section {
    padding: 3rem 0;
    background: #fff;
}

.services-list-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
}

.service-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(25, 118, 210, 0.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.3s, transform 0.3s;
}

.service-card:hover {
    box-shadow: 0 8px 32px rgba(25, 118, 210, 0.16);
    transform: translateY(-4px) scale(1.01);
}

.service-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    background: var(--dental-light);
}

.service-card-content {
    padding: 2rem 1.5rem 1.5rem 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.service-card-header h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dental-dark-text);
    margin: 0;
}

.service-price {
    background: var(--dental-light);
    color: var(--dental-blue);
    font-weight: 600;
    padding: 0.3rem 1rem;
    border-radius: 999px;
    font-size: 1rem;
    white-space: nowrap;
}

.service-desc {
    color: #555;
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.service-features li {
    display: flex;
    align-items: center;
    font-size: 1rem;
    color: #444;
    margin-bottom: 0.5rem;
}

.service-features i {
    color: var(--dental-green);
    margin-right: 0.7em;
    font-size: 1.1em;
}

.service-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #e5e7eb;
    padding-top: 1rem;
    margin-top: auto;
}

.service-rating {
    display: flex;
    align-items: center;
    gap: 0.15em;
}

.service-rating i {
    color: var(--dental-yellow);
    font-size: 1.1em;
}

.service-rating span {
    margin-left: 0.5em;
    font-size: 0.95em;
    color: #888;
}

.service-book-btn {
    background: var(--dental-blue);
    color: #fff;
    padding: 0.5em 1.5em;
    border-radius: 8px;
    font-weight: 500;
    font-size: 1em;
    text-decoration: none;
    transition: background 0.2s;
    box-shadow: 0 2px 8px rgba(25, 118, 210, 0.08);
}

.service-book-btn:hover {
    background: var(--dental-dark);
}

/* Treatment Process */
.treatment-process-section {
    background: #f8f9fa;
    padding: 3rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.section-header h2 {
    font-size: 2.2rem;
    color: var(--dental-dark-text);
    font-weight: 700;
    margin-bottom: 0.7rem;
}

.section-header p {
    color: #666;
    font-size: 1.1rem;
}

.treatment-process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.treatment-step {
    text-align: center;
}

.treatment-step-number {
    background: var(--dental-blue);
    color: #fff;
    border-radius: 50%;
    width: 3.5rem;
    height: 3.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1rem auto;
}

.treatment-step h3 {
    font-size: 1.15rem;
    color: var(--dental-dark-text);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.treatment-step p {
    color: #555;
    font-size: 1rem;
}

/* CTA Section */
.cta-section {
    background: var(--dental-blue);
    color: #fff;
    text-align: center;
    padding: 3rem 0;
}

.cta-section h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    color: #e3f2fd;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    justify-content: center;
}

.whatsapp-btn {
    background: var(--dental-green);
    color: #fff;
    padding: 0.75em 2em;
    border-radius: 8px;
    font-weight: 500;
    font-size: 1em;
    text-decoration: none;
    transition: background 0.2s;
    margin-bottom: 0.5em;
}

.whatsapp-btn:hover {
    background: #128c7e;
}

.contact-btn {
    background: #fff;
    color: var(--dental-blue);
    padding: 0.75em 2em;
    border-radius: 8px;
    font-weight: 500;
    font-size: 1em;
    text-decoration: none;
    transition: background 0.2s;
}

.contact-btn:hover {
    background: #f3f4f6;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .services-list-grid {
        grid-template-columns: 1fr;
    }
    .treatment-process-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .hero-title {
        font-size: 2rem;
    }
    .services-list-section {
        padding: 1.5rem 0;
    }
    .service-card-content {
        padding: 1.2rem 1rem 1rem 1rem;
    }
    .treatment-process-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .cta-section {
        padding: 2rem 0;
    }
}