/* =========================================================================
   CSS Reset & Variables
   ========================================================================= */
:root {
    /* Color Palette */
    --primary: #9A8951;
    --primary-light: #B4A67B;
    --primary-dark: #6F5F31;
    --accent: #A99863;
    --danger: #e63946;
    --success: #2a9d8f;
    --bg-main: #ffffff;
    --bg-light: #f8f9fa;
    --bg-dark: #0f172a;
    --text-main: #1e293b;
    --text-muted: #64748b;
    --white: #ffffff;
    
    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing & Borders */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-pill: 999px;
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-glass: 0 8px 32px 0 rgba(31, 38, 135, 0.07);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--text-main);
    background-color: var(--bg-main);
    line-height: 1.6;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

p, li, a, button {
    font-size: 16px !important;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    line-height: 1.2;
    font-weight: 700;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.text-center { text-align: center; }
.text-primary { color: var(--primary); }
.text-danger { color: var(--danger); }
.text-white { color: var(--white) !important; }
.text-white h1, .text-white h2, .text-white h3, .text-white h4, .text-white h5, .text-white h6, .text-white p, .text-white a, .text-white li, .text-white div, .text-white span {
    color: var(--white) !important;
}
.mb-4 { margin-bottom: 1.5rem; }
.header_logo img, .footer_logo img{
    width: 100%;
    max-width: 250px;
}
/* =========================================================================
   Buttons
   ========================================================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.05rem;
    border-radius: var(--radius-pill);
    cursor: pointer;
    border: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--white);
    box-shadow: 0 4px 14px 0 rgb(177 162 118 / 39%);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgb(177 162 118 / 39%);
}

.btn-outline {
    background: transparent;
    color: var(--primary-dark);
    border: 2px solid var(--border-color, #e2e8f0);
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(0, 119, 182, 0.05);
}

.btn-large {
    padding: 18px 40px;
    font-size: 1.15rem;
}
/*====================================================
Header Css Start
====================================================*/
.header_section {
    background-color: var(--white);
    padding: 10px 16px;
    border-bottom: 1px solid rgb(54 54 53 / 10%);
    box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 10px 0px;
}
.sticky_header {
    position: sticky;
    position: -webkit-sticky;
    top: 0;
    display: inline-block;
    width: 100%;
    z-index: 999;
}
.header_row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}
.header_col {
    width: 100%;
    max-width: calc(50% - 10px);
}
.text-end {
    text-align: end;
}
@media only screen and (max-width: 991.98px){
    .header_section {
        padding: 10px 0px;
    }
}
@media only screen and (max-width: 575.98px){
    .col-one{
        max-width: calc(60% - 10px);
    }
    .col-two{
        max-width: calc(40% - 10px);
    }
}
/*====================================================
Header Css End
====================================================*/

/* =========================================================================
   Hero Section
   ========================================================================= */
.hero {
    position: relative;
    padding: 160px 0 100px;
    background: url('/lp-asset/lp-images/lanap-banner-img.webp') center/cover no-repeat;
    overflow: hidden;
    text-align: left;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

/* Background Gradients/Blobs */
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.75);
    z-index: 0;
}

.blob {
    position: absolute;
    filter: blur(60px);
    border-radius: 50%;
    opacity: 0.4;
    z-index: 0;
}

.blob-1 {
    width: 500px;
    height: 500px;
    background: var(--primary-light);
    top: -100px;
    right: -100px;
    animation: drift 20s infinite alternate ease-in-out;
}

.blob-2 {
    width: 400px;
    height: 400px;
    background: var(--primary);
    bottom: -100px;
    left: 10%;
    animation: drift 15s infinite alternate-reverse ease-in-out;
}

@keyframes drift {
    0% { transform: scale(1) translate(0, 0); }
    100% { transform: scale(1.1) translate(30px, -50px); }
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(0, 119, 182, 0.1);
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: var(--radius-pill);
    margin-bottom: 24px;
}

.hero-title {
    font-size: clamp(3rem, 5vw, 4.5rem);
    color: var(--primary-dark);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.hero-title span {
    color: var(--primary);
    position: relative;
    display: inline-block;
}

.hero-title span::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 0;
    width: 100%;
    height: 8px;
    background: var(--primary-light);
    opacity: 0.3;
    border-radius: 4px;
    z-index: -1;
}

.hero-subtitle {
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    font-weight: 500;
    color: var(--text-main);
    margin-bottom: 24px;
}

.hero-text {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 650px;
    margin: 0 auto 40px;
}

.hero-cta {
    display: flex;
    justify-content: center;
    gap: 16px;
}

/* =========================================================================
   Sections General
   ========================================================================= */
.section {
    position: relative;
}

.section_padding {
    padding-top: 100px;
    padding-bottom: 100px;
}

@media (max-width: 1200px) {
    .section_padding {
        padding-top: 80px;
        padding-bottom: 80px;
    }
}

@media (max-width: 768px) {
    .section_padding {
        padding-top: 60px;
        padding-bottom: 60px;
    }
}

@media (max-width: 576px) {
    .section_padding {
        padding-top: 50px;
        padding-bottom: 50px;
    }
    .container {
        padding-left: 30px !important;
        padding-right: 30px !important;
    }
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--primary-dark);
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 48px;
}

.bg-light { background-color: var(--bg-light); }

/* Animations on Scroll */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* =========================================================================
   Intro / Problem Section
   ========================================================================= */
.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.intro-text h2 {
    font-size: clamp(2rem, 3.5vw, 2.5rem);
    margin-bottom: 24px;
}

.highlight {
    color: var(--primary);
}

.lead-text {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.bad-list {
    margin-bottom: 24px;
}

.bad-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.1rem;
    margin-bottom: 12px;
    color: var(--text-muted);
}

.bad-list i { font-size: 1.4rem; }

.turning-point {
    font-size: 1.25rem;
    color: var(--primary-dark);
    margin-bottom: 16px;
    font-family: var(--font-heading);
}

.resolution {
    font-size: 1.1rem;
    color: var(--text-main);
    padding: 20px;
    background: var(--bg-light);
    border-left: 4px solid var(--primary);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    line-height: 1.7;
}

.resolution span {
    font-weight: 700;
    color: var(--primary);
}

.intro-image-wrapper {
    position: relative;
    padding: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: url('/lp-asset/lp-images/lanap-sec-img.webp') center/cover no-repeat;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    min-height: 450px;
}

/* Glasscard Effect */
.glass-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: var(--shadow-glass);
    border-radius: var(--radius-lg);
    padding: 40px;
    text-align: center;
    max-width: 350px;
    position: relative;
    z-index: 2;
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.4s ease;
}

.glass-card:hover {
    transform: perspective(1000px) rotateY(0deg) translateY(-10px);
}

.glass-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 24px;
    box-shadow: 0 10px 20px rgba(0, 119, 182, 0.3);
}

/* =========================================================================
   Different Section
   ========================================================================= */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.benefit-card {
    background: var(--bg-main);
    padding: 40px 24px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.03);
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(0, 119, 182, 0.1);
}

.icon-wrapper {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.benefit-card h3 {
    font-size: 1.25rem;
    color: var(--primary-dark);
}

.expectations-box {
    background: var(--bg-main);
    padding: 48px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    max-width: 900px;
    margin: 0 auto;
}

.expectations-box h3 {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: var(--primary-dark);
}

.check-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    text-align: left;
}

.check-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.1rem;
    font-weight: 500;
}

.check-item i {
    color: var(--success);
    font-size: 1.5rem;
}

/* =========================================================================
   Why Section
   ========================================================================= */
.why-section {
    background: var(--primary-dark);
    position: relative;
    overflow: hidden;
}

/* Abstract Background Shapes inside Why section */
.why-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 200%;
    background: radial-gradient(circle, rgba(0,180,216,0.15) 0%, transparent 70%);
    z-index: 0;
}

.why-grid {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.why-section .section-title {
    color: var(--white);
}

.real-talk {
    font-size: 1.2rem;
    font-weight: 300;
    color: rgba(255,255,255,0.9);
    margin-bottom: 40px;
}

.instead-text {
    font-size: 1.2rem;
    font-family: var(--font-heading);
    font-weight: 600;
    margin-bottom: 24px;
}

.good-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.good-list li {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(255,255,255,0.05);
    padding: 16px 24px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255,255,255,0.1);
    transition: background 0.3s;
}

.good-list li:hover {
    background: rgba(255,255,255,0.1);
}

.list-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.list-text {
    font-size: 1.1rem;
    font-weight: 500;
}

.outcome-box {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px;
    background: rgba(42, 157, 143, 0.15);
    border: 1px solid rgba(42, 157, 143, 0.3);
    border-radius: var(--radius-md);
}

.outcome-box i {
    font-size: 2rem;
    color: var(--success);
}

.outcome-box p {
    font-size: 1.1rem;
    margin: 0;
}

/* =========================================================================
   Candidate Section
   ========================================================================= */
.symptoms-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    max-width: 900px;
    margin: 0 auto 48px;
}

.symptom-tag {
    background: var(--bg-light);
    color: var(--text-muted);
    padding: 14px 24px;
    border-radius: var(--radius-pill);
    font-weight: 500;
    font-size: 1rem;
    border: 1px solid rgba(0,0,0,0.05);
    transition: all 0.3s;
    cursor: default;
}

.symptom-tag:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 119, 182, 0.2);
}

.final-cta-box {
    background: linear-gradient(135deg, var(--bg-light) 0%, rgba(0, 180, 216, 0.05) 100%);
    padding: 60px 40px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(0, 119, 182, 0.1);
}

.final-cta-box p {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 30px;
}

/* =========================================================================
   Footer
   ========================================================================= */
.footer {
    padding: 40px 0;
    background: var(--bg-main);
    color: var(--text-muted);
    border-top: 1px solid rgba(0,0,0,0.05);
}
.footer-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 20px;
}
.footer-col {
    width: 100%;
    max-width: calc(33.33% - 13.33px);
}
.footer_logo {
    text-align: left;
}
@media (max-width: 1024px){
    .footer-col {
        max-width: calc(50% - 10px);
    }
    .footer-col.footer-col-2 {
        order: 3;
        max-width: 100%;
    }
}
@media (max-width: 575px){
    .footer-col {
        max-width: 100%;
    }
    .footer_logo, .footer_btn {
        text-align: center;
    }
}
/* =========================================================================
   Responsive Design
   ========================================================================= */
@media (max-width: 992px) {
    .intro-grid {
        grid-template-columns: 1fr;
    }
    .icon-wrapper{
        margin-bottom: 10px;
    }
    
}

@media (max-width: 768px) {
    .section_padding {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .hero { padding: 120px 0 80px; }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .check-grid {
        grid-template-columns: 1fr;
    }

    .symptoms-grid {
        flex-direction: column;
        align-items: center;
    }

    /* Box specific reductions */
    .benefit-card { padding: 24px 16px; }
    .expectations-box { padding: 32px 20px; }
    .good-list li { padding: 14px 16px; }
    .outcome-box { padding: 20px 16px; }
    .final-cta-box { padding: 40px 20px; }

    .symptom-tag { 
        padding: 12px 16px;
        width: 100%; 
        text-align: center; 
    }
    .intro-image-wrapper{
        min-height: 400px;
    }

    /* Button Responsiveness */
    .btn {
        padding: 12px 16px;
        white-space: normal;
        text-align: center;
    }

    .navbar .btn {
        width: auto;
        padding: 8px 12px;
        font-size: 0.95rem;
    }
}
@media (max-width: 675px){
    .intro-image-wrapper{
        min-height: 350px;
    }
}
@media (max-width: 575px){
    .btn {
        width: 100%
    }
    .btn span {
        display: none;
    }
    .intro-image-wrapper{
        min-height: 300px;
    }
}

/* =========================================================================
   Doctor Bio Section
   ========================================================================= */
.doctor-section {
    background-color: var(--bg-main);
}

.doctor-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.doctor-image-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    height: 520px;
}

.doctor-img {
    width: 100%;
    height: 100%;
    max-height: unset;
    object-fit: cover;
    object-position: top center;
    display: block;
    border-radius: var(--radius-lg);
}

.doctor-content .badge {
    margin-bottom: 16px;
}

.doctor-content .section-title {
    margin-bottom: 20px;
}

.doctor-bio {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 32px;
    padding: 20px;
    background: var(--bg-light);
    border-left: 4px solid var(--primary);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.doctor-cta {
    display: flex;
}

/* Responsive */
@media (max-width: 992px) {
    .doctor-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .doctor-image-wrapper {
        max-width: 480px;
        margin: 0 auto;
    }
}

@media (max-width: 576px) {
    .doctor-cta .btn {
        width: 100%;
        justify-content: center;
    }
}

/* =========================================================================
   Video Section
   ========================================================================= */
.video-section {
    background-color: var(--bg-light);
}

.video-section .badge {
    margin-bottom: 16px;
}

.video-section .section-title {
    margin-bottom: 40px;
}

.video-wrapper {
    position: relative;
    width: 100%;
    max-width: 860px;
    margin: 0 auto;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 16 / 9;   /* keeps the iframe perfectly proportioned */
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}