/* CSS Variables & Global Styles */
:root {
  --primary-teal: #0f4c5c;
  --secondary-teal: #1a748c;
  --accent-amber: #e36414;
  --dark-blue: #1b263b;
  --light-bg: #f8f9fa;
  --white: #ffffff;
  --text-gray: #4a4e69;
  --border-color: #e2e8f0;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  color: var(--text-gray);
  line-height: 1.7;
  background-color: var(--white);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Poppins", sans-serif;
  color: var(--dark-blue);
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  width: 90%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 80px 0;
}

.section-title {
  text-align: center;
  font-size: 2.8rem;
  margin-bottom: 15px;
  color: var(--primary-teal);
}

.section-subtitle {
  text-align: center;
  font-size: 1.1rem;
  margin-bottom: 50px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Fixed Left Side Icons */
.fixed-socials {
  position: fixed;
  left: 15px;
  bottom: 0%;
  transform: translateY(-50%);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.fixed-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  color: var(--white);
  font-size: 26px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s;
}

.fixed-socials a:hover {
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.whatsapp-icon {
  background-color: #25d366;
}

.phone-icon {
  background-color: var(--primary-teal);
}

/* Header & Navigation */
header {
  background-color: var(--white);
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 999;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 3%;
  max-width: 1400px;
  margin: 0 auto;
}

.logo {
  font-family: "Poppins", sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary-teal);
  letter-spacing: -0.5px;
}

.logo span {
  color: var(--accent-amber);
}
.branding_text {
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 6px;
  line-height: 0px;
}

.nav-links {
  display: flex;
  gap: 30px;
  list-style: none;
}

.nav-links a {
  font-weight: 600;
  font-size: 1rem;
  transition: color 0.3s;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.nav-links a:hover {
  color: var(--accent-amber);
}

/* Hero Banner */
.hero {
  background:
    linear-gradient(rgb(15 76 92 / 10%), rgba(27, 38, 59, 0.9)),
    url(img/banner.jpg) center / cover;
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  padding: 0 20px;
}

.hero h1 {
  color: var(--white);
  font-size: 4.5rem;
  line-height: 1.1;
  margin-bottom: 25px;
  text-transform: capitalize;
}

.hero p {
  font-size: 1.3rem;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 400;
  color: #e0e0e0;
}

.cta-btn {
  display: inline-block;
  background-color: var(--accent-amber);
  color: var(--white);
  padding: 10px 30px;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 16px;
  border-radius: 50px;
  box-shadow: 0 8px 25px rgba(227, 100, 20, 0.5);
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cta-btn:hover {
  background-color: #c9550e;
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(227, 100, 20, 0.6);
  color: var(--white);
}

/* About & Vision */
.about-section {
  background-color: var(--white);
}

.about-vision-wrapper {
  display: flex;
  gap: 50px;
  align-items: stretch;
}

.text-box {
  flex: 1;
  padding: 40px;
  background: var(--light-bg);
  border-radius: 15px;
  border-top: 6px solid var(--primary-teal);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
}

.text-box h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.text-box.vision {
  border-top: 6px solid var(--accent-amber);
}

/* Why Choose Us (Features) */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.feature-icon {
  background-color: rgba(227, 100, 20, 0.1);
  color: var(--accent-amber);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  flex-shrink: 0;
}

.feature-text h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

/* Services (Now 6 items) */
.services {
  background-color: var(--light-bg);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
}

.service-card {
  background: var(--white);
  padding: 40px 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
  border-bottom: 4px solid transparent;
}

.service-card:hover {
  transform: translateY(-15px);
  border-bottom: 4px solid var(--primary-teal);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.service-card i {
  font-size: 3.5rem;
  color: var(--accent-amber);
  margin-bottom: 25px;
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

/* Highlighting deep cleaning & hob servicing */
.highlighted-service {
  border: 2px solid var(--accent-amber) !important;
  background-color: #fffaf7 !important; /* Extremely light amber tint */
  position: relative;
  transform: scale(1.02);
}

.highlighted-service:hover {
  transform: scale(1.05) translateY(-10px) !important;
}

/* Little banners on top of the cards */
.service-card .badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--accent-amber);
  color: var(--white);
  padding: 6px 15px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 10px rgba(227, 100, 20, 0.3);
}

/* How It Works (Timeline) */
.how-it-works {
  background-color: var(--white);
}

.timeline {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  margin-top: 40px;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 40px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--border-color);
  z-index: 1;
}

.step {
  flex: 1;
  text-align: center;
  position: relative;
  z-index: 2;
  padding: 0 20px;
}

.step-number {
  width: 80px;
  height: 80px;
  background-color: var(--primary-teal);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Poppins", sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0 auto 20px auto;
  border: 5px solid var(--white);
  box-shadow: 0 0 0 2px var(--border-color);
}

.step h3 {
  margin-bottom: 10px;
  font-size: 1.3rem;
}

/* Gallery (6 images) */
.gallery-section {
  background-color: var(--dark-blue);
}

.gallery-section .section-title,
.gallery-section .section-subtitle {
  color: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 20px;
}

.gallery-item {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 10px;
  transition:
    transform 0.4s,
    filter 0.4s;
  filter: brightness(0.8);
}

.gallery-item:hover {
  transform: scale(1.03);
  filter: brightness(1.1);
  z-index: 2;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* Testimonials */
.testimonials {
  background-color: var(--light-bg);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.testimonial-card {
  background: var(--white);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  position: relative;
}

.testimonial-card::before {
  content: "\201C";
  font-family: "Poppins", sans-serif;
  font-size: 5rem;
  color: rgba(227, 100, 20, 0.1);
  position: absolute;
  top: -10px;
  left: 20px;
}

.stars {
  color: #ffd700;
  margin-bottom: 15px;
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 20px;
}

.client-name {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  color: var(--primary-teal);
}

/* FAQ Section */
.faq-section {
  background-color: var(--white);
}

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

.faq-item {
  margin-bottom: 15px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 20px;
  background: var(--light-bg);
  border: none;
  font-family: "Poppins", sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--dark-blue);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s;
}

.faq-question:hover {
  background: #e9ecef;
}

.faq-question i {
  color: var(--accent-amber);
  transition: transform 0.3s;
}

.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s ease,
    padding 0.4s ease;
  background: var(--white);
}

.faq-item.active .faq-answer {
  padding: 20px;
  max-height: 300px;
}

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

/* Contact Details & Map */
.contact-section {
  background-color: var(--dark-blue);
  color: var(--white);
}

.contact-section .section-title {
  color: var(--white);
  text-align: left;
}

.contact-wrapper {
  display: flex;
  gap: 60px;
  align-items: center;
}

.contact-info {
  flex: 1;
}

.contact-info p {
  font-size: 15px;
  margin-bottom: 25px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.contact-info i {
  color: var(--accent-amber);
  font-size: 20px;
  margin-top: 5px;
}

.contact-info strong {
  display: block;
  color: var(--white);
  font-family: "Poppins", sans-serif;
  font-size: 1.3rem;
  margin-bottom: 5px;
}

.map-container {
  flex: 1;
  height: 450px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.map-container iframe {
  width: 100%;
  /* height: 100%; */
  border: 0;
}

/* Stats / Counters Section Style */
.stats-section {
  background-color: #f0f7f9; /* Light, calming teal-gray background */
  padding: 60px 0;
  margin: 40px 0;
}

.stats-wrapper {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
  padding: 0 !important; /* Overriding default container padding height */
}

.stat-item {
  text-align: center;
  flex: 1;
  min-width: 200px;
  position: relative;
}

.stat-number {
  font-family: "Poppins", sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--primary-teal);
  display: inline-block;
  margin-bottom: 5px;
}

.stat-plus {
  font-family: "Poppins", sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--accent-amber);
  vertical-align: super;
  margin-left: 2px;
}

.stat-text {
  font-family: "Inter", sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-gray);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

@media (max-width: 768px) {
  .stat-number {
    font-size: 2.8rem;
  }
  .stat-plus {
    font-size: 1.8rem;
  }
  .stat-text {
    font-size: 1rem;
  }
}

/* Footer */
footer {
  text-align: center;
  padding: 30px;
  background-color: #0d1624;
  color: #8d99ae;
  font-size: 1rem;
}

footer strong {
  color: var(--white);
}

/* Responsive & Hamburger Menu styling */
@media (max-width: 992px) {
  .hero h1 {
    font-size: 3.5rem;
  }

  .timeline {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }

  .timeline::before {
    display: none;
  }

  .about-vision-wrapper,
  .contact-wrapper {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .hero {
    background-position: -230px;
  }
  /* Show Hamburger */
  .hamburger {
    display: block;
    font-size: 1.8rem;
    color: var(--primary-teal);
    cursor: pointer;
    z-index: 1001;
  }

  /* Hide default horizontal desktop menu and make it a vertical overlay */
  .nav-links {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    right: -100%;
    /* Hidden off-screen by default */
    width: 70%;
    height: 100vh;
    background-color: var(--white);
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    transition: right 0.4s ease;
    z-index: 1000;
    gap: 35px;
  }

  /* When 'active', slide it onto the screen from the right side */
  .nav-links.active {
    right: 0;
  }

  .hero h1 {
    font-size: 2.8rem;
  }

  .hero p {
    font-size: 1.1rem;
  }

  .section-title {
    font-size: 2.2rem;
  }

  .contact-section .section-title {
    text-align: center;
  }

  .contact-info p {
    justify-content: center;
    text-align: center;
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
}

@media (min-width: 769px) {
  .hamburger {
    display: none;
  }
}
