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

:root {
  --primary: #1a56db;
  --primary-dark: #1240a8;
  --whatsapp: #25d366;
  --whatsapp-dark: #1da851;
  --call: #e63946;
  --call-dark: #c1121f;
  --bg: #f0f4ff;
  --card-bg: #ffffff;
  --text: #1e293b;
  --text-light: #64748b;
  --radius: 16px;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

body {
  font-family: 'Cairo', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  min-height: 100vh;
  padding-bottom: 80px;
}

.container {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ── Header ── */
.header {
  background: linear-gradient(135deg, var(--primary) 0%, #2563eb 50%, #3b82f6 100%);
  color: #fff;
  text-align: center;
  padding: 48px 20px 56px;
  position: relative;
  overflow: hidden;
}

.header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 80%, rgba(255,255,255,0.12) 0%, transparent 50%),
              radial-gradient(circle at 80% 20%, rgba(255,255,255,0.08) 0%, transparent 50%);
}

.header .container {
  position: relative;
  z-index: 1;
}

.badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 6px 20px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 20px;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.04); }
}

.title {
  font-size: clamp(2.4rem, 7vw, 3.2rem);
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.subtitle {
  font-size: clamp(1.2rem, 4vw, 1.5rem);
  font-weight: 600;
  opacity: 0.95;
  margin-bottom: 10px;
}

.location {
  font-size: 1.05rem;
  opacity: 0.85;
  font-weight: 400;
}

/* ── Main ── */
.main {
  margin-top: -28px;
  position: relative;
  z-index: 2;
}

/* ── Services ── */
.services {
  background: var(--card-bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 32px 24px;
  margin-bottom: 20px;
}

.services h2 {
  text-align: center;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--primary);
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 24px 20px;
  background: var(--bg);
  border-radius: 12px;
  transition: transform 0.2s;
}

.card:hover {
  transform: translateY(-2px);
}

.card-icon {
  font-size: 2.4rem;
  margin-bottom: 10px;
}

.card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.card p {
  font-size: 0.9rem;
  color: var(--text-light);
}

/* ── Features ── */
.features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 20px;
}

.feature {
  background: var(--card-bg);
  border-radius: 12px;
  box-shadow: var(--shadow);
  padding: 18px 14px;
  text-align: center;
}

.feature span {
  font-size: 1.6rem;
  display: block;
  margin-bottom: 6px;
}

.feature p {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
}

/* ── Contact ── */
.contact {
  background: var(--card-bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 36px 24px;
  text-align: center;
}

.contact h2 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--primary);
}

.phone-number {
  font-size: clamp(1.6rem, 5vw, 2rem);
  font-weight: 800;
  color: var(--text);
  letter-spacing: 1px;
  direction: ltr;
  margin-bottom: 28px;
}

.buttons {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px 32px;
  border-radius: 14px;
  font-family: 'Cairo', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  text-decoration: none;
  color: #fff;
  transition: transform 0.15s, box-shadow 0.15s;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.btn:active {
  transform: scale(0.97);
}

.btn-call {
  background: linear-gradient(135deg, var(--call), #ff6b6b);
}

.btn-call:hover {
  box-shadow: 0 6px 24px rgba(230, 57, 70, 0.4);
}

.btn-whatsapp {
  background: linear-gradient(135deg, var(--whatsapp), #34e077);
}

.btn-whatsapp:hover {
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
}

/* ── Footer ── */
.footer {
  text-align: center;
  padding: 32px 20px;
  color: var(--text-light);
  font-size: 0.85rem;
}

.footer-phone {
  display: inline-block;
  margin-top: 6px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  direction: ltr;
}

/* ── Sticky Bottom Bar ── */
.sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  z-index: 100;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.12);
}

.sticky-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px;
  font-family: 'Cairo', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  text-decoration: none;
  color: #fff;
  transition: filter 0.15s;
}

.sticky-btn:active {
  filter: brightness(0.9);
}

.sticky-call {
  background: var(--call);
}

.sticky-whatsapp {
  background: var(--whatsapp);
}

/* ── Responsive ── */
@media (min-width: 600px) {
  .cards {
    flex-direction: row;
  }

  .card {
    flex: 1;
  }

  .buttons {
    flex-direction: row;
    justify-content: center;
  }

  .btn {
    flex: 1;
    max-width: 260px;
  }
}
