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

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: #1e293b;
  background: #fff;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Colors */
:root {
  --primary: #1e3a5f;
  --primary-light: #0c4872;
  --accent: #22c55e;
  --accent-dark: #16a34a;
  --accent-light: #dcfce7;
  --text: #1e293b;
  --text-light: #64748b;
  --bg: #ffffff;
  --bg-alt: #f8fafc;
  --border: #e2e8f0;
}

.dark body {
  background: #0f172a;
  color: #f1f5f9;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 1rem; }

/* Buttons */
.btn-primary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--accent); color: white;
  padding: 0.875rem 1.5rem; border-radius: 0.75rem;
  font-weight: 600; font-size: 0.9375rem;
  text-decoration: none; border: none; cursor: pointer;
  box-shadow: 0 4px 14px rgba(34,197,94,0.3);
  transition: all 0.2s;
}
.btn-primary:hover { background: var(--accent-dark); transform: translateY(-2px); }

.btn-secondary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--primary); color: white;
  padding: 0.875rem 1.5rem; border-radius: 0.75rem;
  font-weight: 600; font-size: 0.9375rem;
  text-decoration: none; border: none; cursor: pointer;
  transition: all 0.2s;
}
.btn-secondary:hover { background: #0c4872; transform: translateY(-2px); }

.btn-white {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: white; color: var(--accent-dark);
  padding: 0.875rem 1.5rem; border-radius: 0.75rem;
  font-weight: 700; font-size: 0.9375rem;
  text-decoration: none; border: none; cursor: pointer;
  box-shadow: 0 4px 14px rgba(0,0,0,0.1);
  transition: all 0.2s;
}
.btn-white:hover { background: #f0fdf4; }

/* Navbar */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  background: transparent; transition: all 0.3s;
  padding: 0.75rem 0;
}
.navbar.scrolled {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 10px rgba(0,0,0,0.08);
}
.dark .navbar.scrolled { background: rgba(15,23,42,0.95); }
.navbar-inner { display: flex; align-items: center; justify-content: space-between; }
.logo { display: flex; align-items: center; gap: 0.5rem; text-decoration: none; }
.logo-icon {
  width: 40px; height: 40px; background: var(--accent);
  border-radius: 0.75rem; display: flex; align-items: center; justify-content: center;
  color: white; font-size: 1.25rem;
}
.logo-text { font-size: 1.25rem; font-weight: 800; color: white; }
.navbar.scrolled .logo-text { color: var(--primary); }
.dark .navbar.scrolled .logo-text { color: white; }

/* .dark .logo-text { color: white; } */
.logo-text span { color: var(--accent); }
.logo-sub { font-size: 0.625rem; color: var(--text-light); letter-spacing: 0.1em; margin-top: -4px; }

.nav-links { display: none; gap: 0.25rem; }
.nav-links a {
  padding: 0.5rem 0.75rem; border-radius: 0.5rem;
  text-decoration: none; color: var(--text-light); font-size: 0.875rem; font-weight: 500;
  transition: all 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--accent-dark); background: var(--accent-light); }
.dark .nav-links a { color: #94a3b8; }
.dark .nav-links a:hover, .dark .nav-links a.active { color: #4ade80; background: rgba(34,197,94,0.1); }

.nav-phone {
  display: none; align-items: center; gap: 0.5rem;
  background: var(--accent); color: white;
  padding: 0.625rem 1rem; border-radius: 0.75rem;
  font-size: 0.875rem; font-weight: 600; text-decoration: none;
  box-shadow: 0 4px 12px rgba(34,197,94,0.3);
}
.nav-phone:hover { background: var(--accent-dark); }

.nav-actions { display: flex; align-items: center; gap: 0.5rem; }
.theme-toggle, .menu-toggle {
  width: 40px; height: 40px; border-radius: 0.75rem;
  border: none; background: transparent; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-light); font-size: 1.25rem;
}
.theme-toggle:hover, .menu-toggle:hover { background: #f1f5f9; }
.dark .theme-toggle:hover, .dark .menu-toggle:hover { background: #1e293b; }

/* Mobile Menu */
.mobile-overlay {
  position: fixed; inset: 0; z-index: 40; background: rgba(0,0,0,0.5);
  opacity: 0; pointer-events: none; transition: opacity 0.3s;
}
.mobile-overlay.open { opacity: 1; pointer-events: auto; }
.mobile-menu {
  position: fixed; top: 0; right: 0; bottom: 0; width: 300px; max-width: 85vw;
  z-index: 50; background: white; box-shadow: -10px 0 30px rgba(0,0,0,0.15);
  transform: translateX(100%); transition: transform 0.3s ease;
  display: flex; flex-direction: column;
}
.dark .mobile-menu { background: #0f172a; }
.mobile-menu.open { transform: translateX(0); }
.mobile-header { display: flex; align-items: center; justify-content: space-between; padding: 1rem; border-bottom: 1px solid var(--border); }
.mobile-header .logo-text { color: var(--primary); }

.mobile-links { flex: 1; overflow-y: auto; padding: 1rem 0; }
.mobile-links a {
  display: block; padding: 0.875rem 1.5rem;
  text-decoration: none; color: var(--text); font-weight: 500;
  border-left: 3px solid transparent;
}
.mobile-links a:hover, .mobile-links a.active { background: var(--accent-light); color: var(--accent-dark); border-left-color: var(--accent); }
.dark .mobile-links a { color: #e2e8f0; }
.dark .mobile-links a:hover, .dark .mobile-links a.active { background: rgba(34,197,94,0.1); color: #4ade80; }
.mobile-cta { padding: 1rem; border-top: 1px solid var(--border); }
.mobile-cta a { display: flex; align-items: center; justify-content: center; gap: 0.5rem; width: 100%; }

/* Floating CTA */
.floating-cta {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 40;
  background: var(--accent); color: white;
  padding: 0.875rem 1rem; display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  font-weight: 600; text-decoration: none; font-size: 1rem;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
}
.floating-cta span { font-weight: 400; font-size: 0.875rem; opacity: 0.9; }
@media (min-width: 1024px) { .floating-cta { display: none; } }

/* Hero */
.hero {
  min-height: 90vh; display: flex; align-items: center;
  background: linear-gradient(135deg, #1e3a5f 0%, #0f172a 50%, #1e3a5f 100%);
  position: relative; overflow: hidden; padding-top: 5rem;
}
.hero-pattern {
  position: absolute; inset: 0; opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.4'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-wave {
  position: absolute; bottom: 0; left: 0; right: 0; line-height: 0;
}
.hero-wave svg { display: block; width: 100%; height: auto; }
.hero-content { position: relative; z-index: 10; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(34,197,94,0.2); border: 1px solid rgba(34,197,94,0.3);
  padding: 0.375rem 1rem; border-radius: 9999px;
  color: #86efac; font-size: 0.875rem; font-weight: 500; margin-bottom: 1.5rem;
}
.hero h1 { font-size: 2.5rem; font-weight: 800; color: white; line-height: 1.15; margin-bottom: 1.5rem; }
.hero h1 span { color: #4ade80; }
.hero p { font-size: 1.125rem; color: #cbd5e1; max-width: 500px; margin-bottom: 2rem; }
.hero-btns { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2.5rem; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 1.5rem; }
.hero-trust-item { display: flex; align-items: center; gap: 0.5rem; color: #94a3b8; font-size: 0.875rem; }
.hero-trust-item svg { color: #4ade80; width: 20px; height: 20px; }
.hero-img { display: none; position: relative; }
.hero-img img { width: 100%; border-radius: 1.5rem; box-shadow: 0 25px 50px rgba(0,0,0,0.3); }
.hero-stat {
  position: absolute; bottom: -1.5rem; left: -1.5rem;
  background: white; border-radius: 1rem; padding: 1.25rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1); display: flex; align-items: center; gap: 1rem;
}
.dark .hero-stat { background: #1e293b; }
.hero-stat-icon { width: 48px; height: 48px; background: var(--accent-light); border-radius: 0.75rem; display: flex; align-items: center; justify-content: center; color: var(--accent-dark); }

/* Sections */
.section { padding: 4rem 0; }
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-tag {
  display: inline-block; background: var(--accent-light); color: var(--accent-dark);
  padding: 0.375rem 1rem; border-radius: 9999px; font-size: 0.875rem; font-weight: 600; margin-bottom: 1rem;
}
.dark .section-tag { background: rgba(34,197,94,0.15); color: #4ade80; }
.section h2 { font-size: 2rem; font-weight: 700; color: var(--primary); margin-bottom: 1rem; }
.dark .section h2 { color: var(--primary); }
.section-subtitle { color: var(--text-light); font-size: 1.125rem; max-width: 600px; margin: 0 auto; }
.dark .section-subtitle { color: #94a3b8; }

/* Service Cards */
.services-grid { display: grid; gap: 1.5rem; }
.service-card {
  background: var(--bg-alt); border: 1px solid var(--border); border-radius: 1rem;
  overflow: hidden; transition: all 0.3s; text-decoration: none; color: inherit; display: block;
}
.service-card:hover { transform: translateY(-4px); box-shadow: 0 20px 40px rgba(30,58,95,0.1); }
.service-img { position: relative; height: 200px; overflow: hidden; }
.service-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.service-card:hover .service-img img { transform: scale(1.05); }
.service-img-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.4), transparent); }
.service-icon {
  position: absolute; top: 1rem; left: 1rem;
  width: 40px; height: 40px; border-radius: 0.75rem;
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 1.25rem;
}
.service-body { padding: 1.25rem; }
.service-body h3 { font-size: 1.125rem; font-weight: 700; color: var(--primary); margin-bottom: 0.5rem; }
.dark .service-body h3:hover { color: var(--accent-dark); }
.service-body p { font-size: 0.875rem; color: var(--text-light); margin-bottom: 1rem; }
.service-link { display: inline-flex; align-items: center; gap: 0.25rem; color: var(--accent-dark); font-weight: 600; font-size: 0.875rem; }
.service-link:hover { gap: 0.5rem; }

/* Why Choose Us */
.features-grid { display: grid; gap: 1rem; margin-top: 2rem; }
.feature-item { display: flex; gap: 1rem; padding: 1rem; background: var(--bg-alt); border-radius: 0.75rem; }
.feature-icon { width: 40px; height: 40px; background: var(--accent-light); border-radius: 0.5rem; display: flex; align-items: center; justify-content: center; color: var(--accent-dark); flex-shrink: 0; }
.feature-item h4 { font-weight: 600; color: var(--primary); margin-bottom: 0.25rem; }
.dark .feature-item h4 { color: var(--primary); }
.feature-item p { font-size: 0.875rem; color: var(--text-light); }

/* Before/After */
.before-after { 
  position: relative; 
  overflow: hidden; 
  cursor: ew-resize; 
  user-select: none; 
  border-radius: 1rem;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}
.before-after img { 
  display: block; 
  width: 100%; 
  height: auto; 
}
.before-after-overlay { 
  position: absolute; 
  top: 0; 
  left: 0; 
  height: 100%; 
  overflow: hidden; 
}
.before-after-overlay img { 
  position: absolute; 
  top: 0; 
  left: 0; 
  width: 100%; 
  height: auto;
  display: block;
}
.before-after-handle {
  position: absolute; top: 0; bottom: 0; width: 4px; background: white;
  cursor: ew-resize; z-index: 10; box-shadow: 0 0 10px rgba(0,0,0,0.3);
  transform: translateX(-50%);
}
.before-after-handle::after {
  content: ''; position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%); width: 40px; height: 40px;
  background: white; border-radius: 50%; box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}
.before-after-label {
  position: absolute; top: 1rem; padding: 0.375rem 0.75rem; border-radius: 0.5rem;
  font-size: 0.75rem; font-weight: 700; z-index: 5;
}
.before-after-label.before { left: 1rem; background: rgba(30,58,95,0.8); color: white; }
.before-after-label.after { right: 1rem; background: var(--accent); color: white; }

/* Testimonials */
.testimonials-grid { display: grid; gap: 1.5rem; }
.testimonial-card {
  background: white; border: 1px solid var(--border); border-radius: 1rem;
  padding: 1.5rem; position: relative;
}
.dark .testimonial-card { background: #1e293b; border-color: #334155; }
.testimonial-stars { display: flex; gap: 0.25rem; margin-bottom: 1rem; color: #fbbf24; }
.testimonial-card p { color: var(--text-light); margin-bottom: 1rem; font-style: italic; }
.testimonial-card footer { border-top: 1px solid var(--border); padding-top: 1rem; }
.dark .testimonial-card footer { border-color: #334155; }
.testimonial-card footer strong { color: var(--primary); }
.dark .testimonial-card footer strong { color: var(--primary); }
.testimonial-card footer span { font-size: 0.875rem; color: var(--text-light); }

/* CTA Section */
.cta-section {
  padding: 4rem 0; background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  position: relative; overflow: hidden;
}
.cta-section::before, .cta-section::after {
  content: ''; position: absolute; border-radius: 50%; background: rgba(255,255,255,0.1);
}
.cta-section::before { width: 250px; height: 250px; top: -100px; right: -50px; }
.cta-section::after { width: 180px; height: 180px; bottom: -80px; left: -40px; }
.cta-content { position: relative; z-index: 1; text-align: center; max-width: 700px; margin: 0 auto; }
.cta-content h2 { font-size: 2rem; font-weight: 700; color: white; margin-bottom: 1rem; }
.cta-content p { color: #dcfce7; font-size: 1.125rem; margin-bottom: 2rem; }
.cta-btns { display: flex; flex-direction: column; gap: 1rem; justify-content: center; }
.cta-note { color: #bbf7d0; font-size: 0.875rem; margin-top: 1.5rem; }

/* Footer */
.footer { background: var(--primary); color: #cbd5e1; padding: 3rem 0 1.5rem; }
.footer-grid { display: grid; gap: 2.5rem; margin-bottom: 2.5rem; }
.footer-brand p { font-size: 0.875rem; color: #94a3b8; margin: 1rem 0; max-width: 300px; }
.footer-social { display: flex; gap: 0.75rem; }
.footer-social a {
  width: 40px; height: 40px; border-radius: 0.75rem; background: rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center; color: white;
  text-decoration: none; transition: all 0.2s;
}
.footer-social a:hover { background: var(--accent); }
.footer h4 { font-size: 0.875rem; font-weight: 600; color: white; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 1rem; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.75rem; }
.footer-links a { color: #94a3b8; text-decoration: none; font-size: 0.875rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--accent); }
.footer-contact { list-style: none; }
.footer-contact li { margin-bottom: 1rem; }
.footer-contact a, .footer-contact span { display: flex; align-items: center; gap: 0.75rem; color: #94a3b8; text-decoration: none; font-size: 0.875rem; }
.footer-contact a:hover { color: var(--accent); }
.footer-contact svg { color: var(--accent); width: 18px; height: 18px; flex-shrink: 0; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1); padding-top: 1.5rem;
  display: flex; flex-direction: column; gap: 0.5rem; align-items: center;
  font-size: 0.75rem; color: #64748b;
}

/* Contact Form */
.contact-grid { display: grid; gap: 2.5rem; }
.contact-info h2 { font-size: 1.75rem; font-weight: 700; color: var(--primary); margin-bottom: 1rem; }
.dark .contact-info h2 { color: var(--primary); }
.contact-info > p { color: var(--text-light); margin-bottom: 2rem; }
.contact-item {
  display: flex; align-items: center; gap: 1rem; padding: 1rem;
  background: var(--bg-alt); border-radius: 0.75rem; margin-bottom: 1rem;
  text-decoration: none; color: inherit; transition: all 0.2s;
}
.contact-item:hover { background: var(--accent-light); }
.contact-item-icon { width: 48px; height: 48px; background: var(--accent-light); border-radius: 0.75rem; display: flex; align-items: center; justify-content: center; color: var(--accent-dark); flex-shrink: 0; }
.contact-item:hover .contact-item-icon { background: var(--accent); color: white; }
.contact-item-label { font-size: 0.75rem; color: var(--text-light); }
.contact-item-value { font-size: 1.125rem; font-weight: 600; color: var(--primary); }
.dark .contact-item-value { color: white; }

.contact-form {
  background: white; border: 1px solid var(--border); border-radius: 1rem;
  padding: 1.5rem; box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}
.dark .contact-form { background: #1e293b; border-color: #334155; }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: 0.875rem; font-weight: 500; color: var(--text); margin-bottom: 0.5rem; }
.dark .form-group label { color: #e2e8f0; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 0.75rem 1rem; border: 1px solid var(--border); border-radius: 0.75rem;
  font-size: 0.875rem; color: var(--text); background: white; outline: none; transition: all 0.2s;
}
.dark .form-group input, .dark .form-group select, .dark .form-group textarea { background: #0f172a; border-color: #334155; color: #f1f5f9; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(34,197,94,0.15); }
.form-row { display: grid; gap: 1.25rem; }
.form-success { text-align: center; padding: 3rem 1rem; }
.form-success h3 { font-size: 1.25rem; font-weight: 700; color: var(--primary); margin: 1rem 0 0.5rem; }
.dark .form-success h3 { color: var(--primary); }
.form-success p { color: var(--text-light); }

/* Map */
.map-container { border-radius: 1rem; overflow: hidden; border: 1px solid var(--border); box-shadow: 0 4px 20px rgba(0,0,0,0.05); }
.map-container iframe { width: 100%; height: 400px; border: 0; filter: grayscale(1); transition: filter 0.5s; }
.map-container iframe:hover { filter: grayscale(0); }

/* Portfolio */
.portfolio-grid { display: grid; gap: 1.5rem; }
.portfolio-card { background: var(--bg-alt); border: 1px solid var(--border); border-radius: 1rem; overflow: hidden; }
.portfolio-card .before-after { border-radius: 0; }
.portfolio-body { padding: 1.25rem; }
.portfolio-body h3 { font-size: 1.125rem; font-weight: 700; color: var(--primary); margin-bottom: 0.25rem; }
.dark .portfolio-body h3 { color: var(--primary); }
.portfolio-body .location { color: var(--accent); font-size: 0.875rem; font-weight: 500; margin-bottom: 0.5rem; }
.portfolio-body p { font-size: 0.875rem; color: var(--text-light); }

.stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; margin-top: 3rem; }
.stat-card { background: white; border: 1px solid var(--border); border-radius: 1rem; padding: 1.5rem; text-align: center; box-shadow: 0 4px 20px rgba(0,0,0,0.05); }
.dark .stat-card { background: #1e293b; border-color: #334155; }
.stat-card .number { font-size: 2rem; font-weight: 800; color: var(--accent); }
.dark .stat-card .number { color: var(--accent); }
.stat-card .label { font-size: 0.875rem; color: var(--text-light); }

/* Blog */
.blog-grid { display: grid; gap: 1.5rem; }
.blog-card { background: var(--bg-alt); border: 1px solid var(--border); border-radius: 1rem; overflow: hidden; transition: all 0.3s; text-decoration: none; color: inherit; display: block; }
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 20px 40px rgba(30,58,95,0.1); }
.blog-img { height: 200px; overflow: hidden; }
.blog-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.blog-card:hover .blog-img img { transform: scale(1.05); }
.blog-body { padding: 1.25rem; }
.blog-meta { display: flex; gap: 1rem; font-size: 0.75rem; color: var(--text-light); margin-bottom: 0.75rem; }
.blog-body h2 { font-size: 1.125rem; font-weight: 700; color: var(--primary); margin-bottom: 0.5rem; }
.dark .blog-body h2 { color: var(--primary); }
.blog-body h2:hover { color: var(--accent-dark); }
.blog-body p { font-size: 0.875rem; color: var(--text-light); margin-bottom: 1rem; }
.blog-link { display: inline-flex; align-items: center; gap: 0.25rem; color: var(--accent-dark); font-weight: 600; font-size: 0.875rem; }

/* Article page */
.article-hero-img { width: 100%; max-height: 420px; object-fit: cover; border-radius: 1rem; margin-bottom: 2rem; }
.article-content { max-width: 760px; margin: 0 auto; }
.article-content h2 { font-size: 1.5rem; font-weight: 700; color: var(--primary); margin: 2rem 0 1rem; }
.dark .article-content h2 { color: var(--primary); }
.article-content h3 { font-size: 1.15rem; font-weight: 700; color: var(--primary); margin: 1.5rem 0 0.75rem; }
.dark .article-content h3 { color: var(--primary); }
.article-content p { color: var(--text-light); line-height: 1.75; margin-bottom: 1.1rem; }
.article-content ul, .article-content ol { color: var(--text-light); line-height: 1.75; margin: 0 0 1.1rem 1.25rem; }
.article-content li { margin-bottom: 0.5rem; }
.article-content strong { color: var(--primary); }
.dark .article-content strong { color: var(--primary); }
.article-cta { background: var(--bg-alt); border: 1px solid var(--border); border-radius: 1rem; padding: 1.75rem; text-align: center; margin-top: 2.5rem; }
.article-cta h3 { margin-top: 0; }
.article-back { display: inline-flex; align-items: center; gap: 0.375rem; color: var(--accent-dark); font-weight: 600; font-size: 0.875rem; text-decoration: none; margin-bottom: 1.5rem; }

/* Page Header (for inner pages) */
.page-header {
  padding: 8rem 0 4rem;
  background: linear-gradient(135deg, #1e3a5f 0%, #0f172a 50%, #1e3a5f 100%);
  position: relative;
}
.page-header h1 { font-size: 2.5rem; font-weight: 700; color: white !important; margin-bottom: 1rem; }
.page-header p { font-size: 1.125rem; color: #cbd5e1; max-width: 700px; }

/* Service Detail */
.service-detail-grid { display: grid; gap: 1.5rem; margin-bottom: 3rem; }
.service-detail-item { display: flex; gap: 1.25rem; padding: 1.5rem; background: var(--bg-alt); border: 1px solid var(--border); border-radius: 1rem; }
.service-detail-icon { width: 48px; height: 48px; background: var(--accent-light); border-radius: 0.75rem; display: flex; align-items: center; justify-content: center; color: var(--accent-dark); flex-shrink: 0; }
.service-detail-item h3 { font-size: 1.125rem; font-weight: 700; color: var(--primary); margin-bottom: 0.5rem; }
.dark .service-detail-item h3 { color: var(--primary); }
.service-detail-item p { font-size: 0.875rem; color: var(--text-light); }

.process-grid { display: grid; gap: 1.5rem; margin-bottom: 3rem; }
.process-step { text-align: center; }
.process-step .number { font-size: 3rem; font-weight: 900; color: var(--accent-light); line-height: 1; margin-bottom: 0.5rem; }
.dark .process-step .number { color: rgba(34,197,94,0.15); }
.process-step h3 { font-weight: 700; color: var(--primary); margin-bottom: 0.5rem; }
.dark .process-step h3 { color: var(--primary); }
.process-step p { font-size: 0.875rem; color: var(--text-light); }

.info-box {
  background: linear-gradient(135deg, #1e3a5f 0%, #0f172a 100%);
  border-radius: 1rem; padding: 2rem; color: white;
}
.info-box h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 1rem; color: white !important; }
.info-box ul { list-style: none; }
.info-box li { display: flex; align-items: flex-start; gap: 0.75rem; margin-bottom: 0.75rem; color: #cbd5e1; }
.info-box li svg { color: #4ade80; flex-shrink: 0; margin-top: 0.25rem; }

/* Prices */
.price-grid { display: grid; gap: 1.5rem; margin-bottom: 2rem; }
.price-card { background: var(--bg-alt); border: 1px solid var(--border); border-radius: 1rem; padding: 1.5rem; }
.price-card h3 { font-size: 1.25rem; font-weight: 700; color: var(--primary); margin-bottom: 1rem; }
.dark .price-card h3 { color: var(--primary); }
.price-card ul { list-style: none; }
.price-card li { display: flex; align-items: flex-start; gap: 0.75rem; margin-bottom: 0.75rem; color: var(--text-light); }
.price-card li svg { color: var(--accent); flex-shrink: 0; margin-top: 0.125rem; }
.price-cta {
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  border-radius: 1rem; padding: 2rem; color: white; text-align: center;
}
.price-cta h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 1rem; }
.price-cta p { color: #dcfce7; margin-bottom: 1.5rem; }
.price-cta-btns { display: flex; flex-direction: column; gap: 0.75rem; }
.price-note {
  background: #fef3c7; border: 1px solid #fcd34d; border-radius: 0.75rem;
  padding: 1rem; text-align: center; font-size: 0.875rem; color: #92400e;
}
.dark .price-note { background: rgba(251,191,36,0.1); border-color: rgba(251,191,36,0.3); color: #fbbf24; }

/* Itemized price list + FAQ */
.price-item-list { list-style: none; }
.price-item-row {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 0.9rem 0; border-bottom: 1px solid var(--border);
}
.price-item-row:last-child { border-bottom: none; }
.price-item-name { color: var(--primary); font-weight: 600; }
.dark .price-item-name { color: var(--primary); }
.price-item-value { color: var(--accent-dark); font-weight: 700; white-space: nowrap; }
.faq-item { border-bottom: 1px solid var(--border); padding: 1.25rem 0; }
.faq-item:last-child { border-bottom: none; }
.faq-item h3 { font-size: 1.05rem; font-weight: 700; color: var(--primary); margin-bottom: 0.5rem; }
.dark .faq-item h3 { color: var(--primary); }
.faq-item p { color: var(--text-light); line-height: 1.6; }

/* Social buttons */
.social-btns { display: flex; justify-content: center; gap: 1rem; margin-top: 1.5rem; }
.social-btn-fb { display: inline-flex; align-items: center; gap: 0.5rem; background: #1877F2; color: white; padding: 0.75rem 1.5rem; border-radius: 0.75rem; text-decoration: none; font-weight: 600; }
.social-btn-ig { display: inline-flex; align-items: center; gap: 0.5rem; background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); color: white; padding: 0.75rem 1.5rem; border-radius: 0.75rem; text-decoration: none; font-weight: 600; }

/* Responsive */
@media (min-width: 640px) {
  .hero h1 { font-size: 3rem; }
  .hero-btns { flex-direction: row; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
  .service-detail-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(4, 1fr); }
  .price-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-btns { flex-direction: row; }
  .price-cta-btns { flex-direction: row; justify-content: center; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-bottom { flex-direction: row; justify-content: space-between; }
}

@media (min-width: 1024px) {
  .container { padding: 0 2rem; }
  .nav-links { display: flex; }
  .nav-phone { display: inline-flex; }
  .menu-toggle { display: none; }
  .hero h1 { font-size: 3.5rem; }
  .hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
  .hero-img { display: block; }
  .services-grid { grid-template-columns: repeat(4, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(3, 1fr); }
  .portfolio-grid { grid-template-columns: repeat(3, 1fr); }
  .blog-grid { grid-template-columns: repeat(3, 1fr); }
  .contact-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
  .section { padding: 5rem 0; }
  .page-header { padding: 10rem 0 5rem; }
  .page-header h1 { font-size: 3rem; }
}

/* Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #f1f5f9; }
::-webkit-scrollbar-thumb { background: #94a3b8; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #64748b; }
