/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  background-color: #f7f7f7;
  color: #333;
}

/* Hero Section */
.hero {
  background: url('img/roof-hero.jpg') center/cover no-repeat;
  height: 90vh;
  position: relative;
}

.overlay {
  background-color: rgba(0, 0, 0, 0.6);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-text {
  color: white;
  text-align: center;
  padding: 20px;
}

.hero-logo {
  width: 100px;
  margin-bottom: 20px;
}

.cta-button {
  background-color: #ff5722;
  color: white;
  padding: 12px 30px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  margin-top: 20px;
  display: inline-block;
}

/* General Section and Container */
.section {
  padding: 60px 20px;
}

.container {
  max-width: 1200px;
  margin: auto;
}

/* Cards for Services */
.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.card {
  background: white;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  padding: 20px;
  flex: 1 1 200px;
  max-width: 250px;
}

.card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 10px;
}

/* About Section */
.about-flex {
  display: flex;
  align-items: center;
  gap: 30px;
}

.about-flex img {
  width: 50%;
  border-radius: 10px;
}

/* Process Steps */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.step {
  background: #fff;
  padding: 20px;
  border-left: 4px solid #ff5722;
  border-radius: 6px;
}

/* Reviews */
.reviews {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.review {
  background: #fff;
  padding: 20px;
  border-left: 4px solid #4caf50;
  border-radius: 6px;
}

/* Contact Info Links */
.contact a {
  color: #ff5722;
  font-weight: bold;
  text-decoration: none;
}

/* Footer */
footer {
  background: #333;
  color: white;
  text-align: center;
  padding: 20px;
  margin-top: 40px;
}

.form-container {
  max-width: 700px;
  margin: 80px auto;
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid #eee;
}

.form-container h2 {
  font-size: 28px;
  text-align: center;
  color: #222;
  margin-bottom: 30px;
}

.form-container form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-container input,
.form-container textarea {
  font-size: 15px;
  padding: 14px 16px;
  border: 1px solid #ddd;
  border-radius: 10px;
  transition: border-color 0.3s, box-shadow 0.3s;
  background-color: #fefefe;
}

.form-container input:focus,
.form-container textarea:focus {
  border-color: #f97316;
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.1);
  outline: none;
}

.form-container textarea {
  resize: vertical;
  min-height: 120px;
}

.form-container button {
  background-color: #f97316;
  color: white;
  font-size: 16px;
  font-weight: bold;
  padding: 14px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.form-container button:hover {
  background-color: #ea580c;
}

@media (max-width: 600px) {
  .form-container {
    margin: 40px 20px;
    padding: 30px 20px;
  }
}
