* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --blue-600: #2563eb;
  --purple-600: #9333ea;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --green-500: #22c55e;
}

html { scroll-behavior: smooth; }
body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; line-height: 1.6; color: var(--gray-900); }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }

/* Header */
header { background: rgba(255,255,255,0.95); backdrop-filter: blur(10px); box-shadow: 0 1px 3px rgba(0,0,0,0.1); position: sticky; top: 0; z-index: 1000; }
header .container { max-width: 1280px; margin: 0 auto; padding: 0 1rem; display: flex; justify-content: space-between; align-items: center; height: 70px; }
.logo { display: flex; align-items: center; gap: 0.75rem; }
.logo-icon { width: 44px; height: 44px; }
.logo-text { font-size: 1.25rem; font-weight: 700; background: linear-gradient(to right, var(--blue-600), var(--purple-600)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }

nav ul { display: flex; list-style: none; gap: 0.5rem; }
nav a { padding: 0.5rem 1rem; border-radius: 0.5rem; font-size: 0.9rem; font-weight: 500; color: var(--gray-700); transition: all 0.2s; }
nav a:hover { color: var(--blue-600); background: var(--gray-50); }
nav a.active { color: var(--blue-600); background: #eff6ff; }

.mobile-menu-btn { display: none; background: none; border: none; padding: 0.5rem; cursor: pointer; }
.mobile-menu-btn svg { width: 24px; height: 24px; }
.mobile-nav { display: none; padding: 1rem; }
.mobile-nav.active { display: block; }
.mobile-nav ul { flex-direction: column; }
.mobile-nav a { display: block; padding: 0.75rem 1rem; }

@media (max-width: 768px) {
  nav.desktop-nav { display: none; }
  .mobile-menu-btn { display: block; }
}

/* Hero */
.hero { position: relative; background: linear-gradient(135deg, var(--blue-600), var(--purple-600), #ec4899); overflow: hidden; }
.hero::before { content: ''; position: absolute; inset: 0; background: rgba(0,0,0,0.2); }
.hero-content { position: relative; max-width: 1280px; margin: 0 auto; padding: 6rem 1rem; text-align: center; }
.hero h1 { font-size: 3rem; font-weight: 700; color: white; margin-bottom: 1rem; }
.hero p { font-size: 1.25rem; color: rgba(255,255,255,0.9); margin-bottom: 2rem; }
.hero-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

@media (min-width: 768px) {
  .hero h1 { font-size: 4rem; }
  .hero p { font-size: 1.5rem; }
}

/* Buttons */
.btn { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.875rem 1.75rem; border-radius: 9999px; font-weight: 600; transition: all 0.3s; cursor: pointer; border: none; }
.btn-primary { background: white; color: var(--blue-600); }
.btn-primary:hover { transform: scale(1.05); }
.btn-secondary { background: rgba(255,255,255,0.15); color: white; border: 2px solid rgba(255,255,255,0.3); }
.btn-secondary:hover { background: rgba(255,255,255,0.25); }

/* Services */
.services-section { max-width: 1280px; margin: 0 auto; padding: 5rem 1rem; background: var(--gray-50); }
.section-header { text-align: center; margin-bottom: 3rem; }
.section-header h2 { font-size: 2.5rem; font-weight: 700; margin-bottom: 0.5rem; }
.section-header p { color: var(--gray-600); font-size: 1.1rem; }

.services-grid { display: grid; gap: 2rem; }
@media (min-width: 768px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }

.service-card { background: white; border-radius: 1rem; overflow: hidden; box-shadow: 0 4px 6px rgba(0,0,0,0.1); transition: all 0.3s; }
.service-card:hover { transform: translateY(-4px); box-shadow: 0 10px 20px rgba(0,0,0,0.15); }
.service-image { height: 180px; position: relative; overflow: hidden; }
.service-image img { width: 100%; height: 100%; object-fit: cover; }
.service-overlay { position: absolute; inset: 0; opacity: 0.6; }
.service-content { padding: 1.5rem; }
.service-content h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 0.5rem; }
.service-content p { color: var(--gray-600); }

/* Features */
.features-section { background: white; padding: 5rem 1rem; }
.features-content { max-width: 800px; margin: 0 auto; }
.features-content h2 { font-size: 2.5rem; font-weight: 700; margin-bottom: 1rem; }
.features-content > p { color: var(--gray-600); font-size: 1.1rem; margin-bottom: 2rem; }
.features-list { list-style: none; margin-bottom: 2rem; }
.features-list li { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1rem; font-size: 1.1rem; }
.features-list svg { color: var(--green-500); flex-shrink: 0; }

/* CTA */
.cta-section { background: linear-gradient(to right, var(--blue-600), var(--purple-600)); padding: 4rem 1rem; text-align: center; }
.cta-section h2 { font-size: 2rem; font-weight: 700; color: white; margin-bottom: 1rem; }
.cta-section p { color: rgba(255,255,255,0.9); margin-bottom: 2rem; max-width: 600px; margin-left: auto; margin-right: auto; }

/* Page Header */
.page-header { position: relative; height: 300px; overflow: hidden; }
.page-header img { width: 100%; height: 100%; object-fit: cover; }
.page-header-overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(30,58,138,0.85), rgba(91,33,182,0.85)); }
.page-header-content { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; text-align: center; color: white; }
.page-header h1 { font-size: 2.5rem; font-weight: 700; margin-bottom: 0.5rem; }
.page-header p { font-size: 1.1rem; opacity: 0.9; }

/* Company */
.company-section { max-width: 900px; margin: 0 auto; padding: 4rem 1rem; }
.info-card { background: white; border-radius: 1rem; box-shadow: 0 4px 6px rgba(0,0,0,0.1); padding: 2rem; margin-bottom: 2rem; }
.info-card h2 { font-size: 1.5rem; font-weight: 700; margin-bottom: 1.5rem; padding-left: 1rem; border-left: 4px solid var(--blue-600); }
.info-item { display: flex; gap: 1rem; padding: 1rem; border-radius: 0.5rem; margin-bottom: 0.5rem; }
.info-item:hover { background: var(--gray-50); }
.info-icon { width: 48px; height: 48px; background: linear-gradient(135deg, var(--blue-600), var(--purple-600)); border-radius: 0.75rem; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.info-icon svg { color: white; }
.info-label { font-size: 0.8rem; color: var(--gray-500); text-transform: uppercase; letter-spacing: 0.05em; }
.info-value { font-size: 1.1rem; font-weight: 500; }

.purpose-item { display: flex; gap: 1rem; padding: 1rem; }
.purpose-num { width: 32px; height: 32px; background: linear-gradient(135deg, var(--blue-600), var(--purple-600)); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; font-weight: 700; flex-shrink: 0; }

/* Contact */
.contact-section { max-width: 1200px; margin: 0 auto; padding: 4rem 1rem; }
.contact-cards { display: grid; gap: 1.5rem; margin-bottom: 3rem; }
@media (min-width: 768px) { .contact-cards { grid-template-columns: repeat(3, 1fr); } }

.contact-card { background: white; border-radius: 1rem; padding: 1.5rem; box-shadow: 0 4px 6px rgba(0,0,0,0.1); }
.contact-card-icon { width: 56px; height: 56px; border-radius: 1rem; display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; }
.contact-card-icon svg { color: white; }
.contact-card h3 { font-size: 1.1rem; font-weight: 600; margin-bottom: 0.25rem; }
.contact-card .value { font-weight: 500; margin-bottom: 0.25rem; }
.contact-card .desc { font-size: 0.85rem; color: var(--gray-500); }

.contact-grid { display: grid; gap: 2rem; }
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 1fr 1fr; } }

.form-card { background: white; border-radius: 1rem; padding: 2rem; box-shadow: 0 4px 6px rgba(0,0,0,0.1); }
.form-card h2 { font-size: 1.5rem; font-weight: 700; margin-bottom: 0.5rem; padding-left: 1rem; border-left: 4px solid var(--blue-600); }
.form-card > p { color: var(--gray-600); margin-bottom: 1.5rem; margin-left: 1rem; }

.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-weight: 500; margin-bottom: 0.5rem; font-size: 0.9rem; }
.form-group .required { color: #ef4444; }
.form-group input, .form-group textarea { width: 100%; padding: 0.75rem 1rem; border: 2px solid #e5e7eb; border-radius: 0.5rem; font-size: 1rem; transition: border-color 0.2s; }
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--blue-600); }
.form-group textarea { resize: vertical; font-family: inherit; }

.submit-btn { width: 100%; background: linear-gradient(to right, var(--blue-600), var(--purple-600)); color: white; padding: 1rem; border: none; border-radius: 0.5rem; font-size: 1rem; font-weight: 600; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 0.5rem; transition: transform 0.2s; }
.submit-btn:hover { transform: scale(1.02); }

.form-message { margin-bottom: 1rem; }
.alert { padding: 1rem 1.25rem; border-radius: 0.5rem; font-weight: 500; }
.alert-success { background: #dcfce7; color: #166534; border: 1px solid #86efac; }
.alert-error { background: #fee2e2; color: #991b1b; border: 1px solid #fca5a5; }

.hours-card { background: linear-gradient(135deg, var(--blue-600), var(--purple-600)); border-radius: 1rem; padding: 2rem; color: white; margin-bottom: 2rem; }
.hours-card h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 1rem; }
.hours-row { display: flex; justify-content: space-between; padding: 0.75rem 0; border-bottom: 1px solid rgba(255,255,255,0.2); }
.hours-row:last-child { border-bottom: none; }

.response-card { background: white; border-radius: 1rem; padding: 2rem; box-shadow: 0 4px 6px rgba(0,0,0,0.1); }
.response-card h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 1rem; padding-left: 1rem; border-left: 4px solid var(--blue-600); }
.response-list { list-style: none; }
.response-list li { display: flex; align-items: flex-start; gap: 0.75rem; margin-bottom: 0.75rem; color: var(--gray-600); }
.check-icon { width: 24px; height: 24px; background: #dcfce7; color: var(--green-500); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 0.8rem; }

/* Footer */
footer { background: linear-gradient(135deg, var(--gray-900), var(--gray-800)); color: white; padding: 4rem 1rem 2rem; }
footer .container { max-width: 1280px; margin: 0 auto; }
.footer-grid { display: grid; gap: 2rem; margin-bottom: 2rem; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr; } }

.footer-logo { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1rem; }
.footer-logo-svg { width: 48px; height: 48px; }
.footer-logo-text { font-size: 1.25rem; font-weight: 700; }
.footer-desc { color: var(--gray-400); line-height: 1.75; }

.footer-section h3 { font-size: 1rem; font-weight: 600; margin-bottom: 1rem; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.5rem; }
.footer-links a { color: var(--gray-400); transition: color 0.2s; }
.footer-links a:hover { color: white; }

.footer-contact li { display: flex; align-items: center; gap: 0.75rem; color: var(--gray-400); margin-bottom: 0.75rem; }
.footer-contact svg { color: #60a5fa; flex-shrink: 0; }

.footer-bottom { border-top: 1px solid var(--gray-700); padding-top: 2rem; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem; color: var(--gray-400); font-size: 0.875rem; }
