@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
    --font-heading: 'Plus Jakarta Sans', 'Inter', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* High-End Dental Clinic Palette */
    --color-primary-dark: #0f1c2c;
    /* Luxurious Deep Navy */
    --color-primary-medical: #0284c7;
    /* Calming Sky Blue */
    --color-accent-teal: #0d9488;
    /* Surgical/Medical Clean Teal */
    --color-gold: #c5a880;
    /* Luxury Gold Accents */

    --color-bg-light: #f8fafc;
    /* Slate 50 */
    --color-card-bg: rgba(255, 255, 255, 0.8);
    --border-glass: rgba(255, 255, 255, 0.4);

    --shadow-premium: 0 10px 40px -10px rgba(15, 28, 44, 0.08), 0 2px 10px -2px rgba(15, 28, 44, 0.02);
    --shadow-hover: 0 20px 50px -12px rgba(15, 28, 44, 0.15);

    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 32px;

    --transition: cubic-bezier(0.16, 1, 0.3, 1) 0.4s;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--color-bg-light);
    color: var(--color-primary-dark);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

a {
    text-decoration: none;
    transition: var(--transition);
}

img {
    max-width: 100%;
    display: block;
    border-radius: var(--radius-md);
}

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

/* NAVBAR */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--border-glass);
    display: flex;
    align-items: center;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.02);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--color-primary-dark);
}

.brand span {
    color: var(--color-accent-teal);
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
    list-style: none;
}

.nav-links a {
    color: var(--color-primary-dark);
    font-weight: 500;
    font-size: 0.95rem;
}

.nav-links a:hover {
    color: var(--color-accent-teal);
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-primary-medical), var(--color-accent-teal));
    color: white !important;
    padding: 0.75rem 1.5rem;
    border-radius: 30px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(13, 148, 136, 0.2);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(13, 148, 136, 0.35);
}

/* HERO SECTION */
.hero {
    margin-top: 80px;
    padding: 6rem 0 4rem 0;
    background: radial-gradient(circle at 10% 20%, rgba(240, 253, 250, 0.7) 0%, rgba(240, 249, 255, 0.4) 90%);
    overflow: hidden;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-left h1 {
    font-size: 3.5rem;
    color: var(--color-primary-dark);
    margin-bottom: 1.5rem;
}

.hero-left h1 span {
    background: linear-gradient(to right, var(--color-primary-medical), var(--color-accent-teal));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-left p {
    font-size: 1.15rem;
    color: #4a5568;
    margin-bottom: 2rem;
}

.stats-row {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
}

.stat-item h3 {
    font-size: 2.2rem;
    color: var(--color-accent-teal);
}

.stat-item p {
    font-size: 0.85rem;
    color: #718096;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.05em;
    margin: 0;
}

.hero-right {
    position: relative;
}

.hero-img-wrapper {
    box-shadow: var(--shadow-premium);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 8px solid white;
}

.hero-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: white;
    padding: 1.25rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-premium);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    max-width: 250px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.hero-badge i {
    font-size: 2rem;
    color: var(--color-accent-teal);
}

.hero-badge h4 {
    font-size: 0.95rem;
    margin-bottom: 0.1rem;
}

.hero-badge p {
    font-size: 0.8rem;
    color: #718096;
    margin: 0;
}

/* ABOUT SECTION */
.about {
    padding: 6rem 0;
    background: white;
}

.about-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 4rem;
    align-items: center;
}

.about-left img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-premium);
    border: 6px solid #f1f5f9;
}

.about-right .tag {
    color: var(--color-accent-teal);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
    display: inline-block;
}

.about-right h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.about-right p {
    color: #4a5568;
    margin-bottom: 1.5rem;
}

.credential-list {
    margin-top: 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.credential-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 0.95rem;
}

.credential-item i {
    color: var(--color-accent-teal);
}

/* SERVICES SECTION */
.services {
    padding: 6rem 0;
    background: var(--color-bg-light);
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 4rem auto;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-header p {
    color: #718096;
}

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

.service-card {
    background: white;
    border-radius: var(--radius-md);
    padding: 2.5rem 2rem;
    box-shadow: var(--shadow-premium);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(2, 132, 199, 0.1);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--color-accent-teal);
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.service-card p {
    color: #718096;
    font-size: 0.95rem;
}

/* GALLERY / PHOTO SHOWCASE */
.gallery {
    padding: 6rem 0;
    background: white;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 2.5rem;
    align-items: stretch;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-premium);
    height: 100%;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.04);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(to top, rgba(15, 28, 44, 0.9), transparent);
    color: white;
}

.gallery-overlay h3 {
    color: white;
    font-size: 1.4rem;
}

.gallery-overlay p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin-top: 0.25rem;
}

/* TESTIMONIALS */
.testimonials {
    padding: 6rem 0;
    background: radial-gradient(circle at 90% 80%, rgba(240, 249, 255, 0.6) 0%, rgba(255, 255, 255, 0) 70%);
}

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

.testimonial-card {
    background: white;
    border-radius: var(--radius-md);
    padding: 2rem;
    box-shadow: var(--shadow-premium);
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.stars {
    color: #eab308;
    margin-bottom: 1rem;
}

.testimonial-card p {
    font-style: italic;
    color: #4a5568;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.client-profile {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.client-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--color-primary-medical);
}

.client-info h4 {
    font-size: 0.95rem;
    margin-bottom: 0.1rem;
}

.client-info p {
    font-size: 0.75rem;
    color: #a0aec0;
    font-style: normal;
    margin: 0;
}

/* CALL TO ACTION */
.cta {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--color-primary-dark), #1A365D);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(13, 148, 136, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta h2 {
    color: white;
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
}

.cta p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
}

.cta .btn-primary {
    background: linear-gradient(135deg, #06b6d4, var(--color-accent-teal));
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

/* FOOTER */
.footer {
    background: #090f17;
    color: #a0aec0;
    padding: 4rem 0 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand h3 {
    color: white;
    margin-bottom: 1rem;
}

.footer-brand p {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    max-width: 350px;
}

.footer-contact h4,
.footer-hours h4 {
    color: white;
    margin-bottom: 1.25rem;
    font-size: 1.1rem;
}

.footer-hours-list,
.footer-contact-list {
    list-style: none;
}

.footer-hours-list li,
.footer-contact-list li {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2rem;
    text-align: center;
    font-size: 0.85rem;
}

/* RESPONSIVE DESIGN */
@media (max-width: 992px) {

    .hero .container,
    .about-grid,
    .gallery-grid,
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-left {
        text-align: center;
    }

    .stats-row {
        justify-content: center;
    }

    .services-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}