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

body {
  font-family: 'montserrat', sans-serif;
  color: #222;
  background: #f9f9f9;
  line-height: 1.6;
  background: #E5E5E5;
}

img {
  max-width: 100%;
  display: block;
}

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

/* ===== HEADER ===== */
.header {
  background: #21212B;
  box-shadow: 0 1px 6px rgba(0,0,0,0.05);
  position: sticky;
  top: 0;
  z-index: 10;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  flex-wrap: wrap;

}

.logo {
  color: #fff;
  font-weight: 800;
  font-size: 1.6rem;
}

.nav a {
  margin: 0 1rem;
  text-decoration: none;
  color: #fff;
  font-weight: 500;
}

.nav a:hover {
  color: blue;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 0.7rem 1.4rem;
  border-radius: 100px;
  text-decoration: none;
  font-weight: 600;
}

.btn-primary {
  background: #21212B;
  color: #fff;
}

.btn-primary:hover {
  background: blue;
}

.btn-outline {
  border: 2px solid #21212B;
  color: #21212B;
}

.btn-white-outline {
  border: 2px solid #fff;
  color: #fff;
}

.btn-outline:hover {
  background: blue;
  border: 2px solid blue;
  color: #fff;
}

.btn-white-outline:hover {
  background: blue;
  border: 2px solid blue;
  color: #fff;
}


/* ===== HERO ===== */
.hero {
  border-radius: 30px;
  background-image: url("images/gradient-background.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat; 
  width: 85%; 
  padding: 4rem 0;
  margin: 4rem auto;

}

.hero-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
  
}

.hero-text {
  flex: 1;
  min-width: 280px;
}

.hero-text h2 {
  font-size: 2rem;
  font-weight: 700;
}

.hero-text p {
  margin: 1rem 0 2rem;
  color: #555;
  max-width: 600px;
}

.hero-img {
  flex: 1;
  min-width: 280px;
}

/* ===== SECTIONS ===== */
.section {
  padding: 4rem 0;
}

.section-title {
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 2rem;
}

/* ===== SERVICES ===== */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: white;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  overflow: hidden;
  text-align: center;
}

.service-card img {
  border-bottom: 1px solid #eee;
}

.service-card h4 {
  font-size: 1.2rem;
  margin: 1rem 0 0.5rem;
}

.service-card p {
  color: #555;
  margin: 0 1rem 1.5rem;
}

/* ===== GALLERY ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}

.gallery-grid img {
  border-radius: 8px;
}

/* ===== PRICING ===== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.pricing-card {
  background: white;
  border-radius: 10px;
  text-align: center;
  padding: 2rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.price {
  font-size: 1.8rem;
  font-weight: bold;
  margin: 0.5rem 0 1rem;
}

/* ===== CONTACT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  padding: 0.8rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
}

.contact-info p {
  margin-bottom: 0.5rem;
}

/* ===== FOOTER ===== */
.footer {
  background: #21212B;
  color: #fff;
  text-align: center;
  padding: 1.5rem 0;
  font-size: 0.9rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hero-inner {
    flex-direction: column;
    text-align: center;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .nav {
    display: none;
  }

  .header-inner {
    justify-content: space-between;
  }
}

#form-status {
  margin-top: 1rem;
  font-weight: 500;
  color: #007b55;
}

