/* General styles */
body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    background: #f7f9fb;
    color: #222;
  }
  
  /* Header: dark, centered layout */
/* Header: dark, horizontally centered bundle */
.header-centered-bundle {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #2b3a42;
    padding: 10px 20px;
    flex-wrap: wrap;
    gap: 20px;
  }
  
  .header-logo {
    height: 50px;
    width: auto;
  }
  
  /* Nav stays beside logo */
  .header-centered-bundle nav {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .header-centered-bundle nav a {
    color: white;
    text-decoration: none;
    padding: 10px 15px;
    font-weight: 600;
    transition: background 0.3s;
  }
  
  .header-centered-bundle nav a:hover {
    background-color: #1e2a30;
    border-radius: 5px;
  }
  
  
  /* Hero Section Fullscreen */
  .hero {
    position: relative;
    height: 100vh;
    background: url('images/background.jpg') center top 100% / cover no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
  }
  
  /* Gradient and Centering */
  .hero-overlay {
    background: linear-gradient(to bottom, rgba(255,255,255,0.85), rgba(255,255,255,0));
    width: 100%;
    height: 100%;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  
  .hero-logo {
    max-width: 300px;
    width: 60%;
    height: auto;
    margin-bottom: 20px;
  }
  
  .hero h1 {
    font-size: 3em;
    margin: 0;
    color: #000;
    text-shadow: 1px 1px 3px rgba(255, 255, 255, 0.7); /* soft white glow */
  }
  
  .hero p {
    font-size: 2em;
    margin-top: 10px;
    color: #000;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.6);
  }

  .hero-phone {
    margin-top: auto;
    font-size: 1.4em;
    font-weight: bold;
    color: black;
    text-decoration: none;
    padding: 15px 25px;
    background: rgba(255, 255, 255, 0.85);
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    position: absolute;
    bottom: 100px;
    transition: background 0.3s;
  }
  
  .hero-phone:hover {
    background: rgba(255, 255, 255, 1);
  }
  
  
  /* Carousel */
  .carousel-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 40px 20px;
    background-color: #fff;
    flex-wrap: nowrap;
    overflow-x: auto;
  }
  
  .carousel-images {
    display: flex;
    gap: 20px;
    flex-wrap: nowrap;
  }
  
  .carousel-images img {
    width: 500px;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s;
  }
  
  .carousel-images img:hover {
    transform: scale(1.03);
  }
  
  .carousel-btn {
    background-color: rgba(0, 0, 0, 0.5);
    border: none;
    color: white;
    width: 48px;
    height: 48px;
    font-size: 24px;
    cursor: pointer;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  /* Quote Form */
  .quote-form {
    background: #ffffff;
    padding: 30px;
    max-width: 500px;
    margin: 40px auto;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  }
  
  .quote-form input,
  .quote-form textarea {
    width: 98%;
    padding: 12px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 6px;
  }
  
  .quote-form textarea {
    resize: none;
    height: 150px;
  }
  
  .quote-form button {
    background: #2b3a42;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.3s;
  }
  
  .quote-form button:hover {
    background: #1e2a30;
  }
  
  #form-status {
    margin-top: 10px;
    font-size: 0.9em;
    color: #555;
  }
  
  /* Contact & Map */
  .contact-section {
    background: #eef3f7;
    padding: 40px 20px;
    text-align: center;
  }
  
  .contact-info {
    margin-bottom: 20px;
    font-size: 1.1em;
  }
  
  .map-container {
    margin: 0 auto;
    width: 100%;
    max-width: 60%;
  }
  
  .map-container iframe {
    width: 100%;
    height: 300px;
    border: 0;
    border-radius: 12px;
  }
  
  /* Footer */
  footer {
    background-color: #2b3a42;
    color: white;
    text-align: center;
    padding: 20px;
    font-size: 0.95em;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .header-logo {
      height: 30px;
      width: auto;
    }
  
    .header-centered-bundle {
      flex-direction: column;
      align-items: center;
      gap: 10px;
    }
  
    .header-centered-bundle nav {
      flex-wrap: wrap;
      justify-content: center;
      gap: 8px;
    }
  
    .header-centered-bundle nav a {
      padding: 8px 12px;
      font-size: 0.9em;
    }
  
    .hero h1 {
      font-size: 2em;
    }
  
    .hero p {
      font-size: 1em;
    }
  
    .hero-logo {
      max-width: 180px;
    }
  
    .hero-phone {
      font-size: 1em;
      padding: 10px 18px;
    }
  }
  
  @media (max-width: 768px) {
    .carousel-wrapper {
      overflow: hidden;
      position: relative;
    }
  
    .carousel-images {
      display: flex;
      transition: transform 0.3s ease;
      width: 100%;
      gap: 0;
    }
  
    .carousel-images img {
      flex: 0 0 100%;
      width: 100%;
      height: auto;
      border-radius: 0;
    }
  
    .carousel-btn {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      z-index: 1;
    }
  
    .carousel-btn:first-child {
      left: 10px;
    }
  
    .carousel-btn:last-child {
      right: 10px;
    }
  }
 
  @media (max-width: 768px) {
    .carousel-images img {
      flex: 0 0 100%;
      width: 100%;
      height: auto;
      border-radius: 0;
    }
  
    .carousel-images {
      display: flex;
      transition: transform 0.3s ease;
    }
  }
  
  