/* =========================
   RESET / GLOBAL
========================= */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', Arial, sans-serif;
  color: #1c2430;
  background: #f6f6f3;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
}

.container {
  width: min(1200px, calc(100% - 80px));
  margin: 0 auto;
}

.section {
  padding: 90px 0;
}

.narrow {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.narrow-card {
  max-width: 920px;
  margin: 0 auto;
}

h1,
h2,
h3 {
  font-family: 'Oswald', sans-serif;
  line-height: 1.15;
  margin-top: 0;
}

h1 {
  font-size: clamp(2.3rem, 5vw, 4.6rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.3rem);
  margin-bottom: 18px;
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-top: 0;
}

.eyebrow {
  margin-bottom: 14px;
  color: #d63a2f;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  font-size: 0.84rem;
  font-weight: 800;
}

.eyebrow-light {
  color: #89d6ff;
}

.section-intro {
  max-width: 760px;
  margin: 0 auto 42px;
  font-size: 1.08rem;
  color: #5e6774;
  text-align: center;
}

/* =========================
   HEADER
========================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #0b1b2b;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.14);
}

.header-inner {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: white;
  transition: transform 0.25s ease;
}

.logo:hover {
  transform: translateY(-1px);
}

.logo img {
  height: 90px;
  width: auto;
  object-fit: contain;
  transform: translateY(4px);
}

.logo-text {
  font-family: 'Oswald', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.6px;
  color: white;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.logo:hover .logo-text {
  background: linear-gradient(to right, #f46a00, #2f9df4);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 10px rgba(244, 106, 0, 0.22);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.main-nav a {
  color: white;
  font-size: 0.96rem;
  font-weight: 600;
  transition: color 0.25s ease;
}

.main-nav a:hover,
.main-nav a.active {
  color: #ef4f41;
}

.header-call-btn {
  padding: 12px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, #d63a2f, #ef4f41);
  color: white !important;
  font-weight: 700 !important;
  box-shadow: 0 10px 24px rgba(214, 58, 47, 0.24);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.header-call-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(214, 58, 47, 0.32);
  color: white !important;
}

/* =========================
   HERO
========================= */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url("hero.png") center center / cover no-repeat;
  transform: scale(1.02);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(8, 18, 33, 0.78), rgba(8, 18, 33, 0.42)),
    linear-gradient(to bottom, rgba(8, 18, 33, 0.20), rgba(8, 18, 33, 0.48));
}

.hero-content {
  position: relative;
  z-index: 2;
  color: white;
  max-width: 860px;
  padding: 70px 0;
}

.hero h1,
.hero h2 {
  margin-bottom: 18px;
  max-width: 900px;
}

.hero-subtext {
  max-width: 760px;
  font-size: 1.15rem;
  color: #e7edf5;
  margin-bottom: 30px;
}

.hero-topline {
  display: inline-block;
  margin-bottom: 18px;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #eaf5ff;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.4px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.hero-trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: #dbe8f4;
  font-size: 0.95rem;
  font-weight: 500;
}

.hero-trust-list span::before {
  content: "•";
  margin-right: 8px;
  color: #f4a825;
}

/* =========================
   BUTTONS
========================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, #d63a2f, #ef4f41);
  color: white;
  box-shadow: 0 12px 28px rgba(214, 58, 47, 0.26);
}

.btn-primary:hover {
  box-shadow: 0 16px 32px rgba(214, 58, 47, 0.34);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(4px);
}

.btn-secondary:hover {
  background: white;
  color: #0b1b2b;
}

.btn-outline-dark {
  background: transparent;
  color: #0b1b2b;
  border: 2px solid #0b1b2b;
}

.btn-outline-dark:hover {
  background: #0b1b2b;
  color: white;
}

/* =========================
   TRUST STRIP / QUICK TRUST
========================= */
.quick-trust {
  background: white;
  padding: 24px 0 10px;
}

.quick-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.quick-trust-card {
  background: #f8f8f5;
  border: 1px solid #ece9e2;
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.04);
}

.quick-trust-card h3 {
  margin-bottom: 10px;
  font-size: 1.25rem;
}

.quick-trust-card p {
  margin: 0;
  color: #5e6774;
}

/* =========================
   GENERIC CARD GRIDS
========================= */
.card-grid {
  display: grid;
  gap: 24px;
}

.card-grid.three-col {
  grid-template-columns: repeat(3, 1fr);
}

.card-grid.two-col {
  grid-template-columns: repeat(2, 1fr);
}

.info-card,
.market-card,
.feature-card,
.review-card,
.dark-card,
.service-detail-card {
  background: white;
  border: 1px solid #ebe7de;
  border-radius: 22px;
  padding: 30px;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.05);
}

.info-card h3,
.market-card h3,
.feature-card h3,
.review-card h3,
.dark-card h3,
.service-detail-card h3 {
  margin-bottom: 12px;
}

.info-card p,
.market-card p,
.feature-card p,
.review-card p,
.dark-card p,
.service-detail-card p {
  margin-bottom: 0;
  color: #5c6673;
}

.icon-box {
  width: 62px;
  height: 62px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-size: 1.55rem;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #fff4ef, #fef9f7);
  border: 1px solid #f5dfd5;
}

.center-button {
  text-align: center;
  margin-top: 36px;
}

/* =========================
   SERVICES PREVIEW
========================= */
.services-preview {
  background: #f6f6f3;
}

/* =========================
   WHO WE SERVE
========================= */
.who-we-serve {
  background: #ffffff;
}

/* =========================
   DARK BAND
========================= */
.dark-band {
  position: relative;
  background:
    linear-gradient(rgba(7, 20, 38, 0.82), rgba(7, 20, 38, 0.82)),
    url("hero.png") center center / cover no-repeat;
  color: white;
}

.dark-band h2 {
  color: white;
}

.dark-band-intro {
  max-width: 760px;
  color: #d4e0eb;
  margin-bottom: 38px;
}

.dark-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.10);
  color: white;
  backdrop-filter: blur(4px);
}

.dark-card p {
  color: #d7e2ed;
}

/* =========================
   WHY CHOOSE
========================= */
.why-choose {
  background: #f8f7f2;
}

/* =========================
   REVIEWS
========================= */
.reviews-section {
  background: #ffffff;
}

.review-card {
  min-height: 260px;
}

.stars {
  color: #f4b63d;
  font-size: 1.2rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.review-card span {
  display: block;
  margin-top: 4px;
  color: #7a8491;
  font-size: 0.95rem;
}

/* =========================
   EMERGENCY CTA SECTION
========================= */
.emergency-section {
  background: linear-gradient(135deg, #d63a2f, #ef4f41);
  color: white;
}

.emergency-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.emergency-inner h2 {
  color: white;
  margin-bottom: 12px;
}

.emergency-inner p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.92);
  max-width: 680px;
}

.emergency-call-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 240px;
  min-height: 58px;
  padding: 16px 28px;
  border-radius: 999px;
  background: white;
  color: #c7362d;
  font-weight: 800;
  font-size: 1.02rem;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.15);
  transition: transform 0.25s ease;
}

.emergency-call-btn:hover {
  transform: translateY(-2px);
}

/* =========================
   SERVICE AREA
========================= */
.service-area {
  background: #f6f6f3;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.tag-list span {
  padding: 10px 16px;
  border-radius: 999px;
  background: white;
  border: 1px solid #e6e0d6;
  font-weight: 600;
  color: #32404f;
}

/* =========================
   PAGE HERO
========================= */
.page-hero {
  padding: 80px 0 54px;
}

.page-hero-light {
  background: linear-gradient(to bottom, #eef3ef, #f7f6f2);
}

/* =========================
   CONTENT CARD
========================= */
.content-card {
  background: white;
  border: 1px solid #ebe7de;
  border-radius: 24px;
  padding: 44px;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.05);
}

.about-content-card {
  text-align: center;
}

.about-content-card h2 {
  margin-bottom: 24px;
}

.about-content-card p {
  color: #5d6774;
  margin-bottom: 18px;
}

/* =========================
   SERVICES PAGE DETAIL GRID
========================= */
.service-detail-grid .service-detail-card {
  min-height: 190px;
}

/* =========================
   GALLERY / JOB CARDS
========================= */

.gallery-section .container {
  max-width: 1120px;
  width: calc(100% - 80px);
  margin: 0 auto;
}

.jobs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 20px;
}

.job-card {
  background: white;
  border: 1px solid #ebe7de;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.job-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 42px rgba(0, 0, 0, 0.10);
}

.job-slider {
  position: relative;
  background: #e9ecef;
}

.job-slides {
  position: relative;
  width: 100%;
  height: 380px;
  overflow: hidden;
}

.job-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: none;
}

.job-image.active {
  display: block;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 50%;
  background: rgba(11, 27, 43, 0.72);
  color: white;
  font-size: 1.25rem;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background 0.25s ease, transform 0.25s ease;
}

.slider-btn:hover {
  background: rgba(214, 58, 47, 0.92);
}

.slider-btn.prev {
  left: 14px;
}

.slider-btn.next {
  right: 14px;
}

.job-card-content {
  padding: 24px 24px 26px;
}

.job-category {
  margin-bottom: 10px;
  color: #d63a2f;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  font-size: 0.78rem;
  font-weight: 800;
}

.job-card-content h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
  color: #0b1b2b;
}

.job-card-content p:last-child {
  margin-bottom: 0;
  color: #5d6774;
  font-size: 0.98rem;
  line-height: 1.65;
}

.page-hero .narrow {
  max-width: 1000px;
}

.page-hero h1 {
  font-size: clamp(2.3rem, 4vw, 3.8rem);
}

/* =========================
   CONTACT PAGE
========================= */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: start;
}

.contact-info-panel,
.contact-form {
  background: white;
  border: 1px solid #ebe7de;
  border-radius: 24px;
  padding: 34px;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.05);
}

.contact-info-panel h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}

.contact-info-panel p {
  color: #5d6774;
}

.contact-info-block {
  margin-top: 26px;
}

.contact-label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  color: #d63a2f;
  font-weight: 800;
}

.phone-link {
  display: inline-block;
  font-family: 'Oswald', sans-serif;
  font-size: 2.4rem;
  color: #0b1b2b;
  transition: color 0.25s ease;
}

.phone-link:hover {
  color: #d63a2f;
}

.contact-service-list {
  margin: 0;
  padding-left: 18px;
  color: #5d6774;
}

.contact-service-list li {
  margin-bottom: 8px;
}

.contact-form h3 {
  margin-bottom: 22px;
}

.contact-form label {
  display: block;
  margin-bottom: 8px;
  font-weight: 700;
  color: #1c2430;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  margin-bottom: 18px;
  padding: 16px 18px;
  border: 1px solid #ddd6ca;
  border-radius: 14px;
  background: #fcfbf8;
  font: inherit;
  color: #1c2430;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #2f9df4;
  box-shadow: 0 0 0 4px rgba(47, 157, 244, 0.12);
}

.contact-form textarea {
  resize: vertical;
}

.form-btn {
  width: 100%;
  min-height: 56px;
  border: none;
  border-radius: 999px;
  background: linear-gradient(135deg, #0b2f5f, #1d4f8f);
  color: white;
  font-family: 'Inter', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 14px 28px rgba(11, 47, 95, 0.22);
}

.form-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 32px rgba(11, 47, 95, 0.28);
}

.form-note {
  margin-top: 16px;
  font-size: 0.96rem;
  color: #5d6774;
}

.form-note a {
  color: #d63a2f;
  font-weight: 700;
}

/* =========================
   FOOTER
========================= */
.site-footer {
  margin-top: 70px;
  background: #0b1b2b;
  color: white;
  padding: 38px 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
}

.site-footer h3 {
  margin-bottom: 10px;
  font-size: 1.4rem;
}

.site-footer p {
  margin: 6px 0;
  color: #d7e2ed;
}

.site-footer a {
  color: #d7e2ed;
}

.site-footer a:hover {
  color: #f4a825;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1100px) {
  .card-grid.three-col {
    grid-template-columns: repeat(2, 1fr);
  }

  .quick-trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .jobs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .header-inner {
    flex-direction: column;
    align-items: center;
    padding: 16px 0;
    text-align: center;
  }

  .logo {
    justify-content: center;
  }

  .main-nav {
    width: 100%;
    justify-content: center;
    gap: 14px;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .emergency-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 768px) {
  body {
    padding-bottom: 78px;
  }

  .container {
    width: min(100% - 28px, 1200px);
  }

  .section {
    padding: 70px 0;
  }

  .site-header {
    position: sticky;
  }

  .header-inner {
    min-height: auto;
    gap: 14px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .logo {
    justify-content: center;
  }

  .logo img {
    height: 58px;
    transform: translateY(2px);
  }

  .logo-text {
    font-size: 1.45rem;
    letter-spacing: 1.1px;
  }

  .main-nav {
    width: 100%;
    justify-content: center;
    gap: 10px;
    text-align: center;
  }

  .main-nav a {
    font-size: 0.92rem;
    text-align: center;
  }

  .header-call-btn {
    display: none;
  }

  .hero {
    min-height: 74vh;
  }

  .hero-content {
    padding: 56px 0;
  }

  .hero h1,
  .hero h2 {
    font-size: 2.4rem;
  }

  .hero-subtext {
    font-size: 1rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .btn {
    width: 100%;
    max-width: 320px;
  }

  .hero-trust-list {
    justify-content: center;
    text-align: center;
  }

  .job-slides {
    height: 240px;
  }

  .job-card-content {
    padding: 22px;
  }

  .job-card-content h3 {
    font-size: 1.3rem;
  }

  .slider-btn {
    width: 38px;
    height: 38px;
    font-size: 1.05rem;
  }

  .quick-trust-grid,
  .card-grid.three-col,
  .card-grid.two-col,
  .jobs-grid {
    grid-template-columns: 1fr;
  }

  .content-card,
  .contact-info-panel,
  .contact-form,
  .info-card,
  .market-card,
  .feature-card,
  .review-card,
  .dark-card,
  .service-detail-card {
    padding: 26px;
  }

  .phone-link {
    font-size: 2rem;
  }

  .footer-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .site-footer h3,
  .site-footer p {
    text-align: center;
  }

  .mobile-cta {
    display: block;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    background: #1e3a5f;
    box-shadow: 0 -10px 24px rgba(0, 0, 0, 0.18);
  }

  .mobile-cta a {
    display: block;
    text-align: center;
    padding: 16px 18px;
    color: white;
    font-weight: 800;
    font-size: 1rem;
  }
}

@media (max-width: 560px) {
  .main-nav {
    justify-content: center;
  }

  .hero h1,
  .hero h2 {
    font-size: 2rem;
  }

  .hero-topline {
    font-size: 0.78rem;
  }

  .section-intro {
    font-size: 1rem;
  }

  .page-hero {
    padding: 62px 0 38px;
  }

  .contact-info-panel h2 {
    font-size: 1.65rem;
  }
}

.thank-you-actions {
  flex-direction: column;
  align-items: center;
}

.service-area-tags {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
  margin-top: 30px;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.tag-row span {
  padding: 10px 16px;
  border-radius: 999px;
  background: white;
  border: 1px solid #e6e0d6;
  font-weight: 600;
  color: #32404f;
}

.tag-row:first-child span {
  min-width: 52px;
  text-align: center;
}

/* =========================
   FLOATING CALL BUTTON
========================= */
.floating-call-btn {
  position: fixed;
  bottom: 90px;
  right: 20px;

  width: 65px;
  height: 65px;

  background: #e53935;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  color: white;
  font-size: 26px;

  text-decoration: none;

  box-shadow: 0 10px 25px rgba(0,0,0,0.25);

  z-index: 9999;

  animation: pulse 2s infinite;
  transition: transform 0.2s ease;

  display: flex;
  align-items: center;
  justify-content: center;
}

.floating-call-btn:hover {
  transform: scale(1.1);
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(229, 57, 53, 0.6);
  }
  70% {
    box-shadow: 0 0 0 18px rgba(229, 57, 53, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(229, 57, 53, 0);
  }
}

/* Show ONLY on mobile */
@media (min-width: 769px) {
  .floating-call-btn {
    display: none;
  }
}

/* =========================
   SCROLL REVEAL ANIMATION
========================= */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  will-change: opacity, transform;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

.reveal-delay-4 {
  transition-delay: 0.4s;
}

/* =========================
   THANK YOU PAGE
========================= */
.thank-you-page {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.thank-you-card {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}

.thank-you-card h1 {
  margin-bottom: 18px;
}

.thank-you-card .section-intro {
  margin-bottom: 28px;
}

.thank-you-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.main-nav a:not(:last-child)::after {
  content: "|";
  margin-left: 10px;
  color: rgba(255, 255, 255, 0.45);
}

.main-nav a.header-call-btn::after {
  content: "";
}