/* ─── Reset & Base ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary: #0369a1;
  --primary-dark: #075985;
  --primary-light: #e0f2fe;
  --accent: #0891b2;
  --text: #1e293b;
  --text-muted: #64748b;
  --bg: #ffffff;
  --bg-alt: #f8fafc;
  --bg-dark: #0f172a;
  --border: #e2e8f0;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.12);
  --radius: 12px;
  --radius-lg: 20px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Heebo', 'Segoe UI', Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  font-size: 16px;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.25s ease;
}
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(3,105,161,0.35); }
.btn-outline { background: transparent; color: var(--primary); border: 2px solid var(--primary); }
.btn-outline:hover { background: var(--primary-light); }
.btn-white { background: #fff; color: var(--primary); }
.btn-white:hover { background: var(--primary-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.15); }

.section-label {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--primary-light);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  color: var(--text);
  line-height: 1.25;
  margin-bottom: 16px;
}

.section-subtitle { font-size: 1.05rem; color: var(--text-muted); max-width: 600px; }

/* ─── Top bar ─── */
#topbar {
  background: var(--primary);
  color: rgba(255,255,255,0.92);
  font-size: 13px;
  padding: 8px 0;
  text-align: center;
  transition: margin-top 0.3s ease;
  position: sticky;
  top: 0;
  z-index: 1001;
}
#topbar a { color: #fff; font-weight: 600; }
#topbar .sep { margin: 0 16px; opacity: 0.4; }

/* ─── Navbar ─── */
#navbar {
  position: fixed;
  top: 40px; right: 0; left: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
#navbar.scrolled { box-shadow: var(--shadow); }

.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }

.nav-logo { font-size: 1.4rem; font-weight: 800; color: var(--primary); }
.nav-logo span { color: var(--accent); }

.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a { font-size: 15px; font-weight: 500; color: var(--text); transition: color 0.2s; }
.nav-links a:hover { color: var(--primary); }

.nav-cta { display: flex; gap: 12px; align-items: center; }

.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: all 0.3s; }

.mobile-menu { display: none; flex-direction: column; background: #fff; border-top: 1px solid var(--border); padding: 16px 24px 24px; gap: 8px; }
.mobile-menu a { padding: 10px 0; font-size: 16px; font-weight: 500; border-bottom: 1px solid var(--border); color: var(--text); }
.mobile-menu.open { display: flex; }

/* ─── Hero ─── */
#hero {
  min-height: 92vh;
  padding-top: 112px;
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 40%, #bae6fd 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(14,165,233,0.12) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(3,105,161,0.1) 0%, transparent 60%);
}

.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; position: relative; z-index: 1; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; border: 1px solid var(--border); border-radius: 50px;
  padding: 8px 16px; font-size: 14px; font-weight: 600; color: var(--primary);
  margin-bottom: 24px; box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.hero-badge .dot { width: 8px; height: 8px; background: #22c55e; border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.6; transform: scale(1.3); } }

.hero-title { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 900; color: var(--text); line-height: 1.15; margin-bottom: 20px; }
.hero-title .highlight { color: var(--primary); position: relative; }
.hero-title .highlight::after {
  content: ''; position: absolute; bottom: 4px; right: 0; left: 0; height: 4px;
  background: var(--accent); border-radius: 2px; opacity: 0.35;
}

.hero-tagline {
  font-size: 14px; font-weight: 600; color: var(--primary); letter-spacing: 0.5px;
  margin-bottom: 16px; padding: 10px 18px; background: var(--primary-light);
  border-radius: 8px; display: inline-block;
}
.hero-desc { font-size: 1.1rem; color: var(--text-muted); margin-bottom: 36px; max-width: 480px; }

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 16px; }

.hero-stats { display: flex; gap: 32px; flex-wrap: wrap; }
.hero-stat strong { display: block; font-size: 1.8rem; font-weight: 800; color: var(--primary); }
.hero-stat span { font-size: 13px; color: var(--text-muted); }

.hero-visual { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.hero-visual img { width: 100%; height: 460px; object-fit: cover; }

/* ─── Trust Bar ─── */
#trust { background: var(--bg-dark); padding: 28px 0; }
.trust-inner { display: flex; align-items: center; justify-content: center; gap: 48px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 10px; color: #94a3b8; font-size: 14px; font-weight: 500; }
.trust-item .icon { font-size: 20px; }

/* ─── Local Intro ─── */
#local-intro { padding: 80px 0; background: var(--bg); }
.local-intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.local-intro-text p { color: var(--text-muted); font-size: 1.02rem; margin-bottom: 18px; line-height: 1.8; }
.local-intro-list { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-top: 24px; }
.local-intro-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 15px; color: var(--text); }
.local-intro-list li::before { content: '✓'; color: var(--primary); font-weight: 800; flex-shrink: 0; }
.local-intro-img { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.local-intro-img img { width: 100%; height: 380px; object-fit: cover; }

/* ─── Services ─── */
#services { padding: 90px 0; background: var(--bg-alt); }
.services-header { text-align: center; margin-bottom: 56px; }
.services-header .section-subtitle { margin: 0 auto; }
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.service-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 30px 24px; transition: all 0.3s ease; cursor: default;
}
.service-card:hover { border-color: var(--primary); box-shadow: 0 20px 60px rgba(3,105,161,0.15); transform: translateY(-8px); }
.service-icon {
  width: 56px; height: 56px; background: var(--primary-light); border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center; font-size: 26px;
  margin-bottom: 18px; transition: background 0.3s;
}
.service-card:hover .service-icon { background: var(--primary); }
.service-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; color: var(--text); }
.service-card p { font-size: 13.5px; color: var(--text-muted); line-height: 1.6; }

/* ─── Why Us (compact) ─── */
#why { padding: 90px 0; background: var(--bg); }
.why-features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 16px; }
.why-feature-card { text-align: center; padding: 28px 20px; }
.why-feature-icon {
  width: 56px; height: 56px; background: var(--primary-light); border-radius: 14px;
  display: flex; align-items: center; justify-content: center; font-size: 26px;
  margin: 0 auto 16px;
}
.why-feature-card h4 { font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.why-feature-card p { font-size: 13.5px; color: var(--text-muted); }

/* ─── Testimonials ─── */
#testimonials { padding: 90px 0; background: linear-gradient(135deg, #0369a1, #0891b2); }
.testimonials-header { text-align: center; margin-bottom: 48px; }
.testimonials-header .section-label { background: rgba(255,255,255,0.2); color: #fff; }
.testimonials-header .section-title { color: #fff; }
.testimonials-header .section-subtitle { color: rgba(255,255,255,0.75); margin: 0 auto; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card {
  background: rgba(255,255,255,0.12); backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.2); border-radius: var(--radius-lg); padding: 28px;
}
.stars { font-size: 18px; margin-bottom: 14px; }
.testimonial-card p { color: rgba(255,255,255,0.9); font-size: 14.5px; line-height: 1.7; margin-bottom: 20px; }
.reviewer { display: flex; align-items: center; gap: 12px; }
.reviewer-avatar {
  width: 40px; height: 40px; background: rgba(255,255,255,0.25); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 16px;
}
.reviewer strong { display: block; color: #fff; font-size: 14px; }
.reviewer span { font-size: 12px; color: rgba(255,255,255,0.65); }

/* ─── Mini Gallery ─── */
#mini-gallery { padding: 90px 0; background: var(--bg-alt); }
.mini-gallery-header { text-align: center; margin-bottom: 40px; }
.mini-gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.mini-gal-item { border-radius: var(--radius); overflow: hidden; position: relative; aspect-ratio: 4/3; }
.mini-gal-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.mini-gal-item:hover img { transform: scale(1.08); }
.mini-gallery-cta { text-align: center; margin-top: 36px; }

/* ─── CTA Banner ─── */
#cta-banner { padding: 70px 0; background: var(--bg-dark); }
.cta-inner { text-align: center; }
.cta-inner .section-label { background: rgba(14,165,233,0.2); color: #38bdf8; }
.cta-inner h2 { color: #fff; font-size: clamp(1.6rem, 4vw, 2.4rem); font-weight: 800; margin-bottom: 14px; }
.cta-inner p { color: #94a3b8; font-size: 1.02rem; margin-bottom: 32px; }
.cta-actions { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* ─── Contact ─── */
#contact { padding: 90px 0; background: var(--bg); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 64px; align-items: start; }
.contact-info h2 { font-size: 1.9rem; font-weight: 800; margin-bottom: 16px; }
.contact-info > p { color: var(--text-muted); margin-bottom: 32px; }
.contact-items { display: flex; flex-direction: column; gap: 18px; }
.contact-item { display: flex; align-items: flex-start; gap: 14px; }
.contact-item-icon {
  width: 46px; height: 46px; background: var(--primary-light); border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center; font-size: 19px; flex-shrink: 0;
}
.contact-item strong { display: block; font-size: 15px; margin-bottom: 2px; }
.contact-item span { font-size: 14px; color: var(--text-muted); }

.contact-form { background: var(--bg-alt); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 36px; box-shadow: var(--shadow); }
.contact-form h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label { font-size: 14px; font-weight: 600; color: var(--text); }
.form-group input, .form-group select, .form-group textarea {
  padding: 12px 16px; border: 1.5px solid var(--border); border-radius: var(--radius);
  font-size: 15px; font-family: inherit; color: var(--text); background: #fff;
  transition: border-color 0.2s; direction: rtl;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(3,105,161,0.1);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-submit { width: 100%; justify-content: center; }
.form-note { text-align: center; font-size: 14px; color: var(--text-muted); margin-top: 12px; }

/* ─── Footer ─── */
footer { background: var(--bg-dark); color: #94a3b8; padding: 56px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; margin-bottom: 40px; }
.footer-brand .nav-logo { color: #e2e8f0; margin-bottom: 14px; }
.footer-brand p { font-size: 14px; line-height: 1.7; max-width: 300px; }
.footer-col h4 { color: #e2e8f0; font-size: 15px; font-weight: 700; margin-bottom: 16px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-col ul li a { font-size: 14px; color: #94a3b8; transition: color 0.2s; }
.footer-col ul li a:hover { color: #e2e8f0; }
.footer-bottom {
  border-top: 1px solid #1e293b; padding-top: 22px; display: flex; align-items: center;
  justify-content: space-between; font-size: 13px; flex-wrap: wrap; gap: 12px;
}

/* ─── Floating CTA ─── */
.floating-cta { position: fixed; bottom: 28px; left: 28px; z-index: 999; display: flex; flex-direction: column; gap: 10px; }
.float-btn {
  width: 56px; height: 56px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 22px; box-shadow: 0 4px 20px rgba(0,0,0,0.2); border: none; cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s; text-decoration: none;
}
.float-btn:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(0,0,0,0.3); }
.float-whatsapp { background: #25d366; }
.float-phone { background: var(--primary); }

/* ─── Responsive ─── */
@media (max-width: 1024px) {
  .hero-grid { gap: 40px; }
  .local-intro-grid { grid-template-columns: 1fr; gap: 36px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-features-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .mini-gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .hero-title, .hero-desc, .hero-badge, .hero-actions, .hero-stats { text-align: center; justify-content: center; }
  .services-grid { grid-template-columns: 1fr; }
  .why-features-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .mini-gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { justify-content: center; text-align: center; }
}

@media (max-width: 480px) {
  .mini-gallery-grid { grid-template-columns: 1fr 1fr; }
  .trust-inner { gap: 20px; }
  .contact-form { padding: 22px; }
}
