/* Global Settings */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  color: #222;
  line-height: 1.5;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
}

/* Header */
.header {
  background: white;
  padding: 15px 0;
  color: white;
}

.logo-group {
  display: flex;
  align-items: center;
  gap: 12px;       /* space between logo and text */
}

.logo-img {
  height: 45px;   /* controls logo size */
  width: auto;
}

.logo-text {
  margin: 0;
  font-size: 24px;
  font-weight: bold;
  color: black;
}

.logo {
  margin: 0;
  font-size: 24px;
  font-weight: bold;
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav a {
  margin-left: 20px;
  text-decoration: none;
  color: black;
  font-weight: bold;
  white-space: nowrap; /* prevents the menu items from breaking weirdly */
}

.nav a {
  margin-left: 20px;
  text-decoration: none;
  color: black;
  font-weight: bold;
}

/* Hero Section */
.hero {
  background: url('images/cover-photo.jpg') center/cover no-repeat;
  text-align: center;
  padding: 100px 20px 120px;   /* pushes text UP into sky */
  color: white;

  display: flex;
  align-items: flex-start;   /* aligns text to top */
  justify-content: center;
}

.hero .container {
  margin-top: 40px;          /* fine-tune vertical position */
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.65),
    rgba(0,0,0,0.25)
  );
}

.hero {
  position: relative;
}

.hero * {
  position: relative;
  z-index: 2;
}

.hero h2 {
  font-size: 100px;
  margin-bottom: 10px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

.hero p {
  font-size: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.btn {
  background: #e69b00;
  color: black;
  padding: 12px 25px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
  margin-top: 15px;
}

.btn:hover {
  background: #c78400;
}

.hero-buttons {
  margin-top: 20px;
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-call {
  background: #28a745;   /* green call button */
  color: white;
}

.btn-call:hover {
  background: #1e7e34;
}

/* Features */
.features {
  text-align: center;
  padding: 20px 0;
}

.features h3 {
  font-size: 40px;  /* Adjust to your desired size, e.g., 24px, 48px, etc. */
  font-weight: bold;  /* Optional: Make it bold */
  color: maroon;      /* Optional: Match your theme */
}

.feature-grid {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}

.feature {
  background: white;
  padding: 20px;
  border-radius: 6px;
  width: 30%;
}

.video-section {
  text-align: center;
  padding: 5px 0;
}

.video-section h4 {
  font-size: 50px;
  color: maroon;
  text-align: left;
}

.video-wrapper {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  justify-content: space-between;
}

.video-text {
  flex: 3;
  text-align: left;
  font-size: 30px;
  color: #555;
  line-height: 1.5;
}

.video-container {
  flex: 1;
  display: flex;
  gap: 20px;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.video-section video {
  flex: 1;
  max-width: 560px;
  height: 500px;
}

/* How It Works */
.how-it-works {
  background: white;
  color: white;
  padding: 60px 0;
  text-align: center;
}

.steps {
  display: flex;
  justify-content: center;
  gap: 40px;
}

.step {
  width: 25%;
}

.step-number {
  font-size: 36px;
  font-weight: bold;
  color: #e69b00;
}

/* Contact */
.contact {
  padding: 60px 0;
  text-align: center;
}

.quote-form {
  max-width: 500px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.quote-form input,
.quote-form textarea {
  padding: 10px;
  border-radius: 4px;
  border: 1px solid #ccc;
}

/* Footer */
.footer {
  background: #111;
  text-align: center;
  padding: 20px;
  color: white;

  
}

/* Footer social icons (inline SVGs) */
.footer .social {
  margin: 12px 0 8px;
  display: flex;
  gap: 14px;
  justify-content: center;
  align-items: center;
}

.footer .social a {
  display: inline-flex;
  width: 40px;
  height: 40px;
  border-radius: 6px;
  align-items: center;
  justify-content: center;
  background: transparent;
  transition: transform 0.12s ease, background-color 0.12s ease;
  color: #e69b00; /* SVG uses currentColor via fill=currentColor */
  text-decoration: none;
}

.footer .social a svg {
  width: 22px;
  height: 22px;
  display: block;
  fill: currentColor;
}

.footer .social a:hover,
.footer .social a:focus {
  transform: translateY(-3px);
  background: rgba(255,255,255,0.04);
  outline: 2px solid rgba(230,155,0,0.12);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .feature-grid,
  .steps {
    flex-direction: column;
  }

  .feature,
  .step {
    width: 100%;
  }

  .nav {
    float: none;
    text-align: center;
    margin-top: 10px;
  }
}

/* Service Area Section with Background Map */
.service-area {
  position: relative;
  padding: 100px 0;
  background:
    linear-gradient(
      rgba(255,255,255,0.80),
      rgba(255,255,255,0.80)
    ),
    url('images/service-area.png') center/contain no-repeat;

  text-align: left;
  color: black; /* make all text in the service-area dark (overrides inherited white) */
  font-size: 25px;
}


.service-area h3 {
  color: black; /* example: brand accent (black) */
}


/* About / Product highlight (image left, text right) */
.about {
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: center;
  padding: 30px 0;
}

.about-image {
  flex: 0 0 360px; /* fixed width for circle; adjust as needed */
  height: 425px;
  border-radius: 10%;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
  display: block;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Text column */
.about-content {
  flex: 1 1 520px;
  text-align: left;
}

.about-content .eyebrow {
  color: #a33;           /* small upper label color; adjust to brand */
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1px;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.about-content h3 {
  font-size: 44px;       /* big headline size — adjust to taste */
  margin: 0 0 12px;
  color: maroon;
  align-items: left;
  justify-content: left;
  display: flex;
  gap: 20px;
}

.about-content p {
  color: #555;
  line-height: 1.6;
  margin: 0;
}

/* Responsive: stack on small screens */
@media (max-width: 768px) {
  .about {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
  }

  .about-image {
    width: 240px;
    height: 240px;
    flex: 0 0 auto;
  }

  .about-content h3 {
    font-size: 32px;
  }
}


/* Map: responsive embed */
.map-section {
  padding: 40px 0;
  text-align: left;
}

.map-section h3 {
  margin: 0 0 12px;
  font-size: 35px;
}

.map-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  background: #f4f4f4;
}

.map-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Video section responsive */
@media (max-width: 768px) {
  .video-wrapper {
    flex-direction: column;
  }
  .video-text {
    text-align: center;
  }
  .video-container {
    justify-content: center;
  }
}