
* { box-sizing: border-box; }
body { margin: 0; font-family: 'Poppins', sans-serif; color: #111827; background: #f8fafc; }
a { color: inherit; text-decoration: none; }
.container { width: min(1120px, 92%); margin: 0 auto; }
.topbar { background: #ffffff; border-bottom: 1px solid #e5e7eb; position: sticky; top: 0; z-index: 60; }
.topbar-inner { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 12px 0; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 700; font-family: 'Playfair Display', serif; }
.brand img { width: 34px; height: 34px; object-fit: cover; border-radius: 999px; }
.quick-actions { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.quick-link { font-size: 14px; padding: 8px 12px; border-radius: 999px; background: #eef2ff; color: #1e3a8a; }
.quick-link.whatsapp { background: #dcfce7; color: #166534; }
.main-nav { background: #0f172a; color: #cbd5e1; position: sticky; top: 59px; z-index: 50; border-bottom: 1px solid #1f2937; }
.nav-inner { display: flex; align-items: center; justify-content: center; min-height: 48px; }
.menu-toggle { display: none; background: transparent; border: 0; color: #fff; font-size: 20px; padding: 10px; }
.nav-links { display: flex; gap: 18px; }
.nav-links a { padding: 10px 8px; font-size: 14px; color: #cbd5e1; border-bottom: 2px solid transparent; }
.nav-links a.active, .nav-links a:hover { color: #fff; border-bottom-color: var(--accent); }
.mobile-menu { display: none; flex-direction: column; border-top: 1px solid #1f2937; background: #0f172a; }
.mobile-menu a { padding: 12px 16px; border-bottom: 1px solid #1f2937; color: #e5e7eb; }
.hero { position: relative; min-height: 72vh; background-size: cover; background-position: center; display: grid; align-items: center; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(120deg, rgba(3,7,18,0.78), rgba(30,41,59,0.62)); }
.hero-content { position: relative; z-index: 2; color: #fff; text-align: center; padding: 64px 0; }
.hero h1 { margin: 0; font-family: 'Playfair Display', serif; font-size: clamp(36px, 7vw, 64px); line-height: 1.05; }
.hero-subtitle { font-size: clamp(18px, 3vw, 30px); opacity: 0.95; margin: 14px 0 8px; }
.hero-description { max-width: 760px; margin: 0 auto; color: #e2e8f0; }
.hero-actions { margin-top: 28px; display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }
.btn { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; padding: 12px 20px; border-radius: 12px; border: 0; cursor: pointer; transition: 0.2s transform, 0.2s opacity; }
.btn:hover { transform: translateY(-2px); }
.btn.primary { color: #fff; background: linear-gradient(135deg, var(--primary), var(--secondary)); }
.btn.whatsapp { color: #fff; background: #22c55e; }
.btn.light { color: #0f172a; background: #fff; }
.section { padding: 72px 0; }
.section.alt { background: #eef2ff; }
.section-title { margin: 0 0 24px; text-align: center; font-family: 'Playfair Display', serif; font-size: clamp(28px, 4vw, 42px); }
.section-title.left { text-align: left; }
.cards-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.card { background: #fff; border: 1px solid #e5e7eb; border-radius: 18px; padding: 20px; box-shadow: 0 8px 24px rgba(15,23,42,0.06); transition: transform 0.3s, box-shadow 0.3s; }
.card:hover { transform: translateY(-6px); box-shadow: 0 12px 32px rgba(15,23,42,0.12); }
.card-icon { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 12px; background: #eef2ff; color: var(--primary); margin-bottom: 10px; }
.card h3 { margin: 6px 0; font-size: 20px; }
.card p { color: #475569; margin: 8px 0 12px; min-height: 62px; }
.card .price { font-weight: 700; color: var(--primary); margin-bottom: 8px; }
.card ul { margin: 8px 0 0 18px; color: #334155; font-size: 14px; display: grid; gap: 6px; }
.gallery-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.gallery-item { border-radius: 14px; overflow: hidden; border: 1px solid #dbeafe; background: #fff; }
.gallery-item img { width: 100%; height: 250px; object-fit: cover; display: block; transition: transform 0.4s; }
.gallery-item:hover img { transform: scale(1.05); }
.cta-panel { text-align: center; background: linear-gradient(135deg, #0f172a, #1e293b); color: #fff; padding: 34px; border-radius: 18px; }
.cta-panel h3 { margin: 0 0 10px; font-size: 28px; font-family: 'Playfair Display', serif; }
.cta-panel p { color: #cbd5e1; margin: 0 0 18px; }
.page-hero { background: linear-gradient(130deg, rgba(15,23,42,1), rgba(30,41,59,1)); color: #fff; padding: 56px 0; }
.page-hero h1 { margin: 0; font-family: 'Playfair Display', serif; font-size: clamp(30px, 5vw, 52px); }
.page-hero p { color: #dbeafe; margin-top: 10px; max-width: 760px; }
.faq-list { display: grid; gap: 12px; }
.faq-item { background: #fff; border: 1px solid #dbeafe; border-radius: 12px; padding: 14px 16px; }
.faq-item summary { cursor: pointer; font-weight: 600; }
.faq-item p { color: #475569; margin: 10px 0 0; }
.inline-cta { margin-top: 20px; }
.two-col { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 22px; }
.check-list { margin: 16px 0 0 18px; color: #334155; display: grid; gap: 8px; }
.stats-card { background: #0f172a; color: #e2e8f0; border-radius: 16px; padding: 24px; display: grid; gap: 14px; align-content: start; }
.stats-card strong { display: block; font-size: 28px; color: #fff; }
.contact-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.contact-card { background: #fff; border: 1px solid #e5e7eb; border-radius: 14px; padding: 20px; }
.contact-card h3 { margin-top: 0; }
.contact-card p { margin: 8px 0; color: #334155; }
.map-frame { border-radius: 16px; overflow: hidden; border: 1px solid #dbeafe; min-height: 360px; background: #fff; }
.map-frame iframe { width: 100%; height: 360px; border: 0; display: block; }
.map-fallback { min-height: 320px; display: grid; place-items: center; color: #475569; }
.site-footer { background: #020617; color: #cbd5e1; padding-top: 42px; margin-top: 40px; }
.footer-grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 16px; padding-bottom: 28px; }
.footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.footer-brand img { width: 36px; height: 36px; border-radius: 999px; object-fit: cover; }
.site-footer h4 { margin: 0 0 10px; color: #fff; }
.site-footer p { margin: 6px 0; color: #94a3b8; }
.site-footer a { color: #cbd5e1; }
.social-links { display: flex; gap: 10px; margin-top: 10px; }
.social-links a { width: 34px; height: 34px; display: grid; place-items: center; background: #1e293b; border-radius: 999px; color: #e2e8f0; transition: background 0.2s, transform 0.2s; }
.social-links a:hover { background: var(--primary); transform: scale(1.1); }
.copyright { border-top: 1px solid #1e293b; text-align: center; color: #64748b; padding: 14px 0; font-size: 13px; }
.google-badge { display: inline-flex; align-items: center; gap: 10px; background: rgba(255,255,255,0.15); backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,0.25); border-radius: 999px; padding: 8px 18px 8px 14px; margin-top: 18px; font-size: 15px; color: #fff; }
.google-badge img { width: 22px; height: 22px; }
.google-badge .stars { color: #fbbf24; letter-spacing: 1px; font-size: 16px; }
.google-badge .rating-text { font-weight: 600; }
.google-badge .rating-label { opacity: 0.85; font-weight: 400; }
.menu-container, .prices-container, .catalog-container { max-width: 780px; margin: 0 auto; }
.menu-section, .price-section, .catalog-section { margin-bottom: 36px; }
.menu-section-title, .price-section-title, .catalog-section-title { font-family: 'Playfair Display', serif; font-size: 24px; margin: 0 0 16px; padding-bottom: 10px; border-bottom: 2px solid var(--primary); display: flex; align-items: center; gap: 10px; }
.menu-section-title i, .price-section-title i, .catalog-section-title i { color: var(--primary); }
.menu-item { display: flex; justify-content: space-between; align-items: flex-start; padding: 14px 0; border-bottom: 1px dashed #e5e7eb; }
.menu-item-info h4 { margin: 0 0 4px; font-size: 16px; color: #0f172a; }
.menu-item-info p { margin: 0; color: #64748b; font-size: 14px; }
.menu-item-price { font-weight: 700; color: var(--primary); white-space: nowrap; padding-left: 16px; font-size: 16px; }
.price-row { display: flex; justify-content: space-between; align-items: center; padding: 12px 16px; border-bottom: 1px solid #f1f5f9; border-radius: 8px; }
.price-row:nth-child(even) { background: #f8fafc; }
.price-row-name { font-weight: 500; color: #0f172a; }
.price-note { display: block; font-size: 13px; color: #94a3b8; }
.price-row-amount { font-weight: 700; color: var(--primary); white-space: nowrap; }
.catalog-item { display: flex; justify-content: space-between; align-items: center; padding: 10px 16px; border-bottom: 1px solid #f1f5f9; }
.catalog-item:nth-child(even) { background: #f8fafc; border-radius: 8px; }
.catalog-item-name { color: #0f172a; }
.catalog-item-price { font-weight: 600; color: var(--primary); white-space: nowrap; }
.packages-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.package-card { position: relative; background: #fff; border: 1px solid #e5e7eb; border-radius: 18px; padding: 28px 22px; text-align: center; transition: transform 0.3s, box-shadow 0.3s; }
.package-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(15,23,42,0.1); }
.package-highlight { border-color: var(--primary); box-shadow: 0 8px 30px rgba(15,23,42,0.1); transform: scale(1.04); }
.package-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--primary); color: #fff; padding: 4px 16px; border-radius: 999px; font-size: 13px; font-weight: 600; white-space: nowrap; }
.package-card h3 { margin: 10px 0 6px; font-family: 'Playfair Display', serif; font-size: 24px; }
.package-price { font-size: 28px; font-weight: 700; color: var(--primary); margin: 8px 0 16px; }
.package-features { list-style: none; padding: 0; margin: 0 0 20px; text-align: left; display: grid; gap: 8px; }
.package-features li { display: flex; align-items: center; gap: 8px; font-size: 14px; color: #334155; }
.package-features li i { color: var(--primary); font-size: 13px; }

/* ── Premium sections: Why Choose Us ──────────────────────────────── */
.why-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.why-card { background: #fff; border: 1px solid #e5e7eb; border-radius: 18px; padding: 24px; text-align: center; transition: transform 0.3s, box-shadow 0.3s; }
.why-card:hover { transform: translateY(-6px); box-shadow: 0 12px 32px rgba(15,23,42,0.12); }
.why-icon { width: 56px; height: 56px; display: grid; place-items: center; border-radius: 14px; background: linear-gradient(135deg, var(--primary), var(--secondary)); color: #fff; font-size: 22px; margin: 0 auto 14px; }
.why-card h3 { margin: 0 0 8px; font-size: 18px; }
.why-card p { color: #475569; margin: 0; font-size: 14px; }

/* ── Premium sections: Process Steps ──────────────────────────────── */
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; max-width: 900px; margin: 0 auto; }
.step-item { display: flex; gap: 16px; align-items: flex-start; }
.step-number { flex-shrink: 0; width: 48px; height: 48px; display: grid; place-items: center; border-radius: 50%; background: linear-gradient(135deg, var(--primary), var(--secondary)); color: #fff; font-size: 20px; font-weight: 700; }
.step-content h3 { margin: 0 0 4px; font-size: 18px; }
.step-content p { margin: 0; color: #475569; font-size: 14px; }

/* ── Premium sections: Team ───────────────────────────────────────── */
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; max-width: 900px; margin: 0 auto; }
.team-card { background: #fff; border: 1px solid #e5e7eb; border-radius: 18px; padding: 24px; text-align: center; transition: transform 0.3s, box-shadow 0.3s; }
.team-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(15,23,42,0.1); }
.team-photo { width: 80px; height: 80px; margin: 0 auto 14px; border-radius: 50%; overflow: hidden; background: #eef2ff; }
.team-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-initials { width: 80px; height: 80px; display: grid; place-items: center; font-size: 28px; font-weight: 700; color: var(--primary); background: #eef2ff; border-radius: 50%; }
.team-card h3 { margin: 0 0 4px; font-size: 18px; }
.team-role { display: block; color: var(--primary); font-size: 14px; font-weight: 500; margin-bottom: 8px; }
.team-card p { color: #475569; margin: 0; font-size: 14px; }

/* ── Premium sections: Contact Form ───────────────────────────────── */
.contact-form { max-width: 720px; margin: 0 auto; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-group { display: flex; flex-direction: column; }
.form-group.full { margin-bottom: 16px; }
.form-group label { font-weight: 500; margin-bottom: 6px; font-size: 14px; color: #334155; }
.form-group input, .form-group textarea { padding: 12px 14px; border: 1px solid #d1d5db; border-radius: 10px; font-family: inherit; font-size: 15px; transition: border-color 0.2s, box-shadow 0.2s; }
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(59,130,246,0.15); }
.form-submit { font-size: 16px; padding: 14px 28px; }
.form-result { margin-top: 14px; padding: 10px 14px; border-radius: 10px; font-size: 14px; display: none; }
.form-result.success { display: block; background: #dcfce7; color: #166534; }
.form-result.error { display: block; background: #fee2e2; color: #991b1b; }

/* ── Premium sections: Testimonials ───────────────────────────────── */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.testimonial-card { background: #fff; border: 1px solid #e5e7eb; border-radius: 18px; padding: 24px; transition: transform 0.3s, box-shadow 0.3s; }
.testimonial-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(15,23,42,0.1); }
.testimonial-stars { color: #fbbf24; font-size: 16px; margin-bottom: 10px; }
.testimonial-text { color: #334155; font-style: italic; margin: 0 0 14px; line-height: 1.6; }
.testimonial-author { display: flex; align-items: center; gap: 10px; }
.testimonial-avatar { width: 40px; height: 40px; border-radius: 50%; overflow: hidden; background: #eef2ff; flex-shrink: 0; }
.testimonial-avatar img { width: 100%; height: 100%; object-fit: cover; }
.testimonial-initials { width: 40px; height: 40px; display: grid; place-items: center; font-size: 16px; font-weight: 600; color: var(--primary); }
.testimonial-author strong { font-size: 15px; }

/* ── Staggered reveal animations ──────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(16px); transition: 0.45s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.stagger-1 { transition-delay: 0.05s; }
.stagger-2 { transition-delay: 0.12s; }
.stagger-3 { transition-delay: 0.19s; }
.stagger-4 { transition-delay: 0.26s; }
.stagger-5 { transition-delay: 0.33s; }
.stagger-6 { transition-delay: 0.40s; }

/* ── Animated counters ────────────────────────────────────────────── */
.stats-card strong[data-counter] { display: inline-block; }

/* ── WhatsApp float ───────────────────────────────────────────────── */
.wa-float { position: fixed; bottom: 24px; right: 24px; z-index: 999; width: 60px; height: 60px; border-radius: 50%; background: #25d366; color: #fff; display: grid; place-items: center; font-size: 30px; box-shadow: 0 4px 14px rgba(37,211,102,0.45); transition: transform 0.2s, box-shadow 0.2s; animation: wa-pulse 2s infinite; }
.wa-float:hover { transform: scale(1.1); box-shadow: 0 6px 20px rgba(37,211,102,0.6); }
@keyframes wa-pulse { 0%,100% { box-shadow: 0 4px 14px rgba(37,211,102,0.45); } 50% { box-shadow: 0 4px 24px rgba(37,211,102,0.7); } }

/* ── Responsive ───────────────────────────────────────────────────── */
@media (max-width: 960px) {
  .cards-grid, .why-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .gallery-grid, .testimonials-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .two-col { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 700px) {
  .main-nav { top: 56px; }
  .quick-actions { display: none; }
  .nav-links { display: none; }
  .menu-toggle { display: inline-flex; }
  .mobile-menu.open { display: flex; }
  .cards-grid, .gallery-grid, .testimonials-grid, .contact-grid, .footer-grid, .why-grid, .team-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .hero { min-height: 66vh; }
  .packages-grid { grid-template-columns: 1fr; }
  .package-highlight { transform: none; }
}
