* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  color: #111;
  background: #000;
  line-height: 1.6;
}

.header {
  background: #000;
  color: #f37b24;
  padding: 18px 8%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo img {
  display: block;
  max-width: 195px;
  height: auto;
}

nav a,
.phone {
  color: #f37b24;
  text-decoration: none;
  margin-left: 38px;
  font-weight: 700;
  font-size: 28px;
  letter-spacing: 0.5px;
  transition: 0.3s ease;
}

nav a:hover,
.phone:hover {
  color: #fff;
}

.hero {
  min-height: 80vh;
  background: linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)),
    url("Images/FirstIMG.jpg");
  background-size: cover;
  background-position: center;
  color: #fff;
  display: flex;
  align-items: center;
  padding: 0 8%;
}

.hero-content {
  max-width: 650px;
}

.tagline,
.section-label {
  color: #f37b24;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero h1 {
  font-size: 52px;
  margin: 15px 0;
  line-height: 1.1;
}

.hero p {
  font-size: 18px;
}

.hero-buttons {
  margin-top: 30px;
}

.btn,
.gallery-btn {
  display: inline-block;
  padding: 14px 24px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  margin-right: 12px;
}

.primary,
.secondary {
  border: 2px solid #919396;
  color: #fff;
  background: transparent;
}

.gallery-btn {
  background-color: #ff7a00;
  color: #fff;
  border-radius: 30px;
}

.gallery-btn:hover {
  background-color: #d14403;
}

.services,
.about,
.cta {
  padding: 80px 8%;
}

.services {
  background: #919396;
  text-align: center;
}

.services h2,
.about h2,
.cta h2 {
  font-size: 36px;
  margin-bottom: 25px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 35px;
}

.card,
.trust-box {
  background: #e0e1e4;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
}

.card h3 {
  margin-bottom: 12px;
  font-size: 24px;
}

.about {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 40px;
  background: #f7f7f7;
}

.trust-box ul {
  margin-left: 20px;
}

.cta {
  background: #111;
  color: #fff;
  text-align: center;
}

form {
  max-width: 600px;
  margin: 30px auto 0;
  display: grid;
  gap: 15px;
}

input,
textarea {
  padding: 15px;
  border: none;
  border-radius: 5px;
  font-size: 16px;
}

textarea {
  min-height: 130px;
}

button {
  background: #f37b24;
  color: #111;
  border: none;
  padding: 16px;
  font-size: 17px;
  font-weight: bold;
  cursor: pointer;
  border-radius: 5px;
}

.gallery-page {
  padding: 80px 10%;
  text-align: center;
  background: #111;
  color: #fff;
}

.gallery-page h1 {
  font-size: 42px;
  margin-bottom: 10px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin: 50px 0;
}

.gallery-grid a {
  display: block;
  overflow: hidden;
  border-radius: 20px;
}

.gallery-grid img {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
  height: 300px;
  transition: 0.3s ease;
}

.gallery-grid img:hover {
  transform: scale(1.03);
}

footer {
  background: #000;
  color: #fff;
  text-align: center;
  padding: 25px;
}

@media (max-width: 768px) {
  .header {
    flex-direction: column;
    gap: 12px;
  }

  nav a,
  .phone {
    margin: 8px;
    font-size: 20px;
  }

  .hero h1 {
    font-size: 36px;
  }

  .service-grid,
  .about {
    grid-template-columns: 1fr;
  }
}