:root {
  --bg: #f5f6f7;
  --muted: #6b7280;
  --accent: #0a64ff;
  --glass: rgba(255,255,255,0.55);
  --glass-strong: rgba(255,255,255,0.72);
  --card-radius: 18px;
  --max-width: 1200px;
}

html, body {
  height: 100%;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, system-ui;
  background: var(--bg);
  color: #0b1220;
  -webkit-font-smoothing: antialiased;
}

/* Layout */

section {
  padding: 40px 0;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
}

/* HERO */

.hero-wrap {
  position: relative;
  display: flex;
  align-items: center;
  height: 100vh;
}

.hero-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-bottom-left-radius: 28px;
  border-bottom-right-radius: 28px;
}

.hero-media img, .hero-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.02) saturate(0.95);
  transform-origin: center;
}

.hero-overlay {
  position: absolute;
  /*inset: 0;*/
  background: linear-gradient(180deg, rgba(8,10,16,0.18), rgba(245,246,247,0.24));
  /*backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);*/
  z-index: 2;
}

.hero-card {
  position: relative;
  z-index: 3;
  /*background: linear-gradient(180deg, rgba(255,255,255,0.3), rgba(255,255,255,0.2));*/
  background: rgba(0,0,0,0.4);
  /*backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);*/
  border-radius: 16px;
  padding: 48px;
  box-shadow: 0 10px 30px rgba(6,10,20,0.12);
  border: 1px solid rgba(15,23,42,0.06);
}

.brand-pill {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .35rem .6rem;
  border-radius: 999px;
  background: linear-gradient(90deg,rgba(10,100,255,0.12),rgba(111,66,193,0.06));
  font-weight: 600;
}

h1.hero-title {
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 0;
  font-size: clamp(2rem,4.5vw,3.5rem);
  line-height: 1.03;
}

p.hero-sub {
  /*color: #0b1220;*/
  color: white;
  /*font-size: 1.05rem;*/
  margin-bottom: 1.3rem;
  margin-top: 1.25rem;
}

.cta-primary {
  padding: 12px 22px;
  border-radius: 12px;
  font-weight: 600;
}

.cta-ghost {
  padding: 12px 22px;
  border-radius: 12px;
  border: 1px solid rgba(11,18,32,0.08);
  background: transparent;
}

/* Services grid with image panels */

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

.service-panel {
  position: relative;
  height: 220px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(12,18,28,0.06);
  cursor: pointer;
  transition: transform .45s cubic-bezier(.2,.9,.3,1);
}

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

.service-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  transition: transform .9s ease;
}

.service-panel:hover img {
  transform: scale(1.12) translateY(-6px);
}

.service-panel .panel-content {
  position: absolute;
  inset: 0;
  padding: 20px;
  background: linear-gradient(180deg, rgba(6,10,20,0.12), rgba(6,10,20,0.36));
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.panel-content:hover {
  background: linear-gradient(180deg, rgba(6,10,20,0.52), rgba(6,10,20,0.76));
}

.service-panel h4 {
  margin: 0;
  font-weight: 600;
}

/* Frosted contact form */

.contact-map {
  height: 340px;
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.map-blur {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1524758631624-e2822e304c36?auto=format&fit=crop&w=1600&q=60');
  background-size: cover;
  background-position: center;
  filter: blur(4px) brightness(.7);
  transform: scale(1.02);
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact-card {
  position: absolute;
  /*right: 28px;*/
  /*top: 50%;*/
  /*bottom: 50%;*/
  z-index: 4;
  /*max-width: 520px;*/
  background: #ffffffa1;
  border-radius: 14px;
  padding: 22px;
  border: 1px solid rgba(255,255,255,0.6);
  box-shadow: 0 12px 30px rgba(6,10,20,0.12);
}

/* Testimonials */

.testimonial-quote {
  font-size: 1.05rem;
  color: #0b1220;
}

.testimonial-author {
  color: var(--muted);
  font-weight: 600;
}

/* Footer */

footer {
  background: transparent;
  padding: 48px 0;
  color: var(--muted);
}

/* Utilities */

.stat-pill {
  background: #fff;
  border-radius: 12px;
  padding: 18px;
  box-shadow: 0 6px 20px rgba(11,18,32,0.06);
  min-width: 140px;
}

@media (max-width:991px) {
  .services-grid {
    grid-template-columns: repeat(2,1fr);
  }
}

@media (max-width:991px) {
  .hero-card {
    padding: 28px;
  }
}

@media (max-width:991px) {
  .contact-card {
    position: relative;
    right: auto;
    top: auto;
    /*margin: -60px 20px 0 20px;*/
  }
}

@media (max-width:575px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width:575px) {
  .hero-wrap {
    min-height: 62vh;
  }
}

#quick-contact {
  height: 340px;
  display: flex;
  align-items: center;
  /*justify-content: center;*/
}

#Availability {
  font-size: 18px;
  font-weight: 700;
}

#form-trigger {
  text-decoration: none;
  color: rgb(33,37,41);
  font-size: 20px;
  font-weight: 500;
  cursor: pointer;
  /*height: 100%;*/
}

#swiper-1 {
  height: 100vh;
}

@media (min-width: 992px) {
  .navbar {
    max-width: 850px;
    margin: auto;
  }
}

#logo-img {
  width: 65px;
}

.navbar {
  margin: auto;
  border-radius: 45px;
  background-color: rgba(0,0,0,0.4);
  padding: 6px 10px;
}

.nav-link {
  color: rgba(255,255,255,0.85);
  font-weight: 600;
}

.nav-link:focus, .nav-link:hover, .nav-link.active {
  color: white!important;
  text-underline-offset: 20px;
  text-decoration: underline;
}

@media (min-width: 768px) {
  .navbar {
    max-width: 80%;
    /*height: 80px;*/
  }
}

.btn {
  border-radius: 45px;
  font-weight: 600;
  padding: 12px 22px;
}

.testimonials-names {
  /*color: #256f8c;*/
}

#link-span {
  font-weight: 800;
  font-size: 12px;
}

.navbar-nav .navbar-nav .nav-link.show {
}

.navbar-toggler {
  border: none;
}

.navbar-toggler:focus {
  text-decoration: none;
  outline: 0;
  box-shadow: none;
}

.navbar {
  width: 90%;
}

#testimonials {
  /*background: #e6eaeb;*/
}

