/* OneJasa.com - Water Theme Styles */

/* CSS Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.6;
  color: #334155;
  background: linear-gradient(135deg, #f0fdff 0%, #e0f7ff 50%, #f0fdff 100%);
  overflow-x: hidden;
}

/* Skip Link */
.skip-link {
  position: absolute;
  top: -40px;
  left: 6px;
  background: #0891b2;
  color: white;
  padding: 8px;
  text-decoration: none;
  border-radius: 4px;
  z-index: 1000;
  transition: top 0.3s;
}

.skip-link:focus {
  top: 6px;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.5rem;
}

.text-gradient {
  background: linear-gradient(135deg, #0891b2, #0284c7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 0.75rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.875rem;
  line-height: 1;
}

.btn-primary {
  background: linear-gradient(135deg, #0891b2, #0284c7);
  color: white;
  box-shadow: 0 4px 12px rgba(8, 145, 178, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(8, 145, 178, 0.4);
}

.btn-secondary {
  background: white;
  color: #0891b2;
  border: 2px solid #0891b2;
}

.btn-secondary:hover {
  background: #0891b2;
  color: white;
}

.btn-outline {
  background: transparent;
  color: #0891b2;
  border: 2px solid #0891b2;
}

.btn-outline:hover {
  background: #0891b2;
  color: white;
}

.btn-outline-white {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.btn-outline-white:hover {
  background: white;
  color: #0891b2;
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.8rem;
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1rem;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(8, 145, 178, 0.1);
  transition: all 0.3s ease;
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: #0891b2;
  font-weight: 700;
  font-size: 1.25rem;
}

.logo-icon {
  position: relative;
  color: #0891b2;
}

.logo-pulse {
  position: absolute;
  top: -2px;
  right: -2px;
  width: 8px;
  height: 8px;
  background: #0284c7;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.2);
  }
}

.logo-text {
  background: linear-gradient(135deg, #0891b2, #0284c7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Navigation */
.nav-desktop {
  display: none;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  color: #64748b;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  cursor: pointer;
}

.nav-link:hover {
  color: #0891b2;
}

.header-cta {
  display: none;
  align-items: center;
  gap: 0.75rem;
}

/* Mobile Menu */
.mobile-menu-btn {
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-menu-btn span {
  width: 20px;
  height: 2px;
  background: #0891b2;
  transition: all 0.3s ease;
}

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

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

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

.nav-mobile {
  position: fixed;
  top: 4rem;
  left: 0;
  right: 0;
  background: white;
  border-bottom: 1px solid rgba(8, 145, 178, 0.1);
  transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 999;
}

.nav-mobile.active {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.nav-mobile-content {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.nav-mobile-link {
  color: #64748b;
  text-decoration: none;
  font-weight: 500;
  padding: 0.75rem;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
  cursor: pointer;
}

.nav-mobile-link:hover {
  color: #0891b2;
  background: rgba(8, 145, 178, 0.05);
}

.nav-mobile-cta {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(8, 145, 178, 0.1);
}

/* Hero Section */
.hero {
  position: relative;
  padding: 8rem 0 4rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.hero-circle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
  animation: float 6s ease-in-out infinite;
}

.hero-circle-1 {
  top: 10%;
  left: 10%;
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, #0891b2, #0284c7);
  animation-delay: 0s;
}

.hero-circle-2 {
  bottom: 10%;
  right: 10%;
  width: 400px;
  height: 400px;
  background: linear-gradient(135deg, #0284c7, #0369a1);
  animation-delay: 3s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
  }
}

.hero-content {
  display: grid;
  gap: 3rem;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #ecfdf5, #d1fae5);
  color: #065f46;
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-weight: 600;
  font-size: 0.875rem;
  border: 1px solid #a7f3d0;
  animation: pulse 2s infinite;
  width: fit-content;
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin: 1rem 0;
}

.hero-description {
  font-size: 1.125rem;
  color: #64748b;
  margin-bottom: 2rem;
  max-width: 600px;
}

.hero-benefits {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin: 2rem 0;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #475569;
  font-weight: 500;
  font-size: 0.875rem;
}

.benefit-item svg {
  color: #0891b2;
  flex-shrink: 0;
}

.hero-cta {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 2rem 0;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 2rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #059669;
  font-size: 0.875rem;
  font-weight: 500;
}

.trust-item svg {
  color: #059669;
}

/* Hero Illustration */
.hero-illustration {
  position: relative;
}

.service-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  background: white;
  padding: 2rem;
  border-radius: 1.5rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(8, 145, 178, 0.1);
}

.service-card {
  text-align: center;
  padding: 1.5rem;
  border-radius: 1rem;
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-card-1 {
  background: linear-gradient(135deg, #f0fdff, #e0f7ff);
  grid-column: span 2;
}

.service-card-2 {
  background: linear-gradient(135deg, #ecfdf5, #d1fae5);
}

.service-card-3 {
  background: linear-gradient(135deg, #eff6ff, #dbeafe);
}

.service-card-icon {
  width: 4rem;
  height: 4rem;
  margin: 0 auto 1rem;
  background: linear-gradient(135deg, #0891b2, #0284c7);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.service-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 0.5rem;
}

.service-card p {
  color: #64748b;
  font-size: 0.875rem;
}

/* Section Styles */
section {
  padding: 4rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: #1e293b;
}

.section-description {
  font-size: 1.125rem;
  color: #64748b;
  max-width: 800px;
  margin: 0 auto;
}

/* Services Section */
.services {
  background: white;
}

.services-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 3rem;
}

.service-item {
  background: white;
  padding: 2rem;
  border-radius: 1.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(8, 145, 178, 0.1);
  transition: all 0.3s ease;
}

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

.service-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: white;
  transition: transform 0.3s ease;
}

.service-icon-1 {
  background: linear-gradient(135deg, #0891b2, #0284c7);
}

.service-icon-2 {
  background: linear-gradient(135deg, #0284c7, #0369a1);
}

.service-icon-3 {
  background: linear-gradient(135deg, #0369a1, #075985);
}

.service-item:hover .service-icon {
  transform: scale(1.1);
}

.service-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1rem;
}

.service-description {
  color: #64748b;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

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

.service-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #475569;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.service-features li::before {
  content: "";
  width: 6px;
  height: 6px;
  background: #0891b2;
  border-radius: 50%;
  flex-shrink: 0;
}

/* Additional Services */
.additional-services {
  background: linear-gradient(135deg, #f0fdff, #e0f7ff);
  padding: 2rem;
  border-radius: 1.5rem;
  margin-top: 3rem;
}

.additional-title {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 2rem;
}

.additional-grid {
  display: grid;
  gap: 1.5rem;
}

.additional-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: white;
  padding: 1.5rem;
  border-radius: 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.additional-item:hover {
  transform: translateY(-2px);
}

.additional-icon {
  width: 3rem;
  height: 3rem;
  background: linear-gradient(135deg, #0891b2, #0284c7);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
}

.additional-item h4 {
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 0.25rem;
}

.additional-item p {
  color: #64748b;
  font-size: 0.875rem;
}

/* Pricing Section */
.pricing {
  background: linear-gradient(135deg, #f8fafc, #f0fdff);
}

.pricing-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #ecfdf5, #d1fae5);
  color: #065f46;
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-weight: 600;
  font-size: 0.875rem;
  border: 1px solid #a7f3d0;
  margin-bottom: 1rem;
}

.pricing-note {
  color: #64748b;
  font-size: 0.875rem;
  margin-top: 0.5rem;
}

.pricing-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 3rem;
}

.pricing-card {
  background: white;
  border-radius: 1.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(8, 145, 178, 0.1);
  overflow: hidden;
  transition: all 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.pricing-header {
  padding: 2rem 2rem 1rem;
  text-align: center;
  position: relative;
}

.pricing-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, #0891b2, #0284c7);
}

.pricing-discount {
  display: inline-block;
  background: linear-gradient(135deg, #ecfdf5, #d1fae5);
  color: #065f46;
  padding: 0.25rem 0.75rem;
  border-radius: 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  border: 1px solid #a7f3d0;
  margin-bottom: 1rem;
}

.pricing-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 0.5rem;
}

.pricing-subtitle {
  color: #64748b;
  font-size: 0.875rem;
}

.pricing-content {
  padding: 0 2rem 2rem;
}

.pricing-items {
  margin-bottom: 2rem;
}

.pricing-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  background: linear-gradient(135deg, #ffffff, #f0fdff);
  border: 1px solid rgba(8, 145, 178, 0.1);
  border-radius: 0.75rem;
  margin-bottom: 0.75rem;
  transition: all 0.3s ease;
}

.pricing-item:hover {
  box-shadow: 0 4px 12px rgba(8, 145, 178, 0.1);
}

.pricing-price {
  text-align: right;
}

.price-main {
  font-weight: 700;
  font-size: 1.125rem;
  color: #1e293b;
}

.price-discount {
  font-size: 0.75rem;
  color: #059669;
  font-weight: 600;
}

.pricing-cta {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* Special Offer */
.special-offer {
  background: linear-gradient(135deg, #0891b2, #0284c7);
  color: white;
  padding: 2rem;
  border-radius: 1.5rem;
  text-align: center;
}

.special-offer h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.special-offer p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.5rem;
}

/* Process Section */
.process {
  background: white;
}

.process-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 3rem;
  position: relative;
}

.process-item {
  background: white;
  padding: 2rem;
  border-radius: 1.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(8, 145, 178, 0.1);
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
}

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

.process-number {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2rem;
  height: 2rem;
  background: linear-gradient(135deg, #0891b2, #0284c7);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.875rem;
}

.process-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: white;
  transition: transform 0.3s ease;
}

.process-icon-1 {
  background: linear-gradient(135deg, #0891b2, #0284c7);
}

.process-icon-2 {
  background: linear-gradient(135deg, #0284c7, #0369a1);
}

.process-icon-3 {
  background: linear-gradient(135deg, #0369a1, #075985);
}

.process-icon-4 {
  background: linear-gradient(135deg, #075985, #0c4a6e);
}

.process-item:hover .process-icon {
  transform: scale(1.1);
}

.process-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1rem;
}

.process-description {
  color: #64748b;
  line-height: 1.6;
}

/* Time Estimate */
.time-estimate {
  background: linear-gradient(135deg, #f0fdff, #e0f7ff);
  padding: 2rem;
  border-radius: 1.5rem;
  text-align: center;
}

.time-estimate h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 2rem;
}

.time-grid {
  display: grid;
  gap: 1.5rem;
}

.time-item {
  background: white;
  padding: 1.5rem;
  border-radius: 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.time-number {
  font-size: 2rem;
  font-weight: 800;
  color: #0891b2;
  margin-bottom: 0.5rem;
}

.time-label {
  color: #64748b;
  font-size: 0.875rem;
}

/* Service Area Section */
.service-area {
  background: linear-gradient(135deg, #f8fafc, #f0fdff);
}

.service-area-content {
  display: grid;
  gap: 3rem;
  align-items: start;
}

.area-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.area-header svg {
  color: #0891b2;
}

.area-header h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #1e293b;
}

.area-description {
  font-size: 1.125rem;
  color: #64748b;
  margin-bottom: 2rem;
}

.area-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.area-item {
  background: white;
  padding: 0.75rem 1rem;
  border-radius: 2rem;
  border: 1px solid rgba(8, 145, 178, 0.2);
  color: #475569;
  font-weight: 500;
  font-size: 0.875rem;
  text-align: center;
  transition: all 0.3s ease;
}

.area-item:hover {
  background: rgba(8, 145, 178, 0.05);
  border-color: #0891b2;
}

.emergency-service {
  background: linear-gradient(135deg, #0891b2, #0284c7);
  color: white;
  padding: 1.5rem;
  border-radius: 1rem;
}

.emergency-service h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.emergency-service p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1rem;
  font-size: 0.875rem;
}

/* Scheduling Card */
.scheduling-card {
  background: white;
  border-radius: 1.5rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(8, 145, 178, 0.1);
  overflow: hidden;
}

.scheduling-header {
  padding: 2rem 2rem 1rem;
  text-align: center;
}

.scheduling-icon {
  width: 4rem;
  height: 4rem;
  background: linear-gradient(135deg, #0891b2, #0284c7);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin: 0 auto 1rem;
}

.scheduling-header h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 0.5rem;
}

.scheduling-time {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: #64748b;
  font-size: 0.875rem;
}

.scheduling-time svg {
  color: #0891b2;
}

.scheduling-steps {
  padding: 0 2rem;
  margin-bottom: 2rem;
}

.scheduling-step {
  display: flex;
  align-items: start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.step-number {
  width: 1.5rem;
  height: 1.5rem;
  background: rgba(8, 145, 178, 0.1);
  color: #0891b2;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.75rem;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.step-content h4 {
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 0.25rem;
}

.step-content p {
  color: #64748b;
  font-size: 0.875rem;
}

.available-slots {
  padding: 0 2rem 2rem;
}

.available-slots h4 {
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 1rem;
}

.slots-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.slot-btn {
  padding: 0.75rem;
  background: linear-gradient(135deg, #f0fdff, #e0f7ff);
  border: 1px solid rgba(8, 145, 178, 0.2);
  border-radius: 0.5rem;
  color: #475569;
  font-weight: 500;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.slot-btn:hover {
  background: linear-gradient(135deg, #e0f7ff, #cffafe);
  border-color: #0891b2;
}

/* Testimonials Section */
.testimonials {
  background: white;
}

.testimonials-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 3rem;
}

.testimonial-card {
  background: white;
  padding: 2rem;
  border-radius: 1.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(8, 145, 178, 0.1);
  position: relative;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.testimonial-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, #0891b2, #0284c7);
  border-radius: 1.5rem 1.5rem 0 0;
}

.testimonial-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.testimonial-header svg {
  color: rgba(8, 145, 178, 0.3);
}

.testimonial-rating {
  display: flex;
  gap: 0.25rem;
}

.star {
  color: #fbbf24;
  font-size: 1rem;
}

.testimonial-text {
  color: #475569;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid rgba(8, 145, 178, 0.1);
}

.author-name {
  font-weight: 600;
  color: #1e293b;
}

.author-location {
  color: #64748b;
  font-size: 0.875rem;
}

.testimonial-service {
  background: rgba(8, 145, 178, 0.1);
  color: #0891b2;
  padding: 0.25rem 0.75rem;
  border-radius: 1rem;
  font-size: 0.75rem;
  font-weight: 600;
}

/* Trust Indicators */
.trust-indicators {
  background: linear-gradient(135deg, #f0fdff, #e0f7ff);
  padding: 2rem;
  border-radius: 1.5rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  text-align: center;
}

.trust-stat {
  background: white;
  padding: 1.5rem;
  border-radius: 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.trust-number {
  font-size: 2rem;
  font-weight: 800;
  color: #0891b2;
  margin-bottom: 0.5rem;
}

.trust-label {
  color: #64748b;
  font-size: 0.875rem;
}

/* FAQ Section */
.faq {
  background: linear-gradient(135deg, #f8fafc, #f0fdff);
}

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

.faq-item {
  background: white;
  border-radius: 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(8, 145, 178, 0.1);
  margin-bottom: 1rem;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 1.5rem;
  background: none;
  border: none;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  color: #1e293b;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: rgba(8, 145, 178, 0.02);
}

.faq-icon {
  color: #0891b2;
  transition: transform 0.3s ease;
}

.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(180deg);
}

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

.faq-answer.active {
  max-height: 200px;
}

.faq-answer p {
  padding: 0 1.5rem 1.5rem;
  color: #64748b;
  line-height: 1.6;
  border-top: 1px solid rgba(8, 145, 178, 0.1);
  margin-top: 0;
}

/* FAQ CTA */
.faq-cta {
  background: linear-gradient(135deg, #0891b2, #0284c7);
  color: white;
  padding: 2rem;
  border-radius: 1.5rem;
  text-align: center;
  margin-top: 3rem;
}

.faq-cta h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.faq-cta p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.5rem;
}

.faq-cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

/* About Section */
.about {
  background: white;
}

.about-features {
  display: grid;
  gap: 2rem;
  margin-bottom: 3rem;
}

/* .about-feature {
  background: white;
  padding: 2rem;
  border-radius: 1.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(8, 145, 178, 0.1);
  text-align: center;
  transition: all 0.3s ease;
} */

.about-feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.about-feature-icon {
  width: 4rem;
  height: 4rem;
  background: linear-gradient(135deg, #0891b2, #0284c7);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin: 0 auto 1.5rem;
  transition: transform 0.3s ease;
}
/* --- About --- */
.about-features{
  display: flex;
  justify-content: center;       /* pusatkan horizontal */
  align-items: stretch;          /* biar tinggi kartu seragam */
  gap: 28px;                     /* jarak antar kartu */
  flex-wrap: wrap;               /* rapi saat layar kecil */
  margin: 40px auto 0;           /* center container */
  max-width: 1200px;             /* opsional: batasi lebar blok */
}

.about-feature{
  flex: 0 0 340px;               /* kunci lebar item, tidak melebar */
  max-width: 100%;
  background: #fff;
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 8px 24px rgba(0,0,0,.06);
  display: flex;                 /* biar konten rata vertikal */
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.about-features { margin-bottom: 48px; }



/* Responsif */
@media (max-width: 768px){
  .about-feature{ flex: 1 1 100%; } /* stack di mobile, tetap center */
}


.about-feature:hover .about-feature-icon {
  transform: scale(1.1);
}

.about-feature h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1rem;
}

.about-feature p {
  color: #64748b;
  line-height: 1.6;
}

.about-content {
  display: grid;
  gap: 2rem;
  align-items: start;
}

.about-text h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1rem;
}

.about-text p {
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.about-list {
  list-style: none;
}

.about-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #475569;
  margin-bottom: 0.5rem;
}

.about-list li::before {
  content: "";
  width: 6px;
  height: 6px;
  background: #0891b2;
  border-radius: 50%;
  flex-shrink: 0;
}

.about-vision {
  background: white;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(8, 145, 178, 0.1);
}

.about-vision h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1.5rem;
}

.vision-mission {
  display: grid;
  gap: 1.5rem;
}

.vision h5,
.mission h5 {
  font-weight: 600;
  color: #0891b2;
  margin-bottom: 0.5rem;
}

.vision p,
.mission p {
  color: #64748b;
  font-size: 0.875rem;
  line-height: 1.6;
}

/* Contact Section */
.contact {
  background: linear-gradient(135deg, #f8fafc, #f0fdff);
}

.contact-content {
  display: grid;
  gap: 3rem;
  align-items: start;
}

.contact-info h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1rem;
}

.contact-info > p {
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.contact-methods {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.contact-method {
  background: white;
  padding: 1.5rem;
  border-radius: 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(8, 145, 178, 0.1);
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: all 0.3s ease;
}

.contact-method:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.contact-method-icon {
  width: 3rem;
  height: 3rem;
  background: linear-gradient(135deg, #0891b2, #0284c7);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
}

.contact-method-content h4 {
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 0.25rem;
}

.contact-method-content a {
  color: #0891b2;
  text-decoration: none;
  font-weight: 600;
}

.contact-method-content a:hover {
  text-decoration: underline;
}

.contact-method-content p {
  color: #64748b;
  font-size: 0.875rem;
  margin-top: 0.25rem;
}

/* Operating Hours */
.operating-hours {
  background: linear-gradient(135deg, #0891b2, #0284c7);
  color: white;
  padding: 1.5rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.operating-hours-icon {
  flex-shrink: 0;
}

.operating-hours-content h4 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.operating-hours-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.875rem;
}

/* Contact Form */
.contact-form-container {
  background: white;
  border-radius: 1.5rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(8, 145, 178, 0.1);
  overflow: hidden;
}

.contact-form-header {
  padding: 2rem 2rem 1rem;
  text-align: center;
}

.contact-form-header h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 0.5rem;
}

.contact-form-header p {
  color: #64748b;
}

.contact-form {
  padding: 0 2rem 2rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  color: #374151;
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #d1d5db;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #0891b2;
  box-shadow: 0 0 0 3px rgba(8, 145, 178, 0.1);
}

.form-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.form-disclaimer {
  text-align: center;
  color: #64748b;
  font-size: 0.875rem;
}

.form-disclaimer a {
  color: #0891b2;
  text-decoration: none;
}

.form-disclaimer a:hover {
  text-decoration: underline;
}

/* Footer */
.footer {
  background: #1e293b;
  color: white;
  padding: 4rem 0 2rem;
}

.footer-content {
  display: grid;
  gap: 2rem;
  margin-bottom: 3rem;
}

.footer-section h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: white;
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.footer-logo svg {
  color: #0891b2;
}

.footer-description {
  color: #94a3b8;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  width: 2.5rem;
  height: 2.5rem;
  background: #334155;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #94a3b8;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: #0891b2;
  color: white;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: #94a3b8;
  text-decoration: none;
  transition: color 0.3s ease;
  cursor: pointer;
}

.footer-links a:hover {
  color: #0891b2;
}

.footer-contact {
  display: grid;
  gap: 1rem;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #94a3b8;
}

.footer-contact-item svg {
  color: #0891b2;
  flex-shrink: 0;
}

.footer-contact-item a {
  color: #94a3b8;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-contact-item a:hover {
  color: #0891b2;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid #334155;
}

.footer-copyright {
  color: #94a3b8;
  font-size: 0.875rem;
}

.footer-bottom-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
}

.footer-bottom-links a,
.footer-bottom-links button {
  color: #94a3b8;
  text-decoration: none;
  font-size: 0.875rem;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.3s ease;
}

.footer-bottom-links a:hover,
.footer-bottom-links button:hover {
  color: #0891b2;
}

/* Mobile CTA */
.mobile-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(8, 145, 178, 0.1);
  padding: 1rem;
  display: none;
  gap: 0.75rem;
}

.mobile-cta-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem;
  border-radius: 0.75rem;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.875rem;
  transition: all 0.3s ease;
}

.mobile-cta-whatsapp {
  background: linear-gradient(135deg, #059669, #047857);
  color: white;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

.mobile-cta-phone {
  background: transparent;
  color: #0891b2;
  border: 2px solid #0891b2;
}

.mobile-cta-phone:hover {
  background: #0891b2;
  color: white;
}

/* Toast */
.toast {
  position: fixed;
  bottom: 6rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1001;
  background: #1e293b;
  color: white;
  padding: 1rem 1.5rem;
  border-radius: 0.75rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.toast.show {
  opacity: 1;
  visibility: visible;
}

.toast-content {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.toast-content svg {
  color: #059669;
  flex-shrink: 0;
}

/* Responsive Design */
@media (min-width: 640px) {
  .hero-cta {
    flex-direction: row;
  }

  .hero-benefits {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .faq-cta-buttons {
    flex-direction: row;
    justify-content: center;
  }

  .trust-indicators {
    grid-template-columns: repeat(4, 1fr);
  }

  .time-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .area-list {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 768px) {
  .nav-desktop {
    display: flex;
  }

  .header-cta {
    display: flex;
  }

  .mobile-menu-btn {
    display: none;
  }

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

  .hero-content {
    grid-template-columns: 1fr 1fr;
  }

  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .service-area-content {
    grid-template-columns: 1fr 1fr;
  }

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

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

  .about-content {
    grid-template-columns: 1fr 1fr;
  }

  .contact-content {
    grid-template-columns: 1fr 1fr;
  }

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

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }

  .additional-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .process-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

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

@media (max-width: 767px) {
  .mobile-cta {
    display: flex;
  }

  body {
    padding-bottom: 5rem;
  }

  .hero {
    padding: 6rem 0 2rem;
  }

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

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

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.hidden {
  display: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Focus Styles */
*:focus-visible {
  outline: 2px solid #0891b2;
  outline-offset: 2px;
}

/* Print Styles */
@media print {
  .header,
  .mobile-cta,
  .toast {
    display: none !important;
  }

  body {
    background: white !important;
    color: black !important;
  }

  .btn {
    border: 1px solid black !important;
    background: white !important;
    color: black !important;
  }
}

.nav-mobile-cta {
    padding: 16px;
    border-top: 1px solid #eee;
    margin-top: auto;
}
