/* --- Variables --- */
:root {
    --color-turq: #00b894;      /* Medical Turquoise */
    --color-turq-dark: #008f72;
    --color-blue: #0984e3;      /* Clean Blue */
    --color-white: #ffffff;
    --color-light: #f5fcfb;     /* Very Light Turq/Grey */
    --color-text: #2d3436;
    --color-grey: #636e72;
    
    --font-main: 'Jost', sans-serif;
    
    --radius: 30px; /* Soft roundness */
    --shadow: 0 10px 30px rgba(0, 184, 148, 0.15);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: var(--font-main);
    background-color: var(--color-white);
    color: var(--color-text);
    line-height: 1.6;
}

a { text-decoration: none; color: inherit; transition: 0.3s; }
ul { list-style: none; }
img { max-width: 100%; display: block; border-radius: 10px; }

.container { width: 90%; max-width: 1200px; margin: 0 auto; }

/* --- Top Bar --- */
.med-top { background-color: var(--color-blue); color: var(--color-white); padding: 8px 0; font-size: 0.9rem; }
.top-flex { display: flex; justify-content: space-between; }
.contacts a { margin-left: 20px; color: var(--color-white); font-weight: 500; }

/* --- Header --- */
.med-header { padding: 15px 0; position: sticky; top: 0; background: rgba(255,255,255,0.95); z-index: 1000; box-shadow: 0 2px 10px rgba(0,0,0,0.05); }
.header-flex { display: flex; justify-content: space-between; align-items: center; }

.logo { font-size: 1.8rem; font-weight: 700; color: var(--color-text); letter-spacing: 1px; display: flex; align-items: center; }
.pro-text { color: var(--color-turq); }
.plus-icon { font-size: 1.5rem; color: var(--color-turq); margin-left: 5px; vertical-align: super; }

.clinic-nav ul { display: flex; gap: 30px; align-items: center; }
.clinic-nav a { font-weight: 500; color: var(--color-grey); font-size: 1rem; }
.clinic-nav a:hover, .clinic-nav a.active { color: var(--color-turq); }

.btn-turquoise { background-color: var(--color-turq); color: var(--color-white) !important; padding: 12px 30px; border-radius: var(--radius); font-weight: 600; box-shadow: 0 4px 15px rgba(0, 184, 148, 0.3); }
.btn-turquoise:hover { background-color: var(--color-turq-dark); transform: translateY(-2px); }

.mobile-toggle { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; }
.mobile-toggle span { width: 25px; height: 3px; background-color: var(--color-turq); border-radius: 3px; }

/* --- Mobile Menu --- */
.mobile-menu {
    position: fixed; top: 0; right: -100%; width: 280px; height: 100%;
    background-color: var(--color-white); z-index: 2000;
    display: flex; flex-direction: column; padding: 40px; gap: 20px;
    box-shadow: -5px 0 20px rgba(0,0,0,0.1); transition: 0.4s ease;
}
.mobile-menu.active { right: 0; }
.close-menu { align-self: flex-end; font-size: 1.5rem; background: none; border: none; cursor: pointer; color: var(--color-turq); }
.mobile-menu a { font-size: 1.2rem; font-weight: 600; color: var(--color-text); border-bottom: 1px solid #eee; padding-bottom: 10px; }

/* --- Hero --- */
.hero-med {
    position: relative; height: 600px;
    background-size: cover; background-position: center;
    display: flex; align-items: center; justify-content: flex-start;
}
.hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(to right, rgba(255,255,255,0.9) 30%, rgba(255,255,255,0) 100%); z-index: 1; }

.hero-content { position: relative; z-index: 2; width: 100%; max-width: 600px; padding: 40px; margin-left: 5%; }
.badge-white { background-color: var(--color-turq); color: var(--color-white); padding: 5px 15px; border-radius: 20px; font-size: 0.8rem; font-weight: 700; margin-bottom: 20px; display: inline-block; letter-spacing: 1px; }
.hero-content h1 { font-size: 3.5rem; line-height: 1.1; margin-bottom: 20px; color: var(--color-text); font-weight: 700; }
.hero-content p { font-size: 1.2rem; margin-bottom: 40px; color: var(--color-grey); }

.hero-btns { display: flex; gap: 15px; }
.btn-primary { background-color: var(--color-blue); color: #fff; padding: 15px 35px; border-radius: var(--radius); font-weight: 600; }
.btn-primary:hover { background-color: #0666b3; }
.btn-secondary { background-color: #fff; color: var(--color-blue); border: 2px solid var(--color-blue); padding: 13px 35px; border-radius: var(--radius); font-weight: 600; }
.btn-secondary:hover { background-color: var(--color-blue); color: #fff; }

/* --- Treatments --- */
.section-padding { padding: 80px 0; }
.section-title { text-align: center; margin-bottom: 60px; }
.section-title h2 { font-size: 2.5rem; margin-bottom: 15px; color: var(--color-text); }
.line-turq { width: 80px; height: 4px; background-color: var(--color-turq); margin: 0 auto; border-radius: 2px; }

.treatment-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; }
.t-card { background-color: var(--color-light); padding: 40px 30px; border-radius: 20px; text-align: center; transition: 0.3s; border: 1px solid #eef; }
.t-card:hover { background-color: var(--color-white); box-shadow: var(--shadow); transform: translateY(-5px); }
.t-card .icon { font-size: 3rem; margin-bottom: 20px; }
.t-card h3 { font-size: 1.3rem; margin-bottom: 15px; color: var(--color-text); }
.t-card p { color: var(--color-grey); margin-bottom: 25px; font-size: 0.95rem; }
.t-card a { color: var(--color-turq); font-weight: 600; border-bottom: 1px solid var(--color-turq); }

/* --- Clinic List (About) --- */
.page-head { text-align: center; margin-bottom: 60px; }
.page-head h1 { font-size: 2.5rem; color: var(--color-text); font-weight: 700; }

.clinic-list { display: flex; flex-direction: column; gap: 60px; }
.clinic-item { display: flex; align-items: center; gap: 50px; }
.clinic-item.reverse { flex-direction: row-reverse; }
.c-img { flex: 1; }
.c-img img { box-shadow: var(--shadow); border-radius: 20px; }
.c-info { flex: 1; }
.c-info h3 { font-size: 2rem; margin-bottom: 20px; color: var(--color-blue); }
.c-info p { color: var(--color-grey); margin-bottom: 20px; font-size: 1.1rem; }
.check-list { list-style: none; }
.check-list li { margin-bottom: 10px; font-weight: 500; }
.check-list li::before { content: '✓'; color: var(--color-turq); margin-right: 10px; font-weight: bold; }

/* --- Reviews (Testimonials) --- */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.review-box { background-color: var(--color-white); padding: 30px; border-radius: 20px; box-shadow: var(--shadow); border: 1px solid #eee; }
.patient-img { height: 200px; overflow: hidden; border-radius: 15px; margin-bottom: 20px; }
.patient-img img { width: 100%; height: 100%; object-fit: cover; border-radius: 15px; }
.stars { color: #f1c40f; margin-bottom: 10px; }
.review-box h3 { font-size: 1.2rem; margin-bottom: 10px; color: var(--color-blue); }
.review-box p { font-style: italic; color: #555; margin-bottom: 20px; font-size: 0.95rem; }
.name { display: block; font-weight: 700; color: var(--color-text); }
.treatment { font-size: 0.85rem; color: var(--color-turq); font-weight: 600; }

/* --- Banner --- */
.package-banner { background-color: var(--color-blue); color: var(--color-white); padding: 60px 0; border-radius: 20px; width: 95%; margin: 50px auto 0; box-shadow: var(--shadow); }
.banner-flex { display: flex; justify-content: space-between; align-items: center; padding: 0 60px; }
.banner-flex h3 { font-size: 2rem; margin-bottom: 20px; }
.banner-flex ul { list-style: none; }
.banner-flex li { margin-bottom: 5px; font-size: 1.1rem; }
.price-box { text-align: center; background: rgba(255,255,255,0.2); padding: 20px; border-radius: 15px; backdrop-filter: blur(5px); }
.price-box span { display: block; font-size: 0.9rem; text-transform: uppercase; }
.price-box strong { font-size: 2.5rem; display: block; }

/* --- Contact & Form --- */
.consult-box { display: grid; grid-template-columns: 1.5fr 1fr; gap: 50px; background-color: var(--color-light); padding: 50px; border-radius: 30px; box-shadow: var(--shadow); }
.form-side h2 { color: var(--color-blue); margin-bottom: 15px; }

.clinic-form .form-row { margin-bottom: 20px; }
.clinic-form input, .clinic-form select, .clinic-form textarea { width: 100%; padding: 15px; border: 1px solid #ddd; border-radius: 10px; font-family: var(--font-main); outline: none; }
.clinic-form input:focus, .clinic-form textarea:focus { border-color: var(--color-turq); }
.btn-submit { width: 100%; background-color: var(--color-turq); color: #fff; padding: 15px; border: none; border-radius: 10px; font-weight: 700; font-size: 1.1rem; cursor: pointer; transition: 0.3s; }
.btn-submit:hover { background-color: var(--color-turq-dark); }

.info-side { background-color: var(--color-white); padding: 30px; border-radius: 20px; border: 1px solid #eee; }
.info-side h3 { color: var(--color-text); margin-bottom: 20px; font-size: 1.5rem; }
.why-list { list-style: none; margin-bottom: 30px; }
.why-list li { margin-bottom: 15px; font-weight: 500; font-size: 1.1rem; }
.contact-card { background-color: var(--color-blue); color: #fff; padding: 20px; border-radius: 15px; text-align: center; }
.contact-card strong { font-size: 1.5rem; display: block; margin: 5px 0; }

/* --- Legal --- */
.process-doc { max-width: 800px; margin: 0 auto; background: var(--color-white); padding: 50px; border-radius: 20px; box-shadow: var(--shadow); }
.process-doc h1 { text-align: center; color: var(--color-blue); }
.step-list { margin: 40px 0; display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.step { background: var(--color-light); padding: 20px; border-radius: 15px; position: relative; border-left: 4px solid var(--color-turq); }
.step .num { font-size: 2rem; font-weight: 700; color: var(--color-turq); opacity: 0.3; position: absolute; top: 10px; right: 20px; }
.step h4 { color: var(--color-text); margin-bottom: 10px; }

/* --- Footer --- */
.med-footer { background-color: var(--color-light); padding: 60px 0; margin-top: auto; border-top: 1px solid #eee; text-align: center; }
.f-brand h4 { color: var(--color-blue); font-size: 1.5rem; font-weight: 700; letter-spacing: 1px; margin-bottom: 10px; }
.f-links a { color: var(--color-grey); margin: 0 15px; }
.f-links a:hover { color: var(--color-turq); }
.copyright { margin-top: 30px; color: #999; font-size: 0.85rem; }

@media (max-width: 992px) {
    .clinic-nav { display: none; }
    .mobile-toggle { display: flex; }
    .hero-content h1 { font-size: 2.5rem; }
    .hero-content { margin-left: 0; padding: 20px; text-align: center; }
    .hero-btns { justify-content: center; }
    .banner-flex { flex-direction: column; text-align: center; gap: 20px; }
    .consult-box, .clinic-item, .reviews-grid { grid-template-columns: 1fr; flex-direction: column; }
    .step-list { grid-template-columns: 1fr; }
}