/* Medicorn Health Care Theme */

:root {
    --medicorn-primary: #1e2a4a; /* Navy Blue */
    --medicorn-secondary: #d97706; /* Orange/Gold */
    --medicorn-light: #f8fafc;
    --medicorn-dark: #0f172a;
    --medicorn-accent: #fbaf5d;
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    line-height: 1.6;
}

/* Header Styles */
.medicorn-header {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 15px 0;
}

.medicorn-header .top-bar {
    background: var(--medicorn-light);
    padding: 8px 0;
    font-size: 0.85rem;
}

.medicorn-header .contact-info {
    display: flex;
    align-items: center;
    gap: 20px;
}

.medicorn-header .contact-info i {
    color: var(--medicorn-secondary);
    margin-right: 5px;
}

.medicorn-logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--medicorn-primary);
    text-decoration: none;
}

.medicorn-logo span {
    color: var(--medicorn-secondary);
}

.medicorn-nav {
    background: var(--medicorn-primary);
    padding: 0;
}

.medicorn-nav .navbar-nav .nav-link {
    color: white !important;
    padding: 15px 20px;
    font-weight: 500;
    transition: all 0.3s;
}

.medicorn-nav .navbar-nav .nav-link:hover {
    background: rgba(255,255,255,0.1);
    color: var(--medicorn-accent) !important;
}

.btn-book-test {
    background: var(--medicorn-secondary);
    color: white;
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    border: none;
}

.btn-book-test:hover {
    background: var(--medicorn-accent);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(217, 119, 6, 0.3);
}

/* Hero Section */
.medicorn-hero {
    position: relative;
    overflow: hidden;
}

.medicorn-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.medicorn-hero h1 .highlight {
    color: var(--medicorn-accent);
}

.medicorn-hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

@media (max-width: 768px) {
    .medicorn-hero h1 {
        font-size: 2.5rem;
    }
}

/* Section Titles */
.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--medicorn-primary);
    margin-bottom: 10px;
}

.section-subtitle {
    color: #666;
    margin-bottom: 40px;
}

.view-all-link {
    color: var(--medicorn-secondary);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.view-all-link:hover {
    color: var(--medicorn-accent);
}

/* Test Categories (By Body Organs) */
.test-category-card {
    text-align: center;
    padding: 35px 20px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    margin-bottom: 30px;
    border: 2px solid transparent;
    height: 100%;
}

.test-category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
    border-color: var(--medicorn-secondary);
}

.test-category-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #ffe4e6 0%, #fecaca 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.8rem;
    transition: all 0.3s;
}

.test-category-card:hover .test-category-icon {
    transform: scale(1.1);
}

.test-category-icon img {
    max-width: 55px;
}

.test-category-card h5 {
    color: var(--medicorn-primary);
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.btn-know-more {
    background: var(--medicorn-primary);
    color: white;
    padding: 10px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
    border: none;
}

.btn-know-more:hover {
    background: var(--medicorn-secondary);
    color: white;
    transform: translateX(3px);
}

/* Wellness Packages */
.wellness-package-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    margin-bottom: 30px;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.wellness-package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.18);
}

.wellness-package-card .package-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.wellness-package-card .package-body {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.wellness-package-card h5 {
    color: var(--medicorn-primary);
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 1.25rem;
}

.package-details {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 0.85rem;
    color: #666;
    flex-wrap: wrap;
}

.package-details span {
    background: #f0f9ff;
    padding: 8px 15px;
    border-radius: 8px;
    font-weight: 500;
    border: 1px solid #e0f2fe;
}

.package-note {
    font-size: 0.85rem;
    color: #666;
    font-style: italic;
    margin: 15px 0;
    padding: 10px 15px;
    background: #fef3c7;
    border-left: 3px solid var(--medicorn-secondary);
    border-radius: 5px;
}

.btn-book-now {
    background: var(--medicorn-secondary);
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
    border: none;
    margin-top: auto;
    text-align: center;
}

.btn-book-now:hover {
    background: var(--medicorn-accent);
    color: white;
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(217, 119, 6, 0.3);
}

.btn-book-now i {
    transition: transform 0.3s;
}

.btn-book-now:hover i {
    transform: translateX(5px);
}

/* Trusted Pathology Section */
.pathology-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 80px 0;
}

.pathology-section .section-image {
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

/* Lifestyle Categories */
.lifestyle-category {
    text-align: center;
    padding: 20px;
    transition: all 0.3s;
}

.lifestyle-category:hover {
    transform: translateY(-5px);
}

.lifestyle-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 10px;
    background: var(--medicorn-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    transition: all 0.3s;
}

.lifestyle-category:hover .lifestyle-icon {
    background: var(--medicorn-secondary);
    color: white;
}

.lifestyle-category h6 {
    color: var(--medicorn-primary);
    font-weight: 600;
    margin-top: 10px;
}

/* Promotional Banners */
.promo-banner {
    background: linear-gradient(135deg, var(--medicorn-primary) 0%, #2d3e6d 100%);
    color: white;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.promo-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background: url('/images/medicorn/medicorn-008.png') no-repeat left center;
    background-size: cover;
    opacity: 0.3;
}

.promo-banner .discount-badge {
    font-size: 4rem;
    font-weight: 700;
    color: var(--medicorn-accent);
}

.promo-banner h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

/* Order Steps */
.order-steps {
    background: white;
    padding: 80px 0;
}

.step-card {
    text-align: center;
    padding: 40px 20px;
    position: relative;
}

.step-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    background: var(--medicorn-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--medicorn-secondary);
    border: 3px solid var(--medicorn-secondary);
}

.step-card h5 {
    color: var(--medicorn-primary);
    font-weight: 700;
    margin-bottom: 10px;
}

.step-card p {
    color: #666;
    font-size: 0.95rem;
}

/* Footer */
.medicorn-footer {
    background: var(--medicorn-dark);
    color: white;
    padding: 60px 0 20px;
}

.medicorn-footer h5 {
    color: white;
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

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

.medicorn-footer ul li {
    margin-bottom: 10px;
}

.medicorn-footer ul li a {
    color: #cbd5e1;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 0.9rem;
}

.medicorn-footer ul li a:hover {
    color: var(--medicorn-accent);
    padding-left: 5px;
}

.medicorn-footer .social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    margin-right: 10px;
    color: white;
    transition: all 0.3s;
}

.medicorn-footer .social-links a:hover {
    background: var(--medicorn-secondary);
    transform: translateY(-3px);
}

.copyright {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 40px;
    padding-top: 20px;
    text-align: center;
    color: #94a3b8;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    .medicorn-hero h1 {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .promo-banner .discount-badge {
        font-size: 2.5rem;
    }
}

/* Top Tests & Categories Lists */
.top-tests-list {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.8;
}

.top-tests-list a {
    color: #666;
    text-decoration: none;
    transition: all 0.3s;
}

.top-tests-list a:hover {
    color: var(--medicorn-secondary);
}

.centers-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 0.85rem;
}

.centers-list a {
    color: #666;
    text-decoration: none;
    transition: all 0.3s;
}

.centers-list a:hover {
    color: var(--medicorn-secondary);
}

/* Call to Action Buttons */
.cta-phone {
    background: var(--medicorn-secondary);
    color: white;
    padding: 15px 30px;
    border-radius: 30px;
    font-size: 1.5rem;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
}

.cta-phone:hover {
    background: var(--medicorn-accent);
    color: white;
    transform: scale(1.05);
}

.cta-phone i {
    margin-right: 10px;
}
