/* ================= RESET ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  background: #000;
}

/* ================= HERO SECTION ================= */
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

/* VIDEO BACKGROUND */
.hero-video {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 0;
  left: 0;
  z-index: -2;
}

/* DARK OVERLAY
.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: -1;
} */

/* ================= NAVBAR ================= */

#navbar {
  position: absolute;
  width: 100%;
  top: 20px;
  left: 0;
  z-index: 1000;
}

.nav-wrapper {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
}

/* NAV LINKS */
.nav-menu {
  display: flex;
  gap: 30px;
}

.nav-menu a {
  text-decoration: none;
  color: #fff;
  font-size: 20px;
  transition: 0.3s;
  font-weight: bold;
}

.nav-menu a:hover {
  color: #ddd;
}

/* ================= PHONE BOX ================= */

.top-info {
  position: relative;
}

/* NUMBER DESIGN */
.phone-box {
  position: relative;
  color: white;
  font-size: 26px;
  font-weight: 600;
  padding: 18px 45px;
}
.phone-box a {
  color: #fff;
  text-decoration: none;
}
/* CORNER STYLE */
.corner {
  position: absolute;
  width: 45px;
  height: 45px;
  border: 2px solid #fff;
}

/* TOP RIGHT CORNER */
.top-right {
  top: 0;
  right: 0;
  border-left: none;
  border-bottom: none;
}

/* BOTTOM LEFT CORNER */
.bottom-left {
  bottom: 0;
  left: 0;
  border-right: none;
  border-top: none;
}

/* ================= SOCIAL ICONS ================= */

.social-icons {
  position: absolute;
  right: 13px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.social-icons a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: 0.3s;
}

.social-icons a:hover {
  background: white;
  color: black;
}

/* ================= HAMBURGER ================= */

.hamburger {
  display: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {
  .nav-menu {
    position: absolute;
    top: 70px;
    right: 20px;
    background: #715c30;
    flex-direction: column;
    width: 230px;
    padding: 20px;
    border-radius: 10px;
    display: none;
  }

  .nav-menu.active {
    display: flex;
  }

  .hamburger {
    display: block;
  }

  .phone-box {
    font-size: 20px;
    padding: 15px 35px;
  }

  .corner {
    width: 35px;
    height: 35px;
  }

  .social-icons {
    right: 15px;
  }
}

@media (max-width: 600px) {
  #navbar {
    top: 20px;
  }

  .nav-wrapper {
    flex-wrap: wrap;
    gap: 15px;
  }

  .phone-box {
    font-size: 18px;
    text-align: center;
  }

  .social-icons {
    top: auto;
    bottom: 30px;
    flex-direction: row;
    left: 50%;
    transform: translateX(-50%);
  }
}
/* DROPDOWN */
/* .dropdown {
  position: relative;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 35px;
  background: #111;
  min-width: 200px;
}

.dropdown-content a {
  display: block;
  padding: 12px;
}

.dropdown:hover .dropdown-content {
  display: block;
} */

/* ===== SECTION ===== */
.plastering-area {
  background: #715c30;
  padding: 90px 20px;
  display: flex;
  justify-content: center;
}

.plastering-wrapper {
  max-width: 1000px;
  text-align: center;
}

/* TITLE */
.plastering-title {
  color: #fff;
  font-size: 32px;
  line-height: 1.4;
  margin-bottom: 25px;
  font-weight: 700;
}

/* TEXT */
.plastering-text {
  color: #bfbfbf;
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 45px;
}

/* BUTTONS */
.plastering-buttons {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}

/* BUTTON STYLE */
.plaster-btn {
  position: relative;
  padding: 14px 35px;
  color: #fff;
  text-decoration: none;
  /* border: 2px solid #39ff14; */
  font-weight: 600;
  letter-spacing: 1px;
  transition: 0.3s;
  overflow: hidden;
}

/* HOVER */
.plaster-btn:hover {
  background: #fff;
  color: #000;
}

/* OUTLINE BUTTON */
.plaster-btn.outline {
  border-color: #fff;
}

/* ===== CORNERS ===== */
.plaster-btn .corner {
  position: absolute;
  width: 22px;
  height: 22px;
  /* border: 2px solid #39ff14; */
}

/* .plaster-btn .top-right {
  top: -6px;
  right: -6px;
  border-left: none;
  border-bottom: none;
}

.plaster-btn .bottom-left {
  bottom: -6px;
  left: -6px;
  border-right: none;
  border-top: none;
} */

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .plastering-title {
    font-size: 24px;
  }

  .plastering-text {
    font-size: 15px;
  }

  .plastering-buttons {
    flex-direction: column;
    align-items: center;
    gap: 18px;
  }

  .plaster-btn {
    width: 85%;
    text-align: center;
  }
}

.services {
  padding: 90px 20px;
  background: #f7f7f7;
  text-align: center;
  font-family: "Poppins", sans-serif;
}

.services-title {
  font-size: 38px;
  letter-spacing: 3px;
  margin-bottom: 60px;
  color: #715c30;
}

/* GRID */
.services-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

/* CARD */
.service-card {
  position: relative;
  background: #fff;
  padding: 45px 25px;
  border: 2px solid #715c30;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
}

/* ICON */
.service-card i {
  font-size: 38px;
  margin-bottom: 18px;
  color: #715c30;
  transition: 0.4s;
}

.service-card h3 {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #715c30;
  z-index: 2;
  position: relative;
}

/* LEFT → RIGHT HOVER BACKGROUND */
.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #f7e0ae;
  transition: left 0.45s ease;
  z-index: 1;
}

.service-card:hover::before {
  left: 0;
}

/* TEXT COLOR CHANGE */
.service-card:hover h3,
.service-card:hover i {
  color: #fff;
  position: relative;
  z-index: 2;
}
/* Tablet */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .services-title {
    font-size: 28px;
  }
}
/* ===== GLOBAL FONT ===== */
.contact-section {
  font-family: "Poppins", sans-serif;
  padding: 80px 20px;

  /* Premium background */
  background: #715c30;
}

/* ===== CONTAINER ===== */
.contact-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 40px;
  align-items: stretch;
}

/* ===== FORM AREA ===== */
.contact-form-area {
  background: #ffffff;
  padding: 40px;
  border-radius: 14px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.contact-form-area h2 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #0a192f;
}

.contact-form-area p {
  color: #6b7280;
  margin-bottom: 25px;
}

/* ===== FORM ===== */
.form-row {
  display: flex;
  gap: 15px;
  margin-bottom: 18px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px;
  border-radius: 8px;
  border: 1px solid #d1d5db;
  font-size: 15px;
  font-family: "Poppins", sans-serif;
  transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #f59e0b;
  box-shadow: 0 0 0 2px rgba(245, 158, 11, 0.2);
  outline: none;
}

/* ===== BUTTON ===== */
.send-btn {
  background: #715c30;
  color: #fff;
  border: none;
  padding: 15px;
  width: 100%;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.send-btn:hover {
  background: #d97706;
  transform: translateY(-2px);
}

/* ===== MAP ===== */
.contact-map-wrapper {
  width: 100%;
  height: 100%;
  min-height: 460px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}

.contact-map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .contact-container {
    grid-template-columns: 1fr;
  }

  .contact-map-wrapper {
    min-height: 350px;
  }
}

@media (max-width: 600px) {
  .form-row {
    flex-direction: column;
  }

  .contact-form-area {
    padding: 25px;
  }
}

/* ===== FOOTER ===== */
.pp-footer {
  background: #ffffff;
  padding: 60px 20px 20px;
  font-family: "Poppins", sans-serif;
  border-top: 1px solid #715c30;
  font-weight: bold;
}

.pp-footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

/* LOGO */
.pp-footer-logo {
  width: 250px;
  margin-bottom: 15px;
  border: 2px solid #715c30;
}

/* HEADINGS */
.pp-footer h3,
.pp-footer h4 {
  color: #715c30;
  margin-bottom: 12px;
  font-weight: 600;
}

/* TEXT */
.pp-footer p {
  color: #715c30;
  line-height: 1.7;
  margin-bottom: 10px;
  font-size: 15px;
}

/* LINKS */
.pp-footer a {
  color: #715c30;
  text-decoration: none;
  font-weight: 500;
}

.pp-footer a:hover {
  text-decoration: underline;
}

/* AFTER HOURS */
.pp-after-hours {
  margin-top: 18px;
}

/* ===== BOTTOM BAR ===== */
.pp-footer-bottom {
  text-align: center;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid #715c30;
}

.pp-footer-bottom p {
  font-size: 16px;
  color: #715c30;
}

/* ===== RESPONSIVE ===== */

/* Tablet */
@media (max-width: 900px) {
  .pp-footer-container {
    grid-template-columns: 1fr 1fr;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .pp-footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .pp-footer-logo {
    margin: auto auto 15px;
  }
}

/* ===== ABOUT SECTION ===== */
.pp-about-section {
  background: #ffffff;
  padding: 80px 20px;
  font-family: "Poppins", sans-serif;
}

.pp-about-container {
  max-width: 1000px;
  margin: auto;
  border: 2px solid #715c30;
  padding: 30px;
}

/* TITLE */
.pp-about-title {
  text-align: center;
  font-size: 34px;
  color: #715c30;
  margin-bottom: 40px;
  font-weight: 600;
}

/* CONTENT */
.pp-about-content p {
  color: #715c30;
  line-height: 1.9;
  margin-bottom: 18px;
  font-size: 16px;
}

/* SUBTITLE */
.pp-about-subtitle {
  margin-top: 30px;
  margin-bottom: 15px;
  color: #715c30;
  font-size: 22px;
  font-weight: 600;
}

/* CTA BOX */
.pp-about-cta {
  margin-top: 35px;
  padding: 25px;
  border: 2px solid #715c30;
  border-radius: 10px;
  text-align: center;
}

.pp-about-cta h4 {
  color: #715c30;
  margin-bottom: 15px;
}

.pp-about-cta a {
  color: #715c30;
  text-decoration: none;
  font-weight: 600;
}

.pp-about-cta a:hover {
  text-decoration: underline;
}

.pp-service-area {
  display: block;
  margin-top: 10px;
  font-size: 14px;
  color: #715c30;
}

/* ===== RESPONSIVE ===== */

/* Tablet */
@media (max-width: 768px) {
  .pp-about-title {
    font-size: 28px;
  }
  .pp-about-cta a {
    font-size: 13px;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .pp-about-section {
    padding: 60px 15px;
  }

  .pp-about-content p {
    font-size: 15px;
  }

  .pp-about-title {
    font-size: 24px;
  }
}
/* ===== Contact Section ===== */
.mpx-contact-area {
  background: #f7f9fc;
  padding: 60px 20px;
  font-family: Arial, sans-serif;
}

.mpx-contact-box {
  max-width: 1100px;
  margin: auto;
}

.mpx-contact-heading {
  text-align: center;
  font-size: 32px;
  margin-bottom: 10px;
  color: #222;
}

.mpx-contact-text {
  text-align: center;
  color: #666;
  margin-bottom: 40px;
}

/* Layout */
.mpx-contact-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 30px;
}

/* ===== FORM ===== */
.mpx-form-section {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.mpx-input-group {
  margin-bottom: 18px;
}

.mpx-input-group label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  color: #333;
}

.mpx-input-group input,
.mpx-input-group textarea {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 15px;
  outline: none;
  transition: 0.3s;
}

.mpx-input-group input:focus,
.mpx-input-group textarea:focus {
  border-color: #715c30;
}

/* Button */
.mpx-submit-btn {
  width: 100%;
  padding: 14px;
  border: none;
  background: #715c30;
  color: white;
  font-size: 16px;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}

.mpx-submit-btn:hover {
  background: #005fa3;
}

/* ===== INFO SECTION ===== */
.mpx-info-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mpx-info-card {
  background: white;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.mpx-info-card h3 {
  margin-bottom: 8px;
}

.mpx-info-card a {
  text-decoration: none;
  color: #715c30;
  font-weight: bold;
}

/* ===== Responsive ===== */

/* Tablet */
@media (max-width: 768px) {
  .mpx-contact-layout {
    grid-template-columns: 1fr;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .mpx-contact-heading {
    font-size: 24px;
  }

  .mpx-form-section {
    padding: 22px;
  }
}
/* Payments Container */
.payments {
  text-align: center;
  padding: 15px;
  /* background-color: #f9f9f9; */
}

/* Heading */
.payments p {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #715c30;
}

/* Image Layout */
.payments {
  display: flex;
  flex-wrap: wrap;
  /* justify-content: center; */
  /* align-items: center; */
  gap: 15px;
}
.payment-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

/* Payment Logos */
.payments img {
  height: 25px;
  width: auto;
  object-fit: contain;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
  border: 1px solid #000;
}

/* Hover Effect */
.payments img:hover {
  transform: scale(1.08);
  opacity: 0.85;
}

/* ---------- Responsive ---------- */

/* Tablet */
@media (max-width: 768px) {
  .payments img {
    height: 38px;
  }

  .payments p {
    font-size: 16px;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .payments {
    gap: 10px;
    padding: 32px;
    justify-content: center;
  }

  .payments img {
    height: 32px;
  }

  .payments p {
    width: 100%;
    margin-bottom: 10px;
  }
}

.pp-about-section img {
  display: block;
  max-width: 100%; /* makes image responsive */
  height: 300px; /* keeps aspect ratio */
  margin: 20px auto; /* centers image */
  object-fit: contain;

  /* optional styling */
  border-radius: 10px;
}

/* Tablet */
@media (max-width: 768px) {
  .pp-about-section img {
    max-width: 80%;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .pp-about-section img {
    max-width: 90%;
  }
}
