* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  background: #1d1d1d;
  color: #fff;
  padding-top: 72px; /* space for fixed navbar */
}

/* ================= NAV ================= */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 40px;
  background: #111;
}

/* NAV LOGO IMAGE */
.nav-logo img {
  height: 140px;
  width: auto;
  display: block;
}

/* NAV LINKS */
.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: 600;
}

/* ================= HERO ================= */
.hero {
  position: relative;
  height: calc(100vh - 72px);
  overflow: hidden;
}

.hero-video {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.75);
}

/* ===== HERO LOGO ===== */
.hero-logo {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.hero-logo img {
  height: 90px;
  width: auto;
  object-fit: contain;
}

/* ================= HERO CONTENT ================= */
.hero-content {
  position: relative;
  z-index: 2;
  height: calc(100% - 140px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 20px;
}

.hero-content h1 {
  font-size: 3rem;
  max-width: 800px;
}

.hero-content p {
  margin-top: 16px;
  font-size: 1.2rem;
}

.cta-btn {
  margin-top: 28px;
  padding: 14px 30px;
  background: #b72722;
  color: white;
  text-decoration: none;
  font-weight: bold;
  border-radius: 4px;
}

/* ================= SECTIONS ================= */
.section {
  padding: 80px 20px;
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.dark {
  background: #1d1d1d;
}

/* ================= FULL-WIDTH SERVICES ================= */
#services {
  max-width: none;
  padding: 0;
  margin-bottom: 50px;
}

#services h2 {
  padding: 80px 20px 40px;
  text-align: center;
}

.service-row {
  display: flex;
  min-height: 375px;
  width: 100%;
  margin: 10px;
}

.service-row.reverse {
  flex-direction: row-reverse;
}

.service-image,
.service-text {
  width: 48%;
}

.service-image {
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.service-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-overlay h3 {
  font-size: 2.5rem;
}

.service-text {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px;
  font-size: 1.1rem;
  background: #1d1d1d;
}

/* INNER CORNER ROUNDING */
.service-row:not(.reverse) .service-image {
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
}

.service-row.reverse .service-image {
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
}

/* ================= CONTACT PAGE ================= */
.page-hero {
  position: relative;
  height: 35vh;
  background: url("../assets/contact.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
}

.page-hero h1 {
  position: relative;
  z-index: 2;
  font-size: 3rem;
}

.contact-section {
  padding: 80px 20px;
}

.contact-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 2px 1fr;
  gap: 40px;
  align-items: stretch;
}

.contact-divider {
  background: rgba(255,255,255,0.25);
  width: 2px;
  border-radius: 2px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-size: 1.1rem;
  gap: 12px;
}

.contact-map {
  aspect-ratio: 1 / 1;
  border-radius: 14px;
  overflow: hidden;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ================= FOOTER ================= */
footer {
  padding: 10px;
  background: #111;
  font-size: 0.9rem;
}

.footer-inner {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.footer-inner img {
  height: 125px;
  width: auto;
}
