/* === Custom Samsung Fonts === */
@font-face {
  font-family: 'SamsungOne';
  src: url('../fonts/SamsungOne-400.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'SamsungOne';
  src: url('../fonts/SamsungOne-700.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: 'SamsungSharpSans';
  src: url('../fonts/SamsungSharpSansMd.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'SamsungSharpSans';
  src: url('../fonts/SamsungSharpSansBd.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
}

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family:'SamsungOne',arial,sans-serif
}

/* Colors */
:root {
  --primary: #006BEA;   
  --dark: #000000;
  --light: #fff;
  --gray: #f5f5f5;
}

body {
  color: var(--dark);
  background: var(--light);
  line-height: 1.6;
}

/* Header */
header {
  background: var(--light);
  padding: 15px 0;
  border-bottom: 1px solid #ddd;
  position: sticky;
  top: 0;
  z-index: 1000;
}

header .container {
  width: 90%;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 50px; /* space between logo block and nav */
  flex-wrap: nowrap;
}
.logo img {
  height: 20px;     /* adjust to your logo size */
  width: auto;      /* keeps aspect ratio */
  display: block;
}

.logo {
  letter-spacing: 1px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
} 
.logo h4 {
  font-size: 0.85rem;
  color: var(--dark);
  font-weight: 600;
  margin-top: 5px;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 20px;
}

nav ul li a {
  text-decoration: none;
  color: var(--dark);
  font-weight: 700;
  transition: color 0.3s;
}

nav ul li a:hover {
  color: var(--primary);
}

/* Mobile Menu */
.menu-toggle{
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
  }


/* Hero Section */
.hero {
  background: url("../images/pc-hero.png") no-repeat center center/cover;
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--light);
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
}

.hero-text {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 0 20px;
}

.hero-text h1 {
  font-size: 3rem;
  margin-bottom: 15px;
  font-weight: 700;
}

.hero-text p {
  font-size: 1.2rem;
  line-height: 1.5;
}

/* ==== Service Form ==== */
.appointment-section {
  background-color: #eeeff0;
  color: #000000;
  padding: 40px 20px;
}

.appointment-section h2,
.appointment-section h3 {
  text-align: center;
  margin-bottom: 20px;
}

.hero-form form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.hero-form select,
.hero-form input,
.hero-form textarea,
.hero-form button {
  padding: 12px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 5px;
  background-color: #fff;
  color: #000;
}

.hero-form textarea {
  resize: vertical;
  min-height: 80px;
}

.hero-form button {
  background-color: #000000;
  color: #eeeff0;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.hero-form button:hover {
  background-color: #333333;
}

.ss-gallery {
  background: #ffffff;
  padding: 60px 20px;
}

.ss-gallery h2{
  text-align: center;
  font-size: 36px;
  letter-spacing: 1px;
  margin-bottom: 40px;
  color: #000000; 
}

.support-container {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

/* --- Image Block --- */
.support-image {
  flex: 1 1 45%;
  display: flex;
  justify-content: center;
  align-items: stetch;
}

.support-image img {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  object-fit: cover;
}

.ss-support {
  flex: 1 1 45%;
  background-color: #f4f6f8;
  padding: 30px 25px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.ss-support ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.ss-support li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 18px;
  line-height: 1.5;
  color: #222;
}

.ss-support i {
  font-size: 22px;
  flex-shrink: 0;
  margin-top: 3px;
}

/* =========================
   SAMSUNG Appliances Service Section
   ========================= */
.services {
  padding: 60px 20px;
  background: #f7f9fc;
  color: #222;
  text-align: center;
}

.services h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #000000;
  margin-bottom: 40px;
  position: relative;
}

.service-block {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  margin-bottom: 40px;
  padding: 30px;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-block:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.service-block h3 {
  color: #000000;
  font-size: 1.4rem;
  margin-bottom: 20px;
  border-left: 4px solid #000000;
  padding-left: 10px;
}

.service-grid {
  display: flex;
  align-items: flex-start;
  gap: 25px;
  margin-bottom: 15px;
}

.service-grid img {
  width: 220px;
  height: 150px;
  object-fit: cover;
  border-radius: 12px;
  border: 2px solid #e2e8f0;
}

.service-grid ul {
  list-style: none;
  padding: 0;
  margin: 0;
  line-height: 1.8;
  color: #333;
}

.service-grid ul li {
  font-size: 1rem;
}

.service-block p {
  font-size: 1rem;
  margin-top: 10px;
  line-height: 1.6;
}

.service-block a {
  color: #343434;
  font-weight: 700;
  text-decoration: none;
}

.service-block a:hover {
  text-decoration: underline;
}

/* Reach Section */
.reach {
  padding: 60px 20px;
  text-align: center;
  background: #f9f9f9;
  color: #222;
}

.reach h2 {
  font-size: 2rem;
  color: #000000;
  margin-bottom: 30px;
  font-weight: 600;
}

/* Trust section */
.trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.trust img {
  width: 350px;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.trust ul {
  list-style: none;
  padding-left: 0;
  text-align: left;
  max-width: 400px;
}

.trust ul li {
  margin-bottom: 12px;
  font-size: 1.05rem;
  background: #fff;
  padding: 10px 15px;
  border-left: 4px solid #000000;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

/* Reach Options */
.reach-options {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 25px;
}

.reach-box {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.08);
  padding: 25px 20px;
  width: 280px;
  transition: all 0.3s ease;
}

.reach-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 14px rgba(0,0,0,0.15);
}

.reach-box i {
  font-size: 2rem;
  color: #000;
  margin-bottom: 10px;
}

.reach-box h3 {
  color: #222;
  margin-bottom: 10px;
}

.reach-box p {
  color: #555;
  font-size: 0.95rem;
}

.reach-box a {
  text-decoration: none;
  color: inherit;
}

.note{
  color:#000000;
  font-weight: 500;
  font-style:italic;
}

/* Disclaimer Section */
.disclaimer {
  background: #f8f9fa;
  color: #333;
  text-align: center;
  padding: 30px 20px;
  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: 500;
}

.disclaimer a:hover {
  text-decoration: underline;
}

/* Footer */
footer {
  background: #000000; /* deep navy-blue to match brand */
  color: #fff;
  padding: 50px 20px 20px;
  margin-top: 0;
}

.footer-links {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: 0 auto 30px;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 200px;
}

.footer-column strong {
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 10px;
  display: inline-block;
  padding-bottom: 4px;
}

.footer-column a {
  color: #d1d1d1;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.footer-column a:hover {
  color: #007bff;
}

/* Copyright Bar */
footer .copyright {
  text-align: center;
  font-size: 0.9rem;
  color: #aaa;
  padding-top: 15px;
  border-top: 1px solid rgba(255,255,255,0.15);
}
/* ===== Floating Toll-Free Button ===== */
.tollfree-btn {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background: linear-gradient(145deg, #000000, #1a1a1a);
  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) {
  nav ul {
    display: none;
    flex-direction: column;
    background: var(--light);
    position: absolute;
    top: 60px;
    right: 0;
    width: 200px;
    padding: 20px;
    border-left: 1px solid #ddd;
  }
  nav ul.showing {
    display: flex;
  }
  .menu-toggle {
    display: block;
    position:absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
  }
  .hero {
    height: 70vh;
  }
  .hero-text h1 {
    font-size: 2rem;
  }
  .hero-text p {
    font-size: 1rem;
  }
  .appointment-section {
    padding: 30px 15px;
  }
  .hero-form form {
    width: 100%;
    padding: 0 10px;
  }
  .hero-form input,
  .hero-form select,
  .hero-form textarea,
  .hero-form button {
    font-size: 15px;
  }
  .ss-gallery h2{
    font-size: 26px;
  }
  .support-container {
    flex-direction: column;
    align-items: center;
    text-align: left;
    gap:25px;
  }
  .support-image img {
    max-width: 90%;
    height: auto;
  }
  .ss-support {
    width: 100%;
    max-width: 500px;
    padding: 25px 20px;
  }
  .ss-support li {
    font-size: 16px;
  }
  .ss-support i {
    font-size: 20px;
    margin-top: 4px;
  }
  .services {
    padding: 40px 15px;
  }
  .service-grid {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .service-grid img {
    width: 100%;
    height: auto;
    max-width: 340px;
    border-radius: 12px;
  }
  .service-block {
    padding: 20px;
  }
  .service-block h3 {
    font-size: 1.2rem;
    text-align: center;
    border-left: none;
    border-bottom: 3px solid #000000;
    display: inline-block;
    padding-bottom: 5px;
  }
  .service-grid ul {
    margin-top: 15px;
    padding-left: 0;
    text-align: left; /* keeps bullet text nicely aligned */
    display: inline-block; /* centers the whole list block */
  }
  .service-grid ul li {
    font-size: 0.95rem;
    line-height: 1.6;
  }
  .service-block p {
    text-align: center;
  }
  .reach h2 {
    font-size: 1.6rem;
  }
  .trust {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .trust ul {
    text-align: left;
    display: inline-block;
    margin-top: 20px;
  }
  .reach-options {
    flex-direction: column;
    align-items: center;
  }
  .reach-box {
    width: 90%;
    max-width: 340px;
  }
  .footer-links {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-column strong {
    margin-bottom: 8px;
  }

  .footer-column a {
    font-size: 1rem;
  }
}
  .back-home {
  text-align: center;
  margin: 30px 0 10px;
}
.back-home a {
  display: inline-block;
  background: #000;;
  color:#fff;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.back-home a:hover {
  background:#aaa;
  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;
  }
}