/* ============================================
   PREMIUM HEALTH HUB - WORLD-CLASS HEALTHCARE PLATFORM
   ============================================ */

/* Health Hub Hero Header with Video Background */
.health-hero-header {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 4rem;
}

.health-hero-video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.health-hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6);
}

.health-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(16, 122, 193, 0.7) 0%,
        rgba(31, 97, 141, 0.8) 50%,
        rgba(27, 67, 95, 0.85) 100%
    );
    z-index: 2;
}

.health-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 3rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.health-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 2rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 2rem;
    animation: badge-pulse 3s ease-in-out infinite;
}

.health-hero-badge i {
    font-size: 1.3rem;
    color: #4dd0e1;
}

@keyframes badge-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.health-hero-title {
    font-size: 4.5rem;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    letter-spacing: 1px;
}

.health-hero-subtitle {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto 3rem;
    font-weight: 300;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.health-hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.hero-stat {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    transition: all 0.3s ease;
}

.hero-stat:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-5px);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 900;
    color: #4dd0e1;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 10px rgba(77, 208, 225, 0.5);
}

.stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

/* Health Images Gallery */
.health-images-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    padding: 3rem 2rem;
    max-width: 1400px;
    margin: 0 auto 4rem;
}

.health-image-card {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    height: 300px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease;
    cursor: pointer;
}

.health-image-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.health-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.health-image-card:hover img {
    transform: scale(1.1);
}

.image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    color: #ffffff;
    padding: 2rem 1.5rem 1.5rem;
    font-size: 1.2rem;
    font-weight: 600;
    text-align: center;
}

/* Premium Health Programs Section */
.premium-health-programs-section {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, rgba(16, 122, 193, 0.05), rgba(77, 208, 225, 0.05));
    border-radius: 30px;
    margin: 0 2rem 4rem;
}

.section-header-premium {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title-premium {
    font-size: 3.5rem;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.section-title-premium i {
    color: #4dd0e1;
    font-size: 3rem;
}

.section-subtitle-premium {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.health-programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.health-program-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.health-program-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #107ac1, #4dd0e1);
}

.health-program-card:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(77, 208, 225, 0.5);
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(16, 122, 193, 0.3);
}

.program-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: linear-gradient(135deg, #107ac1, #4dd0e1);
    color: #ffffff;
    padding: 0.5rem 1.2rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(77, 208, 225, 0.4);
}

.wellness-badge {
    background: linear-gradient(135deg, #6a11cb, #2575fc);
}

.preventive-badge {
    background: linear-gradient(135deg, #11998e, #38ef7d);
}

.care-badge {
    background: linear-gradient(135deg, #ee0979, #ff6a00);
}

.emergency-badge {
    background: linear-gradient(135deg, #f12711, #f5af19);
    animation: emergency-pulse 2s ease-in-out infinite;
}

@keyframes emergency-pulse {
    0%, 100% { box-shadow: 0 4px 15px rgba(241, 39, 17, 0.4); }
    50% { box-shadow: 0 4px 25px rgba(241, 39, 17, 0.7); }
}

.program-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #107ac1, #4dd0e1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    box-shadow: 0 8px 25px rgba(77, 208, 225, 0.3);
}

.program-icon i {
    font-size: 2.5rem;
    color: #ffffff;
}

.program-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1rem;
}

.program-description {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.program-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

.feature-item i {
    color: #4dd0e1;
    font-size: 1.1rem;
}

.program-pricing {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(77, 208, 225, 0.1);
    border-radius: 15px;
    border-left: 4px solid #4dd0e1;
}

.program-pricing .price {
    font-size: 3rem;
    font-weight: 900;
    color: #4dd0e1;
}

.program-pricing .price-period {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
}

.btn-program-action {
    width: 100%;
    padding: 1.2rem 2rem;
    background: linear-gradient(135deg, #107ac1, #4dd0e1);
    color: #ffffff;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 20px rgba(16, 122, 193, 0.3);
}

.btn-program-action:hover {
    background: linear-gradient(135deg, #0d5f96, #3ab4c4);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(16, 122, 193, 0.5);
}

/* Membership & Insurance Section */
.membership-insurance-section {
    padding: 4rem 2rem;
    margin: 0 2rem 4rem;
}

.membership-tiers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    max-width: 1300px;
    margin: 0 auto 4rem;
}

.membership-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    padding: 3rem 2.5rem;
    position: relative;
    transition: all 0.4s ease;
}

.membership-card.featured {
    background: rgba(77, 208, 225, 0.1);
    border-color: #4dd0e1;
    transform: scale(1.05);
    box-shadow: 0 20px 50px rgba(77, 208, 225, 0.3);
}

.membership-card:hover {
    transform: translateY(-10px);
    border-color: rgba(77, 208, 225, 0.5);
}

.membership-card.featured:hover {
    transform: translateY(-10px) scale(1.05);
}

.tier-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: #ffffff;
    padding: 0.5rem 1.2rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
}

.featured-badge {
    background: linear-gradient(135deg, #f093fb, #f5576c);
    animation: featured-glow 2s ease-in-out infinite;
}

@keyframes featured-glow {
    0%, 100% { box-shadow: 0 4px 15px rgba(245, 87, 108, 0.4); }
    50% { box-shadow: 0 4px 25px rgba(245, 87, 108, 0.7); }
}

.platinum-badge {
    background: linear-gradient(135deg, #2c3e50, #4ca1af);
}

.tier-name {
    font-size: 2.2rem;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.tier-price {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.price-amount {
    font-size: 4rem;
    font-weight: 900;
    color: #4dd0e1;
}

.price-period {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.7);
}

.tier-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
}

.tier-benefits li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.05rem;
}

.tier-benefits li i {
    color: #4dd0e1;
    font-size: 1.2rem;
    margin-top: 0.2rem;
}

.btn-tier-select {
    width: 100%;
    padding: 1.2rem 2rem;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.btn-tier-select:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
}

.premium-btn {
    background: linear-gradient(135deg, #107ac1, #4dd0e1);
    border: none;
}

.premium-btn:hover {
    background: linear-gradient(135deg, #0d5f96, #3ab4c4);
}

.platinum-btn {
    background: linear-gradient(135deg, #2c3e50, #4ca1af);
    border: none;
}

.platinum-btn:hover {
    background: linear-gradient(135deg, #1a252f, #3d8894);
}

/* Insurance Partners */
.insurance-partners-section {
    margin-top: 4rem;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 25px;
}

.partners-section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.partners-section-title i {
    color: #4dd0e1;
}

.partners-description {
    text-align: center;
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 700px;
    margin: 0 auto 3rem;
}

.insurance-partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
}

.insurance-partner-card {
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.insurance-partner-card:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(77, 208, 225, 0.5);
    transform: translateY(-5px);
}

.partner-logo-placeholder {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #107ac1, #4dd0e1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.partner-logo-placeholder i {
    font-size: 2.5rem;
    color: #ffffff;
}

.insurance-partner-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.insurance-partner-card p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Healthcare Security Services */
.healthcare-security-section {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, rgba(31, 97, 141, 0.1), rgba(16, 122, 193, 0.05));
    border-radius: 30px;
    margin: 0 2rem 4rem;
}

.security-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.security-service-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    padding: 3rem;
    transition: all 0.4s ease;
}

.security-service-card:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(77, 208, 225, 0.5);
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(16, 122, 193, 0.3);
}

.service-icon-large {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #107ac1, #4dd0e1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(77, 208, 225, 0.3);
}

.service-icon-large i {
    font-size: 3rem;
    color: #ffffff;
}

.security-service-card h3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.service-description {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.service-features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
}

.service-features-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
}

.service-features-list li i {
    color: #4dd0e1;
    font-size: 1.2rem;
    margin-top: 0.2rem;
}

.btn-security-service {
    width: 100%;
    padding: 1.2rem 2rem;
    background: linear-gradient(135deg, #107ac1, #4dd0e1);
    color: #ffffff;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 20px rgba(16, 122, 193, 0.3);
}

.btn-security-service:hover {
    background: linear-gradient(135deg, #0d5f96, #3ab4c4);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(16, 122, 193, 0.5);
}

/* Travel Healthcare Section */
.travel-healthcare-section {
    padding: 4rem 2rem;
    margin: 0 2rem 4rem;
}

.travel-insurance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    max-width: 1300px;
    margin: 0 auto 3rem;
}

.travel-plan-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    padding: 3rem 2.5rem;
    position: relative;
    transition: all 0.4s ease;
}

.travel-plan-card.premium-travel {
    background: rgba(77, 208, 225, 0.1);
    border-color: #4dd0e1;
    transform: scale(1.05);
    box-shadow: 0 20px 50px rgba(77, 208, 225, 0.3);
}

.travel-plan-card:hover {
    transform: translateY(-10px);
    border-color: rgba(77, 208, 225, 0.5);
}

.travel-plan-card.premium-travel:hover {
    transform: translateY(-10px) scale(1.05);
}

.plan-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: linear-gradient(135deg, #f093fb, #f5576c);
    color: #ffffff;
    padding: 0.5rem 1.2rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    animation: badge-glow 2s ease-in-out infinite;
}

@keyframes badge-glow {
    0%, 100% { box-shadow: 0 4px 15px rgba(245, 87, 108, 0.4); }
    50% { box-shadow: 0 4px 25px rgba(245, 87, 108, 0.7); }
}

.travel-plan-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #107ac1, #4dd0e1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    box-shadow: 0 8px 25px rgba(77, 208, 225, 0.3);
}

.travel-plan-icon i {
    font-size: 2.5rem;
    color: #ffffff;
}

.travel-plan-card h3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.travel-price {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.travel-coverage-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
}

.travel-coverage-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.05rem;
}

.travel-coverage-list li i {
    color: #4dd0e1;
    font-size: 1.2rem;
    margin-top: 0.2rem;
}

.btn-travel-plan {
    width: 100%;
    padding: 1.2rem 2rem;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.btn-travel-plan:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
}

.premium-travel-btn {
    background: linear-gradient(135deg, #107ac1, #4dd0e1);
    border: none;
}

.premium-travel-btn:hover {
    background: linear-gradient(135deg, #0d5f96, #3ab4c4);
}

/* Travel Benefits */
.travel-benefits-section {
    padding: 3rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.benefits-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 2.5rem;
}

.travel-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.benefit-item {
    text-align: center;
    padding: 2rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(77, 208, 225, 0.5);
    transform: translateY(-5px);
}

.benefit-item i {
    font-size: 3rem;
    color: #4dd0e1;
    margin-bottom: 1rem;
}

.benefit-item h5 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.75rem;
}

.benefit-item p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
}

/* Worldwide Clinics Section */
.worldwide-clinics-section {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, rgba(77, 208, 225, 0.05), rgba(16, 122, 193, 0.05));
    border-radius: 30px;
    margin: 0 2rem 4rem;
}

.clinic-map-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto 4rem;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.world-map-image {
    width: 100%;
    height: auto;
    display: block;
}

.map-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    background: rgba(16, 122, 193, 0.9);
    backdrop-filter: blur(15px);
    padding: 3rem;
    border-radius: 25px;
    border: 3px solid rgba(255, 255, 255, 0.3);
}

.map-overlay h3 {
    font-size: 2.5rem;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 1rem;
}

.map-overlay p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
}

.cities-clinics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.city-clinic-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.city-clinic-card:hover {
    border-color: rgba(77, 208, 225, 0.5);
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(16, 122, 193, 0.3);
}

.city-header {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.city-header img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.city-clinic-card:hover .city-header img {
    transform: scale(1.1);
}

.city-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(16, 122, 193, 0.95), transparent);
    padding: 2rem 1.5rem 1.5rem;
}

.city-overlay h3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.city-overlay p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
}

.city-clinic-content {
    padding: 2.5rem;
}

.clinic-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.clinic-item {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border-left: 4px solid #4dd0e1;
    transition: all 0.3s ease;
}

.clinic-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(5px);
}

.clinic-item i {
    color: #4dd0e1;
    font-size: 1.5rem;
    margin-top: 0.2rem;
}

.clinic-item h5 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.clinic-item p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.5;
}

.btn-view-clinics {
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #107ac1, #4dd0e1);
    color: #ffffff;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-view-clinics:hover {
    background: linear-gradient(135deg, #0d5f96, #3ab4c4);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(16, 122, 193, 0.4);
}

/* Coverage Note */
.coverage-note-section {
    max-width: 1200px;
    margin: 4rem auto 0;
    padding: 3rem;
    background: rgba(77, 208, 225, 0.1);
    border-radius: 25px;
    border: 2px solid rgba(77, 208, 225, 0.3);
}

.coverage-note-content {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.coverage-note-content i {
    font-size: 3rem;
    color: #4dd0e1;
    flex-shrink: 0;
}

.coverage-note-content h4 {
    font-size: 1.8rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1rem;
}

.coverage-note-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .health-hero-title {
        font-size: 3.5rem;
    }
    
    .section-title-premium {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .health-hero-title {
        font-size: 2.5rem;
    }
    
    .health-hero-subtitle {
        font-size: 1.2rem;
    }
    
    .health-hero-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .health-images-gallery {
        grid-template-columns: 1fr;
    }
    
    .health-programs-grid {
        grid-template-columns: 1fr;
    }
    
    .membership-tiers-grid {
        grid-template-columns: 1fr;
    }
    
    .membership-card.featured {
        transform: scale(1);
    }
    
    .membership-card.featured:hover {
        transform: translateY(-10px);
    }
    
    .security-services-grid {
        grid-template-columns: 1fr;
    }
    
    .travel-insurance-grid {
        grid-template-columns: 1fr;
    }
    
    .travel-plan-card.premium-travel {
        transform: scale(1);
    }
    
    .travel-plan-card.premium-travel:hover {
        transform: translateY(-10px);
    }
    
    .cities-clinics-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title-premium {
        font-size: 2.5rem;
    }
    
    .coverage-note-content {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .health-hero-title {
        font-size: 2rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .section-title-premium {
        font-size: 2rem;
        flex-direction: column;
    }
    
    .program-title,
    .tier-name {
        font-size: 1.5rem;
    }
    
    .price-amount {
        font-size: 3rem;
    }
}
