@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@300;400;600;700;800;900&family=Playfair+Display:wght@400;600;700&display=swap');

:root {
  --green: #3aaa35;
  --green-dark: #2d8a29;
  --green-light: #e8f7e8;
  --blue: #1a7fc1;
  --blue-dark: #155f91;
  --blue-light: #e3f2fd;
  --white: #ffffff;
  --off-white: #f8fbff;
  --gray-light: #f0f4f8;
  --gray: #6b7280;
  --gray-dark: #374151;
  --text: #1f2937;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.12);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.15);
  --radius: 16px;
  --radius-sm: 8px;
  --transition: all 0.3s ease;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Nunito', sans-serif; color: var(--text); background: var(--white); line-height: 1.6; overflow-x: hidden; }
h1, h2, h3, h4 { font-family: 'Playfair Display', serif; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 28px; border-radius: 50px; font-family: 'Nunito', sans-serif; font-weight: 700; font-size: 1rem; cursor: pointer; border: none; transition: var(--transition); text-decoration: none; }
.btn-primary { background: linear-gradient(135deg, var(--green), var(--blue)); color: white; box-shadow: 0 4px 15px rgba(58,170,53,0.35); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 25px rgba(58,170,53,0.5); }
.btn-outline { background: transparent; border: 2px solid var(--green); color: var(--green); }
.btn-outline:hover { background: var(--green); color: white; transform: translateY(-2px); }
.btn-white { background: white; color: var(--green-dark); box-shadow: var(--shadow-md); }
.btn-white:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.top-bar { background: linear-gradient(135deg, var(--green-dark), var(--blue-dark)); color: white; padding: 8px 0; font-size: 0.85rem; font-weight: 600; }
.top-bar .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.top-bar a { color: white; opacity: 0.9; }
.top-bar a:hover { opacity: 1; }
.top-bar-items { display: flex; gap: 20px; align-items: center; flex-wrap: wrap; }
.top-bar-item { display: flex; align-items: center; gap: 6px; }
header { background: white; box-shadow: var(--shadow-sm); position: sticky; top: 0; z-index: 1000; }
nav.container { display: flex; align-items: center; justify-content: space-between; padding-top: 16px; padding-bottom: 16px; }
.logo img { height: 60px; width: auto; }
.nav-links { display: flex; list-style: none; gap: 8px; align-items: center; }
.nav-links a { padding: 8px 14px; border-radius: 50px; font-weight: 600; font-size: 0.9rem; color: var(--gray-dark); transition: var(--transition); }
.nav-links a:hover { background: var(--green-light); color: var(--green); }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.hamburger span { width: 24px; height: 2px; background: var(--gray-dark); display: block; border-radius: 2px; transition: var(--transition); }
.hero { background: linear-gradient(135deg, #f0fdf4 0%, #eff8ff 50%, #f0f9ff 100%); padding: 80px 0 60px; position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; top: -100px; right: -100px; width: 500px; height: 500px; background: radial-gradient(circle, rgba(58,170,53,0.08) 0%, transparent 70%); border-radius: 50%; }
.hero .container { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; position: relative; z-index: 1; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: white; border: 1px solid var(--green-light); border-radius: 50px; padding: 8px 16px; font-size: 0.85rem; font-weight: 700; color: var(--green-dark); margin-bottom: 20px; box-shadow: var(--shadow-sm); }
.hero h1 { font-size: 3rem; line-height: 1.15; color: var(--text); margin-bottom: 20px; }
.hero h1 span { color: var(--green); }
.hero p { font-size: 1.15rem; color: var(--gray); margin-bottom: 32px; line-height: 1.7; }
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 32px; margin-top: 40px; padding-top: 32px; border-top: 1px solid #e5e7eb; }
.hero-stat .number { font-size: 1.8rem; font-weight: 800; color: var(--green-dark); line-height: 1; }
.hero-stat .label { font-size: 0.82rem; color: var(--gray); font-weight: 600; }
.hero-image-wrap { position: relative; display: flex; justify-content: center; }
.hero-image-wrap img { width: 100%; max-width: 480px; border-radius: 24px; box-shadow: var(--shadow-lg); object-fit: cover; }
.hero-floating-card { position: absolute; background: white; border-radius: 16px; padding: 14px 18px; box-shadow: var(--shadow-md); display: flex; align-items: center; gap: 12px; font-weight: 700; font-size: 0.85rem; }
.hero-floating-card.card-1 { bottom: 30px; left: -20px; }
.hero-floating-card.card-2 { top: 30px; right: -20px; }
.hero-floating-card .icon { width: 40px; height: 40px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; }
.card-1 .icon { background: var(--green-light); }
.card-2 .icon { background: var(--blue-light); }
.trust-bar { background: white; border-bottom: 1px solid #f0f0f0; padding: 24px 0; }
.trust-bar .container { display: flex; justify-content: center; gap: 48px; flex-wrap: wrap; align-items: center; }
.trust-item { display: flex; align-items: center; gap: 10px; color: var(--gray); font-weight: 600; font-size: 0.9rem; }
section { padding: 80px 0; }
.section-label { display: inline-flex; align-items: center; gap: 8px; background: var(--green-light); color: var(--green-dark); padding: 6px 14px; border-radius: 50px; font-size: 0.82rem; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase; margin-bottom: 14px; }
.section-title { font-size: 2.4rem; color: var(--text); margin-bottom: 16px; line-height: 1.2; }
.section-title span { color: var(--green); }
.section-desc { color: var(--gray); font-size: 1.05rem; max-width: 600px; line-height: 1.7; }
.text-center { text-align: center; }
.text-center .section-desc { margin: 0 auto; }
.how-it-works { background: var(--off-white); }
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 24px; margin-top: 56px; }
.step-card { background: white; border-radius: var(--radius); padding: 36px 24px; text-align: center; box-shadow: var(--shadow-sm); position: relative; transition: var(--transition); border: 2px solid transparent; }
.step-card:hover { border-color: var(--green-light); transform: translateY(-4px); box-shadow: var(--shadow-md); }
.step-number { width: 48px; height: 48px; background: linear-gradient(135deg, var(--green), var(--blue)); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 1.1rem; margin: 0 auto 20px; }
.step-icon { font-size: 2.5rem; margin-bottom: 16px; display: block; }
.step-card h3 { font-size: 1.05rem; margin-bottom: 10px; color: var(--text); }
.step-card p { font-size: 0.87rem; color: var(--gray); line-height: 1.6; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; margin-top: 56px; }
.service-card { background: white; border-radius: var(--radius); padding: 36px 28px; box-shadow: var(--shadow-sm); border: 2px solid transparent; transition: var(--transition); }
.service-card:hover { border-color: var(--green); transform: translateY(-4px); box-shadow: var(--shadow-md); }
.service-card.featured { background: linear-gradient(135deg, var(--green-dark), var(--blue-dark)); color: white; border-color: transparent; }
.service-card.featured h3,.service-card.featured p,.service-card.featured .service-features li { color: white; }
.service-icon { width: 60px; height: 60px; background: var(--green-light); border-radius: 16px; display: flex; align-items: center; justify-content: center; font-size: 1.8rem; margin-bottom: 20px; }
.service-card.featured .service-icon { background: rgba(255,255,255,0.2); }
.service-card h3 { font-size: 1.25rem; margin-bottom: 10px; }
.service-card p { color: var(--gray); font-size: 0.92rem; margin-bottom: 20px; line-height: 1.6; }
.service-features { list-style: none; }
.service-features li { display: flex; align-items: center; gap: 8px; font-size: 0.88rem; color: var(--gray); padding: 5px 0; font-weight: 600; }
.service-features li::before { content: '✓'; color: var(--green); font-weight: 800; }
.service-card.featured .service-features li::before { color: #90ee90; }
.medications { background: var(--off-white); }
.meds-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 20px; margin-top: 48px; }
.med-card { background: white; border-radius: var(--radius); padding: 28px 20px; text-align: center; box-shadow: var(--shadow-sm); transition: var(--transition); border: 2px solid transparent; }
.med-card:hover { border-color: var(--green-light); transform: translateY(-4px); box-shadow: var(--shadow-md); }
.med-emoji { font-size: 2.5rem; margin-bottom: 12px; display: block; }
.med-card h3 { font-size: 1.05rem; color: var(--text); margin-bottom: 6px; }
.med-type { display: inline-block; background: var(--green-light); color: var(--green-dark); padding: 3px 10px; border-radius: 50px; font-size: 0.75rem; font-weight: 700; margin-bottom: 10px; }
.med-card p { font-size: 0.83rem; color: var(--gray); line-height: 1.5; }
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; margin-top: 56px; }
.price-card { background: white; border-radius: var(--radius); padding: 40px 32px; box-shadow: var(--shadow-sm); border: 2px solid #e5e7eb; transition: var(--transition); text-align: center; }
.price-card.popular { border-color: var(--green); transform: scale(1.03); box-shadow: var(--shadow-md); }
.popular-badge { background: linear-gradient(135deg, var(--green), var(--blue)); color: white; padding: 5px 14px; border-radius: 50px; font-size: 0.78rem; font-weight: 700; display: inline-block; margin-bottom: 20px; }
.price-card h3 { font-size: 1.4rem; margin-bottom: 8px; }
.price-amount { font-size: 3rem; font-weight: 800; color: var(--green-dark); line-height: 1; margin: 16px 0 4px; }
.price-period { font-size: 0.88rem; color: var(--gray); margin-bottom: 24px; }
.price-features { list-style: none; text-align: left; margin-bottom: 28px; }
.price-features li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.9rem; color: var(--gray-dark); padding: 8px 0; border-bottom: 1px solid #f0f0f0; }
.price-features li:last-child { border-bottom: none; }
.price-features li span:first-child { color: var(--green); font-weight: 800; flex-shrink: 0; }
.intake-section { background: linear-gradient(135deg, #f0fdf4, #eff8ff); }
.form-container { max-width: 800px; margin: 56px auto 0; background: white; border-radius: 24px; padding: 48px; box-shadow: var(--shadow-lg); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full { grid-column: 1 / -1; }
.form-group label { font-size: 0.88rem; font-weight: 700; color: var(--gray-dark); }
.form-group input,.form-group select,.form-group textarea { padding: 12px 16px; border: 2px solid #e5e7eb; border-radius: var(--radius-sm); font-family: 'Nunito', sans-serif; font-size: 0.95rem; color: var(--text); transition: var(--transition); background: white; }
.form-group input:focus,.form-group select:focus,.form-group textarea:focus { outline: none; border-color: var(--green); box-shadow: 0 0 0 3px rgba(58,170,53,0.1); }
.form-group textarea { resize: vertical; min-height: 100px; }
.checkbox-group { display: flex; flex-direction: column; gap: 10px; }
.checkbox-item { display: flex; align-items: center; gap: 10px; cursor: pointer; font-size: 0.92rem; color: var(--gray-dark); }
.checkbox-item input[type="checkbox"] { width: 18px; height: 18px; accent-color: var(--green); }
.time-slots { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.time-slot { padding: 10px; border: 2px solid #e5e7eb; border-radius: var(--radius-sm); text-align: center; cursor: pointer; font-size: 0.85rem; font-weight: 600; transition: var(--transition); }
.time-slot:hover,.time-slot.selected { border-color: var(--green); background: var(--green-light); color: var(--green-dark); }
.form-notice { background: var(--blue-light); border-left: 4px solid var(--blue); border-radius: var(--radius-sm); padding: 14px 18px; font-size: 0.88rem; color: var(--blue-dark); margin-top: 20px; font-weight: 600; }
.form-success { display: none; text-align: center; padding: 40px; }
.form-success h3 { color: var(--green-dark); font-size: 1.8rem; margin-bottom: 12px; }
.testimonials { background: var(--off-white); }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; margin-top: 56px; }
.testimonial-card { background: white; border-radius: var(--radius); padding: 32px 28px; box-shadow: var(--shadow-sm); transition: var(--transition); }
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.stars { color: #f59e0b; font-size: 1.1rem; margin-bottom: 16px; }
.testimonial-text { font-size: 0.95rem; color: var(--gray); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.author-avatar { width: 48px; height: 48px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; flex-shrink: 0; }
.author-name { font-weight: 700; font-size: 0.95rem; color: var(--text); }
.author-detail { font-size: 0.82rem; color: var(--gray); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-image { position: relative; }
.about-image img { border-radius: 24px; box-shadow: var(--shadow-lg); width: 100%; object-fit: cover; }
.about-badge { position: absolute; bottom: -20px; right: -20px; background: white; border-radius: 16px; padding: 20px 24px; box-shadow: var(--shadow-md); text-align: center; }
.about-badge .years { font-size: 2.5rem; font-weight: 800; color: var(--green-dark); line-height: 1; }
.about-badge .years-label { font-size: 0.82rem; color: var(--gray); font-weight: 600; }
.why-points { list-style: none; margin: 24px 0 32px; }
.why-points li { display: flex; align-items: flex-start; gap: 14px; padding: 14px 0; border-bottom: 1px solid #f0f0f0; font-size: 0.95rem; line-height: 1.5; }
.why-points li:last-child { border-bottom: none; }
.why-icon { width: 36px; height: 36px; background: var(--green-light); border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 1.1rem; }
.contact { background: linear-gradient(135deg, #f0fdf4, #eff8ff); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; margin-top: 56px; align-items: start; }
.contact-card { background: white; border-radius: var(--radius); padding: 36px; box-shadow: var(--shadow-sm); }
.contact-item { display: flex; align-items: flex-start; gap: 16px; padding: 16px 0; border-bottom: 1px solid #f0f0f0; }
.contact-item:last-child { border-bottom: none; }
.contact-item-icon { width: 44px; height: 44px; background: linear-gradient(135deg, var(--green-light), var(--blue-light)); border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 1.2rem; }
.contact-item-title { font-weight: 700; font-size: 0.88rem; color: var(--gray); margin-bottom: 4px; }
.contact-item-value { font-weight: 600; color: var(--text); }
.hours-row { display: flex; justify-content: space-between; font-size: 0.9rem; padding: 3px 0; }
.hours-row span:last-child { font-weight: 700; color: var(--green-dark); }
.map-placeholder { background: var(--gray-light); border-radius: var(--radius); height: 280px; overflow: hidden; margin-top: 20px; }
.map-placeholder iframe { width: 100%; height: 100%; border: none; }
.cta-banner { background: linear-gradient(135deg, var(--green-dark), var(--blue-dark)); padding: 80px 0; text-align: center; color: white; }
.cta-banner h2 { font-size: 2.6rem; margin-bottom: 16px; color: white; }
.cta-banner p { font-size: 1.1rem; opacity: 0.9; margin-bottom: 36px; max-width: 600px; margin-left: auto; margin-right: auto; }
footer { background: #1a2332; color: #9ca3af; padding: 64px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.footer-brand p { font-size: 0.88rem; line-height: 1.7; margin-bottom: 16px; }
.footer-social { display: flex; gap: 12px; margin-top: 12px; }
.social-link { width: 38px; height: 38px; background: rgba(255,255,255,0.1); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1rem; transition: var(--transition); }
.social-link:hover { background: var(--green); color: white; }
footer h4 { color: white; font-size: 1rem; margin-bottom: 16px; font-family: 'Nunito', sans-serif; font-weight: 700; }
footer ul { list-style: none; }
footer ul li { margin-bottom: 10px; }
footer ul li a { font-size: 0.88rem; transition: var(--transition); }
footer ul li a:hover { color: var(--green); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 28px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; font-size: 0.82rem; }
.license-badge { background: rgba(58,170,53,0.2); color: #6ee77a; padding: 3px 10px; border-radius: 50px; font-weight: 700; }
.modal-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 9999; align-items: center; justify-content: center; padding: 20px; }
.modal-overlay.active { display: flex; }
.modal { background: white; border-radius: 24px; padding: 40px; max-width: 500px; width: 100%; position: relative; box-shadow: var(--shadow-lg); }
.modal-close { position: absolute; top: 16px; right: 16px; background: var(--gray-light); border: none; width: 36px; height: 36px; border-radius: 50%; cursor: pointer; font-size: 1.1rem; display: flex; align-items: center; justify-content: center; }
.toast { position: fixed; bottom: 24px; right: 24px; background: white; border-radius: 12px; padding: 16px 20px; box-shadow: var(--shadow-lg); display: flex; align-items: center; gap: 12px; transform: translateY(100px); opacity: 0; transition: all 0.4s cubic-bezier(0.175,0.885,0.32,1.275); z-index: 9999; max-width: 360px; border-left: 4px solid var(--green); }
.toast.show { transform: translateY(0); opacity: 1; }
.toast-icon { font-size: 1.4rem; }
.toast-msg { font-weight: 600; font-size: 0.9rem; }
.toast-sub { font-size: 0.82rem; color: var(--gray); }
.fade-in { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
.photo-banner { width: 100%; height: 300px; object-fit: cover; border-radius: 0; }
.photo-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 40px; }
.photo-grid img { border-radius: 16px; width: 100%; height: 220px; object-fit: cover; box-shadow: var(--shadow-sm); transition: var(--transition); }
.photo-grid img:hover { transform: scale(1.02); box-shadow: var(--shadow-md); }
@media (max-width: 1024px) { .footer-grid { grid-template-columns: 1fr 1fr; } .hero h1 { font-size: 2.4rem; } }
@media (max-width: 768px) { .hero .container { grid-template-columns: 1fr; gap: 40px; } .hero h1 { font-size: 2rem; } .hero-stats { gap: 20px; } .about-grid { grid-template-columns: 1fr; } .contact-grid { grid-template-columns: 1fr; } .form-grid { grid-template-columns: 1fr; } .footer-grid { grid-template-columns: 1fr; } .hero-floating-card { display: none; } .nav-links { display: none; } .hamburger { display: flex; } .nav-links.open { display: flex; flex-direction: column; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: white; z-index: 2000; padding: 80px 24px 40px; gap: 8px; overflow-y: auto; } .nav-links.open a { font-size: 1.1rem; padding: 12px 20px; } section { padding: 60px 0; } .section-title { font-size: 1.9rem; } .price-card.popular { transform: scale(1); } .form-container { padding: 28px 20px; } .time-slots { grid-template-columns: repeat(2, 1fr); } .photo-grid { grid-template-columns: 1fr; } }
@media (max-width: 480px) { .trust-bar .container { gap: 20px; } .hero-buttons { flex-direction: column; } .cta-banner h2 { font-size: 2rem; } }
