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

:root {
    --primary: #084b9a;
    --primary-dark: #063776;
    --teal: #13a8aa;
    --teal-dark: #078a8c;
    --navy: #071e4a;
    --text: #15233d;
    --muted: #637087;
    --light: #f5faff;
    --white: #ffffff;
    --border: #e4edf7;
    --shadow: 0 12px 30px rgba(14, 61, 117, 0.10);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", sans-serif;
    color: var(--text);
    background: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3 {
    font-family: "Poppins", sans-serif;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

.container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.section {
    padding: 75px 0;
    position: relative;
}

.section-numbered {
    position: relative;
}

.section-number {
    position: absolute;
    left: 0;
    top: 20px;
    background: var(--teal);
    color: white;
    min-width: 28px;
    height: 28px;
    padding: 0 8px;
    border-radius: 3px;
    font-size: 13px;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
}

.section-heading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin-bottom: 35px;
}

.section-heading h2 {
    color: var(--navy);
    font-size: clamp(25px, 3vw, 34px);
    text-align: center;
    white-space: nowrap;
}
.bread {
    display: flex;
    justify-content: space-between;
}
.section-heading .line {
    width: 105px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary));
}

.section-heading .line:last-child {
    background: linear-gradient(90deg, var(--primary), transparent);
}

.eyebrow {
    color: var(--teal-dark);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 1.3px;
    margin-bottom: 10px;
}

.btn {
    min-height: 48px;
    padding: 12px 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 9px;
    font-weight: 700;
    font-size: 14px;
    border: 1px solid transparent;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    cursor: pointer;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(5, 67, 145, 0.18);
}

.btn-primary {
    color: white;
    background: linear-gradient(135deg, #0a55aa, #063f8c);
}

.btn-whatsapp {
    color: white;
    background: #18b95a;
}

.btn-outline {
    color: var(--primary);
    background: white;
    border-color: var(--primary);
}

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

.btn-light {
    background: white;
    color: var(--primary);
    border-color: rgba(255, 255, 255, 0.7);
}

.btn.large {
    padding-left: 30px;
    padding-right: 30px;
}

/* Header */

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.97);
    border-bottom: 1px solid #edf2f8;
    backdrop-filter: blur(14px);
}

.header-inner {
    min-height: 82px;
    display: flex;
    align-items: center;
    gap: 25px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 9px;
    min-width: 225px;
}

.brand-mark {
    width: 45px;
    height: 45px;
    display: grid;
    place-items: center;
    border: 5px solid var(--primary);
    border-radius: 12px;
    color: var(--teal);
    font-size: 27px;
    line-height: 1;
}

.brand strong {
    display: block;
    color: var(--primary);
    font-size: 26px;
    line-height: 0.95;
    letter-spacing: 1px;
}

.brand b {
    display: block;
    color: var(--teal);
    font-size: 14px;
    letter-spacing: 0.5px;
    line-height: 1.2;
}

.brand small {
    display: block;
    color: #61708a;
    font-size: 7px;
    line-height: 1.2;
}

.main-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    flex: 1;
}

.main-nav a {
    color: #16233e;
    font-size: 13px;
    font-weight: 600;
    padding: 29px 0 25px;
    position: relative;
}

.main-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 17px;
    height: 3px;
    background: var(--primary);
    transform: scaleX(0);
    transition: transform 0.2s ease;
}

.main-nav a:hover::after,
.main-nav a.active::after {
    transform: scaleX(1);
}

.header-cta {
    background: linear-gradient(135deg, #0b58aa, #073c83);
    color: white;
    padding: 13px 21px;
    border-radius: 9px;
    font-weight: 700;
    font-size: 13px;
    white-space: nowrap;
}

.mobile-menu-btn {
    display: none;
    border: 0;
    background: transparent;
    width: 40px;
    height: 40px;
    cursor: pointer;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--primary);
    margin: 5px auto;
}

/* Hero */

.hero {
    min-height: 480px;
    overflow: hidden;
    background: linear-gradient(90deg, #ffffff 0%, #f7fbff 42%, #dceefd 100%);
}

.hero-grid {
    min-height: 480px;
    display: grid;
    grid-template-columns: 47% 53%;
    align-items: center;
    position: relative;
}

.hero-content {
    position: relative;
    z-index: 3;
    padding: 45px 0 45px 35px;
}

.hero-content .section-number {
    top: 20px;
    left: 0;
}

.hero h1 {
    color: var(--primary);
    font-size: clamp(48px, 6vw, 78px);
    line-height: 0.98;
    letter-spacing: -2px;
    margin-bottom: 12px;
}

.hero h1 span {
    color: var(--teal);
    font-size: 0.42em;
    letter-spacing: -0.2px;
    display: inline-block;
    margin-top: 12px;
}

.hero h2 {
    color: var(--navy);
    font-size: clamp(18px, 2vw, 25px);
    max-width: 480px;
    margin-bottom: 8px;
}

.hero-copy {
    max-width: 520px;
    color: #53627a;
    font-size: 14px;
    margin-bottom: 22px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.hero-visual {
    height: 100%;
    position: relative;
    overflow: hidden;
    transform: translateY(25px);
}

.hero-visual img {
    width: 100%;
    height: 100%;
    min-height: 480px;
    object-fit: cover;
    object-position: center;
    mix-blend-mode: multiply;
}

.hero-image-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, #f7fbff 0%, transparent 32%);
    pointer-events: none;
}

/* Services */

.services-section {
    background: white;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.service-card {
    min-height: 130px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px 15px;
    background: white;
    border: 1px solid var(--border);
    border-radius: 14px;
    box-shadow: var(--shadow);
    transition: transform 0.25s ease;
}

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

.service-icon {
    flex: 0 0 50px;
    width: 50px;
    height: 50px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    font-size: 25px;
}

.service-icon.blue {
    color: white;
    background: var(--primary);
}

.service-icon.red {
    color: white;
    background: #ed3744;
}

.service-icon.teal {
    color: white;
    background: #51a9c2;
}

.service-icon.purple {
    color: white;
    background: #7655b4;
}

.service-icon.orange {
    color: white;
    background: #f3a90b;
}

.service-card h3 {
    color: #14223d;
    font-size: 17px;
    line-height: 1.25;
    margin-bottom: 7px;
}

.service-card p {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.5;
}

/* Benefits */

.benefits-section {
    padding: 0 0 45px;
    background: #f8fbff;
}

.benefit-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    border: 1px solid #e5edf5;
    border-radius: 16px;
    overflow: hidden;
    background: white;
}

.benefit-item {
    min-height: 165px;
    padding: 24px 14px;
    text-align: center;
    border-right: 1px solid #dfe9f2;
}

.benefit-item:last-child {
    border-right: 0;
}

.benefit-item > span {
    display: block;
    color: var(--teal);
    font-size: 31px;
    height: 42px;
    margin-bottom: 10px;
}

.benefit-item h3 {
    color: var(--primary);
    font-size: 16px;
    margin-bottom: 7px;
}

.benefit-item p {
    color: var(--muted);
    font-size: 12px;
    line-height: 1.45;
}

/* Workflow */

.workflow-section {
    background: white;
}

.workflow {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 14px;
}

.workflow-step {
    width: 175px;
    text-align: center;
}

.step-icon {
    width: 68px;
    height: 68px;
    display: grid;
    place-items: center;
    margin: 0 auto 8px;
    border-radius: 50%;
    border: 2px solid #a7d8df;
    color: var(--primary);
    background: white;
    font-size: 25px;
    box-shadow: 0 6px 16px rgba(16, 88, 140, 0.08);
}

.workflow-step strong {
    color: var(--teal-dark);
    font-size: 11px;
}

.workflow-step h3 {
    color: var(--navy);
    font-size: 17px;
    margin: 3px 0 4px;
}

.workflow-step p {
    color: var(--muted);
    font-size: 13px;
    line-height: 1.45;
}

.workflow-arrow {
    color: var(--primary);
    font-size: 28px;
    margin-top: 28px;
}

/* Home Services */

.home-services {
    padding: 45px 0;
    background: #fbfdff;
}

.home-service-list {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    background: white;
    border: 1px solid #e1ebf4;
    border-radius: 14px;
    overflow: hidden;
}

.home-service-list > div {
    min-height: 120px;
    padding: 20px 10px;
    text-align: center;
    border-right: 1px solid #e1ebf4;
}

.home-service-list > div:last-child {
    border-right: 0;
}

.home-service-list span {
    display: block;
    font-size: 32px;
    margin-bottom: 8px;
}

.home-service-list strong {
    color: var(--navy);
    font-size: 11px;
    line-height: 1.3;
}

.center-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    margin-top: 20px;
}

.text-action {
    color: var(--primary);
    font-weight: 700;
    font-size: 14px;
}

.whatsapp-text {
    color: #12a956;
}

/* Partners */

.partners-section {
    padding: 50px 0;
}

.partner-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
}

.partner-card {
    min-height: 115px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 15px;
    border: 1px solid var(--border);
    border-radius: 14px;
    box-shadow: var(--shadow);
    background: white;
    text-align: center;
}

.partner-card strong {
    color: var(--primary);
    font-size: 22px;
    line-height: 1;
}

.partner-card span {
    color: #59667a;
    font-size: 25px;
}

.partner-card .crl {
    color: #d42b2b;
    font-size: 30px;
}

.partner-card .star {
    color: #18508b;
}

.partner-card .national {
    font-size: 17px;
}

.partner-card .alpha {
    color: #6c43a0;
    font-size: 29px;
}

/* About */

.about-section {
    background: #f6faff;
}

.about-grid {
    display: grid;
    grid-template-columns: 45% 55%;
    align-items: center;
    gap: 55px;
}

.about-image {
    overflow: hidden;
    border-radius: 16px;
    box-shadow: var(--shadow);
}

.about-image img {
    width: 100%;
    height: 270px;
    object-fit: contain;
}

.about-content h2 {
    color: var(--navy);
    font-size: clamp(28px, 4vw, 42px);
    line-height: 1.15;
    margin-bottom: 15px;
}

.about-content p {
    color: var(--muted);
    max-width: 610px;
    margin-bottom: 12px;
    font-size: 14px;
}

/* Stats */

.stats-section {
    padding: 0;
    background: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    background: linear-gradient(135deg, #064c9e, #073879);
    border-radius: 14px;
    color: white;
    overflow: hidden;
    position: relative;
}

.stats-grid .section-number {
    top: -7px;
}

.stat {
    min-height: 105px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.stat:last-child {
    border-right: 0;
}

.stat span {
    color: #16c1b9;
    font-size: 22px;
}

.stat strong {
    font-size: 18px;
    font-family: "Poppins", sans-serif;
}

.stat small {
    color: #d4e7ff;
    font-size: 16px;
}

/* Testimonials */

.testimonials-section {
    background: white;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.testimonial-card {
    position: relative;
    min-height: 170px;
    padding: 30px 25px 20px;
    border: 1px solid var(--border);
    border-radius: 14px;
    box-shadow: var(--shadow);
}

.quote {
    position: absolute;
    top: 10px;
    left: 18px;
    color: var(--primary);
    font-family: Georgia, serif;
    font-size: 48px;
    line-height: 1;
    opacity: 0.9;
}

.testimonial-card p {
    color: #56647a;
    font-size: 13px;
    margin: 18px 0;
}

.rating {
    color: #ffae00;
    font-size: 14px;
    font-weight: 800;
}

.rating span {
    color: #4c5970;
    font-size: 11px;
    font-weight: 600;
    margin-left: 5px;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 20px;
}

.slider-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #c8d2df;
}

.slider-dots span.active {
    width: 24px;
    border-radius: 5px;
    background: var(--primary);
}

/* CTA */

.cta-section {
    padding: 0 0 55px;
}

.cta-inner {
    min-height: 155px;
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 30px 45px;
    border-radius: 15px;
    color: white;
    background:
        linear-gradient(90deg, rgba(0, 110, 165, 0.95), rgba(10, 150, 174, 0.9)),
        url("../assets/hero-healthcare.jpg") center / cover;
    box-shadow: 0 15px 35px rgba(4, 103, 151, 0.18);
}

.cta-inner .section-number {
    top: 20px;
    left: 10px;
}

.cta-inner > div:nth-of-type(1) {
    flex: 1;
}

.cta-inner h2 {
    font-size: 32px;
    margin-bottom: 2px;
}

.cta-inner p {
    color: #e2fbff;
}

.cta-actions {
    display: flex;
    gap: 10px;
}

/* Booking */

.booking-section {
    background: #f5faff;
}

.booking-grid {
    display: grid;
    grid-template-columns: 35% 65%;
    align-items: center;
    gap: 35px;
}

.booking-grid h2 {
    color: var(--navy);
    font-size: 34px;
    line-height: 1.15;
    margin-bottom: 12px;
}

.booking-grid > div > p:not(.eyebrow) {
    color: var(--muted);
    max-width: 430px;
}

.booking-form {
    padding: 28px;
    background: white;
    border: 1px solid var(--border);
    border-radius: 16px;
    box-shadow: var(--shadow);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.booking-form input {
    width: 100%;
    min-height: 49px;
    margin-bottom: 12px;
    padding: 12px 14px;
    border: 1px solid #dbe6f0;
    border-radius: 8px;
    outline: none;
    font-family: inherit;
    font-size: 13px;
}

.booking-form input:focus {
    border-color: var(--teal);
    box-shadow: 0 0 0 3px rgba(19, 168, 170, 0.08);
}

.form-message {
    display: none;
    color: var(--teal-dark);
    font-size: 12px;
    font-weight: 700;
    margin-top: 10px;
}

/* Footer */

.site-footer {
    color: white;
    background: #061b45;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1.4fr 1.25fr;
    gap: 45px;
    padding: 55px 0 35px;
}

.footer-column {
    position: relative;
}

.footer-column .section-number {
    top: -15px;
    left: 0;
}

.footer-brand {
    padding-left: 0;
}

.footer-logo {
    min-width: 0;
    margin-bottom: 18px;
}

.footer-logo strong {
    color: white;
}

.footer-logo b {
    color: #20bfc0;
}

.footer-logo small {
    color: #9db4d2;
}

.footer-brand p {
    color: #aabbd1;
    max-width: 270px;
    font-size: 12px;
}

.footer-column h3 {
    color: white;
    font-size: 16px;
    margin-bottom: 15px;
}

.footer-column > a,
.footer-column > p {
    display: block;
    color: #b9c8da;
    font-size: 12px;
    margin-bottom: 8px;
}

.footer-column > a:hover {
    color: #29c4c2;
}

.socials {
    display: flex;
    gap: 8px;
    margin-top: 18px;
}

.socials a {
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    color: white;
    background: #0b55a0;
    border-radius: 50%;
    font-weight: 800;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 18px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.13);
    color: #91a8c5;
    font-size: 11px;
}

.footer-bottom div {
    display: flex;
    gap: 10px;
}

.footer-bottom a:hover {
    color: white;
}

/* Floating buttons */

.floating-actions {
    position: fixed;
    right: 18px;
    bottom: 22px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 90;
}

.floating-actions a {
    min-width: 88px;
    min-height: 47px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    color: white;
    border-radius: 11px;
    font-size: 11px;
    font-weight: 800;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
}

.float-whatsapp {
    background: #1abf5b;
}

.float-call {
    background: #0750a1;
}

/* Responsive */

@media (max-width: 1050px) {
    .main-nav {
        gap: 14px;
    }

    .header-inner {
        gap: 14px;
    }

    .brand {
        min-width: 205px;
    }

    .service-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .benefit-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .benefit-item:nth-child(3) {
        border-right: 0;
    }

    .benefit-item:nth-child(-n + 3) {
        border-bottom: 1px solid #dfe9f2;
    }

    .home-service-list {
        grid-template-columns: repeat(4, 1fr);
    }

    .home-service-list > div:nth-child(4) {
        border-right: 0;
    }

    .home-service-list > div {
        border-bottom: 1px solid #e1ebf4;
    }

    .partner-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 820px) {
    .container {
        width: min(100% - 28px, 680px);
    }

    .site-header {
        position: sticky;
    }

    .header-inner {
        min-height: 72px;
        flex-wrap: wrap;
    }

    .brand {
        flex: 1;
    }

    .mobile-menu-btn {
        display: block;
        order: 2;
    }

    .header-cta {
        order: 3;
        padding: 10px 14px;
    }

    .main-nav {
        display: none;
        width: 100%;
        order: 4;
        flex-direction: column;
        gap: 0;
        align-items: stretch;
        border-top: 1px solid var(--border);
        padding: 7px 0;
    }

    .main-nav.open {
        display: flex;
    }

    .main-nav a {
        padding: 11px 6px;
    }

    .main-nav a::after {
        bottom: 4px;
    }

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

    .hero {
        min-height: auto;
    }

    .hero-content {
        padding: 65px 15px 30px;
    }

    .hero-visual {
        min-height: 300px;
        transform: translateY(0);
    }

    .hero-visual img {
        min-height: 300px;
    }

    .hero-image-glow {
        background: linear-gradient(180deg, #f7fbff 0%, transparent 30%);
    }

    .benefit-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .benefit-item:nth-child(2n) {
        border-right: 0;
    }

    .benefit-item:nth-child(3) {
        border-right: 1px solid #dfe9f2;
    }

    .benefit-item:nth-child(-n + 4) {
        border-bottom: 1px solid #dfe9f2;
    }

    .workflow {
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .workflow-step {
        width: 100%;
    }

    .workflow-arrow {
        display: none;
    }

    .home-service-list {
        grid-template-columns: repeat(2, 1fr);
    }

    .home-service-list > div:nth-child(2n) {
        border-right: 0;
    }

    .home-service-list > div:nth-child(4),
    .home-service-list > div:nth-child(6) {
        border-right: 0;
    }

    .partner-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-grid,
    .booking-grid {
        grid-template-columns: 1fr;
    }

    .about-image {
        order: 2;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat:nth-child(2n) {
        border-right: 0;
    }

    .stat {
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }

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

    .cta-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .cta-actions {
        width: 100%;
        flex-wrap: wrap;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 560px) {
    .container {
        width: calc(100% - 24px);
    }

    .section {
        padding: 55px 0;
    }

    .section-number {
        left: 0;
        top: 12px;
    }

    .section-heading {
        gap: 8px;
    }

    .section-heading h2 {
        white-space: normal;
        font-size: 24px;
    }

    .section-heading .line {
        width: 35px;
    }

    .brand {
        min-width: 0;
    }

    .brand-mark {
        width: 39px;
        height: 39px;
        border-width: 4px;
        font-size: 23px;
    }

    .brand strong {
        font-size: 21px;
    }

    .brand b {
        font-size: 11px;
    }

    .brand small {
        font-size: 6px;
    }

    .header-cta {
        display: none;
    }

    .hero-content {
        padding-left: 12px;
        padding-right: 12px;
    }

    .hero h1 {
        font-size: 48px;
    }

    .hero h1 span {
        font-size: 20px;
        line-height: 1.2;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .service-grid,
    .benefit-grid,
    .partner-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .benefit-item {
        border-right: 0 !important;
        border-bottom: 1px solid #dfe9f2 !important;
    }

    .benefit-item:last-child {
        border-bottom: 0 !important;
    }

    .home-service-list {
        grid-template-columns: repeat(2, 1fr);
    }

    .home-service-list > div {
        border-right: 1px solid #e1ebf4 !important;
    }

    .home-service-list > div:nth-child(2n) {
        border-right: 0 !important;
    }

    .center-actions {
        flex-direction: column;
        gap: 14px;
    }

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

    .cta-inner {
        padding: 28px 25px;
    }

    .cta-inner h2 {
        font-size: 26px;
    }

    .cta-actions .btn {
        width: 100%;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .booking-form {
        padding: 20px;
    }

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

    .floating-actions {
        right: 10px;
        bottom: 10px;
    }

    .floating-actions a {
        min-width: 82px;
    }
}

/* =========================================================
   ARYA HEALTHCARE LOGO FIX
   Keep the complete image visible and preserve its ratio.
========================================================= */

.brand {
    display: flex;
    align-items: center;
    width: 225px;
    min-width: 225px;
    height: auto;
    overflow: visible !important;
}

.brand img {
    display: block;
    width: 225px;
    height: auto !important;
    max-width: 225px;
    min-width: 0;
    min-height: 0;
    object-fit: contain;
    object-position: left center;
}

/* Never crop the logo or its bottom tagline */
.site-header,
.header-inner,
.brand,
.brand a {
    overflow: visible !important;
}

.brand a {
    display: flex;
    align-items: center;
    height: auto;
}

/* Footer logo */
.footer-logo img {
    display: block;
    width: 225px;
    height: auto !important;
    max-width: 225px;
    object-fit: contain;
}

@media (max-width: 1050px) {
    .brand {
        width: 205px;
        min-width: 205px;
    }

    .brand img {
        width: 205px;
        max-width: 205px;
    }
}

@media (max-width: 560px) {
    .brand {
        width: 190px;
        min-width: 0;
    }

    .brand img {
        width: 190px;
        max-width: 190px;
    }
}


/* ===== Professional Inner Pages ===== */
.page-hero{position:relative;overflow:hidden;padding:34px 0 34px;background:linear-gradient(120deg,#eff9ff 0%,#fff 52%,#e9fbf8 100%)}
.page-hero:after{content:"";position:absolute;width:460px;height:460px;border:1px solid rgba(19,168,170,.18);border-radius:50%;right:-180px;top:-180px}.breadcrumb{font-size:13px;color:#6b7890;margin-bottom:22px}.breadcrumb a{color:var(--primary);font-weight:700}.hero-copy h1{font-size:clamp(40px,5vw,64px);line-height:1.08;color:var(--navy);max-width:760px}.hero-copy h1 em{font-style:normal;color:var(--teal)}.hero-copy p{max-width:690px;color:var(--muted);font-size:18px;margin:20px 0 30px}.hero-actions{display:flex;gap:13px;flex-wrap:wrap}.btn-outline{display:inline-flex;align-items:center;justify-content:center;padding:13px 22px;border:1px solid #cbd9e9;border-radius:8px;color:var(--primary);font-weight:800;background:#fff}.hero-media{margin-top:38px;border-radius:24px;overflow:hidden;box-shadow:0 24px 60px rgba(7,30,74,.14);position:relative}.hero-media img{width:100%;height:390px;object-fit:cover}.hero-media .media-tag{position:absolute;left:22px;bottom:22px;background:#fff;padding:12px 17px;border-radius:10px;font-weight:800;color:var(--navy);box-shadow:0 8px 24px rgba(0,0,0,.1)}
.detail-intro{padding:76px 0}.detail-grid{display:grid;grid-template-columns:1.15fr .85fr;gap:58px;align-items:center}.eyebrow{display:inline-block;color:var(--teal-dark);font-size:12px;font-weight:900;letter-spacing:1.7px;text-transform:uppercase;margin-bottom:10px}.detail-grid h2,.content-title{font-size:clamp(30px,4vw,46px);line-height:1.12;color:var(--navy);margin-bottom:18px}.detail-grid p,.rich-copy p{color:var(--muted);margin:0 0 15px}.check-list{display:grid;grid-template-columns:1fr 1fr;gap:12px;margin-top:24px}.check-list div{padding:14px 16px;background:#f6fbff;border:1px solid #e4eef7;border-radius:10px;color:#31445e;font-weight:700}.check-list div:before{content:'✓';color:var(--teal);font-weight:900;margin-right:9px}.detail-image{border-radius:22px;overflow:hidden}.detail-image img{width:100%;height:420px;object-fit:cover}
.feature-band{padding:76px 0;background:#f5faff}.feature-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px}.feature-card{background:#fff;border:1px solid var(--border);padding:29px;border-radius:16px;transition:.25s;box-shadow:0 8px 25px rgba(14,61,117,.045)}.feature-card:hover{transform:translateY(-6px);box-shadow:0 16px 35px rgba(14,61,117,.1)}.feature-card .icon{width:48px;height:48px;border-radius:12px;display:grid;place-items:center;background:#e7f8f7;color:var(--teal-dark);font-size:22px;margin-bottom:17px}.feature-card h3{color:var(--navy);margin-bottom:8px}.feature-card p{color:var(--muted);font-size:14px}
.process{padding:78px 0}.process-row{display:grid;grid-template-columns:repeat(4,1fr);gap:18px;position:relative}.process-card{position:relative;padding:25px;background:#fff;border:1px solid var(--border);border-radius:15px}.process-card .step{font-size:12px;color:var(--teal-dark);font-weight:900;letter-spacing:1px}.process-card h3{color:var(--navy);margin:8px 0}.process-card p{color:var(--muted);font-size:14px}.dark-band{padding:76px 0;background:linear-gradient(115deg,#062f68,#087da1);color:#fff}.dark-band .content-title{color:#fff}.dark-band p{color:#dcecf8}.dark-band .feature-grid{margin-top:30px}.dark-band .feature-card{background:rgba(255,255,255,.08);border-color:rgba(255,255,255,.15);box-shadow:none}.dark-band .feature-card h3{color:#fff}.dark-band .feature-card p{color:#d4e7f4}.dark-band .feature-card .icon{background:rgba(255,255,255,.12);color:#fff}
.faq-section{padding:78px 0}.faq-list{max-width:900px;margin:0 auto}.faq-item{border-bottom:1px solid #dfe8f1;padding:20px 0}.faq-item summary{cursor:pointer;font-weight:800;color:var(--navy);font-size:17px}.faq-item p{color:var(--muted);padding:12px 30px 0 0;margin:0}.booking-band{padding:66px 0;background:#eaf9f7}.booking-wrap{display:flex;justify-content:space-between;align-items:center;gap:25px}.booking-wrap h2{color:var(--navy);font-size:34px}.booking-wrap p{color:var(--muted);margin-top:6px}
.service-listing{padding:75px 0}.service-detail-card{display:grid;grid-template-columns:130px 1fr auto;gap:25px;align-items:center;padding:25px;border:1px solid var(--border);border-radius:18px;margin-bottom:16px;background:#fff;box-shadow:0 7px 24px rgba(14,61,117,.05)}.service-detail-card img{width:130px;height:100px;object-fit:contain;border-radius:13px}.service-detail-card h3{color:var(--navy);margin-bottom:6px}.service-detail-card p{color:var(--muted);margin:0;font-size:14px}.service-link{color:var(--primary);font-weight:900;white-space:nowrap}
.contact-layout{display:grid;grid-template-columns:.9fr 1.1fr;gap:25px}.contact-panel,.form-panel{background:#fff;border:1px solid var(--border);border-radius:20px;padding:30px;box-shadow:0 12px 30px rgba(14,61,117,.06)}.contact-panel{background:linear-gradient(145deg,#073a78,#0a87a3);color:#fff}.contact-panel h2{font-size:32px}.contact-panel p{color:#d9e9f5}.contact-item{padding:18px 0;border-bottom:1px solid rgba(255,255,255,.15)}.contact-item:last-child{border-bottom:0}.contact-item strong{display:block;margin-bottom:4px}.contact-item span{color:#dcebf5}.form-grid{display:grid;grid-template-columns:1fr 1fr;gap:16px}.form-group{display:flex;flex-direction:column;gap:7px}.form-group.full{grid-column:1/-1}.form-group label{font-size:13px;font-weight:800;color:var(--navy)}.form-group input,.form-group select,.form-group textarea{width:100%;border:1px solid #d7e2ed;border-radius:9px;padding:13px 14px;font:inherit;outline:none}.form-group textarea{min-height:120px;resize:vertical}.form-group input:focus,.form-group select:focus,.form-group textarea:focus{border-color:var(--teal)}
@media(max-width:800px){.detail-grid,.contact-layout{grid-template-columns:1fr}.feature-grid{grid-template-columns:1fr 1fr}.process-row{grid-template-columns:1fr 1fr}.service-detail-card{grid-template-columns:90px 1fr}.service-link{grid-column:2}.service-detail-card img{width:90px;height:80px}.check-list{grid-template-columns:1fr}.hero-media img{height:280px}.booking-wrap{flex-direction:column;align-items:flex-start}}
@media(max-width:560px){.feature-grid,.process-row,.form-grid{grid-template-columns:1fr}.service-detail-card{grid-template-columns:1fr}.service-detail-card img{width:100%;height:180px}.service-link{grid-column:auto}.page-hero{padding:62px 0}.detail-intro,.feature-band,.process,.faq-section{padding:55px 0}}

.service-link-card{cursor:pointer}.service-link-card:focus{outline:3px solid rgba(19,168,170,.25);outline-offset:3px}
.band-eyebrow{color:#9be4df!important}

/* Shared header search */
.nav-search{display:flex;align-items:center;width:190px;height:40px;margin-left:12px;border:1px solid #d7e1e8;border-radius:24px;background:#fff;overflow:hidden;transition:.2s ease}
.nav-search input{width:100%;height:100%;padding:0 12px;border:0;outline:0;background:transparent;font-size:14px;color:#17324d}
.nav-search button{width:42px;height:100%;border:0;background:transparent;cursor:pointer;font-size:20px;color:#17324d}
.nav-search:focus-within{border-color:#168dcc;box-shadow:0 0 0 3px rgba(22,141,204,.10)}
@media(max-width:1100px){.nav-search{width:170px}}
@media(max-width:991px){.nav-search{width:calc(100% - 30px);margin:15px}}
.search-results-page{padding:70px 0}.search-results-head{margin-bottom:28px}.search-results-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:22px}.search-result-card{display:block;padding:25px;border:1px solid #e5edf2;border-radius:16px;background:#fff;box-shadow:0 8px 25px rgba(25,65,90,.06);transition:.2s}.search-result-card:hover{transform:translateY(-3px);box-shadow:0 14px 32px rgba(25,65,90,.10)}.search-result-card h3{margin:0 0 8px}.search-result-card p{margin:0 0 16px;color:#607587}.search-result-card .read-more{font-weight:700;color:#168dcc}@media(max-width:767px){.search-results-grid{grid-template-columns:1fr}}
