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

body {
  font-family: "Roboto", sans-serif;
  background-color: #eee8e6;
  color: #222;
  overflow-x: hidden;
}

section {
  padding: 80px 10%;
}
section:last-of-type {
  padding-bottom: 60px;
}

/* ==========================
   HEADER
========================== */
header {
  background-color: #435048;
  padding: 8px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 10;
}

.logo img {
  width: 45px;
  cursor: pointer;
}

/* NAV LINKS */
header nav a {
  color: #eee8e6;
  text-decoration: none;
  margin: 0 18px;
  font-weight: 500;
  position: relative;
  transition: color 0.3s ease;
}

header nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0%;
  height: 2px;
  background-color: #a29d98;
  transition: width 0.3s ease;
}

header nav a:hover {
  color: #ffffff;
}

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

/* MENU ICON (mobile) */
.menu-icon {
  display: none;
  font-size: 32px;
  color: #eee8e6;
  cursor: pointer;
}

@media (max-width: 768px) {
  nav {
    display: none;
  }
  nav.active {
    display: block;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    background-color: #435048;
    text-align: center;
    padding: 20px 0;
  }
  nav.active a {
    display: block;
    margin: 15px 0;
  }
  .menu-icon {
    display: block;
  }
}


/* ==========================
   HERO
========================== */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  background: url("images/clean-home.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(67, 80, 72, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
}

.hero-content {
  max-width: 800px;
  z-index: 2;
  opacity: 0;
  transform: translateX(-60px);
  animation: slideIn 1.2s ease-out forwards;
}

@keyframes slideIn {
  0% { opacity: 0; transform: translateX(-60px); }
  100% { opacity: 1; transform: translateX(0); }
}

.hero h1 {
  font-size: 52px;
  font-weight: 700;
  margin-bottom: 20px;
}

.hero p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 30px;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.btn-primary,
.btn-secondary {
  text-decoration: none;
  padding: 12px 30px;
  border-radius: 6px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-primary {
  background-color: #4c5c52;
  color: #fff;
}
.btn-primary:hover {
  background-color: #a29d98;
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: transparent;
  border: 2px solid #fff;
  color: #fff;
}
.btn-secondary:hover {
  background-color: #fff;
  color: #4c5c52;
  transform: translateY(-2px);
}


/* ==========================
   ABOUT
========================== */
.about-section {
  background-color: #eee8e6;
  color: #222;
  text-align: center;
}

.about-section h2 {
  font-size: 2.5rem;
  color: #435048;
  margin-bottom: 30px;
  font-weight: 700;
}

.about-section p {
  max-width: 900px;
  margin: 0 auto;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #4c5c52;
}


/* ==========================
   SERVICES
========================== */
.services-section {
  background-color: #435048;
  color: #eee8e6;
}

.services-header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 60px;
  text-align: center;
  gap: 20px;
}

.services-left h2 {
  font-size: 2.2rem;
  font-weight: 700;
}

.services-left h3 {
  font-size: 1.3rem;
  color: #a29d98;
}

.services-right {
  max-width: 600px;
  margin: 0 auto;
}

.services-right p {
  line-height: 1.8;
  margin-bottom: 20px;
}

.btn-quote {
  display: inline-block;
  padding: 12px 25px;
  background-color: #4c5c52;
  color: #eee8e6;
  border-radius: 6px;
  text-decoration: none;
  transition: 0.3s ease;
}
.btn-quote:hover {
  background-color: #a29d98;
  color: #222;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

.service-card {
  background-color: #eee8e6;
  color: #222;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
}

.service-card:hover {
  background-color: #a29d98;
  color: #fff;
  transform: translateY(-5px);
}

.service-card .material-symbols-outlined {
  font-size: 40px;
  color: #435048;
  margin-bottom: 15px;
}
.service-card:hover .material-symbols-outlined {
  color: #eee8e6;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}


/* ==========================
   FAQ
========================== */
.faq-section {
  background: #f7f8f6;
  text-align: center;
}

.faq-section h2 {
  font-size: 2.3rem;
  color: #435048;
  margin-bottom: 40px;
  font-weight: 700;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}

.faq-item {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  margin-bottom: 18px;
  transition: all 0.3s ease;
}

.faq-item.active {
  background: #f9fbf7;
  box-shadow: 0 6px 18px rgba(136,176,75,0.3);
}

.faq-question {
  width: 100%;
  border: none;
  background: none;
  padding: 18px 22px;
  font-size: 1rem;
  font-weight: 600;
  color: #2c2c2c;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-icon {
  font-size: 1.3rem;
  color: #88b04b;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  padding: 0 22px;
  transition: max-height 0.4s ease, opacity 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 10px 22px 20px;
  opacity: 1;
}


/* ==========================
   CONTACT
========================== */
.contact-section {
  background-color: #435048;
  color: white;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 60px;
}

.contact-text {
  flex: 1;
  min-width: 300px;
}

.contact-text h2 {
  font-size: 1.8rem;
  margin-bottom: 16px;
}

.contact-text p {
  margin-bottom: 12px;
  line-height: 1.6;
}

.call-btn {
  display: inline-block;
  background-color: white;
  color: #435048;
  padding: 12px 26px;
  border-radius: 30px;
  font-weight: bold;
  transition: all 0.3s ease;
}
.call-btn:hover {
  background-color: #88b04b;
  color: #fff;
  transform: translateX(5px);
}

/* FORM */
.contact-form-container {
  flex: 1;
  background: #fff;
  border-radius: 12px;
  padding: 40px;
  color: #333;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.contact-form-container img {
  display: block;
  width: 120px;
  margin: 0 auto 20px;
}

.form-group {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
  flex-wrap: wrap;
}

input,
textarea {
  flex: 1;
  padding: 10px 14px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 0.95rem;
}

textarea {
  resize: vertical;
}

.btn-submit {
  width: 100%;
  background: #88b04b;
  color: #fff;
  border: none;
  padding: 14px;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}
.btn-submit:hover {
  background: #6e8e3a;
}

.success-message {
  text-align: center;
  color: #88b04b;
  margin-top: 20px;
  font-weight: 600;
}

.form-privacy {
  text-align: center;
  font-size: 0.9rem;
  color: #4c5c52;
  margin-top: -10px;
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
  gap: 6px;
  align-items: center;
  opacity: 0.9;
}

.lock-icon {
  font-size: 18px !important;
  color: #88b04b;
}


/* CONTACT INFO BLOCKS */
.contact-info-wrapper {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-top: 50px;
  flex-wrap: wrap;
}

.contact-info-wrapper > div {
  text-align: center;
  min-width: 250px;
}

.contact-info-wrapper h3 {
  color: #88b04b;
  margin-bottom: 10px;
  font-weight: 600;
}

.contact-info-wrapper a {
  text-decoration: none;
  color: white;
  transition: 0.3s;
}
.contact-info-wrapper a:hover {
  text-decoration: underline;
}


/* SOCIAL ICONS */
.social-icons {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 10px;
}

.social-icons img {
  width: 26px;
  filter: brightness(100%);
  transition: 0.3s;
}
.social-icons img:hover {
  opacity: 0.75;
  transform: translateY(-2px);
}


/* ==========================
   FADE EFFECT
========================== */
.fade-section {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1s ease, transform 1s ease;
}
.fade-section.visible {
  opacity: 1;
  transform: translateY(0);
}


/* ==========================
   FOOTER
========================== */
.footer {
  background-color: #435048;
  color: white;
  padding: 60px 10% 30px;
  text-align: center;
}

.footer-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 15px;
}

.footer-logo img {
  width: 60px;
  margin-bottom: 10px;
}

/* LINKS */
.footer-links {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
}

.footer-links a {
  color: #EEE8E6;
  text-decoration: none;
  transition: 0.3s ease;
  font-size: 0.95rem;
  font-weight: 500;
  position: relative;
}

.footer-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0%;
  height: 2px;
  background-color: #A29D98;
  transition: width 0.3s ease;
}

.footer-links a:hover {
  color: #FFFFFF;
}

.footer-links a:hover::after {
  width: 100%;
}

/* COPYRIGHT */
.footer-bottom {
  margin-top: 35px;
  font-size: 0.85rem;
  color: #EEE8E6;
  border-top: 1px solid #A29D98;
  padding-top: 18px;
}
