/* =====================
   GLOBAL RESET & BASE
===================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Tahoma, Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f5f5f5;
}

/* =====================
   NAVIGATION
===================== */
nav {
  background: #1f1f1f;
  padding: 15px 40px;
  display: flex;
  justify-content: center;
  gap: 30px;
}

nav a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 0.5px;
}

nav a:hover {
  color: #f7931e;
}

/* =====================
   HEADER / HERO
===================== */
header {
  background: #2b2b2b;
  color: #ffffff;
  text-align: center;
  padding: 80px 20px;
}

header h1 {
  font-size: 2.4rem;
  margin-bottom: 15px;
}

header p {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: #dcdcdc;
}

/* =====================
   BUTTONS
===================== */
.btn {
  display: inline-block;
  margin-top: 25px;
  padding: 14px 30px;
  background-color: #f7931e;
  color: #ffffff;
  text-decoration: none;
  font-weight: bold;
  border-radius: 4px;
  transition: background 0.3s ease;
}

.btn:hover {
  background-color: #d97f15;
}

/* =====================
   SECTIONS
===================== */
section {
  background: #ffffff;
  max-width: 1100px;
  margin: 50px auto;
  padding: 50px 30px;
  border-radius: 6px;
}

/* Headings */
section h2 {
  font-size: 1.9rem;
  margin-bottom: 20px;
  color: #1f1f1f;
}

/* Paragraphs */
section p {
  font-size: 1.05rem;
  margin-bottom: 25px;
  color: #444;
}

/* =====================
   LISTS
===================== */
section ul {
  list-style: none;
  padding-left: 0;
}

section ul li {
  font-size: 1.05rem;
  padding: 10px 0;
  border-bottom: 1px solid #e0e0e0;
}

/* =====================
   FINAL CTA SECTION
===================== */
section:last-of-type {
  background: #1f1f1f;
  color: #ffffff;
  text-align: center;
}

section:last-of-type h2 {
  color: #ffffff;
}

section:last-of-type p {
  color: #dcdcdc;
}

/* =====================
   FOOTER
===================== */
footer {
  background: #1f1f1f;
  color: #ffffff;
  text-align: center;
  padding: 20px;
  margin-top: 60px;
  font-size: 0.9rem;
}

/* =====================
   RESPONSIVE
===================== */
@media (max-width: 768px) {
  nav {
    flex-direction: column;
    gap: 15px;
  }

  header h1 {
    font-size: 2rem;
  }

  section {
    margin: 30px 15px;
    padding: 35px 20px;
  }
}
section {
  padding: 80px 20px;
  text-align: center;
}

.card {
  background: #ffffff;
  max-width: 900px;
  margin: 0 auto;
  padding: 50px 40px;
  border-radius: 8px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.card h2 {
  margin-bottom: 20px;
  color: #222;
}

.card p {
  color: #444;
  margin-bottom: 25px;
}

.card ul {
  list-style: none;
  padding: 0;
}

.card ul li {
  padding: 10px 0;
  font-weight: 500;
  color: #333;
}

.service-area {
  background: #1f1f1f;
  color: #fff;
}

.locations {
  margin-top: 10px;
  font-weight: 500;
  opacity: 0.9;
}

.final-cta {
  background: #1f1f1f;
  color: #fff;
}

/* ==============================
   SUBTLE HOVER EFFECTS
============================== */

/* BUTTON HOVER */
.btn {
  transition: background-color 0.25s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  background-color: #e68900;
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.25);
}

/* NAV LINK HOVER */
nav a {
  position: relative;
  transition: color 0.2s ease;
}

nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background-color: #f7931e;
  transition: width 0.25s ease;
}

nav a:hover::after {
  width: 100%;
}

/* CARD HOVER */
.card {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.15);
}

/* LIST ITEM HOVER */
section ul li {
  transition: padding-left 0.2s ease, color 0.2s ease;
}
.btn {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

section ul li:hover {
  padding-left: 6px;
  color: #f7931e;
}

/* SERVICES PAGE */
.services-page {
  background: #f5f5f5;
}

.page-hero {
  background: #222;
  color: #fff;
  text-align: center;
  padding: 70px 20px;
}

.page-hero h1 {
  font-size: 2.2rem;
  margin-bottom: 10px;
}

.page-hero p {
  color: #ccc;
  max-width: 700px;
  margin: 0 auto;
}

.services-grid {
  max-width: 1100px;
  margin: 60px auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

/* =========================
   CONTACT PAGE
========================= */

.contact-hero {
  background: #2b2b2b;
  color: #fff;
  text-align: center;
  padding: 80px 20px;
}

.contact-hero h1 {
  font-size: 2.4rem;
  margin-bottom: 15px;
}

.contact-hero p {
  max-width: 600px;
  margin: 0 auto;
  color: #ddd;
}

.contact-wrapper {
  background: #f5f5f5;
  padding: 60px 20px;
}

.contact-card {
  max-width: 600px;
  margin: 0 auto;
  background: #fff;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}

.contact-form {
  display: grid;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-weight: 600;
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #f7931e;
  box-shadow: 0 0 0 2px rgba(247,147,30,0.2);
}

/* Button hover (subtle & classy) */
.contact-form .btn {
  align-self: flex-start;
}

.contact-form .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(247,147,30,0.4);
}

/* =========================
   GALLERY PAGE
========================= */

.gallery-hero {
  background: #1f1f1f;
  color: #fff;
  text-align: center;
  padding: 80px 20px;
}

.gallery-hero h1 {
  font-size: 2.4rem;
  margin-bottom: 12px;
}

.gallery-hero p {
  max-width: 650px;
  margin: 0 auto;
  color: #ccc;
}

.gallery-wrapper {
  background: #f5f5f5;
  padding: 60px 20px;
}

.gallery-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  background: #000;
}

.gallery-item img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.gallery-item figcaption {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 12px;
  background: rgba(0,0,0,0.6);
  color: #fff;
  font-weight: 600;
  text-align: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.06);
  opacity: 0.85;
}

.gallery-item:hover figcaption {
  opacity: 1;
}

