:root {
    --primary: #34b8a3;
    --primary-dark: #269987;
    --primary-light: #e9f8f5;

    --black: #111111;
    --black-soft: #181818;

    --white: #ffffff;
    --light: #f7faf9;
    --gray: #687471;
    --border: #e1e9e7;

    --font-heading: "Manrope", sans-serif;
    --font-body: "DM Sans", sans-serif;

    --container: 1180px;
    --radius: 14px;

    --shadow: 0 15px 45px rgba(0, 0, 0, 0.08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--black);
    background: var(--white);
    line-height: 1.7;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

button,
input,
select,
textarea {
    font-family: inherit;
}

.container {
    width: min(1180px, calc(100% - 40px));
    margin: auto;
}


/* ================= LOGO ================= */
.logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.logo img {
    width: 180px;
    height: auto;
    display: block;
    object-fit: contain;
}

.logo-mark {
    width: 43px;
    height: 43px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: var(--white);
    font-size: 20px;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-text strong {
    font-family: var(--font-heading);
    font-size: 17px;
    letter-spacing: 1.5px;
}

.logo-text small {
    margin-top: 5px;
    color: var(--primary);
    font-size: 10px;
    letter-spacing: 2px;
    font-weight: 700;
}


/* ================= HEADER ================= */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.96);
    border-bottom: 1px solid rgba(0,0,0,0.06);
    backdrop-filter: blur(12px);
}

.header-inner {
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

.main-nav > a,
.nav-dropdown > a {
    color: #333;
    font-size: 14px;
    font-weight: 600;
    transition: 0.25s;
}

.main-nav > a:hover,
.nav-dropdown > a:hover {
    color: var(--primary);
}

.nav-dropdown {
    position: relative;
}

.nav-dropdown > a {
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-dropdown i {
    font-size: 9px;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 20px);
    left: -15px;
    width: 230px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 10px;
    box-shadow: var(--shadow);
    padding: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: 0.25s;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 9px 12px;
    border-radius: 6px;
    font-size: 13px;
    color: #444;
}

.dropdown-menu a:hover {
    color: var(--primary);
    background: var(--primary-light);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 18px;
}

.phone-link {
    font-size: 13px;
    font-weight: 700;
    display: flex;
    gap: 7px;
    align-items: center;
}

.phone-link i {
    color: var(--primary);
}

.menu-toggle {
    display: none;
    border: 0;
    background: none;
    font-size: 23px;
    cursor: pointer;
    color: var(--black);
}


/* ================= PREMIUM BUTTONS ================= */
.btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    padding: 12px 24px;
    min-height: 48px;

    background: var(--primary);
    color: var(--white);

    border: 1px solid transparent;
    border-radius: 8px;

    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.3px;
    text-decoration: none;

    cursor: pointer;
    overflow: hidden;

    box-shadow:
        0 6px 20px rgba(52, 184, 163, 0.20),
        inset 0 1px 0 rgba(255,255,255,0.20);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        background 0.3s ease;
}

.btn:hover {
    background: var(--primary-dark);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow:
        0 12px 28px rgba(52, 184, 163, 0.30),
        inset 0 1px 0 rgba(255,255,255,0.25);
}

.btn:active {
    transform: translateY(-1px);
}

.btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 70%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,0.25),
        transparent
    );
    transform: skewX(-20deg);
    transition: 0.6s;
}

.btn:hover::before {
    left: 130%;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--primary-dark);
}

.header-btn {
    padding: 10px 18px;
    font-size: 12px;
    min-height: 42px;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;

    padding: 12px 24px;
    min-height: 48px;

    background: transparent;
    color: var(--primary);

    border: 1px solid var(--primary);
    border-radius: 8px;

    font-size: 14px;
    font-weight: 700;
    text-decoration: none;

    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(52,184,163,0.20);
}

.btn-large {
    padding: 14px 26px;
    min-height: 52px;
}

.btn-white {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    min-height: 56px;
    padding: 0 28px;

    background: #ffffff;
    color: #1c3d3a;

    border: 1px solid rgba(52, 184, 163, 0.25);
    border-radius: 10px;

    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.2px;
    text-decoration: none;

    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.12),
        0 2px 6px rgba(52, 184, 163, 0.10);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        background 0.3s ease,
        color 0.3s ease;
}

.btn-white i {
    width: 32px;
    height: 32px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--primary);
    color: #ffffff;

    border-radius: 8px;
    font-size: 13px;

    transition: 0.3s ease;
}

.btn-white:hover {
    background: var(--primary);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow:
        0 14px 35px rgba(52, 184, 163, 0.30),
        0 5px 12px rgba(0, 0, 0, 0.10);
}

.btn-white:hover i {
    background: #ffffff;
    color: var(--primary);
    transform: rotate(5deg);
}

.btn-submit {
    width: 100%;
    border: 0;
    padding: 14px;
    min-height: 50px;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-size: 13px;
    font-weight: 800;
    transition: gap 0.3s ease;
}

.text-link:hover {
    gap: 12px;
}


/* ================= HERO ================= */
.hero {
    position: relative;
    overflow: hidden;
    background: var(--light);
    padding: 60px 0 65px;
}

.hero-bg-shape {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    right: -250px;
    top: -180px;
    background: rgba(52,184,163,0.08);
}

.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 0.85fr;
    gap: 70px;
    align-items: center;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.eyebrow i {
    color: var(--primary);
}

.hero h1 {
    max-width: 700px;
    font-family: var(--font-heading);
    font-size: clamp(42px, 5vw, 68px);
    line-height: 1.08;
    letter-spacing: -2.5px;
}

.hero h1 span,
.about-content h2 span,
.section-heading h2 span,
.doctor-content h2 span,
.appointment-content h2 span,
.booking-info h2 span,
.contact-section h2 span {
    color: var(--primary);
    display: block;
}

.hero-content > p {
    max-width: 610px;
    margin: 23px 0 30px;
    color: var(--gray);
    font-size: 16px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 7px;
    color: #52605d;
    font-size: 12px;
    font-weight: 600;
}

.trust-item i {
    color: var(--primary);
}

.hero-visual {
    position: relative;
}

.hero-image-wrapper {
    position: relative;
    max-width: 500px;
    margin-left: auto;
}

.hero-main-image {
    width: 100%;
    height: 500px;
    display: block;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.experience-card {
    position: absolute;
    bottom: 25px;
    left: -35px;
    background: var(--white);
    padding: 16px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: 240px;
}

.experience-icon {
    width: 43px;
    height: 43px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-light);
    color: var(--primary);
    font-size: 18px;
}

.experience-card strong,
.experience-card span {
    display: block;
}

.experience-card strong {
    font-size: 12px;
    color: var(--black);
}

.experience-card span {
    color: var(--gray);
    font-size: 10px;
}


/* ================= QUICK INFO ================= */
.quick-info {
    background: var(--black);
    color: var(--white);
}

.quick-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.quick-item {
    min-height: 100px;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 25px;
    border-right: 1px solid #292929;
}

.quick-item:last-child {
    border-right: 0;
}

.quick-icon {
    width: 43px;
    height: 43px;
    border-radius: 50%;
    background: rgba(52,184,163,0.15);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

.quick-item span,
.quick-item strong {
    display: block;
}

.quick-item span {
    color: #8c9794;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
}

.quick-item strong {
    font-size: 12px;
    line-height: 1.6;
    margin-top: 3px;
}


/* ================= GENERAL SECTIONS ================= */
.section {
    padding: 80px 0;
}

.section-label {
    color: var(--primary);
    font-size: 11px;
    letter-spacing: 2px;
    font-weight: 800;
}

.section-heading {
    max-width: 700px;
    margin-bottom: 45px;
}

.section-heading.centered {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.section-heading h2,
.about-content h2,
.doctor-content h2,
.booking-info h2 {
    margin-top: 10px;
    font-family: var(--font-heading);
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.15;
    letter-spacing: -1.5px;
}

.section-heading p {
    margin-top: 15px;
    color: var(--gray);
}


/* ================= ABOUT ================= */
.about-grid {
    display: grid;
    grid-template-columns: 0.9fr 1fr;
    gap: 85px;
    align-items: center;
}

.about-visual {
    position: relative;
}

.about-image-main {
    width: 100%;
    height: 460px;
    overflow: hidden;
    border-radius: 20px;
}

.about-main-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

.about-badge {
    position: absolute;
    right: -20px;
    bottom: 30px;
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--white);
    padding: 15px 20px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.about-badge > i {
    width: 45px;
    height: 45px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #ffffff;
    background: var(--primary);

    border-radius: 50%;
    font-size: 18px;
    flex-shrink: 0;
}

.about-badge strong,
.about-badge span {
    display: block;
}

.about-badge strong {
    font-size: 14px;
    color: var(--black);
}

.about-badge span {
    color: var(--gray);
    font-size: 12px;
}

.about-content .lead {
    margin: 23px 0 15px;
    color: #444;
    font-size: 16px;
}

.about-content p:not(.lead) {
    color: var(--gray);
    font-size: 14px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 13px;
    margin: 28px 0;
}

.about-features div {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #333;
    font-size: 13px;
    font-weight: 600;
}

.about-features i {
    color: var(--primary);
}


/* ================= REVIEWS ================= */
.reviews-section {
    padding: 80px 0;
    background: var(--white);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: 20px;
}

.review-card {
    background: var(--light);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 28px 26px;
    display: flex;
    flex-direction: column;
    transition: 0.3s ease;
    position: relative;
}

.review-card::before {
    content: "\201C";
    position: absolute;
    top: 8px;
    right: 22px;
    font-family: var(--font-heading);
    font-size: 70px;
    line-height: 1;
    color: rgba(52,184,163,0.15);
}

.review-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
    background: var(--white);
}

.review-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 14px;
    color: #f5b301;
    font-size: 14px;
}

.review-text {
    color: #3b4543;
    font-size: 14px;
    line-height: 1.75;
    margin-bottom: 22px;
    flex-grow: 1;
}

.review-footer {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

.review-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 18px;
    flex-shrink: 0;
    box-shadow: 0 6px 18px rgba(52,184,163,0.30);
}

.review-footer strong {
    display: block;
    color: var(--black);
    font-size: 14px;
    font-family: var(--font-heading);
}

.review-footer span {
    color: var(--gray);
    font-size: 12px;
}

.reviews-cta {
    text-align: center;
    margin-top: 45px;
}


/* ================= TEAM ================= */
.team-section {
    padding: 80px 0;
    background: var(--light);
    overflow: hidden;
}

.team-slider {
    position: relative;
    overflow: hidden;
    padding: 10px 50px;
}

.team-track {
    display: flex;
    transition: transform 0.6s ease;
}

.team-card {
    flex: 0 0 33.333%;
    padding: 0 12px;
    text-align: center;
    box-sizing: border-box;
}

.team-image {
    width: 100%;
    height: 340px;
    overflow: hidden;
    border-radius: 14px;
    background: #f5f5f5;
}

.team-image img {
    width: 100%;
    height: 120%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.team-card:hover .team-image img {
    transform: scale(1.05);
}

.team-card h3 {
    margin: 18px 0 5px;
    font-family: var(--font-heading);
    font-size: 20px;
    color: var(--black);
}

.team-card p {
    margin: 0;
    color: var(--primary);
    font-size: 13px;
    font-weight: 600;
}

.team-prev,
.team-next {
    position: absolute;
    top: 42%;
    transform: translateY(-50%);

    width: 44px;
    height: 44px;

    border: none;
    border-radius: 50%;

    background: var(--primary);
    color: #ffffff;

    font-size: 16px;

    cursor: pointer;
    z-index: 5;

    display: flex;
    align-items: center;
    justify-content: center;

    box-shadow: 0 6px 18px rgba(52,184,163,0.30);

    transition: background 0.3s ease, transform 0.3s ease;
}

.team-prev:hover,
.team-next:hover {
    background: var(--primary-dark);
    transform: translateY(-50%) scale(1.1);
}

.team-prev:active,
.team-next:active {
    transform: translateY(-50%) scale(0.95);
}

.team-prev {
    left: 0;
}

.team-next {
    right: 0;
}

.team-dots {
    text-align: center;
    margin-top: 25px;
}

.team-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    margin: 0 6px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    border: none;
    transition: background 0.3s ease, transform 0.3s ease;
}

.team-dot.active {
    background: var(--primary);
    transform: scale(1.2);
}


/* ================= SERVICES ================= */
.services-section {
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.service-card {
    background: var(--white);
    padding: 27px;
    border-radius: 12px;
    border: 1px solid var(--border);
    transition: 0.3s;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
}

.service-card.featured {
    background: var(--black);
    color: var(--white);
}

.service-icon {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-light);
    color: var(--primary);
    font-size: 21px;
    margin-bottom: 20px;
}

.service-card.featured .service-icon {
    background: rgba(52,184,163,0.20);
    color: var(--primary);
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 17px;
    margin-bottom: 9px;
}

.service-card p {
    color: var(--gray);
    font-size: 12px;
    line-height: 1.7;
    min-height: 62px;
}

.service-card.featured p {
    color: #a4afac;
}

.service-card a {
    display: inline-flex;
    gap: 7px;
    color: var(--primary);
    font-size: 11px;
    font-weight: 800;
    margin-top: 20px;
}


/* ================= DOCTOR ================= */
.doctor-section {
    background: var(--light);
}

.doctor-grid {
    display: grid;
    grid-template-columns: 0.8fr 1fr;
    gap: 85px;
    align-items: center;
}

.doctor-image {
    width: 100%;
    height: 480px;
    overflow: hidden;
    border-radius: 20px;
    background: #f5f5f5;
}

.doctor-main-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center top;
}

.doctor-content > p {
    color: var(--gray);
    font-size: 14px;
    margin-top: 18px;
}

.doctor-specialties {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin: 28px 0;
}

.doctor-specialties div {
    font-size: 13px;
    font-weight: 700;
    color: #3f4947;
}

.doctor-specialties i {
    color: var(--primary);
    margin-right: 7px;
}


/* ================= WHY ================= */
.why-section {
    background: var(--white);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.why-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 28px;
    position: relative;
    transition: 0.3s;
}

.why-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
}

.why-number {
    position: absolute;
    right: 20px;
    top: 17px;
    color: #dce9e6;
    font-family: var(--font-heading);
    font-size: 25px;
    font-weight: 800;
}

.why-card > i {
    color: var(--primary);
    font-size: 25px;
    margin-bottom: 18px;
}

.why-card h3 {
    font-family: var(--font-heading);
    font-size: 17px;
    margin-bottom: 8px;
}

.why-card p {
    color: var(--gray);
    font-size: 12px;
}


/* ================= APPOINTMENT CTA ================= */
.appointment-section {
    padding: 70px 0;
    background: var(--primary);
    color: var(--white);
    overflow: hidden;
}

.appointment-inner {
    position: relative;
}

.appointment-content {
    max-width: 760px;
    position: relative;
    z-index: 2;
}

.section-label.light {
    color: rgba(255,255,255,0.75);
}

.appointment-content h2 {
    font-family: var(--font-heading);
    font-size: clamp(35px, 4vw, 55px);
    line-height: 1.1;
    margin-top: 12px;
}

.appointment-content h2 span {
    color: var(--white);
    opacity: 0.85;
}

.appointment-content p {
    max-width: 650px;
    color: rgba(255,255,255,0.85);
    margin: 18px 0 28px;
}

.appointment-buttons {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
    margin-top: 8px;
}

.appointment-phone {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    min-height: 56px;
    padding: 7px 22px 7px 8px;

    color: #ffffff;
    text-decoration: none;

    background: rgba(255, 255, 255, 0.08);

    border: 1px solid rgba(255, 255, 255, 0.20);
    border-radius: 10px;

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.appointment-phone > i {
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #ffffff;
    color: var(--primary);

    border-radius: 50%;

    font-size: 15px;

    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);

    transition: 0.3s ease;
}

.appointment-phone span {
    display: flex;
    flex-direction: column;
    gap: 2px;

    font-size: 15px;
    font-weight: 700;
    line-height: 1.2;
}

.appointment-phone span small {
    color: rgba(255, 255, 255, 0.65);

    font-size: 10px;
    font-weight: 600;

    text-transform: uppercase;
    letter-spacing: 1px;
}

.appointment-phone:hover {
    color: #ffffff;

    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.45);

    transform: translateY(-3px);

    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.appointment-phone:hover > i {
    transform: scale(1.08);
}

.appointment-decoration {
    position: absolute;
    right: 20px;
    top: -70px;
    font-size: 280px;
    color: rgba(255,255,255,0.08);
    pointer-events: none;
}


/* ================= BOOKING ================= */
.booking-section {
    background: var(--light);
}

.booking-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 80px;
    align-items: start;
}

.booking-info > p {
    color: var(--gray);
    margin-top: 20px;
    max-width: 430px;
}

.contact-list {
    margin-top: 35px;
    display: grid;
    gap: 18px;
}

.contact-list-item {
    display: flex;
    gap: 13px;
    align-items: center;
}

.contact-list-item > div {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-light);
    color: var(--primary);
}

.contact-list-item small,
.contact-list-item span {
    display: block;
}

.contact-list-item small {
    color: var(--gray);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-list-item span {
    font-size: 13px;
    font-weight: 700;
}

.booking-form-wrapper {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 15px;
    padding: 32px;
}

.appointment-form {
    display: grid;
    gap: 16px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.form-group label {
    display: block;
    color: #3b4543;
    font-size: 11px;
    font-weight: 800;
    margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 7px;
    padding: 11px 13px;
    outline: none;
    color: #333;
    font-size: 13px;
    transition: 0.25s;
}

.form-group textarea {
    resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(52,184,163,0.1);
}

.form-note {
    text-align: center;
    color: #89928f;
    font-size: 10px;
}

.form-note i {
    color: var(--primary);
}

.form-message {
    display: none;
    padding: 12px;
    background: var(--primary-light);
    color: var(--primary-dark);
    border-radius: 6px;
    font-size: 12px;
    text-align: center;
}

.form-message.success {
    background: var(--primary-light);
    color: var(--primary-dark);
}

.form-message.error {
    background: #fdecea;
    color: #c0392b;
}


/* ================= CONTACT ================= */
.contact-section {
    background: var(--black);
    color: var(--white);
    padding: 40px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    align-items: center;
    gap: 50px;
}

.contact-section h2 {
    font-family: var(--font-heading);
    font-size: clamp(35px, 4vw, 50px);
    line-height: 1.1;
    margin-top: 10px;
}

.contact-details {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.contact-details a,
.contact-details > div {
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-details > a > i,
.contact-details > div > i {
    color: var(--primary);
    font-size: 20px;
}

.contact-details small,
.contact-details span {
    display: block;
}

.contact-details small {
    color: #7d8985;
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-details span {
    font-size: 12px;
    font-weight: 700;
}

.map-link {
    display: inline-block;
    transition: color 0.25s ease;
}

.map-link:hover {
    color: var(--primary);
}

.quick-info .map-link,
.quick-info .map-link strong {
    color: var(--white);
}

.quick-info .map-link:hover,
.quick-info .map-link:hover strong {
    color: var(--primary);
}

.contact-details a.map-link:hover {
    color: var(--primary);
}


/* ================= FOOTER ================= */
.site-footer {
    background: #0c0c0c;
    color: var(--white);
}

.footer-grid {
    padding: 60px 0 40px;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 45px;
}

.footer-brand p {
    max-width: 310px;
    color: #737d7a;
    font-size: 14px;
    margin-top: 18px;
}

.footer-logo .logo-text strong {
    color: var(--white);
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.footer-column h4 {
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 16px;
    margin-bottom: 8px;
}

.footer-column a,
.footer-column span {
    color: #77807e;
    font-size: 14px;
}

.footer-column a:hover {
    color: var(--primary);
}

.footer-bottom {
    border-top: 1px solid #242424;
}

.footer-bottom-inner {
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    color: #626b68;
    font-size: 10px;
}

.footer-bottom a {
    color: #34b8a3;
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
}


/* ================= RESPONSIVE ================= */
@media (max-width: 1100px) {
    .logo img {
        width: 160px;
    }

    .main-nav {
        gap: 18px;
    }

    .phone-link span {
        display: none;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-details {
        grid-template-columns: 1fr;
    }

    .team-card {
        flex: 0 0 50%;
    }

    .team-image {
        height: 300px;
    }
}


@media (max-width: 900px) {
    .main-nav,
    .header-actions {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .main-nav.active {
        position: absolute;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        top: 82px;
        left: 20px;
        right: 20px;
        padding: 18px;
        background: var(--white);
        border: 1px solid var(--border);
        border-radius: 10px;
        box-shadow: var(--shadow);
        gap: 12px;
    }

    .dropdown-menu {
        position: static;
        width: 100%;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        display: none;
        border: 0;
        padding-left: 10px;
    }

    .nav-dropdown:hover .dropdown-menu {
        display: block;
    }

    .hero-grid,
    .about-grid,
    .doctor-grid,
    .booking-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .hero {
        padding: 50px 0;
    }

    .hero-image-wrapper {
        margin: auto;
        max-width: 520px;
    }

    .hero-main-image {
        height: 420px;
    }

    .quick-info-grid {
        grid-template-columns: 1fr;
    }

    .quick-item {
        border-right: 0;
        border-bottom: 1px solid #292929;
    }

    .quick-item:last-child {
        border-bottom: 0;
    }

    .about-badge {
        right: 20px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 35px;
    }
}


@media (max-width: 600px) {
    .container {
        width: min(100% - 28px, 1180px);
    }

    .logo img {
        width: 140px;
    }

    .section {
        padding: 60px 0;
    }

    .hero {
        padding: 40px 0;
    }

    .hero h1 {
        font-size: 40px;
        letter-spacing: -1.5px;
    }

    .hero-main-image {
        height: 340px;
    }

    .experience-card {
        left: 12px;
        bottom: 18px;
        padding: 12px 15px;
    }

    .hero-trust {
        flex-direction: column;
        gap: 9px;
    }

    .services-grid,
    .why-grid,
    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .about-features,
    .doctor-specialties,
    .form-row {
        grid-template-columns: 1fr;
    }

    .booking-form-wrapper {
        padding: 20px;
    }

    .appointment-decoration {
        display: none;
    }

    .appointment-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .btn-white,
    .appointment-phone {
        width: 100%;
        box-sizing: border-box;
        justify-content: center;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom-inner {
        flex-direction: column;
        justify-content: center;
        padding: 15px 0;
        text-align: center;
    }

    .team-slider {
        padding: 10px 40px;
    }

    .team-card {
        flex: 0 0 100%;
        padding: 0 6px;
    }

    .team-image {
        height: 340px;
    }

    .team-prev,
    .team-next {
        width: 36px;
        height: 36px;
        font-size: 13px;
    }

    .team-prev {
        left: 0;
    }

    .team-next {
        right: 0;
    }

    .btn,
    .btn-primary,
    .btn-outline,
    .btn-large {
        width: 100%;
        padding: 12px 20px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }
}
/* ================= VIDEOS (INSTAGRAM EMBED) ================= */
.videos-section {
    padding: 80px 0;
    background: var(--light);
    position: relative;
    overflow: hidden;
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
    margin-top: 20px;
    align-items: start;
}

.video-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
    display: flex;
    flex-direction: column;
}

.video-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 45px rgba(52, 184, 163, 0.18);
    border-color: rgba(52, 184, 163, 0.35);
}

/* Embed area — Instagram apna iframe yahan daalega */
.video-embed {
    width: 100%;
    min-height: 480px;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    overflow: hidden;
}

/* Instagram iframe ko responsive banao */
.video-embed .instagram-media {
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    margin: 0 auto !important;
    border-radius: 12px !important;
}

/* Info */
.video-info {
    padding: 20px 22px 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: center;
}

.video-info h3 {
    font-family: var(--font-heading);
    font-size: 17px;
    color: var(--black);
    margin: 0;
}

.video-info p {
    color: var(--gray);
    font-size: 13px;
    line-height: 1.6;
    margin: 0;
}

/* Instagram button — click karne par Insta khulega */
.video-link-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    margin-top: 14px;
    padding: 11px 20px;
    background: linear-gradient(135deg, #833ab4 0%, #fd1d1d 50%, #fcb045 100%);
    color: #ffffff;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
    box-shadow: 0 6px 18px rgba(131, 58, 180, 0.25);
}

.video-link-btn:hover {
    transform: translateY(-3px);
    filter: brightness(1.08);
    box-shadow: 0 12px 28px rgba(131, 58, 180, 0.35);
    color: #ffffff;
}

.video-link-btn i {
    font-size: 14px;
}

.video-link-btn i.fa-arrow-up-right-from-square {
    font-size: 10px;
}

.videos-cta {
    text-align: center;
    margin-top: 45px;
}

.videos-cta .btn-outline i.fa-instagram {
    font-size: 16px;
}

/* Responsive */
@media (max-width: 1000px) {
    .videos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .video-embed {
        min-height: 520px;
    }
}

@media (max-width: 640px) {
    .videos-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .video-embed {
        min-height: 460px;
    }
}
