/* ============================================================
   All rules are scoped under #athenaIntakeForm so this block
   can be dropped into any Bootstrap page without fighting the
   site's global .card / .btn / .form-control defaults.
   ============================================================ */
 
/* ── Athena Intake Form — Minimal Custom CSS ── */
/* Bootstrap handles: layout, flex, spacing, buttons base, form-control */

#athenaIntakeForm { font-family: 'Inter', sans-serif; max-width: 460px; }

/* Shell & background */
#athenaIntakeForm .ath-shell { min-height: 100%; }
#athenaIntakeForm .ath-shell-bg {
  background: url('https://images.unsplash.com/photo-1631217868264-e5b90bb7e133?w=1400&q=80&auto=format&fit=crop') center/cover no-repeat;
  opacity: 0.15; z-index: 0;
}
#athenaIntakeForm .ath-shell-overlay {
  background: linear-gradient(135deg, rgba(7,17,31,0.92), rgba(7,17,31,0.75));
  z-index: 0;
}

/* Card */
#athenaIntakeForm .ath-card {
  z-index: 2; border: none; border-radius: 0; overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.55), 0 0 0 1px rgba(255,255,255,0.06);
}

/* Header */

#athenaIntakeForm .ath-card-header::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 1.5px;
  background: linear-gradient(90deg, var(--secondary-color);, var(--secondary-color);, var(--secondary-color););
}
#athenaIntakeForm .ath-brand-name {
  font-size: 10px; font-weight: 600; letter-spacing: 0.22em;
  text-transform: uppercase; color: rgba(255,255,255,0.5);
}
#athenaIntakeForm .ath-brand-tag {
  font-size: 9px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--secondary-color);;
}
#athenaIntakeForm .ath-ch-title {
  font-family: 'Playfair Display', serif; font-size: 22px;
  color: #fff; font-weight: 400; line-height: 1.2;
}
#athenaIntakeForm .ath-ch-title em { font-style: italic; color: var(--secondary-color);; }

/* Progress segments */
#athenaIntakeForm .ath-progress-track { width: 120px; gap: 3px; }
#athenaIntakeForm .ath-prog-seg {
  flex: 1; height: 2px; background: rgb(161 161 161 / 38%); transition: background 0.4s;
}
#athenaIntakeForm .ath-prog-seg.done   { background: var(--secondary-color);; }
#athenaIntakeForm .ath-prog-seg.active { background: var(--secondary-color);; }

/*  { padding: 28px 32px 26px; }*/

/* Steps */
#athenaIntakeForm .ath-step { display: none; }
#athenaIntakeForm .ath-step.visible { display: block; }

#athenaIntakeForm .ath-step-eyebrow {
  font-size: 9px; font-weight: 600; letter-spacing: 0.2em;
  text-transform: uppercase; color: #9BA8C0;
}
#athenaIntakeForm .ath-step-q {
  font-family: 'Playfair Display', serif; font-size: 18px;
  color: #0A1628; font-weight: 500; line-height: 1.35;
}
#athenaIntakeForm .ath-step-sub { font-size: 12px; color: #7a7a7a; line-height: 1.55; }
#athenaIntakeForm .ath-divider { height: 1px; background: #f0f0f0; }

/* Option rows */
#athenaIntakeForm .ath-opt {
  border: 1px solid #ebebeb; border-radius: 2px; padding: 13px 16px;
  cursor: pointer; transition: border-color 0.2s, background 0.2s;
  font-size: 13px; color: #2a2a2a; user-select: none; position: relative;
}
#athenaIntakeForm .ath-opt::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0;
  width: 0; background: var(--secondary-color);; transition: width 0.2s; border-radius: 2px 0 0 2px;
}
#athenaIntakeForm .ath-opt:hover     { border-color: #9BA8C0; background: #F8F9FC; }
#athenaIntakeForm .ath-opt.selected  { border-color: var(--secondary-color);; background: #F0F2F7; }
#athenaIntakeForm .ath-opt.selected::before { width: 3px; }
#athenaIntakeForm .ath-opt-text small { font-size: 11px;
    color: #565656;
    font-weight: 400; }

/* Radio dot */
#athenaIntakeForm .ath-opt-radio {
  width: 18px; height: 18px; border-radius: 50%;
  border: 1.5px solid #d0d0d0; flex-shrink: 0; transition: border-color 0.2s;
}
#athenaIntakeForm .ath-opt.selected .ath-opt-radio { border-color: var(--secondary-color);; }
#athenaIntakeForm .ath-opt-dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--secondary-color);;
  opacity: 0; transform: scale(0.5); transition: opacity 0.2s, transform 0.2s;
}
#athenaIntakeForm .ath-opt.selected .ath-opt-dot { opacity: 1; transform: scale(1); }

/* Buttons */
#athenaIntakeForm .ath-btn-back {
  width: 44px; flex-shrink: 0; border-radius: 2px;
  border: 1px solid #dde0eb; background: transparent; color: var(--secondary-color);; font-size: 16px;
}
#athenaIntakeForm .ath-btn-back:hover { background: #F0F2F7; border-color: var(--secondary-color);; }

#athenaIntakeForm .ath-btn-next {
  flex: 1; background: #223264; color: #fff; border: none;
  padding: 13px 20px; border-radius: 2px;
  font-size: 11px; font-weight: 600; letter-spacing: 0.13em; text-transform: uppercase;
  opacity: 0.35; pointer-events: none;
}
#athenaIntakeForm .ath-btn-next.ready         { opacity: 1; pointer-events: auto; }
#athenaIntakeForm .ath-btn-next.ready:hover   { background: #162b4a; }
#athenaIntakeForm .ath-btn-next.slate         { background: var(--secondary-color);; opacity: 0.35; pointer-events: none; }
#athenaIntakeForm .ath-btn-next.slate.ready   { opacity: 1; pointer-events: auto; }
#athenaIntakeForm .ath-btn-next.slate.ready:hover { background: #2d3b5e; }

#athenaIntakeForm .ath-form-note { font-size: 10.5px; color: #7a7a7a; gap: 5px; }

/* Contact fields (underline style — Bootstrap can't do this natively) */
#athenaIntakeForm .ath-field-label {
  font-size: 9.5px; font-weight: 600; letter-spacing: 0.15em;
  text-transform: uppercase;
}
#athenaIntakeForm .ath-field-input {
  border: none; border-bottom: 1.5px solid #e8e8e8; border-radius: 0;
  padding: 10px 0; font-size: 14px; color: #0A1628;
  background: transparent; box-shadow: none; width: 100%;
}
#athenaIntakeForm .ath-field-input:focus {
  border-bottom-color: var(--secondary-color);; background: transparent;
  color: #0A1628; box-shadow: none; outline: none;
}
#athenaIntakeForm .ath-field-input::placeholder { color: #ccc; font-weight: 300; }

/* Confirm screen */
#athenaIntakeForm .ath-confirm { display: none; padding: 40px 32px 36px; }
#athenaIntakeForm .ath-confirm.visible { display: block; }
#athenaIntakeForm .ath-confirm-ring {
  width: 56px; height: 56px; border-radius: 50%;
  border: 1.5px solid var(--secondary-color);; background: #F0F2F7;
}
#athenaIntakeForm .ath-confirm-name {
  font-family: 'Playfair Display', serif; font-size: 24px; color: #0A1628; font-weight: 400;
}
#athenaIntakeForm .ath-confirm-name em { font-style: italic; color: var(--secondary-color);; }
#athenaIntakeForm .ath-confirm-sub { font-size: 13px; color: #888; line-height: 1.65; font-weight: 300; }
#athenaIntakeForm .ath-confirm-cta {
  background: #0A1628; color: #fff; padding: 14px 28px; border-radius: 2px;
  font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; border: none;
}
#athenaIntakeForm .ath-confirm-cta:hover { background: #162b4a; color: #fff; }
#athenaIntakeForm .ath-confirm-whisper {
  font-family: 'Playfair Display', serif; font-size: 13px; color: #bbb; font-style: italic;
}
/* Hero Section */

.hero-wrapper {
    /*background: var(--white);*/
    overflow: hidden;
    position: relative;
}

.hero-title {
    font-size: 40px;
    color: var(--primary-color);
    font-weight: 500;
    font-family: var(--heading-font);
}

.green-heading {
    font-size: 28px;
    color: var(--secondary-color);
    font-weight: 500;
    font-family: var(--heading-font);
}

.hero-description {
    max-width: 620px;
    font-size: 16px;
    margin-bottom: 35px;
    font-family: var(--body-font);
    font-weight: 400;
    line-height: 28px;
}

.hero-btn-group {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.hero-pointer {
    position: relative;
    padding-left: 22px;
}

.hero-pointer::before {
    content: "";
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary-color);
}

.hero-image-wrapper {
    position: relative;
    min-height: 580px;
    height: 100%;
}
.d-flex-btn{
    display: flex;
    gap: 10px;
}
.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg,
            rgba(255, 255, 255, 0.95) 0%,
            rgba(255, 255, 255, 0.7) 22%,
            rgba(255, 255, 255, 0.1) 45%,
            rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}
.recovery-card {
    position: absolute;
    left: 40px;
    bottom: 40px;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(10px);
    border-radius: 22px;
    padding: 28px;
    max-width: 360px;
    box-shadow: var(--shadow-md);
    z-index: 5;
}

.recovery-card p {
    font-size: 17px;
}

.rec-no {
    font-size: 27px !important;
}

.custom-modal .modal-content {
    border: none;
    border-radius: 24px;
    padding: 10px;
}

.modal-header {
    border: none !important;
}


.custom-modal .modal-title {
    font-family: var(--heading-font);
    color: var(--primary-color);
    font-size: 34px;
}

.custom-modal .form-control {
    border-radius: 14px;
    min-height: 54px;
    border: 1px solid #d9d9d9;
    box-shadow: none;
}

.custom-modal .form-control:focus {
    border-color: var(--secondary-color);
    box-shadow: none;
}
#thankYouMessage p{
    font-size:20px;
}


/* TRUST / STATS SECTION */

.trust-stats-row {
    background: #071f3a;
    height: 120px;
}

.trust-stat-card {
    padding: 19px 25px;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    height: 98%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.trust-line {
    width: 22px;
    height: 2px;
    background: #0f7bc2;
    display: block;
    margin-bottom: 16px;
    display: block;
  margin: 0 auto;
}

.trust-title {
    font-size: 27px;
    color: #fff;
    font-weight: 500;
        padding-top: 7px;
}

.trust-text {
    color: rgba(255, 255, 255, 0.78);
    font-size: 12px;
    line-height: 1.7;
    padding-top: 10px;
    font-weight: 300;
}

.trust-banner {
    position: relative;
    overflow: hidden;
}

.trust-banner-img {
    width: 100%;
    height: 125%;
    object-fit: cover;
    position: absolute;
    inset: 0;
}

.trust-stat-card span {
    font-family: var(--body-font);
}

.trust-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg,
            rgba(4, 18, 36, 0.88) 0%,
            rgba(4, 18, 36, 0.45) 35%,
            rgba(4, 18, 36, 0.15) 100%);
    z-index: 1;
    height: 100%;
}

.trust-content {
    position: relative;
    z-index: 3;
    padding: 40px 50px;
    max-width: 650px;
}

.trust-author {
    color: rgba(255, 255, 255, 0.82);
    font-size: 16px;
}

/* Conditions + Help */

.section-tag {
    display: inline-block;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color:  #0f7bc2;
    font-weight: 600;
}

.section-title {
    font-size: 25px;
    line-height: 1.15;
    color: var(--primary-color);
    font-weight: 500;
}

.condition-card {
    position: relative;
    padding: 10px 0px 10px 24px;
}
.condition-card:hover{
    background: #edf5f0;
    border-radius: 20px;
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
}

.condition-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary-color);
    position: absolute;
    top: 18px;
    left: 8px;
}

.condition-title {
    margin-bottom: 8px;
    line-height: 1.35;
    font-family: var(--body-font);
}

.condition-text {
    font-size: 16px;
    line-height: 1.7;
}

.help-card {
    border: 1px solid #cfe1da;
    border-radius: 28px;
    padding: 38px;
    border: 1px solid rgb(25, 162, 254) !important;
    background: rgba(27, 182, 255, 0.1) !important;
}

.help-card-title {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 12px;
    font-weight: 500;
}

.warning-list {
    padding: 0;
    margin: 0;
    list-style: none;
}

.warning-list li {
    position: relative;
    padding-left: 34px;
    margin-bottom: 10px;
    font-size: 16px;
    color: #000;
}

.warning-list li::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary-color);
    position: absolute;
    left: 0;
    top: 7px;
}

.help-cta-box {
    margin-top: 25px;
    border: 1px solid #d9e7e2;
    border-radius: 16px;
    background: var(--white);
    padding: 18px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.help-cta-title {
    font-size: 18px;
    color: var(--primary-color);
    margin-bottom: 4px;
    font-weight: 600;
}

.help-cta-text {
    font-size: 14px;
    color: var(--text-light);
}

/* Our Approach */
.approach {
    background: rgba(27, 182, 255, 0.1) !important;
}

/* OUR DOCTORS */
.team-card{
    width: calc(25% - 18px);
}
.d-height{
    height: 370px;
}

.d-h{
    height:50px;
}

.team-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--secondary-color);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: background .2s;
}

.team-dot.active {
    background: var(--primary-color);
}


/* WHY ATHENA */
.athena_img {
    width: 500px;
    height: auto;
    border-radius: 20px;
    margin-top: 30px;
}

.why-section {
    background-color: var(--primary-color);
}
.why-bg{
    width:36px;height:36px; background:rgba(74,158,142,0.2);
}

/* OUR CENTER */

li span {
    color: #444;
}

.locate-btn {
    font-size: 11px;
    background: var(--primary-color);
    color: #fff;
    backdrop-filter: blur(4px);
    border: none;
    letter-spacing: .04em;
    font-weight: 300;
}

/* Testimonial */
.star{
color:#f5aa28; font-size:1rem; letter-spacing:.1em;
}

.testimonial-boxes{
    background: rgba(27, 182, 255, 0.1) !important;
    padding: 20px;
    border-radius: 10px;
}

.testimonial-boxes .fst-italic{
    height: 160px;
}

.footer_img{
    width: 100%;
    height: 345px;
    border-radius: 20px;
}


    /* NAVBAR BASE */
.nav-item {
    position: relative;
    list-style: none;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    padding: 10px 15px;
    display: inline-block;
}

/* DROPDOWN MENU */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 220px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    border-radius: 10px;
    padding: 10px 0;

    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;

    z-index: 999;
}

.testimonial-slide {
  width: calc(33.333% - 16px);
}

@media (max-width: 991px) {
  .testimonial-slide {
    width: calc(50% - 12px);
  }
}

@media (max-width: 575px) {
  .testimonial-slide {
    width: 100%;
  }
}

.team-dot, #testimonialDots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: #cbd5e1;
  padding: 0;
  cursor: pointer;
  transition: background 0.3s, width 0.3s;
}

#testimonialDots button.active {
  background: #112342;
  border-radius: 4px;
}

/* DROPDOWN ITEMS */
.dropdown-menu li {
    list-style: none;
}

.dropdown-menu li a {
    display: block;
    padding: 10px 18px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    transition: 0.2s;
}

/* HOVER EFFECT */
.dropdown-menu li a:hover {
    background: #f5f7fa;
    color: #000;
}

/* SHOW DROPDOWN ON HOVER */
.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}