@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800;900&family=Oswald:wght@500;600;700&family=Poppins:wght@400;500;600;700&display=swap");

:root {
  --blue: #0d85d8;
  --blue-dark: #0a6bb0;
  --gold: #fbbf24;
  --gold-dark: #d4a017;
  --dark: #030303;
  --dark-2: #1a1f24;
  --dark-3: #2a3135;
  --light: #f3f8fb;
  --white: #ffffff;
  --gray: #6b7280;
  --text: #1f2937;
  --radius: 5px;
  --shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  --max: 1140px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Poppins", "Montserrat", sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

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

a {
  color: var(--blue);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

h1,
h2,
h3,
h4 {
  font-family: "Oswald", "Montserrat", sans-serif;
  line-height: 1.2;
  margin: 0 0 0.75rem;
}

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

/* Top bar */
.top-bar {
  background: var(--dark);
  color: var(--white);
  padding: 0.5rem 0;
  font-size: 0.85rem;
  text-align: center;
}

.top-bar strong {
  color: var(--gold);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(3, 3, 3, 0.97);
  border-bottom: 3px solid var(--blue);
  box-shadow: var(--shadow);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 0;
  flex-wrap: wrap;
}

.logo {
  display: flex;
  flex-direction: column;
  color: var(--white);
  text-decoration: none;
}

.logo:hover {
  text-decoration: none;
}

.logo-main {
  font-family: Oswald, sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.logo-sub {
  font-size: 0.7rem;
  color: var(--gold);
  font-weight: 600;
}

.nav-desktop {
  display: none;
  gap: 0.25rem;
  flex-wrap: wrap;
  align-items: center;
}

.nav-desktop a {
  color: #e5e7eb;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.4rem 0.55rem;
  border-radius: var(--radius);
  text-decoration: none;
  white-space: nowrap;
}

.nav-desktop a:hover,
.nav-desktop a.active {
  background: var(--blue);
  color: var(--white);
  text-decoration: none;
}

.btn-call {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: linear-gradient(180deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--dark) !important;
  font-weight: 800;
  font-size: 0.95rem;
  padding: 0.65rem 1.1rem;
  border-radius: var(--radius);
  text-decoration: none !important;
  box-shadow: 0 4px 14px rgba(251, 191, 36, 0.4);
  white-space: nowrap;
}

.btn-call:hover {
  transform: translateY(-1px);
  filter: brightness(1.05);
}

/* Hero */
.hero {
  position: relative;
  min-height: 88vh;
  display: grid;
  align-items: center;
  color: var(--white);
  background: var(--dark) center/cover no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(3, 3, 3, 0.88) 0%,
    rgba(13, 133, 216, 0.45) 100%
  );
}

.hero .container {
  position: relative;
  z-index: 1;
  padding: 3rem 0;
}

.hero-grid {
  display: grid;
  gap: 2rem;
  align-items: start;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  text-transform: uppercase;
  color: var(--white);
}

.hero h2 {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 500;
  color: #e5e7eb;
  font-family: Poppins, sans-serif;
}

.hero-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--dark);
  font-weight: 800;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  font-size: 0.85rem;
  margin-bottom: 1rem;
}

/* Forms */
.quote-form {
  background: rgba(3, 3, 3, 0.75);
  border: 2px solid var(--blue);
  border-radius: 8px;
  padding: 1.5rem;
  backdrop-filter: blur(6px);
}

.quote-form h3 {
  color: var(--white);
  text-align: center;
  font-size: 1.35rem;
  margin-bottom: 1rem;
}

.form-group {
  margin-bottom: 0.85rem;
}

.form-group label {
  display: block;
  color: var(--white);
  font-weight: 700;
  font-size: 0.8rem;
  margin-bottom: 0.3rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.8rem 0.9rem;
  border: 1px solid #acacac;
  border-radius: var(--radius);
  font-family: Montserrat, sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
}

.form-group textarea {
  min-height: 90px;
  resize: vertical;
}

.form-check {
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
  margin-bottom: 0.6rem;
  font-size: 0.68rem;
  color: #d1d5db;
  line-height: 1.35;
}

.form-check input {
  margin-top: 0.15rem;
  flex-shrink: 0;
}

.btn-submit {
  width: 100%;
  background: linear-gradient(180deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--dark);
  border: none;
  padding: 0.9rem;
  font-size: 1rem;
  font-weight: 900;
  border-radius: var(--radius);
  cursor: pointer;
  font-family: Montserrat, sans-serif;
  letter-spacing: 0.05em;
}

.btn-submit:hover {
  filter: brightness(1.06);
}

/* Sections */
section {
  padding: 4rem 0;
}

.section-dark {
  background: var(--dark-2);
  color: var(--white);
}

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

.section-title {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-title .eyebrow {
  color: var(--blue);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.section-dark .section-title .eyebrow {
  color: var(--gold);
}

.section-title h2 {
  font-size: clamp(1.75rem, 3vw, 2.4rem);
  text-transform: uppercase;
}

.section-dark .section-title h2 {
  color: var(--white);
}

/* Service cards */
.services-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.service-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.2s;
}

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

.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.service-card-body {
  padding: 1.25rem;
}

.service-card h3 {
  font-size: 1.2rem;
  color: var(--dark);
}

.service-card p {
  font-size: 0.92rem;
  color: var(--gray);
  margin-bottom: 1rem;
}

.btn-link {
  display: inline-block;
  color: var(--blue);
  font-weight: 700;
  font-size: 0.9rem;
}

/* About */
.about-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.about-grid img {
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.about-content p {
  margin-bottom: 1rem;
}

.btn-primary {
  display: inline-block;
  background: var(--blue);
  color: var(--white) !important;
  font-weight: 700;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  text-decoration: none !important;
}

.btn-primary:hover {
  background: var(--blue-dark);
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
}

.gallery-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

/* Service areas */
.areas-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: center;
}

.area-tag {
  background: var(--white);
  border: 2px solid var(--blue);
  color: var(--blue);
  font-weight: 700;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-size: 0.85rem;
  text-decoration: none;
}

.area-tag:hover {
  background: var(--blue);
  color: var(--white);
  text-decoration: none;
}

.section-dark .area-tag {
  background: transparent;
  border-color: var(--gold);
  color: var(--gold);
}

.section-dark .area-tag:hover {
  background: var(--gold);
  color: var(--dark);
}

/* Reviews */
.reviews-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.review-card {
  background: var(--white);
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.review-stars {
  color: var(--gold);
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
  letter-spacing: 0.1em;
}

.review-card p {
  font-size: 0.95rem;
  font-style: italic;
  margin-bottom: 1rem;
}

.review-card strong {
  color: var(--blue);
}

/* FAQ */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border-radius: 8px;
  margin-bottom: 0.75rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  overflow: hidden;
}

.faq-item summary {
  padding: 1rem 1.25rem;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  color: var(--blue);
  font-size: 1.4rem;
  font-weight: 400;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  padding: 0 1.25rem 1rem;
  margin: 0;
  color: var(--gray);
  font-size: 0.95rem;
}

/* Inner page hero */
.page-hero {
  background: var(--dark) center/cover no-repeat;
  color: var(--white);
  padding: 5rem 0 3rem;
  position: relative;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(3, 3, 3, 0.9), rgba(13, 133, 216, 0.5));
}

.page-hero .container {
  position: relative;
}

.page-hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  text-transform: uppercase;
}

.page-hero .subtitle {
  font-size: 1.1rem;
  color: #e5e7eb;
  max-width: 700px;
}

/* Content blocks */
.content-block {
  display: grid;
  gap: 2rem;
  align-items: center;
  margin-bottom: 3rem;
}

.content-block:nth-child(even) {
  direction: rtl;
}

.content-block:nth-child(even) > * {
  direction: ltr;
}

.content-block img {
  border-radius: 8px;
  box-shadow: var(--shadow);
  width: 100%;
  max-height: 360px;
  object-fit: cover;
}

.content-block h2 {
  color: var(--dark);
  font-size: 1.6rem;
}

/* Process */
.process-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.process-step {
  text-align: center;
  padding: 1.5rem;
  background: var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.process-step .step-num {
  width: 48px;
  height: 48px;
  background: var(--blue);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.25rem;
  margin: 0 auto 1rem;
}

/* Footer */
.site-footer {
  background: var(--dark);
  color: #d1d5db;
  padding: 3rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  margin-bottom: 2rem;
}

.footer-grid h4 {
  color: var(--gold);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer-grid ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-grid li {
  margin-bottom: 0.4rem;
}

.footer-grid a {
  color: #e5e7eb;
  font-size: 0.88rem;
}

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

.footer-bottom {
  border-top: 1px solid var(--dark-3);
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.85rem;
}

.footer-bottom a {
  color: var(--gold);
}

/* Mobile call bar */
.mobile-call {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: var(--gold);
  text-align: center;
  padding: 0.85rem;
  font-weight: 800;
  color: var(--dark);
  text-decoration: none !important;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
}

/* Contact page */
.contact-grid {
  display: grid;
  gap: 2rem;
}

.contact-info-card {
  background: var(--light);
  padding: 2rem;
  border-radius: 8px;
  border-left: 4px solid var(--blue);
}

.contact-info-card h3 {
  color: var(--blue);
}

/* Legal */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
}

.legal-content h2 {
  margin-top: 2rem;
  font-size: 1.3rem;
}

.legal-content p,
.legal-content li {
  color: var(--gray);
}

/* Promo banner */
.promo-strip {
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--dark);
  text-align: center;
  padding: 0.75rem 1rem;
  font-weight: 800;
  font-size: 1rem;
}

/* Responsive */
@media (min-width: 900px) {
  .nav-desktop {
    display: flex;
  }

  .hero-grid {
    grid-template-columns: 1fr 400px;
  }

  .about-grid,
  .content-block {
    grid-template-columns: 1fr 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr 400px;
  }
}

@media (max-width: 899px) {
  .mobile-call {
    display: block;
  }

  body {
    padding-bottom: 60px;
  }
}
