/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Noto Serif TC", "Noto Sans TC", sans-serif;
  line-height: 1.8;
  color: #1a1a1a;
  scroll-behavior: smooth;
  background-color: #fafaf8;
}

/* Color Variables */
:root {
  --main-color: rgba(0, 0, 0, 0.48);
  --main-color-light: rgba(0, 0, 0, 0.32);
  --main-color-dark: rgba(0, 0, 0, 0.64);
  --accent-color: rgba(0, 0, 0, 0.72);
  --text-light: #ffffff;
  --text-dark: #333333;
  --bg-light: #f8f9fa;
  --bg-dark: rgba(0, 0, 0, 0.08);
  --border-color: rgba(0, 0, 0, 0.16);
}

/* Top Bar */
.top-bar {
  background-color: var(--main-color);
  color: var(--text-light);
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 248, 220, 0.2);
}

.top-bar-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: right;
}

.top-bar-link {
  color: var(--text-light);
  text-decoration: none;
  margin: 0 10px;
  transition: color 0.3s;
}

.top-bar-link:hover {
  color: #ecf0f1;
}

.top-bar-link i {
  margin-right: 5px;
}

/* Navbar */
.fixed-navbar {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1000;
  background-color: var(--text-light);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.navbar {
  background-color: var(--text-light);
  padding: 15px 20px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 1000;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.5rem;
  font-weight: 700;
}

.logo a {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-image {
  height: 40px;
  width: auto;
  border-radius: 4px;
}

.logo-text-container {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.logo-text {
  font-family: "Noto Serif TC", serif;
  color: black;
  line-height: 1.2;
}

.logo-text:last-child {
  font-size: 0.5em;
}

.logo:hover {
  transform: scale(1.05);
}

.logo .icon {
  display: inline-block;
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, #007bff, #0056b3);
  color: #fff;
  text-align: center;
  line-height: 32px;
  border-radius: 50%;
  margin-right: 8px;
}

.nav-links {
  display: flex;
  list-style: none;
}

.nav-links li {
  margin: 0 20px;
  position: relative;
}

.nav-links a {
  text-decoration: none;
  color: var(--main-color);
  font-size: 16px;
  font-weight: 500;
  transition: color 0.3s, transform 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--accent-color);
  display: inline-block;
}

.dropdown .dropbtn {
  display: flex;
  align-items: center;
}

.dropdown .dropbtn i {
  margin-left: 5px;
  font-size: 12px;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #fff;
  min-width: 150px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  z-index: 1;
  top: 100%;
  left: 0;
}

.dropdown-content a {
  display: block;
  padding: 12px 15px;
  color: #555;
  font-size: 14px;
  transition: background-color 0.3s, color 0.3s;
}

.dropdown-content a:hover {
  background-color: #f5f7fa;
  color: #007bff;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.social-icons a {
  margin: 0 12px;
  color: #007bff;
  font-size: 20px;
  text-decoration: none;
  transition: transform 0.3s, color 0.3s;
}

.social-icons a:hover {
  transform: scale(1.2);
  color: #0056b3;
}

.menu-toggle {
  display: none;
  font-size: 24px;
  color: #333;
  cursor: pointer;
}

.underline {
  width: 60px;
  height: 3px;
  background-color: var(--main-color);
  margin: 0 auto 50px;
  border-radius: 2px;
}

.services-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem;
}

/* General h2 Style */
h2 {
  font-size: 30px;
  color: var(--text-dark);
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 1px;
  margin-bottom: 30px;
  font-family: "Noto Serif TC", serif;
}

/* Section Specific h2 Styles */
.services h2,
.process h2,
.advantages h2,
.why-choose-us h2,
.testimonials h2,
.faq h2,
.contact-section h2,
.category-section h2 {
  text-align: center;
  position: relative;
  padding-bottom: 15px;
}

.services h2::after,
.process h2::after,
.advantages h2::after,
.why-choose-us h2::after,
.testimonials h2::after,
.faq h2::after,
.contact-section h2::after,
.category-section h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: var(--main-color);
  border-radius: 2px;
}

.service-item {
  background: #fff;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.service-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.hexagon {
  position: relative;
  width: 80px;
  height: 92px;
  background: linear-gradient(135deg, #4a90e2, #357abd);
  margin: 0 auto 25px;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  box-shadow: 0 -5px 10px rgba(0, 0, 0, 0.2), 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.service-item:hover .hexagon {
  transform: rotate(15deg);
}

.hexagon i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 28px;
}

.service-item h3 {
  font-size: 22px;
  color: #333;
  margin-bottom: 15px;
  font-weight: 600;
}

.service-item p {
  font-size: 15px;
  color: #777;
  margin-bottom: 25px;
  line-height: 1.6;
}

.service-item button {
  background: linear-gradient(90deg, #007bff, #0056b3);
  color: #fff;
  border: none;
  padding: 12px 25px;
  border-radius: 25px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  transition: background 0.3s, transform 0.3s;
}

.service-item button:hover {
  background: linear-gradient(90deg, #0056b3, #003d82);
  transform: scale(1.05);
}

/* Banner Section */
.banner {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 0;
}

.banner-image {
  width: 100%;
  height: 100vh;
  object-fit: cover;
  display: block;
}

/* Banner Section */
.banner {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 0;
  min-height: 100vh;
}

.banner-image {
  position: absolute;
  width: 100%;
  height: 100vh;
  object-fit: cover;
  z-index: 0;
}

.banner::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 0; /* Adjusted */
}

.banner-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  width: 90%;
  max-width: 1200px;
  z-index: 2;
  position: relative;
  gap: 2rem;
}

/* Banner Text */
.banner-text {
  text-align: center;
  max-width: 600px;
  margin: auto;
}

.banner-form h1,
.banner-text h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 2rem;
  line-height: 1.2;
  color: #fff8dc;
  text-align: center;
}

.banner-description {
  font-size: 1.2rem;
  margin: 1.5rem 0;
  font-weight: 500;
}

/* Banner Features */
.banner-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin: 2rem auto;
  max-width: 1200px;
}

.features-column {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  color: white;
}

.banner-features span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.1rem;
  padding: 0.8rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  transition: background 0.3s;
}

.banner-features span:hover {
  background: rgba(255, 255, 255, 0.2);
}

.banner-features i {
  font-size: 1.2rem;
  width: 24px;
  text-align: center;
}

.banner-cta {
  margin-top: 2rem;
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.cta-button {
  padding: 1rem 2rem;
  border-radius: 50px;
  font-size: 1.2rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta-button.primary {
  background-color: var(--main-color);
  color: var(--text-light);
  border: 2px solid var(--main-color);
}

.cta-button.primary:hover {
  background-color: var(--main-color-dark);
  border-color: var(--main-color-dark);
}

.cta-button.secondary {
  background-color: transparent;
  color: var(--main-color);
  border: 2px solid var(--main-color);
}

.cta-button.secondary:hover {
  background-color: var(--main-color);
  color: var(--text-light);
}

.video-section {
  padding: 80px 0;
  background: linear-gradient(to bottom, var(--bg-light), #fff);
}

.video-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.video-wrapper {
  width: 100%;
  max-width: 800px;
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.video-wrapper video {
  width: 100%;
  display: block;
  border-radius: 15px;
}

.video-content {
  text-align: center;
  max-width: 600px;
}

.video-content h2 {
  font-size: 2rem;
  color: var(--text-dark);
  margin-bottom: 1rem;
  font-family: "Noto Serif TC", serif;
}

.video-content p {
  font-size: 1.1rem;
  color: var(--main-color);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.video-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 30px;
  background-color: var(--main-color);
  color: var(--text-light);
  text-decoration: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.video-cta:hover {
  background-color: var(--main-color-dark);
  transform: translateY(-2px);
}

.video-cta i {
  font-size: 1.2rem;
}

/* Video poster (thumbnail) styles */
.video-wrapper video[poster] {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.image-section {
  padding: 60px 0;
  background: linear-gradient(to bottom, #fff, var(--bg-light));
  overflow: hidden;
}

.image-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.image-item {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
  display: block;
}

.image-item:hover {
  transform: scale(1.02);
}

.trust-section {
  padding: 80px 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.02),
    rgba(0, 0, 0, 0.08)
  );
  border-top: 2px solid var(--border-color);
  border-bottom: 2px solid var(--border-color);
}

.trust-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.trust-item {
  text-align: center;
  padding: 40px 30px;
  background: var(--text-light);
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
}

.trust-item:hover {
  transform: translateY(-10px);
}

.trust-item i {
  font-size: 3rem;
  color: var(--main-color);
  margin-bottom: 20px;
}

.trust-item h3 {
  font-family: "Noto Serif TC", serif;
  font-size: 1.5rem;
  color: #1a1a1a;
  margin-bottom: 15px;
}

.trust-item p {
  color: #666;
  font-size: 1.1rem;
  line-height: 1.6;
}

.resources {
  padding: 60px 20px;
  background: #fff;
}

.resources-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.resources-columns {
  display: flex;
  gap: 20px;
}

.resources-columns a {
  text-decoration: none;
}

.resources-column {
  flex: 1;
}

.resources-column h3 {
  font-size: 24px;
  color: #333;
  margin-bottom: 20px;
  font-weight: 600;
}

.resources-items {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.resource-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.resource-image {
  max-width: 30rem;
  border-radius: 30px;
  object-fit: cover;
}

.resource-image-placeholder {
  width: 8px;
  height: 8px;
  background: #007bff;
  border-radius: 50%;
}

.resource-text {
  font-size: 16px;
  color: #555;
}

.column-items {
  display: flex;
  gap: 15px;
  padding-bottom: 5rem;
}

/* Footer Styles */
.site-footer {
  background-color: #1a1a1a;
  color: var(--text-light);
  padding: 60px 0 30px;
  margin-top: 60px;
}

.footer-info {
  text-align: center;
  max-width: 300px;
  margin: 0 auto;
}

.footer-info h3 {
  margin-bottom: 15px;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-light);
}

.footer-info p {
  margin: 8px 0;
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
}

.footer-bottom {
  grid-column: 1 / -1;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  text-align: center;
  margin-top: 20px;
}

.footer-bottom p {
  font-size: 0.9rem;
  opacity: 0.8;
  color: rgba(255, 255, 255, 0.8);
}

.copyright {
  color: #888888;
  font-size: 0.9rem;
}

.trust-indicators {
  display: flex;
  gap: 20px;
}

.trust-indicators span {
  color: #cccccc;
  display: flex;
  align-items: center;
  font-size: 0.9rem;
}

.trust-indicators i {
  margin-right: 8px;
  color: #4a90e2;
}

.phone-icon:hover {
  fill: white;
}

.contact-section h2 {
  font-size: 30px;
  color: #333;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 1px;
}

.contact-description {
  font-size: 20px;
  color: #333;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 1px;
}

.buttons-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin: 20px 0;
}

.button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 144px;
  height: 44px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  border: none;
  background-color: var(--main-color);
  color: var(--text-light);
}

.call-button {
  color: #2196f3;
  border: 1px solid #ccc;
  background-color: transparent;
}

.call-button:hover {
  color: white;
  transform: translateY(-2px);
  background-color: #2196f3;
}

.line-button {
  color: #06c755;
  border: 1px solid #ccc;
  background-color: transparent;
}

.line-button:hover {
  color: white;
  transform: translateY(-2px);
  background-color: #06c755;
}

.button-icon {
  width: 20px;
  height: 20px;
  margin-right: 8px;
  fill: white;
}

/* Process Section Styles */
.process {
  padding: 60px 20px;
  text-align: center;
}

.process h2 {
  font-size: 30px;
  color: #333;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 1px;
}

.process-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.process-steps {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}

.process-step {
  flex: 1;
  min-width: 250px;
  padding: 30px;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.process-step:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.step-number {
  width: 50px;
  height: 50px;
  background-color: var(--main-color);
  color: var(--text-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 15px;
  margin: 0 auto;
}

.process-step h3 {
  font-size: 1.3rem;
  color: #333;
  margin-bottom: 10px;
}

.process-step p {
  font-size: 1rem;
  color: #666;
}

/* Advantages Section Styles */
.advantages {
  padding: 60px 20px;
  background: #f9f9f9;
  text-align: center;
}

.advantages h2 {
  font-size: 30px;
  color: #333;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 1px;
}

.advantages-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.advantage-item {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}

.advantage-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.12);
}

.advantage-number {
  width: 40px;
  height: 40px;
  background: #28a745;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 10px;
  margin: 0 auto;
}

.advantage-item p {
  font-size: 1rem;
  color: #555;
  margin: 5px 0;
}

/* Floating Contact */
.floating-contact {
  position: fixed;
  right: 20px;
  bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 1000;
}

.floating-phone,
.floating-line {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: white;
  text-decoration: none;
  transition: transform 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.floating-phone {
  background: var(--main-color);
}

.floating-line {
  background: #06c755;
}

.floating-phone:hover,
.floating-line:hover {
  transform: scale(1.1);
}

/* Emergency Service */
.emergency-service {
  background: linear-gradient(
    135deg,
    var(--main-color-light) 0%,
    var(--main-color) 100%
  );
  padding: 2rem 0;
  color: var(--text-light);
}

.emergency-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.emergency-content {
  text-align: center;
}

.emergency-content i {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.emergency-content h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.emergency-content p {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

.emergency-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background-color: var(--text-light);
  color: var(--main-color);
  text-decoration: none;
  border-radius: 50px;
  font-size: 1.2rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.emergency-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Why Choose Us */
.why-choose-us {
  padding: 60px 20px;
  background: #f9f9f9;
}

.why-choose-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.why-choose-item {
  background: white;
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.why-choose-item:hover {
  transform: translateY(-5px);
}

.why-choose-item i {
  font-size: 2.5rem;
  color: var(--main-color);
  margin-bottom: 1rem;
}

.why-choose-item h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: #333;
}

.why-choose-item p {
  color: #666;
  line-height: 1.6;
}

/* Testimonials */
.testimonials {
  padding: 60px 20px;
  background: #fff;
}

.testimonials-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.testimonial-item {
  background: #f9f9f9;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--border-color);
}

.testimonial-rating {
  color: #ffd700;
  margin-bottom: 1rem;
}

.testimonial-text {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.testimonial-author {
  color: #666;
  font-style: italic;
}

/* FAQ Section */
.faq {
  padding: 60px 20px;
  background: #f9f9f9;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  border-radius: 10px;
  margin-bottom: 1rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.faq-question {
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: background-color 0.3s ease;
  border-bottom: 1px solid var(--border-color);
}

.faq-question:hover {
  background-color: var(--bg-dark);
}

.faq-question h3 {
  margin: 0;
  font-size: 1.1rem;
  color: #333;
}

.faq-question i {
  color: var(--main-color);
  transition: transform 0.3s ease;
}

.faq-answer {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer p {
  padding-bottom: 1.5rem;
  color: #666;
  line-height: 1.6;
}

/* Social Proof */
.social-proof {
  display: flex;
  justify-content: center;
  gap: 4rem;
  margin: 2rem 0;
  background-color: var(--bg-light);
}

.proof-item {
  text-align: center;
  border: 1px solid var(--border-color);
}

.proof-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--main-color);
  display: block;
  margin-bottom: 0.5rem;
}

.proof-item p {
  color: #666;
  font-size: 1.1rem;
}

/* Category Navigation */
.category-section {
  padding: 60px 20px;
  background: #fff;
}

.category-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
  max-width: 1200px;
  margin: 0 auto 40px;
}

.category-tab {
  padding: 12px 24px;
  border: 1px solid var(--border-color);
  background: transparent;
  color: var(--main-color);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 50px;
}

.category-tab:hover {
  background-color: var(--bg-dark);
}

.category-tab.active {
  background-color: var(--main-color);
  color: var(--text-light);
  border-color: var(--main-color);
}

/* Category Content */
.category-content {
  max-width: 1200px;
  margin: 0 auto;
}

.category-panel {
  display: none;
  animation: fadeIn 0.5s ease;
}

.category-panel.active {
  display: block;
}

.category-details {
  display: flex;
  gap: 40px;
  align-items: center;
  padding: 20px;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.category-info {
  flex: 1;
  padding: 20px;
}

.category-info h3 {
  font-size: 2rem;
  color: #333;
  margin-bottom: 1rem;
}

.category-info p {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.feature-list {
  list-style: none;
  margin-bottom: 2rem;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1rem;
  font-size: 1.1rem;
  color: #333;
}

.feature-list i {
  color: var(--main-color);
}

.category-image {
  flex: 1;
  max-width: 500px;
}

.category-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.category-cta {
  margin-top: 2rem;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Footer Styles */
.footer {
  background-color: var(--main-color);
  color: var(--text-light);
  padding: 20px 0;
  text-align: center;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-content {
  display: block;
}

.footer p {
  font-size: 14px;
}

.footer-social a {
  margin: 0 10px;
  color: #fff;
  font-size: 18px;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-social a:hover {
  color: #007bff;
}

.carousel-section {
  padding: 60px 0;
  background: var(--bg-light);
}

.carousel-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.carousel-slide {
  flex: 0 0 100%;
  position: relative;
}

.carousel-slide img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 10px;
}

.carousel-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 20px;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}

.carousel-caption h3 {
  margin: 0 0 10px 0;
  font-size: 1.5rem;
  font-weight: 600;
}

.carousel-caption p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.5;
}

.carousel-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.8);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.carousel-button:hover {
  background: white;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.carousel-button.prev {
  left: 20px;
}

.carousel-button.next {
  right: 20px;
}

.carousel-indicators {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}

.carousel-indicator {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-indicator.active {
  background: white;
  transform: scale(1.2);
}

.form-map-container {
  display: flex;
  justify-content: center;
  gap: 2rem;
  padding: 15px;
}

.form-container {
  background-color: white;
  padding: 20px;
  border-radius: 10px;
  width: 350px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
  margin: 0 auto;
}
.form-container h2 {
  text-align: center;
  color: #000;
}
.form-group {
  margin-bottom: 15px;
}
label {
  font-weight: bold;
}
input,
select,
textarea {
  width: 100%;
  padding: 8px;
  margin-top: 5px;
  border: 1px solid #ccc;
  border-radius: 5px;
}
.submit-btn {
  background-color: var(--main-color);
  color: white;
  border: none;
  font-weight: 700;
  padding: 10px;
  width: 100%;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
  transition: 0.2s ease-in-out;
}
.submit-btn:hover {
  background-color: var(--main-color-dark);
}

.contact-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin: 30px 0;
}

.contact-button {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 30px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact-button i {
  margin-right: 8px;
}

.email-button {
  background-color: #2196f3;
  color: white;
}

.email-button:hover {
  background-color: #1976d2;
  transform: translateY(-2px);
}

.line-button {
  background-color: #06c755;
  color: white;
}

.line-button:hover {
  background-color: #05a847;
  transform: translateY(-2px);
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .banner-text h1 {
    font-size: 2.5rem;
  }

  .banner-features {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

@media (max-width: 1024px) {
  .services-container {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-section {
    padding: 20px;
  }

  .trust-container {
    padding: 0;
    gap: 10px;
  }

  .footer-columns {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 992px) {
  .banner-image {
    height: 90vh;
  }
  .banner-form h1,
  .banner-text h1 {
    font-size: 2rem;
    margin-top: 3rem;
  }

  .banner-features span {
    grid-template-columns: 1fr;
    font-size: 1rem;
  }

  .banner-description {
    font-size: 1.1rem;
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    background: #fff;
    padding: 15px 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links li {
    margin: 15px 0;
    text-align: center;
  }

  .image-section {
    padding: 40px 0;
  }

  .image-container {
    padding: 0 15px;
  }

  .image-item {
    border-radius: 15px;
  }

  .banner {
    margin-top: 0;
    padding-top: 0;
  }

  .banner-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .banner-form {
    margin: 0 auto;
  }

  .banner-image {
    height: 135vh;
  }

  .banner-text {
    top: 60%;
    width: 100%;
    padding: 15px;
  }

  .banner-text h1 {
    font-size: 1.8rem;
    margin-top: 0;
    margin-bottom: 1.5rem;
  }

  .banner-features {
    grid-template-columns: repeat(2, 1fr);
  }

  .features-column {
    gap: 0.8rem;
  }

  .banner-features span {
    font-size: 0.9rem;
    padding: 0.6rem;
  }

  .banner-description {
    font-size: 1rem;
    margin: 1.5rem 0;
  }

  .banner-cta {
    flex-direction: column;
    gap: 0.8rem;
    margin-top: 1.5rem;
  }

  .cta-button {
    width: 100%;
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    min-width: unset;
  }

  .contact-section {
    padding: 20px;
  }

  .social-proof {
    flex-direction: column;
    gap: 2rem;
  }

  .trust-container {
    padding: 0;
    gap: 10px;
  }

  .trust-indicators {
    justify-content: center;
    flex-wrap: wrap;
  }

  .footer-container {
    grid-template-columns: 1fr;
    padding: 0;
  }

  .footer-info {
    max-width: 100%;
    padding: 0 20px;
  }

  .footer-columns {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .banner-image {
    height: 135vh;
  }

  .banner-container {
    grid-template-columns: 1fr;
  }

  .banner-text {
    padding: 0px;
  }

  .banner-form h1,
  .banner-text h1 {
    font-size: 1.5rem;
    margin-top: 0;
  }

  .banner-features {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  .banner-features i {
    font-size: 1rem;
    width: 20px;
  }

  .banner-features span {
    font-size: 0.85rem;
    padding: 0.5rem;
  }

  .banner-description {
    font-size: 0.9rem;
    margin: 1rem 0;
  }

  .trust-section {
    padding: 20px 0;
    margin-top: 50px;
  }

  .trust-container {
    grid-template-columns: 1fr;
    padding: 0px;
  }
}

/* Fix for very tall screens */
@media (min-height: 1000px) {
  .banner-image {
    height: 80vh;
  }
}

/* Fix for very short screens */
@media (max-height: 600px) {
  .banner-image {
    height: 135vh;
  }

  .banner-features {
    gap: 0.6rem;
    margin: 1rem auto;
  }

  .banner-description {
    margin: 0.8rem 0;
  }
}

/* Notification Dialog Styles */
.notification-dialog {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  max-width: 400px;
  width: 90%;
  text-align: center;
}

.notification-dialog.show {
  display: block;
  animation: fadeIn 0.3s ease-in-out;
}

.notification-dialog h3 {
  margin-bottom: 15px;
  font-size: 1.5rem;
}

.notification-dialog p {
  margin-bottom: 20px;
  line-height: 1.6;
}

.notification-dialog .close-btn {
  background-color: var(--main-color);
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1rem;
  transition: background-color 0.3s;
}

.notification-dialog .close-btn:hover {
  background-color: var(--main-color-dark);
}

.notification-dialog.success h3 {
  color: #28a745;
}

.notification-dialog.error h3 {
  color: #dc3545;
}

.notification-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 999;
}

.notification-overlay.show {
  display: block;
  animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
