:root {
  --navy: #06244a;
  --blue: #0b67d8;
  --orange: #ff7a18;
  --green: #19b84a;
  --text: #10233f;
  --muted: #667085;
  --bg: #f7f9fc;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(10, 31, 68, 0.12);
  --radius: 18px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: Arial, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  padding-bottom: 72px;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
.container { width: min(1180px, 92%); margin: auto; }

.header {
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 8px 30px rgba(0,0,0,0.06);
}
.nav { height: 78px; display: flex; align-items: center; justify-content: space-between; }
.logo { font-size: 26px; font-weight: 900; color: var(--navy); letter-spacing: -0.5px; }
.logo span { color: var(--orange); font-size: 36px; }
.menu { display: flex; gap: 32px; font-weight: 700; font-size: 15px; }
.menu a:hover { color: var(--orange); }
.header-contact { display: flex; align-items: center; gap: 14px; }
.phone { font-weight: 800; color: var(--navy); }
.whatsapp {
  background: var(--green); color: white; padding: 12px 22px; border-radius: 999px;
  font-weight: 800; box-shadow: 0 10px 25px rgba(25,184,74,0.28);
}
.burger {
  display: none; border: 0; background: var(--navy); color: white; font-size: 24px;
  padding: 8px 13px; border-radius: 10px; cursor: pointer;
}

.hero {
  background:
    radial-gradient(circle at 82% 18%, rgba(255,122,24,0.15), transparent 24%),
    linear-gradient(90deg, #fff 0%, #f3f6fb 100%);
  overflow: hidden;
}
.hero-grid { min-height: 640px; display: grid; grid-template-columns: 1fr 0.9fr; align-items: center; gap: 52px; }
.hero-badge {
  display: inline-block; background: rgba(11,103,216,0.09); color: var(--blue);
  padding: 9px 16px; border-radius: 999px; font-weight: 900; margin-bottom: 18px;
}
.hero-content h1 { font-size: clamp(38px, 5vw, 62px); line-height: 1.08; color: var(--navy); margin-bottom: 22px; }
.hero-content h1 span { color: var(--orange); }
.hero-content p { font-size: 19px; max-width: 560px; color: #1c2f4f; margin-bottom: 28px; }
.hero-buttons { display: flex; gap: 18px; flex-wrap: wrap; margin-bottom: 28px; }
.btn {
  padding: 17px 28px; border-radius: 12px; color: white; font-weight: 900;
  display: inline-flex; align-items: center; justify-content: center; box-shadow: var(--shadow);
}
.btn-orange { background: var(--orange); }
.btn-green { background: var(--green); }
.hero-features { display: flex; gap: 20px; flex-wrap: wrap; font-weight: 700; color: var(--navy); }

.hero-photo { position: relative; border-radius: 32px; overflow: visible; }
.hero-photo img {
  width: 100%; height: 520px; object-fit: cover; border-radius: 32px;
  box-shadow: 0 35px 80px rgba(6,36,74,0.18);
}
.hero-photo::before {
  content: ""; position: absolute; inset: 18px -18px -18px 18px; border-radius: 32px;
  background: linear-gradient(135deg, var(--blue), var(--orange)); z-index: -1;
}
.hero-floating-card {
  position: absolute; left: -28px; bottom: 34px; background: white; padding: 20px 22px;
  border-radius: 18px; box-shadow: var(--shadow); max-width: 260px;
}
.hero-floating-card strong { color: var(--navy); font-size: 20px; }

.services { padding: 70px 0 45px; background: #fff; }
.section-title { text-align: center; margin-bottom: 34px; }
.mini-label {
  display: inline-block; color: var(--orange); font-weight: 900; margin-bottom: 6px;
}
.section-title h2 { color: var(--navy); font-size: clamp(30px, 4vw, 42px); line-height: 1.2; }
.section-title h2::after {
  content: ""; display: block; width: 54px; height: 4px; background: var(--orange);
  margin: 11px auto 0; border-radius: 8px;
}
.section-title p { margin-top: 12px; color: var(--text); }

.service-photo-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 22px;
}
.photo-service-card {
  background: #fff; border: 1px solid #e7ebf2; border-radius: 22px; overflow: hidden;
  box-shadow: 0 16px 38px rgba(6,36,74,0.08); transition: transform .25s, box-shadow .25s;
}
.photo-service-card:hover { transform: translateY(-7px); box-shadow: 0 25px 55px rgba(6,36,74,0.14); }
.photo-wrap { position: relative; height: 180px; overflow: hidden; display: block; background: #d9e4f2; }
.photo-wrap::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(6,36,74,0.04), rgba(6,36,74,0.58));
}
.photo-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.photo-service-card:hover .photo-wrap img { transform: scale(1.08); }
.service-tag {
  position: absolute; left: 14px; bottom: 14px; z-index: 2; color: #fff; background: rgba(11,103,216,.92);
  padding: 8px 12px; border-radius: 999px; font-size: 13px; font-weight: 900;
}
.orange-tag { background: rgba(255,122,24,.94); }
.green-tag { background: rgba(25,184,74,.94); }
.photo-card-body { padding: 19px 17px 18px; }
.photo-card-body h3 { color: var(--navy); font-size: 18px; line-height: 1.3; min-height: 70px; }
.photo-card-body p { color: var(--muted); font-size: 15px; margin: 12px 0 16px; }
.card-actions { display: grid; gap: 9px; }
.card-actions a {
  text-align: center; font-weight: 900; padding: 10px 12px; border-radius: 10px;
  background: #f2f5fa; color: var(--navy);
}
.card-actions .details-btn { background: var(--blue); color: white; }
.card-actions .orange-btn { background: var(--orange); color: white; }
.card-actions .green-btn { background: var(--green); color: white; }

.why { padding: 30px 0; }
.why-grid {
  background: var(--navy); color: white; border-radius: 22px; padding: 34px;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 25px;
}
.why-grid strong { font-size: 19px; }
.why-grid p { color: #dce8f8; margin-top: 8px; }

.reviews { padding: 45px 0; background: #fbfcff; }
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; }
.review-card {
  background: white; border: 1px solid #e7ebf2; padding: 24px; border-radius: var(--radius);
  box-shadow: 0 12px 35px rgba(0,0,0,0.05);
}
.stars { color: var(--orange); font-size: 22px; margin-bottom: 12px; }
.review-card p { margin-bottom: 18px; }

.contact { padding: 50px 0 55px; }
.contact-grid { display: grid; grid-template-columns: 330px 1fr; gap: 24px; }
.contact-box { background: white; border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow); }
.contact-box h2 { color: var(--navy); margin-bottom: 18px; }
.contact-box p { margin: 12px 0; font-weight: 700; }
.map-box iframe { width: 100%; height: 100%; min-height: 290px; border: 0; border-radius: var(--radius); box-shadow: var(--shadow); }

.footer { background: var(--navy); color: white; padding: 42px 0 18px; }
.footer-grid { display: grid; grid-template-columns: 1.25fr 1fr 1.3fr 1fr; gap: 35px; }
.footer a, .footer p { display: block; color: #dce8f8; margin-top: 8px; }
.footer h4 { margin-bottom: 12px; }
.footer-logo { color: white; }
.copyright { text-align: center; color: #b9c9df; margin-top: 30px; font-size: 14px; }

.sticky-actions {
  position: fixed; left: 50%; bottom: 0; transform: translateX(-50%);
  width: min(1180px, 100%); display: grid; grid-template-columns: 1fr 1fr;
  z-index: 2000; overflow: hidden; border-radius: 18px 18px 0 0;
}
.sticky-actions a { color: white; text-align: center; padding: 18px 10px; font-weight: 900; }
.sticky-call { background: var(--orange); }
.sticky-wa { background: var(--green); }

.service-page {
  padding: 80px 0;
  background: radial-gradient(circle at top right, rgba(11,103,216,.12), transparent 35%), linear-gradient(135deg,#fff 0%,#f4f7fb 100%);
}
.service-page-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 40px; align-items: center; }
.service-page h1 { font-size: clamp(36px, 5vw, 58px); line-height: 1.1; color: var(--navy); margin-bottom: 22px; }
.service-page p { font-size: 19px; color: #263b5f; max-width: 680px; margin-bottom: 28px; }
.badge { display: inline-block; background: rgba(255,122,24,.12); color: var(--orange); padding: 8px 16px; border-radius: 999px; font-weight: 900; margin-bottom: 18px; }
.service-info-card { background: white; border-radius: 22px; padding: 34px; box-shadow: var(--shadow); border: 1px solid #e7ebf2; }
.service-info-card h3 { color: var(--navy); font-size: 25px; margin-bottom: 18px; }
.service-info-card ul { list-style: none; }
.service-info-card li { padding: 12px 0; border-bottom: 1px solid #edf1f7; font-weight: 800; }
.service-info-card li::before { content: "✅ "; }

@media (max-width: 1150px) {
  .service-photo-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 1024px) {
  .why-grid, .review-grid, .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-grid { grid-template-columns: 1fr; padding: 45px 0; text-align: center; min-height: auto; }
  .hero-content p { margin-left: auto; margin-right: auto; }
  .hero-buttons, .hero-features { justify-content: center; }
  .hero-photo img { height: 430px; }
  .hero-floating-card { left: 20px; }
}
@media (max-width: 768px) {
  body { padding-bottom: 64px; }
  .nav { height: 70px; }
  .menu, .header-contact { display: none; }
  .burger { display: block; }
  .menu.active {
    display: flex; position: absolute; top: 70px; left: 0; width: 100%; background: white;
    flex-direction: column; padding: 20px; box-shadow: var(--shadow);
  }
  .hero-grid { gap: 24px; }
  .hero-content h1 { font-size: 36px; }
  .hero-content p { font-size: 17px; }
  .btn { width: 100%; }
  .hero-photo img { height: 340px; border-radius: 24px; }
  .hero-photo::before { display: none; }
  .hero-floating-card { position: static; margin: -45px 18px 0; z-index: 2; position: relative; text-align: left; }
  .service-photo-grid, .why-grid, .review-grid, .contact-grid, .footer-grid, .service-page-grid { grid-template-columns: 1fr; }
  .photo-wrap { height: 210px; }
  .photo-card-body h3 { min-height: auto; }
  .contact-grid { gap: 18px; }
  .service-page { padding: 45px 0; }
  .service-info-card { padding: 24px; }
  .sticky-actions a { padding: 15px 6px; font-size: 15px; }
}
