
:root {
  --color-primary: #0e2e50;      
  --color-primary-dark: #071c33;
  --color-accent: #e11d2e;       
  --color-accent-hover: #b91321;
  --color-text: #555555;
  --color-heading: #0e2e50;
  --color-light: #f4f7fa;
  --color-white: #ffffff;
  --color-border: #e6e6e6;

  --font-heading: 'Rubik', sans-serif;
  --font-body: 'Roboto', sans-serif;

  --container: 1200px;
  --header-height: 80px;
  --radius: 6px;
  --shadow: 0 5px 20px rgba(0,0,0,0.08);
  --shadow-hover: 0 10px 30px rgba(0,0,0,0.12);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-text);
  line-height: 1.6;
  background-color: var(--color-white);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--color-heading);
  margin-top: 0;
  font-weight: 700;
}

a { text-decoration: none; color: inherit; transition: 0.3s; }
ul { list-style: none; padding: 0; margin: 0; }
img { max-width: 100%; display: block; }

.container {
  max-width: var(--container);
  width: 90%;
  margin: 0 auto;
}

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 30px; font-family: var(--font-heading);
  font-weight: 600; text-transform: uppercase; font-size: 14px;
  letter-spacing: 0.5px; border-radius: var(--radius);
  cursor: pointer; transition: all 0.3s ease; border: none;
}
.btn--primary { background: var(--color-accent); color: #fff; }
.btn--primary:hover { background: var(--color-accent-hover); transform: translateY(-2px); }
.btn--white { background: #fff; color: var(--color-heading); }
.btn--white:hover { background: var(--color-primary); color: #fff; }
.btn--outline { background: transparent; border: 2px solid var(--color-accent); color: var(--color-accent); }
.btn--outline:hover { background: var(--color-accent); color: #fff; }
.btn--full { width: 100%; justify-content: center; }

.section-title { margin-bottom: 50px; position: relative; }
.section-title.text-center { text-align: center; }
.sub-title {
  display: block; color: var(--color-accent); font-family: var(--font-heading);
  font-weight: 600; text-transform: uppercase; font-size: 14px; letter-spacing: 1px;
  margin-bottom: 10px;
}
.section-title h2 { font-size: 36px; margin-bottom: 15px; }
.section-desc { max-width: 700px; margin: 0 auto; color: var(--color-text); font-size: 16px; }

.section { padding: 90px 0; }
.text-white { color: #fff !important; }
.text-accent { color: var(--color-accent) !important; }
.text-white-opacity { color: rgba(255,255,255,0.85) !important; font-weight: 500; }

.topbar {
  background: var(--color-primary); color: rgba(255,255,255,0.8);
  padding: 12px 0; font-size: 13px; border-bottom: 1px solid rgba(255,255,255,0.1);
}
.topbar__inner { display: flex; justify-content: space-between; align-items: center; }
.topbar__info { display: flex; gap: 20px; flex-wrap: wrap; }
.topbar__info li { display: flex; align-items: center; gap: 8px; }
.topbar__info i { color: var(--color-accent); }
.license-badge { background: rgba(255,255,255,0.1); padding: 4px 10px; border-radius: 4px; font-weight: 500; }

.header { background: #fff; box-shadow: 0 2px 15px rgba(0,0,0,0.05); position: sticky; top: 0; z-index: 1000; }
.header__inner { height: var(--header-height); display: flex; align-items: center; justify-content: space-between; }
.brand__logo { 
  height: 70px; 
  width: auto;
}

.nav { display: flex; align-items: center; }
.nav__menu { display: flex; align-items: center; gap: 25px; }
.nav__menu a {
  font-family: var(--font-heading); font-weight: 600; color: var(--color-heading);
  font-size: 15px; text-transform: uppercase;
}
.nav__menu a:not(.nav__btn):hover { color: var(--color-accent); }
.nav__btn { background: var(--color-accent); color: #fff !important; padding: 10px 24px; border-radius: var(--radius); }
.nav__btn:hover { background: var(--color-accent-hover); }
.nav__toggle { display: none; background: none; border: none; font-size: 24px; color: var(--color-heading); cursor: pointer; }

.hero { position: relative; min-height: 640px; display: flex; align-items: center; color: #fff; overflow: hidden; }
.hero__bg { position: absolute; inset: 0; z-index: -1; }
.hero__bg video { width: 100%; height: 100%; object-fit: cover; }
.hero__overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(14, 46, 80, 0.95) 0%, rgba(14, 46, 80, 0.75) 60%, rgba(14, 46, 80, 0.3) 100%); }

.hero__content { position: relative; z-index: 2; display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 50px; align-items: center; }
.hero__text h1 { font-size: 48px; color: #fff; line-height: 1.2; margin-bottom: 20px; }
.hero__text p { font-size: 18px; color: rgba(255,255,255,0.9); margin-bottom: 30px; max-width: 600px; }
.hero__btns { display: flex; gap: 15px; flex-wrap: wrap; }

.hero__features { display: flex; flex-direction: column; gap: 20px; }
.feature-box {
  background: rgba(255,255,255,0.1); backdrop-filter: blur(10px); padding: 20px;
  border-left: 5px solid var(--color-accent); display: flex; align-items: center; gap: 15px;
  border-radius: 0 var(--radius) var(--radius) 0;
}
.feature-box .icon { font-size: 30px; color: var(--color-accent); }
.feature-box h3 { font-size: 18px; color: #fff; margin: 0 0 5px; }
.feature-box p { margin: 0; font-size: 14px; color: rgba(255,255,255,0.8); }

.service-area { background: var(--color-light); }
.service-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; }
.service-item { 
  position: relative; 
  background: #fff; 
  border-radius: var(--radius); 
  overflow: hidden; 
  box-shadow: var(--shadow); 
  transition: 0.3s; 
  display: flex; 
  flex-direction: column;
}
.service-item:hover { transform: translateY(-10px); box-shadow: var(--shadow-hover); }

.service-img { position: relative; height: 220px; overflow: hidden; }
.service-img img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }
.service-item:hover .service-img img { transform: scale(1.1); }

.icon-overlay {
  position: absolute; 
  top: 195px; 
  left: 20px; 
  width: 50px; height: 50px;
  background: var(--color-accent); color: #fff; display: flex; align-items: center; justify-content: center;
  border-radius: 50%; font-size: 20px; border: 4px solid #fff;
  z-index: 5;
}
.service-content { padding: 35px 25px 25px; flex-grow: 1; display: flex; flex-direction: column; }
.service-content h3 { font-size: 22px; margin-bottom: 15px; }
.service-content p { font-size: 15px; margin-bottom: 20px; color: var(--color-text); }
.service-list { margin-bottom: 20px; }
.service-list li { display: flex; align-items: center; gap: 10px; font-size: 14px; margin-bottom: 8px; color: var(--color-heading); }
.service-list i { color: var(--color-accent); font-size: 12px; }
.read-more {
  margin-top: auto; display: inline-flex; align-items: center; gap: 8px;
  font-weight: 600; color: var(--color-accent); font-size: 14px; text-transform: uppercase;
}
.read-more:hover { color: var(--color-heading); gap: 12px; }

.why-area { background: #fff; }
.row-split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.lead-text { font-size: 18px; color: var(--color-text); margin-bottom: 30px; border-left: 4px solid var(--color-accent); padding-left: 20px; }

.features-list { display: grid; gap: 20px; margin-top: 30px; }
.f-item { display: flex; gap: 20px; }
.f-icon {
  width: 60px; height: 60px; background: var(--color-light); color: var(--color-accent);
  display: flex; align-items: center; justify-content: center; font-size: 24px; border-radius: var(--radius); flex-shrink: 0;
}
.f-text h4 { font-size: 18px; margin-bottom: 5px; }
.f-text p { font-size: 14px; margin: 0; }

.col-stats { display: grid; grid-template-columns: 1fr; gap: 20px; }
.stat-card {
  background: var(--color-light); padding: 30px; border-radius: var(--radius); text-align: center;
  transition: 0.3s; border: 1px solid var(--color-border);
}
.stat-card:hover, .stat-card.active { background: var(--color-primary); color: #fff; border-color: var(--color-primary); }
.stat-card i { font-size: 30px; margin-bottom: 10px; color: var(--color-accent); }
.stat-card .counter { display: block; font-size: 36px; font-weight: 700; line-height: 1; margin-bottom: 5px; }
.stat-card.active .counter { color: #fff; }
.stat-card span { font-size: 13px; text-transform: uppercase; letter-spacing: 1px; }

.reviews-area { background: var(--color-light); overflow: hidden; }
.marquee-wrapper {
  overflow: hidden;
  position: relative;
  width: 100%;
  padding: 20px 0;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}
.marquee-track {
  display: flex;
  gap: 30px;
  width: max-content;
  animation: scroll 40s linear infinite;
}
.marquee-track:hover {
  animation-play-state: paused;
}
.review-card { 
  background: #fff; padding: 30px; border-radius: var(--radius); box-shadow: var(--shadow); 
  width: 350px; max-width: 85vw; flex-shrink: 0;
}
@keyframes scroll {
  to { transform: translateX(-50%); } 
}

.stars { color: #ffc107; margin-bottom: 15px; font-size: 14px; }
.review-text { font-style: italic; color: var(--color-text); margin-bottom: 20px; font-size: 14px; }
.reviewer { display: flex; align-items: center; gap: 15px; }
.r-icon {
  width: 40px; height: 40px; background: var(--color-light); color: var(--color-heading);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
}
.reviewer strong { display: block; font-size: 14px; color: var(--color-heading); }
.reviewer span { font-size: 12px; color: #888; }

.faq-area { background: #fff; }
.faq-image { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.faq-image img { width: 100%; display: block; }
.faq-image::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(14, 46, 80, 0.6) 0%, transparent 50%);
  pointer-events: none;
}
.accordion { display: grid; gap: 15px; }
.accordion-item { border: 1px solid var(--color-border); border-radius: var(--radius); background: #fff; overflow: hidden; }
.accordion-item summary {
  padding: 15px 20px; cursor: pointer; font-weight: 600; color: var(--color-heading);
  list-style: none; position: relative; background: var(--color-light);
}
.accordion-item summary::-webkit-details-marker { display: none; }
.accordion-item summary::after {
  content: '+'; position: absolute; right: 20px; font-weight: bold; color: var(--color-accent);
}
.accordion-item[open] summary::after { content: '-'; }
.accordion-body { padding: 20px; color: var(--color-text); font-size: 14px; border-top: 1px solid var(--color-border); }

.quote-area { background: var(--color-primary); position: relative; }
.quote-area::before { content: ''; position: absolute; inset: 0; background: rgba(14, 46, 80, 0.96); } 
.quote-wrapper { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }

.info-items { margin-top: 40px; display: grid; gap: 20px; }
.i-box { display: flex; align-items: center; gap: 15px; }
.i-box i {
  width: 50px; height: 50px; background: rgba(255,255,255,0.1); color: var(--color-accent);
  display: flex; align-items: center; justify-content: center; font-size: 20px; border-radius: 50%;
}
.i-box span { display: block; font-size: 12px; color: rgba(255,255,255,0.6); text-transform: uppercase; }
.i-box a { color: #fff; font-size: 18px; font-weight: 700; }

.locations-box { margin-top: 40px; padding: 20px; border: 1px solid rgba(255,255,255,0.2); border-radius: var(--radius); color: #fff; }
.locations-box h4 { color: var(--color-accent); margin-bottom: 15px; }
.locations-box p { font-size: 14px; margin-bottom: 8px; opacity: 0.9; display: flex; gap: 10px; align-items: center; }

.clean-form { background: #fff; padding: 40px; border-radius: var(--radius); box-shadow: 0 10px 40px rgba(0,0,0,0.2); }
.clean-form h3 { margin-bottom: 25px; text-align: center; color: var(--color-heading); }
.form-group { margin-bottom: 15px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 14px; border: 1px solid var(--color-border); border-radius: var(--radius);
  font-family: inherit; font-size: 14px; background: #f9f9f9;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--color-accent); background: #fff;
}
.form-check { display: flex; gap: 10px; font-size: 13px; align-items: center; margin-bottom: 20px; }
.form-btns { display: grid; gap: 10px; }
.err { color: var(--color-accent); font-size: 12px; }

.footer { background: #0b233a; color: #fff; padding-top: 80px; }
.footer__top {
  display: grid; grid-template-columns: 1.5fr 0.8fr 1.2fr 1fr; gap: 30px; padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer__logo { max-width: 180px; margin-bottom: 20px; filter: brightness(0) invert(1); }
.footer__col p { color: rgba(255,255,255,0.7); font-size: 14px; margin-bottom: 20px; }
.footer__col h3 { font-size: 18px; color: #fff; margin-bottom: 25px; position: relative; }
.footer__col h3::after { content: ''; position: absolute; bottom: -8px; left: 0; width: 40px; height: 2px; background: var(--color-accent); }
.footer__col ul li { margin-bottom: 12px; }
.footer__col ul a { color: rgba(255,255,255,0.7); font-size: 14px; }
.footer__col ul a:hover { color: var(--color-accent); padding-left: 5px; }
.contact-list li { display: flex; gap: 10px; align-items: flex-start; color: rgba(255,255,255,0.7); font-size: 14px; }
.contact-list i { color: var(--color-accent); margin-top: 4px; }
.footer__bottom { padding: 25px 0; text-align: center; font-size: 11px; color: rgba(255,255,255,0.5); }

.footer__socials { display: flex; gap: 15px; margin-top: 15px; }
.footer__socials a {
  width: 36px; height: 36px; background: rgba(255,255,255,0.1); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; color: #fff; transition: 0.3s;
}
.footer__socials a:hover { background: var(--color-accent); transform: translateY(-3px); }

.float-wa {
  position: fixed; bottom: 30px; right: 30px; width: 60px; height: 60px;
  background: #25D366; color: #fff; font-size: 30px; display: flex; align-items: center; justify-content: center;
  border-radius: 50%; box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4); z-index: 999;
}
.float-wa:hover { transform: scale(1.1); }

.float-call {
  position: fixed; bottom: 100px; right: 30px; width: 60px; height: 60px;
  background: var(--color-accent); color: #fff; font-size: 24px; display: flex; align-items: center; justify-content: center;
  border-radius: 50%; box-shadow: 0 5px 20px rgba(225, 29, 46, 0.4); z-index: 999;
}
.float-call:hover { transform: scale(1.1); }

@media (max-width: 991px) {
  .hero { min-height: auto; padding: 120px 0 80px; }
  .hero__content { grid-template-columns: 1fr; text-align: center; justify-items: center; }
  .hero__btns { justify-content: center; } 
  .hero__features { flex-direction: row; justify-content: center; width: 100%; margin-top: 40px; }
  
  .nav__menu { display: none; position: absolute; top: 100%; left: 0; width: 100%; background: #fff; flex-direction: column; padding: 20px 30px; box-shadow: 0 15px 30px rgba(0,0,0,0.15); border-top: 1px solid var(--color-border); }
  .nav__menu.is-open { display: flex; }
  
  .nav__menu a { width: 100%; padding: 15px 0; border-bottom: 1px solid #f0f0f0; text-align: center; }
  
  .nav__menu .nav__btn { 
    margin: 20px 30px 10px; 
    width: auto;
    background: var(--color-accent); 
    color: #fff !important; 
    border-bottom: none; 
    border-radius: var(--radius); 
    padding: 12px 25px;
  }

  .nav__menu li:last-child a { border-bottom: none; }
  .nav__toggle { display: block; padding: 10px; margin-right: -10px; } 

  .row-split, .quote-wrapper { grid-template-columns: 1fr; gap: 40px; }
  .col-stats { grid-template-columns: repeat(3, 1fr); gap: 15px; } 
  
  .topbar { display: none; }
  .faq-image { display: none; }
  
  .footer__top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer__col:first-child, .footer__col:last-child { grid-column: 1 / -1; text-align: center; }
  .footer__socials, .contact-list li { justify-content: center; }
  .footer__col h3::after { left: 50%; transform: translateX(-50%); }
}

@media (max-width: 768px) {
   .col-stats { grid-template-columns: 1fr; } 
   .footer__top { grid-template-columns: 1fr; text-align: center; } 
}

@media (max-width: 576px) {
  .section { padding: 60px 0; }
  .hero__text h1 { font-size: 32px; margin-bottom: 15px; }
  .hero__text p { font-size: 16px; }
  .section-title h2 { font-size: 28px; }
  
  .hero__features { flex-direction: column; width: 100%; }
  .feature-box { width: 100%; border-radius: var(--radius); border-left: 0; border-top: 4px solid var(--color-accent); justify-content: center; }
  
  .clean-form { padding: 25px 20px; }
  .form-group input, .form-group select, .form-group textarea { padding: 14px; font-size: 16px; } 
  
  .float-wa, .float-call { width: 48px; height: 48px; font-size: 22px; right: 20px; }
  .float-call { bottom: 85px; font-size: 20px; }
  
  .brand__logo { height: 50px; }
}