/* ============================================
   BHURARO MEDICAL TOURISM — Premium Styles
   ============================================ */

/* Hero Section */
.med-hero {
    background: linear-gradient(135deg, #0B3C5D 0%, #092E4A 50%, #051A2C 100%);
    padding: 100px 0 80px;
    color: #fff;
    position: relative;
    overflow: hidden;
}
.med-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0,188,212,0.12) 0%, transparent 70%);
    border-radius: 50%;
}
.med-hero .container { position: relative; z-index: 2; }
.med-hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}
.med-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0,188,212,0.15);
    border: 1px solid rgba(0,188,212,0.3);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: #00BCD4;
    margin-bottom: 24px;
}
.med-hero h1 {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.15;
    margin: 0 0 20px;
    letter-spacing: -1px;
}
.med-hero h1 span { color: #00BCD4; }
.med-hero-sub {
    font-size: 18px;
    color: #94A3B8;
    line-height: 1.7;
    margin: 0 0 36px;
    max-width: 520px;
}
.med-hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}
.med-hero-stat {
    text-align: center;
}
.med-hero-stat-num {
    font-size: 36px;
    font-weight: 800;
    color: #00BCD4;
    display: block;
}
.med-hero-stat-label {
    font-size: 13px;
    color: #94A3B8;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.med-hero-visual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.med-hero-card {
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 28px 22px;
    text-align: center;
    transition: transform 0.3s, background 0.3s;
}
.med-hero-card:hover {
    transform: translateY(-4px);
    background: rgba(255,255,255,0.1);
}
.med-hero-card-icon { font-size: 36px; margin-bottom: 12px; }
.med-hero-card h3 {
    font-size: 15px;
    font-weight: 700;
    margin: 0 0 6px;
    color: #fff;
}
.med-hero-card p {
    font-size: 13px;
    color: #94A3B8;
    margin: 0;
    line-height: 1.5;
}

/* CTA Buttons */
.med-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-family: inherit;
}
.med-btn-primary {
    background: linear-gradient(135deg, #00BCD4, #0097A7);
    color: #fff;
    box-shadow: 0 8px 24px rgba(0,188,212,0.3);
}
.med-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(0,188,212,0.4);
}
.med-btn-outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.3);
}
.med-btn-outline:hover {
    background: rgba(255,255,255,0.08);
    border-color: #00BCD4;
    color: #00BCD4;
}
.med-btn-dark {
    background: #0B3C5D;
    color: #fff;
}

/* Treatment Cards Grid */
.med-section {
    padding: 80px 0;
}
.med-section-alt { background: #F7FAFC; }
.med-section-title {
    font-size: 36px;
    font-weight: 800;
    color: #0A192F;
    margin: 0 0 12px;
    letter-spacing: -0.5px;
}
.med-section-sub {
    font-size: 16px;
    color: #64748B;
    margin: 0 0 48px;
    max-width: 600px;
}
.med-section-sub.centered {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}
.med-section-title.centered { text-align: center; }

.treat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 28px;
}
.treat-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #E2E8F0;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
}
.treat-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    border-color: #00BCD4;
}
.treat-card-img {
    height: 200px;
    overflow: hidden;
    position: relative;
}
.treat-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}
.treat-card:hover .treat-card-img img { transform: scale(1.08); }
.treat-card-savings {
    position: absolute;
    top: 16px;
    right: 16px;
    background: linear-gradient(135deg, #10B981, #059669);
    color: #fff;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
}
.treat-card-body {
    padding: 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.treat-card-icon {
    font-size: 28px;
    margin-bottom: 12px;
}
.treat-card-body h3 {
    font-size: 22px;
    font-weight: 800;
    color: #0A192F;
    margin: 0 0 8px;
}
.treat-card-body p {
    font-size: 14px;
    color: #64748B;
    line-height: 1.6;
    margin: 0 0 20px;
    flex: 1;
}
.treat-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid #F1F5F9;
}
.treat-card-price {
    font-size: 18px;
    font-weight: 800;
    color: #0B3C5D;
}
.treat-card-link {
    color: #00BCD4;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: gap 0.3s;
}
.treat-card-link:hover { gap: 8px; }

/* Treatment Detail Page */
.treat-hero {
    background: linear-gradient(135deg, #0B3C5D, #051A2C);
    padding: 80px 0 60px;
    color: #fff;
}
.treat-hero h1 {
    font-size: 42px;
    font-weight: 800;
    margin: 0 0 16px;
}
.treat-hero-tagline {
    font-size: 18px;
    color: #94A3B8;
    margin: 0 0 30px;
    max-width: 650px;
}
.treat-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 30px;
}
.treat-info-box {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 14px;
    padding: 20px;
    text-align: center;
}
.treat-info-box-label {
    font-size: 12px;
    color: #94A3B8;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}
.treat-info-box-value {
    font-size: 20px;
    font-weight: 800;
    color: #00BCD4;
}

/* Hospital Cards */
.hosp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
    gap: 24px;
}
.hosp-card {
    background: #fff;
    border-radius: 16px;
    border: 1px solid #E2E8F0;
    overflow: hidden;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
}
.hosp-card:hover {
    box-shadow: 0 16px 40px rgba(0,0,0,0.08);
    transform: translateY(-4px);
}
.hosp-card-featured {
    border-color: #00BCD4;
    box-shadow: 0 0 0 2px rgba(0,188,212,0.2);
}
.hosp-card-badge {
    background: linear-gradient(135deg, #F59E0B, #D97706);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.hosp-card-body { padding: 24px; flex: 1; }
.hosp-card-body h3 {
    font-size: 20px;
    font-weight: 800;
    color: #0A192F;
    margin: 0 0 6px;
}
.hosp-card-city {
    font-size: 14px;
    color: #64748B;
    margin: 0 0 12px;
    display: flex;
    align-items: center;
    gap: 6px;
}
.hosp-card-accred {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #F0FDF4;
    color: #15803D;
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 14px;
}
.hosp-card-treatments {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 16px;
}
.hosp-card-treat-tag {
    background: #F1F5F9;
    color: #475569;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
}
.hosp-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    border-top: 1px solid #F1F5F9;
    background: #FAFBFC;
}
.hosp-card-price {
    font-size: 14px;
    color: #0B3C5D;
    font-weight: 700;
}

/* Inquiry Form */
.inquiry-form {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.06);
    border: 1px solid #E2E8F0;
}
.inquiry-form h2 {
    font-size: 28px;
    font-weight: 800;
    color: #0A192F;
    margin: 0 0 8px;
}
.inquiry-form-sub {
    color: #64748B;
    font-size: 15px;
    margin: 0 0 32px;
}
.inq-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}
.inq-field { display: flex; flex-direction: column; }
.inq-field.full { grid-column: 1 / -1; }
.inq-label {
    font-size: 13px;
    font-weight: 700;
    color: #334155;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}
.inq-input, .inq-select, .inq-textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1.5px solid #E2E8F0;
    border-radius: 10px;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    background: #F8FAFC;
    transition: all 0.2s;
    color: #0A192F;
    box-sizing: border-box;
}
.inq-input:focus, .inq-select:focus, .inq-textarea:focus {
    outline: none;
    border-color: #00BCD4;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(0,188,212,0.12);
}
.inq-textarea { resize: vertical; min-height: 100px; }
.inq-submit {
    background: linear-gradient(135deg, #00BCD4, #0097A7);
    color: #fff;
    padding: 16px 40px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    font-family: inherit;
    margin-top: 12px;
}
.inq-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(0,188,212,0.3);
}

/* Trust Section */
.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 24px;
}
.trust-card {
    background: #fff;
    border-radius: 16px;
    padding: 32px 24px;
    border: 1px solid #E2E8F0;
    text-align: center;
    transition: all 0.3s;
}
.trust-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.06);
}
.trust-card-icon {
    font-size: 40px;
    margin-bottom: 16px;
}
.trust-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: #0A192F;
    margin: 0 0 8px;
}
.trust-card p {
    font-size: 14px;
    color: #64748B;
    margin: 0;
    line-height: 1.6;
}

/* How It Works */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    counter-reset: step;
}
.step-card {
    text-align: center;
    position: relative;
}
.step-num {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, #00BCD4, #0097A7);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 800;
    margin: 0 auto 20px;
    box-shadow: 0 8px 20px rgba(0,188,212,0.25);
}
.step-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: #0A192F;
    margin: 0 0 8px;
}
.step-card p {
    font-size: 14px;
    color: #64748B;
    margin: 0;
    line-height: 1.6;
}

/* Registration Form */
.reg-form {
    max-width: 700px;
    margin: 0 auto;
    background: #fff;
    border-radius: 20px;
    padding: 48px;
    box-shadow: 0 16px 48px rgba(0,0,0,0.06);
    border: 1px solid #E2E8F0;
}

/* Medical Disclaimer */
.med-disclaimer {
    background: #FFFBEB;
    border: 1px solid #FDE68A;
    border-radius: 12px;
    padding: 20px 24px;
    margin: 40px 0;
    font-size: 13px;
    color: #92400E;
    line-height: 1.6;
}
.med-disclaimer strong { color: #78350F; }

/* Responsive */
@media (max-width: 1024px) {
    .med-hero-grid { grid-template-columns: 1fr; gap: 40px; }
    .med-hero h1 { font-size: 36px; }
    .treat-info-grid { grid-template-columns: 1fr 1fr; }
    .steps-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
    .med-hero { padding: 60px 0 50px; }
    .med-hero h1 { font-size: 30px; }
    .med-hero-stats { gap: 24px; flex-wrap: wrap; }
    .med-hero-visual { grid-template-columns: 1fr 1fr; }
    .treat-grid { grid-template-columns: 1fr; }
    .hosp-grid { grid-template-columns: 1fr; }
    .inq-row { grid-template-columns: 1fr; }
    .treat-info-grid { grid-template-columns: 1fr 1fr; }
    .steps-grid { grid-template-columns: 1fr; gap: 24px; }
    .inquiry-form { padding: 24px; }
    .reg-form { padding: 28px; }
    .med-section { padding: 50px 0; }
}
@media (max-width: 480px) {
    .med-hero-visual { grid-template-columns: 1fr; }
    .med-hero-stats { flex-direction: column; gap: 16px; }
}
