/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --color-primary: #082D53;
  --color-secondary: #FFD974;
  --color-text: #414141;
  --color-accent: #082D53;
  --color-hover: #1D69B7;
  --color-white: #FFFFFF;
  --color-bg-light: #F8F8F8;
  --color-dark: #292929;
  --color-heading: #111111;
  --font-family: 'Poppins', sans-serif;
  --max-width: 1140px;
  --border-radius: 25px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-family);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--color-text);
  background: var(--color-white);
  -webkit-font-smoothing: antialiased;
}

a { color: var(--color-primary); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--color-hover); }

img { max-width: 100%; height: auto; display: block; }

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 20px; }

.btn {
  display: inline-block;
  background: var(--color-primary);
  color: var(--color-white);
  font-family: var(--font-family);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.2;
  padding: 15px 24px;
  border-radius: var(--border-radius);
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}
.btn:hover { background: var(--color-hover); color: var(--color-white); }

/* ===== TOP BAR ===== */
.top-bar {
  background: var(--color-primary);
  color: var(--color-white);
  font-size: 13px;
  padding: 8px 0;
}
.top-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.top-bar__info {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.top-bar__item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.top-bar__item .icon { flex-shrink: 0; }
.top-bar__social {
  display: flex;
  align-items: center;
  gap: 10px;
}
.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  opacity: 0.85;
  transition: opacity 0.2s;
}
.social-link:hover { opacity: 1; color: var(--color-white); }

/* ===== HEADER ===== */
.header {
  background: var(--color-white);
  padding: 15px 0;
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header__logo img { width: 215px; height: auto; }
.header__emergency {
  display: flex;
  align-items: center;
  gap: 12px;
}
.emergency-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--color-primary);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.emergency-text { text-align: left; }
.emergency-label {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.1;
  color: var(--color-dark);
  display: block;
}
.emergency-phone {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-heading);
  line-height: 1.1;
}
.emergency-phone:hover { color: var(--color-hover); }

/* ===== HERO ===== */
.hero {
  position: relative;
  background: var(--color-primary);
  overflow: hidden;
  min-height: 85vh;
  display: flex;
  align-items: center;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8,45,83,0.95) 0%, rgba(8,45,83,0.7) 50%, rgba(8,45,83,0.3) 100%);
  z-index: 1;
}
.hero__inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  width: 100%;
}
.hero__content {
  flex: 1;
  max-width: 600px;
}
.hero__title {
  font-size: 60px;
  font-weight: 700;
  line-height: 1.1;
  color: var(--color-white);
  margin-bottom: 10px;
}
.hero__title strong {
  color: var(--color-secondary);
}
.hero__subtitle {
  display: block;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--color-secondary);
  margin-bottom: 15px;
}
.hero__desc {
  font-size: 15px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 0;
  max-width: 540px;
}
.hero__image {
  flex-shrink: 0;
  max-width: 400px;
}
.hero__image img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* ===== WORK PROCESS ===== */
.process {
  padding: 80px 0;
  background: var(--color-bg-light);
  position: relative;
}
.process .elementor-background-overlay {
  display: none;
}
.process-divider {
  width: 50px;
  height: 2px;
  background: var(--color-primary);
  margin-bottom: 15px;
}
.section-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-hover);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.section-title {
  font-size: 40px;
  font-weight: 700;
  color: var(--color-heading);
  line-height: 1.1;
  margin-bottom: 40px;
}
.process__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.process__step {
  text-align: center;
  padding: 30px 15px;
}
.process__icon {
  width: 70px;
  height: 70px;
  background: var(--color-primary);
  color: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
}
.process__number {
  display: inline-block;
  font-size: 20px;
  font-weight: 700;
  color: var(--color-heading);
  font-family: var(--font-family);
  margin-bottom: 8px;
}
.process__step h5 {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-heading);
  line-height: 1.2;
  margin: 0;
}

/* ===== CONTACT BAR ===== */
.contact-bar {
  background: var(--color-primary);
  color: var(--color-white);
  padding: 40px 0;
}
.contact-bar__inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.contact-bar__item {
  display: flex;
  align-items: center;
  gap: 15px;
}
.contact-bar__icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-bar__item strong {
  display: block;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 3px;
}
.contact-bar__item span,
.contact-bar__item a {
  font-size: 14px;
  color: rgba(255,255,255,0.8);
}
.contact-bar__item a:hover { color: var(--color-white); }

/* ===== FOOTER ===== */
.footer {
  background: var(--color-heading);
  color: rgba(255,255,255,0.8);
  padding: 60px 0 0;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.footer__logo { margin-bottom: 20px; }
.footer__left p {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 20px;
  max-width: 500px;
}
.footer__social {
  display: flex;
  gap: 12px;
}
.footer__social .social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.footer__social .social-link:hover {
  background: var(--color-primary);
  color: var(--color-white);
}
.footer__map iframe {
  border-radius: 10px;
  width: 100%;
}
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 40px;
  padding: 20px 0;
  text-align: center;
}
.footer__bottom p {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  transition: transform 0.2s;
}
.whatsapp-float:hover { transform: scale(1.1); }
.whatsapp-float img { width: 60px; height: 60px; border-radius: 50%; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero__title { font-size: 55px; }
  .section-title { font-size: 35px; }
  .hero { min-height: auto; padding: 60px 0; }
  .hero__image { max-width: 320px; }
  .process__grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}

@media (max-width: 767px) {
  .top-bar__inner { flex-direction: column; text-align: center; }
  .top-bar__info { justify-content: center; gap: 10px; flex-direction: column; }

  .header__inner { flex-direction: column; gap: 15px; }
  .header__emergency { justify-content: center; }

  .nav__toggle { display: block; }
  .nav__menu {
    display: none;
    flex-direction: column;
    width: 100%;
  }
  .nav--open .nav__menu { display: flex; }

  .hero__inner { flex-direction: column; text-align: center; }
  .hero__title { font-size: 40px; }
  .hero__desc { max-width: 100%; }
  .hero__image { max-width: 250px; }

  .services-strip__inner { grid-template-columns: 1fr; }
  .section-title { font-size: 28px; }
  .process__grid { grid-template-columns: 1fr; gap: 20px; }

  .contact-bar__inner { grid-template-columns: 1fr; gap: 20px; }
  .contact-bar__item { flex-direction: column; text-align: center; }

  .footer__inner { grid-template-columns: 1fr; text-align: center; }
  .footer__left p { max-width: 100%; }
  .footer__social { justify-content: center; }
}
