/* =========================
   GLOBAL
========================= */
* {
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
}

body {
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    font-family: "Sofia Sans Semi Condensed", sans-serif;
    background: #ffffff;
}

/* =========================
   HEADER (DESKTOP)
========================= */
.lp-header {
    background: #ffffff;
    border-bottom: 1px solid #eaeaea;
}

.lp-header-inner {
    max-width: 1000px;
    margin: 0 auto;
    padding: 14px 20px;

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

/* Logo */
.lp-logo img {
    height: 40px;
    display: block;
}

/* Right side wrapper */
.lp-header-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Info text */
.lp-header-text {
    font-family: "Sofia Sans Semi Condensed", sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 10px;
    letter-spacing: 0;
    color: #1a1a1a;
    white-space: nowrap;
}

/* Buttons */
.lp-header-actions {
    display: flex;
    gap: 12px;
}

.lp-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 12px 18px;
    border-radius: 6px;

    background: linear-gradient(135deg, #0f6b7a 0%, #0a2b33 100%);
    text-decoration: none;

    font-family: "Sofia Sans Semi Condensed", sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 10px;
    letter-spacing: 0.02em;
    color: #ffffff;

    transition: all 0.25s ease;
}

.lp-btn img {
    width: 18px;
    height: 18px;
}

.lp-btn:hover {
    opacity: 0.95;
    /* transform: translateY(-1px); */
    background: #35A1B2;
}

/* =========================
   MOBILE HEADER
========================= */
@media (max-width: 768px) {

    .lp-header-inner {
        flex-direction: column;
        align-items: center;
        gap: 10px;
        padding: 12px 16px;
    }

    .lp-header-right {
        flex-direction: column;
        align-items: center;
        gap: 10px;
        text-align: center;
    }

    .lp-header-text {
        font-size: 14px;
        line-height: 12px;
        white-space: normal;
    }

    .lp-header-actions {
        width: 100%;
        justify-content: center;
        gap: 10px;
    }

    .lp-btn {
        width: 100%;
        max-width: 260px;
        justify-content: center;
        font-size: 14px;
        line-height: 12px;
        padding: 12px 16px;
    }
}


/* =========================
   HERO SECTION
========================= */
.hero {
    position: relative;
    min-height: 100vh;
    background: url("../images/hero-bg.png") center / cover no-repeat;
}

/* EXACT OVERLAY */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: #0000004A;
}

.hero-inner {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 80px 0px;

    display: flex;
    gap: 40px;
    align-items: center;
}

/* LEFT */
.hero-left {
    flex: 1;
    color: #ffffff;
}

/* TITLE */
.hero-title {
    font-family: "Sofia Sans Semi Condensed", sans-serif;
    font-weight: 700;
    font-size: 48px;
    line-height: 48px;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

/* DESC */
.hero-desc {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    max-width: 520px;
    margin-bottom: 12px;
}

/* AVAILABILITY */
.hero-availability {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    display: flex;
    align-items: center;
    gap: 8px;

    font-weight: 600;
    font-size: 12px;
    line-height: 16px;
    margin-bottom: 24px;
}

.hero-availability img {
    width: 16px;
}

/* FEATURES */
.hero-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 28px;
}

.hero-feature {
    background: #FFFFFFCF;
    border-radius: 12px;
    padding: 14px;

    display: flex;
    gap: 5px;
    color: #1a1a1a;
}

.hero-feature img {
    width: 22px;
    height: 22px;
    margin-top: 2px;
}

.hero-feature h4 {
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    margin: 0 0 4px;
}

.hero-feature p {
    font-size: 11px;
    line-height: 18px;
    margin: 0;
}

/* CTA */
.hero-cta {
    display: flex;
    gap: 10px;
}

.btn-orange {
    background: #F59F0A;
    color: #1a1a1a;
    padding: 14px 45px;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
}
.btn-orange:hover{
    background: #35A1B2;
}

.btn-green {
    background: #22C35C;
    color: #ffffff;
    padding: 14px 27px;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;

    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.btn-green:hover {
    background: #35A1B2;
}

.btn-green img {
    width: 18px;
}

/* RIGHT FORM */
.hero-form {
    width: 420px;
   background: rgba(243, 243, 243, 0.85);
    border-radius: 20px;
    padding: 24px;
}

.hero-form h3 {
    margin-bottom: 6px;
}

.form-sub {
    font-size: 12px;
    margin-bottom: 16px;
}

.hero-form label {
    display: block;
    font-size: 14px;
    margin-bottom: 4px;
    font-weight: 600;
}

.hero-form input,
.hero-form select,
.hero-form textarea{
    width: 100%;
    padding: 12px;
    border-radius: 13px;
    border: none;
    margin-bottom: 12px;
}

.date-time-width {
    width: 100%;
}

.form-row {
    display: flex;
    gap: 10px;
}

/* =========================
   HERO FORM ROUND CHECKBOX
========================= */
.hero-checkbox {
    width: 100%;
    background: rgba(243, 243, 243, 0.9);
    border-radius: 22px;
    padding: 18px 22px;
    margin: 18px 0;
}

.hero-checkbox-wrap {
    width: 100%;
    display: flex !important;
    align-items: flex-start;
    gap: 14px;
    cursor: pointer;

    font-size: 15px;
    line-height: 22px;
    color: #1f2937;
}

/* hide default checkbox */
.hero-checkbox-wrap input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

/* ROUND CIRCLE */
.hero-radio {
    display: flex !important;
    gap: 10px;
    align-items: flex-start;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 1px solid #34A1B2;
    flex-shrink: 0;
    margin-top: 2px;
    position: relative;
}

/* FILLED STATE */
.hero-checkbox-wrap input:checked + .hero-radio::after {
    content: "";
    width: 10px;
    height: 10px;
    background: #34A1B2;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* TEXT */
.hero-checkbox-text {
    flex: 1;
}

.btn-blue {
    width: 100%;
    background: #34A1B2;
    color: #ffffff;
    padding: 14px;
    border-radius: 10px;
    border: none;
    font-size: 15px;
    cursor: pointer;
}
.btn-blue:hover {
background: #F59F0B;
}

/* =========================
   MOBILE
========================= */
@media (max-width: 768px) {

    .hero-inner {
        flex-direction: column;
        padding: 10px 16px;
    }

    .hero-title {
        font-size: 34px;
        line-height: 38px;
    }

    .hero-features {
        grid-template-columns: 1fr;
    }

    .hero-cta {
        flex-direction: column;
    }

    .hero-form {
        width: 100%;
    }
}

/* =========================
   ABOUT SECTION
========================= */
.about-section {
    background: #ffffff;
    padding: 20px 20px;
}

.about-inner {
    max-width: 1000px;
    margin: 0 auto;

    display: flex;
    gap: 60px;
    align-items: flex-start;
}

/* LEFT CONTENT */
.about-content {
    flex: 1;
    color: #0f172a;
}

.about-content h2 {
    font-size: 32px;
    line-height: 40px;
    font-weight: 700;
    margin-bottom: 10px;
}

.about-content h3 {
    font-size: 22px;
    font-weight: 700;
    margin: 20px 0 10px;
}

.about-content p {
    font-size: 15px;
    line-height: 20px;
    color: #4b5563;
    margin-bottom: 14px;
}

/* INFO CARD */
.about-info-card {
    margin-top: 28px;
    padding: 22px;
    border-radius: 16px;

    background: linear-gradient(90deg, #104F5B 0%, #091419 100%);
    color: #ffffff;

    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.about-info-icon {
    width: 44px;
    height: 95px;
    background: #E0E6EB;
    border-radius: 25px;

    display: flex;
    align-items: start;
    justify-content: center;
    flex-shrink: 0;
    padding-top: 10px;
}
/* =========================
   ABOUT INFO ICON ANIMATION
========================= */
.about-info-icon img {
    animation: floatIcon 2.5s ease-in-out infinite;
}

/* KEYFRAMES */
@keyframes floatIcon {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(8px); /* 🔽 neeche */
    }
    100% {
        transform: translateY(0);   /* 🔼 wapas upar */
    }
}


.about-info-icon img {
    width: 22px;
}

.about-info-text p {
    margin: 0 0 10px;
    font-size: 14px;
    line-height: 22px;
    color: #E0E6EB;
}

.about-info-text p:last-child {
    margin-bottom: 0;
}

/* RIGHT IMAGES */
.about-images {
    position: relative;
    width: 420px;
    flex-shrink: 0;
}

.about-img-main {
    width: 100%;
    display: block;
}

.about-img-small {
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 220px;
    display: block;
}

/* =========================
   MOBILE
========================= */
@media (max-width: 768px) {
    .about-info-icon {
        height: 135px;
    }

    .about-inner {
        flex-direction: column;
        gap: 40px;
    }

    .about-images {
        width: 100%;
    }

    .about-img-small {
        position: static;
        margin-top: 16px;
        width: 100%;
    }

    .about-content h2 {
        font-size: 26px;
        line-height: 32px;
    }
}

/* =========================
   BENEFITS SECTION
========================= */
.benefits-section {
    position: relative;
}

.benefits-top {
    position: relative;
    padding: 50px 20px 220px;
    text-align: center;
    color: #ffffff;

    /* background image */
    background: url("../images/choose-hajama.png") center / cover no-repeat;
    overflow: hidden;
}

/* GRADIENT OVERLAY */
.benefits-top::before {
    content: "";
    position: absolute;
    inset: 0;
opacity: 0.85;
    background: linear-gradient(
        180deg,
        #0f3f47 0%,
        #0b1c21 100%
    );

    z-index: 1;
}

/* CONTENT ABOVE OVERLAY */
.benefits-top > * {
    position: relative;
    z-index: 2;
}


.benefits-top h2 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 8px;
}

.benefits-sub {
    font-size: 14px;
    color: #cfd8dc;
    margin-bottom: 40px;
}

/* GRID */
.benefits-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.benefit-card:hover {
    transform: scale(1.05) !important; /* 🔥 thora sa zoom */
}

.benefit-card img {
    width: 100%;
    display: block;
}

.benefit-card span {
    display: block;
    margin-top: 10px;
    font-size: 14px;
    font-weight: 500;
}

/* BOTTOM WHITE CARD */
.benefits-bottom {
    position: relative;
    z-index: 2;
    margin-top: -160px;
    padding: 0 20px 100px;
}

.benefits-bottom-inner {
    max-width: 1000px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 24px;
    /* padding: 40px; */
    display: flex;
    /* gap: 40px; */
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.eligibility {
    padding: 40px;
}

/* LEFT */
.eligibility h3 {
    font-size: 35px;
    margin-bottom: 16px;
}

.eligibility-list {
    list-style: none;
    padding: 0;
    margin-bottom: 10px;
}

.eligibility-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    margin-bottom: 20px;
}

.eligibility-note {
    font-size: 12px;
    color: #6b7280;
    margin-bottom: 16px;
}

/* WARNING BOX */
.eligibility-warning {
    background: #fff1f1;
    border-radius: 14px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    /* 🔥 bottom-only shadow */
    box-shadow: 0 12px 20px -12px rgba(0, 0, 0, 0.25);
}

.warning-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.warning-row img {
    width: 22px;
    flex-shrink: 0;
    margin-top: 2px;
}

.warning-row p {
    font-size: 13px;
    line-height: 20px;
    margin: 0;
    color: #374151;
}


/* RIGHT */
.doctor-card {
    width: 500px;
}

.doctor-img {
    width: 100%;
    /* border-radius: 16px; */
    /* margin-bottom: 12px; */
}

.doctor-card h4 {
    font-size: 18px;
    margin-bottom: 4px;
    margin-top: 0px;
}

.doctor-role {
    font-size: 12px;
    color: #6b7280;
    margin-bottom: 10px;
}

.doctor-sub {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 6px;
}

/* SIMPLE BULLET LIST */
.doctor-list {
    padding: 0px 20px 20px 20px;
    margin: 0;
}

.doctor-list li {
    list-style: disc;
    font-size: 13px;
    line-height: 20px;
    margin-bottom: 6px;
}

/* MOBILE */
@media (max-width: 768px) {

    .doctor-card h4 {
        padding: 10px;
    }
    .doctor-role {
        padding-left: 10px;
        padding-right: 10px;
    }
    .doctor-sub {
        padding-left: 10px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .benefits-bottom-inner {
        flex-direction: column;
    }

    .doctor-card {
        width: 100%;
    }
}
/* =========================
   HIJAMA PROCESS SECTION
========================= */
.process-section {
    background-color: #10192D;
    padding: 60px 20px;
}

.process-inner {
    max-width: 1000px;
    margin: 0 auto;
}

.process-title {
    color: #ffffff;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    margin-top: 0px;
}

/* GRID */
.process-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
}

/* CARD */
.process-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 20px;
}

/* HOVER STATE */
.process-card:hover {
    background: #35A1B2;
    transform: translateY(-4px);
}

/* TEXT WHITE ON HOVER */
.process-card:hover h4,
.process-card:hover p {
    color: #ffffff;
}

/* NUMBER + ICON WHITE */
.process-card:hover .process-number {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

.process-card:hover .process-number img {
    filter: brightness(0) invert(1);
}

.process-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: -6px;
}

.process-number {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #0C46971A;
    color: #2ea0b3;
    font-size: 14px;
    font-weight: 600;

    display: flex;
    align-items: center;
    justify-content: center;
}

.process-top img {
    width: 18px;
    height: 18px;
}

/* TEXT */
.process-card h4 {
    font-size: 14px;
    font-weight: 600;
    
    color: #0f172a;
}

.process-card p {
    font-size: 13px;
    line-height: 13px;
    color: #4b5563;
    margin-top: -10px;
}

/* =========================
   MOBILE
========================= */
@media (max-width: 768px) {

    .process-grid {
        grid-template-columns: 1fr;
    }

    .process-title {
        font-size: 26px;
        margin-bottom: 30px;
    }
}

/* =========================
   HIJAMA SESSION DETAILS
========================= */
.session-section {
    position: relative;
    background: url("../images/session-bg.png") center / cover no-repeat;
    padding: 50px 20px;
}

/* OVERLAY */
.session-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        177deg,
        rgba(16, 79, 91, 0.77) 4.39%,
        rgba(9, 20, 25, 0.77) 64.2%
    );
}

.session-inner {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.session-title {
    color: #ffffff;
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 20px;
    margin-top: 0px;
}

/* CARDS */
.session-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

/* DEFAULT CARD (GRAY) */
.session-card {
    background: rgba(255, 255, 255, 0.85);
    border-radius: 20px;
    padding: 24px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.session-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}

.session-icon img {
    width: 22px;
}

/* TEXT */
.session-card h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 0px;
    margin-top: 0px;
    color: #0f172a;
}

.session-card p {
    font-size: 12px;
    color: #374151;
    margin-top: 5px;
    margin-bottom: 0px;
}

/* HOVER STATE (GREEN CARD) */
.session-card:hover {
    background: #34A1B2;
}

.session-card:hover h4,
.session-card:hover p {
    color: #ffffff;
}

.session-card:hover .session-icon {
    background: rgba(255,255,255,0.15);
}

.session-card:hover .session-icon img {
    filter: brightness(0) invert(1);
}

/* =========================
   MOBILE
========================= */
@media (max-width: 768px) {

    .session-cards {
        grid-template-columns: 1fr;
    }

    .session-title {
        font-size: 26px;
        margin-bottom: 28px;
    }
}
/* =========================
   SAFETY & HYGIENE SECTION
========================= */
.safety-section {
    background: #ffffff;
    padding: 30px 20px;
}

.safety-inner {
    max-width: 1000px;
    margin: 0 auto;

    display: flex;
    gap: 40px;
    align-items: flex-start;
}

/* LEFT */
.safety-content {
    flex: 1;
}

.safety-content h2 {
    font-size: 30px;
    font-weight: 700;
    color: #104F5B;
    margin-bottom: 16px;
}

.safety-content p {
    font-size: 15px;
    line-height: 24px;
    color: #4b5563;
    margin-bottom: 14px;
}

/* RIGHT CARD */
.safety-card {
    width: 500px;
    background: #ffffff;
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
    align-self: center;
}

.safety-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.safety-list li {
    display: flex;
    gap: 12px;
    align-items: flex-start;

    font-size: 14px;
    line-height: 22px;
    color: #374151;
    margin-bottom: 14px;
}

.safety-list li:last-child {
    margin-bottom: 0;
}

.safety-list img {
    width: 20px;
    flex-shrink: 0;
}

/* =========================
   MOBILE
========================= */
@media (max-width: 768px) {

    .safety-inner {
        flex-direction: column;
        gap: 30px;
    }

    .safety-card {
        width: 100%;
    }

    .safety-content h2 {
        font-size: 24px;
    }
}
/* =========================
   FAQ SECTION
========================= */
.faq-section {
    background: #ffffff;
    padding: 0px 20px 60px;
}

.faq-inner {
    max-width: 1000px;
    margin: 0 auto;
}

.faq-inner h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 6px;
    color: #0f172a;
}

.faq-sub {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 30px;
}

/* FAQ LIST */
.faq-list {
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    overflow: hidden;
}

.faq-item {
    border-bottom: 1px solid #e5e7eb;
}

.faq-item:last-child {
    border-bottom: none;
}

/* QUESTION */
.faq-question {
    width: 100%;
    background: #ffffff;
    border: none;
    padding: 16px 18px;
    font-size: 15px;
    font-weight: 500;
    color: #111827;
    text-align: left;

    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question:hover {
    background: #f9fafb;
}

.faq-icon {
    transition: transform 0.3s ease;
}

/* ANSWER */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: #ffffff;
}

.faq-answer p {
    padding: 0 18px 16px;
    font-size: 14px;
    line-height: 22px;
    color: #4b5563;
}

/* ACTIVE */
.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

/* =========================
   MOBILE
========================= */
@media (max-width: 768px) {

    .faq-inner h2 {
        font-size: 24px;
    }
}
/* =========================
   CTA FOOTER
========================= */
.cta-footer {
    background: #10192D;
    padding: 50px 20px;
    text-align: center;
}

.cta-inner {
    max-width: 1000px;
    margin: 0 auto;
}

.cta-footer h2 {
    font-size: 30px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
}

.cta-sub {
    font-size: 14px;
    color: #cbd5e1;
    margin-bottom: 20px;
}

/* BUTTONS */
.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 14px;
}

.cta-btn {
    padding: 12px 22px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;

    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* ORANGE */
.cta-book {
    background: #F59F0A;
    color: #111827;
}
.cta-book:hover {
    background: #35A1B2;
}

/* GREEN */
.cta-whatsapp {
    background: #22C35C;
    color: #ffffff;
}

.cta-whatsapp:hover {
 background: #35A1B2;
}

.cta-whatsapp img {
    width: 16px;
}

/* NOTE */
.cta-note {
    font-size: 12px;
    color: #94a3b8;
    margin-bottom: 16px;
}

/* CONTACTS */
.cta-contacts {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-contacts span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #e5e7eb;
}

.cta-contacts img {
    width: 14px;
}

/* =========================
   MOBILE
========================= */
@media (max-width: 768px) {

    .cta-footer {
        padding: 70px 16px;
    }

    .cta-footer h2 {
        font-size: 24px;
    }

    .cta-buttons {
        flex-direction: column;
    }
}
