@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');

:root {
  --primary: #8DC4D0;
  --accent: #DAD5C7;
  --title: #102D3A;
  --text: #1a1a1a;
  --background: #f7f6f3;
  --white: #ffffff;
  --shadow: rgba(0, 0, 0, 0.05);
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background-color: var(--background);
  color: var(--text);
  line-height: 1.6;
}

header {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 2px 6px var(--shadow);
  padding: 1rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.logo img {
  height: 125px;
  max-width: 100%;
  display: block;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  gap: 1rem;
}

nav {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  transition: max-height 0.4s ease, opacity 0.3s ease;
}

nav a {
  color: var(--white);
  text-decoration: none;
  font-size: 1.125rem;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  transition: background 0.3s, color 0.3s;
}

nav a:hover {
  background: var(--white);
  color: var(--title);
}

.burger {
  display: none;
  font-size: 2rem;
  color: var(--white);
  cursor: pointer;
  transition: transform 0.3s ease;
  z-index: 10;
}

.burger.open {
  transform: rotate(90deg);
}

@media (max-width: 768px) {
  .burger {
    display: block;
  }

  nav {
    flex-direction: column;
    align-items: center;
    width: 100%;
    background: var(--primary);
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    pointer-events: none;
  }

  nav.show {
    max-height: 500px;
    opacity: 1;
    pointer-events: auto;
  }

  nav a {
    display: block;
    padding: 1rem;
    width: 100%;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }
  .logo img {
    height: 100px;

  }
}


.hero {
  background: url('img/clean1.jpg') no-repeat center center/cover;
  color: white;
  text-align: center;
  padding: 7rem 2rem;
  background-blend-mode: multiply;
  background-color: rgba(16, 45, 58, 0.6);
}

.hero h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--white);
  text-shadow: 1px 1px 2px rgba(0,0,0,0.4);
}

.hero p {
  font-size: 1.25rem;
  max-width: 700px;
  margin: 0 auto;
  color: var(--white);
  text-shadow: 1px 1px 2px rgba(0,0,0,0.4);
}

@media (max-width: 600px) {
    .hero {
      padding: 6rem 1rem;
      background-position: center top;
    }
  
    .hero h1 {
      font-size: 1.7rem;
    }
  
    .hero p {
      font-size: 1rem;
      max-width: 90%;
    }
  }
  

section {
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: auto;
}

h1, h2 {
  color: var(--title);
  margin-bottom: 1.5rem;
}

ul {
  padding-left: 1.2rem;
}

ul li {
  margin-bottom: 0.75rem;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.card {
  background: var(--white);
  border-radius: 10px;
  box-shadow: 0 4px 12px var(--shadow);
  padding: 2rem;
  transition: transform 0.3s ease;
  border: 1px solid var(--accent);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.card:hover {
  transform: translateY(-5px);
}

.card img {
  width: 60px;
  height: 60px;
  margin-bottom: 1rem;
}

.card h3 {
  margin-top: 0;
  color: var(--title);
}

.card p {
  color: #555;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1.5rem;
  background: var(--white);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: 8px;
  overflow: hidden;
}

table thead {
  background: var(--primary);
  color: var(--white);
}

th, td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid #eee;
}

form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem 2rem;
    max-width: 700px;
    margin: auto;
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px var(--shadow);
  }
  
  form textarea {
    grid-column: span 2;
    min-height: 150px;
    resize: vertical;
  }
  
  form button {
    grid-column: span 2;
    justify-self: start;
  }
  input, textarea {
    padding: 0.85rem;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-family: 'Inter', sans-serif;
    background: #fff;
    transition: border-color 0.3s, box-shadow 0.3s;
  }
  
  input::placeholder,
  textarea::placeholder {
    color: #888;
    opacity: 1;
  }
  
  input:focus,
  textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(141, 196, 208, 0.3);
  }
button {
  padding: 0.85rem;
  background: var(--primary);
  color: white;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease;
  border-radius: 6px;
  font-weight: 600;
}

button:hover {
  background: #72b6c5;
}

.contact-section {
    padding: 2rem 1rem;
    background: var(--background);
    overflow-x: hidden;
  }
  
  .contact-box {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px var(--shadow);
    max-width: 100%;
    box-sizing: border-box;
  }
  
  .contact-left,
  .contact-form {
    flex: 1;
    min-width: 280px;
  }
  
  .contact-form input,
  .contact-form textarea {
    width: 100%;
    box-sizing: border-box;
  }
  
  @media (max-width: 600px) {
    .contact-box {
      flex-direction: column;
      align-items: center;
      padding: 1.5rem;
    }
  
    .contact-left,
    .contact-form {
      width: 100%;
      max-width: 100%;
    }
  
    .form-row {
      flex-direction: column;
      gap: 0.5rem;
      width: 100%;
    }
  
    .contact-form button {
      width: 100%;
    }
        form {
          display: flex;
          flex-direction: column;
          gap: 1rem;
          width: 100%;
          max-width: 100%;
          padding: 1.5rem;
          box-sizing: border-box;
        }
      
        form textarea,
        form button {
          width: 100%;
        }
      
        .contact-box {
          padding: 1.5rem;
        }
      }
      
  
  

footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    background: var(--primary);
    color: var(--white);
    margin-top: 4rem;
    font-size: 0.95rem;
    gap: 1rem;
  }

.services-gallery {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 2rem;
}

.services-gallery img {
  width: 100%;
  max-width: 300px;
  border-radius: 10px;
  box-shadow: 0 4px 10px var(--shadow);
  transition: transform 0.3s ease;
}

.services-gallery img:hover {
  transform: scale(1.05);
}
