/* 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 {
    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);
    text-decoration: none;
    display: flex;
    align-items: center;
}

.clinic-lp-logo img {
    max-height: 40px;
    width: auto;
    display: block;
}

.clinic-lp-mobile-center {
    display: none;
    flex: 1;
    text-align: center;
    justify-content: center;
    align-items: center;
}



.clinic-lp-mobile-text {
    display: none;
    color: var(--cl-primary);
    font-weight: 600;
    font-size: 26px;
    text-align: center;
    flex: 1;
}



.clinic-lp-mobile-image {
    max-height: 40px;
    width: auto;
    display: block;
    margin: 0 auto;
}
.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;
    min-height: 500px;
}

.clinic-lp-hero h1 {
    font-size: 42px;
    margin-bottom: 20px;
}

.clinic-lp-hero p {
    font-size: 25px;
    margin-bottom: 30px;
    opacity: 1;
    max-width: 400px;
}

.clinic-lp-hero-text {
    flex: 1;
    z-index: 2;
    position: relative;
}

/* Features Section */
.clinic-lp-section {
    padding: 40px 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;
    transition: transform 0.3s ease;
}

.step-img:hover {
    transform: scale(1.05);
}

/* Lightbox Modal */
.clinic-lp-lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    overflow: auto;
    animation: fadeIn 0.3s;
}

.clinic-lp-lightbox.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.clinic-lp-lightbox-content {
    position: relative;
    margin: auto;
    max-width: 90%;
    max-height: 90%;
    animation: zoomIn 0.3s;
}

.clinic-lp-lightbox-img-full {
    width: 100%;
    height: auto;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 10px;
}

.clinic-lp-lightbox-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10000;
    transition: color 0.3s;
}

.clinic-lp-lightbox-close:hover {
    color: var(--cl-primary);
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Testimonials */
.testimonial-grid {
    display: flex;
    gap: 20px;
    margin-top: 40px;
}

.testimonial-card {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
    background: var(--cl-primary);
   
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding: 10px 10px;
    border-radius: 18px;
    border-top-left-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 191, 179, 0.02);
    margin-left: 62px;
}


.testimonial-card::before {
    content: '';
    position: absolute;
    left: -12px;
    top: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0 20px 12px;
    border-color: transparent transparent var(--cl-primary) transparent;
    filter: drop-shadow(-2px -2px 2px rgba(0, 191, 179, 0.2));
}

.testimonial-card::after {
    content: '';
    position: absolute;
    left: -12px;
    top: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0 20px 12px;
    border-color: transparent transparent rgba(189, 221, 244, 0.3) transparent;
    z-index: -1;
    transform: translate(-1px, -1px);
}

.user-info {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    z-index: 1;
}

.avatar {
    width: 50px;
    height: 50px;
    padding: 2px;
    background: var(--cl-primary);
    border-radius: 50%;
    flex-shrink: 0;
    overflow: hidden;
}

.user-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.user-details strong {
    color: white;
    font-size: 17px;
    font-weight: 600;
    display: block;
}

.user-role {
    color: rgba(255, 255, 255, 0.9);
    font-size: 13px;
}

.message-bubble {
    position: relative;
    z-index: 1;
}

.quote-text {
    margin: 0;
    color: white;
    font-size: 14px;
    line-height: 1.6;
}

.quote-text small {
    display: block;
    margin-top: 8px;
    opacity: 0.9;
    font-size: 12px;
}

/* 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;
    }

    .testimonial-card {
        margin-left: 0;
        padding: 15px;
    }

    .testimonial-card::before,
    .testimonial-card::after {
        display: none;
    }

    .clinic-lp-hero {
        min-height: 300px;
    }

    .clinic-lp-hero h1 {
        font-size: 25px;
    }

     /* Mobile Center (Image or Text) */
    .clinic-lp-mobile-center {
        display: flex;
    }

    .clinic-lp-nav .clinic-lp-container {
        position: relative;
    }


    /* Mobile Menu */
    .clinic-lp-hamburger {
        display: block;
    }

.clinic-lp-section {
    padding: 0px 0;
}

.clinic-lp-hero {
    background: linear-gradient(135deg, #00D2C6 0%, #009E96 100%);
    border-radius: 40px;
    margin: 20px;
    padding: 60px 0px;
    color: var(--cl-white);
    position: relative;
    overflow: hidden;
}

.clinic-lp-feature-img {
        display: none;
    }


    .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;
    }
}