/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

:root {
    --cl-primary: #00BFB3;
    /* Bright Teal from image */
    --cl-primary-dark: #008f85;
    --cl-secondary: #003642;
    /* Darker teal/blue */
    --cl-text: #4A4A4A;
    --cl-text-light: #777;
    --cl-white: #ffffff;
    --cl-bg-light: #F7F9FB;
    --cl-font-family: 'Poppins', sans-serif;
}

/* Reset & Utilities */
.clinic-lp-wrapper * {
    box-sizing: border-box;
}

.clinic-lp-wrapper {
    font-family: var(--cl-font-family);
    color: var(--cl-text);
    line-height: 1.6;
    background-color: var(--cl-white);
}

.clinic-lp-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

.clinic-lp-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.text-center {
    text-align: center;
}

h1,
h2,
h3 {
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

/* Buttons */
.clinic-lp-btn-white {
    background-color: var(--cl-white);
    color: var(--cl-primary);
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    display: inline-block;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
}

.clinic-lp-btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.clinic-lp-btn-outline {
    border: 2px solid var(--cl-primary);
    color: var(--cl-primary);
    padding: 8px 10px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
}

/* Navbar */
.clinic-lp-nav {
    padding: 20px 0;
}

.clinic-lp-nav .clinic-lp-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.clinic-lp-logo {
    font-weight: 700;
    font-size: 24px;
    color: var(--cl-secondary);
}

.clinic-lp-menu {
    list-style: none;
    display: flex;
    gap: 20px;
    padding: 0;
    margin: 0;
}

.clinic-lp-menu a {
    text-decoration: none;
    color: var(--cl-text);
    font-weight: 500;
    font-size: 14px;
}

/* Hero Section */
.clinic-lp-hero {
    background: linear-gradient(135deg, #00D2C6 0%, #009E96 100%);
    border-radius: 40px;
    margin: 20px;
    padding: 60px 40px;
    color: var(--cl-white);
    position: relative;
    overflow: hidden;
}

.clinic-lp-hero h1 {
    font-size: 42px;
    margin-bottom: 20px;
}

.clinic-lp-hero p {
    font-size: 16px;
    margin-bottom: 30px;
    opacity: 0.9;
    max-width: 400px;
}

.clinic-lp-hero-text {
    flex: 1;
    z-index: 2;
}

.clinic-lp-hero-img {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    z-index: 2;
}

/* Features Section */
.clinic-lp-section {
    padding: 80px 0;
}

.clinic-lp-features h2 {
    color: var(--cl-secondary);
    font-size: 32px;
}

.section-sub {
    color: var(--cl-text-light);
    margin-bottom: 40px;
}

.clinic-lp-feature-list {
    list-style: none;
    padding: 0;
}

.clinic-lp-feature-list li {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.icon-box {
    width: 40px;
    height: 40px;
    background-color: var(--cl-primary);
    color: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.clinic-lp-feature-list h3 {
    font-size: 16px;
    margin-bottom: 5px;
    color: var(--cl-secondary);
}

.clinic-lp-feature-list p {
    font-size: 13px;
    color: var(--cl-text-light);
    margin: 0;
}

/* Map Section */
.clinic-lp-map .stat-box {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.big-num {
    font-size: 40px;
    font-weight: 700;
    color: var(--cl-primary);
    line-height: 1;
}

/* Steps (Teal BG) */
.clinic-lp-steps-bg {
    background-color: var(--cl-primary);
    color: white;
    border-radius: 40px;
    margin: 20px;
    text-align: center;
}

.clinic-lp-steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.step-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 20px;
    position: relative;
}

.step-num {
    background: white;
    color: var(--cl-primary);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-bottom: 15px;
}

.phone-mockup,
.step-img-wrapper {
    background: white;
    height: 150px;
    border-radius: 10px;
    margin-top: 20px;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* Testimonials */
.testimonial-grid {
    display: flex;
    gap: 20px;
    margin-top: 40px;
}

.testimonial-card {
    background: var(--cl-primary);
    color: white;
    padding: 30px;
    border-radius: 20px;
    flex: 1;
    font-size: 14px;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
}

.avatar {
    width: 45px;
    height: 45px;
    padding: 3px;
    background: white;
    border-radius: 50%;
}

/* CTA Footer */
.clinic-lp-cta {
    padding-bottom: 0;
}

.clinic-lp-footer-bar {
    background-color: var(--cl-primary);
    color: white;
    padding: 20px;
    text-align: center;
    margin-top: -20px;
    /* Pull up */
    position: relative;
    z-index: 1;
}

/* Hamburger Menu */
.clinic-lp-hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.clinic-lp-hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--cl-secondary);
    margin: 5px 0;
    transition: 0.3s;
}

/* Active State for Hamburger */
.clinic-lp-hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.clinic-lp-hamburger.active span:nth-child(2) {
    opacity: 0;
}

.clinic-lp-hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Responsive */
@media (max-width: 768px) {
    .clinic-lp-flex {
        flex-direction: column;
    }

    .clinic-lp-steps-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-grid {
        flex-direction: column;
    }

    .clinic-lp-hero h1 {
        font-size: 32px;
    }

    /* Mobile Menu */
    .clinic-lp-hamburger {
        display: block;
    }

    .clinic-lp-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--cl-white);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        padding: 20px;
        border-radius: 0 0 20px 20px;
        z-index: 1000;
        text-align: center;
    }

    .clinic-lp-menu.active {
        display: flex;
    }

    .clinic-lp-menu li {
        margin-bottom: 15px;
    }

    .clinic-lp-btn-outline {
        display: none;
    }
}