/* ==========================================
   AlBadrCure Custom Design System
   ========================================== */
:root {
    --navy: #14265b;
    --teal: #0fb5ae;
    --teal-dark: #0d9488;
    --red: #ee4136;
    --red-dark: #d6362c;
    --gray-text: #6b7280;
    --bg-light: #f8fafc;
    --bg-medical: #eef7f6;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

img { max-width: 100%; }

body {
    font-family: 'Quicksand', 'Roboto', sans-serif;
    color: #333;
    margin: 0;
    overflow-x: hidden;
}

a { text-decoration: none; }

.container { max-width: 1262px; margin: 0 auto; padding: 0 20px; }

/* ---------- Header ---------- */
.site-header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
    position: relative;
    z-index: 100;
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    max-width: 1300px;
    margin: 0 auto;
}
.logo-box { display: flex; align-items: center; gap: 10px; }
.logo-box img { height: 42px; }
.logo-text-title { font-size: 22px; font-weight: 700; color: var(--teal-dark); line-height: 1.1; }
.logo-text-title span { color: var(--red); }
.logo-text-sub { font-size: 11px; color: var(--gray-text); }

.main-nav ul { list-style: none; display: flex; gap: 28px; margin: 0; padding: 0; }
.main-nav a { color: var(--navy); font-weight: 600; font-size: 15px; padding: 8px 0; border-bottom: 2px solid transparent; transition: 0.25s; }
.main-nav a:hover, .main-nav a.active { color: var(--teal-dark); border-bottom-color: var(--teal-dark); }

.nav-toggle { display: none; background: none; border: none; font-size: 26px; color: var(--navy); cursor: pointer; }

@media (max-width: 991px) {
    .main-nav { display: none; width: 100%; }
    .main-nav.open { display: block; }
    .main-nav ul { flex-direction: column; gap: 0; padding: 10px 20px; }
    .main-nav a { display: block; padding: 12px 0; border-bottom: 1px solid #eee; }
    .header-inner { flex-wrap: wrap; }
    .nav-toggle { display: block; }
}

/* ---------- WhatsApp float ---------- */
.whatsapp-float {
    position: fixed; bottom: 25px; left: 25px; z-index: 999;
    background: #25D366; width: 55px; height: 55px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 14px rgba(0,0,0,0.25); color: #fff; font-size: 26px;
}

/* ---------- Hero ---------- */
.hero {
    position: relative;
    overflow: hidden;
    min-height: 560px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-color: #0d2144;
}
.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(90deg, rgba(10,22,50,0.88) 0%, rgba(10,22,50,0.65) 45%, rgba(10,22,50,0.25) 75%, rgba(10,22,50,0.05) 100%);
    z-index: 1;
}
.hero-inner { position: relative; z-index: 2; width: 100%; }
.hero-text-col { max-width: 620px; padding: 60px 24px; }
.hero-title { font-size: 50px; font-weight: 700; color: #fff; line-height: 1.15; margin: 0 0 22px; }
.hero-desc { color: #e2e8f0; font-size: 16px; line-height: 1.7; margin-bottom: 30px; max-width: 480px; }
.hero-search { display: flex; background: #fff; border-radius: 50px; box-shadow: 0 10px 30px rgba(0,0,0,0.25); overflow: hidden; max-width: 480px; }
.hero-search input { flex: 1; border: none; padding: 18px 26px; font-size: 15px; outline: none; }
.hero-search button { background: var(--teal-dark); color: #fff; border: none; padding: 0 28px; cursor: pointer; font-size: 17px; transition: 0.2s; }
.hero-search button:hover { background: var(--red); }
.hero-badge {
    position: absolute; top: 20px; right: 30px; background: #fff; padding: 8px 16px; border-radius: 50px;
    font-size: 13px; font-weight: 700; color: var(--navy); box-shadow: 0 4px 14px rgba(0,0,0,0.12); z-index: 3;
}

@media (max-width: 850px) {
    .hero { min-height: auto; }
    .hero-text-col { padding: 60px 24px 45px; }
    .hero-title { font-size: 32px; }
}

/* ---------- Enquiry / Need Help Section ---------- */
.enquiry-section { padding: 60px 0; background: #fff; }
.enquiry-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 40px; align-items: center; }
.enquiry-grid h2 { font-size: 34px; color: var(--navy); font-weight: 700; margin-bottom: 20px; }
.enquiry-grid h2 span { color: var(--red); }
.enquiry-grid ul { list-style: none; padding: 0; margin: 0 0 20px; color: var(--gray-text); }
.enquiry-grid ul li { padding: 6px 0; font-size: 16px; }
.enquiry-highlight { color: var(--red); font-weight: 600; }
.enquiry-form-box { background: #f8fafc; border-radius: 18px; padding: 35px; box-shadow: 0 15px 40px rgba(0,0,0,0.09); }
.enquiry-form-box.teal { background: linear-gradient(135deg, var(--teal-dark), var(--teal)); }
.form-control-custom {
    width: 100%; padding: 15px 20px; margin-bottom: 16px; border-radius: 10px;
    border: 1px solid #e5e7eb; font-size: 15px; font-family: inherit; background: #fff;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.form-control-custom:focus { outline: none; border-color: var(--teal-dark); box-shadow: 0 0 0 3px rgba(13,148,136,0.12); }
textarea.form-control-custom { resize: vertical; min-height: 100px; }
.btn-submit-red {
    width: 100%; background: var(--red); color: #fff; border: none; padding: 16px;
    border-radius: 10px; font-weight: 700; letter-spacing: 1px; cursor: pointer; font-size: 15px;
    transition: 0.25s; box-shadow: 0 8px 20px rgba(238,65,54,0.3);
}
.btn-submit-red:hover { background: var(--red-dark); transform: translateY(-2px); box-shadow: 0 12px 26px rgba(238,65,54,0.4); }
.btn-submit-blue {
    width: 100%; background: #1d6fe0; color: #fff; border: none; padding: 16px; border-radius: 10px;
    font-weight: 700; letter-spacing: 1px; cursor: pointer; font-size: 15px; transition: 0.25s;
    box-shadow: 0 8px 20px rgba(29,111,224,0.3);
}
.btn-submit-blue:hover { background: #1557b3; transform: translateY(-2px); box-shadow: 0 12px 26px rgba(29,111,224,0.4); }

/* ---------- About Section ---------- */
.about-section { padding: 70px 0; background: var(--bg-medical); }
.about-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 50px; align-items: center; }
.about-grid img { width: 100%; border-radius: 24px; }
.about-grid h2 { font-size: 34px; color: var(--navy); font-weight: 700; margin-bottom: 20px; }
.about-grid p { color: var(--gray-text); line-height: 1.8; margin-bottom: 18px; }
.btn-teal-pill {
    display: inline-flex; align-items: center; gap: 8px; background: var(--teal-dark); color: #fff;
    padding: 14px 30px; border-radius: 50px; font-weight: 700; box-shadow: 0 8px 20px rgba(13,148,136,0.3);
    transition: 0.25s;
}
.btn-teal-pill:hover { background: var(--navy); transform: translateY(-3px); box-shadow: 0 14px 26px rgba(20,38,91,0.3); color: #fff; }

@media (max-width: 850px) {
    .about-grid, .enquiry-grid { grid-template-columns: 1fr; }
}

/* ---------- Hospitals Network (red band) ---------- */
.hospitals-section { background: var(--red); padding: 60px 0; overflow: hidden; }
.hospitals-grid { display: grid; grid-template-columns: 0.8fr 2.2fr; gap: 30px; align-items: center; }
.hospitals-intro h2 { color: #fff; font-size: 32px; font-weight: 700; margin-bottom: 16px; }
.hospitals-intro p { color: #ffe5e3; margin-bottom: 20px; }
.hospitals-intro ul { list-style: none; padding: 0; color: #fff; font-weight: 600; }
.hospitals-cards {
    display: flex; gap: 20px; overflow-x: auto; padding-bottom: 10px;
    scrollbar-width: none; -ms-overflow-style: none;
}
.hospitals-cards::-webkit-scrollbar { display: none; }
.hospital-card {
    background: #fff; border-radius: 16px; overflow: hidden; min-width: 260px; flex: 1;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15); transition: transform 0.3s, box-shadow 0.3s;
}
.hospital-card:hover { transform: translateY(-8px); box-shadow: 0 18px 35px rgba(0,0,0,0.22); }
.hospital-card img { width: 100%; height: 130px; object-fit: cover; transition: transform 0.4s; }
.hospital-card:hover img { transform: scale(1.06); }
.hospital-card .body { padding: 16px; }
.hospital-card h6 { color: var(--teal-dark); font-size: 17px; font-weight: 700; margin: 0 0 10px; }
.hospital-card p { color: #444; font-size: 13px; margin: 0; }
@media (max-width: 850px) { .hospitals-grid { grid-template-columns: 1fr; } }

/* ---------- Specialities scroll ---------- */
.specialities-section { padding: 60px 0; text-align: center; background: #fff; }
.specialities-section h2 { color: var(--red); font-size: 32px; font-weight: 700; }
.specialities-section > .container > p { color: var(--gray-text); margin-bottom: 30px; }
.spec-scroll {
    display: flex; gap: 20px; overflow-x: auto; padding: 10px 0 20px;
    scrollbar-width: none; -ms-overflow-style: none;
}
.spec-scroll::-webkit-scrollbar { display: none; }
.spec-card {
    flex: 0 0 180px; border: 2px solid #f0d3d1; border-radius: 16px; padding: 25px 15px;
    text-align: center; transition: 0.3s; background: #fff; box-shadow: 0 6px 18px rgba(0,0,0,0.05);
}
.spec-card:hover { background: #fff5f4; border-color: var(--red); transform: translateY(-6px); box-shadow: 0 14px 28px rgba(238,65,54,0.18); }
.spec-card img, .spec-card .emoji { width: auto; height: 80px; object-fit: contain; margin: 0 auto 5px; display: block; }
.spec-card h6 { color: var(--navy); font-weight: 700; font-size: 15px; margin: 0; }

/* ---------- Travel Steps ---------- */
.steps-section { padding: 60px 0; text-align: center; background: var(--bg-light); }
.steps-section h2 { color: var(--navy); font-size: 32px; font-weight: 700; }
.steps-section > .container > p.subtitle { color: var(--gray-text); margin-bottom: 40px; }
.steps-row {
    display: flex; gap: 16px; overflow-x: auto; padding-bottom: 10px;
    scrollbar-width: none; -ms-overflow-style: none;
}
.steps-row::-webkit-scrollbar { display: none; }
.step-card {
    flex: 0 0 190px; border: 1px solid #e2e8f0; border-radius: 14px; padding: 25px 15px; background: #fff;
    box-shadow: 0 6px 18px rgba(0,0,0,0.05); transition: 0.3s;
    margin-top: 5px;
}
.step-card:hover { transform: translateY(-6px); box-shadow: 0 14px 28px rgba(20,38,91,0.12); border-color: var(--teal-dark); }
.step-card .step-emoji { font-size: 34px; margin-bottom: 12px; }
.step-card h6 { color: var(--navy); font-weight: 700; margin: 0 0 8px; font-size: 15px; }
.step-card small { color: var(--teal-dark); font-weight: 700; }

/* ---------- Doctors / Specialist Network ---------- */
.doctors-section { padding: 70px 0; text-align: center; background: var(--bg-medical); }
.doctors-section h2 { color: var(--navy); font-size: 32px; font-weight: 700; }
.doctors-section > .container > p { color: var(--gray-text); margin-bottom: 40px; }
.doctors-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; text-align: left; }
.doctor-card {
    background: #fff; border-radius: 16px; padding: 18px; box-shadow: 0 8px 22px rgba(0,0,0,0.07);
    transition: transform 0.3s, box-shadow 0.3s;
}
.doctor-card:hover { transform: translateY(-8px); box-shadow: 0 18px 35px rgba(0,0,0,0.14); }
.doctor-card img { width: 100%; height: 260px; object-fit: cover; border-radius: 12px; margin-bottom: 16px; transition: transform 0.4s; }
.doctor-card:hover img { transform: scale(1.04); }
.doctor-card h5 { color: var(--teal-dark); font-size: 19px; font-weight: 700; margin: 0 0 6px; }
.doctor-card p { color: var(--gray-text); margin: 0 0 10px; }
.doctor-card a.view-link { color: var(--navy); font-weight: 700; }
@media (max-width: 850px) { .doctors-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 600px) { .doctors-grid { grid-template-columns: 1fr; } }

/* ---------- Blogs ---------- */
.blogs-section { padding: 70px 0; text-align: center; background: #fff; }
.blogs-section h2 { color: var(--navy); font-size: 32px; font-weight: 700; margin-bottom: 40px; }
.blogs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; text-align: left; }
.blog-card img { width: 100%; height: 200px; object-fit: cover; border-radius: 12px 12px 0 0; transition: transform 0.4s; }
.blog-card {
    border: 1px solid #eee; border-radius: 14px; overflow: hidden; box-shadow: 0 8px 22px rgba(0,0,0,0.06);
    transition: transform 0.3s, box-shadow 0.3s;
}
.blog-card:hover { transform: translateY(-8px); box-shadow: 0 18px 35px rgba(0,0,0,0.13); }
.blog-card:hover img { transform: scale(1.06); }
.blog-card .body { padding: 20px; }
.blog-card .meta { color: var(--teal-dark); font-size: 13px; font-weight: 600; }
.blog-card h4 { color: var(--navy); font-size: 18px; margin: 10px 0; line-height: 1.4; }
.blog-card p { color: var(--gray-text); font-size: 14px; }
@media (max-width: 850px) { .blogs-grid { grid-template-columns: 1fr; } }

/* ---------- Gallery ---------- */
.gallery-section { padding: 60px 0; text-align: center; background: var(--bg-medical); }
.gallery-section .tagline { color: var(--teal-dark); font-weight: 700; letter-spacing: 1px; margin-bottom: 6px; }
.gallery-section h2 { color: var(--navy); font-size: 32px; font-weight: 700; margin-bottom: 40px; }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.gallery-grid .g-item {
    position: relative; border-radius: 16px; overflow: hidden; box-shadow: 0 8px 22px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}
.gallery-grid .g-item:hover { transform: translateY(-6px); box-shadow: 0 16px 32px rgba(0,0,0,0.16); }
.gallery-grid img { width: 100%; height: 230px; object-fit: cover; display: block; transition: transform 0.4s; }
.gallery-grid .g-item:hover img { transform: scale(1.08); }
@media (max-width: 850px) { .gallery-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 600px) { .gallery-grid { grid-template-columns: 1fr; } }

/* ---------- Services / Contact Teal Section ---------- */
.services-section { background: linear-gradient(135deg, #95ddd7, #14b8a6); }
.services-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 40px; align-items: center; }
.services-grid h2 { color: #fff; font-size: 30px; font-weight: 700; text-align: center; margin-bottom: 20px; }
.services-list { list-style: none; padding: 0; background: #fff; border-radius: 18px; padding: 35px; box-shadow: 0 15px 40px rgba(0,0,0,0.15); }
.services-list li { padding: 8px 0; color: #444; font-size: 15px; transition: 0.2s; }
.services-list li:hover { color: var(--teal-dark); transform: translateX(4px); }
.services-list li:before { content: "✓ "; color: var(--teal-dark); font-weight: 700; margin-right: 6px; }
@media (max-width: 850px) { .services-grid { grid-template-columns: 1fr; } }

/* ---------- Footer ---------- */
.site-footer { background: #fff; padding-top: 0; border-top: none; position: relative; }
.footer-main { padding: 60px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 1fr 1fr 1fr 1.3fr; gap: 40px; }
.footer-grid h6 {
    color: var(--navy); font-weight: 700; margin-bottom: 20px; font-size: 16px;
    position: relative; padding-bottom: 10px;
}
.footer-grid h6:after { content: ""; position: absolute; left: 0; bottom: 0; width: 36px; height: 3px; background: var(--teal-dark); border-radius: 3px; }
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid ul li { margin-bottom: 12px; }
.footer-grid ul li a { color: var(--gray-text); font-size: 14px; transition: 0.2s; display: inline-block; }
.footer-grid ul li a:hover { color: var(--teal-dark); transform: translateX(3px); }
.footer-brand { display: flex; align-items: center; gap: 8px; margin-bottom: 6px; }
.footer-brand .t1 { font-size: 22px; font-weight: 700; color: var(--teal-dark); }
.footer-contact { background: var(--bg-light); border-radius: 16px; padding: 5px; box-shadow: 0 6px 20px rgba(0,0,0,0.04); }
.footer-contact p { color: #333; font-size: 14px; margin: 10px 0; display: flex; align-items: center; gap: 10px; }
.footer-contact p i { color: var(--teal-dark); width: 16px; }
.footer-socials { display: flex; gap: 10px; margin-top: 18px; }
.footer-socials a {
    width: 38px; height: 38px; border-radius: 50%; background: var(--navy); color: #fff;
    display: flex; align-items: center; justify-content: center; transition: 0.25s;
}
.footer-socials a:hover { background: var(--teal-dark); transform: translateY(-4px); }
.footer-bottom-bar { background: linear-gradient(120deg, var(--teal-dark), #0c8a80); color: #fff; text-align: center; padding: 26px 20px; margin-top: 0; }
.footer-bottom-bar .links a { color: #fff; margin: 0 10px; font-weight: 600; opacity: 0.95; }
.footer-bottom-bar .links a:hover { text-decoration: underline; }
.footer-bottom-bar .disclaimer { font-size: 12.5px; color: #d9f3f0; max-width: 900px; margin: 16px auto 0; line-height: 1.7; }
@media (max-width: 850px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 550px) { .footer-grid { grid-template-columns: 1fr; } .footer-main { padding: 40px 0 30px; } }

/* ---------- Page title banner (inner pages) ---------- */
.page-banner { background: linear-gradient(120deg, var(--navy), #1e3a6e); padding: 50px 0; text-align: center; }
.page-banner h1 { color: #fff; font-size: 34px; font-weight: 700; margin: 0; }

/* ---------- Generic content page (about/single) ---------- */
.content-section { padding: 60px 0; }
.content-section h2 { color: var(--navy); font-weight: 700; }
.content-section p { color: var(--gray-text); line-height: 1.8; }

.alert-box { padding: 14px 20px; border-radius: 8px; margin-bottom: 16px; font-size: 14px; }
.alert-success-box { background: #d1fae5; color: #065f46; }
.alert-error-box { background: #fee2e2; color: #991b1b; }


@media (max-width: 768px) { 
    .enquiry-form-box {
    margin-top: 25px;
    }
}