/* =========================
   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;
}
/* Emergency text with icon */
.lp-header-emergency {
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

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

.lp-header-emergency span {
  font-weight: 600;
}

.lp-header-emergency small {
  font-size: 12px;
  font-weight: 400;
  opacity: 0.7;
  margin-left: 4px;
}

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

    .lp-header-emergency img {
        display: none;
    }

  .lp-header-emergency {
    flex-direction: column;
    gap: 4px;
  }

  .lp-header-emergency small {
    margin-left: 0;
  }

}

/* =========================
   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 {
  position: relative;
  min-height: 100vh;
  background: url("../images/hero-bg.png") center/cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.29);
}

.hero-inner {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 0px;
  display: flex;
  gap: 20px;
  align-items: center;
}

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

.hero-badge {
  display: inline-flex;
  gap: 6px;
  background: #F4F8FA;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  margin-bottom: 14px;
  color: black;
  align-items: center;
}

.hero-title {
  font-size: 48px;
  line-height: 48px;
  font-weight: 700;
  margin-bottom: 16px;
  margin-top: 10px;
}

.hero-desc {
  font-size: 16px;
  line-height: 24px;
  max-width: 520px;
}

.hero-note {
  color: #ED3D31;
  font-weight: 600;
  font-size: 12px;
  margin: 12px 0 22px;
}

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



.hero-feature {
  background: rgba(255,255,255,0.8);
  border-radius: 12px;
  padding: 14px;
  display: flex;
  gap: 10px;
  color: #1f2937;
}

.hero-feature h4 {
    font-size: 14px;
    margin-top: 0px;
    margin-bottom: 5px;
}

.hero-feature p {
    font-size: 12px;
    margin: 0px;
}

.hero-feature img { 
width: 22px; 
align-self: start;
}

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

.btn-red {
  background: #ED3D31;
  color: #fff;
  padding: 15px 30px;
  border-radius: 10px;
  font-weight: 600;
  display: flex;
  gap: 8px;
  text-decoration: none;
}

.btn-outline {
  background: #fff;
  border-radius: 10px;
  padding: 15px 30px;
  font-weight: 600;
  display: flex;
  gap: 8px;
  text-decoration: none;
  color: #111;
}

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

.form-tag {
  font-size: 11px;
  font-weight: 700;
  color: #ED3D31;
}

.hero-form label {
  font-size: 14px;
  font-weight: 600;
}

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

.location-row {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
}

.location-btn {
  flex: 1;
  padding: 10px;
  border-radius: 20px;
  border: 1px solid #cbd5e1;
  background: #fff;
  cursor: pointer;
}

.location-btn.active {
  border-color: #34A1B2;
  color: #34A1B2;
}

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

.form-footer {
  font-size: 11px;
  text-align: center;
  margin-top: 10px;
}

/* MOBILE */
@media (max-width:768px) {
  .hero-inner { flex-direction: column; }
  .hero-title { font-size: 34px; line-height: 38px; }
  .hero-features { grid-template-columns: 1fr; }
  .hero-cta { flex-direction: column; }
  .hero-form { width: 95%; }
}


/* =========================
   INFO STRIP
========================= */
.info-strip {
    background: #ffffff;
    padding: 20px 0px;
    border-bottom: 1px solid #E0E6EB;
}

/* ICON WHITE BACKGROUND */
.info-bg {
    width: 36px;
    height: 36px;
    background: #ffffff;
    border-radius: 50%;

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

/* ICON SIZE */
.info-bg img {
    width: 18px;
    height: 18px;
}


.info-strip-inner {
    max-width: 1100px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

/* PILL */
.info-pill {
    background: linear-gradient(180deg, #0f3f47 0%, #0b1c21 100%);
    border-radius: 14px;
    padding: 12px 16px;

    display: flex;
    align-items: center;
    gap: 12px;

    color: #ffffff;
}


/* ICON */
.info-pill img {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

/* TEXT */
.info-pill strong {
    display: block;
    color: #34A1B2;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.2;
}

.info-pill span {
    font-size: 12px;
    color: #cde7ec;
}

/* =========================
   MOBILE
========================= */
@media (max-width: 768px) {
    .info-strip-inner {
        grid-template-columns: 1fr;
    }

    .info-pill {
        border-radius: 14px;
    }
    .info-strip {
        padding: 20px;
    }
}

/* =========================
   ABOUT SECTION
========================= */
.about-section {
    background: #ffffff;
    padding: 100px 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: 27px;
    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: 16px;
    line-height: 25px;
    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-section {
        padding: 30px 20px;
    }
    .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;
    }
}

/* =========================
   ABOUT CALLOUT BOX (NEW PAGE)
========================= */
.about-callout {
    margin-top: 28px;
    padding: 22px 24px;
    border-radius: 16px;
    background: #e9f6fb;
    color: #0f172a;
    box-shadow: 0 18px 28px -16px rgba(0, 0, 0, 0.35);
}

.about-callout h4 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 10px;
}

.about-callout ul {
    margin: 0 0 12px;
    padding-left: 18px;
}

.about-callout ul li {
    font-size: 14px;
    line-height: 20px;
    color: #334155;
    margin-bottom: 6px;
}

.about-callout-note {
    font-size: 12px;
    line-height: 18px;
    color: #475569;
}
/* =========================
   CONDITIONS SECTION
========================= */
.benefits-section {
    position: relative;
}

/* TOP DARK AREA */
.benefits-top {
    position: relative;
    padding: 50px 20px 90px;
    text-align: center;
    color: #ffffff;

    background: url("../images/conditions-bg.png") center / cover no-repeat;
    overflow: hidden;
}

/* OVERLAY */
.benefits-top::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        177deg,
        rgba(16, 79, 91, 0.9) 4.39%,
        rgba(9, 20, 25, 0.9) 64.2%
    );
    z-index: 1;
}

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

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

.benefits-sub {
    margin: 0 auto 40px;
    font-size: 16px;
    color: #cfd8dc;
}

/* 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;
}

.benefit-card img {
    width: 100%;
    border-radius: 12px;
    display: block;
}

.benefit-card span {
    display: block;
    margin-top: 10px;
    font-size: 20px;
    font-weight: 500;
    color: #ffffff;
}

/* FOOT NOTE */
.benefits-note {
    max-width: 970px;
    margin: 40px auto 0;
    font-size: 12px;
    color: #cfd8dc;
    text-align: left;
}

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

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

    .benefits-top h2 {
        font-size: 24px;
    }
}

/* =========================
   DOCTOR STEPS SECTION
========================= */
.doctor-steps {
    background: #0f172a;
    padding: 70px 20px;
    color: #ffffff;
}

.doctor-steps-inner {
    max-width: 1100px;
    margin: 0 auto;
}

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

.doctor-steps-sub {
    font-size: 16px;
    color: #cbd5e1;
    margin-bottom: 20px;
}

/* GRID */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* CARD */
.step-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 22px;
    color: #0f172a;

    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.step-card h4 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 8px;
}

.step-card p {
    font-size: 14px;
    line-height: 20px;
    color: #475569;
    margin: 0px;
}

/* BADGE */
.step-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.step-number {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #35A1B2;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;

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

.step-label {
    font-size: 16px;
    color: #64748b;
}

/* =========================
   MOBILE
========================= */
@media (max-width: 768px) {
    .doctor-steps h2 {
        font-size: 24px;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }
}
/* =========================
   DOCTOR COVERAGE SECTION
========================= */
.coverage-section {
    background: #ffffff;
    padding: 50px 20px;
}

.coverage-inner {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.coverage-inner h2 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #0f172a;
}

.coverage-sub {
    max-width: 620px;
    margin: 0 auto 40px;
    font-size: 16px;
    line-height: 20px;
    color: #475569;
}

/* GRID */
.coverage-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

/* CARD */
.coverage-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 26px 22px;
    text-align: left;

    box-shadow: 0 18px 35px rgba(15, 23, 42, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.coverage-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 45px rgba(15, 23, 42, 0.12);
}

/* ICON */
.coverage-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #eaf6fb;

    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}

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

/* TEXT */
.coverage-card h4 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 6px;
    color: #0f172a;
}

.coverage-card p {
    font-size: 13px;
    line-height: 19px;
    color: #475569;
    margin: 0px;
}

/* NOTE */
.coverage-note {
    margin-top: 30px;
    font-size: 12px;
    color: #64748b;
}

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

    .coverage-inner h2 {
        font-size: 24px;
    }
}
/* =========================
   WHY CHOOSE SECTION
========================= */
.why-choose-section {
    background: #0f172a;
    padding: 70px 20px;
}

.why-choose-inner {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.why-choose-inner h2 {
    font-size: 30px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 36px;
    margin-top: 0px;
}

/* GRID */
.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px 18px;
}

/* ITEM */
.why-item {
    background: #ffffff;
    border-radius: 999px;
    padding: 12px 18px;

    display: flex;
    align-items: center;
    gap: 10px;

    font-size: 13px;
    color: #0f172a;

    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.why-item img {
    width: 18px;
    flex-shrink: 0;
}

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

    .why-choose-inner h2 {
        font-size: 24px;
    }

    .why-choose-grid {
        grid-template-columns: 1fr;
    }

    .why-item {
        border-radius: 16px;
    }
}
/* =========================
   AVAILABLE ACROSS DUBAI
========================= */
.available-section {
    position: relative;
    padding: 80px 20px 90px;
    background: url("../images/available-across-bg.png") center / cover no-repeat;
    color: #ffffff;
    overflow: hidden;
}

/* OVERLAY */
.available-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%
    );
    z-index: 1;
}

/* CONTENT */
.available-inner {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.available-inner h2 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 10px;
}

.available-sub {
    font-size: 16px;
    color: #e5e7eb;
    max-width: 620px;
    margin: 0 auto 40px;
    line-height: 22px;
}

/* GRID */
.available-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* CARD */
.available-card {
    background: #ffffff;
    color: #0f172a;
    border-radius: 18px;
    padding: 24px;
    text-align: left;

    box-shadow: 0 18px 40px rgba(0,0,0,0.25);
    transition: transform 0.3s ease;
}

.available-card:hover {
    transform: translateY(-6px);
}

/* ICON */
.available-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: #e6f4f7;

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

    margin-bottom: 12px;
}

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

/* TEXT */
.available-card h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 6px;
    margin-top: 0px;
}

.available-card p {
    font-size: 13px;
    color: #6b7280;
    line-height: 20px;
    margin: 0px;
}

/* NOTE */
.available-note {
    display: block;
    margin-top: 24px;
    font-size: 13px;
    color: #e5e7eb;
}

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

    .available-inner h2 {
        font-size: 24px;
    }

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

    .available-card {
        text-align: left;
    }
}
/* =========================
   CTA FOOTER SECTION
========================= */
.cta-footer-section {
    position: relative;
    padding: 50px 20px;
    background: linear-gradient(
        135deg,
        #FEEDEC 0%,
        #FBFCFD 50%,
        #E6F3F9 100%
    );
}

/* INNER WRAPPER */
.cta-footer-inner {
    max-width: 1100px;
    margin: 0 auto;

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

/* LEFT */
.cta-left h2 {
    font-size: 28px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 10px;
}

.cta-desc {
    font-size: 16px;
    line-height: 22px;
    color: #475569;
    max-width: 520px;
    margin-bottom: 10px;
}

.cta-note {
    font-size: 12px;
    font-weight: 600;
    color: #ef4444;
    letter-spacing: 0.5px;
}

/* RIGHT BUTTONS */
.cta-right {
    display: flex;
    gap: 14px;
    flex-shrink: 0;
}

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

    padding: 12px 20px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
}

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

/* BUTTON STYLES */
.call-btn {
    background: #ef4444;
    color: #ffffff;
}

.whatsapp-btn {
    background: #ffffff;
    color: #0f172a;
    border: 1px solid #e2e8f0;
}

.cta-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;   /* 🔥 buttons + text right side */
}

/* buttons row */
.cta-actions {
    display: flex;
    gap: 14px;
}

/* text exactly under buttons */
.cta-right-note {
    margin-top: 8px;
    max-width: 500px;
    font-size: 12px;
    line-height: 16px;
    color: #64748b;
    text-align: right;
}

/* =========================
   MOBILE
========================= */
@media (max-width: 768px) {
    .cta-footer-inner {
        flex-direction: column;
        align-items: flex-start;
    }

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

    .cta-right {
        width: 100%;
        flex-direction: column;
    }

    .cta-btn {
        width: 100%;
        justify-content: center;
    }
    .cta-right {
        align-items: center;
        text-align: center;
    }

    .cta-right-note {
        text-align: center;
        max-width: 100%;
    }
}
