/* Landing page - ClinicMaster style */
:root {
    --primary-medical: #0d6efd;
    --primary-dark: #0a58ca;
    --accent-teal: #20c997;
}

.landing-body {
    margin: 0;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.landing-header {
    background: linear-gradient(135deg, var(--primary-medical) 0%, var(--primary-dark) 100%);
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}

.landing-header .navbar {
    padding: 0.75rem 0;
}

.landing-header .nav-link {
    color: rgba(255,255,255,0.9) !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    border-radius: 5%;
}

.landing-header .nav-link:hover {
    color: #fff !important;
    background: rgba(255,255,255,0.15);
}

/* Butonat btn-light/btn-outline-light në header – teksti i dukshëm */
.landing-header .nav-link.btn-light {
    color: #212529 !important;
    background: rgba(255,255,255,0.95);
}

.landing-header .nav-link.btn-light:hover {
    color: #212529 !important;
    background: #fff;
}

/* Language switcher on landing header */
.landing-header .dropdown .btn-outline-secondary {
    color: rgba(255,255,255,0.9) !important;
    border-color: rgba(255,255,255,0.5);
}

.landing-header .dropdown .btn-outline-secondary:hover {
    color: #fff !important;
    border-color: #fff;
    background: rgba(255,255,255,0.1);
}

.landing-header .dropdown-menu {
    background: #fff;
}

.landing-header .dropdown-item {
    color: #212529;
}

/* Hero section */
.landing-hero {
    background: linear-gradient(135deg, rgba(13, 110, 253, 0.95) 0%, rgba(10, 88, 202, 0.95) 100%),
                url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    color: white;
    padding: 5rem 0;
    min-height: 420px;
}

.landing-hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.landing-hero .lead {
    font-size: 1.15rem;
    opacity: 0.95;
}

.landing-hero .btn-hero {
    padding: 0.75rem 2rem;
    font-weight: 600;
    border-radius: 50px;
}

/* Stats section */
.landing-stats {
    background: #fff;
    margin-top: -3rem;
    border-radius: 5%;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    padding: 2rem 0;
}

.landing-stats .stat-item {
    text-align: center;
    padding: 1rem;
}

.landing-stats .stat-num {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-medical);
}

.landing-stats .stat-label {
    font-size: 0.9rem;
    color: #6c757d;
}

/* Section titles */
.landing-section {
    padding: 4rem 0;
}

.landing-section-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.landing-section-subtitle {
    color: #6c757d;
    margin-bottom: 2.5rem;
}

/* Services cards */
.landing-service-card {
    border: none;
    border-radius: 5%;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    height: 100%;
}

.landing-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.landing-service-card .card-body {
    padding: 1.5rem;
}

.landing-service-card .bi {
    font-size: 2rem;
    color: var(--primary-medical);
}

/* Doctor cards */
.landing-doctor-card {
    border: none;
    border-radius: 5%;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
}

.landing-doctor-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.landing-doctor-card .doctor-avatar {
    height: 180px;
    background: linear-gradient(135deg, var(--primary-medical), var(--primary-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: rgba(255,255,255,0.9);
}

.landing-doctor-card .card-body {
    padding: 1.25rem;
}

.landing-doctor-card .doctor-name {
    font-weight: 600;
    font-size: 1.05rem;
}

.landing-doctor-card .doctor-spec {
    font-size: 0.85rem;
    color: #6c757d;
}

/* Appointment CTA section */
.landing-appointment-cta {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.landing-appointment-cta .card {
    border: none;
    border-radius: 5%;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

/* Pricing cards */
.landing-pricing-card {
    border: none;
    border-radius: 5%;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
}

.landing-pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 28px rgba(0,0,0,0.12);
}

.landing-pricing-card-featured {
    border: 2px solid var(--primary-medical);
    box-shadow: 0 12px 28px rgba(13, 110, 253, 0.18);
}

.pricing-amount {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-medical);
    margin-bottom: 0.5rem;
}

.pricing-amount span {
    font-size: 0.95rem;
    color: #6c757d;
    font-weight: 500;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 1rem 0 1.25rem;
}

.pricing-features li {
    padding: 0.35rem 0;
    color: #495057;
}

/* Footer */
.landing-footer {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

.landing-footer a:hover {
    color: #fff !important;
}

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}

@media (max-width: 991.98px) {
    .landing-hero {
        padding: 3.5rem 0;
        min-height: 340px;
    }

    .landing-hero h1 {
        font-size: 2rem;
    }

    .landing-section {
        padding: 2.5rem 0;
    }
}

@media (max-width: 767.98px) {
    .landing-header .navbar {
        padding: 0.5rem 0;
    }

    .landing-hero {
        padding: 2.5rem 0;
        min-height: 280px;
    }

    .landing-hero h1 {
        font-size: 1.6rem;
    }

    .landing-hero .lead {
        font-size: 1rem;
    }

    .landing-stats {
        margin-top: -1.5rem;
        padding: 1.2rem 0;
    }
}

/* Clinic screenshot style overrides */
.landing-body {
    background: #f4f8fc;
}

.landing-topbar {
    background: #ffffff;
    border-bottom: 1px solid #e6ecf4;
    padding: 0.5rem 0;
}

.landing-topbar-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0.75rem;
}

.landing-top-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #0b2c5d;
}

.landing-top-item i {
    color: #00b5e2;
    font-size: 1.05rem;
}

.landing-top-item small {
    display: block;
    font-size: 0.68rem;
    color: #5e7497;
    line-height: 1.05;
}

.landing-top-item strong {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    line-height: 1.1;
}

.landing-header {
    background: #082a63;
    box-shadow: 0 10px 25px rgba(6, 24, 59, 0.18);
}

.landing-header .navbar {
    padding: 0.55rem 0;
}

.landing-header .navbar-brand {
    font-size: 1.45rem;
    letter-spacing: 0.01em;
}

.landing-header .nav-link {
    background: transparent !important;
    color: rgba(255, 255, 255, 0.92) !important;
    font-size: 0.92rem;
}

.landing-header .nav-link:hover {
    color: #fff !important;
    opacity: 1;
}

.landing-header .landing-appointment-btn {
    border: 0 !important;
    background: linear-gradient(135deg, #18c7ef 0%, #00aede 100%) !important;
    color: #fff !important;
    border-radius: 14px !important;
    padding: 0.45rem 1.1rem !important;
    font-weight: 700;
}

.landing-header .landing-appointment-btn:hover {
    background: linear-gradient(135deg, #00aede 0%, #0b8cc7 100%) !important;
}

.landing-hero {
    background: #edf4fb;
    color: #0a2a63;
    padding: 4.5rem 0 5rem;
    position: relative;
    overflow: hidden;
}

.landing-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 78% 56%, rgba(11, 41, 95, 0.06) 0, rgba(11, 41, 95, 0.06) 32%, transparent 33%),
        radial-gradient(circle at 20% 20%, rgba(48, 164, 218, 0.07) 0, transparent 34%);
    pointer-events: none;
}

.landing-hero > .container {
    position: relative;
    z-index: 2;
}

.landing-hero-kicker {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    position: absolute;
    left: -36px;
    top: 25%;
    letter-spacing: 0.14em;
    font-size: 0.66rem;
    color: #0b2c63;
    font-weight: 700;
}

.landing-hero h1 {
    font-size: clamp(2rem, 4vw, 4rem);
    line-height: 1.08;
    color: #07255f;
    font-weight: 800;
    margin-bottom: 1rem;
}

.landing-hero h1 span {
    color: #0cb7e6;
}

.landing-hero .lead {
    color: #5b7092;
    max-width: 540px;
}

.btn-hero-primary {
    border: 0;
    background: linear-gradient(135deg, #1bc7ef 0%, #00b0dd 100%);
    color: #fff !important;
    border-radius: 12px;
    font-weight: 700;
    padding: 0.7rem 1.35rem;
}

.btn-hero-primary:hover {
    background: linear-gradient(135deg, #00b0dd 0%, #0792c9 100%);
}

.btn-hero-link {
    color: #0b2d65;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
}

.btn-hero-link:hover {
    color: #00aede;
}

.landing-hero-visual {
    min-height: 430px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-circle {
    width: 430px;
    height: 430px;
    border-radius: 50%;
    background: radial-gradient(circle at 40% 35%, #ffffff 0%, #e3edf8 67%, #d5e4f5 100%);
    box-shadow: 0 30px 60px rgba(11, 45, 101, 0.12);
}

.hero-doctor-icon {
    position: absolute;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: linear-gradient(160deg, #ffffff 0%, #f0f6ff 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 40px rgba(8, 42, 99, 0.16);
}

.hero-doctor-icon i {
    font-size: 8.5rem;
    color: #0f6fb0;
}

.hero-float-card {
    position: absolute;
    right: 62px;
    top: 95px;
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: #fff;
    display: grid;
    place-items: center;
    box-shadow: 0 12px 24px rgba(3, 32, 79, 0.18);
    color: #ef3340;
    font-size: 1.3rem;
}

.landing-stats {
    margin-top: -2rem;
    border-radius: 18px;
}

@media (max-width: 1200px) {
    .landing-topbar-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 991.98px) {
    .landing-topbar-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .landing-hero-kicker {
        display: none;
    }

    .landing-hero-visual {
        min-height: 320px;
    }

    .hero-circle {
        width: 300px;
        height: 300px;
    }

    .hero-doctor-icon {
        width: 190px;
        height: 190px;
    }

    .hero-doctor-icon i {
        font-size: 6rem;
    }

    .hero-float-card {
        right: 44px;
        top: 52px;
    }
}

@media (max-width: 575.98px) {
    .landing-topbar-grid {
        grid-template-columns: 1fr;
    }
}

.landing-features {
    background: #fff;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.65rem 1.25rem;
    color: #304969;
}

.feature-grid i {
    color: #0cb7e6;
    margin-right: 0.45rem;
}

.landing-info-card {
    background: #fff;
    border: 1px solid #e6ecf4;
    border-radius: 16px;
    padding: 1.2rem 1.25rem;
    box-shadow: 0 10px 22px rgba(6, 31, 73, 0.08);
}

.landing-info-card h6 {
    color: #0b2b63;
    margin-bottom: 0.35rem;
}

.landing-info-card ul {
    padding-left: 1rem;
    color: #48617f;
}

.landing-how {
    background: linear-gradient(180deg, #f7fbff 0%, #edf5fd 100%);
}

.how-step {
    background: #fff;
    border: 1px solid #e2ecf8;
    border-radius: 14px;
    padding: 1.1rem;
    height: 100%;
    box-shadow: 0 6px 16px rgba(6, 31, 73, 0.06);
}

.how-step span {
    display: inline-grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #0cb7e6;
    color: #fff;
    font-weight: 700;
    margin-bottom: 0.65rem;
}

.how-step h6 {
    color: #0b2b63;
    margin-bottom: 0;
}

.landing-blog-card {
    border: 1px solid #e6edf7;
    border-radius: 16px;
    box-shadow: 0 8px 18px rgba(8, 36, 81, 0.06);
}

.landing-blog-card h5 {
    color: #0a2b61;
    font-size: 1.05rem;
    line-height: 1.35;
}

.blog-link {
    color: #0cb7e6;
    text-decoration: none;
    font-weight: 700;
}

.blog-link:hover {
    color: #089fcc;
}

.landing-faq .accordion-item {
    border: 1px solid #dde7f4;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 0.6rem;
}

.landing-faq .accordion-button {
    font-weight: 600;
    color: #0b2b63;
    background: #fff;
}

.landing-faq .accordion-button:not(.collapsed) {
    background: #f0f8ff;
    color: #0a2a60;
}

.landing-platform-overview {
    background: #ffffff;
}

.landing-platform-card {
    border: 1px solid #e4ebf5;
    border-radius: 18px;
    box-shadow: 0 14px 34px rgba(8, 36, 81, 0.08);
}

.platform-feature-list {
    margin: 0 0 1rem 0;
    padding-left: 1.1rem;
}

.platform-feature-list li {
    margin-bottom: 0.45rem;
    color: #304969;
}

@media (max-width: 767.98px) {
    .feature-grid {
        grid-template-columns: 1fr;
    }
}
