@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700;800;900&family=Fredoka+One&display=swap');

:root {
  --bg: #faf6f0;
  --fg: #1e1e2f;
  --card: #ffffff;
  --primary: #e8734a;
  --primary-fg: #ffffff;
  --secondary: #2ba89d;
  --secondary-fg: #ffffff;
  --accent: #f0c030;
  --accent-fg: #1e1e2f;
  --muted: #ede8df;
  --muted-fg: #6b6b7b;
  --border: #e0dbd2;
  --radius: 1rem;
  --fun-purple: #9b59d0;
  --fun-pink: #e84393;
  --fun-blue: #4a90d9;
  --fun-green: #27ae60;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Nunito', sans-serif; background: var(--bg); color: var(--fg); line-height: 1.6; }
h1, h2, h3, h4, h5, h6 { font-family: 'Fredoka One', cursive; font-weight: 400; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 1rem; }

/* Header */
.header { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,0.95); backdrop-filter: blur(10px); box-shadow: 0 1px 3px rgba(0,0,0,0.05); }
.header .container { display: flex; align-items: center; justify-content: space-between; padding-top: 0.75rem; padding-bottom: 0.75rem; }
.header .logo { display: flex; align-items: center; gap: 0.5rem; }
.header .logo-text { font-family: 'Fredoka One', cursive; font-size: 1.5rem; color: var(--primary); }
.nav { display: flex; align-items: center; gap: 1.5rem; }
.nav a { font-size: 0.875rem; font-weight: 700; color: var(--muted-fg); transition: color 0.2s; }
.nav a:hover, .nav a.active { color: var(--primary); }
.header-actions { display: flex; align-items: center; gap: 0.75rem; }
.header-phone { display: flex; align-items: center; gap: 0.25rem; font-size: 0.875rem; font-weight: 700; color: var(--secondary); }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; padding: 0.625rem 1.5rem; border-radius: 50px; font-weight: 700; font-size: 0.875rem; border: none; cursor: pointer; transition: all 0.2s; font-family: 'Nunito', sans-serif; }
.btn-primary { background: var(--primary); color: var(--primary-fg); }
.btn-primary:hover { opacity: 0.9; }
.btn-outline { background: transparent; border: 2px solid var(--border); color: var(--fg); }
.btn-outline:hover { border-color: var(--primary); color: var(--primary); }
.btn-hero-outline { background: transparent; border: 2px solid #fff; color: #fff; }
.btn-hero-outline:hover { background: rgba(255,255,255,0.1); }
.btn-lg { padding: 0.875rem 2rem; font-size: 1.125rem; }
.btn-white { background: #fff; color: var(--primary); }
.btn-white:hover { opacity: 0.9; }
.btn-block { width: 100%; }
.hamburger { display: none; background: none; border: none; font-size: 1.5rem; cursor: pointer; }
.mobile-nav { display: none; }

/* Hero */
.hero { position: relative; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { position: absolute; inset: 0; background: rgba(30,30,47,0.5); }
.hero-content { position: relative; text-align: center; padding: 6rem 1rem; }
.hero h1 { font-size: 3rem; color: #fff; margin-bottom: 1.5rem; line-height: 1.2; }
.hero h1 span { color: var(--accent); }
.hero p { font-size: 1.125rem; color: rgba(255,255,255,0.9); max-width: 42rem; margin: 0 auto 2rem; }
.hero-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* Trust Bar */
.trust-bar { background: var(--card); border-bottom: 1px solid var(--border); padding: 1rem 0; }
.trust-bar .container { display: flex; flex-wrap: wrap; justify-content: center; gap: 2rem; font-size: 0.875rem; font-weight: 600; color: var(--muted-fg); }

/* Section */
.section { padding: 5rem 0; }
.section-muted { background: var(--muted); }
.section-title { text-align: center; margin-bottom: 3rem; }
.section-title h2 { font-size: 2rem; margin-bottom: 0.5rem; }
.section-title p { color: var(--muted-fg); max-width: 36rem; margin: 0 auto; }

/* Cards Grid */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 3rem; align-items: center; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

/* Service Card */
.service-card { background: var(--card); border-radius: var(--radius); overflow: hidden; box-shadow: 0 4px 15px rgba(0,0,0,0.08); transition: box-shadow 0.3s; }
.service-card:hover { box-shadow: 0 8px 25px rgba(0,0,0,0.12); }
.service-card img { height: 12rem; width: 100%; object-fit: cover; }
.service-card .card-body { padding: 1.5rem; }
.service-card h3 { font-size: 1.25rem; margin-bottom: 0.75rem; }
.service-card p { font-size: 0.875rem; color: var(--muted-fg); margin-bottom: 1rem; }
.service-card a { font-size: 0.875rem; font-weight: 700; color: var(--primary); }
.service-card a:hover { text-decoration: underline; }

/* Review Card */
.review-card { background: var(--card); border-radius: var(--radius); padding: 1.5rem; box-shadow: 0 2px 8px rgba(0,0,0,0.06); border: 1px solid var(--border); }
.stars { display: flex; gap: 0.25rem; margin-bottom: 0.75rem; color: var(--accent); }
.review-card .text { font-size: 0.875rem; color: rgba(30,30,47,0.8); font-style: italic; margin-bottom: 1rem; line-height: 1.6; }
.review-card .author { font-weight: 700; font-size: 0.875rem; }
.review-card .date { font-size: 0.75rem; color: var(--muted-fg); }

/* CTA Section */
.cta { background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 50%, var(--secondary) 100%); padding: 5rem 0; text-align: center; }
.cta h2 { color: #fff; font-size: 2rem; margin-bottom: 1rem; }
.cta p { color: rgba(255,255,255,0.9); max-width: 36rem; margin: 0 auto 2rem; font-size: 1.125rem; }

/* Page Header */
.page-header { background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 50%, var(--secondary) 100%); padding: 4rem 0; text-align: center; }
.page-header h1 { color: #fff; font-size: 2.5rem; margin-bottom: 0.5rem; }
.page-header p { color: rgba(255,255,255,0.8); font-size: 1.125rem; }

/* Pricing Card */
.pricing-card { background: var(--card); border-radius: var(--radius); padding: 2rem; box-shadow: 0 4px 15px rgba(0,0,0,0.08); position: relative; }
.pricing-card.popular { background: var(--primary); color: var(--primary-fg); outline: 4px solid var(--accent); }
.pricing-badge { position: absolute; top: -0.75rem; left: 50%; transform: translateX(-50%); background: var(--accent); color: var(--accent-fg); font-size: 0.75rem; font-weight: 700; padding: 0.25rem 1rem; border-radius: 50px; }
.pricing-card h3 { font-size: 1.25rem; margin-bottom: 0.5rem; }
.pricing-card .price { font-family: 'Fredoka One', cursive; font-size: 2.5rem; }
.pricing-card .per { font-size: 0.875rem; opacity: 0.7; }
.pricing-card .desc { font-size: 0.875rem; opacity: 0.7; margin-bottom: 1.5rem; }
.pricing-card ul { list-style: none; margin-bottom: 2rem; }
.pricing-card ul li { font-size: 0.875rem; padding: 0.375rem 0; display: flex; align-items: center; gap: 0.5rem; }
.pricing-card ul li::before { content: "✓"; font-weight: 700; }

/* Value Card */
.value-card { background: var(--card); border-radius: var(--radius); padding: 1.5rem; text-align: center; box-shadow: 0 2px 8px rgba(0,0,0,0.06); }
.value-card .icon { font-size: 2.5rem; margin-bottom: 1rem; }
.value-card h3 { font-size: 1.125rem; margin-bottom: 0.5rem; }
.value-card p { font-size: 0.875rem; color: var(--muted-fg); }

/* Contact */
.contact-info { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-item { display: flex; gap: 1rem; align-items: flex-start; }
.contact-icon { width: 2.5rem; height: 2.5rem; border-radius: 50%; background: rgba(232,115,74,0.1); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 1.25rem; }
.contact-item h3 { font-family: 'Nunito', sans-serif; font-weight: 700; font-size: 1rem; margin-bottom: 0.25rem; }
.contact-item p { font-size: 0.875rem; color: var(--muted-fg); }
.contact-item a { color: var(--muted-fg); }
.contact-item a:hover { color: var(--primary); }

/* Form */
.form-group { margin-bottom: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-input, .form-textarea { width: 100%; padding: 0.75rem 1rem; border: 1px solid var(--border); border-radius: 0.75rem; font-size: 0.875rem; font-family: 'Nunito', sans-serif; background: var(--card); }
.form-input:focus, .form-textarea:focus { outline: none; border-color: var(--primary); }
.form-textarea { min-height: 120px; resize: vertical; }

/* Prose */
.prose { max-width: 48rem; margin: 0 auto; }
.prose h2 { font-size: 1.5rem; margin-bottom: 1rem; margin-top: 0; }
.prose p { color: var(--muted-fg); margin-bottom: 1.5rem; }
.prose ul { color: var(--muted-fg); margin-bottom: 1.5rem; padding-left: 1.5rem; }
.prose ul li { margin-bottom: 0.25rem; }

/* Footer */
.footer { background: var(--fg); color: var(--bg); }
.footer .container { padding-top: 3rem; padding-bottom: 3rem; }
.footer-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
.footer h3 { font-size: 1.5rem; color: var(--accent); margin-bottom: 1rem; }
.footer h4 { font-weight: 700; font-size: 1.125rem; margin-bottom: 1rem; }
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 0.5rem; }
.footer ul li a { font-size: 0.875rem; color: rgba(250,246,240,0.7); transition: color 0.2s; }
.footer ul li a:hover { color: var(--accent); }
.footer .footer-contact p { font-size: 0.875rem; color: rgba(250,246,240,0.7); display: flex; align-items: flex-start; gap: 0.5rem; margin-bottom: 0.75rem; }
.footer-bottom { border-top: 1px solid rgba(250,246,240,0.1); padding: 1rem 0; text-align: center; font-size: 0.75rem; color: rgba(250,246,240,0.5); }

/* Service detail */
.service-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; margin-bottom: 4rem; }
.service-detail.reverse { direction: ltr; }
.service-detail.reverse img { order: 2; }
.service-detail.reverse .service-detail-content { order: 1; }
.service-detail img { border-radius: var(--radius); box-shadow: 0 4px 15px rgba(0,0,0,0.1); width: 100%; height: 16rem; object-fit: cover; }
.service-detail h2 { font-size: 1.5rem; margin-bottom: 1rem; }
.service-detail p { color: var(--muted-fg); margin-bottom: 1rem; }
.feature-list { display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem; margin-bottom: 1.5rem; list-style: none; }
.feature-list li { font-size: 0.875rem; display: flex; align-items: center; gap: 0.5rem; }
.feature-list li::before { content: ""; width: 0.5rem; height: 0.5rem; border-radius: 50%; background: var(--secondary); flex-shrink: 0; }

/* Map */
.map-container { border-radius: var(--radius); overflow: hidden; box-shadow: 0 2px 8px rgba(0,0,0,0.06); margin-top: 2rem; }

/* Responsive */
@media (max-width: 768px) {
  .nav, .header-actions { display: none; }
  .hamburger { display: block; }
  .mobile-nav.open { display: block; background: var(--card); border-top: 1px solid var(--border); padding: 1rem; }
  .mobile-nav a { display: block; padding: 0.75rem 0; font-size: 0.875rem; font-weight: 700; border-bottom: 1px solid rgba(0,0,0,0.05); }
  .grid-3, .grid-4, .footer-grid { grid-template-columns: 1fr; }
  .grid-2, .service-detail { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2rem; }
  .hero-content { padding: 4rem 1rem; }
  .form-row { grid-template-columns: 1fr; }
  .service-detail.reverse img { order: 0; }
  .service-detail.reverse .service-detail-content { order: 0; }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}
