/* ===== Reset & root ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
  height: 100%;
}

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial, "Noto Sans", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  color: var(--slate-900);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-feature-settings: "kern" 1;
  overflow-x: hidden;
  width: 100%;
  position: relative;
  min-height: 100%;
}

img {
  max-width: 100%;
  display: block;
  height: auto;
}

:root{
  /* Primary gold palette */
  --blue-900: #1e293b;
  --blue-800: #334155;
  --blue-700: #F7941D;  /* primary - gold */
  --blue-600: #64748b;
  --blue-500: #94a3b8;  /* accent */
  --blue-100: #f8fafc;  /* light bg */

  /* Enhanced neutral palette */
  --slate-900: #0f172a;
  --slate-800: #1e293b;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-500: #64748b;
  --slate-400: #94a3b8;
  --slate-300: #cbd5e1;
  --slate-200: #e2e8f0;
  --slate-100: #f1f5f9;
  --slate-50: #f8fafc;
  --white: #ffffff;

  /* Professional spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 5rem;

  /* Enhanced border radius */
  --radius-sm: 6px;
  --radius: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-2xl: 24px;
  --radius-full: 9999px;

  /* Professional shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
  --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);

  /* Typography scale */
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  --text-4xl: 2.25rem;
  --text-5xl: 3rem;
  --text-6xl: 3.75rem;

  /* Professional gradients */
  --gradient-gold: linear-gradient(135deg, #f7d794 0%, #d4a574 50%, #c19a5b 100%);
  --gradient-subtle: linear-gradient(135deg, var(--slate-50) 0%, var(--white) 100%);
  --gradient-hero: linear-gradient(135deg, var(--slate-50) 0%, var(--white) 50%, var(--blue-100) 100%);
}

/* ===== Professional Components ===== */

/* Containers */
.container{
  width: min(1200px, 90vw);
  margin-inline: auto;
  padding-inline: var(--space-md);
}

.container-wide{
  width: min(1400px, 92vw);
  margin-inline: auto;
  padding-inline: var(--space-md);
}

/* Visually hidden */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

/* Skip link */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  padding: var(--space-md) var(--space-lg);
  background: var(--blue-700);
  color: var(--white);
  border-radius: var(--radius);
  z-index: 9999;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
}
.skip-link:focus {
  left: var(--space-md);
  top: var(--space-md);
  box-shadow: var(--shadow-lg);
}

/* ===== Header / Nav ===== */
.site-header{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 999;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--slate-200);
  box-shadow: 0 1px 3px rgba(2,12,36,0.03);
  transition: all 0.3s ease;
  will-change: box-shadow, background;
}

.header-content{
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: var(--space-md);
  padding: 1rem 4rem;
  min-height: 80px;
}

.logo{
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  transition: transform 0.2s ease;
}

.logo:hover{
  transform: translateY(-1px);
}

.logo-img{
  width: 150px;
  height: 150px;
  border-radius: var(--radius-full);
  object-fit: cover;
  box-shadow: var(--shadow-md);
  border: 2px solid var(--white);
}

.logo-text{
  color: var(--blue-700);
  font-weight: 800;
  font-size: var(--text-xl);
  letter-spacing: -0.025em;
  line-height: 1.2;
}

/* Enhanced Navigation */
.primary-nav{
  justify-self: end;
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  flex-wrap: wrap;
}

.primary-nav a{
  text-decoration: none;
  color: var(--slate-700);
  padding: var(--space-sm) var(--space-lg);
  border-radius: var(--radius-lg);
  font-weight: 600;
  font-size: var(--text-sm);
  position: relative;
  transition: all 0.2s ease;
  letter-spacing: -0.01em;
}

.primary-nav a:hover{
  background: var(--blue-100);
  color: var(--blue-700);
  transform: translateY(-1px);
}

.primary-nav a.active{
  background: var(--blue-700);
  color: var(--white);
  box-shadow: var(--shadow-md);
}

/* Mobile nav toggle */
.nav-toggle{
  display: none;
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: var(--space-sm);
  margin-left: auto;
  border-radius: var(--radius);
  transition: all 0.2s ease;
}

.nav-toggle:hover{
  background: var(--slate-100);
}

.nav-toggle-bar{
  display: block;
  width: 26px;
  height: 3px;
  background: var(--slate-900);
  margin: 4px 0;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1){
  transform: rotate(45deg) translateY(10px);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2){
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3){
  transform: rotate(-45deg) translateY(-10px);
}

/* ===== Enhanced Hero Section ===== */
.hero{
  margin-top: 80px;
  padding: clamp(4rem, 8vw, 8rem) 0 clamp(3rem, 6vw, 6rem);
  background: var(--gradient-hero);
  position: relative;
  overflow: hidden;
}

.hero::before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 20%, rgba(212, 165, 116, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.hero-content{
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-text{
  animation: fadeInUp 0.8s ease-out;
}

.hero-text h1{
  margin: 0 0 var(--space-lg);
  font-size: clamp(2.5rem, 5vw, 2rem);
  line-height: 1.1;
  color: var(--slate-900);
  font-weight: 800;
  letter-spacing: -0.025em;
  background: linear-gradient(135deg, var(--slate-900) 0%, var(--blue-700) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-text p{
  color: var(--slate-600);
  font-size: var(--text-xl);
  margin: 0 0 var(--space-2xl);
  line-height: 1.6;
  max-width: 540px;
}

.hero-buttons{
  display: flex;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
  flex-wrap: wrap;
}

.hero-bullets{
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--slate-600);
  font-size: var(--text-base);
}

.hero-bullets li{
  margin: var(--space-sm) 0;
  padding-left: var(--space-xl);
  position: relative;
}

.hero-bullets li::before{
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--blue-700);
  font-weight: 900;
  font-size: var(--text-lg);
}

.hero-image{
  position: relative;
  animation: fadeInRight 0.8s ease-out 0.2s both;
}

.hero-image::before{
  content: '';
  position: absolute;
  top: -10px;
  left: -10px;
  right: 10px;
  bottom: 10px;
  background: var(--gradient-gold);
  border-radius: var(--radius-2xl);
  opacity: 0.1;
  z-index: -1;
}

.hero-image img{
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-2xl);
  aspect-ratio: 4 / 3;
  object-fit: cover;
  width: 100%;
  transition: transform 0.3s ease;
}

.hero-image:hover img{
  transform: scale(1.02);
}

/* Professional Button System */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-lg);
  padding: var(--space-md) var(--space-2xl);
  transition: all 0.2s ease;
  border: 2px solid transparent;
  font-size: var(--text-base);
  line-height: 1.5;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  min-height: 48px;
}

.btn:hover{
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn:active{
  transform: translateY(0);
}

.btn-primary{
  background: var(--blue-700);
  color: var(--white);
  box-shadow: var(--shadow-md);
  position: relative;
}

.btn-primary::before{
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.5s ease;
}

.btn-primary:hover{
  background: var(--blue-800);
  box-shadow: var(--shadow-xl);
}

.btn-primary:hover::before{
  left: 100%;
}

.btn-outline{
  background: var(--white);
  color: var(--blue-700);
  border-color: var(--blue-700);
  box-shadow: var(--shadow-sm);
}

.btn-outline:hover{
  background: var(--blue-700);
  color: var(--white);
  border-color: var(--blue-700);
}

/* ===== Professional Section Headers ===== */
.section-header{
  text-align: center;
  margin-bottom: clamp(3rem, 5vw, 4rem);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.section-header h2{
  margin: 0 0 var(--space-md);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--slate-900);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.2;
  position: relative;
}

.section-header h2::after{
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: var(--blue-700);
  border-radius: var(--radius-full);
}

.section-header p{
  color: var(--slate-600);
  margin: 0;
  padding-top: var(--space-lg);
  font-size: var(--text-lg);
  line-height: 1.6;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== Enhanced About Section ===== */
.about{
  padding: clamp(2rem, 4vw, 3rem) 0 clamp(4rem, 8vw, 8rem);
  background: var(--white);
  position: relative;
}

.about-content{
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.about-text{
  animation: fadeInLeft 0.8s ease-out;
}

.about-text p{
  margin: 0 0 var(--space-lg);
  font-size: var(--text-lg);
  line-height: 1.7;
  color: var(--slate-600);
}

.about-text p:last-of-type{
  margin-bottom: var(--space-2xl);
}

.checks{
  margin: 0;
  padding: 0;
  list-style: none;
}

.checks li{
  padding: var(--space-md) 0 var(--space-md) var(--space-2xl);
  position: relative;
  margin: 0;
  font-size: var(--text-lg);
  color: var(--slate-600);
  border-bottom: 1px solid var(--slate-100);
}

.checks li:last-child{
  border-bottom: none;
}

.checks li::before{
  content: "✓";
  position: absolute;
  left: 0;
  top: var(--space-md);
  color: var(--blue-700);
  font-weight: 900;
  font-size: var(--text-xl);
  width: 24px;
  height: 24px;
  background: var(--blue-100);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-sm);
}

.about-image{
  position: relative;
  animation: fadeInRight 0.8s ease-out 0.2s both;
}

.about-image::before{
  content: '';
  position: absolute;
  top: 20px;
  left: 20px;
  right: -20px;
  bottom: -20px;
  background: var(--slate-100);
  border-radius: var(--radius-2xl);
  z-index: -1;
}

.about-image img{
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-2xl);
  object-fit: cover;
  aspect-ratio: 4 / 3;
  width: 100%;
  transition: transform 0.3s ease;
}

.about-image:hover img{
  transform: scale(1.02);
}

/* ===== Professional Services Section ===== */
.services{
  padding: clamp(2rem, 4vw, 3rem) 0 clamp(4rem, 8vw, 8rem);
  background: var(--slate-50);
  position: relative;
}

.services::before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 70% 80%, rgba(212, 165, 116, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.services-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--space-xl);
  position: relative;
  z-index: 1;
}

.service-card{
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid var(--slate-200);
  display: flex;
  flex-direction: column;
  position: relative;
}

.service-card::before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--blue-700);
  transform: scaleX(0);
  transition: transform 0.3s ease;
  transform-origin: left;
}

.service-card:hover{
  transform: translateY(-8px);
  box-shadow: var(--shadow-2xl);
  border-color: var(--blue-200);
}

.service-card:hover::before{
  transform: scaleX(1);
}

.service-card img{
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.service-image {
  object-position: 10%;
}

.image-card-sports {
  object-position: top;
}

.neurological-rehabilitation {
  object-position: top;
}

.image-orthopedics {
  object-position: bottom;
}

.service-card:hover img{
  transform: scale(1.05);
}

.service-card h3{
  margin: var(--space-xl) var(--space-xl) var(--space-sm);
  color: var(--slate-900);
  font-size: var(--text-xl);
  font-weight: 700;
  line-height: 1.3;
}

.service-card p{
  margin: 0 var(--space-xl) var(--space-xl);
  color: var(--slate-600);
  line-height: 1.6;
  flex-grow: 1;
}

.service-image-placeholder {
  width: 100%;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--slate-100) 0%, var(--slate-200) 100%);
  color: var(--slate-500);
  font-weight: 600;
  font-size: var(--text-base);
  border-radius: 0;
  border: 2px dashed var(--slate-300);
  text-align: center;
  transition: all 0.3s ease;
}

.service-card:hover .service-image-placeholder{
  background: linear-gradient(135deg, var(--blue-100) 0%, var(--blue-200) 100%);
  color: var(--blue-700);
  border-color: var(--blue-300);
}

/* ===== Enhanced Physiotherapist Section ===== */
.physiotherapist{
  padding: clamp(2rem, 4vw, 3rem) 0 clamp(4rem, 8vw, 8rem);
  background: var(--white);
  position: relative;
}

.physiotherapist-content{
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
  padding: 0;
}

.physiotherapist-image{
  position: relative;
  text-align: center;
}

.physiotherapist-image::before{
  content: '';
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 320px;
  height: 320px;
  background: var(--gradient-gold);
  border-radius: var(--radius-full);
  opacity: 0.1;
  z-index: -1;
}

.physiotherapist-image img{
  aspect-ratio: 1 / 1;
  object-fit: cover;
  width: 280px;
  height: 280px;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-2xl);
  margin: 0 auto;
  border: 6px solid var(--white);
  transition: transform 0.3s ease;
}

.physiotherapist-image:hover img{
  transform: scale(1.05);
}

.physiotherapist-info h3{
  margin: 0 0 var(--space-sm);
  font-size: var(--text-3xl);
  color: var(--slate-900);
  font-weight: 800;
  letter-spacing: -0.025em;
}

.practice-number{
  color: var(--blue-700);
  font-weight: 700;
  margin: 0 0 var(--space-xl);
  font-size: var(--text-base);
  padding: var(--space-sm) var(--space-lg);
  background: var(--blue-100);
  border-radius: var(--radius-lg);
  display: inline-block;
}

.physiotherapist-info p{
  margin: 0 0 var(--space-lg);
  color: var(--slate-600);
  line-height: 1.7;
  font-size: var(--text-lg);
}

.physiotherapist-info p:last-child{
  margin-bottom: 0;
}

/* ===== Enhanced Conditions Section ===== */
.conditions{
  padding: clamp(2rem, 4vw, 3rem) 0 clamp(4rem, 8vw, 8rem);
  background: var(--slate-50);
  position: relative;
}

.conditions::before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 20%, rgba(212, 165, 116, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.conditions-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-xl);
  position: relative;
  z-index: 1;
}

.condition-category{
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  padding: var(--space-2xl);
  transition: all 0.3s ease;
  border: 1px solid var(--slate-200);
  position: relative;
  overflow: hidden;
}

.condition-category::before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--blue-700);
  transform: scaleX(0);
  transition: transform 0.3s ease;
  transform-origin: left;
}

.condition-category:hover{
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: var(--blue-200);
}

.condition-category:hover::before{
  transform: scaleX(1);
}

.condition-category h3{
  margin: 0 0 var(--space-lg);
  padding-bottom: var(--space-md);
  border-bottom: 2px solid var(--blue-100);
  color: var(--slate-900);
  font-size: var(--text-xl);
  font-weight: 700;
  letter-spacing: -0.025em;
}

.condition-category ul{
  list-style: none;
  padding: 0;
  margin: 0;
}

.condition-category li{
  padding: var(--space-md) 0 var(--space-md) var(--space-2xl);
  border-bottom: 1px solid var(--slate-100);
  color: var(--slate-600);
  position: relative;
  transition: all 0.2s ease;
  font-size: var(--text-base);
  line-height: 1.5;
}

.condition-category li:last-child{
  border-bottom: 0;
}

.condition-category li:hover{
  color: var(--slate-900);
  padding-left: var(--space-3xl);
}

.condition-category li::before{
  content: "✓";
  position: absolute;
  left: 0;
  top: var(--space-md);
  color: var(--blue-700);
  font-weight: 900;
  width: 20px;
  height: 20px;
  background: var(--blue-100);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-xs);
  transition: all 0.2s ease;
}

.condition-category li:hover::before{
  background: var(--blue-700);
  color: var(--white);
  transform: scale(1.1);
}

/* ===== Enhanced Contact Section ===== */
.contact{
  padding: clamp(2rem, 4vw, 3rem) 0 clamp(4rem, 8vw, 8rem);
  background: var(--white);
  position: relative;
}

.contact-content{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.contact-info{
  display: grid;
  gap: var(--space-xl);
}

.contact-item{
  padding: var(--space-xl);
  background: var(--slate-50);
  border-radius: var(--radius-xl);
  border: 1px solid var(--slate-200);
  transition: all 0.3s ease;
}

.contact-item:hover{
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  border-color: var(--blue-200);
}

.contact-item h3{
  margin: 0 0 var(--space-sm);
  color: var(--slate-900);
  font-size: var(--text-lg);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.contact-item h3::before{
  content: '';
  width: 6px;
  height: 6px;
  background: var(--blue-700);
  border-radius: var(--radius-full);
}

.contact-item p{
  margin: 0 0 var(--space-xs);
  color: var(--slate-600);
  font-size: var(--text-base);
  line-height: 1.6;
}

.contact-item a{
  color: var(--blue-700);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.2s ease;
}

.contact-item a:hover{
  color: var(--blue-800);
  text-decoration: underline;
}

.contact-cta{
  margin-top: var(--space-xl);
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.contact-image{
  position: relative;
}

.contact-image::before{
  content: '';
  position: absolute;
  top: 20px;
  left: 20px;
  right: -20px;
  bottom: -20px;
  background: var(--slate-100);
  border-radius: var(--radius-2xl);
  z-index: -1;
}

.contact-image img{
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-2xl);
  aspect-ratio: 4 / 3;
  object-fit: cover;
  width: 100%;
  transition: transform 0.3s ease;
}

.contact-image:hover img{
  transform: scale(1.02);
}

/* ===== Enhanced Footer ===== */
.site-footer{
  background: linear-gradient(135deg, var(--slate-900) 0%, var(--slate-800) 100%);
  color: var(--white);
  padding: var(--space-2xl) 0;
  position: relative;
  overflow: hidden;
}

.site-footer::before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 80%, rgba(212, 165, 116, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.footer-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.footer-inner p{
  margin: 0;
  color: var(--slate-300);
  font-size: var(--text-sm);
}

.back-to-top{
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  background: var(--blue-700);
  color: var(--white);
  text-decoration: none;
  font-weight: 900;
  font-size: var(--text-lg);
  transition: all 0.3s ease;
  box-shadow: var(--shadow-lg);
}

.back-to-top:hover{
  background: var(--blue-600);
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl);
}

/* ===== Professional Animations ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Reveal on scroll animation (sections) */
section{
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

section.is-visible{
  opacity: 1;
  transform: translateY(0);
}

/* ===== Enhanced Card System ===== */
.card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
}

.card--soft {
  background: var(--gradient-subtle);
  border: 1px solid var(--slate-100);
}

.card:hover{
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.about-text.card,
.physiotherapist-info.card,
.contact-info.card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  box-shadow: var(--shadow-md);
}

.conditions-grid.card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  box-shadow: var(--shadow-md);
}

/* ===== Professional Responsive Design ===== */

/* Large tablets and small laptops */
@media (max-width: 1024px){
  .hero-content{
    grid-template-columns: 1fr;
    gap: var(--space-3xl);
    text-align: center;
  }

  .about-content{
    grid-template-columns: 1fr;
    gap: var(--space-3xl);
  }

  .physiotherapist-content{
    grid-template-columns: 1fr;
    gap: var(--space-3xl);
    text-align: center;
  }

  .contact-content{
    grid-template-columns: 1fr;
    gap: var(--space-3xl);
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .conditions-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile navigation */
@media (max-width: 860px){
  .site-header {
    position: fixed;
    width: 100%;
    left: 0;
    right: 0;
  }

  .header-content{
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .nav-toggle{
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 1001;
    order: 2;
  }

  .logo{
    order: 1;
  }

  .primary-nav{
    order: 3;
    grid-column: 1 / -1;
    position: absolute;
    inset: 100% 0 auto 0;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
    background: var(--white);
    padding: var(--space-md) var(--space-lg) var(--space-xl);
    margin-bottom: var(--space-md);
    border-bottom: 1px solid var(--slate-200);
    box-shadow: var(--shadow-xl);
    border-radius: 0 0 var(--radius-2xl) var(--radius-2xl);
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    z-index: 1000;
    opacity: 0;
    transform: translateY(-12px);
    visibility: hidden;
    pointer-events: none;
    transition: all 0.3s ease;
  }

  .primary-nav.is-open{
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
    pointer-events: auto;
  }

  .primary-nav a{
    display: block;
    width: 100%;
    padding: var(--space-md) var(--space-2xl);
    border-radius: var(--radius-lg);
    text-align: center;
    font-size: var(--text-lg);
    font-weight: 600;
  }
}

/* Tablets */
@media (max-width: 768px) {
  .container{
    width: min(1200px, 95vw);
    padding-inline: var(--space-md);
  }

  .header-content{
    padding: 1rem var(--space-md);
  }

  .logo img {
    max-width: 130px;
  }

  .about,
  .services,
  .physiotherapist,
  .conditions,
  .contact {
    padding: clamp(3rem, 5vw, 5rem) 0;
    scroll-margin-top: 80px;
  }

  .hero{
    padding: clamp(3rem, 6vw, 5rem) 0;
  }

  .hero-text h1{
    font-size: clamp(1rem, 2vw, 2rem);
  }

  .hero-buttons{
    justify-content: center;
  }

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

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

  .conditions-grid.card {
    padding: var(--space-lg);
  }

  .condition-category {
    padding: var(--space-lg);
  }

  .about-image::before,
  .contact-image::before {
    right: -10px;
    bottom: -10px;
  }

  .physiotherapist-image img{
    width: 240px;
    height: 240px;
  }

  .physiotherapist-image::before{
    width: 280px;
    height: 280px;
  }

  .section-header h2{
    font-size: clamp(1.75rem, 5vw, 2.5rem);
  }
}

/* Mobile phones */
@media (max-width: 480px){
  .container{
    width: min(1200px, 100vw);
    padding-inline: var(--space-md);
  }

  .conditions .container,
  .contact .container {
    padding-inline: 0;
  }

  .section-header {
    padding-inline: var(--space-md);
  }

  .conditions .section-header,
  .contact .section-header {
    padding-inline: var(--space-md);
  }

  .header-content{
    padding: 0.75rem var(--space-sm);
  }

  .logo img {
    max-width: 110px;
  }

  .logo-text{
    font-size: var(--text-lg);
  }

  .about,
  .services,
  .physiotherapist,
  .conditions,
  .contact {
    padding: clamp(2.5rem, 4vw, 4rem) 0;
    scroll-margin-top: 70px;
  }

  .conditions-grid.card {
    padding: var(--space-md);
    margin-inline: 0;
    border-radius: 0;
    border-left: 0;
    border-right: 0;
  }

  .contact-info.card {
    padding: var(--space-md);
    margin-inline: 0;
    border-radius: 0;
    border-left: 0;
    border-right: 0;
    width: 100%;
    max-width: 100vw;
  }

  .contact-content {
    gap: var(--space-xl);
    width: 100%;
    max-width: 100vw;
  }

  .contact-image {
    padding-inline: var(--space-md);
    text-align: center;
    width: 100%;
    max-width: 100vw;
    overflow: hidden;
    margin: 0;
  }

  .contact-image::before {
    left: var(--space-md);
    right: var(--space-md);
    top: 10px;
    bottom: -10px;
  }

  .contact-image img {
    margin-inline: auto;
    max-width: 100%;
    width: 100%;
  }

  .contact-item {
    padding: var(--space-lg) var(--space-md);
    word-break: break-word;
  }

  .contact-cta {
    flex-direction: column;
    gap: var(--space-sm);
  }

  .contact-cta .btn {
    width: 100%;
  }

  .condition-category {
    padding: var(--space-lg) var(--space-md);
  }

  .condition-category h3 {
    font-size: var(--text-lg);
  }

  .about-image::before,
  .contact-image::before {
    right: 0;
    bottom: 0;
    top: 10px;
    left: 10px;
  }

  .hero{
    padding: var(--space-4xl) 0 var(--space-3xl);
  }

  .hero-text h1{
    font-size: clamp(1.75rem, 8vw, 2.5rem);
  }

  .hero-text p{
    font-size: var(--text-lg);
  }

  .btn{
    padding: var(--space-md) var(--space-xl);
    font-size: var(--text-sm);
  }

  .hero-buttons{
    flex-direction: column;
    align-items: center;
  }

  .hero-buttons .btn{
    width: 100%;
    max-width: 280px;
  }

  .service-card img,
  .contact-image img {
    aspect-ratio: 16/10;
  }

  .service-image-placeholder{
    height: 180px;
  }

  .physiotherapist-image img{
    width: 200px;
    height: 200px;
  }

  .physiotherapist-image::before{
    width: 240px;
    height: 240px;
  }

  .contact-image {
    padding-inline: var(--space-lg);
    margin: 0;
  }

  .contact-image::before {
    display: none;
  }

  .contact-image img {
    width: 100%;
    max-width: 100%;
  }

  .section-header{
    margin-bottom: var(--space-2xl);
  }

  .footer-inner{
    flex-direction: column;
    text-align: center;
    gap: var(--space-md);
  }
}

/* ===== Focus States for Accessibility ===== */
*:focus-visible {
  outline: 2px solid var(--blue-700);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}

.btn:focus-visible {
  outline-offset: 4px;
}

/* ===== Print Styles ===== */
@media print {
  .site-header,
  .back-to-top,
  .nav-toggle {
    display: none;
  }

  .hero,
  .about,
  .services,
  .physiotherapist,
  .conditions,
  .contact {
    padding: 2rem 0;
    background: white !important;
  }

  .hero-content,
  .about-content,
  .physiotherapist-content,
  .contact-content {
    grid-template-columns: 1fr;
  }
}
