/* Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #003d5c;
  --secondary-color: #005a82;
  --accent-color: #0088cc;
  --dark-blue: #002840;
  --light-blue: #e6f3f9;
  --text-dark: #333333;
  --text-light: #666666;
  --white: #ffffff;
  --gradient: linear-gradient(135deg, #003d5c 0%, #0088cc 100%);
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%; /* Prevent font scaling in landscape */
}

body {
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Prevent body scroll when menu is open */
body.menu-open {
  overflow: hidden;
}

/* Improve touch targets */
button,
a,
input,
select,
textarea {
  -webkit-tap-highlight-color: rgba(0, 136, 204, 0.3);
  touch-action: manipulation;
}

/* Image optimization */
img {
  max-width: 100%;
  height: auto;
  display: block;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}

/* Lazy loading placeholder */
img[loading="lazy"] {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

@media (max-width: 580px) {
  .container {
    padding: 0 15px;
  }
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  background: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.15);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 20px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
}

.logo-img {
  height: 60px;
  width: auto;
  object-fit: contain;
  display: block;
}

.logo-text {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary-color);
  letter-spacing: -0.5px;
  white-space: nowrap;
}

.logo i {
  font-size: 2.5rem;
  display: flex;
  align-items: center;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-link {
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-color);
  transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--accent-color);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-hours {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  border-radius: 8px;
  color: white;
}

.nav-hours i {
  font-size: 1.5rem;
  color: var(--accent-color);
}

.hours-info {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}

.hours-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hours-time {
  font-size: 0.85rem;
  font-weight: 500;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  z-index: 1001;
  padding: 10px;
  background: transparent;
  border: none;
}

.hamburger span {
  width: 28px;
  height: 3px;
  background: var(--primary-color);
  transition: all 0.3s ease;
  border-radius: 3px;
  display: block;
}

/* Page Header for Internal Pages */
.page-header {
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--secondary-color) 100%
  );
  padding: 120px 0 80px;
  text-align: center;
  color: white;
  margin-top: 70px;
}

.page-header h1 {
  font-size: 3rem;
  margin-bottom: 15px;
  font-weight: 700;
}

.page-header p {
  font-size: 1.3rem;
  opacity: 0.95;
}

.page-content {
  padding: 80px 0;
}

/* Extra top space for fixed navbar on article detail page */
.article-page {
  padding-top: 120px;
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  background: url("https://images.unsplash.com/photo-1541888946425-d81bb19240f5?w=1920&q=80")
    center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  overflow: hidden;
}

/* Responsive hero background for better mobile performance */
@media (max-width: 1024px) {
  .hero {
    background-image: url("https://images.unsplash.com/photo-1541888946425-d81bb19240f5?w=1280&q=70");
  }
}

@media (max-width: 640px) {
  .hero {
    background-image: url("https://images.unsplash.com/photo-1541888946425-d81bb19240f5?w=768&q=60");
  }
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.3) 0%,
    rgba(0, 0, 0, 0.4) 100%
  );
  z-index: 0;
}

.hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: none;
  z-index: 0;
}

/* Defer offscreen content rendering */
.about,
.products,
.services,
.why-choose,
.gallery,
.cara-pemesanan,
.contact,
.footer {
  content-visibility: auto;
  contain-intrinsic-size: 800px;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 100px 20px 0 20px;
  animation: fadeInUp 1s ease;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow:
    2px 2px 8px rgba(0, 0, 0, 0.8),
    0 0 20px rgba(0, 0, 0, 0.6),
    0 0 40px rgba(0, 0, 0, 0.4);
}

.hero-subtitle {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #ffffff;
  text-shadow:
    2px 2px 8px rgba(0, 0, 0, 0.8),
    0 0 15px rgba(0, 0, 0, 0.6);
}

.hero-description {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  line-height: 1.8;
  color: #ffffff;
  text-shadow:
    1px 1px 6px rgba(0, 0, 0, 0.8),
    0 0 10px rgba(0, 0, 0, 0.5);
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 15px 40px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--white);
  color: var(--primary-color);
}

.btn-primary:hover {
  background: var(--light-blue);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-secondary:hover {
  background: var(--white);
  color: var(--primary-color);
  transform: translateY(-3px);
}

.scroll-down {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
}

.scroll-down i {
  font-size: 2rem;
  color: var(--white);
}

/* Section Styles */
section {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 15px;
  font-weight: 700;
}

.divider {
  width: 80px;
  height: 4px;
  background: var(--gradient);
  margin: 0 auto 20px;
  border-radius: 2px;
}

.section-header p {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

/* About Section */
.about {
  background: var(--light-blue);
}

.about-content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
  align-items: center;
}

.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 61, 92, 0.2);
}

.experience-badge {
  position: absolute;
  bottom: -30px;
  right: -30px;
  background: var(--gradient);
  width: 150px;
  height: 150px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.badge-content {
  text-align: center;
}

.badge-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
}

.badge-text {
  font-size: 0.9rem;
  line-height: 1.2;
}

.about-text h3 {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.about-text p {
  margin-bottom: 20px;
  color: var(--text-light);
  line-height: 1.8;
}

.features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-top: 30px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 8px 0;
}

.feature-item i {
  color: var(--accent-color);
  font-size: 1.25rem;
  min-width: 22px;
  flex-shrink: 0;
  font-weight: 400;
  opacity: 0.9;
}

.feature-item span {
  color: var(--text-dark);
  font-weight: 500;
  line-height: 1.5;
}

/* Vision & Mission Compact */
.vision-mission-compact {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 30px 0;
}

.vm-item {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  padding: 35px 30px;
  border-radius: 12px;
  text-align: center;
  color: white;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.vm-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  border-color: rgba(255, 255, 255, 0.2);
}

.vm-icon {
  width: 64px;
  height: 64px;
  background: white;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  border: none;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.vm-item:hover .vm-icon {
  background: #f8f9fa;
  transform: translateY(-4px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.vm-icon i {
  font-size: 1.75rem;
  color: var(--accent-color);
  font-weight: 400;
}

.vm-icon i::before {
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
}

.vm-item h4 {
  color: white;
  font-size: 1.25rem;
  margin-bottom: 12px;
  font-weight: 600;
  letter-spacing: 0.3px;
}

.vm-item p {
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.65;
  font-weight: 400;
}

/* Products Section */
.products {
  background: var(--white);
  padding: 80px 0;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

/* Simple Product Card */
.product-card-simple {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid #e5e5e5;
}

.product-card-simple:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 61, 92, 0.15);
}

.product-card-simple .product-image {
  position: relative;
  height: 180px;
  overflow: hidden;
  background: #f8f9fa;
}

.product-card-simple .product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 20px;
  transition: transform 0.3s ease;
}

.product-card-simple:hover .product-image img {
  transform: scale(1.05);
}

.product-card-simple .product-content {
  padding: 25px 20px;
  text-align: center;
}

.product-card-simple .product-content h3 {
  font-size: 1.2rem;
  color: var(--primary-color);
  margin-bottom: 15px;
  font-weight: 700;
}

.product-card-simple .product-content p {
  color: var(--text-light);
  line-height: 1.7;
  font-size: 0.9rem;
  text-align: justify;
  margin: 0;
}

/* Legacy Product Card (keep for compatibility) */
.product-card {
  background: var(--white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.product-card:hover {
  transform: translateY(-10px);
  border-color: var(--accent-color);
  box-shadow: 0 15px 40px rgba(0, 136, 204, 0.2);
}

.product-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.1);
}

.product-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--gradient);
  color: var(--white);
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.product-content {
  padding: 30px;
}

.product-content h3 {
  font-size: 1.4rem;
  color: var(--primary-color);
  margin-bottom: 20px;
  font-weight: 700;
}

.product-specs {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
  padding: 20px;
  background: var(--light-blue);
  border-radius: 10px;
}

.spec-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
}

.spec-item i {
  color: var(--accent-color);
  font-size: 1.1rem;
  width: 20px;
}

.spec-item span {
  color: var(--text-dark);
  font-weight: 500;
}

.product-content p {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 20px;
}

.product-features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 25px;
}

.feature-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(0, 136, 204, 0.1);
  color: var(--primary-color);
  padding: 6px 15px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
}

.feature-tag i {
  font-size: 0.75rem;
  color: var(--accent-color);
}

.product-content .btn {
  width: 100%;
  text-align: center;
  padding: 12px;
}

/* Services Section */
.services {
  background: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-card {
  background: var(--white);
  padding: 40px 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: var(--accent-color);
  box-shadow: 0 15px 40px rgba(0, 136, 204, 0.2);
}

.service-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: var(--gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 2rem;
}

.service-card h3 {
  font-size: 1.3rem;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.service-card p {
  color: var(--text-light);
  line-height: 1.6;
}

/* Why Choose Us */
.why-choose {
  background: var(--primary-color);
  color: var(--white);
}

.why-choose .section-header h2,
.why-choose .section-header p {
  color: var(--white);
}

.reasons-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.reason-card {
  text-align: center;
  padding: 30px 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.reason-card:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-10px);
}

.reason-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 15px;
}

.reason-card h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
}

.reason-card p {
  color: var(--light-blue);
  line-height: 1.6;
}

/* Gallery Section */
.gallery {
  background: var(--light-blue);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  height: 300px;
  cursor: pointer;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient);
  opacity: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 0.95;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.gallery-overlay p {
  font-size: 1rem;
}

/* Contact Section */
.contact {
  background: var(--white);
}

.contact-content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
}

.contact-map {
  width: 100%;
  height: 600px;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.contact-info h3,
.contact-form h3 {
  font-size: 1.8rem;
  color: var(--primary-color);
  margin-bottom: 30px;
}

/* New Info Card Style */
.info-card {
  display: flex;
  gap: 20px;
  margin-bottom: 25px;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.info-card:hover {
  transform: translateX(5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.info-icon {
  width: 60px;
  height: 60px;
  background: #ff6b35;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(255, 107, 53, 0.3);
}

.info-details h4 {
  color: var(--primary-color);
  margin-bottom: 8px;
  font-size: 1.1rem;
  font-weight: 700;
}

.info-details p {
  color: var(--text-light);
  line-height: 1.6;
  margin: 3px 0;
  font-size: 0.95rem;
}

.info-details p strong {
  color: var(--text-dark);
  font-size: 1.05rem;
}

/* Legacy info-item (keep for compatibility) */
.info-item {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.info-item i {
  width: 50px;
  height: 50px;
  background: var(--gradient);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.info-item h4 {
  color: var(--primary-color);
  margin-bottom: 5px;
  font-size: 1.1rem;
}

.info-item p {
  color: var(--text-light);
  line-height: 1.6;
}

.contact-form {
  background: var(--light-blue);
  padding: 40px;
  border-radius: 10px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 15px;
  border: 2px solid #d1e8f2;
  border-radius: 5px;
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-color);
}

.form-group textarea {
  resize: vertical;
}

.error-message {
  display: block;
  color: #d32f2f;
  font-size: 0.85rem;
  margin-top: 5px;
  min-height: 20px;
}

.form-group input.error,
.form-group textarea.error {
  border-color: #d32f2f;
}

.form-group input.success,
.form-group textarea.success {
  border-color: #4caf50;
}

.honeypot {
  position: absolute;
  left: -9999px;
}

/* Footer */
.footer {
  background: var(--dark-blue);
  color: var(--white);
  padding: 60px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col h3 {
  font-size: 1.3rem;
  margin-bottom: 20px;
  color: var(--white);
}

.footer-col p {
  color: var(--light-blue);
  line-height: 1.8;
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: var(--light-blue);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-col ul li a:hover {
  color: var(--accent-color);
}

.footer-col ul li i {
  margin-right: 10px;
  color: var(--accent-color);
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: var(--primary-color);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: var(--accent-color);
  transform: translateY(-5px);
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--light-blue);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-20px);
  }
  60% {
    transform: translateX(-50%) translateY(-10px);
  }
}

/* Responsive Design - Mobile First Approach */

/* Tablet and Small Desktop */
@media (max-width: 968px) {
  .hamburger {
    display: flex;
  }

  .nav-hours {
    display: none;
  }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background: var(--white);
    width: 100%;
    max-width: 300px;
    height: calc(100vh - 70px);
    text-align: left;
    transition: left 0.3s ease;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    padding: 20px 0;
    overflow-y: auto;
    z-index: 999;
  }

  .nav-menu.active {
    left: 0;
  }

  /* Mobile menu overlay */
  body.menu-open::before {
    content: "";
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    animation: fadeIn 0.3s ease;
  }

  .nav-menu li {
    padding: 0;
    margin: 0;
  }

  .nav-link {
    display: block;
    padding: 15px 30px;
    border-bottom: 1px solid #f0f0f0;
  }

  .nav-link::after {
    display: none;
  }

  .nav-link:hover,
  .nav-link.active {
    background: var(--light-blue);
    color: var(--accent-color);
  }

  .hero-title {
    font-size: 2.5rem;
    line-height: 1.2;
  }

  .hero-subtitle {
    font-size: 1.3rem;
  }

  .hero-description {
    font-size: 1.1rem;
  }

  .about-content,
  .contact-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .contact-map {
    height: 400px;
  }

  .products-grid,
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .reasons-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .page-header h1 {
    font-size: 2.5rem;
  }

  .page-header p {
    font-size: 1.1rem;
  }

  /* Better touch targets */
  .btn {
    min-height: 44px;
    padding: 12px 30px;
  }

  .product-card,
  .service-card {
    padding: 20px;
  }
}

/* Mobile Devices */
@media (max-width: 580px) {
  .container {
    padding: 0 15px;
  }

  .navbar .container {
    padding: 1rem 15px;
  }

  .logo-img {
    height: 45px;
  }

  .logo-text {
    font-size: 0.9rem;
  }

  .hero {
    height: auto;
    min-height: 100vh;
  }

  .hero-content {
    padding: 120px 15px 60px;
  }

  .hero-title {
    font-size: 1.8rem;
    line-height: 1.3;
    margin-bottom: 0.8rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
  }

  .hero-description {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
  }

  .section-header h2 {
    font-size: 1.8rem;
  }

  .section-header p {
    font-size: 0.95rem;
  }

  .page-header {
    padding: 100px 0 60px;
  }

  .page-header h1 {
    font-size: 1.8rem;
  }

  .page-header p {
    font-size: 1rem;
  }

  .page-content {
    padding: 50px 0;
  }

  .products-grid,
  .services-grid,
  .reasons-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .features {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .vision-mission-compact {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .vm-icon {
    width: 68px;
    height: 68px;
  }

  .vm-icon i {
    font-size: 1.85rem;
  }

  .vm-item {
    padding: 32px 25px;
  }

  .vm-item h4 {
    font-size: 1.3rem;
  }

  .feature-item i {
    font-size: 1.3rem;
    min-width: 24px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .hero-buttons .btn {
    width: 100%;
    max-width: 300px;
  }

  .cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .cta-buttons .btn {
    width: 100%;
  }

  /* Improve readability on mobile */
  body {
    font-size: 16px;
    line-height: 1.7;
  }

  /* Better spacing for mobile */
  section {
    padding: 40px 0;
  }

  /* Card adjustments */
  .product-card,
  .service-card,
  .reason-card {
    padding: 20px 15px;
  }

  /* Contact form mobile optimization */
  .contact-form input,
  .contact-form textarea,
  .contact-form button {
    font-size: 16px; /* Prevent iOS zoom */
  }

  /* Table responsive */
  table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

/* Small Mobile Devices */
@media (max-width: 380px) {
  .hero-title {
    font-size: 1.5rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .section-header h2 {
    font-size: 1.5rem;
  }

  .page-header h1 {
    font-size: 1.5rem;
  }

  .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }

  .whatsapp-float {
    width: 50px;
    height: 50px;
    font-size: 28px;
    bottom: 15px;
    right: 15px;
  }
}

/* Landscape Mobile */
@media (max-width: 968px) and (orientation: landscape) {
  .hero {
    min-height: 100vh;
    height: auto;
  }

  .hero-content {
    padding: 100px 20px 40px;
  }

  .nav-menu {
    max-height: calc(100vh - 70px);
  }
}

/* Print Styles */
@media print {
  .navbar,
  .hamburger,
  .whatsapp-float,
  .cta-buttons,
  .footer {
    display: none;
  }

  body {
    color: #000;
    background: #fff;
  }

  a {
    text-decoration: underline;
  }
}

/* High DPI Displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .logo-img,
  .product-image img,
  .gallery-item img {
    image-rendering: -webkit-optimize-contrast;
  }
}

/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 30px;
  right: 30px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50px;
  text-align: center;
  font-size: 35px;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  animation: pulse-wa 2s infinite;
}

.whatsapp-float:hover {
  background-color: #20ba5a;
  transform: scale(1.1);
  box-shadow: 2px 2px 15px rgba(37, 211, 102, 0.5);
}

.whatsapp-float i {
  margin-top: 3px;
}

@keyframes pulse-wa {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  50% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

@media (max-width: 768px) {
  .whatsapp-float {
    width: 50px;
    height: 50px;
    font-size: 28px;
    bottom: 20px;
    right: 20px;
  }
}
/* Product Modal */
.modal {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  animation: fadeIn 0.3s ease;
}

.modal-content {
  position: relative;
  background-color: #fff;
  margin: 5% auto;
  padding: 0;
  width: 90%;
  max-width: 900px;
  border-radius: 15px;
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.3);
  animation: slideDown 0.4s ease;
  max-height: 85vh;
  overflow-y: auto;
}

.modal-close {
  position: absolute;
  right: 20px;
  top: 15px;
  font-size: 35px;
  font-weight: bold;
  color: #999;
  cursor: pointer;
  z-index: 1;
  transition: color 0.3s;
}

.modal-close:hover {
  color: #333;
}

#modalBody {
  padding: 40px;
}

#modalBody h2 {
  color: var(--primary-color);
  font-size: 2.2rem;
  margin-bottom: 20px;
  padding-top: 10px;
}

#modalBody img {
  width: 100%;
  max-height: 400px;
  object-fit: contain;
  border-radius: 10px;
  margin-bottom: 25px;
  background: #f8f9fa;
  padding: 20px;
}

#modalBody p {
  color: var(--text-light);
  line-height: 1.8;
  font-size: 1.05rem;
  margin-bottom: 15px;
}

#modalBody ul {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

#modalBody ul li {
  padding: 12px 0 12px 30px;
  position: relative;
  color: var(--text-dark);
  font-size: 1.05rem;
  line-height: 1.6;
}

#modalBody ul li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent-color);
  font-weight: bold;
  font-size: 1.3rem;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideDown {
  from {
    transform: translateY(-50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Cara Pemesanan Section */
.cara-pemesanan {
  padding: 100px 0;
  background:
    linear-gradient(rgba(0, 61, 92, 0.95), rgba(0, 61, 92, 0.95)),
    url("https://images.unsplash.com/photo-1541888946425-d81bb19240f5?auto=format&fit=crop&w=1950&q=80");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: #fff;
}

.cara-pemesanan .section-header h2 {
  color: #fff;
}

.cara-pemesanan .divider {
  background: linear-gradient(90deg, transparent, #ff6b35, transparent);
}

/* FAQ Section */
.faq-section {
  background: white;
  padding: 50px 40px;
  border-radius: 15px;
  margin: 40px 0 60px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.faq-title {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 30px;
  text-align: center;
}

.faq-item {
  border-bottom: 2px solid #e0e0e0;
  margin-bottom: 15px;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  color: var(--text-dark);
}

.faq-question:hover {
  background: var(--light-blue);
  border-radius: 8px;
}

.faq-question i.fa-question-circle {
  font-size: 1.5rem;
  color: var(--accent-color);
  flex-shrink: 0;
}

.faq-question h4 {
  flex: 1;
  font-size: 1.15rem;
  margin: 0;
  color: var(--primary-color);
}

.faq-toggle {
  font-size: 1.2rem;
  color: var(--accent-color);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.3s ease,
    padding 0.3s ease;
  padding: 0 15px 0 60px;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 15px 20px 60px;
}

.faq-answer p {
  color: var(--text-light);
  line-height: 1.8;
  font-size: 1rem;
}

.pemesanan-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin: 60px 0 50px;
}

.step-item {
  text-align: center;
  padding: 30px 20px;
  transition: transform 0.3s ease;
}

.step-item:hover {
  transform: translateY(-10px);
}

.step-icon {
  width: 100px;
  height: 100px;
  background: #ff6b35;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  transition: all 0.3s ease;
}

.step-item:hover .step-icon {
  background: #ff8555;
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
}

.step-icon i {
  font-size: 2.5rem;
  color: #fff;
}

.step-item h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: #fff;
}

.step-item p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
}

.pemesanan-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
}

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 40px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.whatsapp-primary {
  background: #ff6b35;
  color: #fff;
}

.whatsapp-primary:hover {
  background: #ff8555;
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(255, 107, 53, 0.5);
}

.whatsapp-secondary {
  background: #25d366;
  color: #fff;
}

.whatsapp-secondary:hover {
  background: #1fb854;
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

/* Area Layanan Section */
.area-layanan {
  padding: 100px 0;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.area-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.area-card {
  background: white;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border-top: 4px solid var(--primary-color);
}

.area-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.area-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--accent-color)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
}

.area-icon i {
  font-size: 2rem;
  color: white;
}

.area-card h3 {
  font-size: 1.8rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.area-card p {
  margin-bottom: 15px;
  color: var(--text-dark);
}

.area-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.area-list li {
  color: var(--text-light);
  font-size: 0.95rem;
  padding: 8px 0;
}

.area-desc {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 2px solid var(--light-blue);
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.6;
}

.coverage-info {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  color: white;
  padding: 40px;
  border-radius: 15px;
  text-align: center;
  margin-top: 50px;
}

.coverage-info h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.coverage-info p {
  font-size: 1.1rem;
  line-height: 1.8;
}

/* Harga Section */
.harga-section {
  padding: 100px 0;
  background: white;
}

.harga-intro {
  text-align: center;
  margin: 40px 0 60px;
}

.harga-highlight {
  display: inline-block;
  background: linear-gradient(135deg, #ffeaa7, #fdcb6e);
  padding: 30px 50px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(253, 203, 110, 0.3);
}

.harga-highlight i {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.harga-highlight h3 {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.harga-highlight p {
  font-size: 1.1rem;
  color: var(--text-dark);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin: 60px 0;
}

.price-card {
  background: white;
  border: 2px solid #e0e0e0;
  border-radius: 15px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.price-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  border-color: var(--accent-color);
}

.price-card.featured {
  border-color: var(--accent-color);
  border-width: 3px;
  transform: scale(1.05);
}

.price-card.featured:hover {
  transform: scale(1.08) translateY(-10px);
}

.price-badge {
  position: absolute;
  top: 20px;
  right: -35px;
  background: var(--accent-color);
  color: white;
  padding: 8px 40px;
  font-weight: 700;
  font-size: 0.85rem;
  transform: rotate(45deg);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.price-header h3 {
  font-size: 1.6rem;
  color: var(--primary-color);
  margin-bottom: 25px;
}

.price {
  margin: 30px 0;
}

.price .currency {
  font-size: 1.5rem;
  color: var(--text-light);
  vertical-align: top;
}

.price .amount {
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent-color);
}

.price .period {
  display: block;
  font-size: 1rem;
  color: var(--text-light);
  margin-top: 5px;
}

.price-features {
  list-style: none;
  padding: 0;
  margin: 30px 0;
  text-align: left;
}

.price-features li {
  padding: 12px 0;
  border-bottom: 1px solid #f0f0f0;
  color: var(--text-dark);
  font-size: 0.95rem;
}

.price-features li:last-child {
  border-bottom: none;
}

.price-features i {
  color: #2ecc71;
  margin-right: 10px;
  font-size: 1.1rem;
}

.price-btn {
  display: block;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--accent-color)
  );
  color: white;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  margin-top: 30px;
  transition: all 0.3s ease;
}

.price-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 20px rgba(0, 136, 204, 0.4);
}

.price-notes {
  background: var(--light-blue);
  padding: 40px;
  border-radius: 15px;
  border-left: 5px solid var(--accent-color);
}

.price-notes h4 {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.price-notes ul {
  list-style: none;
  padding: 0;
}

.price-notes li {
  padding: 10px 0;
  color: var(--text-dark);
  font-size: 1rem;
  line-height: 1.6;
}

/* Testimonial Section */
.testimonial-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

.testimonial-section .section-header h2,
.testimonial-section .section-header p {
  color: white;
}

.testimonial-section .divider {
  background: linear-gradient(90deg, transparent, white, transparent);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 60px;
}

.testimonial-card {
  background: white;
  padding: 35px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  color: var(--text-dark);
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.stars {
  display: flex;
  gap: 5px;
  margin-bottom: 20px;
}

.stars i {
  color: #ffd700;
  font-size: 1.2rem;
}

.testimonial-text {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 25px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
  padding-top: 20px;
  border-top: 2px solid #f0f0f0;
}

.author-avatar {
  width: 50px;
  height: 50px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--accent-color)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.author-avatar i {
  font-size: 1.5rem;
  color: white;
}

.author-info h4 {
  font-size: 1.1rem;
  color: var(--primary-color);
  margin-bottom: 5px;
}

.author-info p {
  font-size: 0.9rem;
  color: var(--text-light);
}

.testimonial-cta {
  text-align: center;
  margin-top: 60px;
}

.testimonial-cta h3 {
  font-size: 2rem;
  margin-bottom: 30px;
  color: white;
}

/* Responsive Design for New Sections */
@media (max-width: 992px) {
  .area-grid {
    grid-template-columns: 1fr;
  }

  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .area-list {
    grid-template-columns: 1fr;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .price-card.featured {
    transform: scale(1);
  }

  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .pemesanan-steps {
    grid-template-columns: 1fr;
  }

  .pemesanan-buttons {
    flex-direction: column;
  }

  .whatsapp-btn {
    width: 100%;
  }
}

.whatsapp-primary:hover {
  background: #ff8555;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.whatsapp-secondary {
  background: #fff;
  color: #ff6b35;
  border: 2px solid #fff;
}

.whatsapp-secondary:hover {
  background: transparent;
  color: #fff;
  border-color: #fff;
  transform: translateY(-3px);
}

.whatsapp-btn i {
  font-size: 1.3rem;
}

@media (max-width: 968px) {
  .pemesanan-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

@media (max-width: 580px) {
  .pemesanan-steps {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .pemesanan-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .whatsapp-btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .modal-content {
    width: 95%;
    margin: 10% auto;
  }

  #modalBody {
    padding: 30px 20px;
  }

  #modalBody h2 {
    font-size: 1.8rem;
  }
}
