:root {
    --teal: #2A9D8F;
    --teal-dark: #21867a;
    --navy: #264653;
    --light-blue: #E9F5F5;
    --white: #ffffff;
    --gray-text: #6B7280;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --radius: 12px;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--navy);
    line-height: 1.6;
    margin: 0;
    background-color: var(--white);
}

h1,
h2,
h3,
h4 {
    color: var(--navy);
    margin-top: 0;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

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

/* Buttons */
.btn {
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    display: inline-block;
    cursor: pointer;
    border: none;
}

.btn-teal {
    background-color: var(--teal);
    color: var(--white);
}

.btn-teal:hover {
    background-color: var(--teal-dark);
    transform: translateY(-2px);
}

.btn-ghost {
    background: transparent;
    color: var(--teal);
    border: 2px solid var(--teal);
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1.1rem;
}

.full {
    width: 100%;
}

/* Utilities */
.center {
    text-align: center;
}

.bg-blue-light {
    background-color: var(--light-blue);
}

/* Alert Bar */
.alert-bar {
    background-color: var(--navy);
    color: var(--white);
    text-align: center;
    padding: 8px;
    font-size: 0.9rem;
}

.alert-bar p {
    margin: 0;
}

/* Navbar */
.navbar {
    padding: 20px 0;
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--navy);
    display: flex;
    align-items: center;
    gap: 10px;
}

.brand i {
    color: var(--teal);
}

.nav-menu {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-menu a:not(.btn) {
    font-weight: 500;
    color: var(--gray-text);
}

.nav-menu a:not(.btn):hover {
    color: var(--teal);
}

/* Hero */
.hero-medical {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.tag {
    display: inline-block;
    background-color: var(--light-blue);
    color: var(--teal);
    padding: 6px 12px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.hero-text h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-text p {
    font-size: 1.1rem;
    color: var(--gray-text);
    margin-bottom: 30px;
}

.hero-actions {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.trust-indicators {
    display: flex;
    gap: 20px;
    color: var(--gray-text);
    font-size: 0.9rem;
}

.trust-indicators i {
    color: var(--teal);
}

.hero-img-wrapper {
    position: relative;
}

.hero-img {
    border-radius: 24px;
    box-shadow: var(--shadow);
}

.floating-card {
    position: absolute;
    background: var(--white);
    padding: 15px 25px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: var(--shadow);
    animation: float 3s ease-in-out infinite;
}

.card-1 {
    bottom: 30px;
    left: -30px;
}

.card-2 {
    top: 40px;
    right: -20px;
    animation-delay: 1.5s;
}

.floating-card i {
    font-size: 2rem;
    color: var(--teal);
}

.floating-card strong {
    display: block;
    font-size: 1.2rem;
}

.floating-card span {
    font-size: 0.8rem;
    color: var(--gray-text);
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Sections */
.section {
    padding: 80px 0;
}

.section-head {
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.section-head h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.svc-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius);
    border: 1px solid #f0f0f0;
    transition: 0.3s;
}

.svc-card:hover {
    border-color: var(--teal);
    box-shadow: var(--shadow);
}

.icon-circle {
    width: 60px;
    height: 60px;
    background: var(--light-blue);
    color: var(--teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

/* Doctors */
.doctors-slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.doc-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.doc-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.doc-info {
    padding: 20px;
}

.doc-info h4 {
    margin-bottom: 5px;
}

.doc-info span {
    color: var(--teal);
    display: block;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.btn-text {
    color: var(--navy);
    font-weight: 600;
    font-size: 0.9rem;
}

/* Booking */
.booking-section {
    background: var(--navy);
    color: var(--white);
    padding: 80px 0;
}

.booking-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.booking-left h2 {
    color: var(--white);
}

.steps {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.step {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.1rem;
}

.step span {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.booking-form {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    color: var(--navy);
}

.booking-form h3 {
    margin-bottom: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

input,
select {
    width: 100%;
    padding: 14px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #f9f9f9;
}

.form-note {
    font-size: 0.8rem;
    color: var(--gray-text);
    margin-top: 15px;
    text-align: center;
}

/* Footer */
footer {
    background: #f8f9fa;
    padding: 60px 0;
    border-top: 1px solid #eee;
    margin-top: 50px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.footer-grid h4 {
    margin-bottom: 20px;
}

.footer-grid p {
    color: var(--gray-text);
    margin-bottom: 10px;
}

/* Mobile */
@media (max-width: 768px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }

    .hero-img-wrapper {
        order: -1;
    }

    .nav-menu {
        display: none;
    }

    /* Simplified for mobile */
    .doctors-slider {
        grid-template-columns: 1fr;
    }

    .booking-container {
        grid-template-columns: 1fr;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }
}