@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* =========================
   GLOBAL RESET
========================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {

  font-family: 'Poppins', sans-serif;

  background: #F5F8FC;
  color: #020B1F;

  line-height: 1.6;

  overflow-x: hidden;

}

/* =========================
   COLORS
========================= */

:root {

  --primary: #041C4A;
  --secondary: #0B2E6D;
  --accent: #D4A63A;
  --light-blue: #7CC6FF;
  --white: #FFFFFF;
  --off-white: #F5F8FC;
  --dark: #020B1F;

}

/* =========================
   CONTAINER
========================= */

.container {

  width: 90%;
  max-width: 1200px;
  margin: auto;

}

/* =========================
   NAVBAR
========================= */

.navbar {

  position: sticky;
  top: 0;
  z-index: 1000;

  background: rgba(2, 11, 31, 0.95);

  backdrop-filter: blur(10px);

  border-bottom: 1px solid rgba(212, 166, 58, 0.2);

  padding: 18px 0;

}

.nav-container {

  display: flex;
  justify-content: space-between;
  align-items: center;

}

.logo {

  color: white;

  font-size: 1.8rem;
  font-weight: 700;

  letter-spacing: -1px;

}

.nav-links {

  display: flex;
  gap: 30px;

  list-style: none;

}

.nav-links a {

  color: white;

  text-decoration: none;

  font-weight: 500;

  transition: 0.3s ease;

}

.nav-links a:hover {

  color: var(--accent);

}

/* =========================
   HAMBURGER
========================= */

.hamburger {

  display: none;

  flex-direction: column;

  gap: 5px;

  cursor: pointer;

}

.hamburger span {

  width: 25px;
  height: 3px;

  background: white;

  border-radius: 10px;

}

/* =========================
   HERO
========================= */

.hero {

  min-height: 100vh;

  display: flex;
  align-items: center;

  position: relative;
  overflow: hidden;

  background:
    linear-gradient(
      to right,
      rgba(2, 11, 31, 0.92),
      rgba(4, 28, 74, 0.85)
    ),
    url("../images/cleaning-hero.jpg");

  background-size: cover;
  background-position: center;

  color: white;

  padding: 100px 0;

}

.hero::before {

  content: "";

  position: absolute;

  inset: 0;

  background:
    radial-gradient(
      circle at top right,
      rgba(124,198,255,0.15),
      transparent 40%
    );

  pointer-events: none;

}

.hero-content {

  position: relative;
  z-index: 2;

  display: grid;

  grid-template-columns:
    repeat(auto-fit, minmax(300px, 1fr));

  gap: 60px;

  align-items: center;

}

.hero-text h1 {

  font-size: 3.5rem;

  line-height: 1.1;

  margin-bottom: 20px;

  font-weight: 800;

  letter-spacing: -2px;

}

.hero-text p {

  font-size: 1.1rem;

  margin-bottom: 30px;

  color: #DDE7F7;

}

.hero-buttons {

  display: flex;

  gap: 20px;

  flex-wrap: wrap;

}

.hero-image img {

  width: 100%;

  border-radius: 30px;

  object-fit: cover;

  box-shadow:
    0 15px 40px rgba(0,0,0,0.35);

}

/* =========================
   BUTTONS
========================= */

.primary-btn {

  background: linear-gradient(
    135deg,
    #D4A63A,
    #F0C35A
  );

  color: #041C4A;

  border: none;

  padding: 14px 28px;

  border-radius: 50px;

  font-weight: 700;

  font-family: 'Poppins', sans-serif;

  cursor: pointer;

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    filter 0.3s ease;

}

.primary-btn:hover {

  transform: translateY(-3px);

  filter: brightness(1.05);

  box-shadow:
    0 10px 25px rgba(212, 166, 58, 0.35);

}

.secondary-btn {

  background: transparent;

  border: 2px solid white;

  color: white;

  padding: 14px 28px;

  border-radius: 50px;

  font-weight: 700;

  font-family: 'Poppins', sans-serif;

  cursor: pointer;

  transition: 0.3s ease;

}

.secondary-btn:hover {

  background: white;

  color: var(--primary);

}

/* =========================
   SECTIONS
========================= */

section {

  padding: 100px 0;

}

.section-title {

  text-align: center;

  font-size: 2.7rem;

  color: var(--primary);

  margin-bottom: 15px;

  font-weight: 700;

  letter-spacing: -1px;

  text-shadow:
    0 0 10px rgba(212,166,58,0.12);

}

.section-subtitle {

  text-align: center;

  max-width: 700px;

  margin: auto auto 60px;

  color: #555;

  font-size: 1.05rem;

}

/* =========================
   SERVICES
========================= */

.services-grid {

  display: grid;

  grid-template-columns:
    repeat(auto-fit, minmax(250px, 1fr));

  gap: 30px;

}

.service-card {

  position: relative;

  overflow: hidden;

  background: white;

  padding: 40px 30px;

  border-radius: 20px;

  border: 1px solid rgba(212, 166, 58, 0.15);

  box-shadow:
    0 10px 30px rgba(0,0,0,0.06);

  transition: 0.3s ease;

}

.service-card:hover {

  transform: translateY(-8px);

  box-shadow:
    0 15px 40px rgba(4, 28, 74, 0.12);

}

.service-card::before {

  content: "";

  position: absolute;

  top: -120%;
  left: -120%;

  width: 250%;
  height: 250%;

  background:
    linear-gradient(
      120deg,
      transparent,
      rgba(255,255,255,0.18),
      transparent
    );

  transform: rotate(25deg);

  transition: 0.8s ease;

}

.service-card:hover::before {

  top: 100%;
  left: 100%;

}

.service-card h3 {

  color: var(--primary);

  margin-bottom: 15px;

  font-size: 1.4rem;

}

/* =========================
   WHY US
========================= */

.why-grid {

  display: grid;

  grid-template-columns:
    repeat(auto-fit, minmax(250px, 1fr));

  gap: 30px;

}

.why-card {

  position: relative;

  overflow: hidden;

  background: white;

  padding: 40px 30px;

  border-radius: 20px;

  text-align: center;

  box-shadow:
    0 10px 30px rgba(0,0,0,0.05);

  transition: 0.3s ease;

}

.why-card:hover {

  transform: translateY(-8px);

}

.why-card::before {

  content: "";

  position: absolute;

  top: -120%;
  left: -120%;

  width: 250%;
  height: 250%;

  background:
    linear-gradient(
      120deg,
      transparent,
      rgba(255,255,255,0.18),
      transparent
    );

  transform: rotate(25deg);

  transition: 0.8s ease;

}

.why-card:hover::before {

  top: 100%;
  left: 100%;

}

.why-icon {

  font-size: 3rem;

  margin-bottom: 20px;

}

/* =========================
   TESTIMONIALS
========================= */

.testimonials {

  background: var(--primary);

  color: white;

}

.testimonials .section-title,
.testimonials .section-subtitle {

  color: white;

}

.testimonials-grid {

  display: grid;

  grid-template-columns:
    repeat(auto-fit, minmax(250px, 1fr));

  gap: 30px;

}

.testimonial-card {

  position: relative;

  overflow: hidden;

  background: rgba(255,255,255,0.08);

  padding: 30px;

  border-radius: 20px;

  backdrop-filter: blur(10px);

}

.testimonial-card::before {

  content: "";

  position: absolute;

  top: -120%;
  left: -120%;

  width: 250%;
  height: 250%;

  background:
    linear-gradient(
      120deg,
      transparent,
      rgba(255,255,255,0.18),
      transparent
    );

  transform: rotate(25deg);

  transition: 0.8s ease;

}

.testimonial-card:hover::before {

  top: 100%;
  left: 100%;

}

/* =========================
   CONTACT
========================= */

.contact-container {

  display: grid;

  grid-template-columns:
    repeat(auto-fit, minmax(300px, 1fr));

  gap: 50px;

  align-items: center;

}

.contact-form {

  display: flex;

  flex-direction: column;

  gap: 20px;

}

.contact-form input,
.contact-form textarea {

  padding: 16px;

  border-radius: 15px;

  border: 1px solid #d6d6d6;

  font-size: 1rem;

  font-family: 'Poppins', sans-serif;

  background: white;

  color: #041C4A;

  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.3s ease;

}

.contact-form textarea {

  resize: vertical;

  min-height: 180px;

}

.contact-form input::placeholder,
.contact-form textarea::placeholder {

  color: #7B8190;

  font-weight: 500;

}

.contact-form input:focus,
.contact-form textarea:focus {

  outline: none;

  border-color: var(--accent);

  box-shadow:
    0 0 15px rgba(212,166,58,0.18);

  transform: translateY(-2px);

}

/* =========================
   FOOTER
========================= */

.footer {

  background: #020B1F;

  color: white;

  border-top: 2px solid #D4A63A;

  padding: 50px 0;

  text-align: center;

}

.footer-content {

  display: flex;

  flex-direction: column;

  gap: 20px;

}

.footer-contact {

  display: flex;

  justify-content: center;

  gap: 30px;

  flex-wrap: wrap;

}

/* =========================
   FLOATING CALL BUTTON
========================= */

.floating-call {

  position: fixed;

  bottom: 20px;
  right: 20px;

  width: 60px;
  height: 60px;

  border-radius: 50%;

  background: linear-gradient(
    135deg,
    #D4A63A,
    #F0C35A
  );

  color: #041C4A;

  display: flex;
  justify-content: center;
  align-items: center;

  text-decoration: none;

  font-size: 1.5rem;

  box-shadow:
    0 10px 25px rgba(0,0,0,0.2);

  transition: 0.3s ease;

}

.floating-call:hover {

  transform: scale(1.1);

}

/* =========================
   ANIMATIONS
========================= */

.fade-in,
.fade-in-delay {

  opacity: 0;

  transform: translateY(30px);

  transition:
    opacity 0.8s ease,
    transform 0.8s ease;

}

.fade-in-delay {

  transition-delay: 0.2s;

}

.show {

  opacity: 1;

  transform: translateY(0);

}

/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {

  .hero {

    padding: 140px 0 80px;

    text-align: center;

  }

  .hero-content {

    gap: 40px;

  }

  .hero-text h1 {

    font-size: 2.3rem;

    line-height: 1.2;

  }

  .hero-text p {

    font-size: 1rem;

  }

  .hero-buttons {

    justify-content: center;

  }

  .hero-image img {

    border-radius: 20px;

  }

  .section-title {

    font-size: 2rem;

  }

  .services-grid,
  .why-grid,
  .testimonials-grid {

    grid-template-columns: 1fr;

  }

  .contact-container {

    gap: 40px;

  }

  .contact-form input,
  .contact-form textarea {

    font-size: 16px;

  }

  .footer-contact {

    flex-direction: column;

    gap: 15px;

  }

  .floating-call {

    width: 58px;
    height: 58px;

    font-size: 1.3rem;

  }

  .nav-links {

    position: absolute;

    top: 80px;
    right: 20px;

    background: rgba(2,11,31,0.98);

    backdrop-filter: blur(10px);

    flex-direction: column;

    width: 220px;

    padding: 20px;

    border-radius: 20px;

    border: 1px solid rgba(212,166,58,0.15);

    box-shadow:
      0 15px 35px rgba(0,0,0,0.35);

    display: none;

  }

  .nav-links.active {

    display: flex;

  }

  .hamburger {

    display: flex;

  }

}