:root{
  --navy:#001b3a;
  --navy-2:#062b55;
  --blue:#16b9f2;
  --cyan:#20d6e9;
  --orange:#ff9f1c;
  --orange-2:#ff7a1a;
  --white:#ffffff;
  --light:#f4f9fc;
  --text:#102033;
  --muted:#637084;
  --shadow:0 20px 45px rgba(0,27,58,.16);
  --radius:24px;
}

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

html{
  scroll-behavior:smooth;
}

body{
  font-family:Arial, Helvetica, sans-serif;
  color:var(--text);
  background:var(--white);
  line-height:1.6;
}

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

a{
  color:inherit;
}

.container{
  width:min(1120px, 92%);
  margin:0 auto;
}

.section{
  padding:90px 0;
}

.skip-link{
  position:absolute;
  top:-100px;
  left:16px;
  background:var(--orange);
  color:white;
  padding:10px 14px;
  border-radius:10px;
  z-index:9999;
}

.skip-link:focus{
  top:16px;
}

.site-header{
  position:sticky;
  top:0;
  z-index:1000;
  background:rgba(0,27,58,.95);
  backdrop-filter:blur(12px);
  box-shadow:0 8px 25px rgba(0,0,0,.16);
}

.nav-wrapper{
  display:flex;
  justify-content:space-between;
  align-items:center;
  min-height:82px;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  text-decoration:none;
  color:white;
  font-weight:900;
  letter-spacing:.5px;
  text-transform:uppercase;
}

.brand img{
  width:64px;
  height:64px;
  border-radius:50%;
  object-fit:cover;
  border:3px solid var(--orange);
}

.main-nav{
  display:flex;
  align-items:center;
  gap:24px;
}

.main-nav a{
  color:white;
  text-decoration:none;
  font-weight:700;
  font-size:.95rem;
  transition:.25s ease;
}

.main-nav a:hover{
  color:var(--orange);
}

.menu-toggle{
  display:none;
  background:none;
  border:0;
  cursor:pointer;
}

.menu-toggle span{
  display:block;
  width:30px;
  height:3px;
  background:white;
  margin:6px 0;
  border-radius:3px;
}

.hero{
  position:relative;
  min-height:calc(100vh - 82px);
  display:flex;
  align-items:center;
  overflow:hidden;
  background:
    linear-gradient(110deg, rgba(0,27,58,.97) 0%, rgba(0,78,130,.88) 50%, rgba(32,214,233,.58) 100%),
    url("https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?q=80&w=2070&auto=format&fit=crop") center/cover no-repeat;
}

.hero::after{
  content:"";
  position:absolute;
  inset:auto -12% -35% auto;
  width:650px;
  height:650px;
  background:rgba(255,159,28,.2);
  border-radius:50%;
  filter:blur(10px);
}

.hero-grid{
  position:relative;
  z-index:1;
  display:grid;
  grid-template-columns:1.1fr .9fr;
  align-items:center;
  gap:50px;
}

.eyebrow{
  color:var(--orange);
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:2px;
  margin-bottom:10px;
}

.hero h1{
  color:white;
  font-size:clamp(2.8rem, 7vw, 6.4rem);
  line-height:.94;
  text-transform:uppercase;
  letter-spacing:-2px;
  margin-bottom:24px;
}

.hero-description{
  color:#e6f8ff;
  max-width:640px;
  font-size:1.2rem;
  margin-bottom:34px;
}

.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:16px;
  margin-bottom:34px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:52px;
  padding:14px 24px;
  border-radius:999px;
  border:0;
  font-weight:900;
  text-decoration:none;
  cursor:pointer;
  transition:.25s ease;
}

.btn-primary{
  background:linear-gradient(135deg, var(--orange), var(--orange-2));
  color:white;
  box-shadow:0 12px 25px rgba(255,159,28,.32);
}

.btn-primary:hover{
  transform:translateY(-3px);
}

.btn-secondary{
  background:white;
  color:var(--navy);
}

.btn-secondary:hover{
  transform:translateY(-3px);
  background:#e8fbff;
}

.trust-row{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
  max-width:720px;
}

.trust-row div{
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.18);
  color:white;
  padding:16px;
  border-radius:18px;
}

.trust-row strong{
  display:block;
  color:white;
}

.trust-row span{
  color:#cceefa;
  font-size:.88rem;
}

.hero-card{
  background:white;
  border-radius:var(--radius);
  padding:14px;
  box-shadow:var(--shadow);
  transform:rotate(1.5deg);
}

.hero-card img{
  border-radius:18px;
  height:520px;
  width:100%;
  object-fit:cover;
  object-position:top;
}

.section-heading{
  text-align:center;
  max-width:760px;
  margin:0 auto 48px;
}

.section-heading h2,
.split h2,
.quote-info h2,
.contact h2{
  color:var(--navy);
  font-size:clamp(2rem, 4vw, 3.2rem);
  line-height:1.1;
  margin-bottom:16px;
}

.section-heading p,
.split p,
.quote-info p,
.contact p{
  color:var(--muted);
  font-size:1.05rem;
}

.services{
  background:var(--light);
}

.cards-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}

.service-card,
.testimonial,
.quote-form,
.contact-list,
.map-card,
details,
.stats-panel,
.gallery-placeholder,
.gallery-item{
  background:white;
  border-radius:var(--radius);
  box-shadow:var(--shadow);
}

.service-card{
  padding:32px;
  border:1px solid #e3edf3;
  transition:.25s ease;
}

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

.icon{
  width:58px;
  height:58px;
  display:grid;
  place-items:center;
  border-radius:18px;
  background:linear-gradient(135deg, #e5faff, #fff2dc);
  font-size:1.8rem;
  margin-bottom:20px;
}

.service-card h3{
  color:var(--navy);
  margin-bottom:10px;
  font-size:1.25rem;
}

.why-us{
  background:white;
}

.split{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:54px;
  align-items:center;
}

.check-list{
  list-style:none;
  margin-top:24px;
}

.check-list li{
  position:relative;
  padding-left:34px;
  margin-bottom:14px;
  font-weight:700;
}

.check-list li::before{
  content:"✓";
  position:absolute;
  left:0;
  top:0;
  width:24px;
  height:24px;
  display:grid;
  place-items:center;
  border-radius:50%;
  color:white;
  background:var(--orange);
  font-size:.85rem;
}

.stats-panel{
  background:linear-gradient(135deg, var(--navy), var(--navy-2));
  padding:34px;
  color:white;
  display:grid;
  gap:18px;
  border:6px solid #e5f8ff;
}

.stats-panel div{
  padding:24px;
  border-radius:18px;
  background:rgba(255,255,255,.1);
  border:1px solid rgba(255,255,255,.14);
}

.stats-panel strong{
  display:block;
  color:var(--orange);
  font-size:2.2rem;
  line-height:1;
}

.gallery{
  background:linear-gradient(180deg, #f7fbff, white);
}

.gallery-grid{
  display:grid;
  grid-template-columns:1.2fr 1fr 1fr;
  gap:20px;
}

.gallery-item{
  grid-row:span 2;
  overflow:hidden;
  min-height:420px;
}

.gallery-item img{
  height:100%;
  width:100%;
  object-fit:cover;
}

.gallery-placeholder{
  min-height:200px;
  display:grid;
  place-items:center;
  background:
    linear-gradient(135deg, rgba(0,27,58,.82), rgba(22,185,242,.72)),
    url("https://images.unsplash.com/photo-1596079890744-c1a0462d0975?q=80&w=1200&auto=format&fit=crop") center/cover;
  color:white;
  font-size:1.35rem;
  font-weight:900;
  text-align:center;
  padding:24px;
}

.testimonials{
  background:var(--navy);
}

.testimonials .section-heading h2{
  color:white;
}

.testimonial-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}

.testimonial{
  padding:30px;
  background:white;
}

.testimonial p{
  font-size:1.05rem;
  margin-bottom:18px;
  color:#2c3b4f;
}

.testimonial strong{
  color:var(--navy);
}

.quote{
  background:var(--light);
}

.quote-grid{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:40px;
  align-items:start;
}

.quick-contact{
  display:grid;
  gap:12px;
  margin-top:26px;
}

.quick-contact a{
  text-decoration:none;
  color:var(--navy);
  background:white;
  padding:16px;
  border-radius:16px;
  font-weight:800;
  box-shadow:0 10px 22px rgba(0,27,58,.08);
}

.quote-form{
  padding:34px;
  display:grid;
  gap:18px;
}

.quote-form label{
  display:grid;
  gap:8px;
  font-weight:800;
  color:var(--navy);
}

.quote-form input,
.quote-form select,
.quote-form textarea{
  width:100%;
  border:1px solid #d5e4ed;
  border-radius:14px;
  padding:14px 16px;
  font:inherit;
  outline:none;
  transition:.2s ease;
  background:white;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus{
  border-color:var(--blue);
  box-shadow:0 0 0 4px rgba(22,185,242,.15);
}

.form-note{
  color:var(--muted);
  font-size:.92rem;
}

.faq{
  background:white;
}

.faq-list{
  max-width:850px;
  margin:0 auto;
  display:grid;
  gap:16px;
}

details{
  padding:20px 24px;
  border:1px solid #e3edf3;
}

summary{
  cursor:pointer;
  font-weight:900;
  color:var(--navy);
  font-size:1.05rem;
}

details p{
  margin-top:14px;
  color:var(--muted);
}

.contact{
  background:linear-gradient(135deg, var(--navy), #064777);
  color:white;
}

.contact h2,
.contact p{
  color:white;
}

.contact-grid{
  display:grid;
  grid-template-columns:.85fr 1.15fr;
  gap:36px;
  align-items:center;
}

.contact-list{
  display:grid;
  gap:12px;
  margin-top:24px;
  padding:24px;
  background:rgba(255,255,255,.1);
  border:1px solid rgba(255,255,255,.16);
  box-shadow:none;
}

.contact-list a{
  color:white;
  text-decoration:none;
  font-weight:800;
}

.contact-list a:hover{
  color:var(--orange);
}

.map-card{
  overflow:hidden;
  min-height:360px;
  border:6px solid rgba(255,255,255,.18);
}

.map-card iframe{
  width:100%;
  height:360px;
  border:0;
  display:block;
}

.site-footer{
  background:#000f21;
  color:white;
  padding-top:52px;
}

.footer-grid{
  display:grid;
  grid-template-columns:1.4fr 1fr 1fr;
  gap:34px;
  padding-bottom:42px;
}

.footer-grid img{
  width:90px;
  height:90px;
  border-radius:50%;
  border:3px solid var(--orange);
  object-fit:cover;
  margin-bottom:16px;
}

.footer-grid h3{
  color:var(--orange);
  margin-bottom:12px;
}

.footer-grid a{
  display:block;
  color:#cdeefa;
  text-decoration:none;
  margin-bottom:8px;
}

.footer-grid a:hover{
  color:var(--orange);
}

.footer-bottom{
  border-top:1px solid rgba(255,255,255,.1);
  padding:18px;
  text-align:center;
  color:#bdd1df;
}

.floating-call,
.floating-whatsapp{
  position:fixed;
  right:18px;
  width:56px;
  height:56px;
  display:grid;
  place-items:center;
  border-radius:50%;
  color:white;
  text-decoration:none;
  font-size:1.4rem;
  z-index:999;
  box-shadow:0 15px 30px rgba(0,0,0,.22);
  transition:.2s ease;
}

.floating-call{
  bottom:88px;
  background:var(--orange);
}

.floating-whatsapp{
  bottom:20px;
  background:#25d366;
}

.floating-call:hover,
.floating-whatsapp:hover{
  transform:translateY(-4px);
}

.reveal{
  opacity:0;
  transform:translateY(26px);
  transition:opacity .7s ease, transform .7s ease;
}

.reveal.active{
  opacity:1;
  transform:translateY(0);
}

@media(max-width:920px){
  .menu-toggle{
    display:block;
  }

  .main-nav{
    position:absolute;
    top:82px;
    left:0;
    right:0;
    background:var(--navy);
    flex-direction:column;
    align-items:flex-start;
    padding:22px 4%;
    gap:18px;
    display:none;
  }

  .main-nav.active{
    display:flex;
  }

  .hero-grid,
  .split,
  .quote-grid,
  .contact-grid,
  .footer-grid{
    grid-template-columns:1fr;
  }

  .hero{
    padding:70px 0;
  }

  .hero-card img{
    height:auto;
    max-height:620px;
  }

  .cards-grid,
  .testimonial-grid{
    grid-template-columns:1fr 1fr;
  }

  .gallery-grid{
    grid-template-columns:1fr 1fr;
  }

  .gallery-item{
    grid-column:1 / -1;
  }
}

@media(max-width:640px){
  .section{
    padding:68px 0;
  }

  .brand span{
    display:none;
  }

  .trust-row,
  .cards-grid,
  .testimonial-grid,
  .gallery-grid{
    grid-template-columns:1fr;
  }

  .hero-actions{
    display:grid;
  }

  .btn{
    width:100%;
  }

  .hero h1{
    letter-spacing:-1px;
  }

  .quote-form{
    padding:24px;
  }

  .floating-call,
  .floating-whatsapp{
    width:52px;
    height:52px;
    right:14px;
  }
}
