/* =========================
   GLOBAL
========================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: Arial, sans-serif;
  font-size: 16px;
  color: #f5f5f5;

  background:
    linear-gradient(
      rgba(10,10,10,0.92),
      rgba(10,10,10,0.92)
    ),
    url("images/watermark.png");

  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
}

/* =========================
   NAVBAR
========================= */

.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;

  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 18px 40px;

  background: rgba(15,15,15,0.92);

  backdrop-filter: blur(10px);

  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.navbar a {
  color: #f5f5f5;
  text-decoration: none;
  margin-left: 20px;
  position: relative;
  transition: 0.3s ease;
}

.navbar a:hover {
  color: #c0c0c0;
}

.navbar a::after {
  content: "";

  position: absolute;

  left: 0;
  bottom: -5px;

  width: 0;
  height: 2px;

  background: #c0c0c0;

  transition: 0.3s ease;
}

.navbar a:hover::after {
  width: 100%;
}

/* =========================
   LOGO
========================= */

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo img {
  width: 50px;
  border-radius: 50%;
}

.logo span {
  font-weight: bold;
}

/* =========================
   BUTTONS
========================= */

.btn {
  background: linear-gradient(
    135deg,
    #d9d9d9,
    #8f8f8f
  );

  color: #111;

  padding: 12px 20px;

  border-radius: 8px;

  text-decoration: none;

  font-weight: bold;

  transition: all 0.3s ease;
}

.btn:hover {
  transform: translateY(-3px);

  box-shadow:
    0 8px 20px rgba(192,192,192,0.25);
}

.btn-outline {
  border: 1px solid #c0c0c0;

  color: #c0c0c0;

  padding: 12px 20px;

  border-radius: 8px;

  text-decoration: none;

  transition: all 0.3s ease;
}

.btn-outline:hover {
  background: #c0c0c0;
  color: #111;
}

/* =========================
   HERO
========================= */

.hero {
  min-height: 90vh;

  display: flex;
  align-items: center;

  padding: 80px;

  background:
    linear-gradient(
      rgba(0,0,0,0.7),
      rgba(0,0,0,0.7)
    ),
    url("images/construction.jpeg");

  background-size: cover;
  background-position: center;
}

.hero-content {
  max-width: 800px;
}

.hero h1 {
  font-size: 72px;
  line-height: 1.1;
  margin-bottom: 20px;

  text-shadow:
    0 4px 15px rgba(0,0,0,0.5);
}

.hero p {
  color: #d0d0d0;

  font-size: 20px;

  margin-bottom: 30px;

  max-width: 650px;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

/* =========================
   PAGE HEADER
========================= */

.page-header {
  text-align: center;
  padding: 60px 20px 30px;
}

.page-header h1 {
  font-size: 56px;
  margin-bottom: 15px;
}

.page-header p {
  color: #c0c0c0;
  max-width: 700px;
  margin: 0 auto;
  margin-top: 10px;
}

/* =========================
   SECTIONS
========================= */

section {
  padding: 80px 60px;
}

section h2 {
  margin-bottom: 20px;
  text-align: center;
}

/* =========================
   GRID SYSTEM
========================= */

.grid,
.services-container,
.contact-container {
  display: grid;

  grid-template-columns:
    repeat(auto-fit, minmax(280px, 1fr));

  gap: 25px;

  margin-top: 40px;
}

.about-grid {
  display: grid;

  grid-template-columns:
    repeat(auto-fit, minmax(280px, 1fr));

  gap: 25px;

  margin-top: 15px;
}

/* =========================
   CARD SYSTEM
========================= */

.card,
.about-card,
.service-card,
.contact-card {

  background:
    rgba(30,30,30,0.88);

  backdrop-filter: blur(10px);

  padding: 30px;

  border-radius: 14px;

  border:
    1px solid rgba(192,192,192,0.10);

  transition: all 0.35s ease;
}

.card:hover,
.about-card:hover,
.service-card:hover,
.contact-card:hover {

  transform: translateY(-8px);

  border-color: #c0c0c0;

  box-shadow:
    0 15px 35px rgba(0,0,0,0.4);
}

.card p,
.about-card p,
.service-card p,
.contact-card p {
  color: #c0c0c0;
}

/* =========================
   SERVICE IMAGES
========================= */

.service-card img {

  width: 100%;

  height: 220px;

  object-fit: cover;

  border-radius: 10px;

  margin-bottom: 15px;
}

/* =========================
   ABOUT SECTION
========================= */

.about-preview {

  background:
    rgba(20,20,20,0.75);

  border-top:
    1px solid rgba(255,255,255,0.05);

  border-bottom:
    1px solid rgba(255,255,255,0.05);

  text-align: center;
}

.about-preview p {
  color: #c0c0c0;
  max-width: 900px;
  margin:auto;
}

/* =========================
   CTA SECTION
========================= */

.cta-section {
  text-align: center;
}

.cta-section p {
  color: #c0c0c0;
  margin-bottom: 25px;
}

/* =========================
   QUOTE PAGE
========================= */

.quote-container {
  max-width: 850px;
  margin: auto;
}

.quote-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.quote-form input,
.quote-form textarea {

  background:
    rgba(25,25,25,0.95);

  border:
    1px solid rgba(255,255,255,0.08);

  border-radius: 10px;

  padding: 16px;

  color: white;

  font-size: 16px;

  transition: 0.3s ease;
}

.quote-form input:focus,
.quote-form textarea:focus {

  outline: none;

  border-color: #c0c0c0;

  box-shadow:
    0 0 10px rgba(192,192,192,0.2);
}

/* =========================
   CONTACT PAGE
========================= */

.contact-card {
  text-align: center;
}

.contact-card h2 {
  margin-bottom: 15px;
}

/* =========================
   FOOTER
========================= */

.footer {

  padding: 25px;

  text-align: center;

  background:
    rgba(10,10,10,0.95);

  border-top:
    1px solid rgba(255,255,255,0.05);

  color: #8a8a8a;
}

/* =========================
   SCROLLBAR
========================= */

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #111;
}

::-webkit-scrollbar-thumb {
  background: #555;
  border-radius: 20px;
}

::-webkit-scrollbar-thumb:hover {
  background: #888;
}


/* =========================
   MISSING PAGE LAYOUTS
========================= */


h1,
h2,
h3 {
  line-height: 1.2;
}

.logo span {
  font-size: 18px;
}

.navbar nav {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.navbar a {
  margin-left: 0;
  font-size: 16px;
}

.page-hero,
.coming-soon {
  min-height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 20px;
}

.page-hero h1,
.coming-soon h1 {
  font-size: 56px;
  margin-bottom: 15px;
}

.page-hero p,
.coming-soon p {
  color: #c0c0c0;
  max-width: 760px;
  margin: 0 auto 25px;
  font-size: 18px;
}

.coming-soon img {
  width: 140px;
  height: 140px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 25px;
}

.card h3,
.about-card h2,
.service-card h2,
.contact-card h2 {
  margin-bottom: 12px;
}

.card p,
.about-card p,
.service-card p,
.contact-card p {
  font-size: 16px;
  line-height: 1.7;
}

@media (max-width: 760px) {
  .navbar {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
    padding: 18px 22px;
  }

  .navbar nav {
    gap: 12px;
  }

  .hero {
    min-height: 78vh;
    padding: 70px 24px;
  }

  .hero h1,
  .page-header h1,
  .page-hero h1,
  .coming-soon h1 {
    font-size: 40px;
  }

  section {
    padding: 60px 22px;
  }
}
