/* Start custom CSS for html, class: .elementor-element-888b203 *//* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    line-height: 1.6;
    color: #1e293b;
    background-color: #ffffff;
}

/* Typography */
.font-poppins, h1, h2, h3 {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
}

/* Color Variables */
:root {
    --primary: #1e40af;
    --primary-light: #60a5fa;
    --secondary: #64748b;
    --success: #22c55e;
    --warning: #eab308;
    --dental-blue: #1e40af;
    --dental-gray: #64748b;
    --success-green: #22c55e;
    --text-accent: #60a5fa;
    
    /* Backgrounds */
    --bg-gradient-hero: linear-gradient(135deg, #1e40af 0%, #1e3a8a 100%);
    --bg-gradient-subtle: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    --bg-gradient-cta: linear-gradient(135deg, #1e40af 0%, #7c3aed 100%);
    
    /* Spacing */
    --container-max-width: 1200px;
    --section-padding: 5rem 0;
    --card-padding: 1.5rem;
    
    /* Border Radius */
    --border-radius: 0.5rem;
    --border-radius-lg: 1rem;
    --border-radius-xl: 1.5rem;
    
    /* Shadows */
    --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
}

/* Container */
.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--success);
    color: white;
}

.btn-primary:hover {
    background-color: #16a34a;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background-color: var(--primary);
    color: white;
}

.btn.large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn-icon {
    width: 1.25rem;
    height: 1.25rem;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--secondary);
    max-width: 40rem;
    margin: 0 auto;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('assets/hero-dental-clinic.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: relative;
    z-index: 10;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 3rem;
    padding: 5rem 0;
}

.hero-left {
    flex: 1;
    min-width: 300px;
    text-align: center;
    color: white;
}

.hero-logo {
    margin-bottom: 2rem;
}

.logo-image {
    height: 4rem;
    margin: 0 auto;
}

.hero-title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.text-accent {
    color: var(--text-accent);
}

.hero-benefits {
    margin-bottom: 2rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 1.125rem;
    font-weight: 500;
}

.benefit-icon {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--success);
}

.hero-right {
    flex-shrink: 0;
}

.qr-card {
    background-color: white;
    padding: 1.5rem;
    border-radius: var(--border-radius-xl);
    box-shadow: var(--shadow-xl);
    text-align: center;
}

.qr-header h3 {
    font-weight: 600;
    color: var(--primary);
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

.qr-header p {
    color: var(--secondary);
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.qr-image {
    width: 10rem;
    height: 10rem;
    margin: 0 auto 1rem;
}

.qr-footer p {
    font-weight: 500;
    color: var(--primary);
}

/* Benefits Section */
.benefits-section {
    padding: var(--section-padding);
    background: var(--bg-gradient-subtle);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 75rem;
    margin: 0 auto;
}

.benefit-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: var(--card-padding);
    background-color: white;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    transition: box-shadow 0.3s ease;
}

.benefit-card:hover {
    box-shadow: var(--shadow-lg);
}

.benefit-card-icon {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--success);
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.benefit-card-content h3 {
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.benefit-card-content p {
    color: var(--secondary);
}

/* Services Section */
.services-section {
    padding: var(--section-padding);
    background: var(--bg-gradient-subtle);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.service-card {
    padding: var(--card-padding);
    background-color: white;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.3s ease;
}

.service-card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-4px);
}

.service-icon {
    width: 4rem;
    height: 4rem;
    background-color: rgba(30, 64, 175, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.service-icon i {
    width: 2rem;
    height: 2rem;
    color: var(--dental-blue);
}

.service-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--dental-blue);
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--dental-gray);
    margin-bottom: 1rem;
}

.service-highlight {
    display: inline-flex;
    align-items: center;
    background-color: rgba(34, 197, 94, 0.1);
    color: var(--success);
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
}

/* Services CTA */
.services-cta {
    background-color: white;
    border-radius: var(--border-radius-xl);
    box-shadow: var(--shadow-xl);
    padding: 2rem;
    margin-bottom: 3rem;
}

.services-cta-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
}

.services-cta-left h3 {
    font-size: 1.875rem;
    font-weight: bold;
    color: var(--dental-blue);
    margin-bottom: 1.5rem;
}

.services-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.feature-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon i {
    width: 1.5rem;
    height: 1.5rem;
    color: white;
}

.bg-primary {
    background-color: var(--primary);
}

.bg-success {
    background-color: var(--success);
}

.bg-warning {
    background-color: var(--warning);
}

.feature-item h4 {
    font-weight: 600;
    color: var(--dental-blue);
    margin-bottom: 0.25rem;
}

.feature-item p {
    color: var(--dental-gray);
    font-size: 0.875rem;
}

.consultation-card {
    background-color: rgba(30, 64, 175, 0.05);
    border-radius: var(--border-radius-lg);
    padding: var(--card-padding);
    margin-bottom: 1.5rem;
    text-align: center;
}

.consultation-card h4 {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--dental-blue);
    margin-bottom: 1rem;
}

.price {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--success);
    margin-bottom: 0.5rem;
}

.consultation-card p {
    color: var(--dental-gray);
    margin-bottom: 1.5rem;
}

.tip {
    color: var(--dental-gray);
    font-size: 0.875rem;
}

/* Why Choose Us Section */
.why-choose-section {
    padding: var(--section-padding);
    background-color: white;
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 75rem;
    margin: 0 auto;
}

.reason-card {
    text-align: center;
    padding: var(--card-padding);
    border-radius: var(--border-radius-lg);
    border: 1px solid #e2e8f0;
    transition: box-shadow 0.3s ease;
}

.reason-card:hover {
    box-shadow: var(--shadow-lg);
}

.reason-icon {
    margin: 0 auto 1rem;
}

.reason-icon i {
    width: 3rem;
    height: 3rem;
    color: var(--primary);
}

.reason-card h3 {
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.75rem;
}

.reason-card p {
    color: var(--secondary);
    font-size: 0.875rem;
}

/* Testimonials Section */
.testimonials-section {
    padding: var(--section-padding);
    background-color: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.testimonial-card {
    padding: var(--card-padding);
    background: var(--bg-gradient-subtle);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    box-shadow: var(--shadow-xl);
}

.testimonial-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
}

.quote-icon {
    width: 2rem;
    height: 2rem;
    color: rgba(30, 64, 175, 0.3);
    flex-shrink: 0;
}

.rating {
    display: flex;
    gap: 0.25rem;
}

.star-icon {
    width: 1rem;
    height: 1rem;
    color: #eab308;
    fill: currentColor;
}

.star-icon.large {
    width: 2rem;
    height: 2rem;
}

.testimonial-card p {
    color: var(--dental-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.testimonial-author {
    border-top: 1px solid #e2e8f0;
    padding-top: 1rem;
}

.testimonial-author h4 {
    font-weight: 600;
    color: var(--dental-blue);
    margin-bottom: 0.25rem;
}

.testimonial-author p {
    font-size: 0.875rem;
    color: var(--dental-gray);
    margin-bottom: 0.25rem;
}

.testimonial-author span {
    font-size: 0.75rem;
    color: rgba(100, 116, 139, 0.7);
}

/* Google Reviews CTA */
.google-reviews-cta {
    background-color: var(--dental-blue);
    border-radius: var(--border-radius-xl);
    padding: 2rem;
    text-align: center;
    color: white;
}

.reviews-content h3 {
    font-size: 1.875rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.reviews-stars {
    display: flex;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 1.5rem;
}

.reviews-content p {
    font-size: 1.125rem;
    color: #bfdbfe;
    margin-bottom: 1.5rem;
}

.reviews-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    text-align: center;
}

.stat {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    padding: 1rem;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: bold;
    color: #fbbf24;
}

.stat-label {
    color: #bfdbfe;
}

/* FAQ Section */
.faq-section {
    padding: var(--section-padding);
    background: var(--bg-gradient-subtle);
}

.faq-container {
    max-width: 48rem;
    margin: 0 auto;
}

.faq-item {
    background-color: white;
    border-radius: var(--border-radius);
    border: 1px solid #e2e8f0;
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #f8fafc;
}

.faq-question h3 {
    font-weight: 600;
    color: var(--primary);
    text-align: left;
    margin: 0;
}

.faq-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--primary);
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-answer.active {
    max-height: 200px;
    padding: 0 1.5rem 1.5rem;
}

.faq-answer p {
    color: var(--secondary);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

/* First Visit Section */
.first-visit-section {
    padding: var(--section-padding);
    background-color: white;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 64rem;
    margin: 0 auto;
}

.step-item {
    text-align: center;
}

.step-number {
    width: 4rem;
    height: 4rem;
    background-color: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1rem;
}

.step-check {
    width: 2rem;
    height: 2rem;
    color: var(--success);
    margin: 0 auto 1rem;
}

.step-item h3 {
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.75rem;
}

.step-item p {
    color: var(--secondary);
}

/* CTA Section */
.cta-section {
    padding: var(--section-padding);
    background: var(--bg-gradient-cta);
    color: white;
}

.cta-content {
    text-align: center;
    max-width: 48rem;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #bfdbfe;
}

.cta-buttons {
    margin-bottom: 3rem;
}

.qr-section {
    text-align: center;
}

.cta-qr {
    width: 8rem;
    height: 8rem;
    margin: 0 auto 1rem;
    background-color: white;
    padding: 0.5rem;
    border-radius: var(--border-radius);
}

/* Contact Section */
.contact-section {
    padding: var(--section-padding);
    background: var(--bg-gradient-hero);
    color: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-card {
    padding: var(--card-padding);
    background-color: white;
    border-radius: var(--border-radius-lg);
    color: var(--dental-blue);
}

.contact-card h3 {
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--dental-blue);
    margin-bottom: 1.5rem;
    text-align: center;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon i {
    width: 1.5rem;
    height: 1.5rem;
    color: white;
}

.contact-details {
    flex: 1;
}

.contact-details h3 {
    font-weight: 600;
    color: var(--dental-blue);
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

.contact-details p {
    color: var(--dental-gray);
    margin: 0;
}

.qr-card.large {
    padding: 2rem;
    text-align: center;
}

.qr-card.large h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.qr-container {
    background: var(--bg-gradient-subtle);
    border-radius: var(--border-radius-lg);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.qr-image.large {
    width: 12rem;
    height: 12rem;
    margin: 0 auto 1rem;
}

.qr-container p {
    color: var(--dental-gray);
}

/* Bottom CTA */
.bottom-cta {
    margin-top: 4rem;
    text-align: center;
}

.bottom-cta-content {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius-xl);
    padding: 2rem;
    max-width: 32rem;
    margin: 0 auto;
}

.bottom-cta-content h3 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.bottom-cta-content p {
    font-size: 1.125rem;
    color: #bfdbfe;
    margin-bottom: 1.5rem;
}

.bottom-cta-content strong {
    color: #fbbf24;
}

/* Footer */
.footer {
    background-color: var(--dental-blue);
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-brand {
    max-width: 20rem;
}

.footer-logo {
    height: 3rem;
    margin-bottom: 1rem;
}

.footer-section h4 {
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: #bfdbfe;
}

.footer-section li i {
    width: 1rem;
    height: 1rem;
    flex-shrink: 0;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 1rem;
    text-align: center;
    color: #bfdbfe;
}

.footer-bottom p {
    margin-bottom: 0.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-left {
        text-align: center;
    }
    
    .benefit-item {
        justify-content: flex-start;
    }
    
    .services-cta-content {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .container {
        padding: 0 1rem;
    }
}

@media (min-width: 768px) {
    .hero-left {
        text-align: left;
    }
    
    .benefit-item {
        justify-content: flex-start;
    }
}

@media (min-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr auto;
    }
    
    .services-cta-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr 1fr;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.mb-4 {
    margin-bottom: 1rem;
}

.mb-8 {
    margin-bottom: 2rem;
}

.mt-4 {
    margin-top: 1rem;
}

.flex {
    display: flex;
}

.items-center {
    align-items: center;
}

.justify-center {
    justify-content: center;
}

.gap-4 {
    gap: 1rem;
}

.w-full {
    width: 100%;
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}/* End custom CSS */