:root {
  --red: #ff1f2f;
  --dark: #0b0b0f;
  --mid: #1c1c22;
  --light: #f8f9fb;
  --accent: #ff5c5c;
  --radius: 18px;
  --shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

body {
  font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #222;
  background: var(--light);
  margin: 0;
  padding: 0;
}

.custom-nav {
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.custom-nav.solid {
  background: #050505;
  border-bottom-color: rgba(214, 31, 50, 0.4);
}

.hero {
  min-height: 100vh;
  background: url("gallery/new%20image.jpeg") center/cover;
  padding: 120px 0 60px;
}

.hero-content {
  margin-top: 60px;
}

.hero-copy h1 {
  font-size: clamp(2.8rem, 5vw, 3.8rem);
}

.hero-subtitle {
  font-size: 1.6rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.02em;
}

.hero-statement {
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.92);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.hero-statement p {
  margin-bottom: 0;
  background: rgba(255, 255, 255, 0.1);
  border-left: 4px solid var(--red);
  padding: 0.65rem 0.85rem;
  border-radius: 12px;
  font-size: 1.15rem;
  line-height: 1.5;
  font-weight: 600;
}

.hero-copy {
  background: rgba(0, 0, 0, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  padding: 38px 36px;
  box-shadow: var(--shadow);
}

.hero-copy h1,
.hero-copy p,
.hero-copy .hero-subtitle,
.hero-copy .hero-statement p {
  text-shadow: 0 6px 18px rgba(0, 0, 0, 0.7);
}

.hero-copy .badge {
  letter-spacing: 0.15em;
  padding: 0.6rem 1.2rem;
}

@media (max-width: 575px) {
  .hero-copy {
    padding: 24px;
    border-radius: 22px;
  }
}

.glass-card {
  background: rgba(12, 12, 15, 0.8);
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow);
}

.glass-card .form-control,
.glass-card .form-select {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
}

.glass-card .form-control::placeholder,
.glass-card .form-select,
.glass-card label {
  color: rgba(255, 255, 255, 0.7);
}

.floating-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: #fff;
  border-radius: var(--radius);
  padding: 16px;
  z-index: 1000;
  width: 220px;
}

.trustmarks {
  background: #fff;
}

.certificates-partners {
  background: #fff;
}

.certificate-logo {
  background: #fff;
  border-radius: var(--radius);
  padding: 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.certificate-logo:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.certificate-logo img {
  max-height: 80px;
  width: auto;
  object-fit: contain;
  filter: grayscale(20%);
  transition: filter 0.3s ease;
}

.certificate-logo:hover img {
  filter: grayscale(0%);
}

@media (max-width: 575px) {
  .certificate-logo {
    padding: 16px;
  }
  
  .certificate-logo img {
    max-height: 60px;
  }
}

.trust-card {
  background: #111;
  color: #fff;
  border-radius: var(--radius);
  padding: 24px;
  height: 100%;
}

.trust-card i {
  font-size: 2rem;
  color: var(--red);
  margin-bottom: 12px;
}

.section-heading .eyebrow {
  letter-spacing: 0.2em;
  font-size: 0.85rem;
}

.service-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
  padding: 24px;
  height: 100%;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--red);
}

.service-card i {
  font-size: 2.2rem;
  color: var(--red);
  margin-bottom: 16px;
}

.highlighted-metrics {
  background: var(--light);
}

.metric-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}

.metric-card.dark {
  background: var(--dark);
  color: #fff;
}

.area-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  display: flex;
  gap: 12px;
  align-items: center;
}

.area-card i {
  color: var(--red);
}

.cta-panel {
  background: linear-gradient(135deg, var(--dark), #1a1a1a);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.gallery-item {
  margin: 0;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
}

.gallery-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.07);
}

.video-card {
  background: #111;
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: var(--shadow);
}

.video-card video {
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.testimonial-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  height: 100%;
}

.process {
  background: #f4f4f6;
}

.step-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  box-shadow: var(--shadow);
}

.step-card span {
  display: inline-block;
  background: var(--dark);
  color: #fff;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  line-height: 48px;
  font-weight: 700;
  margin-bottom: 16px;
}

.contact-section {
  background: radial-gradient(circle at top left, #b4041f, #060606 60%);
}

.contact-link {
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 16px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.05);
  text-decoration: none;
  color: #fff;
}

.contact-card {
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

footer {
  background: #000;
}

@media (max-width: 991px) {
  .floating-cta {
    width: calc(100% - 32px);
    left: 16px;
    right: 16px;
  }

  .hero {
    padding-top: 70px;
    padding-bottom: 40px;
    min-height: auto;
  }

  .hero-content {
    margin-top: 0;
  }
}

@media (max-width: 575px) {
  .hero {
    padding-top: 60px;
    padding-bottom: 30px;
  }

  .gallery-item img {
    height: 160px;
  }
}

