:root {
  --brand-blue: #0c67b2;
  --brand-cyan: #22a7de;
  --brand-green: #48b644;
  --brand-dark: #122f60;
  --brand-soft: #e8f6ff;
  --brand-light: #f7fbff;
  --text-main: #112d47;
  --text-muted: #526372;
  --white: #ffffff;
  --radius: 16px;
  --shadow-soft: 0 18px 40px rgba(16, 50, 79, 0.10);
  --shadow-medium: 0 25px 55px rgba(16, 50, 79, 0.15);
  --max-width: 1180px;
  --transition: all 0.25s ease;
  --gradient-brand: linear-gradient(135deg, var(--brand-blue), var(--brand-cyan) 45%, var(--brand-green));
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text-main);
  background: radial-gradient(circle at top left, rgba(34, 167, 222, 0.14), transparent 25%),
              radial-gradient(circle at bottom right, rgba(72, 182, 68, 0.10), transparent 18%),
              var(--brand-light);
  line-height: 1.6;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* Layout */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5.5rem 0;
}

.section-alt {
  background: #f5f9ff;
}

#wellness {
  padding-top: 2rem;
  padding-bottom: 1.5rem;
}

#infusion-services {
  padding-bottom: 3rem;
}

#infusion-services .two-col {
  gap: 0.75rem;
}

#wellness + .section {
  padding-top: 2rem;
}

h1, h2, h3, h4 {
  margin: 0 0 1rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--brand-dark);
}

h1 { font-size: clamp(2.2rem, 5vw, 2.9rem); }
h2 { font-size: 2.1rem; }
h3 { font-size: 1.45rem; }

p {
  margin: 0 0 1rem;
  color: var(--text-muted);
}

.section h2 {
  position: relative;
  display: inline-block;
}

.section h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.9rem;
  width: 4.5rem;
  height: 5px;
  border-radius: 999px;
  background: var(--gradient-brand);
}

/* ====================== HEADER ====================== */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(12, 103, 178, 0.12);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  position: relative;
}

.logo-img {
  height: 65px;
  width: auto;
  max-width: 320px;
  object-fit: contain;
  display: block;
}

/* Navigation */
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  font-size: 0.95rem;
}

.desktop-nav a {
  text-decoration: none;
  color: var(--text-main);
  font-weight: 500;
}

.desktop-nav a:hover {
  color: var(--brand-blue);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.9rem 1.75rem;
  border-radius: 9999px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: var(--transition), transform 0.2s ease;
}

.btn {
  background: var(--gradient-brand);
  color: var(--white);
  box-shadow: 0 18px 35px rgba(12, 103, 178, 0.18);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

.btn-outline {
  background: transparent;
  color: var(--brand-dark);
  border: 2px solid rgba(12, 103, 178, 0.24);
}

.btn-outline:hover {
  background: rgba(12, 103, 178, 0.08);
  color: var(--brand-blue);
}

.btn-small {
  padding: 0.55rem 1.1rem;
  font-size: 0.875rem;
}

/* Mobile Menu */
.mobile-menu-toggle {
  display: none;
  font-size: 1.9rem;
  background: none;
  border: none;
  cursor: pointer;
}

.mobile-toggle {
  display: none;
}

.mobile-nav {
  display: none;
  position: absolute;
  top: 76px;
  left: 0;
  right: 0;
  background: white;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  flex-direction: column;
  padding: 1.5rem;
  gap: 1rem;
}

.mobile-toggle:checked ~ .mobile-nav {
  display: flex;
}

/* ====================== HERO ====================== */
.hero {
  position: relative;
  padding: 6.5rem 0 5rem;
  background: linear-gradient(150deg, rgba(12, 103, 178, 0.18), rgba(72, 182, 68, 0.08) 40%, var(--brand-light) 100%);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 18% 20%, rgba(72, 182, 68, 0.16), transparent 18%),
              radial-gradient(circle at 80% 8%, rgba(12, 103, 178, 0.18), transparent 22%);
  pointer-events: none;
}

.hero-text {
  position: relative;
  z-index: 1;
}

.hero h1 {
  background: linear-gradient(90deg, var(--brand-blue), var(--brand-cyan), var(--brand-green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 900;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.hero-image {
  width: 100%;
  max-width: 520px;
  height: auto;
  border-radius: 24px;
  box-shadow: 0 30px 60px rgba(16, 50, 79, 0.18);
  display: block;
  transform: translateZ(0);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.hero-image:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 40px 80px rgba(16, 50, 79, 0.22);
}

/* Grids & Cards */
.grid-4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.75rem;
}

.card {
  background: white;
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(12, 103, 178, 0.09);
  transition: var(--transition), transform 0.25s ease, box-shadow 0.25s ease;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-medium);
}

.two-col {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 3rem;
}

.pill-card {
  background: linear-gradient(180deg, rgba(72, 182, 68, 0.12), rgba(255, 255, 255, 0.98));
  border-radius: 999px;
  padding: 1rem 1.5rem;
  box-shadow: var(--shadow-soft);
  text-align: center;
  border: 1px solid rgba(72, 182, 68, 0.18);
  transition: var(--transition), transform 0.25s ease;
}

.pill-card:hover {
  transform: translateY(-3px);
}

/* Timeline */
.timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-top: 2.5rem;
}

.step {
  background: white;
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow-soft);
  border-left: 5px solid var(--brand-blue);
  transition: var(--transition), transform 0.25s ease;
}

.step:nth-child(1) {
  background: linear-gradient(135deg, rgba(12, 103, 178, 0.08), rgba(255, 255, 255, 0.95));
  border-left-color: var(--brand-blue);
}

.step:nth-child(2) {
  background: linear-gradient(135deg, rgba(34, 167, 222, 0.08), rgba(255, 255, 255, 0.95));
  border-left-color: var(--brand-cyan);
}

.step:nth-child(3) {
  background: linear-gradient(135deg, rgba(72, 182, 68, 0.08), rgba(255, 255, 255, 0.95));
  border-left-color: var(--brand-green);
}

.step:nth-child(4) {
  background: linear-gradient(135deg, rgba(12, 103, 178, 0.08), rgba(255, 255, 255, 0.95));
  border-left-color: var(--brand-blue);
}

.step:nth-child(5) {
  background: linear-gradient(135deg, rgba(34, 167, 222, 0.08), rgba(255, 255, 255, 0.95));
  border-left-color: var(--brand-cyan);
}

.step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-medium);
}

.step-circle {
  width: 44px;
  height: 44px;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-bottom: 1rem;
  box-shadow: 0 12px 26px rgba(12, 103, 178, 0.16);
  animation: pulse 3s ease-in-out infinite;
}

.step:nth-child(1) .step-circle {
  background: linear-gradient(135deg, var(--brand-blue), #0a5a9f);
}

.step:nth-child(2) .step-circle {
  background: linear-gradient(135deg, var(--brand-cyan), #1a96ca);
}

.step:nth-child(3) .step-circle {
  background: linear-gradient(135deg, var(--brand-green), #3d9e35);
}

.step:nth-child(4) .step-circle {
  background: linear-gradient(135deg, var(--brand-blue), #0a5a9f);
}

.step:nth-child(5) .step-circle {
  background: linear-gradient(135deg, var(--brand-cyan), #1a96ca);
}

/* Contact */
/* ==================== CONTACT SECTION ==================== */
.contact {
  background: radial-gradient(circle at top left, rgba(12, 103, 178, 0.36), transparent 18%),
              linear-gradient(135deg, #0b3d73 0%, #1f6da0 55%, #49b644 100%);
  color: white;
  padding: 6rem 0;
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.contact-left {
  position: relative;
}

.contact-brand {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 2rem;
}

.contact-logo {
  height: 75px;
  width: auto;
  object-fit: contain;
}

.contact-name {
  font-size: 1.65rem;
  font-weight: 700;
  line-height: 1.1;
  color: #e0f2fe;
}

.contact-name span {
  color: #22c55e;
  font-size: 1.25rem;
}

.contact-info {
  font-size: 1.1rem;
  margin-top: 1.5rem;
}

.contact-info a {
  color: #c6e8ff;
  text-decoration: none;
}

.contact-info a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.contact-form {
  background: rgba(255, 255, 255, 0.08);
  padding: 2.5rem;
  border-radius: 20px;
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.13);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 1rem 1.2rem;
  margin-bottom: 1rem;
  border: 1px solid rgba(255,255,255,0.28);
  background: rgba(255,255,255,0.1);
  color: white;
  border-radius: 12px;
  font-size: 1rem;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255,255,255,0.75);
}

/* Mobile */
@media (max-width: 900px) {
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .contact {
    padding: 4rem 0;
  }
}

/* Footer */
.footer {
  padding: 2rem 0;
  background: #eff7ff;
  font-size: 0.9rem;
  color: var(--text-muted);
  border-top: 1px solid rgba(12, 103, 178, 0.12);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Animations */
@keyframes float {
  from { transform: translateY(0); }
  to { transform: translateY(-6px); }
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(72, 182, 68, 0.08); }
  50% { box-shadow: 0 0 0 18px rgba(72, 182, 68, 0.04); }
}

/* Responsive */
@media (max-width: 900px) {
  .desktop-nav { display: none; }
  .mobile-menu-toggle { display: block; }
  .hero-inner,
  .two-col,
  .contact-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .section { padding: 3.5rem 0; }
  #wellness {
    padding-top: 1.5rem;
    padding-bottom: 1rem;
  }
  #infusion-services { padding-bottom: 2rem; }
  #wellness + .section { padding-top: 1.5rem; }
  .hero { padding: 4.5rem 0 4rem; }
}
.pill-card {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    padding: 20px;
    text-align: center;
    background: #f8f9fa;
    transition: all 0.3s ease;
}

.pill-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.card-image {
    width: 100%;
    height: 180px;           /* Adjust as needed */
    object-fit: cover;
    border-radius: 16px;
    margin-bottom: 16px;
}

.pill-card h4 {
    margin: 0;
    font-size: 1.1rem;
    color: #1a365d;
}
