* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Outfit', sans-serif;
  background: #0f1115;
  color: #e4e4e4;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ===== HEADER ===== */
header {
  padding: 160px 30px 120px;
  text-align: center;
  position: relative;
  color: #fff;
}

header::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

header h1, header p {
  position: relative;
  z-index: 2;
}

header h1 {
  font-size: 4.5rem;
  font-weight: 800;
  color: #ff3c3c;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
}

header p {
  font-size: 1.5rem;
  color: #ccc;
  margin-top: 10px;
}

/* ===== NAVIGATION ===== */
nav {
  background: #000;
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 40px;
}

nav .logo {
  color: #ff3c3c;
  font-weight: 800;
  font-size: 1.6rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

nav ul {
  display: flex;
  gap: 35px;
  list-style: none;
}

nav a {
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s;
}

nav a:hover {
  color: #e60000;
  transform: scale(1.05);
}

nav .menu-toggle {
  display: none;
  font-size: 1.8rem;
  color: #ff3c3c;
  cursor: pointer;
}

/* ===== RESPONSIVE NAV ===== */
@media (max-width: 768px) {
  nav {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
  }

  nav ul {
    flex-direction: column;
    width: 100%;
    display: none;
    gap: 0;
    margin-top: 10px;
  }

  nav ul.active {
    display: flex;
  }

  nav ul li {
    width: 100%;
    border-top: 1px solid #222;
  }

  nav ul li a {
    display: block;
    padding: 15px 0;
  }

  nav .menu-toggle {
    display: block;
    margin-left: auto;
  }

  header h1 {
    font-size: 2.5rem;
  }
}

/* ===== SECTIONS ===== */
section {
  padding: 100px 20px;
  max-width: 1200px;
  margin: auto;
}

h2 {
  font-size: 2.8rem;
  text-align: center;
  margin-bottom: 60px;
  color: #e60000;
  position: relative;
}

h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: #ff3c3c;
  margin: 20px auto 0;
  border-radius: 2px;
}

/* ===== CARDS ===== */
.card {
  background: #1b1d21;
  border-radius: 20px;
  padding: 35px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease-in-out;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.6);
}

.card h3 {
  color: #ff3c3c;
  margin-bottom: 15px;
  font-size: 1.6rem;
}

/* ===== SERVICES, REVIEWS, GALLERY ===== */
.services, .reviews, .gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
}

.reviews {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  padding: 20px;
}

.review-card {
  background: #fff;
  color: #333;
  border-radius: 12px;
  padding: 30px 25px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.review-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.review-card img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.review-card p {
  font-style: italic;
  font-size: 1rem;
  margin-bottom: 15px;
}

.review-card .stars {
  color: #ffc107;
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.review-card strong {
  font-weight: 700;
  display: block;
  font-size: 0.95rem;
}

.review-card i.fas.fa-quote-left,
.review-card i.fas.fa-quote-right {
  color: #e60000;
  margin: 0 5px;
}

/* ===== GALLERY ===== */
.gallery img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 15px;
  transition: all 0.4s ease;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

.gallery img:hover {
  transform: scale(1.04);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.7);
}

/* ===== FORM ===== */
form input,
form textarea,
form select {
  width: 100%;
  padding: 18px;
  margin-bottom: 20px;
  border-radius: 12px;
  border: none;
  font-size: 1rem;
  background: #222;
  color: #fff;
}

form label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  color: #ff3c3c;
}

form button {
  background: linear-gradient(to right, #e60000, #ff3c3c);
  color: #fff;
  padding: 18px 40px;
  border: none;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.3s ease;
}

form button:hover {
  transform: scale(1.05);
}

/* ===== FOOTER ===== */
footer {
  background: #000;
  color: #bbb;
  text-align: center;
  padding: 60px 20px;
  font-size: 1rem;
}

/* ===== CUSTOM BUTTON ===== */
.service-header {
  position: relative;
  background-size: cover;
  background-position: center;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.service-header .overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.15); /* Very light overlay */
  z-index: 1;
}


.service-header .content {
  position: relative;
  z-index: 2;
}

.awesome-btn {
  display: inline-block;
  background: linear-gradient(135deg, #ff0000, #8b0000);
  color: #fff;
  padding: 16px 36px;
  font-size: 1.1rem;
  font-weight: 800;
  text-transform: uppercase;
  border-radius: 10px;
  text-decoration: none;
  box-shadow: 0 6px 15px rgba(255, 0, 0, 0.4);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  margin-top: 20px;
}

.awesome-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,0.1);
  transform: skewX(-25deg);
  transition: left 0.4s ease;
}

.awesome-btn:hover::before {
  left: 200%;
}

.awesome-btn:hover {
  background: linear-gradient(135deg, #cc0000, #660000);
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(255, 0, 0, 0.5);
}
