/* ===================================
   VK Speciality Clinic - Stylesheet
   Color Scheme: Teal (#7acaca)
   ==================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html,
body {
    overflow-x: hidden;
}
:root {
    --primary-color: #7acaca;
    --primary-dark: #5ba9a9;
    --primary-light: #9dd9d9;
    --text-dark: #333333;
    --text-light: #666666;
    --bg-light: #f5f5f5;
    --white: #ffffff;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--white);
    padding-top: 80px;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    width: 100%;
}
/* ===== NAVBAR ===== */
.navbar {
    background-color: var(--white);
    box-shadow: var(--shadow);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 100;
    padding: 12px 0;
}
.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    gap: 20px;
}
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    white-space: nowrap;
    cursor: pointer;
    flex-shrink: 0;
}
.logo-img {
    width: 80px;
    height: 85px;
    object-fit: contain;
    transition: transform 0.3s ease;
}
.logo:hover .logo-img {
    transform: scale(1.1);
}
.logo-text {
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-color);
    background: linear-gradient(135deg, #7acaca, #5ba9a9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
}
.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 3px;
    transition: all 0.3s ease;
}
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(10px, 10px);
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
}
.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}
.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
    flex: 1;
    justify-content: flex-end;
    align-items: center;
}
.nav-links li {
    display: flex;
    align-items: center;
    height: 100%;
}
.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
    padding-bottom: 5px;
    border-bottom: 3px solid transparent;
    display: flex;
    align-items: center;
}
.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}
/* ===== DROPDOWN MENU ===== */
.dropdown {
    position: relative;
    display: flex;
    align-items: center;
}
.dropdown > a {
    display: flex;
    align-items: center;
    padding: 0;
}
.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: var(--shadow);
    min-width: 200px;
    margin-top: 10px;
    z-index: 1000;
    overflow: hidden;
}
/* Hover bridge to prevent dropdown from closing */
.dropdown::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: 10px;
    z-index: 999;
}
.dropdown:hover .dropdown-menu {
    display: flex;
    flex-direction: column;
    animation: slideDown 0.3s ease;
}
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: var(--text-dark);
    text-decoration: none;
    border-bottom: none !important;
    border-left: 4px solid transparent;
    transition: all 0.3s ease;
}
.dropdown-menu a:hover {
    background-color: var(--light-shade);
    color: var(--primary-color);
    border-left-color: var(--primary-color);
}
.dropdown-menu a:last-child {
    margin-bottom: 0;
}
/* ===== HERO SECTION ===== */
.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 100px 20px;
    text-align: center;
}
.hero .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.hero h1 {
    font-size: 52px;
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
}
.hero p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.95;
    max-width: 600px;
}
/* ===== PAGE HEADER ===== */
.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 80px 20px;
    text-align: center;
}
.page-header .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.page-header h1 {
    font-size: 44px;
    margin-bottom: 15px;
    line-height: 1.2;
}
.page-header p {
    font-size: 17px;
    opacity: 0.95;
    max-width: 600px;
}
/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 14px 35px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 15px;
    text-align: center;
    white-space: nowrap;
}
.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
}
.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(122, 202, 202, 0.3);
}
.btn-secondary {
    background-color: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}
.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}
/* ===== SERVICES SECTION ===== */
.services {
    padding: 80px 20px;
    background-color: var(--bg-light);
}
.services h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: var(--primary-color);
}
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}
.service-card {
    background: var(--white);
    padding: 28px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border-top: 5px solid var(--primary-color);
    display: flex;
    flex-direction: column;
    text-decoration: none;
}
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(122, 202, 202, 0.25);
}
.service-card h3 {
    color: var(--primary-color);
    margin-bottom: 12px;
    font-size: 20px;
    font-weight: 600;
}
.service-card p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 15px;
}
/* ===== TREATMENTS SECTION ===== */
.treatments-content {
    padding: 60px 20px;
}
.treatments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 40px;
}
.treatment-card {
    background: var(--white);
    padding: 25px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    border-left: 5px solid var(--primary-color);
    transition: all 0.3s ease;
}
.treatment-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 5px 20px rgba(122, 202, 202, 0.25);
}
.treatment-card h3 {
    color: var(--primary-color);
    margin-bottom: 12px;
    font-size: 18px;
}
.treatment-card p {
    color: var(--text-light);
    margin-bottom: 15px;
    font-size: 14px;
}
.treatment-card ul {
    list-style: none;
    padding-left: 0;
}
.treatment-card li {
    color: var(--text-dark);
    padding: 5px 0;
    padding-left: 20px;
    position: relative;
    font-size: 14px;
}
.treatment-card li:before {
    content: "✓";
    color: var(--primary-color);
    font-weight: bold;
    position: absolute;
    left: 0;
}
/* ===== SPECIALTY CARDS (Treatments Hub) ===== */
.specialty-card {
    background: linear-gradient(135deg, var(--white) 0%, var(--bg-light) 100%);
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    border-top: 6px solid var(--primary-color);
    transition: all 0.3s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.specialty-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 8px 25px rgba(122, 202, 202, 0.3);
    border-top-color: var(--primary-dark);
}
.specialty-icon {
    font-size: 60px;
    margin-bottom: 20px;
    display: inline-block;
}
.specialty-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 24px;
    font-weight: bold;
}
.specialty-card p {
    color: var(--text-light);
    margin-bottom: 25px;
    font-size: 16px;
    line-height: 1.6;
}
.specialty-card .btn {
    align-self: center;
}
/* ===== DOCTORS SECTION ===== */
.doctors-content {
    padding: 60px 20px;
}
.doctors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 40px;
}
.doctor-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}
.doctor-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 8px 25px rgba(122, 202, 202, 0.2);
    border-color: var(--primary-color);
}
.doctor-image {
    font-size: 80px;
    margin-bottom: 15px;
    background: transparent;
    padding: 0;
    border-radius: 50%;
    width: 160px;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(122, 202, 202, 0.15);
}

.doctor-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    background: var(--white);
}
.doctor-card h3 {
    color: var(--primary-color);
    font-size: 20px;
    margin-bottom: 8px;
}
.doctor-card .specialty {
    font-weight: bold;
    color: var(--text-dark);
    margin-bottom: 8px;
}
.doctor-card .qualification {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 8px;
    font-style: italic;
}
.doctor-card .experience {
    font-size: 13px;
    color: var(--primary-color);
    margin-bottom: 12px;
    font-weight: 500;
}
.doctor-card .bio {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

/* ===== DOCTOR PROFILE (About Section) ===== */
.doctors-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.doctor-profile {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.doctor-profile:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(122, 202, 202, 0.2);
    border-color: var(--primary-color);
}

.doctor-profile .doctor-image {
    font-size: 80px;
    margin-bottom: 15px;
    background: transparent;
    padding: 0;
    border-radius: 50%;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(122, 202, 202, 0.15);
}

.doctor-profile h3 {
    color: var(--primary-color);
    font-size: 22px;
    margin-bottom: 5px;
    margin-top: 15px;
}

.doctor-profile .specialty {
    color: var(--text-dark);
    font-size: 16px;
    margin-bottom: 20px;
    font-weight: 500;
}

.doctor-details {
    text-align: left;
    margin-top: 20px;
}

.doctor-details h4 {
    color: var(--primary-color);
    font-size: 16px;
    margin-top: 15px;
    margin-bottom: 10px;
    border-bottom: 2px solid var(--primary-light);
    padding-bottom: 8px;
}

.doctor-details ul {
    list-style: none;
    margin: 10px 0;
    padding: 0;
}

.doctor-details li {
    color: var(--text-light);
    font-size: 14px;
    padding: 6px 0;
    line-height: 1.6;
}

.doctor-details li:before {
    content: "✓ ";
    color: var(--primary-color);
    font-weight: bold;
    margin-right: 8px;
}

/* ===== ABOUT SECTION ===== */
.about-content {
    padding: 60px 20px;
}
.about-section {
    margin-bottom: 50px;
    background: var(--bg-light);
    padding: 30px;
    border-radius: 10px;
    border-left: 5px solid var(--primary-color);
}
.about-section h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 28px;
}
.about-section p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 16px;
    margin-bottom: 15px;
}
.features-list {
    list-style: none;
    margin: 20px 0;
}
.features-list li {
    color: var(--text-dark);
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    font-size: 16px;
}
.features-list li:before {
    content: "✓";
    color: var(--primary-color);
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 18px;
}
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 30px;
}
.value-card {
    background: var(--white);
    padding: 25px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    border-top: 4px solid var(--primary-color);
    transition: all 0.3s ease;
}
.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 5px 15px rgba(122, 202, 202, 0.2);
}
.value-card h3 {
    color: var(--primary-color);
    margin-bottom: 12px;
}
.value-card p {
    color: var(--text-light);
    font-size: 14px;
}
/* ===== CTA SECTION ===== */
.cta {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 70px 20px;
    text-align: center;
}
.cta .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.cta h2 {
    font-size: 34px;
    margin-bottom: 15px;
    font-weight: 700;
    line-height: 1.2;
}
.cta p {
    font-size: 17px;
    margin-bottom: 30px;
    opacity: 0.95;
    max-width: 600px;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-top: 10px;
}

.cta-buttons .btn {
    min-width: 220px;
    width: 240px;
    white-space: normal;
    line-height: 1.4;
    padding: 14px 22px;
}

/* ===== TREATMENT INFO SECTION ===== */
.treatment-info {
    background-color: var(--bg-light);
    padding: 60px 20px;
    text-align: center;
}
.treatment-info h2 {
    color: var(--primary-color);
    font-size: 32px;
    margin-bottom: 15px;
}
.treatment-info p {
    color: var(--text-light);
    font-size: 16px;
    margin-bottom: 30px;
}
/* ===== APPOINTMENT SECTION ===== */
.appointment-section {
    background-color: var(--bg-light);
    padding: 60px 20px;
    text-align: center;
}
.appointment-section h2 {
    color: var(--primary-color);
    font-size: 32px;
    margin-bottom: 15px;
}
.appointment-section p {
    color: var(--text-light);
    font-size: 16px;
    margin-bottom: 30px;
}
/* ===== CONTACT SECTION ===== */
.contact-content {
    padding: 60px 20px;
}
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 45px;
    align-items: start;
    max-width: 600px;
    margin: 0 auto;
}
.contact-form-section h2,
.contact-info-section h2 {
    color: var(--primary-color);
    margin-bottom: 30px;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.3;
}
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.form-group {
    display: flex;
    flex-direction: column;
}
.form-group label {
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 14px;
}
.form-group input,
.form-group textarea {
    padding: 12px 15px;
    border: 2px solid #d0d0d0;
    border-radius: 6px;
    font-family: inherit;
    font-size: 15px;
    transition: all 0.3s ease;
    width: 100%;
    background-color: var(--white);
}
.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(122, 202, 202, 0.1);
}
.form-message {
    padding: 15px;
    border-radius: 5px;
    text-align: center;
    font-weight: 600;
    display: none;
}
.form-message.success {
    display: block;
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}
.form-message.error {
    display: block;
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}
.info-card {
    background: var(--bg-light);
    padding: 25px;
    border-radius: 10px;
    border-left: 5px solid var(--primary-color);
    margin-bottom: 20px;
    transition: all 0.3s ease;
}
.info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}
.info-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 18px;
}
.info-card p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 10px;
}
.info-card a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}
.info-card a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}
/* ===== MAP SECTION ===== */
.map-section {
    background-color: var(--bg-light);
    padding: 60px 20px;
}
.map-section .section-heading {
    max-width: 760px;
    margin: 0 auto 30px;
}
.map-section h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 12px;
    font-size: 32px;
}
.map-section p {
    text-align: center;
    color: var(--text-light);
    font-size: 16px;
    max-width: 760px;
    margin: 0 auto;
}
.map-frame,
.map-container {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 18px 45px rgba(122, 202, 202, 0.18);
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    border: 1px solid rgba(122, 202, 202, 0.25);
}
.map-frame iframe,
.map-container iframe {
    width: 100%;
    min-height: 380px;
    display: block;
}
/* ===== FAQ SECTION ===== */
.faq-section {
    padding: 60px 20px;
}
.faq-section h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 50px;
    font-size: 32px;
}
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}
.faq-card {
    background: var(--white);
    padding: 25px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    border-top: 4px solid var(--primary-color);
    transition: all 0.3s ease;
}
.faq-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 5px 20px rgba(122, 202, 202, 0.2);
}
.faq-card h3 {
    color: var(--primary-color);
    margin-bottom: 12px;
    font-size: 16px;
}
.faq-card p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.6;
}
/* ===== FEATURE LINKS ===== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
}
.feature {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #ffffff 0%, #f7fcfc 100%);
    padding: 24px;
    border-radius: 18px;
    box-shadow: 0 8px 24px rgba(90, 169, 169, 0.12);
    border: 1px solid rgba(122, 202, 202, 0.2);
    height: 100%;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.feature-icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    margin-bottom: 14px;
    background: linear-gradient(135deg, rgba(122, 202, 202, 0.18), rgba(91, 169, 169, 0.28));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
    font-size: 22px;
    transition: transform 0.35s ease, background 0.35s ease;
}
.feature-image {
    width: 118px;
    height: 118px;
    margin: 0 auto 14px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--primary-color);
    box-shadow: 0 8px 18px rgba(90, 169, 169, 0.22);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.feature h3 {
    margin-bottom: 10px;
    color: var(--primary-color);
    position: relative;
    z-index: 1;
}
.feature p {
    color: var(--text-light);
    position: relative;
    z-index: 1;
}
.feature-link {
    display: block;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.feature-link:hover {
    transform: translateY(-3px);
}

/* ===== DOCTORS SHOWCASE ===== */
.doctors-showcase {
    padding: 70px 20px;
    background: linear-gradient(135deg, rgba(122, 202, 202, 0.08), rgba(255,255,255,0.95));
}
.section-heading {
    text-align: center;
    margin-bottom: 35px;
}
.section-heading h2 {
    color: var(--primary-color);
    font-size: 32px;
    margin-bottom: 8px;
}
.section-heading p {
    color: var(--text-light);
    font-size: 16px;
}
.doctors-showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
}
.doctor-showcase-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fdfd 100%);
    border-radius: 22px;
    padding: 24px 24px 28px;
    text-align: center;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(122, 202, 202, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.doctor-showcase-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.12);
}
.doctor-showcase-image {
    width: min(100%, 340px);
    aspect-ratio: 1 / 1;
    margin: 0 auto 20px;
    border-radius: 28px;
    overflow: hidden;
    border: 8px solid rgba(122, 202, 202, 0.85);
    box-shadow: 0 16px 36px rgba(90, 169, 169, 0.18);
    padding: 0;
    background: transparent;
}
.doctor-showcase-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 15%;
    display: block;
    border-radius: 20px;
}
.doctor-showcase-card h3 {
    color: var(--primary-color);
    margin-bottom: 6px;
    font-size: 22px;
}
.doctor-showcase-card p {
    color: var(--text-light);
    font-size: 15px;
    margin-top: 4px;
}

/* ===== STATS SECTION ===== */
.stats {
    padding: 50px 20px 20px;
    background: linear-gradient(135deg, rgba(122, 202, 202, 0.08) 0%, rgba(255,255,255,0.95) 100%);
}
.stats-header {
    text-align: center;
    margin-bottom: 30px;
}
.stats-header h2 {
    color: var(--primary-color);
    font-size: 32px;
    margin-bottom: 8px;
}
.stats-header p {
    color: var(--text-light);
    font-size: 16px;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}
.stat-card {
    background: var(--white);
    padding: 28px 20px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-top: 4px solid var(--primary-color);
}
.stat-number {
    font-size: 42px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 8px;
}
.stat-label {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ===== FOOTER ===== */
.footer {
    background-color: var(--primary-dark);
    color: var(--white);
    padding: 35px 20px;
    text-align: center;
}
.footer p {
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 1.6;
}
.footer p:last-child {
    margin-bottom: 0;
}
.footer a {
    color: white !important;
    text-decoration: none;
}
.footer a:hover {
    text-decoration: underline;
    color: white !important;
}
.footer-links {
    margin-top: 15px;
}
.footer-links a {
    color: white !important;
    text-decoration: none;
}
.footer-links a:hover {
    text-decoration: underline;
}
.footer-credit {
    margin-top: 15px;
    font-size: 14px;
}
.footer-credit a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 700;
}
.footer-credit a:hover {
    text-decoration: none;
}
#onekraft-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.98);
    width: min(420px, calc(100vw - 40px));
    max-width: 420px;
    min-width: 280px;
    background: linear-gradient(180deg, #0f2f40 0%, #0f1f31 100%);
    border: 1px solid rgba(123, 205, 205, 0.22);
    border-radius: 28px;
    box-shadow: 0 30px 90px rgba(12, 28, 46, 0.5);
    color: #eef7fb;
    padding: 28px 26px 24px;
    max-height: calc(100vh - 56px);
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transition: transform 0.25s ease, opacity 0.25s ease;
    z-index: 10001;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
#onekraft-popup.show {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}
#onekraft-popup-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(12, 28, 46, 0.78);
    backdrop-filter: blur(1.5px);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease;
}
#onekraft-popup-backdrop.show {
    opacity: 1;
    visibility: visible;
}
.onekraft-popup-inner {
    display: grid;
    gap: 18px;
}
.onekraft-popup-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}
.onekraft-popup-title {
    font-size: 22px;
    font-weight: 800;
    color: var(--primary-color);
    letter-spacing: 0.3px;
    margin: 0;
}
.onekraft-popup-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}
.onekraft-popup-close {
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
    cursor: pointer;
    font-size: 18px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}
.onekraft-popup-close:hover {
    background: rgba(255, 255, 255, 0.26);
}
.onekraft-popup-timer {
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    padding: 8px 14px;
    border-radius: 16px;
    border: 1px solid rgba(123, 205, 205, 0.22);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.4px;
}
.onekraft-popup-timer span {
    color: #ffffff;
}
.onekraft-popup-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
    min-height: 52px;
}
.onekraft-popup-row span {
    font-weight: 700;
}
.onekraft-popup-row strong {
    color: #d7e8f2;
    min-width: 92px;
}
.onekraft-popup-row span,
.onekraft-popup-row a {
    color: #d7e8f2;
}
.onekraft-popup-row a {
    color: #8ee0ff;
    text-decoration: none;
}
.onekraft-popup-row a:hover {
    text-decoration: underline;
}
@media (max-width: 600px) {
    #onekraft-popup {
        width: calc(100% - 24px);
        max-width: 100%;
        border-radius: 20px;
        padding: 20px 16px 16px;
        top: auto;
        bottom: 18px;
        transform: translate(-50%, 0) scale(1);
        box-shadow: 0 22px 60px rgba(12, 28, 46, 0.35);
        max-height: calc(100vh - 28px);
        overflow-y: auto;
    }
    .onekraft-popup-title {
        font-size: 18px;
    }
    .onekraft-popup-actions {
        gap: 8px;
        justify-content: flex-start;
    }
    .onekraft-popup-close {
        width: 34px;
        height: 34px;
        font-size: 16px;
    }
    .onekraft-popup-timer {
        padding: 6px 10px;
        font-size: 12px;
    }
    .onekraft-popup-row {
        display: grid;
        gap: 10px;
        padding: 12px 14px;
        min-height: auto;
    }
    .onekraft-popup-row strong {
        min-width: 0;
    }
    .onekraft-popup-row a {
        word-break: break-word;
    }
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
        flex-direction: column;
        cursor: pointer;
        gap: 6px;
        z-index: 1001;
        position: relative;
    }
    .hamburger span {
        width: 25px;
        height: 3px;
        background-color: var(--primary-color);
        border-radius: 3px;
        transition: all 0.4s ease;
        transform-origin: center;
    }
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translateY(11px);
    }
    .hamburger.active span:nth-child(2) {
        opacity: 0;
        transform: translateX(-10px);
    }
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translateY(-11px);
    }
    .logo {
        gap: 8px;
    }
    .logo-img {
        width: 70px;
        height: 75px;
    }
    .logo-text {
        font-size: 18px;
    }
    .navbar .container {
        position: relative;
    }
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        width: 100%;
        min-width: 0;
        box-sizing: border-box;
        padding: 0;
        max-height: 0;
        background-color: var(--white);
        flex-direction: column;
        gap: 0;
        transition: max-height 0.4s ease, opacity 0.4s ease;
        z-index: 999;
        overflow-y: auto;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        opacity: 0;
        visibility: hidden;
    }
    .nav-links.active {
        max-height: calc(100vh - 90px);
        min-height: 180px;
        opacity: 1;
        visibility: visible;
    }
    .nav-links li {
        padding: 0;
        border-bottom: 1px solid #e0e0e0;
        text-align: left;
        display: block;
        width: 100%;
    }
    .nav-links a {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        padding: 12px 20px;
        border-bottom: none;
        border-left: 5px solid transparent;
        text-align: left;
        color: var(--text-dark);
        font-weight: 500;
        font-size: 16px;
        line-height: 1.3;
        min-height: 48px;
        transition: all 0.3s ease;
        width: 100%;
        box-sizing: border-box;
    }
    .nav-links a:hover {
        background-color: rgba(122, 202, 202, 0.15);
        color: var(--primary-color);
    }
    .nav-links a.active {
        background-color: rgba(122, 202, 202, 0.3);
        color: var(--primary-color);
        border-left-color: var(--primary-color);
        padding-left: 20px;
        font-weight: 700;
        min-height: 48px;
        align-items: center;
        display: flex;
        box-sizing: border-box;
    }
    .dropdown {
        position: relative;
        display: block;
        width: 100%;
    }
    .nav-links .dropdown > a {
        width: 100%;
        padding: 12px 20px;
        justify-content: space-between;
        align-items: center;
        display: flex;
    }
    .nav-links .dropdown > a::after {
        content: '⌄';
        font-size: 14px;
        transition: transform 0.3s ease;
    }
    .nav-links .dropdown.active > a::after {
        transform: rotate(180deg);
    }
    .nav-links .dropdown.active > a {
        background-color: rgba(122, 202, 202, 0.18);
    }
    .nav-links .dropdown-menu {
        position: static;
        display: none;
        flex-direction: column;
        width: 100%;
        box-shadow: none;
        margin: 0;
        min-width: auto;
        background-color: rgba(122, 202, 202, 0.08);
        border-radius: 0;
        border-left: 5px solid var(--primary-color);
        overflow: hidden;
    }
    .nav-links .dropdown-menu a {
        padding: 10px 20px;
        padding-left: 45px;
        font-size: 15px;
        border-bottom: none;
        border-left: none;
        width: 100%;
        font-weight: 500;
        color: var(--text-dark);
        display: block;
    }
    .nav-links .dropdown-menu a:hover {
        background-color: rgba(122, 202, 202, 0.2);
        color: var(--primary-color);
        padding-left: 55px;
    }
    .nav-links .dropdown.active .dropdown-menu {
        display: block;
    }
    .hero {
        padding: 80px 20px;
    }
    .hero h1 {
        font-size: 36px;
        margin-bottom: 15px;
    }
    .hero p {
        font-size: 16px;
        margin-bottom: 25px;
    }
    .page-header {
        padding: 70px 20px;
    }
    .page-header h1 {
        font-size: 32px;
    }
    .page-header p {
        font-size: 15px;
    }
    .services h2,
    .treatment-info h2,
    .appointment-section h2,
    .map-section h2,
    .faq-section h2 {
        font-size: 28px;
        margin-bottom: 35px;
    }
    .cta h2 {
        font-size: 28px;
    }
    .service-grid,
    .treatments-grid,
    .doctors-grid,
    .values-grid,
    .faq-grid,
    .specialty-card {
        grid-template-columns: 1fr;
    }
    .service-grid,
    .treatments-grid,
    .doctors-grid,
    .values-grid,
    .faq-grid {
        gap: 20px;
    }
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .service-card,
    .treatment-card,
    .doctor-card,
    .doctor-profile,
    .value-card,
    .faq-card,
    .info-card {
        padding: 22px;
    }
    .services,
    .treatments-content,
    .doctors-content,
    .about-content,
    .treatment-info,
    .appointment-section,
    .contact-content,
    .map-section,
    .faq-section {
        padding: 60px 20px;
    }
    .map-container iframe {
        height: 350px;
    }
    .cta {
        padding: 60px 20px;
    }
}
@media (max-width: 480px) {
    .navbar .container {
        flex-direction: row;
        justify-content: space-between;
    }
    .logo {
        gap: 6px;
        flex: 1;
    }
    .logo-img {
        width: 70px;
        height: 80px;
        flex-shrink: 0;
    }
    .logo-text {
        font-size: 20px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        line-height: 1.1;
    }
    .hamburger {
        flex-shrink: 0;
    }
    .nav-links a {
        padding: 10px 18px;
        padding-left: 18px;
        font-size: 16px;
        border-left: 5px solid transparent;
        box-sizing: border-box;
    }
    .nav-links a:hover,
    .nav-links a.active {
        padding-left: 18px;
    }
    .nav-links .dropdown > a {
        padding: 10px 18px;
        padding-left: 18px;
    }
    .nav-links .dropdown-menu a {
        padding: 9px 18px;
        padding-left: 40px;
        font-size: 15px;
    }
    .hero {
        padding: 50px 15px;
    }
    .hero h1 {
        font-size: 28px;
        margin-bottom: 12px;
    }
    .hero p {
        font-size: 15px;
        margin-bottom: 20px;
    }
    .page-header {
        padding: 50px 15px;
    }
    .page-header h1 {
        font-size: 26px;
    }
    .page-header p {
        font-size: 15px;
    }
    .btn {
        padding: 12px 24px;
        font-size: 15px;
        display: inline-block;
        width: auto;
    }
    .contact-wrapper {
        gap: 25px;
    }
    .contact-form {
        gap: 15px;
    }
    .form-group input,
    .form-group textarea {
        padding: 11px 12px;
        font-size: 15px;
    }
    .service-card,
    .treatment-card,
    .doctor-card,
    .doctor-profile,
    .value-card,
    .faq-card,
    .info-card {
        padding: 18px;
    }
    .service-card h3,
    .treatment-card h3,
    .doctor-card h3,
    .doctor-profile h3,
    .value-card h3,
    .faq-card h3 {
        font-size: 17px;
    }
    .services,
    .treatments-content,
    .doctors-content,
    .about-content,
    .cta,
    .treatment-info,
    .appointment-section,
    .contact-content,
    .map-section,
    .faq-section {
        padding: 45px 15px;
    }
    .doctor-image {
        font-size: 50px;
        width: 100px;
        height: 100px;
        padding: 0;
        background: transparent;
    }
    .doctors-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .doctor-profile {
        padding: 20px;
    }
    .doctor-details h4 {
        font-size: 15px;
    }
    .doctor-details li {
        font-size: 13px;
    }
    .map-container iframe {
        height: 300px;
    }
}
/* ===== TREATMENT DETAIL PAGE ===== */
.treatment-detail {
    padding: 60px 20px;
}
.treatment-section {
    margin-bottom: 60px;
}
.treatment-section h2 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--primary-color);
}
.treatment-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}
.treatment-item {
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--white) 100%);
    padding: 25px;
    border-radius: 10px;
    border-left: 5px solid var(--primary-color);
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}
.treatment-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(122, 202, 202, 0.2);
}
.treatment-item h3 {
    color: var(--primary-color);
    font-size: 18px;
    margin-bottom: 10px;
}
.treatment-item p {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.5;
}
/* ===== TESTIMONIALS + DOCTORS (ADDITIONS FOR HOME) ===== */
.testimonials {
    padding: 60px 20px;
    background: #ffffff;
}
.testimonials .section-heading h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 6px;
    color: var(--text-dark);
}
.testimonials .section-heading p {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 24px;
}
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    align-items: center;
    justify-items: center;
    max-width: 1200px;
    margin: 0 auto;
}
.testimonial-image-only {
    width: 100%;
    max-width: 480px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 12px 28px rgba(0,0,0,0.07);
    background: #fff;
}
.testimonial-image-only img { width:100%; height:auto; display:block; object-fit:cover; }

/* Doctors detailed profiles */
.doctor-profiles { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 22px; align-items: start; max-width: 1200px; margin: 0 auto; }
.doctor-profile-detailed { display: flex; gap: 18px; align-items: flex-start; background: #fff; border-radius: 12px; padding: 18px; box-shadow: 0 8px 18px rgba(0,0,0,0.04); border: 1px solid rgba(11,60,73,0.04); }
.doctor-photo { flex: 0 0 140px; width: 140px; height: 140px; border-radius: 8px; overflow: hidden; background:#f4fbfb; }
.doctor-photo img { width:100%; height:100%; object-fit:cover; display:block; }
.doctor-details { flex:1 1 auto; display:flex; flex-direction:column; gap:8px; }
.doctor-details h3 { margin:0; color:var(--primary-color); font-size:20px; }
.doctor-role { font-weight:700; color:var(--text-dark); }
.doctor-quals { color:var(--text-light); font-size:0.95rem; margin:0; }
.doctor-specialty { color:var(--text-dark); font-size:0.95rem; margin:0; }
.doctor-bio { color:var(--text-light); font-size:0.95rem; margin-top:6px; }

@media (max-width: 820px) {
    .doctor-profile-detailed { flex-direction: column; align-items: center; text-align: center; }
    .doctor-photo { width: 120px; height: 120px; }
    .doctor-details { align-items: center; }
}

@media (max-width: 700px) {
    .testimonial-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 12px;
        max-width: 100%;
        padding: 0 12px;
    }
    .testimonial-image-only {
        min-width: auto;
        max-width: 100%;
        width: 100%;
        height: auto;
        scroll-snap-align: none;
        flex: none;
    }
}
.procedures-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
}
.procedure-item {
    background: linear-gradient(135deg, var(--primary-light) 0%, rgba(122, 202, 202, 0.1) 100%);
    padding: 25px;
    border-radius: 10px;
    border: 2px solid var(--primary-color);
    transition: all 0.3s ease;
}
.procedure-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(122, 202, 202, 0.3);
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--white) 100%);
}
.procedure-item h3 {
    color: var(--primary-dark);
    font-size: 18px;
    margin-bottom: 10px;
}
.procedure-item p {
    color: var(--text-dark);
    font-size: 15px;
    line-height: 1.5;
}
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 50px 40px;
    border-radius: 15px;
    text-align: center;
    margin-top: 60px;
}
.cta-section h2 {
    font-size: 28px;
    margin-bottom: 15px;
    color: var(--white);
}
.cta-section p {
    font-size: 18px;
    margin-bottom: 25px;
    opacity: 0.95;
}
.cta-section .btn {
    display: inline-block;
}
/* Treatment detail responsive */
@media (max-width: 768px) {
    .treatment-section h2 {
        font-size: 24px;
    }
    .treatment-list,
    .procedures-list {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .treatment-item,
    .procedure-item {
        padding: 20px;
    }
    .cta-section {
        padding: 35px 25px;
    }
}
@media (max-width: 480px) {
    .treatment-detail {
        padding: 45px 15px;
    }
    .treatment-section h2 {
        font-size: 22px;
        margin-bottom: 20px;
    }
    .treatment-item,
    .procedure-item {
        padding: 18px;
    }
    .treatment-item h3,
    .procedure-item h3 {
        font-size: 16px;
    }
    .cta-section {
        padding: 30px 15px;
        margin-top: 40px;
    }
    .cta-section h2 {
        font-size: 24px;
    }
    .cta-section p {
        font-size: 15px;
    }
}
    .cta-section h2 {
        font-size: 22px;
    }
    .cta-section p {
        font-size: 16px;
    }
}

/* ===== WHATSAPP FLOATING BUTTON ===== */
#whatsapp-floating-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366 0%, #20BA5C 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    transition: all 0.3s ease;
}

#whatsapp-floating-btn:hover {
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

#whatsapp-floating-btn a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    text-decoration: none;
    cursor: pointer;
}

#whatsapp-floating-btn svg {
    width: 32px;
    height: 32px;
    fill: white;
}

/* Responsive WhatsApp button */
@media (max-width: 768px) {
    #whatsapp-floating-btn {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
    }
    
    #whatsapp-floating-btn svg {
        width: 28px;
        height: 28px;
    }
}

@media (max-width: 480px) {
    #whatsapp-floating-btn {
        bottom: 15px;
        right: 15px;
        width: 50px;
        height: 50px;
    }
    
    #whatsapp-floating-btn svg {
        width: 24px;
        height: 24px;
    }
}


