:root{
  --red:#c62828;
  --red-dark:#8e0000;
  --white:#ffffff;
  --gray:#f5f5f5;
  --text:#222;
  --radius:14px;
}

*{margin:0;padding:0;box-sizing:border-box}
body{font-family:system-ui,-apple-system,Segoe UI,Roboto,Inter,sans-serif;color:var(--text);line-height:1.6;background:var(--white)}
a{color:inherit;text-decoration:none}
img{max-width:100%;display:block;border-radius:var(--radius)}
.container{max-width:1200px;margin:0 auto;padding:0 20px}

/* Nav */
header{position:sticky;top:0;background:var(--white);box-shadow:0 2px 10px rgba(0,0,0,.05);z-index:100}
nav{display:flex;align-items:center;justify-content:space-between;padding:18px 0}
.logo{display:flex;align-items:center;gap:12px;font-weight:700;font-size:1.3rem}
.logo img{width:42px;height:42px;border-radius:50%;object-fit:cover}
.nav-links{display:flex;gap:32px}
.nav-links a{font-weight:500;transition:.2s}
.nav-links a:hover,.nav-links a.active{color:var(--red)}
.btn{background:var(--red);color:var(--white);padding:12px 24px;border-radius:var(--radius);font-weight:600;transition:.2s;border:none;cursor:pointer}
.btn:hover{background:var(--red-dark)}
.hamburger{display:none;flex-direction:column;gap:5px;cursor:pointer}
.hamburger span{width:25px;height:3px;background:var(--text);transition:.3s}

/* Page header */
.page-header{padding:80px 0 40px;text-align:center;background:var(--gray)}
.page-header h1{font-size:clamp(2.2rem,5vw,3.5rem);margin-bottom:15px}
.page-header p{color:#666;max-width:600px;margin:0 auto}

/* Sections */
section{padding:80px 0}
.section-title{text-align:center;margin-bottom:50px}
.section-title h2{font-size:2.5rem;margin-bottom:12px}
.section-title p{color:#666;max-width:600px;margin:0 auto}

.grid-3{display:grid;grid-template-columns:repeat(auto-fit,minmax(280px,1fr));gap:30px}
.card{background:var(--gray);padding:30px;border-radius:var(--radius);transition:.3s}
.card:hover{transform:translateY(-5px);box-shadow:0 10px 30px rgba(0,0,0,.08)}
.card img,.service-icon{width:70px;height:70px;border-radius:50%;margin-bottom:20px}
.service-icon{display:grid;place-items:center;background:var(--red);color:var(--white);font-weight:800;font-size:1rem;letter-spacing:0}
.card h3{margin-bottom:10px}

/* About */
.about-wrapper{display:grid;grid-template-columns:1fr 1fr;gap:50px;align-items:center}
.care-panel{background:var(--gray);border-radius:var(--radius);padding:34px;box-shadow:0 18px 45px rgba(0,0,0,.07)}
.care-panel-header{display:flex;align-items:center;gap:18px;margin-bottom:28px}
.care-panel-header img{width:76px;height:76px;border-radius:50%;object-fit:cover;background:var(--white)}
.care-panel-header span{display:block;color:#666;font-weight:600;margin-bottom:4px}
.care-panel-header strong{font-size:1.45rem;line-height:1.2}
.care-panel-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:16px}
.care-panel-grid div{background:var(--white);border-left:4px solid var(--red);border-radius:10px;padding:18px;min-height:104px}
.care-panel-grid strong{display:block;font-size:1.45rem;margin-bottom:8px;color:var(--red)}
.care-panel-grid span{color:#555;font-weight:600}

/* Contact */
.contact form{display:grid;gap:20px;max-width:600px;margin:0 auto}
.location-panel{background:var(--gray);border-radius:var(--radius);padding:34px;min-height:360px;display:flex;flex-direction:column;justify-content:center;box-shadow:0 18px 45px rgba(0,0,0,.07)}
.location-badge{width:86px;height:86px;border-radius:50%;display:grid;place-items:center;background:var(--white);margin-bottom:22px}
.location-badge img{width:64px;height:64px;border-radius:50%;object-fit:cover}
.location-panel h3{font-size:1.65rem;margin-bottom:10px}
.location-panel p{color:#555;margin-bottom:22px}
.location-details{display:grid;grid-template-columns:88px 1fr;gap:10px 16px;align-items:start}
.location-details span{color:#666;font-weight:700}
.location-details strong{font-weight:700;color:var(--text)}
input,textarea{padding:14px 18px;border:2px solid #ddd;border-radius:var(--radius);font-family:inherit;font-size:1rem;transition:.2s}
input:focus,textarea:focus{outline:none;border-color:var(--red)}

/* Footer */
footer{background:var(--text);color:var(--white);padding:60px 0 20px}
.footer-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(250px,1fr));gap:40px;margin-bottom:40px}
footer h4{margin-bottom:16px;color:var(--red)}
footer p,footer a{color:#bbb;font-size:.95rem}
footer a:hover{color:var(--white)}
.bottom{border-top:1px solid #444;padding-top:20px;text-align:center;color:#999;font-size:.9rem}

/* Responsive */
@media(max-width:900px){
  .about-wrapper{grid-template-columns:1fr}
  .nav-links{position:fixed;top:72px;left:-100%;width:100%;height:calc(100vh - 72px);background:var(--white);flex-direction:column;align-items:center;justify-content:center;gap:40px;transition:.3s}
  .nav-links.active{left:0}
  .hamburger{display:flex}
  .hamburger.active span:nth-child(1){transform:rotate(45deg) translate(8px,8px)}
  .hamburger.active span:nth-child(2){opacity:0}
  .hamburger.active span:nth-child(3){transform:rotate(-45deg) translate(7px,-7px)}
}

/*Hero dashboard*/
.hero img{width:100%;height:auto;object-fit:cover;box-shadow:0 20px 40px rgba(198,40,40,0.15)}

/* Map container */
.map-container{border-radius:12px;overflow:hidden}

/* Hero layout moved from inline html */
.hero{display:grid;grid-template-columns:1fr 1fr;gap:50px;align-items:center;padding:80px 0}
.hero .container{display:contents}
.hero h1{font-size:clamp(2.2rem,5vw,3.5rem);line-height:1.2;margin-bottom:20px}
.hero p{font-size:1.1rem;color:#555;margin-bottom:30px}

/* About / Contact common styles moved from inline */
.about-wrapper h2{font-size:2.2rem;margin-bottom:20px}
.about-wrapper p{margin-bottom:20px}
.about-wrapper ul{list-style:none;padding-left:0}
.about-wrapper ul li{margin-bottom:10px}
.about-wrapper.spaced{margin-bottom:60px}

/* Small screen tweaks */
@media(max-width:700px){
  .hero{padding:40px 0}
  .hero h1{font-size:1.8rem}
}
