/*
Theme Name: Phoenix Clean
Author: Bhupesh
Version: 1.0
*/

/* =========================
   GLOBAL RESET
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: #f4f4f4;
  color: #111;
}

/* =========================
   HEADER
========================= */

.site-header {
  background: #fff;
  border-bottom: 1px solid #ddd;
  position: sticky;
  top: 0;
  z-index: 9999;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LOGO */
.logo a {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #111;
}

.logo img {
  height: 45px;
}

.logo span {
  font-size: 18px;
  font-weight: 700;
  line-height: 1;          /* 🔥 alignment fix */
  display: flex;
  align-items: center;
}

/* NAV */
.main-nav ul {
  list-style: none;
  display: flex;
  gap: 25px;
}

.main-nav a {
  text-decoration: none;
  color: #111;
  font-weight: 600;
}

/* =========================
   MOBILE MENU
========================= */

.menu-toggle {
  display: none;
  font-size: 26px;
  cursor: pointer;
}

/* =========================
   HERO AUTO SLIDER
========================= */

.hero-slider {
  position: relative;
  height: 60vh;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease;
}

.hero-slide.active {
  opacity: 1;
}

/* Overlay for text readability */
.hero-slider::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 1;
}

/* Text */
.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  padding: 0 20px;
}

.hero-content h1 {
  font-size: 48px;
  font-weight: 800;
  color: #e53935;
}

.hero-content p {
  margin-top: 10px;
  font-size: 18px;
}

/* Mobile */
@media (max-width: 768px) {
  .hero-slider {
    height: 45vh;
  }

  .hero-content h1 {
    font-size: 32px;
  }

  .hero-content p {
    font-size: 16px;
  }
}

/* =========================
   SERVICES LIST
========================= */

.services {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
}

.services h1 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 36px;
  font-weight: 800;
  color: #e53935;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

/* SERVICE CARD */
.service-card {
  background: #fff;
  border: 1px solid #ddd;
  text-decoration: none;
  color: #111;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

.service-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.service-card h3 {
  padding: 15px;
  font-size: 18px;
}

/* =========================
   SERVICE DETAIL PAGE
========================= */

.service-detail {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
}

.service-detail h1 {
  font-size: 32px;
  margin-bottom: 20px;
}

.service-detail img {
  max-width: 100%;
  margin: 20px 0;
  border-radius: 8px;
}

/* =========================
   FOOTER – 4 COLUMN CLEAN
========================= */

.site-footer {
  background: #000;
  color: #fff;
  padding: 70px 20px 30px;
}

.footer-row {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.footer-col h4,
.footer-col h3 {
  margin-bottom: 15px;
  font-size: 20px;
  color: #e53935;
}

.footer-col p {
  font-size: 14px;
  color: #ccc;
  line-height: 1.6;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  font-size: 14px;
  margin-bottom: 10px;
  color: #ddd;
}

.footer-col.brand img {
  height: 55px;
  margin-bottom: 15px;
}

.footer-bottom {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.15);
  text-align: center;
  font-size: 13px;
  color: #aaa;
}

/* =========================
   FOOTER RESPONSIVE
========================= */
@media (max-width: 992px) {
  .footer-row {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 576px) {
  .footer-row {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-col.brand img {
    margin: 0 auto 15px;
    display: block;
  }
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 768px) {

  .menu-toggle {
    display: block;
  }

  .main-nav {
    display: none;
    position: absolute;
    top: 70px;
    right: 20px;
    background: #fff;
    width: 220px;
    border-radius: 10px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
  }

  .main-nav.active {
    display: block;
  }

  .main-nav ul {
    flex-direction: column;
  }

  .main-nav li {
    border-bottom: 1px solid #eee;
  }

  .main-nav li:last-child {
    border-bottom: none;
  }

  .main-nav a {
    display: block;
    padding: 14px 18px;
  }

  .logo span {
    font-size: 16px;
  }
}

/* CONTACT PAGE */
.contact-page {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
}

.contact-hero {
  text-align: center;
  margin-bottom: 50px;
}

.contact-hero h1 {
  font-size: 42px;
  color: #e53935;
  margin-bottom: 10px;
}

.contact-hero p {
  font-size: 16px;
  color: #555;
}

.contact-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.contact-box {
  background: #fff;
  padding: 30px;
  text-align: center;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.contact-box h3 {
  margin-bottom: 10px;
  font-size: 18px;
}

.contact-box a {
  color: #1a73e8;
  text-decoration: none;
  font-weight: 600;
}
/* =========================
   ABOUT PAGE
========================= */

.about-page {
  padding-bottom: 60px;
}

.about-hero {
  text-align: center;
  padding: 80px 20px;
  background: #fff;
}

.about-hero h1 {
  font-size: 40px;
  color: #e53935;
}

.about-hero p {
  font-size: 18px;
  margin-top: 10px;
}

.container {
  max-width: 1100px;
  margin: auto;
  padding: 60px 20px;
}

.about-block h2,
.about-services h2,
.about-why h2,
.about-mission h2 {
  color: #e53935;
  margin-bottom: 20px;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.about-card {
  background: #fff;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.about-why ul {
  list-style: none;
  padding: 0;
}

.about-why li {
  margin-bottom: 10px;
  font-size: 16px;
}

.about-cta {
  text-align: center;
  padding: 60px 20px;
  background: #fff;
  color: #e53935;
}

.about-btn {
  display: inline-block;
  margin-top: 20px;
  background: #e53935;
  color: #fff;
  padding: 12px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
}

/* Remove unwanted white gap */
.about-cta {
  margin-bottom: 0 !important;
}

footer {
  margin-top: 0 !important;
}

body {
  margin: 0;
}
.about-page {
  margin-bottom: 0;
  padding-bottom: 0;
}

section {
  margin-bottom: 0;
}

/* =========================
   CONTACT ENQUIRY FORM
========================= */

.contact-page {
  max-width: 600px;
  margin: 70px auto;
  padding: 0 20px;
}

.contact-title {
  text-align: center;
  margin-bottom: 30px;
  font-size: 32px;
  font-weight: 800;
  color: #e53935;
}

.contact-form {
  background: #fff;
  padding: 30px;
  border: 2px solid #e53935; /* thin red border */
  border-radius: 10px;
}

.contact-form label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  color: #000;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 18px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
  color: #000;
  background: #fff;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: #e53935;
}

.contact-form button {
  width: 100%;
  padding: 14px;
  background: #e53935;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

.contact-form button:hover {
  background: #c62828;
}
/* =========================
   THANK YOU POPUP
========================= */

.thankyou-popup {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99999;
}

.popup-box {
  background: #fff;
  padding: 35px 30px;
  border-radius: 12px;
  text-align: center;
  max-width: 380px;
  width: 90%;
  box-shadow: 0 20px 40px rgba(0,0,0,0.25);
}

.popup-box h2 {
  color: #e53935;
  margin-bottom: 10px;
}

.popup-box p {
  font-size: 14px;
  color: #333;
  margin-bottom: 22px;
}

/* WhatsApp Button */
.whatsapp-btn {
  display: block;
  background: #25d366;
  color: #fff;
  padding: 12px;
  border-radius: 30px;
  font-weight: 700;
  text-decoration: none;
  margin-bottom: 12px;
}

.popup-box button {
  background: transparent;
  border: none;
  color: #555;
  font-size: 14px;
  cursor: pointer;
}
/* =========================
   SERVICE DETAIL – BEAUTIFIED
========================= */

.service-detail-wrap {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

/* TITLE */
.service-title {
  font-size: 34px;
  font-weight: 800;
  color: #111;
  margin-bottom: 20px;
}

/* IMAGE CARD (RED BORDER SAME AS FORM) */
.service-detail-image {
  background: #fff;
  padding: 14px;
  border-radius: 14px;
  border: 3px solid #e53935;
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

.service-detail-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  display: block;
}

/* CONTENT */
.service-content {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 30px;
}

/* ORDER NOW BUTTON */
.order-btn {
    display: inline-block;
    background: #25D366;
    color: #fff;
    padding: 14px 28px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    margin-top: 20px;
}

.order-btn:hover {
    background: #1ebe5d;
}

.order-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(37,211,102,0.6);
}

/* MOBILE */
@media (max-width: 768px) {
  .service-detail-wrap {
    grid-template-columns: 1fr;
  }

  .service-title {
    font-size: 26px;
  }
}
.service-title {
  font-size: 34px;
  font-weight: 800;
  color: #111; /* BLACK */
  margin-bottom: 20px;
}

.service-title span {
  color: #e53935; /* RED */
}
.service-main-title {
  text-align: center;
  font-size: 40px;
  font-weight: 800;
  margin: 40px 0 35px;
  color: #111;
}

.service-main-title span {
  color: #e53935;
}

/* Footer Contact Links White */

footer a {
    color: #ffffff;
    text-decoration: none;
}

footer a:visited {
    color: #ffffff;
}

footer a:hover {
    color: #e53935; /* hover pe red effect */
}