/* Container Fix */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Page Wrapper */
.package-page-wrapper {
    background: #f4f7f9;
    padding: 80px 0;
}

/* Hero Section */
.package-hero {
    background: linear-gradient(rgba(0, 74, 153, 0.8), rgba(0, 74, 153, 0.8)), 
                url('https://images.unsplash.com/photo-1519494026892-80bbd2d6fd0d?auto=format&fit=crop&q=80&w=1400');
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    color: white;
    text-align: center;
}
.hero-content h1 { font-size: 3rem; font-weight: 800; }

/* Upper Info Grid */
.info-section-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 30px;
    margin-bottom: 60px;
    align-items: stretch;
}

.main-info-card {
    background: #004a99;
    color: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}
.main-info-card h2 { margin-bottom: 20px; font-size: 1.8rem; }
.main-info-card p { line-height: 1.8; opacity: 0.9; margin-bottom: 15px; }

.btn-contact {
    display: inline-block;
    padding: 12px 25px;
    background: white;
    color: #004a99;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 700;
    transition: 0.3s;
}

/* Feature List Styling */
.quick-features {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.f-item {
    background: white;
    padding: 20px;
    border-radius: 12px;
    display: flex;
    gap: 15px;
    align-items: center;
    border: 1px solid #e2e8f0;
}
.f-icon { font-size: 30px; }
.f-desc strong { color: #1e293b; display: block; }
.f-desc p { font-size: 13px; color: #64748b; margin: 0; }

/* Packages Grid Styling */
.package-title { text-align: center; margin-bottom: 40px; }
.package-title h3 { font-size: 2rem; color: #1e293b; }
.title-bar { width: 60px; height: 4px; background: #d32f2f; margin: 10px auto; }

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

/* Premium Package Card */
.p-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid #e2e8f0;
    transition: 0.3s ease;
}
.p-card:hover { transform: translateY(-10px); }

.p-badge {
    padding: 20px;
    text-align: center;
    color: white;
    font-weight: 800;
    letter-spacing: 1px;
}
.diabetes-bg { background: #008eb3; }
.cardiac-bg { background: #e63946; }

.p-content { padding: 30px; text-align: center; }
.p-content h4 { margin-bottom: 20px; color: #1e293b; }

.p-content ul { list-style: none; text-align: left; margin-bottom: 25px; }
.p-content ul li {
    padding: 10px 0;
    border-bottom: 1px solid #f1f5f9;
    font-size: 14px;
    color: #475569;
}
.p-content ul li:before { content: "✔"; color: #22c55e; margin-right: 10px; font-weight: bold; }

.p-pricing { margin-bottom: 10px; }
.p-pricing small { color: #94a3b8; text-decoration: line-through; }
.p-pricing strong { display: block; font-size: 2rem; color: #d32f2f; }

.con-offer { color: #004a99; font-weight: 700; font-size: 14px; margin-bottom: 20px; }

.btn-book-now {
    display: block;
    background: #008080;
    color: white;
    text-decoration: none;
    padding: 15px;
    border-radius: 8px;
    font-weight: 700;
    transition: 0.3s;
}

/* Responsive */
@media (max-width: 992px) {
    .info-section-grid { grid-template-columns: 1fr; }
    .hero-content h1 { font-size: 2rem; }
}