:root {
  --navy: #0f1b2b;
  --navy-dark: #0a121e;
  --red: #d62828;
  --red-dark: #a81f1f;
  --off-white: #f4f4f2;
  --gray: #6b7280;
  --light-gray: #e5e7eb;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  color: var(--navy);
  background: var(--off-white);
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(10, 18, 30, 0.92);
  backdrop-filter: blur(6px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: 1140px;
  margin: 0 auto;
}

.logo {
  color: #fff;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: 0.5px;
}

.logo span {
  color: var(--red);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  color: #dfe4ea;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: #fff;
}

.nav-call {
  background: var(--red);
  color: #fff !important;
  padding: 10px 18px;
  border-radius: 6px;
  font-weight: 700;
  transition: background 0.2s;
}

.nav-call:hover {
  background: var(--red-dark);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.6rem;
  cursor: pointer;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-image:
    linear-gradient(180deg, rgba(10,14,20,0.75) 0%, rgba(10,14,20,0.55) 45%, rgba(10,14,20,0.92) 100%),
    url('hero.jpg');
  background-size: cover;
  background-position: center 35%;
  background-repeat: no-repeat;
}

.hero-content {
  max-width: 720px;
  padding: 160px 24px 100px;
  margin: 0 auto;
  text-align: center;
}

.hero-badge {
  display: inline-block;
  background: rgba(214, 40, 40, 0.15);
  border: 1px solid var(--red);
  color: #ff8a8a;
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero h1 {
  color: #fff;
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.15;
  text-shadow: 0 4px 24px rgba(0,0,0,0.5);
}

.hero h1 span {
  color: var(--red);
}

.hero p {
  color: #e6e9ee;
  font-size: 1.15rem;
  margin: 22px auto 36px;
  max-width: 560px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 30px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 1rem;
  transition: transform 0.15s, background 0.2s, box-shadow 0.2s;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--red);
  color: #fff;
  box-shadow: 0 8px 24px rgba(214, 40, 40, 0.35);
}

.btn-primary:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.5);
}

.btn-secondary:hover {
  border-color: #fff;
  transform: translateY(-2px);
}

.hero-meta {
  margin-top: 40px;
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
  color: #c7ccd4;
  font-size: 0.9rem;
}

.hero-meta div {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Trust strip */
.trust-strip {
  background: var(--navy-dark);
  color: #fff;
  padding: 18px 0;
}

.trust-strip .container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 16px;
  text-align: center;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.3px;
  color: #cbd2db;
}

/* Sections */
section {
  padding: 90px 0;
}

.section-tag {
  color: var(--red);
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-size: 0.82rem;
  display: block;
  margin-bottom: 10px;
  text-align: center;
}

.section-title {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.section-sub {
  text-align: center;
  color: var(--gray);
  max-width: 620px;
  margin: 0 auto 56px;
  font-size: 1.05rem;
}

/* About */
.about {
  background: #fff;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.about-text .section-tag,
.about-text .section-title {
  text-align: left;
  margin-bottom: 18px;
}

.about-text p {
  color: var(--gray);
  margin-bottom: 16px;
  font-size: 1.02rem;
}

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

.about-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-weight: 600;
}

.check {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
}

.about-card {
  background: var(--navy);
  border-radius: 14px;
  padding: 40px;
  color: #fff;
}

.about-card h3 {
  font-size: 1.4rem;
  margin-bottom: 20px;
}

.about-card .stat-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 24px;
}

.stat-num {
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--red);
}

.stat-label {
  color: #b7bec9;
  font-size: 0.88rem;
  margin-top: 4px;
}

/* Services */
.services {
  background: var(--off-white);
}

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

.service-card {
  background: #fff;
  padding: 34px 28px;
  border-radius: 12px;
  border: 1px solid var(--light-gray);
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(15, 27, 43, 0.1);
  border-color: transparent;
}

.service-icon {
  width: 52px;
  height: 52px;
  border-radius: 10px;
  background: rgba(214, 40, 40, 0.1);
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.service-card p {
  color: var(--gray);
  font-size: 0.96rem;
}

/* Why / testimonial */
.testimonial {
  background: var(--navy);
  color: #fff;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: center;
}

.testimonial .section-tag {
  text-align: left;
}

.testimonial-title {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 22px;
  line-height: 1.25;
}

.testimonial-features {
  list-style: none;
  display: grid;
  gap: 16px;
}

.testimonial-features li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  color: #d5dae2;
}

.quote-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  padding: 34px;
}

.stars {
  color: #ffb020;
  font-size: 1.1rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.quote-card p {
  font-size: 1.08rem;
  color: #eceff3;
  margin-bottom: 20px;
}

.quote-author {
  font-weight: 700;
}

.quote-role {
  color: #9aa4b2;
  font-size: 0.88rem;
}

/* CTA banner */
.cta-banner {
  background: var(--red);
  color: #fff;
  text-align: center;
}

.cta-banner h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 14px;
}

.cta-banner p {
  color: rgba(255,255,255,0.9);
  margin-bottom: 32px;
  font-size: 1.05rem;
}

.cta-banner .btn-secondary {
  border-color: rgba(255,255,255,0.7);
}

.cta-banner .btn-white {
  background: #fff;
  color: var(--red);
}

.cta-banner .btn-white:hover {
  background: #f1f1f1;
  transform: translateY(-2px);
}

/* Contact */
.contact {
  background: #fff;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
}

.contact-info .section-tag,
.contact-info .section-title {
  text-align: left;
}

.info-row {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 26px;
}

.info-icon {
  width: 46px;
  height: 46px;
  border-radius: 10px;
  background: rgba(214, 40, 40, 0.1);
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.info-row h4 {
  font-size: 1.02rem;
  margin-bottom: 4px;
}

.info-row p, .info-row a {
  color: var(--gray);
}

.info-row a:hover {
  color: var(--red);
}

.map-frame {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--light-gray);
  min-height: 380px;
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 380px;
  border: 0;
  display: block;
}

/* Footer */
footer {
  background: var(--navy-dark);
  color: #9aa4b2;
  padding: 40px 0;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-logo {
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
}

.footer-logo span {
  color: var(--red);
}

.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-links a:hover {
  color: #fff;
}

.footer-bottom {
  text-align: center;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.85rem;
}

/* Sticky call button (mobile) */
.sticky-call {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: var(--red);
  color: #fff;
  text-align: center;
  padding: 16px;
  font-weight: 700;
  font-size: 1.05rem;
  box-shadow: 0 -6px 20px rgba(0,0,0,0.25);
}

/* Responsive */
@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .hero h1 { font-size: 2.3rem; }
  .about-grid, .testimonial-grid, .contact-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .sticky-call { display: block; }
  body { padding-bottom: 60px; }
}

@media (max-width: 560px) {
  .services-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 1.9rem; }
  .hero-content { padding-top: 140px; }
  .hero-meta { gap: 18px; }
}
