.blog-section {
    padding: 4rem 5%;
    background-color: white;
    margin-top: 2rem;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}

.blog-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
}

.blog-title {
    font-size: 2.8rem;
    color: var(--dark);
    margin: 0;
    line-height: 1.2;
}

.view-more-btn {
    color: var(--teal);
    text-decoration: none;
    border: 2px solid var(--teal);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.view-more-btn:hover {
    background-color: var(--teal);
    color: white;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}



.blog-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.blog-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-content {
    padding: 1.5rem;
}

.blog-date {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.blog-card-title {
    color: var(--dark);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.blog-excerpt {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

@media screen and (max-width: 768px) {
    .blog-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .blog-title {
        font-size: 2rem;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }
}

footer {
    background-color: #333;
    color: #fff;
    padding: 4rem 5%;
    margin-top: 4rem;
}

.footer-content {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.footer-column h3 {
    color: var(--teal);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 0.8rem;
}

.footer-column ul li a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: var(--teal);
}

.social-links a {
    display: inline-block;
    margin-right: 1rem;
    color: #fff;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    max-width: 1100px;
    margin: 2rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 0.9rem;
    color: #999;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .footer-content {
        grid-template-columns: 1fr;
    }
}

.gallery-section {
    padding: 4rem 5%;
    max-width: 1100px;
    margin: 0 auto;
}

.gallery-header {
    text-align: center;
    margin-bottom: 3rem;
}

.gallery-title {
    font-size: 2.5rem;
    color: var(--dark);
    margin-top: 1rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

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

/* Lightbox styles */
.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.lightbox-overlay.active {
    display: flex;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90vh;
    position: relative;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 30px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 10px;
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1rem;
    }
}

/* Lightbox styles */
.lightbox-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    cursor: pointer;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90vh;
    margin: 2% auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.lightbox-image {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: #fff;
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
}

.lightbox-prev,
.lightbox-next {
    color: #fff;
    font-size: 30px;
    cursor: pointer;
    padding: 10px;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.location-section {
    padding: 4rem 5%;
    max-width: 1100px;
    margin: 0 auto;
    width: 100%;
}

.location-header {
    text-align: center;
    margin-bottom: 3rem;
}

.location-title {
    font-size: 2.5rem;
    color: var(--dark);
    margin-top: 1rem;
}

.location-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.map-container {
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.location-info {
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.location-info h3 {
    color: var(--teal);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.location-info p {
    color: var(--dark);
    line-height: 1.6;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .location-content {
        flex-direction: row;
        align-items: flex-start;
    }

    .map-container {
        flex: 2;
    }

    .location-info {
        flex: 1;
    }
}

.mission-section {
    display: flex;
    align-items: center;
    padding: 4rem 5%;
    background-color: white;
    margin-top: 2rem;
    gap: 4rem;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}

.mission-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.mission-doctor-image {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.mission-content {
    flex: 1;
}

.mission-title {
    font-size: 2.8rem;
    color: var(--dark);
    margin: 0.5rem 0 1.5rem;
    line-height: 1.2;
}

.mission-description {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

@media screen and (max-width: 768px) {
    .navbar {
        flex-direction: column;
        padding: 1rem 2%;
    }

    .nav-links {
        display: none;
        width: 100%;
        text-align: center;
        margin-top: 1rem;
    }

    .nav-links a {
        display: block;
        margin: 1rem 0;
    }

    .hero {
        flex-direction: column;
        padding: 2rem 5%;
        text-align: center;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-content {
        margin-bottom: 2rem;
    }

    .circle-background {
        width: 300px;
        height: 300px;
    }

    .stats {
        flex-direction: column;
        gap: 2rem;
    }

    .team-section,
    .about-section,
    .mission-section {
        flex-direction: column;
        padding: 2rem 5%;
        gap: 2rem;
    }

    .team-content {
        padding-left: 0;
        text-align: center;
    }

    .team-title,
    .about-title,
    .mission-title {
        font-size: 2rem;
    }

    .floating-icon {
        width: 40px;
        height: 40px;
    }

    .about-image,
    .mission-image {
        order: -1;
    }
}

@media screen and (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .circle-background {
        width: 250px;
        height: 250px;
    }

    .team-description,
    .about-description,
    .mission-description {
        font-size: 1rem;
    }
}

:root {
    --teal: #4BB6B3;
    --dark: #333333;
}

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

body {
    font-family: Arial, sans-serif;
    background-color: #f5f8f9;
}

.navbar {
    background: white;
    margin: 0 auto;
    width: 100%;
}
.inside {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 5%;
    margin: 0 auto;
    max-width: 1100px;
}

.inside li {
    display: inline-block;
    margin-left: 20px;
}

.inside li a {
    color: black;
    text-decoration: none;
    padding: 10px 15px;
    display: inline-block;
    transition: background-color 0.3s;
}

.logo img {
    height: 90px !important;
    width: fit-content !important;
    display: block;
}
.nav-links a {
    text-decoration: none;
    color: var(--dark);
    margin-left: 2rem;
    font-weight: 500;
}

.reservasi-btn {
    color: var(--teal) !important;
    border: 2px solid var(--teal);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
}

.hero {
    display: flex;
    padding: 4rem 5%;
    align-items: center;
    justify-content: space-between;
    max-width: 1100px;
    margin: 0 auto;
    width: 100%;
    gap: 2rem;
}

.hero-content {
    flex: 0 0 60%;
    max-width: 60%;
}

.hero-image {
    flex: 0 0 40%;
    max-width: 40%;
}

.hero-title {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-align: none;
}

.text-dark {
    color: var(--dark);
}

.text-teal {
    color: var(--teal);
}

.hero-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.cta-button {
    background-color: var(--teal);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-3px);
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
}

.circle-background {
    width: 400px;
    height: 400px;
    background-color: var(--teal);
    border-radius: 50%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulseBackground 5s infinite;
}

.doctor-image {
    max-width: 90%;
    height: auto;
    animation: floatImage 7s ease-in-out infinite;
}

.floating-icon {
    position: absolute;
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-icon img {
    width: 60%;
    height: 60%;
}

.tooth {
    top: 20%;
    left: 10%;
    animation: float 4s ease-in-out infinite;
}

.heart {
    top: 60%;
    right: 15%;
    animation: float 5s ease-in-out infinite;
}

.share {
    bottom: 20%;
    left: 15%;
    animation: float 4.5s ease-in-out infinite;
}

.stats {
    display: flex;
    justify-content: space-around;
    padding: 2rem 5%;
    background: white;
    margin-top: 2rem;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}

.stat-item {
    text-align: center;
}

.stat-icon {
    font-size: 2rem;
}

.stat-item h3 {
    color: var(--teal);
    margin: 0.5rem 0;
}

@keyframes pulseBackground {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

@keyframes floatImage {
    0% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0); }
}

@keyframes float {
    0% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(5deg); }
    100% { transform: translateY(0) rotate(0deg); }
}

.about-section {
    display: flex;
    align-items: center;
    padding: 4rem 5%;
    background-color: white;
    margin-top: 2rem;
    gap: 4rem;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}

.about-content {
    flex: 1;
}

.section-label {
    color: var(--teal);
    font-weight: 600;
    font-size: 1.2rem;
    display: block;
    margin-bottom: 0.5rem;
}

.about-title {
    font-size: 2.8rem;
    color: var(--dark);
    margin: 0.5rem 0 1.5rem;
    line-height: 1.2;
}

.about-description {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.about-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.about-doctor-image {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
@keyframes float {
    50% { transform: translateY(-15px) rotate(5deg); }
}
@keyframes float {
    100% { transform: translateY(0) rotate(0deg); }
}
/* Remove extra closing brace as it has no matching opening brace */
.services-section {
    padding: 4rem 5%;
    background-color: white;
    margin-top: 2rem;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}

.services-header {
    text-align: center;
    margin-bottom: 3rem;
}

.services-title {
    font-size: 2.8rem;
    color: var(--dark);
    margin: 0.5rem 0 1.5rem;
    line-height: 1.2;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

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

.service-card h3 {
    color: var(--dark);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.service-card p {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
}

.floating-whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.whatsapp-button {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: #4CAF50;
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.whatsapp-button:hover {
    background-color: #45a049;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.whatsapp-icon {
    width: 24px;
    height: 24px;
}
@keyframes float {
    100% { transform: translateY(0) rotate(0deg); }
}
/* Remove extra closing brace as it has no matching opening brace */
.services-section {
    padding: 4rem 5%;
    background-color: white;
    margin-top: 2rem;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}

.services-header {
    text-align: center;
    margin-bottom: 3rem;
}

.services-title {
    font-size: 2.8rem;
    color: var(--dark);
    margin: 0.5rem 0 1.5rem;
    line-height: 1.2;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

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

.service-card h3 {
    color: var(--dark);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.service-card p {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
}

@media screen and (max-width: 768px) {
    .services-section {
        padding: 2rem 5%;
    }

    .services-title {
        font-size: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }
}
.testimonials-section {
    padding: 4rem 5%;
    background-color: white;
    margin-top: 2rem;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 3rem;
}

.testimonials-title {
    font-size: 2.8rem;
    color: var(--dark);
    margin: 0.5rem 0 1.5rem;
    line-height: 1.2;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    text-align: center;
}

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

.testimonial-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    object-fit: cover;
}

.testimonial-text {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
    font-size: 1.1rem;
}

.testimonial-name {
    color: var(--dark);
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.testimonial-role {
    color: var(--teal);
    font-size: 0.9rem;
}

@media screen and (max-width: 768px) {
    .testimonials-section {
        padding: 2rem 5%;
    }

    .testimonials-title {
        font-size: 2rem;
    }

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

    .testimonial-card {
        padding: 1.5rem;
    }
}

.team-section {
    display: flex;
    align-items: center;
    padding: 4rem 5%;
    background-color: white;
    margin-top: 2rem;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}

.team-image-container {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
}

.team-content {
    flex: 1;
    padding-left: 4rem;
}

.team-title {
    font-size: 2.5rem;
    color: var(--dark);
    margin-bottom: 1.5rem;
}

.team-description {
    color: #666;
    line-height: 1.8;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.team-cta {
    color: var(--teal);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    font-weight: 500;
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.team-cta:hover {
    transform: translateX(5px);
}

.team-cta img {
    margin-left: 0.5rem;
    width: 24px;
    height: 24px;
}