
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #ffffff;
    color: #0f172a;
    line-height: 1.7;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
}

.hero {
    max-width: 1200px;
    margin: 70px auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 70px;
    align-items: center;
}

.hero-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-badge {
    display: inline-block;
    width: max-content;
    background: #ecfdf5;
    color: #10b981;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 22px;
}

.hero h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 58px;
    line-height: 1.05;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 25px;
}

.hero p {
    font-size: 18px;
    color: #64748b;
    margin-bottom: 35px;
}

.hero-buttons {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.btn-primary {
    background: #10b981;
    color: white;
    padding: 15px 32px;
    border-radius: 10px;
    font-weight: 600;
    transition: .25s;
    box-shadow: 0 10px 25px rgba(16,185,129,.25);
}

.btn-primary:hover {
    background: #059669;
    transform: translateY(-3px);
}

.btn-secondary {
    padding: 15px 32px;
    border: 2px solid #1e3a8a;
    border-radius: 10px;
    color: #1e3a8a;
    font-weight: 600;
    transition: .25s;
}

.btn-secondary:hover {
    background: #1e3a8a;
    color: white;
}

.hero-image {
    display: flex;
    justify-content: center;
}

.hero-image img {
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0,0,0,.12);
}

.quick-cards-section {
    max-width: 1200px;
    margin: 70px auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.card {
    background: white;
    border-radius: 18px;
    padding: 35px;
    transition: .3s;
    box-shadow: 0 12px 35px rgba(0,0,0,.06);
}

.card:hover {
    transform: translateY(-8px);
}

.card-blue {
    border-top: 5px solid #1e3a8a;
    background: #f4f8ff;
}

.card-green {
    border-top: 5px solid #10b981;
    background: #f0fdf4;
}

.card-white {
    border: 1px solid #e2e8f0;
}

.card-icon {
    font-size: 34px;
    margin-bottom: 18px;
}

.card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 26px;
    margin-bottom: 15px;
}

.card p {
    color: #64748b;
    margin-bottom: 20px;
}

.card-info {
    color: #475569;
    display: block;
    line-height: 1.8;
}

.card-link {
    color: #1e3a8a;
    font-size: 28px;
    font-weight: 700;
}

.weekend-closed {
    color: #ef4444;
    font-weight: 700;
    margin-top: 12px;
}

.why-us {
    max-width: 1200px;
    margin: 100px auto;
    padding: 0 20px;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 46px;
    font-weight: 800;
    color: #1e3a8a;
    margin-bottom: 18px;
}

.section-title p {
    max-width: 720px;
    margin: auto;
    color: #64748b;
    font-size: 17px;
    line-height: 1.8;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.why-card {
    background: white;
    border-radius: 18px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,.05);
    transition: .3s;
}

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 45px rgba(0,0,0,.10);
}

.why-icon {
    font-size: 50px;
    margin-bottom: 20px;
}

.why-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    margin-bottom: 15px;
    color: #0f172a;
}

.why-card p {
    color: #64748b;
    line-height: 1.8;
}

.services-preview {
    background: #f8fafc;
    padding: 100px 20px;
}

.services-container-split {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.category-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 25px;
    padding-bottom: 12px;
    border-bottom: 3px solid #10b981;
    display: flex;
    align-items: center;
    gap: 10px;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.service-card {
    background: white;
    border-radius: 16px;
    padding: 25px 30px;
    color: inherit;
    box-shadow: 0 8px 25px rgba(0,0,0,.04);
    transition: .3s;
    border: 1px solid #eef2f7;
    display: block;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: #10b981;
    box-shadow: 0 12px 30px rgba(16,185,129,.1);
}

.service-card h3 {
    font-family: 'Montserrat', sans-serif;
    color: #0f172a;
    font-size: 20px;
    margin-bottom: 8px;
    transition: .25s;
}

.service-card:hover h3 {
    color: #10b981;
}

.service-card p {
    color: #64748b;
    font-size: 15px;
    line-height: 1.6;
}


.partners-section {
    padding: 100px 20px;
    overflow: hidden;
    background: white;
}

.partners-container {
    max-width: 1200px;
    margin: auto;
}

.partners-slider {
    width: 100%;
    overflow: hidden;
    margin-top: 50px;
}

.partners-track {
    display: flex;
    align-items: center;
    width: max-content;
    animation: partnersScroll 22s linear infinite;
}

.partners-slider:hover .partners-track {
    animation-play-state: paused;
}

.partner-item {
    width: 240px;
    height: 140px;
    margin: 0 25px;
    border-radius: 18px;
    background: white;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    box-shadow: 0 8px 25px rgba(0,0,0,.05);
}

.partner-item img {
    max-width: 170px;
    max-height: 80px;
    object-fit: contain;
    transition: .3s;
}

.partner-item:hover img {
    transform: scale(1.08);
}

@keyframes partnersScroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.img-cnas { max-height: 80px; }
.img-liamed { max-width: 180px; }
.img-reomedical { max-width: 170px; }


.cta-section {
    margin-top: 100px;
    background: linear-gradient(135deg,#10b981,#059669);
    color: white;
    padding: 90px 20px;
}

.cta-content {
    max-width: 900px;
    margin: auto;
    text-align: center;
}

.cta-content h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 25px;
}

.cta-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 40px;
    opacity: .95;
}

.cta-section .btn-primary {
    background: white;
    color: #059669;
    font-size: 18px;
    padding: 18px 40px;
    box-shadow: none;
}

.cta-section .btn-primary:hover {
    background: #f8fafc;
    transform: translateY(-4px);
}


.contact-section {
    max-width: 1200px;
    margin: 100px auto;
    padding: 0 20px;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.contact-card {
    background: white;
    padding: 35px;
    border-radius: 18px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,.05);
}

.contact-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    color: #1e3a8a;
    margin-bottom: 20px;
}

.contact-card p {
    color: #64748b;
    line-height: 1.9;
}

.contact-card a {
    color: #10b981;
    font-weight: 700;
}

.main-footer {
    margin-top: 100px;
    background: #0f172a;
    color: white;
}

.footer-container {
    max-width: 1200px;
    margin: auto;
    padding: 70px 20px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
}

.footer-logo h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    margin-bottom: 20px;
}

.footer-logo p {
    color: #cbd5e1;
    line-height: 1.8;
}

.footer-links h4,
.footer-contact h4 {
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 20px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-links a {
    color: #cbd5e1;
    transition: .25s;
}

.footer-links a:hover {
    color: #10b981;
}

.footer-contact p {
    color: #cbd5e1;
    margin-bottom: 10px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.08);
    text-align: center;
    padding: 22px;
    color: #94a3b8;
    font-size: 14px;
}

.card,
.why-card,
.service-card,
.partner-item,
.contact-card {
    transition: .30s;
}

@media(max-width: 1100px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .hero-text {
        align-items: center;
    }

    .hero h1 {
        font-size: 46px;
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media(max-width: 850px) {
    .services-container-split {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media(max-width: 768px) {
    .hero {
        margin: 40px auto;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero p {
        font-size: 16px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }

    .quick-cards-section,
    .why-grid {
        grid-template-columns: 1fr;
    }

    .partner-item {
        width: 170px;
        height: 100px;
        margin: 0 15px;
    }

    .partner-item img {
        max-width: 120px;
    }

    .section-title h2,
    .cta-content h2 {
        font-size: 34px;
    }

    .footer-logo h3 {
        font-size: 28px;
    }
}

@media(max-width: 480px) {
    .hero h1 {
        font-size: 30px;
    }

    .hero-badge {
        font-size: 12px;
    }

    .section-title h2 {
        font-size: 28px;
    }

    .card,
    .why-card,
    .service-card,
    .contact-card {
        padding: 20px;
    }

    .cta-section {
        padding: 60px 20px;
    }
}