:root {
    --navy: #0f378f;
    --teal: #33b8a7;
  --sky: #e8f4fd;
  --white: #ffffff;
  --soft: #f5f9ff;
  --gray: #313131;
  --dark: #0f1d42;
  --accent: #ff6b6b;
  --card-shadow: 0 4px 30px rgba(26,46,108,0.08);
}

.logo{
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo .logo-icon img {
    width: 55px;
    margin-bottom: 0px;
}

.bb-short {
    display: inline-block;
    position: relative;
    padding-bottom: 5px;
}

.bb-short::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width:45%;
    height: 2px;
    background:var(--title-color);
    border-radius: 2px;
}

.logo .logo-text h2 {
    font-weight: 700;
    text-transform: capitalize;
    font-size: 30px;
    line-height: 40px;
    color: var(--title-color);
    margin: 4px 0 5px 0;
    font-family: var(--title-font);
}

.logo .logo-text h3 {
    font-weight: 600;
    text-transform: capitalize;
    font-size: 16px;
    line-height: 26px;
    text-transform: capitalize;
    color: var(--theme-color);
    font-family: var(--body-font);
    margin-bottom: 2px;
}

/* ─────────────────── SECTION STYLES ─────────────────── */
.section-eyebrow {
    display: inline-block;
    color: var(--navy);
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 5px;
}
.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 41px;
    color: var(--navy);
    line-height: 51px;
    margin-bottom: 10px;
}
.degree {
    font-family: var(--title-font2);
    font-size: 18px;
    color: var(--navy);
    line-height: 28px;
    font-weight: 500;
    margin-bottom: 5px;
}


.section-title em { font-style: italic; color: var(--teal); }
.section-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--teal), var(--navy));
    border-radius: 2px;
    margin: 0 auto 20px;
}
.section-divider.left { margin-left: 0; }


/* ─────────────────── WHY CHOOSE ─────────────────── */
.why-section { background: var(--white); padding: 60px 0; }
.why-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 17px;
    border-radius: 12px;
    border: 1px solid rgba(26,46,108,0.07);
    transition: all 0.3s;
    margin-bottom: 15px;
}
.why-card:hover {
  border-color: rgba(62,196,164,0.3);
  background: var(--soft);
  transform: translateX(4px);
}
.why-icon {
    width: 30px;
    height: 50px;
    flex-shrink: 0;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    color: var(--teal);
}
.why-card h6 { font-weight:700; color:var(--navy); margin-bottom:4px; }
.why-card p {  color:var(--gray); margin:0; line-height:1.6; }
.why-image {
  border-radius: 24px;
  overflow:hidden;
  box-shadow: 0 20px 60px rgba(26,46,108,0.14);
  position:relative;
}
.why-image img { width:100%; display:block; }
.why-image-overlay {
  position:absolute; bottom:20px; left:20px; right:20px;
  background: rgba(255,255,255,0.95);
  border-radius: 14px;
  padding: 16px 20px;
  display:flex; align-items:center; gap:14px;
}

/* ─────────────────── CTA STRIP ─────────────────── */
.cta-strip {
  background: linear-gradient(135deg, #0f378f, #03163f);
  padding: 50px 0;
}
.cta-strip h3 {
  font-family:'Playfair Display',serif;
  color:#fff; font-size:clamp(1.6rem,3vw,2.2rem);
}
.cta-strip p { color:#fff; }
.btn-cta-white {
  background:#fff; color:var(--teal);
  border:none; padding:0.85rem 2rem;
  border-radius:50px; font-weight:700;
  transition:all 0.3s;
  box-shadow:0 8px 24px rgba(0,0,0,0.15);
}
.btn-cta-white:hover { transform:translateY(-2px); box-shadow:0 12px 32px rgba(0,0,0,0.2); color:var(--navy); }
.btn-cta-outline {
  background:transparent; color:#fff;
  border:2px solid rgba(255,255,255,0.6);
  padding:0.82rem 2rem; border-radius:50px; font-weight:600;
  transition:all 0.3s;
}
.btn-cta-outline:hover { border-color:#fff; background:rgba(255,255,255,0.12); color:#fff; }

/* ─────────────────── BOOK APPOINTMENT ─────────────────── */
.booking-section {
  background: linear-gradient(135deg, #f0f7ff 0%, #e8f4fd 100%);
  padding: 60px 0;
  position:relative; overflow:hidden;
}
.booking-section::before {
  content:'';
  position:absolute; top:-60px; right:-60px;
  width:300px; height:300px;
  background:radial-gradient(circle,rgba(62,196,164,0.15) 0%,transparent 70%);
}
.booking-card {
  background: var(--white);
  border-radius: 28px;
  padding: 44px 40px;
  box-shadow: 0 24px 80px rgba(26,46,108,0.12);
  position:relative; z-index:1;
}
.form-label {
    font-weight: 400;
    font-size: 14px;
    color: #00000063;
    margin-bottom: 5px;
     }
.form-control, .form-select {
  border: 1.5px solid rgba(26,46,108,0.12);
  border-radius: 12px;
  padding: 0.7rem 1rem;
  font-size:0.88rem;
  transition:all 0.2s;
  background: var(--soft);
}
.form-control:focus, .form-select:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(62,196,164,0.12);
  background:#fff;
}
.btn-submit {
  background:linear-gradient(135deg,var(--navy),#2a4494);
  color:#fff; border:none;
  padding:0.85rem 2.4rem;
  border-radius:50px;
  font-weight:700;
  width:100%;
  transition:all 0.3s;
  box-shadow:0 8px 24px rgba(26,46,108,0.25);
}
.btn-submit:hover {
  transform:translateY(-2px);
  box-shadow:0 12px 32px rgba(26,46,108,0.35);
  color:#fff;
}
.booking-info-card {
  background: var(--navy);
  border-radius:20px;
  padding:28px 24px;
  color:#fff;
  height:100%;
}
.booking-info-card h5 { font-weight:700; margin-bottom:25px; color: #fff;}
.booking-detail {
  display:flex; align-items:flex-start; gap:12px;
  margin-bottom:16px; padding-bottom:16px;
  border-bottom:1px solid rgba(255,255,255,0.1);
}
.booking-detail:last-child { border-bottom:none; margin-bottom:0; padding-bottom:0; }
.booking-detail-icon {
  width:38px; height:38px; border-radius:10px;
  background:rgba(62,196,164,0.15);
  display:flex; align-items:center; justify-content:center;
  color:var(--teal); font-size:1rem; flex-shrink:0;
}
.booking-detail strong { 
    display: block;
    font-size: 18px;
    color: #fff;
    font-weight: 500;
}
.booking-detail span {  color:#fff; }

/* ─────────────────── ANIMATED WHATSAPP ICON ─────────────────── */
.float-call {
  position:fixed;
  bottom:24px;
  left:24px;
  z-index:999;
  width:60px;
  height:60px;
  border-radius:50%;
  background: linear-gradient(135deg, #25d366, #1d9e52);
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  font-size:1.5rem;
  box-shadow:0 8px 30px rgba(37,211,102,0.4);
  text-decoration:none;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  animation: whatsappPulse 2s ease-in-out infinite;
}

@keyframes whatsappPulse {
  0%, 100% {
    box-shadow: 0 8px 30px rgba(37,211,102,0.4), 0 0 0 0 rgba(37,211,102,0.3);
  }
  50% {
    box-shadow: 0 8px 30px rgba(37,211,102,0.4), 0 0 0 12px rgba(37,211,102,0.1);
  }
}

.float-call:hover {
  transform: scale(1.15) rotate(15deg);
  box-shadow: 0 12px 40px rgba(37,211,102,0.5);
  animation: none;
}

.fixed-tel {
    position: fixed;
    bottom: 100px;
    right: 25px;
    width: 60px;
    height: 60px;
    line-height: 70px;
    z-index: 9999;
    text-align: center;
}

.fixed-tel:before {
  content: "";
  width: 60px;
  height: 60px;
  background: #33b8a6;
  position: absolute;
  border-radius: 100%;
  z-index: 1;
  top: 0;
  left: 0;
}

.fixed-tel i {
  vertical-align: middle;
  z-index: 2;
  position: relative;
  color: #fff;
  bottom: 5px;
  font-size: 24px;
}

.checklist ul.pilates{
      display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.float-insta {
  position:fixed;
  bottom:95px;
  left:24px;
  z-index:999;
  width:60px;
  height:60px;
  border-radius:50%;
  background: linear-gradient(
322deg, #d325a5, #311d9e, #9c22bd);
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  font-size:1.5rem;
  box-shadow:0 8px 30px rgb(154 37 211 / 40%);
  text-decoration:none;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  animation: instaPulse 2s ease-in-out infinite;
}

@keyframes instaPulse {
  0%, 100% {
    box-shadow: 0 8px 30px rgba(154,37,211,0.4), 0 0 0 0 rgba(154,37,211,0.3);
  }
  50% {
    box-shadow: 0 8px 30px rgba(154,37,211,0.4), 0 0 0 12px rgba(154,37,211,0.1);
  }
}

.float-insta:hover {
  transform: scale(1.15) rotate(15deg);
  box-shadow: 0 12px 40px rgba(37,211,102,0.5);
  animation: none;
}

.pilates-comparison{
    padding:60px 0;
    background:#f8fbff;
}

.comparison-card{

    margin:auto;
    background:#fff;
    border-radius:14px;
    overflow:hidden;
    box-shadow:0 10px 20px rgba(0,0,0,.06);
}

.comparison-header,
.comparison-row{
    display:grid;
    grid-template-columns:150px 1fr 1fr;
}

.comparison-header{
    background:#000;
    color:#fff;
    font-weight:700;
    font-size:20px;
    text-transform: uppercase;
}

.comparison-header div{
    padding:15px 20px;
}

.comparison-row{
    border-bottom:1px solid #cdcdcd;
}

.comparison-row:last-child{
    border-bottom:none;
}

.comparison-row>div{
    padding:15px 20px;
    display:flex;
    align-items:center;
}

.aspect{
    font-weight:700;
    color:#222;
    background:#fff;
}

.clinical-content{
    background:#f3fffd;
    color:#33b8a6;
}

.regular-content{
    background:#eff5fd;
    color:#0f378f;
}

.column-title.clinical{
    background:#33b8a6;
}

.column-title.regular{
    background:#0f378f;
}

@media(max-width:768px){

    .comparison-header{
        display:none;
    }

    .comparison-row{
        display:block;
        margin-bottom:20px;
        border:1px solid #e5e5e5;
        border-radius:10px;
        overflow:hidden;
    }

    .aspect{
        background:#33b8a6;
        color:#fff;
        padding:15px 20px;
    }

    .clinical-content,
    .regular-content{
        display:block;
        padding:18px 20px;
    }

    .clinical-content::before{
        content:"Clinical Pilates";
        display:block;
        font-weight:700;
        color:#33b8a6;
        margin-bottom:8px;
    }

    .regular-content::before{
        content:"Regular Pilates";
        display:block;
        font-weight:700;
        color:#0f378f;
        margin-bottom:8px;
    }
}