/* ===== Whirlpool Theme Styles ===== */
:root {
  --wp-gold: #eeb111;
  --wp-dark: #00205B;
  --wp-gray: #333;
  --wp-light: #fff;
  --wp-border: #eeb111;
  --font-main: 'Nunito', Arial, sans-serif;
}

/* ===== Reset ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: var(--font-main);
}

body {
  background: var(--wp-light);
  color: var(--wp-gray);
  line-height: 1.6;
}
h1, h2, h3 {
  font-weight: 700;
  margin: 0 0 20px;
}

h1 { font-size: 42px; line-height: 1.2; }
h2 { font-size: 28px; }
h3 { font-size: 20px; }

p { margin: 10px 0 16px; color:#222 ; font-size: 16px; text-align: center; }
a {text-decoration: none; }
a:hover { background-color: transparent; }
li { list-style: none; }

/* ===== Container ===== */
.container {
  /* width: 90%; */
  max-width: 1200px;
  margin: 0 auto;
}

/* ===== Header ===== */
header {
  background: var(--wp-light);
  border-bottom: 2px solid var(--wp-border);
  padding: 15px 64px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav {
  display: flex;
  gap: 40px;
  /* justify-content: space-between; */
  align-items: center;
}
.logo {
  text-align: center;
}

.logo img {
  width: 130px;
  height: auto;
}

.logo h5 {
  font-size: 14px;
  color: var(--wp-dark);
  font-weight: 600;
  text-align: center;
}

/* ===== Navigation ===== */
.nav-links ul {
  display: flex;
  gap: 25px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--wp-dark);
  font-weight: 600;
  transition: 0.3s;
}

.nav-links a:hover {
  color: var(--wp-gold);
}

.menu-toggle {
  display: none;
  cursor: pointer;
  font-size: 24px;
}

/* ===== Hero Section ===== */
.hero {
  background-size: cover;
  background: url('../img/bg-1.png') center center / cover no-repeat;
  color: var(--wp-light);
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px 20px;
  position: relative;
  flex-direction: column;
  overflow: hidden;
  border-bottom: 1px solid #ddd;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: inherit; /* use same background */
  filter: brightness(0.5); /* adjust between 0.3 (dark) to 1.2 (bright) */
  z-index: 0;
}
.hero-text {
  position: relative;
  min-width: 280px;
  padding: 20px;
  z-index: 1;
}
.hero-text h1 {
  font-size: 2.8rem;
  margin-bottom: 10px;
  text-align: center;
}

.hero-text p {
  font-size: 1.1rem;
  text-align: center;
  color: #f0f0f0;
}

/* ===== Appointment Form ===== */
.appointment-section {
  background: #f3f3f3;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
  padding: 40px 20px;
  margin: 10px auto;
  text-align: center;
  max-width: 1100px;
 position: relative;
  z-index: 1;
  width: 90%;
}

.appointment-section h2 {
  text-align: center;
  color: #222;
  border-bottom: 2px solid var(--wp-border);
  display: inline-block;
  padding-bottom: 8px;
  margin-bottom: 20px;
}

.hero-form {
  display: flex;
  justify-content: center;
}

form {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
  max-width: 600px;
}

form input,
form select,
form textarea {
  padding: 12px 14px;
  border: 1px solid #222;
  border-radius: 5px;
  font-size: 15px;
  width: 100%;
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease; transition: all 0.3s ease;
}

form input:focus,
form select:focus,
form textarea:focus {
  outline: none;
  border-color: var(--wp-gold);
  box-shadow: 0 0 8px rgb(214, 207, 0.2);
}


form button {
  background: var(--wp-dark);
  color: var(--wp-light);
  border: none;
  padding: 14px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.3s ease;
}

form input:hover,
form select:hover,
form textarea:hover {
  border-color: var(--wp-dark);
  background-color: #e6f0ff; /* subtle blue hover */
}
form input:focus,
form select:focus,
form textarea:focus {
  border-color: var(--wp-gold);
  box-shadow: 0 0 8px rgba(238, 177, 17, 0.6);
  background-color: #fffbea; /* soft yellow focus */
}

/* ===== Gallery Section ===== */
.gallery {
  margin-top: 20px;
   padding: 20px 20px;
  text-align: center;
}

.gallery h2 {
  color: var(--wp-dark);
  margin-bottom: 40px;
  border-bottom: 2px solid var(--wp-border);
   display: inline-block;
   font-size: 2rem;
  font-weight: 700;
}

.gallery-content {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: center;
  justify-content: center;
}

.gallery-content img {
  width: 45%;
  max-width: 500px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
   transition: transform 0.3s ease;
}
.gallery img:hover {
  transform: scale(1.03);
}



.gallery-text h3 {
  color: var(--wp-dark);
  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(--wp-gray);
}
.gallery-text i {
  color: var(--wp-border);
  font-size: 1.2rem;
}

.call-btn {
  background: var(--wp-gold);
  color: var(--wp-dark);
  padding: 10px 18px;
  border-radius: 6px;
  font-weight: bold;
  text-decoration: none;
  transition:  background 0.3s;
}

.call-btn:hover {
  background: var(--wp-dark);
  color: var(--wp-light);
}

/* ===== Services Section ===== */
.services {

  margin-top: 60px;
  text-align: center;
}

.services h2 {
  color: var(--wp-dark);
  margin-bottom: 20px;
}

.service-block {
  background: var(--wp-light);
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  margin: 30px auto;
  padding: 30px;
  text-align: center;
   max-width: 1000px;
   width: 90%;
}

.service-block h3 {
  color: var(--wp-dark);
  margin-bottom: 15px;
  text-align: center;
}

.service-grid {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  text-align: left;
}

.service-grid img {
  width: 250px;
  border-radius: 10px;
   box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.service-grid ul {
  list-style: none;
  max-width: 500px;
}

.service-grid li {
  padding: 6px 0;
  color: var(--wp-gray);
}

.service-block a {
  text-decoration: none;
  color: var(--wp-dark);
  font-weight: 600;
}

.service-block a:hover {
  color: var(--wp-gold);
}

/* ===== Reach Section ===== */
.reach {
  margin-top: 60px;
  text-align: center;
}

.reach h2 {
  color: var(--wp-dark);
  margin-bottom: 20px;
}

.trust {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  gap: 40px;
  flex-wrap: wrap;
}

.trust ul {
  list-style: none;
  text-align: left;
}

.trust li {
  margin: 6px 0;
}
.trust img {
  border-radius: 10px;
  
}
.trust img:hover{
border: 1px solid var(--wp-border);
}

.reach-options {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 30px;
  gap: 20px;
}

.reach-box {
  background: var(--wp-light);
  border: 1px solid var(--wp-dark);
  border-radius: 10px;
  width: 300px;
  padding: 25px;
  text-align: center;
  transition: 0.3s;
}

.reach-box:hover {
 border: 2px solid var(--wp-border);
  transform: translateY(-3px);
}

.reach-box i {
  font-size: 30px;
  color: var(--wp-gold);
  margin-bottom: 10px;
}

.reach-box a {
  text-decoration: none;
  color: inherit;
}

.note {
  margin-top: 20px;
  font-size: 0.9rem;
  color: #555;
}

/* ===== Disclaimer & Footer ===== */
.disclaimer {
  background:var(--wp-gold);
  font-size: 0.9rem;
    padding: 20px;
 /* margin: 40px auto; */
  color: #333;
  text-align: center;
  line-height: 1.6;


}

.disclaimer a {
  color: var(--wp-dark);
  text-decoration: none;
}

.disclaimer a:hover {
  color: #fff;
}

footer {
  background:#f3f3f3;
  color: #000;
  padding: 40px 20px;
 
}

footer .footer-links {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 10px;
}

footer .footer-links img {
  width: 120px;
  height: auto;
  align-self: flex-start;
  /* padding-right: 20px; */
 margin-right: 130px;
}

footer .footer-links div {
  flex: 1;
  min-width: 50px;
}

.footer-links a {
  display: block;
  margin: 6px 0;
  text-decoration: none;
  color: #222;
  transition: color 0.3s ease;

}

.footer-links a:hover {
  color: var(--wp-gold);
  opacity: 1;
}

.copyright {
  background: #333;
  color: #fff;
  text-align: center;

  font-size: 0.85rem;
  border-top: 1px solid rgba(255,255,255,0.2);
  padding: 10px;
}
/* ===== Common Legal Pages ===== */

.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: 10px;
}

.common-content h2 {
  color: var(--wp-dark);
  margin-top: 10px;
  text-align: left;
  font-size :25px;
}

.faq-item {
  margin-bottom: 20px;
}

.faq-item h3 {
  color: var(--wp-dark);
  font-size :25px;
}

@keyframes bounceGlow {
  0%, 100% {
    transform: translateY(0);
    text-shadow: 0 0 5px rgba(165, 0, 52, 0.6);
  }
  50% {
    transform: translateY(-8px);
    text-shadow: 0 0 15px rgba(165, 0, 52, 0.8);
  }
}
.icon-animate {
  animation: bounceGlow 0.6s ease-in-out;
}
/* ===== Floating Toll-Free Button ===== */
.tollfree-btn {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background: linear-gradient(145deg,#eeb111 , #e8aa0c);
  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;
  }
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  header { padding: 10px 30px; }
   header .nav { justify-content: space-between; }
  .nav-links ul {
    flex-direction: column;
    background: var(--wp-light);
    gap: 10px;
    position: absolute;
    top: 65px;
    left: 0;
    width: 100%;
    display: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    padding: 20px;
  }

  .nav-links ul.active {
    display: flex;
     margin-top: 30px;
  }

  .menu-toggle {
    display: block;
    color: var(--wp-dark);
  }

  .gallery-content {
    flex-direction: column;
    align-items: center;
  }

  .gallery-content img {
    width: 100%;
 
  }  
  .gallery-text {
    margin-top: 20px;
    text-align: left;
  }

  .service-grid {
    flex-direction: column;
    align-items: center;
  }
  .service-grid img {
    max-width: 100%;
  }

  .trust {
    flex-direction: column;
  }

  .reach-options {
    flex-direction: column;
    align-items: center;
  }


footer .footer-links img {
 align-self: flex-start;
 margin-right: 30px;
}

footer .footer-links div {
  flex: 1;
  min-width: 75px;
}
.common-content {
    padding: 20px 15px;
  }
  .common-header {
    padding: 30px 10px;
  }
}
/* ===== Back to Home Button ===== */
.back-home {
  text-align: center;
  margin: 30px 0 10px;
}

.back-home a {
  display: inline-block;
  background: var(--wp-dark);
  color: var(--wp-light);
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.back-home a:hover {
  background: var(--wp-gold);
  color: var(--wp-dark);
  box-shadow: 0 0 10px rgba(238, 177, 17, 0.7);
}
