/* Global Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Noto Sans", sans-serif;
}

body {
  color: #222;
  background-color: #f2f2f2;
}

/* NAVBAR BASE */
.navbar {
  background: #f2f2f2;
  padding: 15px 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
}

.nav-container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* LOGO SECTION */
.logo {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.logo img {
  width: 150px;
  margin-bottom: 5px;
}

.logo h4 {
  font-size: 16px;
  color: #333;
  font-weight: 600;
}

/* NAV LINKS */
.nav-links {
  margin-top: 10px;
}

.nav-links ul {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
}

.nav-links li {
  margin: 10px 15px;
}

.nav-links a {
  text-decoration: none;
  color: #4d4d4d;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #000000;
}

/* HAMBURGER ICON */
.menu-toggle {
  position: absolute;
  left: 20px;
  top: 22px;
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.menu-toggle span {
  background: #333;
  height: 3px;
  width: 25px;
  margin: 4px 0;
  border-radius: 2px;
}

.hero {
  position: relative;
  width: 100%;
  height: 100vh; /* full-screen height */
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  text-align: center;
  background-color: #fff; /* fallback background */
}

/* full image visible without cropping */
.hero-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  transition: object-fit 0.3s ease;
}

/* dark overlay for dim effect */
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45); /* adjust 0.3–0.6 for darkness */
  z-index: 1;
}

/* text styling */
.hero-text {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 800px;
  padding: 0 20px;
  transform: translateY(-8%);
}

.hero-text h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 15px;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.5);
}

.hero-text p {
  font-size: 1.2rem;
  line-height: 1.6;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.4);
}

/* Appointment Section */
.appointment-section {
  background: #f2f2f2; /* Matches site background */
  padding: 60px 20px;
  text-align: center;
}

.appointment-section h3 {
  color: #4d4d4d;
  font-size: 1.2rem;
  margin-bottom: 10px;
  font-weight: 500;
}

.appointment-section h2 {
  color: #222;
  font-size: 2rem;
  margin-bottom: 40px;
  font-weight: 700;
}

/* Form Container */
.hero-form {
  max-width: 600px;
  margin: auto;
  background: #fff;
  padding: 30px 20px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Form Elements */
.hero-form form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.hero-form select,
.hero-form input,
.hero-form textarea {
  padding: 12px 15px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.hero-form select:focus,
.hero-form input:focus,
.hero-form textarea:focus {
  border-color: #dcdcdc; 
  box-shadow: 0 2px 6px 0 #dcdcdc;
}

/* Textarea */
.hero-form textarea {
  min-height: 100px;
  resize: vertical;
}

/* Submit Button */
.hero-form button {
  padding: 12px;
  background-color: #343434; 
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  cursor: pointer;
  font-weight: 600;
  transition: background-color 0.3s, transform 0.2s;
}

.hero-form button:hover {
  background-color: #000;
  transform: translateY(-2px);
}

/* Gallery Section */
.ps-gallery {
  background-color: #f2f2f2;
  padding: 80px 20px;
  text-align: center;
}

.ps-gallery h2 {
  font-size: 2rem;
  color: #222;
  margin-bottom: 50px;
  position: relative;
}

.ps-gallery h2::after {
  content: '';
  display: block;
  width: 80px;
  height: 3px;
  background: #000;
  margin: 10px auto 0;
  border-radius: 2px;
}

/* Container */
.support-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: 0 auto;
  background: #fff;
  border-radius: 16px;
  padding: 40px 30px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

/* Left Side - Image */
.support-image {
  flex: 1 1 45%;
  text-align: center;
}

.support-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Right Side - Info */
.ps-support {
  flex: 1 1 45%;
  text-align: left;
}

.ps-support ul {
  list-style: none;
  padding: 0;
}

.ps-support li {
  margin-bottom: 18px;
  font-size: 1.05rem;
  line-height: 1.5;
  color: #333;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.ps-support li i {
  font-size: 1.3rem;
  min-width: 24px;
  margin-top: 3px;
}

/* ================================
   Panasonic Appliances Service Section
================================== */

.services {
  background-color: #f2f2f2;
  padding: 80px 20px;
  text-align: center;
}

.services h2 {
  font-size: 2rem;
  color: #222;
  margin-bottom: 50px;
  position: relative;
}

.services h2::after {
  content: "";
  display: block;
  width: 90px;
  height: 3px;
  background-color: #000000;
  margin: 12px auto 0;
  border-radius: 2px;
}

/* Each service block */
.service-block {
  background: #fff;
  margin: 30px auto;
  padding: 40px 30px;
  border-radius: 16px;
  max-width: 1100px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-block:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Service title */
.service-block h3 {
  font-size: 1.5rem;
  color: #000;
  margin-bottom: 20px;
  text-align: center;
}

/* Service content grid */
.service-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

/* Images */
.service-grid img {
  width: 100%;
  max-width: 400px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

/* Service list */
.service-grid ul {
  list-style: none;
  padding: 0;
  margin: 0;
  flex: 1;
}

.service-grid li {
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
  margin-bottom: 10px;
}

/* Paragraph below each service */
.service-block p {
  margin-top: 20px;
  font-size: 1rem;
  text-align: center;
}

.service-block a {
  color: #000000;
  text-decoration: none;
  font-weight: 600;
}

.service-block a:hover {
  text-decoration: underline;
}

/* ===========================
   Reach / Trust Section
=========================== */
.reach {
  background-color: #f2f2f2;
  padding: 80px 20px;
  text-align: center;
}

.reach h2 {
  font-size: 2rem;
  color: #222;
  margin-bottom: 40px;
  position: relative;
}

.reach h2::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background: #000000;
  margin: 10px auto 0;
  border-radius: 2px;
}

/* ---------- TRUST SECTION ---------- */
.trust {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto 60px;
  background: #fff;
  border-radius: 16px;
  padding: 40px 30px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
}

.trust img {
  width: 100%;
  max-width: 450px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.trust ul {
  list-style: none;
  padding: 0;
  text-align: left;
}

.trust li {
  font-size: 1.05rem;
  color: #333;
  margin-bottom: 10px;
  line-height: 1.6;
}

/* ---------- REACH OPTIONS ---------- */
/* Base layout */
.reach-options {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 30px;
  margin-top: 30px;
}

/* Make each box consistent */
.reach-box {
  background: #f8f8f8;
  border: 1px solid #ddd;
  border-radius: 12px;
  text-align: center;
  flex: 1;
  padding: 30px 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.reach-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.reach-box i {
  font-size: 2rem;
  color: #4d4d4d;
  margin-bottom: 10px;
}

.reach-box a {
  color: inherit;
  text-decoration: none;
  display: block;
}

.reach-box h3 {
  font-size: 1.3rem;
  color: #4d4d4d;
  margin-bottom: 10px;
}

.reach-box p {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #333;
}

.note {
  margin-top: 50px;
  font-size: 1rem;
  color: #444;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== Floating Toll-Free Button ===== */
.tollfree-btn {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background: linear-gradient(145deg, #4d4d4d, #dcdcdc);
  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);
}

/* ===========================
   Disclaimer Section
=========================== */
.disclaimer {
  background-color: #f8f8f8;
  padding: 40px 20px;
  text-align: center;
  color: #333;
  font-size: 0.95rem;
  line-height: 1.6;
  border-top: 1px solid #ddd;
}

.disclaimer strong {
  color: #000000;
}

.disclaimer a {
  color: #000000;
  text-decoration: none;
  font-weight: 700;
}

.disclaimer a:hover {
  text-decoration: underline;
}

/* ===========================
   Footer Section
=========================== */
footer {
  background-color: #d8d8d8;
  color: #000000;
  padding: 60px 20px 40px;
  text-align: center;
}

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 50px;
  margin-bottom: 40px;
}

.footer-column {
  display: flex;
  flex-direction: column;
  text-align: left;
  min-width: 160px;
}

.footer-column strong {
  font-size: 1.1rem;
  color: #000000;
  margin-bottom: 15px;
  display: inline-block;
  border-bottom: 2px solid #dcdcdc;
  padding-bottom: 5px;
}

.footer-column a {
  color: #4d4d4d;
  text-decoration: none;
  font-size: 0.95rem;
  margin: 6px 0;
  transition: color 0.3s ease;
}

.footer-column a:hover {
  color: #000000;
}

/* Copyright */
footer .copyright {
  font-size: 0.9rem;
  color: #000000;
  border-top: 2px solid rgba(0, 0, 0, 0.15);
  padding-top: 20px;
}

/* Responsive */
@media (max-width: 768px) {
  .nav-container {
    align-items: flex-start;
  }

  .menu-toggle {
    display: flex;
  }

  .logo {
    width: 100%;
    text-align: center;
  }

  .nav-links {
    display: none;
    width: 100%;
    background: #f2f2f2;
    text-align: center;
    margin-top: 10px;
  }

  .nav-links.active {
    display: block;
  }

  .nav-links ul {
    flex-direction: column;
  }

  .nav-links li {
    margin: 12px 0;
  }
  
  /* .hero {
    height: 100vh;
  } */

  .hero-text {
    transform: translateY(-5%);
    width: 90%;
    padding: 20px;
  }

  .hero-text h1 {
    font-size: 1.8rem;
  }

  .hero-text p {
    font-size: 1rem;
  }

  .appointment-section {
    padding: 40px 15px;
  }

  .hero-form {
    padding: 25px 15px;
  }

  .appointment-section h2 {
    font-size: 1.5rem;
  }

  .appointment-section h3 {
    font-size: 1rem;
  }

  .ps-gallery {
    padding: 60px 15px;
  }

  .ps-gallery h2 {
    font-size: 1.6rem;
    margin-bottom: 30px;
  }

  /* Stack image and info vertically */
  .support-container {
    flex-direction: column;
    align-items: center;
    gap: 25px;
    padding: 25px 20px;
  }

  .support-image {
    width: 100%;
    text-align: center;
  }

  .support-image img {
    width: 90%;
    max-width: 400px;
    border-radius: 10px;
  }

  .ps-support {
    width: 100%;
    text-align: center;
  }

  .ps-support ul {
    text-align: left;
    display: inline-block;
  }

  .ps-support li {
    font-size: 0.95rem;
    line-height: 1.4;
    margin-bottom: 15px;
  }

  .ps-support li i {
    font-size: 1.1rem;
  }

  .services {
    padding: 60px 15px;
  }

  .services h2 {
    font-size: 1.6rem;
    margin-bottom: 35px;
  }

  .service-block {
    padding: 25px 20px;
  }

  .service-grid {
    flex-direction: column;
    text-align: center;
  }

  .service-grid img {
    max-width: 90%;
  }

  .service-grid ul {
    text-align: left;
    width: 100%;
    margin-top: 15px;
  }

  .service-grid li {
    font-size: 0.95rem;
    margin-bottom: 8px;
  }

  .service-block h3 {
    font-size: 1.3rem;
  }

  .service-block p {
    font-size: 0.95rem;
  }

  .reach {
    padding: 60px 15px;
  }

  .reach h2 {
    font-size: 1.6rem;
    margin-bottom: 30px;
  }

  /*  Stack trust section vertically */
  .trust {
    flex-direction: column;     /* Stack image and list */
    align-items: center;        /* Center align horizontally */
    text-align: center;         /* Center text for smaller screens */
    padding: 25px 20px;
    gap: 20px;
  }

  .trust img {
    max-width: 90%;
    border-radius: 10px;
  }

  .trust ul {
    text-align: left;           /* Keep list aligned properly */
    padding-left: 0;
    margin: 0 auto;
    display: inline-block;      /* Keeps list centered neatly */
  }

  .trust li {
    font-size: 0.95rem;
    margin-bottom: 8px;
    line-height: 1.5;
  }

  /*  Adjust reach boxes for mobile */
  .reach-options {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
  }

  .reach-box {
    width: 90%;
    max-width: 400px;
  }

  .reach-box i {
    font-size: 1.8rem;
  }

  .reach-box h3 {
    font-size: 1.1rem;
  }

  .reach-box p {
    font-size: 0.95rem;
  }

  .note {
    font-size: 0.95rem;
    margin-top: 35px;
  }
  
  .footer-links {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 25px;
  }

  .footer-column {
    text-align: center;
  }

  .footer-column strong {
    font-size: 1rem;
  }

  .footer-column a {
    font-size: 0.9rem;
  }

  .disclaimer {
    font-size: 0.9rem;
    padding: 30px 15px;
  }
}

.back-home {
  text-align: center;
  margin: 30px 0 10px;
}
.back-home a {
  display: inline-block;
  background:#333;
  color: #FFF;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.back-home a:hover {
  background:#000;
  color: #FFF;
}
.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;
  font-size: 25px;
}

.faq-item {
  margin-bottom: 20px;
}


@media (max-width: 768px) {
  .common-content {
    padding: 20px 15px;
  }
  .common-header {
    padding: 30px 10px;
  }
}