 :root {
   --navy: #0d1f4c;
   --navy-light: #1a3270;
   --gold: #c9a84c;
   --gold-light: #e8c97a;
   --gold-pale: #f5edd6;
   --white: #ffffff;
   --off-white: #f9f7f2;
   --text: #2a2a2a;
   --text-muted: #6b7280;
   --border: #e5ddd0;
 }

 *,
 *::before,
 *::after {
   box-sizing: border-box;
   margin: 0;
   padding: 0;
 }

 html {
   scroll-behavior: smooth;
 }

 body {
   font-family: 'DM Sans', sans-serif;
   color: var(--text);
   background: var(--white);
   overflow-x: hidden;
 }

 /* ── NAV ── */
 nav {
   position: fixed;
   top: 0;
   left: 0;
   right: 0;
   z-index: 1000;
   background: rgba(13, 31, 76, 0.97);
   backdrop-filter: blur(12px);
   border-bottom: 1px solid rgba(201, 168, 76, 0.2);
   padding: 0 5%;
   display: flex;
   align-items: center;
   justify-content: space-between;
   height: 70px;
   transition: all .3s;
 }

 .nav-logo {
   display: flex;
   align-items: center;
   gap: 12px;
   text-decoration: none;
 }

 .nav-logo img {
   height: 55px;
   object-fit: contain;
   border-radius: 6px;
 }

 .nav-logo-text {
   color: var(--white);
 }

 .nav-logo-text strong {
   font-family: 'Cormorant Garamond', serif;
   font-size: 1.35rem;
   font-weight: 700;
   letter-spacing: 3px;
   display: block;
   line-height: 1;
 }

 .nav-logo-text span {
   font-size: 0.6rem;
   letter-spacing: 2px;
   color: var(--gold);
   text-transform: uppercase;
 }

 .nav-links {
   display: flex;
   gap: 36px;
   list-style: none;
 }

 .nav-links a {
   color: rgba(255, 255, 255, 0.82);
   text-decoration: none;
   font-size: 0.82rem;
   letter-spacing: 1px;
   font-weight: 500;
   text-transform: uppercase;
   transition: color .2s;
 }

 .nav-links a:hover {
   color: var(--gold);
 }

 .nav-cta {
   background: var(--gold);
   color: var(--navy);
   padding: 10px 24px;
   border-radius: 2px;
   font-size: 0.8rem;
   font-weight: 600;
   text-decoration: none;
   letter-spacing: 1px;
   text-transform: uppercase;
   transition: background .2s;
   white-space: nowrap;
 }

 .nav-cta:hover {
   background: var(--gold-light);
 }

 .hamburger {
   display: none;
   flex-direction: column;
   gap: 5px;
   cursor: pointer;
 }

 .hamburger span {
   display: block;
   width: 24px;
   height: 2px;
   background: var(--white);
   transition: all .3s;
 }

 /* ── HERO ── */
 #hero {
   min-height: 100vh;
   background: linear-gradient(135deg, var(--navy) 0%, #122060 55%, #0d1f4c 100%);
   display: flex;
   align-items: center;
   position: relative;
   overflow: hidden;
   padding: 100px 5% 60px;
 }

 .hero-bg-pattern {
   position: absolute;
   inset: 0;
   opacity: 0.04;
   background-image: repeating-linear-gradient(0deg, var(--gold) 0, var(--gold) 1px, transparent 0, transparent 50%),
     repeating-linear-gradient(90deg, var(--gold) 0, var(--gold) 1px, transparent 0, transparent 50%);
   background-size: 60px 60px;
 }

 .hero-glow {
   position: absolute;
   width: 600px;
   height: 600px;
   background: radial-gradient(circle, rgba(201, 168, 76, 0.12) 0%, transparent 70%);
   top: 50%;
   left: 55%;
   transform: translate(-50%, -50%);
   pointer-events: none;
 }

 .hero-inner {
   display: flex;
   align-items: center;
   gap: 60px;
   max-width: 1200px;
   margin: auto;
   width: 100%;
   position: relative;
   z-index: 1;
 }

 .hero-content {
   flex: 1;
 }

 .hero-badge {
   display: inline-flex;
   align-items: center;
   gap: 8px;
   background: rgba(201, 168, 76, 0.15);
   border: 1px solid rgba(201, 168, 76, 0.35);
   border-radius: 100px;
   padding: 6px 16px;
   margin-bottom: 28px;
 }

 .hero-badge span {
   font-size: 0.72rem;
   letter-spacing: 2px;
   text-transform: uppercase;
   color: var(--gold);
   font-weight: 600;
 }

 .hero-badge .dot {
   width: 6px;
   height: 6px;
   border-radius: 50%;
   background: var(--gold);
   animation: pulse 2s infinite;
 }

 @keyframes pulse {

   0%,
   100% {
     opacity: 1
   }

   50% {
     opacity: .4
   }
 }

 .hero-title {
   font-family: 'Cormorant Garamond', serif;
   font-size: clamp(2.8rem, 5.5vw, 5rem);
   font-weight: 600;
   color: var(--white);
   line-height: 1.08;
   margin-bottom: 24px;
 }

 .hero-title em {
   color: var(--gold);
   font-style: normal;
 }

 .hero-desc {
   font-size: 1.05rem;
   color: rgba(255, 255, 255, 0.68);
   line-height: 1.75;
   max-width: 520px;
   margin-bottom: 40px;
 }

 .hero-actions {
   display: flex;
   gap: 16px;
   flex-wrap: wrap;
 }

 .btn-primary {
   background: var(--gold);
   color: var(--navy);
   padding: 15px 36px;
   border-radius: 2px;
   font-weight: 700;
   font-size: 0.85rem;
   letter-spacing: 1.5px;
   text-transform: uppercase;
   text-decoration: none;
   transition: all .2s;
   display: inline-block;
 }

 .btn-primary:hover {
   background: var(--gold-light);
   transform: translateY(-1px);
 }

 .btn-outline {
   border: 1.5px solid rgba(201, 168, 76, 0.5);
   color: var(--gold);
   padding: 14px 36px;
   border-radius: 2px;
   font-weight: 600;
   font-size: 0.85rem;
   letter-spacing: 1.5px;
   text-transform: uppercase;
   text-decoration: none;
   transition: all .2s;
   display: inline-block;
 }

 .btn-outline:hover {
   background: rgba(201, 168, 76, 0.1);
   border-color: var(--gold);
 }

 .hero-stats {
   display: flex;
   gap: 40px;
   margin-top: 56px;
   padding-top: 40px;
   border-top: 1px solid rgba(255, 255, 255, 0.08);
 }

 .stat {
   text-align: center;
 }

 .stat-num {
   font-family: 'Cormorant Garamond', serif;
   font-size: 2.6rem;
   font-weight: 700;
   color: var(--gold);
   line-height: 1;
 }

 .stat-label {
   font-size: 0.72rem;
   color: rgba(255, 255, 255, 0.5);
   letter-spacing: 1.5px;
   text-transform: uppercase;
   margin-top: 4px;
 }

 .hero-image-wrap {
   flex: 0 0 420px;
   display: flex;
   justify-content: center;
   align-items: center;
 }

 .hero-logo-display {
   width: 500px;
   background: rgba(255, 255, 255, 0.04);
   border: 1px solid rgba(201, 168, 76, 0.2);
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   padding: 30px;
   position: relative;
 }

 .hero-logo-display::before {
   content: '';
   position: absolute;
   inset: -8px;
   border-radius: 50%;
   border: 1px dashed rgba(201, 168, 76, 0.459);
   animation: spin 30s linear infinite;
 }

 @keyframes spin {
   to {
     transform: rotate(360deg);
   }
 }

 .hero-logo-display img {
   width: 100%;
   filter: drop-shadow(0 10px 40px rgba(201, 168, 76, 0.3));
   border-radius: 5px;
 }

 /* ── SECTION COMMON ── */
 section {
   padding: 100px 5%;
 }

 .section-label {
   font-size: 0.72rem;
   letter-spacing: 3px;
   text-transform: uppercase;
   color: var(--gold);
   font-weight: 600;
   margin-bottom: 12px;
 }

 .section-title {
   font-family: 'Cormorant Garamond', serif;
   font-size: clamp(2rem, 3.5vw, 3rem);
   font-weight: 600;
   color: var(--navy);
   line-height: 1.2;
   margin-bottom: 20px;
 }

 .section-subtitle {
   font-size: 1rem;
   color: var(--text-muted);
   line-height: 1.75;
   max-width: 560px;
 }

 .section-header {
   margin-bottom: 60px;
 }

 .section-header.center {
   text-align: center;
 }

 .section-header.center .section-subtitle {
   margin: 0 auto;
 }

 .divider {
   display: flex;
   align-items: center;
   gap: 12px;
   margin: 16px 0 0;
 }

 .divider-line {
   height: 1px;
   width: 40px;
   background: var(--gold);
 }

 .divider-dot {
   width: 5px;
   height: 5px;
   border-radius: 50%;
   background: var(--gold);
 }

 .center .divider {
   justify-content: center;
 }

 /* ── SPECIALITIES ── */
 #specialities {
   background: var(--off-white);
 }

 .spec-grid {
   display: grid;
   grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
   gap: 24px;
 }

 .spec-card {
   background: var(--white);
   border: 1px solid var(--border);
   border-radius: 4px;
   padding: 32px 28px;
   transition: all .3s;
   position: relative;
   overflow: hidden;
   cursor: default;
 }

 .spec-card::after {
   content: '';
   position: absolute;
   bottom: 0;
   left: 0;
   right: 0;
   height: 3px;
   background: var(--gold);
   transform: scaleX(0);
   transition: transform .3s;
   transform-origin: left;
 }

 .spec-card:hover {
   transform: translateY(-4px);
   box-shadow: 0 16px 48px rgba(13, 31, 76, 0.1);
 }

 .spec-card:hover::after {
   transform: scaleX(1);
 }

 .spec-icon {
   font-size: 2.2rem;
   margin-bottom: 16px;
 }

 .spec-title {
   font-family: 'Cormorant Garamond', serif;
   font-size: 1.2rem;
   font-weight: 600;
   color: var(--navy);
   margin-bottom: 8px;
 }

 .spec-desc {
   font-size: 0.87rem;
   color: var(--text-muted);
   line-height: 1.65;
 }

 /* ── PHYSIO ── */
 #physiotherapy {
   background: var(--white);
 }

 .physio-grid {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 60px;
   align-items: center;
 }

 .physio-visual img {
   width: 40%;
   height: auto;
   object-fit: cover;
   border-radius: 4px;
   box-shadow: 0 12px 40px rgba(13, 31, 76, 0.08);
 }

 .new-title-physo {
   width: 60%;
   padding-left: 25px;
 }

 .physio-visual {
   background: linear-gradient(135deg, var(--navy) 0%, #1a3270 100%);
   border-radius: 4px;
   padding: 50px 40px;
   color: white;
   position: relative;
   overflow: hidden;
   display: flex;
   align-items: center;
 }

 .physio-visual::before {
   content: '';
   position: absolute;
   top: -60px;
   right: -60px;
   width: 200px;
   height: 200px;
   border-radius: 50%;
   background: rgba(201, 168, 76, 0.1);
 }

 .physio-list {
   list-style: none;
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 16px;
   margin-top: 30px;
 }

 .physio-list li {
   display: flex;
   align-items: center;
   gap: 10px;
   font-size: 0.9rem;
   color: rgba(255, 255, 255, 0.85);
 }

 .physio-list li::before {
   content: '✦';
   color: var(--gold);
   font-size: 0.7rem;
   flex-shrink: 0;
 }

 .physio-visual-title {
   font-family: 'Cormorant Garamond', serif;
   font-size: 1.8rem;
   color: white;
   font-weight: 600;
 }

 .physio-desc {
   color: rgba(255, 255, 255, 0.65);
   font-size: 0.92rem;
   line-height: 1.7;
   margin: 12px 0 0;
 }

 .physio-content {}

 .physio-services {
   display: flex;
   flex-direction: column;
   gap: 16px;
   margin-top: 32px;
 }

 .physio-service-item {
   display: flex;
   align-items: flex-start;
   gap: 16px;
   padding: 20px;
   border: 1px solid var(--border);
   border-radius: 4px;
   transition: all .25s;
 }

 .physio-service-item:hover {
   border-color: var(--gold);
   background: var(--gold-pale);
 }

 .physio-service-icon {
   font-size: 1.6rem;
   flex-shrink: 0;
   margin-top: 2px;
 }

 .physio-service-name {
   font-weight: 600;
   font-size: 0.95rem;
   color: var(--navy);
 }

 .physio-service-text {
   font-size: 0.84rem;
   color: var(--text-muted);
   margin-top: 3px;
   line-height: 1.5;
 }

 /* ── FACILITIES ── */
 #facilities {
   background: var(--navy);
 }

 #facilities .section-title {
   color: var(--white);
 }

 #facilities .section-subtitle {
   color: rgba(255, 255, 255, 0.6);
 }

 .fac-grid {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(220px, 220px));
   gap: 20px;
   margin-top: 60px;
   justify-content: center;
 }

 .gallery-slider li img {
   width: 100%;
   height: 500px;
   object-fit: cover;
   border-radius: 4px;
   border: 1px solid rgba(255, 255, 255, 0.15);
   transition: all .3s;
 }

 #doctors .gallery-slider li img{
  height: 100%;
 }

 .fac-card {
   background: rgba(255, 255, 255, 0.04);
   border: 1px solid rgba(201, 168, 76, 0.2);
   border-radius: 4px;
   padding: 36px 24px;
   text-align: center;
   transition: all .3s;
 }

 .fac-card:hover {
   background: rgba(201, 168, 76, 0.08);
   border-color: rgba(201, 168, 76, 0.5);
   transform: translateY(-3px);
 }

 .fac-icon {
   font-size: 2.4rem;
   margin-bottom: 14px;
 }

 .fac-name {
   font-family: 'Cormorant Garamond', serif;
   font-size: 1.1rem;
   font-weight: 800;
   color: var(--white);
   text-transform: uppercase;
 }

 .fac-desc {
   font-size: 0.8rem;
   color: rgba(255, 255, 255, 0.5);
   margin-top: 6px;
   line-height: 1.5;
 }

 /* ── WHY US ── */
 #why-us {
   background: var(--off-white);
 }

 .why-grid {
   display: grid;
   grid-template-columns: repeat(3, 1fr);
   gap: 32px;
   margin-top: 20px;
 }

 .why-card {
   background: var(--white);
   padding: 40px 32px;
   border-radius: 4px;
   border: 1px solid var(--border);
   text-align: center;
   transition: all .3s;
 }

 .why-card:hover {
   box-shadow: 0 12px 40px rgba(13, 31, 76, 0.08);
   transform: translateY(-3px);
 }

 .why-icon {
   font-size: 2.8rem;
   margin-bottom: 16px;
 }

 .why-title {
   font-family: 'Cormorant Garamond', serif;
   font-size: 1.25rem;
   font-weight: 600;
   color: var(--navy);
   margin-bottom: 10px;
 }

 .why-text {
   font-size: 0.88rem;
   color: var(--text-muted);
   line-height: 1.7;
 }

 /* ── TESTIMONIALS ── */
 #testimonials {
   background: var(--white);
 }

 /* .testi-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 28px; } */
 .testi-card {
   max-height: 100%;
   margin-left: 10px;
   background: var(--off-white);
   border: 1px solid var(--border);
   border-radius: 4px;
   padding: 36px 32px;
   position: relative;
   transition: all .3s;
 }

 .testi-card:hover {
   box-shadow: 0 12px 40px rgba(13, 31, 76, 0.08);
   transform: translateY(-3px);
 }

 .testi-quote {
   font-size: 3.5rem;
   line-height: 1;
   color: var(--gold);
   font-family: 'Cormorant Garamond', serif;
   position: absolute;
   top: 20px;
   right: 28px;
   opacity: 0.5;
 }

 .testi-stars {
   color: var(--gold);
   font-size: 0.9rem;
   margin-bottom: 14px;
   letter-spacing: 2px;
 }

 .testi-text {
   font-size: 0.93rem;
   color: var(--text);
   line-height: 1.75;
   font-style: italic;
   margin-bottom: 22px;
 }

 .testi-author {
   display: flex;
   align-items: center;
   gap: 12px;
 }

 .testi-avatar {
   width: 44px;
   height: 44px;
   border-radius: 50%;
   background: var(--navy);
   display: flex;
   align-items: center;
   justify-content: center;
   color: var(--gold);
   font-weight: 700;
   font-family: 'Cormorant Garamond', serif;
   font-size: 1.1rem;
   flex-shrink: 0;
 }

 .testi-name {
   font-weight: 600;
   font-size: 0.92rem;
   color: var(--navy);
 }

 .testi-detail {
   font-size: 0.78rem;
   color: var(--text-muted);
   margin-top: 2px;
 }

 /* ── FAQ ── */
 #faq {
   background: var(--off-white);
 }

 .faq-grid {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 60px;
   align-items: end;
 }

 .faq-list {
   display: flex;
   flex-direction: column;
   gap: 12px;
 }

 .faq-item {
   background: var(--white);
   border: 1px solid var(--border);
   border-radius: 4px;
   overflow: hidden;
 }

 .faq-q {
   padding: 20px 24px;
   cursor: pointer;
   display: flex;
   justify-content: space-between;
   align-items: center;
   gap: 16px;
   font-weight: 600;
   font-size: 0.94rem;
   color: var(--navy);
   transition: background .2s;
 }

 .faq-q:hover {
   background: var(--gold-pale);
 }

 .faq-q.open {
   background: var(--navy);
   color: var(--white);
 }

 .faq-toggle {
   font-size: 1.2rem;
   flex-shrink: 0;
   transition: transform .3s;
 }

 .faq-q.open .faq-toggle {
   transform: rotate(45deg);
 }

 .faq-a {
   display: none;
   padding: 0 24px 20px;
   font-size: 0.87rem;
   color: var(--text-muted);
   line-height: 1.75;
 }

 .faq-a.visible {
   display: block;
 }

 .faq-cta-box {
   background: var(--navy);
   border-radius: 4px;
   padding: 48px 40px;
   text-align: center;
 }

 .faq-cta-box h3 {
   font-family: 'Cormorant Garamond', serif;
   font-size: 2rem;
   color: var(--white);
   font-weight: 600;
   margin-bottom: 14px;
 }

 .faq-cta-box p {
   color: rgba(255, 255, 255, 0.65);
   font-size: 0.9rem;
   line-height: 1.7;
   margin-bottom: 30px;
 }

 /* ── CONTACT ── */
 #contact {
   background: var(--white);
 }

 .contact-grid {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 60px;
 }

 .contact-info {}

 .contact-item {
   display: flex;
   align-items: flex-start;
   gap: 16px;
   padding: 24px 0;
   border-bottom: 1px solid var(--border);
 }

 .contact-item:first-child {
   padding-top: 0;
 }

 .contact-icon {
   width: 44px;
   height: 44px;
   background: var(--gold-pale);
   border: 1px solid var(--gold);
   border-radius: 2px;
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 1.2rem;
   flex-shrink: 0;
 }

 .contact-label {
   font-size: 0.72rem;
   letter-spacing: 1.5px;
   text-transform: uppercase;
   color: var(--text-muted);
   margin-bottom: 4px;
 }

 .contact-value {
   font-weight: 600;
   color: var(--navy);
   font-size: 0.97rem;
 }

 .contact-value a {
   color: var(--navy);
   text-decoration: none;
 }

 .contact-value a:hover {
   color: var(--gold);
 }

 .contact-form-wrap {}

 .form-title {
   font-family: 'Cormorant Garamond', serif;
   font-size: 1.8rem;
   color: var(--navy);
   font-weight: 600;
   margin-bottom: 8px;
 }

 .form-subtitle {
   font-size: 0.88rem;
   color: var(--text-muted);
   margin-bottom: 28px;
 }

 .form-group {
   margin-bottom: 18px;
 }

 .form-group label {
   display: block;
   font-size: 0.78rem;
   letter-spacing: 1px;
   text-transform: uppercase;
   font-weight: 600;
   color: var(--navy);
   margin-bottom: 6px;
 }

 .form-group input,
 .form-group select,
 .form-group textarea {
   width: 100%;
   padding: 13px 16px;
   border: 1.5px solid var(--border);
   border-radius: 2px;
   font-family: 'DM Sans', sans-serif;
   font-size: 0.9rem;
   color: var(--text);
   background: var(--white);
   transition: border-color .2s;
   outline: none;
 }

 .form-group input:focus,
 .form-group select:focus,
 .form-group textarea:focus {
   border-color: var(--gold);
 }

 .form-group textarea {
   resize: vertical;
   min-height: 100px;
 }

 .form-row {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 16px;
 }

 .form-submit {
   background: var(--navy);
   color: var(--white);
   border: none;
   padding: 15px 36px;
   border-radius: 2px;
   font-size: 0.85rem;
   font-weight: 700;
   letter-spacing: 1.5px;
   text-transform: uppercase;
   cursor: pointer;
   transition: all .2s;
   width: 100%;
   font-family: 'DM Sans', sans-serif;
 }

 .form-submit:hover {
   background: var(--navy-light);
 }

 .form-success {
   display: none;
   background: #d1fae5;
   border: 1px solid #6ee7b7;
   border-radius: 4px;
   padding: 16px 20px;
   color: #065f46;
   font-size: 0.9rem;
   margin-top: 12px;
 }

 /* ── FOOTER ── */
 footer {
   background: #080f26;
   padding: 60px 5% 30px;
   border-top: 1px solid rgba(201, 168, 76, 0.15);
 }

 .footer-top {
   display: grid;
   grid-template-columns: 2fr 1fr 1fr 1fr;
   gap: 50px;
   padding-bottom: 50px;
   border-bottom: 1px solid rgba(255, 255, 255, 0.07);
 }

 .footer-brand p {
   color: rgba(255, 255, 255, 0.5);
   font-size: 0.87rem;
   line-height: 1.75;
   margin-top: 16px;
   max-width: 280px;
 }

 .footer-logo {
   font-family: 'Cormorant Garamond', serif;
   font-size: 1.8rem;
   font-weight: 700;
   color: var(--white);
   letter-spacing: 4px;
 }

 .footer-logo img {
   height: 80px;
   object-fit: contain;
   border-radius: 6px;
 }

 .footer-sub {
   font-size: 0.6rem;
   letter-spacing: 2px;
   text-transform: uppercase;
   color: var(--gold);
   display: block;
   margin-top: -4px;
 }

 .footer-col h4 {
   font-size: 0.7rem;
   letter-spacing: 2.5px;
   text-transform: uppercase;
   color: var(--gold);
   font-weight: 600;
   margin-bottom: 18px;
 }

 .footer-col ul {
   list-style: none;
   display: flex;
   flex-direction: column;
   gap: 10px;
 }

 .footer-col ul a {
   color: rgba(255, 255, 255, 0.55);
   text-decoration: none;
   font-size: 0.85rem;
   transition: color .2s;
 }

 .footer-col ul a:hover {
   color: var(--gold);
 }

 .footer-bottom {
   display: flex;
   justify-content: space-between;
   align-items: center;
   padding-top: 28px;
   flex-wrap: wrap;
   gap: 20px;
 }

 .footer-copy {
   color: rgba(255, 255, 255, 0.35);
   font-size: 0.8rem;
 }

 .footer-gold-bar {
   background: var(--gold);
   border-radius: 2px;
   padding: 5px 15px;
   opacity: 0.1;
 }

 .footer-gold-bar a {
   text-decoration: none;
 }

 /* ── FLOATING CTA ── */
 .floating-call {
   position: fixed;
   bottom: 28px;
   right: 28px;
   z-index: 999;
   background: var(--gold);
   color: var(--navy);
   padding: 14px 24px;
   border-radius: 100px;
   font-weight: 700;
   font-size: 0.83rem;
   letter-spacing: 1px;
   text-decoration: none;
   display: flex;
   align-items: center;
   gap: 8px;
   box-shadow: 0 8px 28px rgba(201, 168, 76, 0.4);
   animation: float-bob 3s ease-in-out infinite;
   text-transform: uppercase;
 }

 @keyframes float-bob {

   0%,
   100% {
     transform: translateY(0)
   }

   50% {
     transform: translateY(-5px)
   }
 }

 .floating-call:hover {
   background: var(--gold-light);
 }

 /* ── ABOUT US ── */
 #about {
   background: var(--white);
 }

 .about-grid {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 70px;
   align-items: center;
 }

 .about-img-wrap {
   position: relative;
 }

 .about-img-block {
   background: linear-gradient(145deg, var(--navy) 0%, #1a3270 100%);
   border-radius: 4px;
   padding: 48px 40px;
   position: relative;
   overflow: hidden;
 }

 .about-img-block::before {
   content: '';
   position: absolute;
   bottom: -40px;
   left: -40px;
   width: 180px;
   height: 180px;
   border-radius: 50%;
   background: rgba(201, 168, 76, 0.08);
 }

 .about-img-block::after {
   content: '';
   position: absolute;
   top: -30px;
   right: -30px;
   width: 120px;
   height: 120px;
   border-radius: 50%;
   background: rgba(201, 168, 76, 0.05);
 }

 .about-logo-center {
   display: flex;
   justify-content: center;
   margin-bottom: 32px;
   position: relative;
   z-index: 1;
 }

 .about-logo-ring {
   border: 1.5px solid rgba(201, 168, 76, 0.3);
   display: flex;
   align-items: center;
   justify-content: center;
   background: rgba(255, 255, 255, 0.04);
   padding: 20px;
 }

 .about-logo-ring img {
   width: 100%;
   filter: drop-shadow(0 6px 20px rgba(201, 168, 76, 0.3));
 }

 .about-pillars {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 14px;
   position: relative;
   z-index: 1;
 }

 .about-pillar {
   background: rgba(255, 255, 255, 0.06);
   border: 1px solid rgba(201, 168, 76, 0.2);
   border-radius: 4px;
   padding: 16px;
   text-align: center;
 }

 .about-pillar-icon {
   font-size: 1.5rem;
   margin-bottom: 6px;
 }

 .about-pillar-label {
   font-size: 0.75rem;
   color: rgba(255, 255, 255, 0.8);
   font-weight: 600;
   letter-spacing: 0.5px;
 }

 .about-accent-badge {
   position: absolute;
   bottom: -20px;
   right: -20px;
   background: var(--gold);
   color: var(--navy);
   padding: 16px 20px;
   border-radius: 4px;
   text-align: center;
   box-shadow: 0 8px 24px rgba(201, 168, 76, 0.35);
 }

 .about-accent-badge strong {
   font-family: 'Cormorant Garamond', serif;
   font-size: 1.8rem;
   font-weight: 700;
   display: block;
   line-height: 1;
 }

 .about-accent-badge span {
   font-size: 0.65rem;
   letter-spacing: 1.5px;
   text-transform: uppercase;
   font-weight: 700;
 }

 .about-content {}

 .about-intro {
   font-size: 1rem;
   color: var(--text-muted);
   line-height: 1.85;
   margin-bottom: 22px;
 }

 .about-highlights {
   display: flex;
   flex-direction: column;
   gap: 14px;
   margin: 28px 0 32px;
 }

 .about-highlight {
   display: flex;
   align-items: flex-start;
   gap: 14px;
 }

 .about-highlight-icon {
   width: 38px;
   height: 38px;
   background: var(--gold-pale);
   border: 1px solid rgba(201, 168, 76, 0.3);
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 1rem;
   flex-shrink: 0;
 }

 .about-highlight-text strong {
   display: block;
   font-size: 0.92rem;
   color: var(--navy);
   font-weight: 600;
   margin-bottom: 2px;
 }

 .about-highlight-text span {
   font-size: 0.83rem;
   color: var(--text-muted);
   line-height: 1.5;
 }

 .about-mission {
   background: var(--off-white);
   border-left: 3px solid var(--gold);
   padding: 20px 24px;
   border-radius: 0 4px 4px 0;
   margin-top: 8px;
 }

 .about-mission p {
   font-size: 0.92rem;
   color: var(--navy);
   line-height: 1.75;
   font-style: italic;
 }

 .about-mission cite {
   display: block;
   margin-top: 8px;
   font-size: 0.78rem;
   color: var(--gold);
   font-style: normal;
   font-weight: 600;
   letter-spacing: 1px;
   text-transform: uppercase;
 }

 /* ── BOOKING SIDEBAR DRAWER ── */
 .sidebar-overlay {
   position: fixed;
   inset: 0;
   background: rgba(0, 0, 0, 0.5);
   z-index: 1100;
   opacity: 0;
   pointer-events: none;
   transition: opacity .35s;
   backdrop-filter: blur(3px);
 }

 .sidebar-overlay.active {
   opacity: 1;
   pointer-events: all;
 }

 .sidebar-drawer {
   position: fixed;
   top: 0;
   right: -440px;
   width: 420px;
   height: 100vh;
   background: var(--white);
   z-index: 1101;
   box-shadow: -8px 0 40px rgba(0, 0, 0, 0.2);
   transition: right .4s cubic-bezier(.22, .61, .36, 1);
   display: flex;
   flex-direction: column;
   overflow: hidden;
 }

 .sidebar-drawer.open {
   right: 0;
 }

 .sidebar-head {
   background: var(--navy);
   padding: 28px 28px 24px;
   display: flex;
   align-items: flex-start;
   justify-content: space-between;
   flex-shrink: 0;
 }

 .sidebar-head-text {}

 .sidebar-head-label {
   font-size: 0.65rem;
   letter-spacing: 2.5px;
   text-transform: uppercase;
   color: var(--gold);
   font-weight: 600;
   margin-bottom: 4px;
 }

 .sidebar-head-title {
   font-family: 'Cormorant Garamond', serif;
   font-size: 1.6rem;
   color: var(--white);
   font-weight: 600;
   line-height: 1.2;
 }

 .sidebar-close {
   width: 36px;
   height: 36px;
   border-radius: 50%;
   background: rgba(255, 255, 255, 0.1);
   border: none;
   color: var(--white);
   font-size: 1.2rem;
   cursor: pointer;
   display: flex;
   align-items: center;
   justify-content: center;
   transition: background .2s;
   flex-shrink: 0;
   margin-top: 2px;
 }

 .sidebar-close:hover {
   background: rgba(255, 255, 255, 0.2);
 }

 .sidebar-services-strip {
   background: var(--gold-pale);
   border-bottom: 1px solid var(--border);
   padding: 14px 28px;
   flex-shrink: 0;
 }

 .sidebar-services-strip p {
   font-size: 0.72rem;
   letter-spacing: 1.5px;
   text-transform: uppercase;
   color: var(--navy);
   font-weight: 700;
   margin-bottom: 10px;
 }

 .services-chips {
   display: flex;
   flex-wrap: wrap;
   gap: 6px;
 }

 .service-chip {
   background: var(--white);
   border: 1.5px solid var(--border);
   border-radius: 100px;
   padding: 5px 12px;
   font-size: 0.72rem;
   font-weight: 600;
   color: var(--navy);
   cursor: pointer;
   transition: all .2s;
   white-space: nowrap;
 }

 .service-chip:hover,
 .service-chip.selected {
   background: var(--navy);
   border-color: var(--navy);
   color: var(--white);
 }

 .sidebar-body {
   padding: 24px 28px 28px;
   overflow-y: auto;
   flex: 1;
 }

 .sb-group {
   margin-bottom: 16px;
 }

 .sb-group label {
   display: block;
   font-size: 0.72rem;
   letter-spacing: 1px;
   text-transform: uppercase;
   font-weight: 700;
   color: var(--navy);
   margin-bottom: 6px;
 }

 .sb-group input,
 .sb-group textarea,
 .sb-group select {
   width: 100%;
   padding: 12px 14px;
   border: 1.5px solid var(--border);
   border-radius: 3px;
   font-family: 'DM Sans', sans-serif;
   font-size: 0.9rem;
   color: var(--text);
   background: var(--white);
   outline: none;
   transition: border-color .2s;
 }

 .sb-group input:focus,
 .sb-group textarea:focus,
 .sb-group select:focus {
   border-color: var(--gold);
 }

 .sb-group textarea {
   resize: none;
   height: 80px;
 }

 .sb-submit {
   width: 100%;
   background: var(--gold);
   color: var(--navy);
   border: none;
   padding: 15px;
   border-radius: 3px;
   font-size: 0.85rem;
   font-weight: 700;
   letter-spacing: 1.5px;
   text-transform: uppercase;
   cursor: pointer;
   font-family: 'DM Sans', sans-serif;
   transition: all .2s;
   margin-top: 8px;
 }

 .sb-submit:hover {
   background: var(--gold-light);
 }

 .sb-success {
   display: none;
   background: #d1fae5;
   border: 1px solid #6ee7b7;
   border-radius: 3px;
   padding: 14px 16px;
   color: #065f46;
   font-size: 0.88rem;
   margin-top: 12px;
   text-align: center;
 }

 .sb-note {
   font-size: 0.75rem;
   color: var(--text-muted);
   text-align: center;
   margin-top: 10px;
 }


 .contact-map {
   width: 100%;
   height: 100%;
 }

 /* ── SCROLL ANIMATIONS ── */
 .fade-in {
   opacity: 0;
   transform: translateY(30px);
   transition: opacity .6s ease, transform .6s ease;
 }

 .fade-in.visible {
   opacity: 1;
   transform: translateY(0);
 }



 .sb-success {
      display: none;
      background: #e8f8f3;
      border: 1.5px solid #a3dfc9;
      border-radius: 8px;
      padding: 14px 16px;
      font-size: .88rem;
      color: var(--success);
      font-weight: 500;
      text-align: center;
      animation: fadeUp .4s ease both;
    }
    .sb-success.show { display:block; }
    @keyframes fadeUp {
      from{opacity:0;transform:translateY(8px);}
      to{opacity:1;transform:translateY(0);}
    }
 
    /* error banner */
    .sb-error-banner {
      display:none;
      background:#fdf0ef;
      border:1.5px solid #f5b7b1;
      border-radius:8px;
      padding:12px 16px;
      font-size:.85rem;
      color:var(--error);
      font-weight:500;
      text-align:center;
    }
    .sb-error-banner.show { display:block; }

    .social-media{
      margin-top: 10px;
    }
    .social-media li{
      list-style: none;
    }
    .social-media li a{
      text-decoration: none;
    }

    .social-media li a img{
      width: 30px;
    }

    .foot-contact{
      margin: 15px 0;
    }

    .foot-contact li{
      list-style: none;
      color: #fff;
    }

    .foot-contact li a{
      text-decoration: none;
      color: rgba(255, 255, 255, 0.5);
      font-size: 0.87rem;
    line-height: 1.75;
    }
 @media (max-width: 1052px) {
   .physio-visual {
     flex-direction: column;
     text-align: center;
     padding: 40px 30px;
   }

   .new-title-physo {
     width: 100%;
     padding-left: 0;
     margin-bottom: 20px
   }

 }



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

   nav {
     padding: 0 4%;
   }

   .nav-links {
     display: none;
   }

   .hamburger {
     display: flex;
   }

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

   .hero-image-wrap {
     display: none;
   }

   .hero-stats {
     justify-content: center;
     gap: 28px;
   }

   .about-grid,
   .physio-grid,
   .faq-grid,
   .contact-grid {
     grid-template-columns: 1fr;
   }

   .about-accent-badge {
     bottom: -15px;
     right: 10px;
   }

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

   .footer-top {
     grid-template-columns: 1fr 1fr;
     gap: 30px;
   }

   .form-row {
     grid-template-columns: 1fr;
   }

   .physio-list {
     grid-template-columns: 1fr;
   }

   .nav-cta {
     display: none;
   }
 }

 @media (max-width: 560px) {
   .sidebar-drawer {
     width: 100%;
     right: -100%;
   }

   .sidebar-drawer.open {
     right: 0;
   }

   section {
     padding: 70px 5%;
   }

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

   .footer-top {
     grid-template-columns: 1fr;
   }

   .hero-stats {
     flex-wrap: wrap;
     justify-content: center;
     gap: 24px 40px;
   }
 }