:root {
  --navy: #0d1b3d;
  --navy-2: #132954;
  --orange: #ff8a00;
  --orange-soft: #ffd7a8;
  --text: #243042;
  --muted: #6c7a8b;
  --light: #f7f8fc;
  --white: #ffffff;
  --shadow: 0 20px 50px rgba(13, 27, 61, 0.12);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1200px, calc(100% - 2rem));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(13, 27, 61, 0.08);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.brand {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--navy);
}

.brand span {
  color: var(--orange);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.nav-links a {
  color: var(--navy-2);
  font-weight: 600;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: var(--orange);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: 0;
  cursor: pointer;
}

.call-btn {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--orange), #ffb04c);
  color: var(--white);
  font-weight: 700;
  border: 0;
  text-decoration: none;
}

.call-btn i {
  font-size: 0.95rem;
}

.menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--navy);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(120deg, rgba(13, 27, 61, 0.88), rgba(13, 27, 61, 0.55)), url('https://imglink.cc/cdn/_1GtLtFMMM.jpg') center/cover;
  color: var(--white);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(255, 138, 0, 0.25), transparent 30%);
}

.hero-content {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: center;
  padding: 4rem 0;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--orange);
  margin-bottom: 0.75rem;
}

.hero h1 {
  font-size: clamp(2.2rem, 4vw, 4.2rem);
  line-height: 1.1;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.9);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 1.5rem 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.4rem;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--orange), #ffb04c);
  color: var(--white);
  box-shadow: 0 12px 25px rgba(255, 138, 0, 0.25);
}

.btn-secondary {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 12px 25px rgba(18, 140, 126, 0.25);
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.2rem;
}

.hero-badges span {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 0.95rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(8px);
  animation: float 3s ease-in-out infinite;
}

.hero-badges span:nth-child(2) { animation-delay: 0.3s; }
.hero-badges span:nth-child(3) { animation-delay: 0.6s; }
.hero-badges span:nth-child(4) { animation-delay: 0.9s; }

.hero-copy {
  opacity: 0;
  transform: translateX(-40px);
  animation: heroRevealLeft 0.9s ease forwards;
}

.hero-card {
  opacity: 0;
  transform: translateX(40px);
  animation: heroRevealRight 0.95s ease forwards;
  animation-delay: 0.15s;
  background: rgba(255, 255, 255, 0.95);
  color: var(--text);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  align-items: stretch;
  gap: 1rem;
}

.hero-card img {
  width: 56%;
  min-width: 260px;
  height: auto;
  object-fit: cover;
}

.hero-card-info {
  padding: 1.2rem 1.3rem 1.5rem;
  color: var(--text);
  width: 44%;
}

.hero-card-info p {
  color: var(--text);
}

.hero-card-detail {
  margin-top: 1rem;
  color: var(--text);
  line-height: 1.85;
  font-size: 0.95rem;
  max-width: 260px;
}

.hero-card-info h3 {
  margin-bottom: 0.6rem;
}

.section {
  padding: 5.5rem 0;
}

.section-alt {
  background: var(--light);
}

.section-heading {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 3rem;
}

.section-heading h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--navy);
  margin-bottom: 0.65rem;
}

.section-heading p {
  color: var(--muted);
}

.services-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(4, 1fr);
}

.service-card {
  padding: 1.8rem;
  background: var(--white);
  border-radius: 24px;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 25px 60px rgba(13, 27, 61, 0.16);
}

.icon-wrap {
  width: 58px;
  height: 58px;
  margin-bottom: 1rem;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--orange-soft), rgba(255, 138, 0, 0.16));
  color: var(--orange);
  font-size: 1.4rem;
}

.service-card h3 {
  margin-bottom: 0.8rem;
  color: var(--navy);
}

.service-card ul {
  list-style: none;
  color: var(--muted);
}

.service-card li + li {
  margin-top: 0.4rem;
}

.stats-grid {
  display: grid;
  gap: 1.2rem;
  grid-template-columns: repeat(4, 1fr);
}

.stats-card {
  text-align: center;
  padding: 2rem 1.2rem;
  background: var(--white);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.stats-card h3 {
  font-size: 2.4rem;
  color: var(--orange);
  margin-bottom: 0.3rem;
}

.stats-card p {
  color: var(--muted);
  font-weight: 600;
}

.compare-card {
  background: var(--white);
  border-radius: 24px;
  padding: 1.2rem;
  box-shadow: var(--shadow);
}

.compare-frame {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  height: 320px;
}

.compare-frame img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.compare-frame .after {
  width: 50%;
  clip-path: inset(0 0 0 0);
  border-right: 3px solid var(--orange);
}

.compare-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  background: var(--orange);
  transform: translateX(-50%);
}

.compare-card h3 {
  margin-top: 1rem;
  text-align: center;
  color: var(--navy);
}

.region-layout {
  display: flex;
  justify-content: center;
}

.region-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
  width: 100%;
}

.region-pill {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.1rem;
  background: linear-gradient(135deg, var(--white), var(--light));
  border: 1px solid rgba(13, 27, 61, 0.08);
  border-radius: 18px;
  font-weight: 700;
  color: var(--navy);
  box-shadow: 0 10px 24px rgba(13, 27, 61, 0.06);
}

.region-pill::before {
  content: "●";
  color: var(--orange);
  font-size: 0.8rem;
  margin-right: 0.55rem;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
  margin-bottom: 2rem;
}

.filter-btn {
  border: 0;
  padding: 0.8rem 1.2rem;
  border-radius: 999px;
  background: var(--light);
  color: var(--navy);
  font-weight: 700;
  cursor: pointer;
}

.filter-btn.active {
  background: var(--orange);
  color: var(--white);
}

.projects-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(2, 1fr);
}

.project-card {
  background: var(--white);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease;
}

.project-card:hover {
  transform: translateY(-6px);
}

.project-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.project-content {
  padding: 1.2rem 1.3rem 1.5rem;
}

.project-content h3 {
  margin-bottom: 0.4rem;
  color: var(--navy);
}

.project-content p {
  color: var(--muted);
}

.testimonial-card {
  background: var(--white);
  border-radius: 24px;
  padding: 2rem;
  box-shadow: var(--shadow);
  text-align: center;
}

.testimonial-card img {
  width: 80px;
  height: 80px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  object-fit: cover;
}

.stars {
  color: var(--orange);
  margin-bottom: 0.8rem;
}

.testimonial-card p {
  color: var(--muted);
  margin-bottom: 1rem;
}

.quote-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2rem;
  align-items: center;
}

.quote-copy h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--navy);
  margin-bottom: 0.8rem;
}

.quote-copy p {
  color: var(--muted);
}

.quote-form,
.contact-form {
  background: var(--white);
  box-shadow: var(--shadow);
  border-radius: 24px;
  padding: 1.5rem;
}

label {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin-bottom: 1rem;
  color: var(--navy);
  font-weight: 600;
}

input, select, textarea {
  border: 1px solid rgba(13, 27, 61, 0.12);
  border-radius: 14px;
  padding: 0.85rem 1rem;
  font: inherit;
  color: var(--text);
}

input:focus, select:focus, textarea:focus {
  outline: 2px solid rgba(255, 138, 0, 0.25);
  border-color: var(--orange);
}

.estimate-result {
  margin-top: 1rem;
  padding: 0.9rem 1rem;
  background: var(--light);
  border-radius: 14px;
  color: var(--navy);
  font-weight: 700;
}

.blog-grid {
  display: grid;
  gap: 1.2rem;
  grid-template-columns: repeat(4, 1fr);
}

.blog-card {
  background: var(--white);
  border-radius: 24px;
  padding: 1.4rem;
  box-shadow: var(--shadow);
}

.blog-card h3 {
  color: var(--navy);
  margin-bottom: 0.6rem;
}

.blog-card p {
  color: var(--muted);
  margin-bottom: 0.8rem;
}

.blog-card a {
  color: var(--orange);
  font-weight: 700;
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2rem;
  align-items: start;
}

.faq-list details {
  background: var(--white);
  border-radius: 16px;
  padding: 1rem 1.2rem;
  box-shadow: var(--shadow);
  margin-bottom: 0.8rem;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--navy);
}

.faq-list p {
  margin-top: 0.65rem;
  color: var(--muted);
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 2rem;
}

.contact-card {
  background: var(--white);
  border-radius: 24px;
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.contact-card ul {
  list-style: none;
  display: grid;
  gap: 0.7rem;
  margin: 1rem 0 1.2rem;
  color: var(--muted);
}

.contact-card iframe {
  width: 100%;
  height: 260px;
  border: 0;
  border-radius: 16px;
}

.footer {
  padding: 3.5rem 0 1.5rem;
  background: var(--navy);
  color: rgba(255, 255, 255, 0.85);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1fr;
  gap: 1.5rem;
}

.footer h3 {
  margin-bottom: 0.8rem;
  color: var(--white);
}

.footer ul {
  list-style: none;
  display: grid;
  gap: 0.45rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.5rem;
  margin-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.social-links {
  display: flex;
  gap: 0.8rem;
}

.social-links a {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
}

.whatsapp-float {
  position: fixed;
  right: 1.2rem;
  bottom: 1.2rem;
  z-index: 1200;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #25d366 0%, #1ebe5d 50%, #128c7e 100%);
  color: var(--white);
  font-size: 1.5rem;
  box-shadow: 0 16px 30px rgba(37, 211, 102, 0.35);
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

@keyframes heroRevealLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes heroRevealRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@media (max-width: 980px) {
  .services-grid,
  .stats-grid,
  .blog-grid,
  .footer-grid,
  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-content,
  .quote-layout,
  .faq-layout,
  .contact-layout,
  .region-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .nav-links {
    position: absolute;
    top: 100%;
    left: 1rem;
    right: 1rem;
    flex-direction: column;
    align-items: flex-start;
    background: var(--white);
    padding: 1rem;
    border-radius: 16px;
    box-shadow: var(--shadow);
    display: none;
  }

  .nav-links.open {
    display: flex;
  }

  .menu-toggle {
    display: flex;
    margin-left: 0;
  }

  .call-btn {
    display: inline-flex;
    margin-left: auto;
  }

  .navbar {
    gap: 0.2rem;
    align-items: center;
  }

  .menu-toggle {
    order: 2;
  }

  .call-btn {
    order: 1;
  }

  .services-grid,
  .stats-grid,
  .blog-grid,
  .projects-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-card img {
    height: 260px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 0.8rem;
  }
}
