/* =========================
   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: 12px;
  height: 12px;
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(10, 54, 60, 0.92) 0%,
    rgba(10, 54, 60, 0.75) 45%,
    rgba(0,0,0,0.35) 100%
  );
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
  padding: 90px 20px 40px;
  display: flex;
  gap: 30px;
  align-items: flex-start;
}

/* 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;
  color: #111;
  align-items: center;
  margin-bottom: 14px;
}

.hero-title {
  font-size: 48px;
  line-height: 52px;
  font-weight: 700;
  margin-bottom: 14px;
  margin-top: 0px;
}

.hero-desc {
  font-size: 18px;
  line-height: 24px;
  max-width: 520px;
  margin-bottom: 22px;
}

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

.hero-feature {
  background: rgba(255,255,255,0.88);
  border-radius: 12px;
  padding: 10px 10px;
  display: flex;
  gap: 10px;
  color: #0f172a;
}
.hero-feature h4 {
    margin: 0px;
}

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

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

.btn-yellow {
  background: #f59e0b;
  padding: 14px 26px;
  border-radius: 10px;
  font-weight: 600;
  color: #111;
  text-decoration: none;
}

.btn-green {
  background: #22c55e;
  padding: 14px 22px;
  border-radius: 10px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
}

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

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

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

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

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

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

/* CHECKBOX */
.hero-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  margin: 10px 0 14px;
}

.hero-checkbox input { width: 16px; height: 16px; }

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

/* FOOTER TEXT */
.form-footer {
  font-size: 11px;
  text-align: left;
  margin-top: 10px;
  color: #475569;
}

/* =========================
   HERO BOTTOM INFO
========================= */
.hero-bottom-info {
  position: relative;
  z-index: 3;
  max-width: 1100px;
  margin: 30px auto 40px;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 12px;
}

.hero-info-pill {
  background: rgba(255,255,255,0.94);
  border-radius: 999px;
  padding: 10px 30px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #0f172a;
  box-shadow: 0 10px 22px rgba(0,0,0,0.08);
}

.hero-info-pill img { width: 16px; }

/* 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: 100%; }
  .hero-bottom-info { grid-template-columns: 1fr 1fr; }
}


/* =========================
   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: 50px 20px 90px;
}

/* ===== TOP CENTER ===== */
.about-top {
    max-width: 720px;
    margin: 0 auto 70px;
    text-align: center;
}

.about-top h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 14px;
}

.about-top p {
    font-size: 15px;
    line-height: 24px;
    color: #4b5563;
    margin-bottom: 10px;
}

/* ===== BOTTOM ROW ===== */
.about-inner {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

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

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

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

/* INFO BOX */
.about-callout {
    margin-top: 26px;
    padding: 22px 24px;
    border-radius: 16px;
    background: #e9f6fb;
    box-shadow: 0 18px 28px -16px rgba(0,0,0,0.35);
}

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

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

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

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

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

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

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

    .about-top {
        margin-bottom: 40px;
        text-align: left;
    }

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

    .about-images {
        width: 100%;
    }

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


/* =========================
   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;
    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(4, 1fr);
    gap: 10px;
}


.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: 16px;
    font-weight: 500;
    color: #ffffff;
}

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

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

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

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


.peptide-solutions {
  background: #10192D;
  padding: 50px 20px;
}

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

.peptide-title {
  color: #1C8B9C;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 6px;
}

.peptide-sub {
  color: #cbd5e1;
  font-size: 14px;
  max-width: 600px;
  margin-bottom: 28px;
}

/* TOP GRID */
.peptide-top-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}

.peptide-mini-card {
  background: #fff;
  border-radius: 16px;
  padding: 16px;

  display: flex;
  justify-content: space-between;
  gap: 14px;
}

.mini-text h4 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 4px;
}

.mini-sub {
  font-size: 11px;
  color: #64748b;
  display: block;
  margin-bottom: 6px;
}

.mini-text ul {
  padding-left: 16px;
  font-size: 12px;
}

.mini-image img {
  height: 100px;
}

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

.peptide-card {
  background: #fff;
  border-radius: 16px;
  padding: 18px;

  display: flex;
  justify-content: space-between;
  gap: 16px;
}

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

.card-text p {
  font-size: 12px;
  color: #475569;
  margin-bottom: 6px;
}

.card-text ul {
  padding-left: 16px;
  font-size: 12px;
  margin-bottom: 8px;
}

.card-image img {
  height: 150px;
}

.dubai-pick {
  font-size: 11px;
  font-weight: 600;
  color: #1C8B9C;
}

/* IMAGE CARD */
.peptide-image-card {
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.peptide-image-card img {
  max-height: 330px;
  margin-bottom: -91px;
  margin-left: 50px;
}

/* FOOTER */
.peptide-footer {
  font-size: 11px;
  color: #cbd5e1;
  margin-top: 16px;
}

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

  .peptide-card,
  .peptide-mini-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .card-image,
  .mini-image {
    margin-top: 10px;
  }
}

/* =========================
   PEPTIDE PROCESS SECTION
========================= */

.peptide-process {
  background: #ffffff;
  padding: 70px 20px;
}

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

.process-title {
  font-size: 24px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 6px;
}

.process-sub {
  font-size: 14px;
  color: #475569;
  max-width: 620px;
  margin-bottom: 26px;
}

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

/* CARD */
.process-card {
  background: linear-gradient(90deg, #104F5B 0%, #091419 100%);
  border-radius: 12px;
  padding: 16px 14px;

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

  color: #ffffff;
}

/* STEP CIRCLE */
.process-step {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #ffffff;
  color: #0f172a;

  font-size: 13px;
  font-weight: 700;

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

/* TEXT */
.process-card p {
  font-size: 13px;
  line-height: 18px;
  margin: 0;
  color: #e5f3f6;
}

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

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

  .process-card {
    padding: 14px;
  }

  .process-title {
    font-size: 22px;
  }
}

/* =========================
   SAFETY SECTION
========================= */

.safety-section {
  background: #ffffff;
  padding: 80px 20px;
}

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

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

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

.safety-content h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 10px;
  margin-top: 0px;
}

.safety-desc {
  font-size: 15px;
  line-height: 24px;
  color: #475569;
  margin-bottom: 5px;
  margin-top: 0px;
}

/* INFO BOX */
.safety-box {
  margin-top: 20px;
  background: #f4fafc;
  border-radius: 14px;
  padding: 10px 22px;
  margin-top: 0px;
}

.safety-box ul {
  margin: 0 0 12px;
  padding-left: 18px;
}

.safety-box ul li {
  font-size: 14px;
  line-height: 22px;
  color: #334155;
  margin-bottom: 6px;
}

.safety-note {
  font-size: 13px;
  font-weight: 600;
  color: #0f172a;
  margin-top: 0px;
}

/* RIGHT IMAGE */
.safety-image {
  width: 380px;
  flex-shrink: 0;
}

.safety-image img {
  width: 100%;
  border-radius: 18px;
  display: block;
}

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

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

  .safety-image {
    width: 100%;
  }

  .safety-content h2 {
    font-size: 24px;
  }
}

/* =========================
   PEPTIDE CTA SECTION
========================= */

.peptide-cta {
  background: linear-gradient(180deg, #0f3f47 0%, #0b1c21 100%);
  color: #ffffff;
}

/* TOP */
.peptide-cta-inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 60px 20px;

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

.cta-left h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 8px;
}

.cta-left p {
  font-size: 14px;
  line-height: 22px;
  color: #cbd5e1;
  max-width: 500px;
}

/* BUTTONS */
.cta-right {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cta-btn {
  padding: 12px 22px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
}

.cta-book {
  background: #f5a623;
  color: #111827;
  padding: 12px 65px !important;
}

.cta-whatsapp {
  background: #22c55e;
  color: #ffffff;
}

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

/* BOTTOM WHITE BAR */
.peptide-cta-bottom {
  background: #ffffff;
  color: #475569;
  padding: 14px 20px;
}

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

  display: flex;
  justify-content: space-between;
  font-size: 12px;
  font-weight: 500;
}

.cta-disclaimer {
  max-width: 1000px;
  margin: 8px auto 0;
  font-size: 12px;
  color: #64748b;
}

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

  .peptide-cta-inner {
    flex-direction: column;
    text-align: center;
  }

  .cta-right {
    width: 100%;
  }

  .cta-btn {
    width: 100%;
  }

  .peptide-cta-bottom-inner {
    flex-direction: column;
    gap: 6px;
    text-align: center;
  }
}



/* =========================
   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: 30px;
    font-weight: 700;
    color: white;
    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%;
    }
}
