/* ===== Haier-Like Base Styles ===== */
:root {
  --haier-blue: #004C97;
  --haier-light-blue: #0073CF;
  --haier-dark-blue: #002F6C;
  --haier-gray: #4B4B4B;
  --haier-light-gray: #E6E6E6;
  --haier-white: #FFFFFF;
  --haier-black: #000;
  --max-width: 1200px;
  --font-familyr:'Haier-Regular', sans-serif;
  --font-familym:'Haier-Medium', sans-serif;
}

/* ===== Fonts ===== */
@font-face {
  font-family: 'Haier-Regular';
  src: url('../fonts/effra_std_rg-webfont.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Haier-Medium';
  src: url('../fonts/effra_std_bd-webfont.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--haier-black);
  background: #fff; 
  line-height: 1.6;
  font-family:var(--font-familyr) ;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 15px;
}

h1, h2, h3 {
  font-weight: 600;
  margin: 0 0 20px;
  color: black;
  font-family:var(--font-familym);
}

h1 { font-size: 42px; line-height: 1.2; }
h2 { font-size: 28px; }
h3 { font-size: 20px; }

p { margin: 10px 0 16px; color: black; font-size: 16px; text-align: center; }

a { color: black; text-decoration: none; }
a:hover { background-color: transparent; }

li { list-style: none; }

/* ===== Header ===== */
header {
  background: var(--haier-light-blue);
  border-bottom: 2px solid var(--haier-black);
  padding: 15px 64px;
  position: sticky;
  top: 0;
  z-index: 100;
}

header .logo { text-align: center; }
header .logo h5 { margin:0 0 0; color: var(--haier-light-gray); }

header .nav {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-links ul {
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}

.nav-links ul li a {
  font-weight: 500;
  color: var(--haier-white);
}

.menu-toggle {
  color: #fff;
  display: none;
  font-size: 24px;
  cursor: pointer;
}

/* ===== Hero Section ===== */
.hero {
  background: url("../img/bg-1.jpeg") center center;
  background-size: cover;
  padding: 60px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--haier-black);
  flex-direction: column;
  text-align: center;
  border-bottom: 1px solid var(--haier-white);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: inherit;
  filter: brightness(0.5);
  z-index: 0;
}
.hero-text {
  position: relative;
  min-width: 280px;
  padding: 20px;
  z-index: 1;
}
.hero h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--haier-white);
}
.hero p {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: var(--haier-white);
}

/* ===== Service Request Form ===== */
.appointment-section {
  background:var(--haier-white);
  padding: 30px 20px;
  border-radius: 12px;
  margin: 10px auto;
  max-width: 1100px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.529);
  position: relative;
  z-index: 1;
  text-align: center;
  width: 90%;
}

.appointment-section h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 30px;
  color: var(--haier-dark-blue);
  font-weight: 600;
  border-bottom: 2px solid var(--haier-gray);
  display: inline-block;
  padding-bottom: 8px;
}

/* Center the form */
.hero-form {
  display: flex;
  justify-content: center;
}
.hero-form form {
  width: 100%;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* Inputs */
.hero-form input,
.hero-form select,
.hero-form textarea {
  padding: 12px 14px;
  border: 1px solid var(--haier-gray);
  border-radius: 8px;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.hero-form input:focus,
.hero-form select:focus,
.hero-form textarea:focus {
  border-color: var(--haier-light-blue);
  box-shadow: 0 0 8px rgba(73, 182, 233, 0.3);
}

/* Button */
.hero-form button {
  background: var(--haier-dark-blue);
  color: #fff;
  padding: 14px;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  cursor: pointer;
  font-family: var(--font-familym);
  transition: background 0.3s ease;
}
.hero-form button:hover {
  background:var(--haier-blue);
}
.hero-form button:focus{
  background:var(--haier-light-blue);
}

/* ===== Services Section + Tabs ===== */
.services {
  background:var(--haier-white); /* updated background to previous body color */
  border-radius: 10px;
  padding: 40px 20px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.5);
  max-width: 1000px;
  margin: 0 auto;
  width: 90%;
}

/* ===== Remaining CSS continues exactly the same as original 578-line file ===== */
/* This includes all .service-block, .service-grid, gallery, reach, footer, responsive, and animation rules */



.services h2 {
  text-align: center;
  color: var(--godrej-purple);
  font-size: 2rem;
  margin-bottom: 40px;
}

.service-block {
  margin-bottom: 40px;
  padding-bottom: 30px;
  border-bottom: 1px solid #ddd;
  text-align: center;
}

.service-block:last-child {
  border-bottom: none;
}

.service-block h3 {
  margin-bottom: 25px;
  font-size: 1.4rem;
  display: inline-block;
  position: relative;
  padding-bottom: 8px;
  color: var(--haier-dark-blue);
}

.service-block h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 60%;
  height: 2px;
  background-color: var(--haier-gray);
  transform: translateX(-50%);
}

.service-grid {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  text-align: left;
}

.service-grid img {
  max-width: 250px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.service-grid ul {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--haier-black);
  max-width: 500px;
}

.service-grid li {
  margin-bottom: 8px;
}

.services p {
  margin-top: 15px;
  font-size: 1.05rem;
  text-align: center;
  color: var(--haier-black);
}

.services a {
  color: var(--haier-light-blue);
  font-weight: 600;
  text-decoration: none;
}

.services a:hover {
  text-decoration: none;
  color: var(--haier-blue);
}

/* ===== Gallery Section ===== */
.gallery {
  margin-top: 20px;
  padding: 20px 20px;
  text-align: center;
}

.gallery h2 {
  color: var(--haier-dark-blue);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 40px;
  border-bottom: 2px solid var(--haier-gray);
  display: inline-block;
}

.gallery-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.gallery img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.gallery img:hover {
  transform: scale(1.03);
}

.gallery-text h3 {
  color: var(--haier-blue);
  font-size: 1.4rem;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.gallery-text ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}

.gallery-text li {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--haier-black);
}
.gallery-text i {
  color: var(--haier-dark-blue);
  font-size: 1.2rem;
}

.call-btn {
  background: var(--haier-dark-blue);
  color: var(--haier-white);
  padding: 10px 18px;
  border-radius: 6px;
  font-weight: bold;
  text-decoration: none;
  transition:  background 0.3s;
}

.call-btn:hover {
  background: var(--haier-light-blue);
  color: var(--haier-white);
}

/* ===== Reach Section ===== */
.reach { margin: 25px 0 0; text-align: center;}
.reach h2 { border-bottom: 2px solid var(--haier-gray);
  color: var(--haier-blue);
  display: inline-block; }
.reach-options {
  display: flex;
  gap: 30px;
  margin-bottom: 20px;
}
.reach-options div {
  flex: 1;
  background: var(--haier-white);
  padding: 20px;
  border-radius: 10px;
}
.reach .note { font-style: italic; }
.reach-options {
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 20px;
  text-align: center;
}

.reach-box {
  flex: 1 1 250px;
  background: var(--haier-light-gray);
  padding: 25px 15px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.reach-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.reach-box i {
  font-size: 30px;
  color: var(--haier-blue);
  margin-bottom: 10px;
  display: block;
}
.reach-box a {
  text-decoration: none;
  color: inherit;
  display: block;
}

.reach-box:hover i {
  color: var(--haier-light-blue);
}

.trust {
  display: flex;
  gap: 30px;
  justify-content: center;
  margin-bottom: 20px;
  text-align: center;
  align-items: center;
}
.trust img {
  display: block;
  border-radius: 10px;
}
.trust li { color: var(--haier-dark-blue); }

/* ===== Disclaimer ===== */
.disclaimer {
  background:#C0C0C0;
  padding: 20px;
  /* border-radius: 8px; */
  text-align: center;
  /* margin: 40px 0; */
  color: var(--haier-black);
}

/* ===== Footer ===== */
footer {
  background: var(--haier-light-blue);
  padding: 40px 20px;
  font-size: 14px;
  color:var(--haier-white) ;
}
.footer-links {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}
.footer-links a {
  display: block;
  margin-bottom: 8px;
  color: #fff;
}
.footer-links a:hover { color: #000; }
.logo img {
  width: auto;
  height: 2.5rem;
  object-fit: contain;
  max-width: 100%;
}
.footer-links strong{
  color:#fff;
}
.copyright {
  background: var(--haier-blue);
  /* margin-top: 20px; */
  text-align: center;
  font-size: 13px;
}
/* strong { color: var(--godrej-purple); } */

/* ===== Floating Toll-Free Button ===== */
.tollfree-btn {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background: linear-gradient(145deg, #004C97, #002F6C);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  padding: 14px 30px;
  border-radius: 50px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.5);
  z-index: 9999;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Phone icon */
.tollfree-btn i {
  font-size: 1.1rem;
}

/* Shining gloss effect */
.tollfree-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0.15),
    rgba(255, 255, 255, 0.5),
    rgba(255, 255, 255, 0.15)
  );
  transform: skewX(-25deg);
  animation: shineLoop 4s linear infinite;
}

/* Auto shine animation every 3s */
@keyframes shineLoop {
  0% {
    left: -75%;
  }
  20% {
    left: 125%;
  }
  100% {
    left: 125%;
  }
}

/* Hover animation */
.tollfree-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.6);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .tollfree-btn {
    font-size: 0.9rem;
    padding: 10px 20px;
    bottom: 15px;
    right: 15px;
  }
}


/* Animation */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes bounceGlow {
  0%, 100% {
    transform: translateY(0);
    text-shadow: 0 0 5px rgba(216, 27, 96, 0.6);
  }
  50% {
    transform: translateY(-8px);
    text-shadow: 0 0 15px rgba(216, 27, 96, 0.8);
  }
}

.icon-animate {
  animation: bounceGlow 0.6s ease-in-out;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  header { padding: 10px 30px; }
  .menu-toggle { display: block}
  header .nav { justify-content: space-between; }

  .nav-links ul {
    flex-direction: column;
    gap: 10px;
    display: none;
    width: 100%;
    background: #fff;
    position: absolute;
    top: 60px;
    right: 0;
    padding: 20px;
    border-top: 1px solid #ddd;
    transition: all 0.3s ease-in-out;
  }
  .nav-links ul li a{
    color: #000;
  }
  .nav-links ul.active { display: flex; margin-top: 30px; }

  .hero { padding: 40px 20px; }
  .hero-text { max-width: 100%; }
  .hero-text h1 { font-size: 2rem; color: white; }
  .hero-text p { font-size: 1rem; color: white; }

  .appointment-section {
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
  }

  .gallery-content {
    flex-direction: column;
    text-align: center;
  }

  .gallery img {
    max-width: 100%;
  }

  .gallery-text {
    margin-top: 20px;
    text-align: left;
  }

  .tab-buttons {
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 20px;
  }

  .service-grid {
    flex-direction: column;
    text-align: center;
  }

  .service-grid ul {
    text-align: left;
    margin: 0 auto;
    color: var(--godrej-purple);
  }

  .service-grid img {
    max-width: 100%;
  }

  .reach-options { flex-direction: column; align-items: center;}
  .trust { flex-direction: column; }
  .trust img {
    margin-bottom: 15px;
  }
  .reach-box {
    width: 90%;
    margin-bottom: 15px;
  }
}
/* ===== Back to Home Button ===== */
.back-home {
  text-align: center;
  margin: 30px 0 10px;
}

.back-home a {
  display: inline-block;
  background: var(--haier-black);
  color: var(--haier-white);
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.back-home a:hover {
  background: var(--haier-light-blue);
  color: var(--haier-white);
 
}
@media (max-width: 768px) {
  .common-content {
    padding: 20px 15px;
  }
  .common-header {
    padding: 30px 10px;
  }
}
.common-content {
  background: var(--wp-light);
  padding: 40px 20px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.5);
  margin-top: 30px;
}

.common-content h2 {
  color: var(--wp-dark);
  margin-top: 25px;
  text-align: left;
}

.faq-item {
  margin-bottom: 20px;
}

.faq-item h3 {
  color: var(--wp-dark);
}
