/* Reset dan Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Cormorant Garamond", serif;
  line-height: 1.6;
  color: #333;
  text-transform: capitalize;
}

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

/* Header */
.header {
  background: transparent;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.3s ease;
}

.header.home {
  position: relative;
}

.bg-hero-home {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  width: 1100px;
  height: 765px;
  background-image: url(assets/images/hero-bg.png);
  background-size: 100%;
  background-position: top;
  background-repeat: no-repeat;
  z-index: 2;
  transition: all 0.1s ease;
}

.header.scrolled {
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 1) 0%,
    rgba(53, 51, 205, 1) 100%
  );
  box-shadow: 0 4px 20px rgba(30, 58, 138, 0.3);
  position: fixed;
}
.header.scrolled.page {
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 1) 0%,
    rgba(53, 51, 205, 1) 100%
  );
  box-shadow: 0 4px 20px rgba(30, 58, 138, 0.3);
  position: fixed;
}

.header.scrolled:before {
  opacity: 0;
  height: 0;
  top: -100%;
}

.header.page {
  background: transparent;
  box-shadow: none;
}

.header.page .logo-text-image-white {
  display: block;
}

.header.page .logo-text-image {
  display: none;
}

.header.page .logo-image {
  display: none;
}

.header.page .logo-image-white {
  display: block;
}

.header.page .subtagline-secondary {
  color: #fff;
  font-size: 12px;
  position: absolute;
  bottom: 0;
  width: 100%;
  display: none;
}

/* .header.scrolled .nav a {
  color: white;
} */

.header .nav a:hover {
  background-color: #ff6b35;
}

/* .header.scrolled .nav ul.dropdown-menu a {
  color: #001b3d;
} */

.header.scrolled .nav ul.dropdown-menu a:hover {
  background-color: #ff6b35;
  color: #fff;
}

.header.scrolled .logo-image {
  display: none;
}

.header.scrolled .logo-image-white {
  display: block;
}

.header.scrolled .logo-text-image {
  display: none;
}

.header.scrolled .logo-text-image-white {
  display: block;
}

.header.scrolled .logo-text .subtagline {
  color: #ff6b35;
}

.header.scrolled .logo-text .subtagline-secondary {
  color: white;
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 20px;
  position: relative;
  z-index: 2;
}

.container .nav {
  position: absolute;
  top: 15px;
  right: 0;
}

.logo {
  display: flex;
  align-items: center;
}

.logo-link {
  text-decoration: none;
  color: inherit;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
}

.logo-text > div {
  position: relative;
  padding-left: 100px;
}

.logo-text div div {
  position: absolute;
  top: -10px;
  left: 0;
}

.logo-image {
  height: 100px;
  width: auto;
  display: block;
  margin-bottom: 2px;
}

.logo-image-white {
  height: 100px;
  width: auto;
  display: none;
  margin-bottom: 2px;
}

.logo-text-image {
  height: 100px;
  width: auto;
  display: block;
}

.logo-text-image-white {
  height: 100px;
  width: auto;
  display: none;
}

.logo-text .subtagline {
  font-size: 12px;
  color: #374151;
  margin: 0;
  font-weight: 400;
  text-align: center;
}

.logo-text .subtagline-secondary {
  font-size: 15px;
  color: #333;
  margin: 0;
  font-weight: 700;
  margin-top: 2px;
  text-transform: uppercase;
}

.nav ul {
  display: flex;
  list-style: none;
  gap: 15px;
  font-size: 21px;
}

/* Burger Menu */
.burger-menu {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 0 15px 0 0;
  margin-top: -6px;
  z-index: 1001;
}

.burger-menu span {
  width: 25px;
  height: 3px;
  background-color: #333;
  margin: 3px 0;
  transition: 0.3s;
  border-radius: 2px;
}

.header.page .burger-menu span {
  background-color: #fff;
}

.burger-menu.active span:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 6px);
}

.burger-menu.active span:nth-child(2) {
  opacity: 0;
}

.burger-menu.active span:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -6px);
}

/* Header scrolled burger menu */
.header.scrolled .burger-menu span {
  background-color: white;
}

.nav ul.dropdown-menu {
  flex-direction: column;
  gap: 0;
  text-transform: capitalize;
}

.nav li {
  position: relative;
}

.nav a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  transition: all 0.3s ease;
  padding: 10px 15px;
  display: block;
  border-radius: 5px;
}

/* Dropdown Menu */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  min-width: 250px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
  padding: 10px 0;
  display: block; /* Show on desktop */
}

.nav li:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Dropdown works with hover on all devices */
.nav li:hover .dropdown-menu {
  display: block;
}

.dropdown-menu li {
  margin: 0;
}

.dropdown-menu a {
  color: #333;
  padding: 12px 20px;
  font-size: 0.9rem;
  border-bottom: 1px solid #f0f0f0;
  transition: background 0.3s;
}

.dropdown-menu a:hover {
  background: #ff6b35;
  color: #fff;
}

.dropdown-menu li:last-child a {
  border-bottom: none;
}

/* Hero Section */
.hero {
  position: relative;
  overflow: hidden;
  z-index: 3;
}

.hero-container {
  height: 100%;
  position: relative;
}

.hero-content {
  max-width: 1200px;
  padding: 80px 50px;
  margin: 0 auto;
  flex-direction: column;
  justify-content: center;
  border-radius: 20px;
  position: relative;
  z-index: 2;
}

.hero-content-text {
  max-width: 550px;
}

/* .hero-content::after {
  content: "";
  position: absolute;
  top: 0;
  right: -50px;
  width: 100px;
  height: 100%;
  background: rgba(250, 250, 250, 0.9);
  transform: skewX(-15deg);
  z-index: 1;
} */

.hero-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #2d3748;
  line-height: 1.2;
  text-transform: none;
}

.hero-subtitle {
  font-size: 1.3rem;
  margin-bottom: 40px;
  color: #4a5568;
  line-height: 1.6;
  text-transform: none;
}

.hero-features {
  display: flex;
  align-items: center;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 1) 0%,
    rgba(53, 51, 205, 1) 100%
  );
  border-radius: 15px;
  padding: 20px;
  max-width: 600px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-family: Arial, Helvetica, sans-serif;
}

.feature-item {
  flex: 1;
  color: white;
  font-weight: 600;
  font-size: 0.9rem;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  font-size: 13px;
}

.feature-divider {
  width: 1px;
  height: 30px;
  background: rgba(255, 255, 255, 0.3);
  margin: 0 10px;
}

.contact-section {
  text-align: center;
  max-width: 600px;
  margin-top: 45px;
}

.contact-text {
  font-size: 1.1rem;
  color: #2d3748;
  margin-bottom: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact-button {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 1) 0%,
    rgba(53, 51, 205, 1) 100%
  );
  color: white;
  padding: 15px 25px;
  text-decoration: none;
  border-radius: 15px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(30, 64, 175, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(30, 64, 175, 0.4);
  background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 50%, #3b82f6 100%);
}

.whatsapp-icon {
  margin-right: 10px;
  font-size: 1.2rem;
}

.hero-image {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.technician-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  clip-path: polygon(0 0, 100% 0, 85% 100%, 0% 100%);
}

/* Why Aspida Section */
.why-aspida {
  padding: 80px 0;
  background: #fff;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 1.8rem;
  color: #333;
  margin-bottom: 10px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 400;
}

.section-header h3 {
  font-size: 2.5rem;
  color: #333;
  font-weight: 700;
}

.features-container {
  margin-bottom: 50px;
}

.features-main {
  background: #001b3d;
  border-radius: 50px;
  padding: 40px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  box-shadow: 0 10px 30px rgba(10, 35, 66, 0.2);
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 15px;
  flex: 1;
  color: white;
}

.feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 60px;
}

.feature-icon i {
  font-size: 2.5rem;
  color: white;
}

.icon-circle {
  width: 60px;
  height: 60px;
  border: 2px solid white;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
}

.icon-text {
  font-size: 1rem;
  font-weight: bold;
  line-height: 1;
}

.icon-subtext {
  font-size: 0.5rem;
  line-height: 1;
  opacity: 0.8;
}

.feature-text h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: white;
}

.feature-text p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  font-weight: 500;
}

.feature-arrow {
  color: #4a90e2;
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0 10px;
}

.feature-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.feature-description {
  font-size: 0.9rem;
  opacity: 0.9;
}

.contact-cta {
  text-align: center;
}

.whatsapp-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #ff6b35;
  color: white;
  padding: 15px 30px;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 500;
  box-shadow: 0 5px 15px rgba(10, 35, 66, 0.2);
  font-size: 1.1rem;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(34, 197, 94, 0.3);
  font-family: Arial, Helvetica, sans-serif;
}

.whatsapp-button:hover {
  background: #16a34a;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(34, 197, 94, 0.4);
}

/* Welcome Section */
.welcome {
  padding: 80px 0;
  background: white;
}

.welcome-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}

.welcome-content:nth-child(even) {
  grid-template-columns: 1fr 1fr;
}

.welcome-content:nth-child(even) .welcome-image {
  order: 2;
}

.welcome-content:nth-child(even) .welcome-text {
  order: 1;
}

.welcome-content:last-child {
  margin-bottom: 0;
}

.welcome-image {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.welcome-image img {
  width: 100%;
  height: 700px;
  border-radius: 30px;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.welcome-image img:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 40px rgba(59, 130, 246, 0.4);
}

.welcome-text h2 {
  font-size: 2.5rem;
  color: #001b3d;
  margin-bottom: 20px;
  font-weight: 700;
}

.welcome-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #666;
}

/* Anti Termite Section */
.anti-termite {
  padding: 80px 0;
  background: #fff;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 50px;
  font-weight: 700;
}

.service-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.service-description {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 30px;
  line-height: 1.6;
}

.services-list {
  margin: 30px 0;
}

.services-list h4 {
  color: #333;
  font-size: 1.3rem;
  margin-bottom: 15px;
  font-weight: 600;
}

.services-list ul {
  list-style: none;
  padding: 0;
}

.services-list li {
  padding: 8px 0;
  padding-left: 25px;
  position: relative;
  color: #333;
}

.services-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #001b3d;
  font-weight: bold;
  font-size: 1.2rem;
}

.service-cta {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 25px;
  line-height: 1.6;
}

.info-button {
  background: #ff6b35;
  color: white;
  border: none;
  padding: 12px 25px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
}

.info-button:hover {
  background: #f9703e;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(30, 58, 138, 0.3);
}

.technician-image {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.technician-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Pest Control Section */
.pest-control {
  padding: 80px 0;
  background: white;
}

.pest-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  margin-bottom: 50px;
}

.pest-item {
  text-align: center;
  background: white;
  border-radius: 12px;
  padding: 15px;
  transition: transform 0.3s;
}

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

.pest-image {
  width: 100%;
  height: 150px;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 15px;
  background: #f8fafc;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #001b3d;
}

.pest-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pest-name {
  font-size: 1.1rem;
  color: #001b3d;
  margin-bottom: 12px;
  font-weight: 600;
}

.pest-info {
  background: #ff6b35;
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s;
  font-weight: 500;
}

.pest-info:hover {
  background: #f9703e;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(30, 58, 138, 0.3);
}

/* Technician Process Section */
.technician-process {
  padding: 80px 0;
  background: #f8fafc;
}

.process-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.process-item {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

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

.process-image {
  width: 100%;
  height: 550px;
  overflow: hidden;
  position: relative;
}

.process-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.process-content {
  padding: 30px;
}

.process-content h3 {
  font-size: 1.8rem;
  color: #001b3d;
  margin-bottom: 15px;
  font-weight: 700;
}

.process-content p {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

/* Footer */
.footer {
  background: #001b3d;
  color: white;
  padding: 60px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 40px;
}

.footer-logo-image {
  height: 60px;
  width: auto;
  margin-bottom: 25px;
}

/* ===== CONTACT AREA ===== */
.footer-contact {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1rem;
}

.footer-contact p {
  margin-bottom: 8px;
  color: white;
  line-height: 1.6;
}

/* Judul Office Locations */
.footer-contact .footer-title {
  font-size: 1.1rem;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Group alamat office */
.office-list p {
  margin-bottom: 14px;
  padding-left: 22px;
  position: relative;
}

/* Icon lokasi */
.office-list i {
  position: absolute;
  left: 0;
  top: 4px;
  color: #f4b400;
}

/* Contact center (telp & email) */
.footer-contact-info {
  margin-top: 20px;
}

.footer-contact-info p {
  margin-bottom: 6px;
}


/* Semua icon */
.footer-contact i {
  color: #f4b400;
  font-size: 0.95rem;
}


.social-media {
  display: flex;
  gap: 15px;
  margin-top: 25px;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: all 0.3s;
  font-size: 1.2rem;
}

.social-icon.facebook {
  background: #1877f2;
}

.social-icon.instagram {
  background: linear-gradient(
    45deg,
    #f09433 0%,
    #e6683c 25%,
    #dc2743 50%,
    #cc2366 75%,
    #bc1888 100%
  );
}

.social-icon.youtube {
  background: #ff0000;
}

.social-icon:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.footer-right h4 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: white;
  font-weight: 700;
  text-transform: uppercase;
}

.footer-services {
  list-style: none;
  padding: 0;
}

.footer-services li {
  margin-bottom: 8px;
  color: white;
  font-size: 1rem;
  line-height: 1.4;
}

.footer-services li a {
  color: white;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-services li a:hover {
  color: #3b82f6;
  text-decoration: underline;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  font-size: 0.9rem;
  opacity: 0.8;
}

.artikel-section {
  padding: 40px 0;
  background: #f8f9fa;
}

/* Search Container */
.search-container {
  display: flex;
  justify-content: center;
  margin: 20px 0 15px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.search-result-info {
  text-align: center;
  margin: 0 0 20px;
  font-size: 16px;
  color: #555;
  font-family: Arial, Helvetica, sans-serif;
}

.no-results {
  text-align: center;
  padding: 40px 20px;
  font-size: 18px;
  color: #666;
  background-color: #f5f5f5;
  border-radius: 8px;
  margin: 20px 0;
  font-family: Arial, Helvetica, sans-serif;
}

.search-container input {
  flex: 1;
  padding: 10px 15px;
  border: 1px solid #ddd;
  border-radius: 4px 0 0 4px;
  font-size: 16px;
  font-family: inherit;
}

.search-container input:focus-visible {
  outline: none;
}

.search-container button {
  padding: 10px 20px;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 1) 0%,
    rgba(53, 51, 205, 1) 100%
  );
  color: white;
  border: none;
  border-radius: 0 4px 4px 0;
  cursor: pointer;
  font-size: 16px;
  font-family: inherit;
  transition: all 0.3s ease;
}

.search-container button:hover {
  opacity: 0.9;
}
.artikel-list {
  display: flex;
  flex-wrap: wrap;
  box-sizing: border-box;
}

.artikel-list-item {
  width: 25%;
  padding: 10px;
  box-sizing: border-box;
}

.artikel-list-item-wrapper {
  border: 1px solid #ccc;
  border-radius: 7px;
  overflow: hidden;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

.artikel-list-item-image {
  img {
    width: 100%;
    height: 220px;
    object-fit: cover;
  }
}

.artikel-list-item-content {
  padding: 15px 30px;
}

.artikel-list-item-date {
  font-size: 11px;
  color: #888;
  font-family: Arial, Helvetica, sans-serif;
}

.artikel-list-item-title h4 {
  margin-bottom: 0;
  font-size: 18px;
  height: 54px;
  overflow: hidden;
}

.artikel-list-item-title a {
  color: #1a2536;
  text-decoration: none;
}

.artikel-list-item-title p {
  height: 80px;
  overflow: hidden;
}

.artikel-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
  overflow: hidden;
  transition: box-shadow 0.2s;
  text-decoration: none;
  color: inherit;
  width: 33.333%;
}
.artikel-card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.13);
}
.artikel-thumb {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}
.artikel-info {
  padding: 20px;
}
.artikel-title {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #1a2536;
}
.artikel-date {
  font-size: 0.95rem;
  color: #888;
  margin-bottom: 6px;
}

.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: 32px 0 0 0;
}
.pagination button {
  background: #fff;
  border: 1px solid #d1d5db;
  color: #1a2536;
  padding: 6px 14px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1rem;
  transition: background 0.2s;
}
.pagination button.active,
.pagination button:hover:not(:disabled) {
  background: #1a2536;
  color: #fff;
}
.pagination button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Service Pages Styles */
.anti-rayap-hero,
.pest-control-hero {
  padding: 240px 0 80px;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 1) 0%,
    rgba(53, 51, 205, 1) 100%
  );
  text-align: center;
  color: #001b3d;
}

@media (max-width: 960px) {
  .artikel-list-item {
    width: 33.333%;
  }
}

/* Responsive fix: Anti Termite section single column on mobile */
@media (max-width: 768px) {
  .bg-hero-home {
    display: none;
  }

  .hero {
    padding-top: 60px;
  }

  .anti-termite .service-content {
    grid-template-columns: 1fr !important;
    display: flex;
    flex-direction: column;
  }
  /* Tampilkan gambar lebih dulu daripada teks */
  .anti-termite .service-image {
    order: -1;
    width: 100%;
  }

  .anti-termite .technician-image {
    height: 450px;
  }

  .anti-termite .service-text {
    order: 0;
  }
}

/* Responsive fix: Why Termites Dangerous section single column on mobile */
@media (max-width: 768px) {
  .why-termites-dangerous .danger-content {
    grid-template-columns: 1fr !important;
    display: flex;
    flex-direction: column;
  }
  /* Tampilkan gambar lebih dulu daripada teks */
  .why-termites-dangerous .danger-image {
    order: -1;
  }
  .why-termites-dangerous .danger-text {
    order: 0;
  }
}

/* Responsive fix: Treatment Methods section single column on mobile */
@media (max-width: 768px) {
  .treatment-methods .treatment-grid {
    grid-template-columns: 1fr !important;
    gap: 40px;
  }
  .treatment-methods .treatment-block-vertical {
    display: flex;
    flex-direction: column;
  }
  /* Konsistensi: gambar selalu di atas, teks di bawah */
  .treatment-methods .treatment-image {
    order: -1;
  }
  .treatment-methods .treatment-content {
    order: 0;
  }
}

@media (max-width: 600px) {
  .artikel-list-item {
    width: 50%;
  }
}

@media (max-width: 480px) {
  .artikel-list-item {
    width: 100%;
    max-width: 380px;
    margin: 0 auto;
  }
}

.anti-rayap-hero .hero-title,
.pest-control-hero .hero-title {
  font-size: 2.5rem;
  margin-bottom: 40px;
  font-weight: 700;
  color: #001b3d;
}

.anti-rayap-hero .hero-subtitle,
.pest-control-hero .hero-subtitle {
  font-size: 1.5rem;
  opacity: 0.9;
}

/* Anti Rayap Hero Specific Styles */
.hero-image-container {
  position: relative;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  color: #fff;
}

.hero-termite-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}

.anti-rayap-hero .hero-title {
  color: #fff;
}

.hero-overlay-text {
  text-align: center;
  color: #fff;
  font-weight: 600;
  z-index: 2;
}

.hero-overlay-text .whatsapp-button {
  margin-top: 45px;
}

.overlay-line-1 {
  font-size: 1.4rem;
  margin-bottom: 8px;
  font-style: italic;
}

.overlay-line-2 {
  font-size: 1.2rem;
  margin-bottom: 8px;
  font-style: italic;
}

.overlay-line-3 {
  font-size: 1.2rem;
  font-style: italic;
}

/* Why Termites Are Dangerous Section */
.why-termites-dangerous {
  padding: 80px 0;
  background: #f8fafc;
}

.danger-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.danger-image {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.danger-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}

.danger-text h2 {
  font-size: 2.5rem;
  color: #001b3d;
  margin-bottom: 40px;
  font-weight: 700;
}

.danger-reasons {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.reason-item h3 {
  font-size: 1.5rem;
  color: #ff6b35;
  margin-bottom: 20px;
  font-weight: 600;
}

.reason-item ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.reason-item li {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #374151;
  margin-bottom: 12px;
  padding-left: 25px;
  position: relative;
}

.reason-item li::before {
  content: "•";
  color: #ff6b35;
  font-weight: bold;
  font-size: 1.5rem;
  position: absolute;
  left: 0;
  top: -2px;
}

/* Treatment Methods Section */
.treatment-methods {
  padding: 80px 0;
  background: white;
}

.treatment-methods .section-title {
  text-align: center;
  font-size: 2.5rem;
  color: #000;
  margin-bottom: 60px;
  font-weight: 700;
}

.treatment-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.treatment-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: start;
}

.treatment-block-vertical {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.treatment-content h3 {
  font-size: 1.8rem;
  color: #000;
  margin-bottom: 10px;
  font-weight: 700;
}

.treatment-subtitle {
  font-size: 1rem;
  color: #000;
  margin-bottom: 5px;
  font-weight: 400;
}

.treatment-description {
  margin-bottom: 25px;
}

.treatment-description p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #000;
}

.treatment-advantages h4 {
  font-size: 1.2rem;
  color: #000;
  margin-bottom: 15px;
  font-weight: 600;
}

.treatment-advantages ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.treatment-advantages li {
  font-size: 1rem;
  line-height: 1.6;
  color: #000;
  margin-bottom: 10px;
  padding-left: 20px;
  position: relative;
}

.treatment-advantages li::before {
  content: "•";
  color: #000;
  font-weight: bold;
  position: absolute;
  left: 0;
}

.treatment-image {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.treatment-image img {
  width: 100%;
  height: 700px;
  object-fit: cover;
  object-position: top;
  display: block;
}

/* Why Choose ASPIDA Section */
.why-choose-aspida {
  padding: 80px 0;
  background: white;
}

.why-choose-aspida .section-title {
  text-align: center;
  font-size: 2.5rem;
  color: #000;
  margin-bottom: 50px;
  font-weight: 700;
  text-transform: uppercase;
}

.features-container {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #001b3d;
  border-radius: 16px;
  padding: 40px 20px;
  margin-bottom: 30px;
  margin-left: auto;
  margin-right: auto;
}

.feature-item {
  display: block;
  text-align: center;
  color: white;
  padding: 20px 10px;
}

.feature-item h3 {
  font-size: 1.2rem;
  font-weight: 600;
  text-transform: uppercase;
}

.feature-item p {
  font-size: 1.1rem;
  font-weight: 500;
  text-transform: uppercase;
  margin: 0;
}

.feature-divider {
  width: 1px;
  height: 60px;
  background: rgba(255, 255, 255, 0.3);
  margin: 0 10px;
}

.contact-cta {
  text-align: center;
}

.contact-cta .cta-button {
  display: inline-block;
  background: #001b3d;
  color: white;
  padding: 15px 30px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.contact-cta .cta-button:hover {
  background: #1e40af;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(30, 58, 138, 0.3);
}

/* Price List Section */
.price-list {
  padding: 80px 0;
  background: #f8fafc;
}

.price-cards {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

/* .price-card {
  background: #001b3d;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
} */

.price-card img {
  width: 100%;
}

.price-card .card-content {
  display: flex;
}

.card-header {
  position: relative;
  text-align: center;
  margin-bottom: 25px;
}

.card-header h3 {
  color: #001b3d;
  font-size: 1.4rem;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0;
  line-height: 1.3;
  text-align: center;
  margin-bottom: 45px;
}

.hot-promo {
  position: absolute;
  top: -10px;
  left: 20px;
  background: #dc2626;
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
}

.card-content {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: start;
  margin-bottom: 25px;
}

.price-section h4 {
  color: #001b3d;
  font-size: 1.2rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 20px;
  text-align: center;
  border-bottom: 1px solid #e5e7eb;
  padding-bottom: 10px;
}

.price-table {
  width: 100%;
}

.table-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid #e5e7eb;
}

.table-row.header {
  font-weight: 600;
  border-bottom: 2px solid #001b3d;
  padding-bottom: 12px;
  margin-bottom: 8px;
}

.table-row .area,
.table-row .price {
  color: #374151;
  font-size: 1rem;
}

.table-row.header .area,
.table-row.header .price {
  font-weight: 600;
  text-transform: uppercase;
  color: #001b3d;
}

.card-illustration {
  width: 150px;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-illustration img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.card-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
}

.service-notes {
  flex: 1;
}

.service-notes p {
  color: #374151;
  font-size: 0.9rem;
  margin-bottom: 5px;
  line-height: 1.4;
}

.order-button {
  flex-shrink: 0;
}

.btn-order {
  display: inline-block;
  background: #001b3d;
  color: white;
  padding: 12px 25px;
  border: 2px solid #001b3d;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.btn-order:hover {
  background: white;
  color: #001b3d;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Service Detail Page */
.service-detail {
  padding: 80px 0;
  background: white;
}

.service-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.service-text h2 {
  font-size: 2.5rem;
  color: #001b3d;
  margin-bottom: 20px;
  font-weight: 600;
}

.service-text h3 {
  font-size: 1.8rem;
  color: #333;
  margin: 30px 0 20px;
  font-weight: 600;
}

.service-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #666;
  margin-bottom: 20px;
}

.service-features {
  margin: 30px 0;
}

.service-features .feature-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 25px;
  padding: 20px;
  background: #f8fafc;
  border-radius: 12px;
  transition: transform 0.3s;
}

.service-features .feature-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.service-features .feature-item i {
  font-size: 2rem;
  color: #001b3d;
  margin-top: 5px;
  flex-shrink: 0;
}

.service-features .feature-item h4 {
  font-size: 1.2rem;
  color: #333;
  margin-bottom: 8px;
  font-weight: 600;
}

.service-features .feature-item p {
  font-size: 1rem;
  color: #666;
  margin: 0;
}

.service-image {
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-image img {
  width: 100%;
  height: 700px;
  display: block;
}

.cta-section {
  margin-top: 40px;
  padding: 30px;
  background: #f8fafc;
  border-radius: 16px;
  text-align: center;
}

.cta-section h3 {
  font-size: 1.8rem;
  color: #001b3d;
  margin-bottom: 15px;
}

.cta-section p {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 25px;
}

.cta-button {
  display: inline-block;
  padding: 15px 30px;
  background: #001b3d;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: background 0.3s;
}

.cta-button:hover {
  background: #0f2a5a;
}

/* Pest Types Section */
.pest-types {
  padding: 80px 0;
  background: #f8fafc;
}

.pest-types .section-title {
  text-align: center;
  font-size: 2.5rem;
  color: #001b3d;
  margin-bottom: 50px;
  font-weight: 600;
}

.pest-types .pest-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.pest-types .pest-item {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

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

.pest-types .pest-image {
  height: 200px;
  overflow: hidden;
}

.pest-types .pest-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pest-types .pest-name {
  font-size: 1.3rem;
  color: #333;
  margin: 20px 20px 10px;
  font-weight: 600;
}

.pest-types .pest-description {
  font-size: 0.95rem;
  color: #666;
  margin: 0 20px 20px;
  line-height: 1.6;
}

.pest-types .pest-info {
  margin: 0 20px 20px;
  padding: 10px 20px;
  background: #001b3d;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s;
}

.pest-types .pest-info:hover {
  background: #0f2a5a;
}

.pest-info a {
  color: #fff;
  text-decoration: none;
}

.pest-info a:hover {
  color: #fff;
  text-decoration: none;
}

/* Service Process */
.service-process {
  padding: 80px 0;
  background: white;
}

.service-process .section-title {
  text-align: center;
  font-size: 2.5rem;
  color: #001b3d;
  margin-bottom: 50px;
  font-weight: 600;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.step {
  text-align: center;
  padding: 30px 20px;
  background: #f8fafc;
  border-radius: 16px;
  transition: transform 0.3s;
}

.step:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.step-number {
  width: 60px;
  height: 60px;
  background: #001b3d;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 20px;
}

.step h3 {
  font-size: 1.3rem;
  color: #333;
  margin-bottom: 15px;
  font-weight: 600;
}

.step p {
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
}

/* About Us Page Styles */
.about-hero {
  padding: 100px 0 60px;
  background: #f8fafc;
}

.hero-image {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.hero-image img {
  width: 100%;
  height: auto;
  display: block;
}

.about-section {
  padding: 80px 0;
  background: white;
}

.about-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}

.about-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #333;
  margin-bottom: 20px;
}

.vision-section {
  padding: 60px 0;
  background: #f8fafc;
}

.vision-box {
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 1) 0%,
    rgba(53, 51, 205, 1) 100%
  );
  color: white;
  padding: 40px;
  border-radius: 16px;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  box-shadow: 0 10px 30px rgba(10, 35, 66, 0.2);
}

.vision-box h3 {
  font-size: 2rem;
  margin-bottom: 20px;
  font-weight: 700;
}

.vision-box p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin: 0;
}

.mission-section {
  padding: 60px 0;
  background: white;
}

.mission-box {
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 1) 0%,
    rgba(53, 51, 205, 1) 100%
  );
  color: white;
  padding: 40px;
  border-radius: 16px;
  max-width: 800px;
  margin: 0 auto;
  box-shadow: 0 10px 30px rgba(10, 35, 66, 0.2);
}

.mission-box h3 {
  font-size: 2rem;
  margin-bottom: 30px;
  font-weight: 700;
  text-align: center;
}

.mission-list {
  list-style: none;
  padding: 0;
}

.mission-list li {
  padding: 12px 0;
  padding-left: 30px;
  position: relative;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 15px;
}

.mission-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #ff6b35;
  font-weight: bold;
  font-size: 1.2rem;
}

/* Contact Us Page Styles */
.contact-hero {
  padding: 120px 0 60px;
  background: white;
  text-align: center;
}

.contact-content h2 {
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 10px;
  font-weight: 600;
}

.contact-content h3 {
  font-size: 2rem;
  color: #333;
  margin-bottom: 20px;
  font-weight: 600;
}

.contact-phone {
  margin-top: 30px;
}

.contact-phone a {
  font-size: 2.5rem;
  color: #001b3d;
  text-decoration: none;
  font-weight: 700;
  transition: color 0.3s;
}

.contact-phone a:hover {
  color: #0f2a5a;
}

.contact-image-section {
  padding: 60px 0;
  background: #f8fafc;
}

.contact-image {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-image img {
  width: 100%;
  height: auto;
  display: block;
}

.contact-info-section {
  padding: 80px 0;
  background: white;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 30px;
  background: #f8fafc;
  border-radius: 16px;
  transition: transform 0.3s;
}

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

.contact-icon {
  width: 60px;
  height: 60px;
  background: #001b3d;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.contact-details h4 {
  font-size: 1.2rem;
  color: #333;
  margin-bottom: 8px;
  font-weight: 600;
}

.contact-details p {
  font-size: 1rem;
  color: #666;
  margin: 0;
}

.contact-details a {
  color: #001b3d;
  text-decoration: none;
  transition: color 0.3s;
}

.contact-details a:hover {
  color: #0f2a5a;
}

/* Floating WhatsApp Button */
.floating-whatsapp {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
  animation: float 3s ease-in-out infinite;
}

.floating-whatsapp a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: #25d366;
  color: white;
  border-radius: 50%;
  text-decoration: none;
  font-size: 30px;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
  transition: all 0.3s ease;
}

.floating-whatsapp a:hover {
  background: #128c7e;
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Fumigasi Page Styles */
.fumigasi-hero {
  background: #f8f9fa;
  padding: 180px 0 40px;
  text-align: center;
}

.fumigasi-hero .hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #001b3d;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.fumigasi-hero .hero-subtitle {
  font-size: 1.8rem;
  font-weight: 600;
  color: #001b3d;
  margin-bottom: 30px;
}

.fumigasi-hero .hero-phone {
  margin-bottom: 40px;
}

.fumigasi-hero .hero-phone a {
  font-size: 2rem;
  font-weight: 700;
  color: #001b3d;
  text-decoration: none;
  transition: color 0.3s ease;
}

.fumigasi-hero .hero-phone a:hover {
  color: #3b82f6;
}

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

.fumigasi-main-image {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.fumigasi-main-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.fumigasi-description {
  padding: 60px 0;
  background: #f8f9fa;
}

.description-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}

.description-content #judul {
  margin-bottom: 30px;
  font-size: 28px;
}

.description-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin: 0;
}

.fumigasi-objectives {
  padding: 60px 0;
  background: white;
}

.objectives-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #001b3d;
  margin-bottom: 30px;
  text-align: left;
}

.objectives-list {
  max-width: 800px;
  margin: 0 auto;
  list-style: none;
  padding: 0;
}

.objectives-list li {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #374151;
  margin-bottom: 15px;
  padding-left: 30px;
  position: relative;
}

.objectives-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #ff6b35;
  font-size: 1.5rem;
  font-weight: bold;
}

.loading-spinner {
  width: 150px;
  height: 150px;
  border: 5px solid #f3f3f3;
  border-top: 5px solid #3498db;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 20px auto;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Responsive Design for Fumigasi Page */

@media (max-width: 1400px) {
  .bg-hero-home {
    width: 750px;
  }

  .header.home::before {
    right: 0;
  }
}

@media (max-width: 768px) {
  .fumigasi-hero .hero-title {
    font-size: 2rem;
  }

  .fumigasi-hero .hero-subtitle {
    font-size: 1.5rem;
  }

  .fumigasi-hero .hero-phone a {
    font-size: 1.6rem;
  }

  .description-content p {
    font-size: 1rem;
  }

  .objectives-title {
    font-size: 1.5rem;
  }

  .objectives-list li {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .fumigasi-hero .hero-title {
    font-size: 1.6rem;
  }

  .fumigasi-hero .hero-subtitle {
    font-size: 1.3rem;
  }

  .fumigasi-hero .hero-phone a {
    font-size: 1.4rem;
  }

  .fumigasi-main-image {
    margin: 0 20px;
  }

  .description-content {
    margin: 0 20px;
  }

  .objectives-list {
    margin: 0 20px;
  }
}

/* Desinfektan Page Styles */
.desinfektan-hero {
  background: #f8f9fa;
  padding: 180px 0 40px;
  text-align: center;
}

.desinfektan-hero .hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #001b3d;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.desinfektan-hero .hero-subtitle {
  font-size: 1.8rem;
  font-weight: 600;
  color: #001b3d;
  margin-bottom: 30px;
}

.desinfektan-hero .hero-phone {
  margin-bottom: 40px;
}

.desinfektan-hero .hero-phone a {
  font-size: 2rem;
  font-weight: 700;
  color: #001b3d;
  text-decoration: none;
  transition: color 0.3s ease;
}

.desinfektan-hero .hero-phone a:hover {
  color: #3b82f6;
}

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

.desinfektan-main-image {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.desinfektan-main-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.desinfektan-description {
  padding: 60px 0;
  background: white;
}

.desinfektan-description .description-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}

.desinfektan-description .description-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #374151;
  margin-bottom: 25px;
}

.desinfektan-description .description-content p:last-child {
  margin-bottom: 0;
}

/* Responsive Design for Desinfektan Page */
@media (max-width: 768px) {
  .header.home::before {
    display: none;
  }

  .logo-text > div {
    padding-left: 50px;
  }

  .desinfektan-hero .hero-title {
    font-size: 2rem;
  }

  .desinfektan-hero .hero-subtitle {
    font-size: 1.5rem;
  }

  .desinfektan-hero .hero-phone a {
    font-size: 1.6rem;
  }

  .desinfektan-description .description-content p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .desinfektan-hero .hero-title {
    font-size: 1.6rem;
  }

  .desinfektan-hero .hero-subtitle {
    font-size: 1.3rem;
  }

  .desinfektan-hero .hero-phone a {
    font-size: 1.4rem;
  }

  .desinfektan-main-image {
    margin: 0 20px;
  }

  .desinfektan-description .description-content {
    margin: 0 20px;
  }
}

/* Kecoa Kontrol Page Styles */
.kecoa-hero {
  background: #f8f9fa;
  padding: 180px 0 40px;
  text-align: center;
}

.kecoa-hero .hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #001b3d;
  margin-bottom: 30px;
  text-transform: uppercase;
}

.kecoa-hero .hero-phone {
  margin-bottom: 40px;
}

.kecoa-hero .hero-phone a {
  font-size: 2rem;
  font-weight: 700;
  color: #001b3d;
  text-decoration: none;
  transition: color 0.3s ease;
}

.kecoa-hero .hero-phone a:hover {
  color: #3b82f6;
}

/* Cockroach Information Section */
.kecoa-info {
  padding: 60px 0;
  background: white;
}

.kecoa-info-card {
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 1) 0%,
    rgba(53, 51, 205, 1) 100%
  );
  border-radius: 20px;
  padding: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.tikus-info-card {
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 1) 0%,
    rgba(53, 51, 205, 1) 100%
  );
  border-radius: 20px;
  padding: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.lalat-info-card {
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 1) 0%,
    rgba(53, 51, 205, 1) 100%
  );
  border-radius: 20px;
  padding: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.info-title {
  color: white;
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 30px;
  text-transform: uppercase;
}

.info-content {
  display: flex;
  align-items: center;
  gap: 40px;
}

.info-image {
  flex: 0 0 300px;
}

.info-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
}

.info-text {
  flex: 1;
}

.info-text p {
  color: white;
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

.info-text p:last-child {
  margin-bottom: 0;
}

/* Price List Section */
.kecoa-price {
  padding: 60px 0;
  background: #f8f9fa;
}

.kecoa-price .price-card {
  background: white;
  border: 2px solid #3b82f6;
  border-radius: 20px;
  max-width: 1000px;
  margin: 0 auto;
  overflow: hidden;
  display: flex;
}

.price-left {
  flex: 1;
  padding: 40px;
  background: white;
}

.price-title {
  color: #001b3d;
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 30px;
  text-transform: uppercase;
}

.price-table {
  width: 100%;
}

.price-table .table-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #e5e7eb;
}

.price-table .table-row.header {
  font-weight: 600;
  border-bottom: 2px solid #001b3d;
  padding-bottom: 15px;
  margin-bottom: 10px;
}

.price-table .table-row .area,
.price-table .table-row .price {
  color: #374151;
  font-size: 1rem;
}

.price-table .table-row.header .area,
.price-table .table-row.header .price {
  color: #001b3d;
  font-weight: 600;
  text-transform: uppercase;
}

.price-right {
  flex: 0 0 300px;
  background: #001b3d;
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

.price-logo {
  text-align: center;
  margin-bottom: 30px;
}

.price-logo h4 {
  color: white;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 5px;
}

.price-logo p {
  color: white;
  font-size: 0.9rem;
  opacity: 0.9;
}

.price-illustration {
  margin-bottom: 30px;
}

.price-illustration img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: white;
  padding: 10px;
}

.btn-order {
  display: inline-block;
  background: #001b3d;
  color: white;
  padding: 12px 25px;
  border: 2px solid white;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.btn-order:hover {
  background: white;
  color: #001b3d;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Responsive Design for Kecoa Page */
@media (max-width: 768px) {
  .kecoa-hero .hero-title {
    font-size: 2rem;
  }

  .kecoa-hero .hero-phone a {
    font-size: 1.6rem;
  }

  .info-content {
    flex-direction: column;
    gap: 30px;
  }

  .info-image {
    flex: none;
    width: 100%;
    max-width: 300px;
  }

  .kecoa-price .price-card {
    flex-direction: column;
  }

  .price-right {
    flex: none;
    width: 100%;
  }

  .info-text p {
    font-size: 1rem;
  }

  .price-title {
    font-size: 1.3rem;
  }
}

@media (max-width: 480px) {
  .kecoa-hero .hero-title {
    font-size: 1.6rem;
  }

  .kecoa-hero .hero-phone a {
    font-size: 1.4rem;
  }

  .kecoa-info-card {
    margin: 0 20px;
    padding: 30px 20px;
  }

  .info-title {
    font-size: 1.6rem;
  }

  .kecoa-price .price-card {
    margin: 0 20px;
  }

  .price-left {
    padding: 30px 20px;
  }

  .price-right {
    padding: 30px 20px;
  }

  .price-table .table-row .area,
  .price-table .table-row .price {
    font-size: 0.9rem;
  }
}

/* Keunggulan ASPIDA Styles */
.keunggulan-aspida {
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 1) 0%,
    rgba(53, 51, 205, 1) 100%
  );
  padding: 60px 0;
  margin-top: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(10, 35, 66, 0.3);
}

.keunggulan-aspida h4 {
  color: #ffffff;
  font-size: 2.2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
}

.keunggulan-aspida h4::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #ff6b35, #f7931e);
  border-radius: 2px;
}

.keunggulan-aspida ul {
  list-style: none;
  padding: 0;
  margin: 0;
  max-width: 900px;
  margin: 0 auto;
  font-family: "Graduate", cursive;
}

.keunggulan-aspida li {
  background: rgba(255, 255, 255, 0.1);
  margin-bottom: 20px;
  padding: 25px 30px;
  border-radius: 15px;
  border-left: 5px solid #ff6b35;
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1.6;
  position: relative;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  font-family: "Graduate", cursive;
}

.keunggulan-aspida li::before {
  content: "✓";
  position: absolute;
  left: -15px;
  top: 50%;
  transform: translateY(-50%);
  background: #ff6b35;
  color: white;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1rem;
  box-shadow: 0 3px 10px rgba(255, 107, 53, 0.3);
}

.keunggulan-aspida li:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateX(10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.keunggulan-aspida li:last-child {
  margin-bottom: 0;
}

/* Responsive styles untuk keunggulan ASPIDA */
@media (max-width: 768px) {
  .keunggulan-aspida {
    padding: 40px 20px;
    margin: 30px 0;
    border-radius: 15px;
  }

  .keunggulan-aspida h4 {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }

  .keunggulan-aspida li {
    padding: 20px 25px;
    font-size: 1rem;
    margin-bottom: 15px;
  }

  .keunggulan-aspida li::before {
    width: 25px;
    height: 25px;
    font-size: 0.9rem;
    left: -12px;
  }
}

@media (max-width: 480px) {
  .keunggulan-aspida {
    padding: 30px 15px;
    margin: 20px 0;
  }

  .keunggulan-aspida h4 {
    font-size: 1.5rem;
    margin-bottom: 25px;
  }

  .keunggulan-aspida li {
    padding: 18px 20px;
    font-size: 0.95rem;
    margin-bottom: 12px;
  }

  .keunggulan-aspida li::before {
    width: 22px;
    height: 22px;
    font-size: 0.8rem;
    left: -11px;
  }
}

/* Responsive styles untuk Hero Section */
@media (max-width: 1024px) {
  .hero-content {
    flex: none;
    padding: 60px 40px;
  }

  .hero-content::after {
    display: none;
  }

  .hero-image {
    flex: none;
    height: 300px;
  }

  .technician-img {
    clip-path: none;
  }
}

@media (max-width: 768px) {
  .hero-content {
    padding: 50px 30px;
  }

  .hero-title {
    font-size: 2.8rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .hero-features {
    flex-direction: row;
    gap: 15px;
    padding: 25px 20px;
    max-width: 100%;
  }

  .contact-section {
    max-width: 100%;
  }

  .feature-divider {
    display: none;
  }

  .feature-item {
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .hero-content {
    padding: 40px 20px;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-features {
    padding: 20px 15px;
  }

  .contact-button {
    padding: 12px 20px;
    font-size: 1rem;
  }
}

/* Portfolio Section */
.portfolio-section {
  padding: 80px 0;
  background: #f8f9fa;
}

.portfolio-section .section-header {
  text-align: center;
  margin-bottom: 60px;
}

.portfolio-section .section-title {
  font-size: 3rem;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 15px;
  text-transform: none;
}

.portfolio-section .section-subtitle {
  font-size: 1.2rem;
  color: #4a5568;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
  text-transform: none;
}

.portfolio-slider {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 50px;
}

.portfolio-container {
  margin: 0 -15px;
}

/* Ensure Slick slider is visible */
.portfolio-container.slick-initialized {
  display: block !important;
}

.portfolio-container.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  user-select: none;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.portfolio-item {
  padding: 0 15px;
  outline: none;
  transition: all 0.3s ease-out;
}

.portfolio-item.slick-center {
  transform: scale(1);
  opacity: 1;
  filter: brightness(1);
}

.portfolio-item:not(.slick-center) {
  transform: scale(0.85);
  opacity: 0.6;
  filter: brightness(0.8);
}

/* Slick slide styling */
.portfolio-item.slick-slide {
  display: block;
  float: left;
  height: inherit;
  min-height: 1px;
}

.portfolio-item.slick-slide.slick-center {
  transform: scale(1);
  opacity: 1;
  filter: brightness(1);
}

.portfolio-item.slick-slide:not(.slick-center) {
  transform: scale(0.85);
  opacity: 0.6;
  filter: brightness(0.8);
}

.portfolio-card {
  background: white;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
  height: 370px;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease-out;
}

.portfolio-item:not(.slick-center) .portfolio-card {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.portfolio-item.slick-center .portfolio-card {
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.portfolio-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  filter: blur(8px);
  opacity: 0.3;
  z-index: 1;
}

.portfolio-bg-1 {
  background-image: linear-gradient(135deg, #e9d5ff 0%, #f3e8ff 100%);
}

.portfolio-bg-2 {
  background-image: linear-gradient(135deg, #64748b 0%, #475569 100%);
}

.portfolio-bg-3 {
  background-image: linear-gradient(135deg, #86efac 0%, #a7f3d0 100%);
}

.portfolio-monitor {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.portfolio-section .slick-dots {
  bottom: -50px;
}

.monitor-screen {
  width: 280px;
  height: 200px;
  background: #1a1a1a;
  border-radius: 15px 15px 0 0;
  padding: 15px;
  position: relative;
}

.monitor-stand {
  width: 60px;
  height: 20px;
  background: #1a1a1a;
  border-radius: 0 0 10px 10px;
}

.screen-content {
  width: 100%;
  height: 100%;
  background: white;
  border-radius: 8px;
  overflow: hidden;
}

.screen-header {
  height: 40px;
  display: flex;
  align-items: center;
  padding: 0 15px;
}

.blue-header {
  background: #2563eb;
}

.red-header {
  background: #dc2626;
}

.header-content {
  color: white;
  font-size: 0.8rem;
  font-weight: 600;
}

.company-logos {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.logo-text {
  font-size: 0.7rem;
}

.screen-sidebar {
  width: 60px;
  height: 100%;
  background: #16a34a;
  float: left;
}

.sidebar-menu {
  padding: 15px 10px;
}

.menu-item {
  width: 100%;
  height: 8px;
  background: rgba(255, 255, 255, 0.3);
  margin-bottom: 15px;
  border-radius: 4px;
}

.screen-main {
  margin-left: 60px;
  padding: 15px;
  height: 100%;
}

.screen-body {
  padding: 15px;
  height: calc(100% - 40px);
}

.content-placeholder {
  width: 100%;
  height: 100%;
  background: #f1f5f9;
  border-radius: 8px;
}

.dashboard-charts {
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.chart-row {
  display: flex;
  gap: 10px;
  align-items: end;
}

.chart-bar {
  flex: 1;
  border-radius: 4px;
}

.green-bar {
  height: 30px;
  background: #16a34a;
}

.red-bar {
  height: 25px;
  background: #dc2626;
}

.blue-bar {
  height: 35px;
  background: #2563eb;
}

.chart-pie {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: conic-gradient(#dc2626 0deg 180deg, #16a34a 180deg 360deg);
  margin: 0 auto;
}

.portfolio-label {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 8px 20px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.9rem;
  z-index: 3;
}

/* Slick Slider Custom Styling */
.slick-prev,
.slick-next {
  display: none !important;
}

.slick-dots {
  display: flex !important;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
  list-style: none;
  padding: 0;
  position: relative;
  z-index: 10;
}

.slick-dots li {
  margin: 0;
}

.slick-dots button {
  width: 12px;
  height: 12px;
  background: #cbd5e0;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s ease-out;
  font-size: 0;
  padding: 0;
}

.slick-dots .slick-active button {
  transform: scale(1.2);
}

/* Responsive Portfolio */
@media (max-width: 1024px) {
  .portfolio-container {
    margin: 0 -10px;
  }

  .portfolio-item {
    padding: 0 10px;
  }
}

@media (max-width: 768px) {
  .portfolio-section {
    padding: 60px 0;
  }

  .portfolio-section .section-title {
    font-size: 2.5rem;
  }

  .portfolio-section .section-subtitle {
    font-size: 1.1rem;
  }

  .portfolio-container {
    margin: 0 -5px;
  }

  .portfolio-item {
    padding: 0 5px;
  }

  .portfolio-card {
    height: 400px;
    padding: 25px;
  }

  .monitor-screen {
    width: 250px;
    height: 180px;
  }
}

@media (max-width: 480px) {
  .portfolio-section .section-title {
    font-size: 2rem;
  }

  .portfolio-section .section-subtitle {
    font-size: 1rem;
  }

  .portfolio-card {
    height: 350px;
    padding: 20px;
  }

  .monitor-screen {
    width: 220px;
    height: 160px;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .header .container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
  }

  .logo {
    text-align: left;
    margin-bottom: 0;
  }

  .logo-image,
  .logo-image-white {
    height: 50px;
    margin-top: 4px;
  }

  .logo-text-image,
  .logo-text-image-white {
    height: 50px;
  }

  .header.scrolled .logo-image {
    display: none;
  }

  .header.scrolled .logo-image-white {
    display: block;
  }

  .header.scrolled .logo-text .subtagline {
    color: #ff6b35;
  }

  .logo-text .subtagline-secondary {
    font-size: 9px;
  }

  .header.scrolled .logo-text .subtagline-secondary {
    color: white;
  }

  /* Show burger menu */
  .burger-menu {
    display: flex;
  }

  /* Hide navigation by default */
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: white;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    z-index: 1000;
    padding: 80px 20px 20px;
    overflow-y: auto;
  }

  .nav-menu.active {
    right: 0;
    background: linear-gradient(
      90deg,
      rgba(0, 0, 0, 1) 0%,
      rgba(53, 51, 205, 1) 100%
    );
  }

  .nav ul {
    flex-direction: column;
    gap: 10px;
    font-size: 1rem;
    width: 100%;
    background-color: rgba(59, 130, 246, 0.05);
  }

  .nav li {
    width: 100%;
    text-align: left;
  }

  .nav a {
    padding: 12px 15px;
    border-radius: 5px;
    transition: all 0.3s ease;
    font-size: 1rem;
  }

  .nav a:hover {
    background-color: rgba(59, 130, 246, 0.1);
  }

  /* .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: rgba(59, 130, 246, 0.05);
    border-radius: 5px;
    padding: 5px 0;
    margin-top: 5px;
    display: none;
    width: 100%;
  } */

  /* Show dropdown on hover in mobile */
  .nav li:hover .dropdown-menu {
    display: block;
  }

  .dropdown-menu a {
    color: #fff;
    padding: 8px 25px;
    font-size: 0.9rem;
    border-bottom: none;
    display: block;
    text-align: left;
  }

  .dropdown-menu a:hover {
    background: rgba(59, 130, 246, 0.1);
    color: #fff;
  }

  .header.scrolled .dropdown-menu {
    background: rgba(59, 130, 246, 0.05);
  }

  /* .header.scrolled .dropdown-menu a {
    color: #333;
  } */

  /* .header.scrolled .dropdown-menu a:hover {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
  } */

  /* Overlay for mobile menu */
  .nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }

  .nav-overlay.active {
    opacity: 1;
    visibility: visible;
  }

  .hero-video {
    object-position: center;
  }

  .hero-content {
    padding: 0 15px;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.2rem;
  }

  .welcome-content,
  .service-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .welcome-content:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .welcome-content:nth-child(even) .welcome-image,
  .welcome-content:nth-child(even) .welcome-text {
    order: unset;
  }

  .welcome-image img {
    width: 100%;
    height: 400px;
  }

  .welcome-text h2 {
    font-size: 2rem;
  }

  .welcome-image img {
    width: 100%;
    height: 300px;
  }

  .welcome-content {
    margin-bottom: 60px;
  }

  .welcome-text p {
    font-size: 1rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .technician-image {
    height: 300px;
  }

  .features-main {
    flex-direction: column;
    padding: 30px 20px;
    gap: 30px;
  }

  .feature-item {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .feature-arrow {
    transform: rotate(90deg);
    margin: 10px 0;
  }

  .pest-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
  }

  .pest-image {
    height: 120px;
  }

  .process-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .process-image {
    height: 450px;
  }

  .process-content {
    padding: 25px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-logo-image {
    height: 45px;
  }

  .footer-right h4 {
    font-size: 1.3rem;
  }

  .section-header h2 {
    font-size: 1.4rem;
  }

  .section-header h3 {
    font-size: 2rem;
  }

  /* Floating WhatsApp Button - Tablet */
  .floating-whatsapp {
    bottom: 20px;
    right: 20px;
  }

  .floating-whatsapp a {
    width: 55px;
    height: 55px;
    font-size: 28px;
  }

  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    /* background: rgba(59, 130, 246, 0.05); */
    border-radius: 4px;
    padding: 3px 0;
    margin-top: 3px;
    display: none;
    width: 100%;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 10px;
  }

  .header .container {
    padding: 8px 10px;
    gap: 8px;
  }

  .logo {
    margin-bottom: 0;
  }

  .logo-image,
  .logo-image-white {
    height: 40px;
  }

  .logo-text-image,
  .logo-text-image-white {
    height: 40px;
  }

  .header.scrolled .logo-image {
    display: none;
  }

  .header.scrolled .logo-image-white {
    display: block;
  }

  .header.scrolled .logo-text .subtagline {
    color: #ff6b35;
  }

  .logo-text .subtagline-secondary {
    font-size: 8px;
  }

  .header.scrolled .logo-text .subtagline-secondary {
    color: white;
  }

  /* Mobile menu adjustments */
  .nav-menu {
    width: 100%;
    right: -100%;
  }

  .nav-menu.active {
    right: 0;
  }

  .nav ul {
    flex-direction: column;
    gap: 5px;
    font-size: 0.9rem;
    width: 100%;
    background-color: rgba(59, 130, 246, 0.05);
  }

  .nav li {
    width: 100%;
    text-align: left;
  }

  .nav a {
    padding: 10px 15px;
    border-radius: 4px;
    font-size: 0.9rem;
  }

  .nav a:hover {
    background-color: rgba(59, 130, 246, 0.1);
  }

  /* Show dropdown on hover in mobile */
  .nav li:hover .dropdown-menu {
    display: block;
  }

  .dropdown-menu a {
    padding: 6px 20px;
    font-size: 0.8rem;
    border-bottom: none;
    display: block;
    text-align: left;
  }

  .header.scrolled .dropdown-menu a:hover {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
  }

  .hero-video {
    object-position: center;
  }

  .hero-title {
    font-size: 2rem;
  }

  .features-main {
    border-radius: 25px;
    padding: 20px 15px;
  }

  .section-header h2 {
    font-size: 1.4rem;
  }

  .section-header h3 {
    font-size: 2rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .technician-image {
    height: 250px;
  }

  .pest-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .pest-image {
    height: 100px;
  }

  .pest-name {
    font-size: 1rem;
  }

  .pest-info {
    padding: 6px 12px;
    font-size: 0.8rem;
  }

  .pest-info a {
    color: #fff;
    text-decoration: none;
  }

  .pest-info a:hover {
    color: #fff;
    text-decoration: none;
  }

  .process-image {
    height: 200px;
  }

  .process-content {
    padding: 20px;
  }

  .process-content h3 {
    font-size: 1.5rem;
  }

  .process-content p {
    font-size: 1rem;
  }

  .welcome-text h2 {
    font-size: 1.6rem;
  }

  /* Floating WhatsApp Button - Mobile */
  .floating-whatsapp {
    bottom: 15px;
    right: 15px;
  }

  .floating-whatsapp a {
    width: 50px;
    height: 50px;
    font-size: 25px;
  }

  /* Anti Rayap Hero Responsive - Small Mobile */
  .hero-image-container {
    margin: 0 10px;
  }

  .hero-termite-image {
    height: 200px;
  }

  .overlay-line-1 {
    font-size: 1rem;
  }

  .overlay-line-2,
  .overlay-line-3 {
    font-size: 0.8rem;
  }

  /* Why Termites Dangerous Responsive - Mobile */
  .danger-content {
    gap: 30px;
  }

  .danger-image img {
    height: 250px;
  }

  .danger-text h2 {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }

  .reason-item h3 {
    font-size: 1.2rem;
  }

  .reason-item li {
    font-size: 0.95rem;
    padding-left: 20px;
  }

  /* Treatment Methods Responsive - Tablet */
  .treatment-methods .section-title {
    font-size: 2rem;
    margin-bottom: 40px;
  }

  .treatment-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .treatment-block {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .treatment-block-vertical {
    gap: 20px;
  }

  .treatment-content h3 {
    font-size: 1.6rem;
  }

  .treatment-description p {
    font-size: 1rem;
  }

  .treatment-image img {
    height: 250px;
  }

  /* Treatment Methods Responsive - Mobile */
  .treatment-methods .section-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }

  .treatment-grid {
    gap: 30px;
  }

  .treatment-block {
    gap: 15px;
  }

  .treatment-block-vertical {
    gap: 15px;
  }

  .treatment-content h3 {
    font-size: 1.4rem;
  }

  .treatment-subtitle {
    font-size: 0.9rem;
  }

  .treatment-description p {
    font-size: 0.95rem;
  }

  .treatment-advantages h4 {
    font-size: 1.1rem;
  }

  .treatment-advantages li {
    font-size: 0.9rem;
  }

  .treatment-image img {
    height: 200px;
  }

  .about-hero {
    padding: 80px 0 40px;
  }

  .vision-box,
  .mission-box {
    padding: 30px;
    margin: 0 20px;
  }

  .vision-box h3,
  .mission-box h3 {
    font-size: 1.6rem;
  }

  .about-content p {
    font-size: 1rem;
  }

  .welcome-text p {
    font-size: 0.9rem;
  }

  .about-hero {
    padding: 60px 0 30px;
  }

  .vision-box,
  .mission-box {
    padding: 25px;
    margin: 0 15px;
  }

  .vision-box h3,
  .mission-box h3 {
    font-size: 1.4rem;
  }

  .about-content p {
    font-size: 0.95rem;
  }

  .mission-list li {
    font-size: 1rem;
    padding-left: 25px;
  }

  .contact-hero {
    padding: 100px 0 40px;
  }

  /* Service Pages Responsive */
  .anti-rayap-hero .hero-title,
  .pest-control-hero .hero-title {
    font-size: 2.5rem;
  }

  .service-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

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

  .contact-content h2 {
    font-size: 2rem;
  }

  .contact-content h3 {
    font-size: 1.6rem;
  }

  .contact-phone a {
    font-size: 2rem;
  }

  /* Why Choose ASPIDA Responsive - Tablet */
  .why-choose-aspida .section-title {
    font-size: 2rem;
    margin-bottom: 40px;
  }

  .features-container {
    padding: 30px 15px;
    margin: 0 20px 25px 20px;
  }

  .feature-item h3 {
    font-size: 1.1rem;
  }

  .feature-item p {
    font-size: 1rem;
  }

  .contact-cta .cta-button {
    padding: 12px 25px;
    font-size: 1rem;
  }

  /* Why Choose ASPIDA Responsive - Mobile */
  .why-choose-aspida .section-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }

  .features-container {
    padding: 25px 10px;
    margin: 0 15px 20px 15px;
    flex-direction: column;
    gap: 20px;
  }

  .feature-item {
    padding: 15px 5px;
  }

  .feature-item h3 {
    font-size: 1rem;
  }

  .feature-item p {
    font-size: 0.9rem;
  }

  .feature-divider {
    display: none;
  }

  .contact-cta .cta-button {
    padding: 10px 20px;
    font-size: 0.9rem;
  }

  /* Price List Responsive - Tablet */
  .price-card {
    padding: 25px;
  }

  .card-header h3 {
    font-size: 1.2rem;
  }

  .card-content {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .card-illustration {
    width: 120px;
    height: 120px;
    margin: 0 auto;
  }

  .card-footer {
    flex-direction: column;
    align-items: stretch;
    gap: 15px;
  }

  .btn-order {
    text-align: center;
    padding: 10px 20px;
    font-size: 0.9rem;
  }

  /* Price List Responsive - Mobile */
  .price-card {
    padding: 20px;
    margin: 0 10px;
  }

  .card-header h3 {
    font-size: 1.1rem;
  }

  .price-card .card-content {
    display: block;
  }

  .hot-promo {
    font-size: 0.7rem;
    padding: 4px 12px;
  }

  .price-section h4 {
    font-size: 1rem;
  }

  .table-row .area,
  .table-row .price {
    font-size: 0.9rem;
  }

  .card-illustration {
    width: 100px;
    height: 100px;
  }

  .service-notes p {
    font-size: 0.8rem;
  }

  .btn-order {
    padding: 8px 16px;
    font-size: 0.8rem;
  }

  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .welcome-image img {
    width: 200px;
    height: 200px;
  }

  .contact-hero {
    padding: 80px 0 30px;
  }

  .contact-content h2 {
    font-size: 1.8rem;
  }

  .contact-content h3 {
    font-size: 1.4rem;
  }

  .contact-phone a {
    font-size: 1.8rem;
  }

  /* Responsive fix: Contact hero font size smaller on mobile */
  @media (max-width: 480px) {
    .contact-hero .contact-content h2 {
      font-size: 1.5rem;
    }
    .contact-hero .contact-content h3 {
      font-size: 1.2rem;
    }
    .contact-hero .contact-phone a {
      font-size: 1.4rem;
    }
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .contact-item {
    padding: 20px;
  }

  .contact-icon {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }

  /* Service Pages Mobile Responsive */
  .anti-rayap-hero .hero-title,
  .pest-control-hero .hero-title {
    font-size: 2rem;
  }

  /* Anti Rayap Hero Responsive - Tablet */
  .hero-image-container {
    max-width: 600px;
  }

  .hero-termite-image {
    height: 300px;
  }

  .overlay-line-1 {
    font-size: 1.2rem;
  }

  .overlay-line-2,
  .overlay-line-3 {
    font-size: 1rem;
  }

  .pest-types .pest-grid {
    grid-template-columns: 1fr;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }

  .service-features .feature-item {
    padding: 15px;
  }

  .service-features .feature-item i {
    font-size: 1.5rem;
  }

  /* Why Termites Dangerous Responsive - Tablet */
  .danger-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .danger-text h2 {
    font-size: 2rem;
  }

  .reason-item h3 {
    font-size: 1.3rem;
  }

  .reason-item li {
    font-size: 1rem;
  }

  /* Anti Rayap Hero Responsive - Mobile */
  .hero-image-container {
    max-width: 100%;
    margin: 0 15px;
  }

  .hero-termite-image {
    height: 250px;
  }

  .overlay-line-1 {
    font-size: 1.1rem;
  }

  .overlay-line-2,
  .overlay-line-3 {
    font-size: 0.9rem;
  }
}
