:root {
  --orange: #ff8c00;
  --black: #111;
  --gray: #f4f4f4;
}

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

/* GLOBAL */
body {
  font-family: "Segoe UI", Tahoma, sans-serif;
  background: #fff;
  color: #222;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ANIMATION */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(25px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeUp 0.9s ease forwards;
}

/* NAV */
nav {
  background: var(--black);
  padding: 18px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

nav img {
  height: 80px;
}

nav a {
  color: #fff;
  text-decoration: none;
  margin-left: 28px;
  font-weight: 600;
  position: relative;
  transition: color 0.3s ease;
}

nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--orange);
  transition: width 0.3s ease;
}

nav a:hover {
  color: var(--orange);
}

nav a:hover::after {
  width: 100%;
}

/* HERO */
.hero {
  background:
    linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)),
    url("IMG_5645.jpeg") center / cover no-repeat;
  background-attachment: fixed;
  color: #fff;
  text-align: center;
  padding: 160px 20px;
}

.hero h1 {
  font-size: 3.4rem;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.35rem;
  max-width: 850px;
  margin: auto;
}

/* BUTTON */
.btn {
  display: inline-block;
  margin-top: 40px;
  padding: 18px 42px;
  background: var(--orange);
  color: #000;
  font-weight: bold;
  text-decoration: none;
  border-radius: 6px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.35);
}

/* SECTIONS */
section {
  padding: 100px 20px;
}

.section-gray {
  background: var(--gray);
}

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

/* CARDS */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 35px;
}

.card {
  background: #fff;
  padding: 40px;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  border-top: 6px solid var(--orange);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(0,0,0,0.22);
}

/* ICONS */
.card.reliable h3::before { content: "⏱️ "; }
.card.professional h3::before { content: "🛠️ "; }
.card.local h3::before { content: "📍 "; }

/* ABOUT */
.about-text {
  max-width: 900px;
  margin: auto;
  font-size: 1.15rem;
}

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

.gallery img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  transition: transform 0.4s ease;
}

.gallery img:hover {
  transform: scale(1.04);
}

/* TESTIMONIALS */
.testimonials {
  background: #fff;
}

.testimonial-grid {
  max-width: 1000px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.testimonial {
  background: var(--gray);
  padding: 35px;
  border-radius: 14px;
  box-shadow: 0 8px 22px rgba(0,0,0,0.08);
}

.testimonial strong {
  display: block;
  margin-top: 15px;
}

/* CONTACT */
.contact-box {
  background: #fff;
  padding: 55px;
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.1);
  text-align: center;
}

.map {
  margin-top: 60px;
  border-radius: 14px;
  overflow: hidden;
}

/* FOOTER */
footer {
  background: var(--black);
  color: #ccc;
  text-align: center;
  padding: 45px 20px;
}

/* MOBILE CTA */
.mobile-cta {
  display: none;
  position: fixed;
  bottom: 0;
  width: 100%;
  background: #000;
  padding: 12px;
  gap: 10px;
  z-index: 999;
}

.mobile-cta a {
  flex: 1;
  background: var(--orange);
  color: #000;
  text-align: center;
  padding: 16px;
  font-weight: bold;
  text-decoration: none;
  border-radius: 6px;
}

@media (max-width: 768px) {
  nav img {
    height: 60px;
  }

  .hero h1 {
    font-size: 2.4rem;
  }

  .mobile-cta {
    display: flex;
  }

  body {
    padding-bottom: 95px;
  }
}
