/* =========================
   Trusted Care — Global One Inspired Theme
   Professional healthcare aesthetic
   ========================= */

:root{
  /* Updated color palette to match Global One */
  --bg:#f8f9fa;
  --surface:#ffffff;
  --surface2:#f0f7ff;
  --text:#1a202c;
  --muted:#4a5568;
  --line:rgba(0,0,0,.08);

  /* Professional blue palette */
  --primary:#0066cc;
  --primary-light:#3b82f6;
  --accent:#059669;
  --accent-warm:#f59e0b;

  --shadow:0 4px 20px rgba(0,0,0,.08);
  --shadow-lg:0 10px 40px rgba(0,0,0,.12);
  --radius:12px;
  --max:1200px;
  
  /* Typography */
  --font-heading: 'Segoe UI', system-ui, -apple-system, sans-serif;
  --font-body: 'Segoe UI', system-ui, -apple-system, sans-serif;
}

*{box-sizing:border-box; margin:0; padding:0}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: var(--font-body);
  background: var(--bg);
  color:var(--text);
  line-height:1.65;
  font-size:16px;
}
a{color:inherit; text-decoration:none; transition: all 0.2s ease}
.container{max-width:var(--max); margin:0 auto; padding:0 24px}

/* ============ Top bar ============ */
.topbar{
  border-bottom:1px solid var(--line);
  background: var(--surface);
  font-size:14px;
}
.topbar-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  padding:12px 0;
  font-size:14px;
}
.top-cta{
  font-weight:600;
  color:var(--primary);
  transition: color 0.2s ease;
}
.top-cta:hover{color:var(--primary-light)}
.top-phone{
  color:var(--muted);
  font-weight:500;
}
.top-phone strong{
  font-weight:700;
  color:var(--text);
  margin-left:4px;
}

/* ============ Shared UI ============ */
.pill{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 16px;
  border:1px solid var(--line);
  border-radius:8px;
  background: var(--surface);
  margin:6px 0;
  font-size:15px;
}
.muted{color:var(--muted)}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 24px;
  border-radius:8px;
  border:2px solid transparent;
  background: var(--surface);
  color:var(--text);
  font-weight:600;
  font-size:15px;
  cursor:pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(0,0,0,.06);
}
.btn:hover{
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0,0,0,.1);
}
.btn:active{transform: translateY(0)}
.btn.primary{
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
.btn.primary:hover{
  background: var(--primary-light);
  border-color: var(--primary-light);
}

.grid{display:grid; gap:24px}
.card{
  background: var(--surface);
  border:1px solid var(--line);
  border-radius: var(--radius);
  padding:32px;
  box-shadow: var(--shadow);
}

section{padding:80px 0}
.section-title{
  font-family: var(--font-heading);
  font-size:42px;
  font-weight:700;
  margin:0 0 16px;
  color:var(--text);
  line-height:1.2;
}
.section-sub{
  color:var(--muted);
  font-size:18px;
  margin:0 0 32px;
  max-width:70ch;
}
.section-title-sm{
  font-size:24px;
  margin:0 0 16px;
  font-weight:700;
  color:var(--text);
}
.card-title{
  font-size:22px;
  margin:0 0 12px;
  font-weight:700;
}
.meta{
  color:var(--muted);
  font-size:16px;
  line-height:1.7;
  margin:0;
}

ul.clean{
  margin:16px 0;
  padding-left:0;
  list-style:none;
}
ul.clean li{
  margin:12px 0;
  padding-left:28px;
  position:relative;
  color:var(--text);
  line-height:1.7;
}
ul.clean li::before{
  content:"✓";
  position:absolute;
  left:0;
  color:var(--accent);
  font-weight:700;
  font-size:18px;
}

/* ============ Header / Nav ============ */
header{
  position:sticky;
  top:0;
  z-index:100;
  border-bottom:1px solid var(--line);
  background: rgba(255,255,255,.98);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 8px rgba(0,0,0,.04);
}
.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:20px 0;
  gap:24px;
}
.brand{
  display:flex;
  align-items:center;
  gap:14px;
  min-width:280px;
  transition: opacity 0.2s ease;
}
.brand:hover{opacity:0.85}
.brand-text{display:flex; flex-direction:column; gap:2px}
.brand-name{
  font-weight:700;
  font-size:20px;
  line-height:1.1;
  color:var(--text);
}
.brand-sub{
  color:var(--muted);
  font-size:13px;
  font-weight:500;
}

.logo-img{
  width:60px;
  height:60px;
  object-fit:contain;
  border-radius:10px;
  background: var(--surface);
  border:1px solid var(--line);
  box-shadow: var(--shadow);
}

.links{
  display:flex;
  align-items:center;
  gap:32px;
  flex:1;
  justify-content:center;
}
.links a{
  color:var(--text);
  font-size:15px;
  font-weight:600;
  position:relative;
  padding:8px 0;
}
.links a:hover{color:var(--primary)}
.links a::after{
  content:'';
  position:absolute;
  bottom:0;
  left:0;
  width:0;
  height:2px;
  background:var(--primary);
  transition: width 0.2s ease;
}
.links a:hover::after{width:100%}

.cta-row{display:flex; align-items:center; gap:12px}

/* Dropdown (Services) */
.dropdown{
  position:relative;
}
.dropdown-toggle{
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding: 8px 0;
}
.dropdown-toggle::after{
  content:"▾";
  font-size:11px;
  color:var(--muted);
}
.dropdown-menu{
  position:absolute;
  top: 100%;
  left: -16px;
  min-width: 240px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: var(--shadow-lg);
  padding: 8px;
  display:none;
  z-index: 200;
  margin-top: 0;
}
.dropdown-menu a{
  display:block;
  padding:12px 16px;
  border-radius: 6px;
  color: var(--text);
  font-weight:500;
  font-size:14px;
  transition: background 0.15s ease;
}
.dropdown-menu a:hover{
  background: var(--surface2);
  color:var(--primary);
}
.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu{
  display:block;
}

/* Mobile nav */
.menu-toggle{display:none}
.drawer{
  display:none;
  border-top:1px solid var(--line);
  padding: 16px 0 20px;
  background:var(--surface);
}
.drawer a{
  display:block;
  padding:12px 0;
  color:var(--text);
  font-weight:600;
  border-bottom:1px solid var(--line);
}
.drawer a:hover{color:var(--primary)}

@media (max-width: 960px){
  .links{display:none}
  .menu-toggle{display:inline-flex}
  .logo-img{width:52px;height:52px}
  .brand{min-width:auto}
}

/* ============ Hero ============ */
.hero-full{
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-top:-1px;
}

/* Background image */
.hero-full .hero-bg{
  position: absolute;
  inset: 0;
  background-image: url("wheelchair1.png");
  background-size: cover;
  background-position: center 20%;
  background-repeat: no-repeat;
  filter: brightness(0.85);
}

/* Dark gradient overlay */
.hero-full::before{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(
    to right,
    rgba(0,0,0,.75) 0%,
    rgba(0,0,0,.5) 35%,
    rgba(0,0,0,.3) 60%,
    transparent 85%
  );
  z-index: 1;
}

/* Text container */
.hero-full .hero-overlay{
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 100px 0;
}

.hero-full .hero-copy{
  max-width: 600px;
  margin-left: clamp(40px, 10vw, 140px);
  margin-right: auto;
  padding: 0 24px;
  color: #fff;
}

.hero-full h1{
  font-family: var(--font-heading);
  font-size: 56px;
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 20px;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0,0,0,.3);
}

.hero-full p{
  color: rgba(255,255,255,.95);
  font-size: 19px;
  line-height: 1.7;
  margin: 0 0 32px;
  text-shadow: 0 1px 4px rgba(0,0,0,.2);
}

.hero-full .accent{
  color: #60a5fa;
  font-weight:700;
}

.hero-full .hero-actions{
  margin-bottom:24px;
}

.hero-full .hero-secondary{
  display:inline-block;
  padding:12px 20px;
  background:rgba(255,255,255,.15);
  backdrop-filter: blur(8px);
  border:1px solid rgba(255,255,255,.25);
  border-radius:8px;
  color: #fff;
  font-weight:600;
  font-size:15px;
  transition: all 0.2s ease;
}
.hero-full .hero-secondary:hover{
  background:rgba(255,255,255,.25);
  border-color:rgba(255,255,255,.4);
}

/* Buttons on dark background */
.hero-full .btn{
  font-size:16px;
  padding:14px 28px;
}
.hero-full .btn.primary{
  background: var(--primary);
  border-color: var(--primary);
  box-shadow: 0 4px 16px rgba(0,102,204,.3);
}
.hero-full .btn.primary:hover{
  background: var(--primary-light);
  box-shadow: 0 6px 20px rgba(0,102,204,.4);
}

/* Mobile */
@media (max-width: 900px){
  .hero-full{min-height: 500px}
  .hero-full h1{font-size: 38px}
  .hero-full p{font-size:17px}
  .hero-full::before{
    background: linear-gradient(
      to bottom,
      rgba(0,0,0,.75) 0%,
      rgba(0,0,0,.5) 50%,
      rgba(0,0,0,.3) 80%
    );
  }
}

/* ============ Service Areas ============ */
.areas{
  padding:40px 0;
  background:var(--surface2);
}
.areas .section-title-sm{
  text-align:center;
  margin-bottom:16px;
  font-size:20px;
}
.areas-line{
  margin:0;
  color:var(--muted);
  background: var(--surface);
  border:1px solid var(--line);
  border-radius: var(--radius);
  padding:16px 20px;
  text-align:center;
  font-size:15px;
  line-height:1.7;
}

/* ============ Caregivers strip ============ */
.caregivers-strip{
  padding:24px 0;
  background: var(--surface);
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}
.caregivers-strip-inner{
  display:flex;
  align-items:center;
  justify-content:center;
}
.caregivers-strip-link{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:6px;
  text-align:center;
  padding:12px 24px;
  border-radius:8px;
  transition: background 0.2s ease;
}
.caregivers-strip-link:hover{
  background:var(--surface2);
}
.caregivers-strip-link strong{
  font-size:18px;
  font-weight:700;
  color:var(--primary);
}
.caregivers-strip-link span{
  font-weight:500;
  color:var(--muted);
  font-size:14px;
}

/* ============ Two column utility ============ */
.two-col{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:40px;
  align-items:center;
}
@media (max-width: 900px){
  .two-col{grid-template-columns:1fr; gap:32px}
}

.section-img{
  width:100%;
  height:100%;
  max-height: 500px;
  object-fit:cover;
  border-radius: var(--radius);
  border:1px solid var(--line);
  box-shadow: var(--shadow);
}

/* ============ Mid CTA ============ */
.mid-cta{
  padding:48px 0;
  background: var(--surface2);
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}
.mid-cta-inner{
  display:flex;
  align-items:center;
  justify-content:center;
  flex-direction:column;
  gap:20px;
  text-align:center;
}

/* ============ Services ============ */
#services{
  background:var(--surface);
}
#services .section-title{
  text-align:center;
  margin-bottom:48px;
}
.service-list{
  display:grid;
  gap:24px;
  margin-top: 32px;
}
.service-item{
  display:grid;
  grid-template-columns: 280px 1fr;
  gap:0;
  align-items:stretch;
  background: var(--surface);
  border:1px solid var(--line);
  border-radius: var(--radius);
  overflow:hidden;
  box-shadow: var(--shadow);
  transition: all 0.2s ease;
}
.service-item:hover{
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}
.service-img{
  width:280px;
  height:220px;
  object-fit:cover;
  object-position:center;
  background: var(--surface2);
  flex-shrink:0;
}
.service-content{
  padding:32px;
  display:flex;
  flex-direction:column;
  justify-content:center;
}
.service-content h3{
  margin:0 0 12px;
  font-size:24px;
  font-weight:700;
  color:var(--text);
}
.link{
  display:inline-flex;
  gap:8px;
  align-items:center;
  margin-top: 16px;
  color: var(--primary);
  font-weight:600;
  font-size:15px;
  transition: gap 0.2s ease;
}
.link:hover{gap:12px}
.link span{
  color:var(--primary);
  font-weight:700;
}

.services-cta{
  margin-top:40px;
  display:flex;
  justify-content:center;
}

@media (max-width: 720px){
  .service-item{grid-template-columns: 1fr}
  .service-img{min-height: 220px}
}

/* ============ Testimonials ============ */
.testimonials-block{
  background: var(--surface2);
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}
.testimonials-block .section-title{
  text-align:center;
  margin-bottom:32px;
}
.review-grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:16px;
  margin: 24px 0 32px;
}
.review-img{
  border:2px dashed var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  min-height: 140px;
  display:flex;
  align-items:center;
  justify-content:center;
  color: var(--muted);
  font-size:13px;
  font-weight:600;
  text-align:center;
  padding:16px;
  transition: all 0.2s ease;
}
.review-img:hover{
  border-color:var(--primary);
  border-style:solid;
}
@media (max-width: 980px){
  .review-grid{grid-template-columns: repeat(2, 1fr)}
}
.testimonial-message{
  display:flex;
  align-items:center;
  justify-content:center;
  flex-direction:column;
  gap:20px;
  padding:40px 32px;
  background: var(--surface);
  border:1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align:center;
}
.testimonial-message h3{
  margin:0;
  font-size:26px;
  font-weight:700;
  color:var(--text);
  max-width:600px;
  line-height:1.4;
}

/* ============ Blog ============ */
#blog{background:var(--surface)}
#blog .section-title{text-align:center}
#blog .section-sub{
  text-align:center;
  margin-left:auto;
  margin-right:auto;
}
.posts{grid-template-columns: repeat(3, 1fr)}
@media (max-width: 980px){ .posts{grid-template-columns: repeat(2, 1fr)} }
@media (max-width: 640px){ .posts{grid-template-columns: 1fr} }
.posts .card{
  transition: all 0.2s ease;
  cursor:pointer;
}
.posts .card:hover{
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.date{
  color:var(--primary);
  font-size:13px;
  font-weight:700;
  margin:0 0 12px;
  text-transform:uppercase;
  letter-spacing:0.5px;
}
.posts h3{
  font-size:20px;
  margin:0 0 12px;
  font-weight:700;
  line-height:1.4;
}

/* ============ Contact form ============ */
#contact{
  background: var(--bg);
  padding: 80px 0;
}

.contact-intro{
  text-align: center;
  max-width: 800px;
  margin: 0 auto 48px;
}

.contact-intro .section-title{
  margin-bottom: 16px;
}

.contact-description{
  font-size: 16px;
  line-height: 1.7;
  color: var(--muted);
  margin: 0;
}

.contact-info-card,
.contact-form-card{
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow);
}

.contact-card-title{
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 28px;
  color: var(--text);
}

.contact-item{
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.contact-item:last-of-type{
  border-bottom: none;
  margin-bottom: 32px;
  padding-bottom: 0;
}

.contact-icon{
  font-size: 32px;
  line-height: 1;
  min-width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-label{
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--muted);
  margin-bottom: 4px;
}

.contact-value{
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  transition: color 0.2s ease;
}

a.contact-value:hover{
  color: var(--primary);
}

.contact-hours{
  background: var(--surface2);
  border-radius: 10px;
  padding: 24px;
  margin-top: 24px;
}

.contact-hours h4{
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 12px;
  color: var(--text);
}

.contact-hours p{
  font-size: 14px;
  line-height: 1.8;
  color: var(--muted);
  margin: 8px 0;
}

.emergency-text{
  font-weight: 700;
  color: var(--primary) !important;
  margin-top: 16px !important;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.contact-form{
  display: grid;
  gap: 20px;
}

.form-group{
  display: flex;
  flex-direction: column;
}

.form-group label{
  font-size: 14px;
  color: var(--text);
  font-weight: 600;
  margin-bottom: 8px;
}

.form-group.consent{
  flex-direction: row;
  gap: 12px;
  align-items: flex-start;
}

.form-group.consent input{
  width: auto;
  margin-top: 4px;
  cursor: pointer;
}

.form-group.consent label{
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

.btn-submit{
  width: 100%;
  font-size: 16px;
  padding: 14px 24px;
  margin-top: 8px;
}

.form-privacy{
  font-size: 13px;
  color: var(--muted);
  text-align: center;
  margin: 0;
  line-height: 1.5;
}

form{display:grid; gap:20px}
label{
  font-size:14px;
  color:var(--text);
  font-weight:600;
  display:block;
  margin-bottom:6px;
}
input, textarea, select{
  width:100%;
  padding:12px 16px;
  border-radius:8px;
  border:1px solid var(--line);
  background: var(--surface);
  color: var(--text);
  font-size:15px;
  outline:none;
  transition: all 0.2s ease;
}
input:focus, textarea:focus{
  border-color:var(--primary);
  box-shadow: 0 0 0 3px rgba(0,102,204,.1);
}
textarea{min-height: 140px; resize: vertical; font-family:inherit}
.consent{
  display:flex;
  gap:12px;
  align-items:flex-start;
  color:var(--muted);
  font-size:14px;
  line-height:1.6;
}
.consent input{width:auto; margin-top:4px; cursor:pointer}

/* ============ Features ============ */
.features{
  background: var(--surface);
  border-top:1px solid var(--line);
}
.features .section-title{text-align:center}
.features .section-title-sm{
  text-align:center;
  color:var(--muted);
  font-weight:600;
  font-size:18px;
  margin-bottom:32px;
}
.features-list{
  margin: 24px auto 0;
  max-width:900px;
  padding-left: 0;
  columns: 2;
  column-gap: 60px;
  list-style:none;
}
.features-list li{
  margin: 16px 0;
  padding-left:32px;
  position:relative;
  color:var(--text);
  font-weight:500;
}
.features-list li::before{
  content:"✓";
  position:absolute;
  left:0;
  color:var(--accent);
  font-weight:700;
  font-size:20px;
}
@media (max-width: 720px){
  .features-list{columns:1}
}

/* ============ Footer ============ */
footer{
  border-top:1px solid var(--line);
  padding:60px 0 40px;
  background: var(--surface);
}
.footer-grid{
  display:grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap:40px;
}
.footer-grid a{
  color:var(--muted);
  font-weight:500;
  font-size:14px;
  line-height:2;
  transition: color 0.2s ease;
}
.footer-grid a:hover{color:var(--primary)}

.footer-brand{
  display:flex;
  gap:14px;
  align-items:center;
  margin-bottom:16px;
}
.footer-logo{
  width:50px;
  height:50px;
  border-radius:10px;
}
.footer-title{
  font-weight:700;
  color:var(--text);
  font-size:18px;
}
.footer-sub{
  font-size:13px;
  color:var(--muted);
  margin-top:2px;
}
.footer-head{
  font-weight:700;
  color:var(--text);
  margin-bottom:16px;
  font-size:16px;
}
.footer-note{
  font-size:14px;
  color:var(--muted);
  line-height:1.6;
  margin-top:12px;
}
.footer-copy{
  margin-top:32px;
  padding-top:32px;
  border-top:1px solid var(--line);
  font-size:13px;
  color:var(--muted);
}

@media (max-width: 900px){
  .footer-grid{grid-template-columns: 1fr; gap:32px}
}

/* ============ Accessibility & Polish ============ */
*:focus-visible{
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

::selection{
  background: var(--primary);
  color: #fff;
}

img{max-width:100%; height:auto; display:block}

/* ============ About Us Page Styles ============ */
.page-header-with-image{
  padding: 80px 0;
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}
.page-header-with-image h1{
  font-size: 42px;
  font-weight: 700;
  margin: 0 0 20px;
  color: var(--text);
}
.page-header-with-image .page-intro{
  font-size: 16px;
  line-height: 1.7;
  color: var(--muted);
  margin: 0;
}
.page-header-with-image .section-img{
  max-height: 400px;
}

.about-content{
  padding: 60px 0;
  background: var(--surface);
}
.about-alternate{
  background: var(--bg);
}

.content-text{
  font-size: 16px;
  line-height: 1.8;
  color: var(--text);
  margin: 0 0 20px;
  max-width: 800px;
}

.content-list{
  margin: 24px 0;
  padding-left: 0;
  list-style: none;
  max-width: 800px;
}
.content-list li{
  margin: 16px 0;
  padding-left: 32px;
  position: relative;
  color: var(--text);
  line-height: 1.7;
  font-size: 16px;
}
.content-list li::before{
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
  font-size: 20px;
}

.services-grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 32px;
}
.service-box{
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}
.service-box h4{
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 12px;
  color: var(--primary);
}
.service-box p{
  font-size: 15px;
  line-height: 1.7;
  color: var(--muted);
  margin: 0;
}

.why-choose-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 32px;
}
.why-box{
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  transition: all 0.2s ease;
}
.why-box:hover{
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.why-box h4{
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 12px;
  color: var(--text);
}
.why-box p{
  font-size: 15px;
  line-height: 1.7;
  color: var(--muted);
  margin: 0;
}

@media (max-width: 768px){
  .services-grid{
    grid-template-columns: 1fr;
  }
  .page-header-with-image h1{
    font-size: 32px;
  }
  .training-highlights{
    grid-template-columns: 1fr;
  }
}

/* ============ Caregivers Page Additional Styles ============ */
.callout-box{
  background: var(--surface2);
  border-left: 4px solid var(--primary);
  border-radius: var(--radius);
  padding: 24px 28px;
  margin: 32px 0;
}
.callout-box h3{
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 12px;
  color: var(--primary);
}
.callout-box p{
  margin: 0;
  color: var(--text);
  line-height: 1.7;
}

.training-highlights{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 32px;
}
.training-item{
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}
.training-item h4{
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 8px;
  color: var(--primary);
}
.training-item p{
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0;
}

/* ============ Careers Page Additional Styles ============ */
.careers-benefits{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 32px;
}
.benefit-card{
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
  transition: all 0.2s ease;
}
.benefit-card:hover{
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.benefit-icon{
  font-size: 48px;
  margin-bottom: 16px;
}
.benefit-card h3{
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 12px;
  color: var(--text);
}
.benefit-card p{
  font-size: 15px;
  line-height: 1.7;
  color: var(--muted);
  margin: 0;
}

.responsibilities-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 32px;
}
.responsibility-item{
  background: var(--surface2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
}
.responsibility-item h4{
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 8px;
  color: var(--primary);
}
.responsibility-item p{
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0;
}

.positions-available{
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  margin: 32px 0;
  box-shadow: var(--shadow);
}
.positions-available h3{
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 20px;
  color: var(--text);
}

.testimonials-careers{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
}
.testimonial-card{
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}
.testimonial-text{
  font-size: 15px;
  line-height: 1.7;
  color: var(--text);
  font-style: italic;
  margin: 0 0 16px;
}
.testimonial-author{
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  margin: 0;
}

@media (max-width: 900px){
  .careers-benefits{
    grid-template-columns: 1fr;
  }
  .responsibilities-grid{
    grid-template-columns: repeat(2, 1fr);
  }
  .testimonials-careers{
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px){
  .responsibilities-grid{
    grid-template-columns: 1fr;
  }
}

/* ============ Service Page Additional Styles ============ */
.process-steps{
  display: grid;
  gap: 32px;
  margin-top: 40px;
}
.process-step{
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  align-items: start;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
}
.step-number{
  width: 60px;
  height: 60px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 700;
  flex-shrink: 0;
}
.process-step h3{
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 12px;
  color: var(--text);
}
.process-step p{
  font-size: 16px;
  line-height: 1.7;
  color: var(--muted);
  margin: 0;
}

.faq-grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 32px;
}
.faq-item{
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}
.faq-item h4{
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 12px;
  color: var(--primary);
}
.faq-item p{
  font-size: 15px;
  line-height: 1.7;
  color: var(--muted);
  margin: 0;
}

@media (max-width: 900px){
  .process-step{
    grid-template-columns: 1fr;
    text-align: center;
  }
  .step-number{
    margin: 0 auto;
  }
  .faq-grid{
    grid-template-columns: 1fr;
  }
  .activities-grid{
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px){
  .activities-grid{
    grid-template-columns: 1fr;
  }
}

/* ============ Companion Care Page Styles ============ */
.activities-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 32px;
}
.activity-item{
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  text-align: center;
  transition: all 0.2s ease;
}
.activity-item:hover{
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.activity-item h4{
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 8px;
  color: var(--primary);
}
.activity-item p{
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0;
}

/* Enhanced Mobile Responsiveness */
@media (max-width: 640px){
  /* Reduce section padding on mobile */
  section{padding: 48px 0}
  
  /* Hero adjustments */
  .hero-full{min-height: 400px}
  .hero-full h1{font-size: 28px}
  .hero-full p{font-size: 16px}
  .hero-full .hero-copy{
    margin-left: 20px;
    margin-right: 20px;
  }
  
  /* Smaller buttons on mobile */
  .btn{padding: 10px 20px; font-size: 14px}
  .hero-full .btn{padding: 12px 24px}
  
  /* Card padding reduction */
  .card{padding: 24px}
  .service-content{padding: 24px}
  
  /* Contact form cards */
  .contact-info-card,
  .contact-form-card{padding: 28px 20px}
  
  /* Typography scaling */
  .section-title{font-size: 32px}
  .card-title{font-size: 20px}
  
  /* Fix service items */
  .service-img{
    width: 100%;
    height: 200px;
  }
  
  /* Process steps */
  .process-step{padding: 24px 20px}
}

/* Very small devices */
@media (max-width: 480px){
  .container{padding: 0 16px}
  .hero-full h1{font-size: 24px}
  .section-title{font-size: 28px}
  
  /* Stack buttons vertically */
  .cta-row{flex-direction: column; width: 100%}
  .cta-row .btn{width: 100%}
  .hero-full .hero-actions{
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .hero-full .hero-actions .btn{width: 100%}
}

