/* Top Rippon */
@keyframes gradient-slide {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

.gradient-animate {
    background: linear-gradient(90deg, var(--color-top-gradient-1), var(--color-top-gradient-2), var(--color-top-gradient-3), var(--color-top-gradient-1));
    background-size: 300% 100%;
    animation: gradient-slide 13s linear infinite;
}


/* Doctor Card Shine */

@keyframes shine-burst {
    0% {
        transform: scale(0);
        opacity: 0;
    }

    20% {
        opacity: 0.6;
    }

    100% {
        transform: scale(2.5);
        opacity: 0;
    }
}

.group:hover .shine-burst {
    animation: shine-burst 0.8s ease-out forwards;
}

.download-app-button {
    background: linear-gradient(90deg, var(--color-nav-gradient-start), var(--color-nav-gradient-end));
    box-shadow: 0 8px 18px var(--color-shadow-nav);
}

:where(a, button, [onclick], [role="button"], input[type="button"], input[type="submit"], input[type="reset"], summary):not(:disabled):not([aria-disabled="true"]):not(.cursor-grab):not([class*="cursor-grab"]) {
    cursor: pointer;
}

.our-service-desktop-grid {
    display: none;
}

.our-service-desktop-card {
    border-radius: 24px;
    min-height: 240px;
    padding: 24px;
}

.our-service-desktop-title {
    font-size: 22px;
}

.our-service-desktop-arrow {
    width: 48px;
    height: 48px;
}

.our-service-desktop-icon {
    width: 78px;
    height: 78px;
}

@media (min-width: 1024px) {
    .our-service-desktop-grid {
        display: grid;
        grid-template-columns: repeat(5, minmax(0, 1fr));
        gap: 16px;
    }

    .our-service-mobile-grid {
        display: none !important;
    }
}


/* Footer */

.footer-wrapper {
    background-color: var(--color-footer-bg);
    color: var(--color-footer-muted);
    padding: 60px 20px 40px;
    font-family: var(--font-sans);
}

.footer-main {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.footer-logo img {
    max-width: 130px;
    margin-bottom: 25px;
    display: block;
}

.footer-desc {
    font-size: 15px;
    line-height: 1.6;
    color: var(--color-footer-muted);
    margin: 0;
}

.footer-title {
    color: var(--color-white);
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 25px;
}

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

.footer-list li {
    margin-bottom: 15px;
}

.footer-list a {
    color: var(--color-footer-muted);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.2s;
}

.footer-list a:hover {
    color: var(--color-white);
}

.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 18px;
    font-size: 15px;
}

.footer-contact-list i {
    font-size: 16px;
    margin-top: 3px;
}

.footer-contact-list span,
.footer-contact-list a {
    color: var(--color-footer-muted);
    text-decoration: none;
    line-height: 1.4;
}

.working-hours {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hours-row {
    display: flex;
    justify-content: flex-start;
    gap: 10px;
    font-size: 15px;
}

.hours-row .day {
    min-width: 80px;
}

.footer-bottom {
    max-width: 1200px;
    margin: 40px auto 0;
}

.footer-divider {
    border: none;
    border-top: 1px solid var(--color-border-white-soft);
    margin-bottom: 30px;
}

.bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright {
    font-size: 14px;
    margin: 0;
}

.legal-links {
    display: flex;
    gap: 30px;
}

.legal-links a {
    color: var(--color-footer-muted);
    text-decoration: none;
    font-size: 14px;
}

/* Responsive Breakpoints */

/* Tablet */
@media (max-width: 1024px) {
    .footer-main {
        grid-template-columns: repeat(2, 1fr);
        gap: 50px 30px;
    }
}

/* Mobile */
@media (max-width: 640px) {
    .footer-wrapper {
        padding: 50px 15px 30px;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: left;
    }

    .footer-logo img {
        max-width: 110px;
    }

    .bottom-flex {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .legal-links {
        gap: 20px;
    }
}
