/* NeruvaCloud – Zryoon | Light Clean Theme */
:root {
  --bg-light: #ffffff;
  --bg-secondary: #f8f9fa;
  --bg-tertiary: #f0f2f5;
  --primary-blue: #1e88e5;
  --primary-blue-dark: #1565c0;
  --accent-blue: #42a5f5;
  --text-dark: #1a1a1a;
  --text-muted: #666666;
  --text-light: #999999;
  --border-light: #d0d7e0;
  --shadow-light: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  background: var(--bg-light);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

.wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slideIn {
  from { opacity: 0; transform: translateX(-30px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes slideInRight {
  from { opacity: 0; transform: translateX(30px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes slideDown {
  from { opacity: 0; max-height: 0; }
  to { opacity: 1; max-height: 2000px; }
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.8; }
}

/* ===== PROMO BANNER ===== */
.promo-banner {
  background: linear-gradient(90deg, #e3f2fd, #bbdefb);
  color: var(--primary-blue-dark);
  padding: 12px 20px;
  text-align: center;
}

.promo-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-weight: 600;
  font-size: 14px;
}

.promo-link {
  color: var(--primary-blue-dark);
  text-decoration: none;
  border-bottom: 2px solid var(--primary-blue-dark);
  transition: all 0.3s ease;
}

.promo-link:hover {
  color: var(--primary-blue);
  border-bottom-color: var(--primary-blue);
}

/* ===== HEADER ===== */
.site-header {
  background: var(--bg-light);
  border-bottom: 1px solid var(--border-light);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-light);
}

.site-header .wrap {
  padding: 16px 20px;
}

.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  font-weight: 700;
  color: var(--primary-blue);
  text-decoration: none;
}

.brand-icon {
  font-size: 24px;
}

.nav {
  display: flex;
  gap: 24px;
}

.nav-link {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
  border-bottom: 2px solid transparent;
}

.nav-link:hover {
  color: var(--primary-blue);
  border-bottom-color: var(--primary-blue);
}

.mobile-menu-btn {
  display: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--primary-blue);
}

/* ===== HERO SECTION ===== */
.hero {
  padding: 80px 0;
  background: linear-gradient(135deg, #f5f7fa, #e8f0f8);
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-left {
  animation: slideIn 0.8s ease;
}

.hero-title {
  font-size: 48px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 16px;
}

.hero-subtitle {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 24px;
  line-height: 1.6;
}

.hero-features {
  display: flex;
  gap: 12px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.feature-badge {
  background: var(--bg-secondary);
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 13px;
  color: var(--primary-blue);
  font-weight: 600;
  border: 1px solid var(--accent-blue);
}

.cta-buttons {
  display: flex;
  gap: 12px;
}

.hero-right {
  animation: slideInRight 0.8s ease;
}

.hero-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.stat-box {
  background: var(--bg-light);
  padding: 20px;
  border-radius: 12px;
  border-left: 4px solid var(--primary-blue);
  box-shadow: var(--shadow-light);
  text-align: center;
}

.stat-number {
  font-size: 32px;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 8px;
}

.stat-label {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 500;
}

/* ===== BUTTONS ===== */
.btn {
  padding: 12px 24px;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.btn-lg {
  padding: 14px 32px;
  font-size: 16px;
}

.btn-primary {
  background: var(--primary-blue);
  color: white;
}

.btn-primary:hover {
  background: var(--primary-blue-dark);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: var(--primary-blue);
  border: 2px solid var(--primary-blue);
}

.btn-secondary:hover {
  background: var(--primary-blue);
  color: white;
}

.btn-ghost {
  background: transparent;
  color: var(--primary-blue);
  border: none;
}

.btn-ghost:hover {
  color: var(--primary-blue-dark);
  background: var(--bg-secondary);
}

/* ===== PRODUCTS SECTION ===== */
.products-section {
  padding: 80px 0;
  background: var(--bg-light);
}

/* Category Group Styling */
.category-group {
  margin-bottom: 60px;
  padding: 0;
}

.group-title {
  font-size: 28px;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 3px solid var(--primary-blue);
  display: inline-block;
}

.group-grid {
  display: grid;
  gap: 28px;
  grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
  animation: fadeIn 0.8s ease;
}

.categories-container {
  display: block;
}

/* Larger columns: at smaller screens allow 1-2 columns via minmax behavior */
@media (max-width: 1100px) {
  .group-grid { gap: 22px; }
}

@media (max-width: 900px) {
  .group-grid { grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); }
}

@media (max-width: 600px) {
  .group-grid { grid-template-columns: 1fr; gap: 16px; }
  .group-title { font-size: 22px; margin-bottom: 20px; }
  .category-group { margin-bottom: 40px; }
}

.section-title {
  font-size: 36px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 48px;
  text-align: center;
}

.category {
  background: var(--bg-light);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-light);
  transition: all 0.3s ease;
  animation: fadeIn 0.6s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.category:hover {
  border-color: var(--primary-blue);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

/* Visual emphasis for opened category */
.category.open {
  border-color: var(--primary-blue-dark);
  box-shadow: 0 12px 30px rgba(30,136,229,0.12);
  transform: translateY(-6px);
  background: linear-gradient(180deg, var(--bg-light), var(--bg-secondary));
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: auto;
  gap: 12px;
}

.category.open h3 {
  grid-column: 1 / -1;
}

/* when open, let packages participate in parent grid */
.category.open .packages-list.show {
  display: contents;
}

@media (max-width: 900px) {
  .category.open { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 600px) {
  .category.open { grid-template-columns: 1fr; }
}

.category h3 {
  color: var(--text-dark);
  margin: 0;
  padding: 14px 18px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(135deg, var(--bg-light), var(--bg-secondary));
  border-bottom: 2px solid var(--border-light);
  transition: all 0.28s ease;
  user-select: none;
  font-size: 15px;
  font-weight: 700;
}

.category h3:hover {
  background: var(--bg-secondary);
  color: var(--primary-blue);
}

/* category header pieces */
.cat-left { display:flex; gap:12px; align-items:center; }
.cat-icon { font-size: 26px; line-height:1; }
.cat-meta { display:flex; flex-direction:column; }
.cat-name { font-weight:700; color:var(--text-dark); }
.cat-desc { font-size:12px; color:var(--text-muted); margin-top:2px; }
.cat-right { display:flex; align-items:center; gap:10px; }
.cat-badge { background: var(--primary-blue); color:white; padding:6px 8px; border-radius:12px; font-size:12px; font-weight:700; }

.category-toggle {
  font-size: 12px;
  transition: transform 0.3s ease;
  color: var(--primary-blue);
}

.category-toggle.open {
  transform: rotate(180deg);
}


.packages-list {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.38s ease, padding 0.28s ease;
  padding: 0 16px;
  flex: 1;
}

.packages-list.show {
  max-height: none;
  padding: 18px 16px 22px 16px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  overflow: visible;
}


@media (max-width: 900px) {
  .packages-list.show {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .packages-list.show {
    grid-template-columns: 1fr;
  }
}

.pkg {
  background: var(--bg-light);
  padding: 12px;
  border-radius: 8px;
  margin-bottom: 0;
  border: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
  gap: 8px;
  justify-content: space-between;
  transition: all 0.18s ease;
}

.pkg:hover {
  background: #fbfcfd;
  transform: translateY(-2px);
  box-shadow: var(--shadow-light);
}

.pkg-left { display:flex; flex-direction:column; gap:6px; }
.pkg-right { display:flex; flex-direction:column; gap:8px; align-items:flex-start; }
.pkg .title { font-weight:700; color:var(--text-dark); font-size:14px; }
.pkg .meta { font-size:13px; color:var(--text-muted); }
.pkg .price { font-size:16px; font-weight:800; color:var(--primary-blue-dark); white-space:nowrap; margin-top:4px; }

.pkg .actions {
  display: flex;
  gap: 6px;
  margin-top: 8px;
}

.btn-buy, .btn-add {
  padding: 8px 12px;
  font-size: 12px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  font-weight: 600;
}

.btn-buy {
  background: var(--primary-blue);
  color: white;
}

.btn-buy:hover {
  background: var(--primary-blue-dark);
  box-shadow: var(--shadow-md);
  transform: scale(1.05);
}

.btn-add {
  background: transparent;
  color: var(--primary-blue);
  border: 1px solid var(--primary-blue);
}

.btn-add:hover {
  background: var(--primary-blue);
  color: white;
}

/* ===== ABOUT SECTION ===== */
.about-section {
  padding: 80px 0;
  background: var(--bg-light);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.about-content {
  animation: slideIn 0.8s ease;
}

.about-content p {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.8;
}

.about-content h3 {
  color: var(--primary-blue);
  margin-top: 20px;
  margin-bottom: 12px;
  font-size: 18px;
}

.about-content ul {
  list-style: none;
}

.about-content li {
  padding: 10px 0;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border-light);
  font-size: 15px;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  animation: slideInRight 0.8s ease;
}

.feature-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-light);
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  transition: all 0.3s ease;
}

.feature-card:hover {
  border-color: var(--primary-blue);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.feature-icon {
  font-size: 32px;
  margin-bottom: 12px;
}

.feature-card h4 {
  color: var(--text-dark);
  margin-bottom: 8px;
  font-size: 16px;
}

.feature-card p {
  font-size: 13px;
  color: var(--text-muted);
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-section {
  padding: 80px 0;
  background: var(--bg-secondary);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.testi-item {
  background: var(--bg-light);
  border: 1px solid var(--border-light);
  padding: 20px;
  border-radius: 10px;
  animation: fadeIn 0.6s ease;
  transition: all 0.3s ease;
}

.testi-item:hover {
  border-color: var(--primary-blue);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.testi-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.testi-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary-blue);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.testi-name {
  font-weight: 600;
  color: var(--text-dark);
}

.testi-role {
  font-size: 12px;
  color: var(--text-light);
}

.testi-stars {
  color: #ffd700;
  font-size: 13px;
  margin-bottom: 8px;
}

.testi-text {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ===== REVIEWS SECTION ===== */
.reviews-section {
  padding: 80px 0;
  background: var(--bg-light);
}

.review-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.review-form-wrapper {
  animation: slideIn 0.8s ease;
}

.review-form-wrapper h3,
.reviews-list-wrapper h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.review-form {
  background: var(--bg-secondary);
  padding: 20px;
  border-radius: 10px;
  border: 1px solid var(--border-light);
}

.form-group {
  margin-bottom: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.form-group label {
  display: block;
  margin-bottom: 6px;
  color: var(--text-dark);
  font-weight: 600;
  font-size: 14px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--border-light);
  border-radius: 6px;
  font-size: 14px;
  color: var(--text-dark);
  background: var(--bg-light);
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 3px rgba(30, 136, 229, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.reviews-list-wrapper {
  animation: slideInRight 0.8s ease;
}

.reviews-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  max-height: 600px;
  overflow-y: auto;
}

.review-item {
  background: var(--bg-secondary);
  padding: 16px;
  border-radius: 10px;
  border-left: 3px solid var(--primary-blue);
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.review-author {
  font-weight: 600;
  color: var(--text-dark);
  font-size: 14px;
}

.review-rating {
  color: #ffd700;
  font-size: 12px;
}

.review-text {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
  padding: 80px 0;
  background: var(--bg-secondary);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.contact-card {
  background: var(--bg-light);
  padding: 24px;
  border-radius: 12px;
  border: 1px solid var(--border-light);
  text-align: center;
  transition: all 0.3s ease;
  animation: fadeIn 0.6s ease;
}

.contact-card:hover {
  border-color: var(--primary-blue);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.contact-icon {
  font-size: 32px;
  margin-bottom: 12px;
}

.contact-card h3 {
  color: var(--text-dark);
  margin-bottom: 12px;
  font-size: 16px;
}

.contact-card a {
  color: var(--primary-blue);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.contact-card a:hover {
  color: var(--primary-blue-dark);
  text-decoration: underline;
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--text-dark);
  color: white;
  padding: 30px 0;
  text-align: center;
  font-size: 14px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-right {
  display: flex;
  gap: 16px;
}

.footer-right a {
  color: var(--accent-blue);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-right a:hover {
  color: white;
}

/* ===== FLOATING ELEMENTS ===== */
.floating-wa {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #25d366;
  color: white;
  padding: 12px 20px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  z-index: 99;
  animation: slideInRight 0.5s ease;
}

.floating-wa:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
}

/* ===== CHAT WIDGET ===== */
.chat-widget {
  position: fixed;
  bottom: 100px;
  right: 30px;
  width: 320px;
  background: var(--bg-light);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  overflow: hidden;
  z-index: 98;
  animation: slideInRight 0.5s ease;
}

.chat-header {
  background: var(--primary-blue);
  color: white;
  padding: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  cursor: pointer;
}

.chat-toggle {
  background: transparent;
  border: none;
  color: white;
  font-size: 20px;
  cursor: pointer;
}

.chat-messages {
  height: 300px;
  overflow-y: auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.chat-message {
  padding: 10px 12px;
  border-radius: 6px;
  font-size: 13px;
  animation: slideIn 0.3s ease;
}

.chat-message.user {
  background: var(--primary-blue);
  color: white;
  align-self: flex-end;
  max-width: 80%;
}

.chat-message.bot {
  background: var(--bg-secondary);
  color: var(--text-dark);
  align-self: flex-start;
  max-width: 80%;
}

.chat-input {
  padding: 12px;
  display: flex;
  gap: 8px;
  border-top: 1px solid var(--border-light);
}

.chat-input input {
  flex: 1;
  padding: 8px 12px;
  border: 1px solid var(--border-light);
  border-radius: 6px;
  font-size: 13px;
}

.btn-send {
  background: var(--primary-blue);
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  font-size: 12px;
  transition: all 0.2s ease;
}

.btn-send:hover {
  background: var(--primary-blue-dark);
}

/* ===== MODAL ===== */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal.hidden {
  display: none;
}

.modal-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  cursor: pointer;
}

.modal-content {
  position: relative;
  background: var(--bg-light);
  border-radius: 12px;
  padding: 40px;
  max-width: 500px;
  width: 90%;
  box-shadow: var(--shadow-md);
  animation: slideDown 0.3s ease;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: transparent;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: var(--text-muted);
  transition: all 0.2s ease;
}

.modal-close:hover {
  color: var(--text-dark);
}

.modal-content h2 {
  color: var(--text-dark);
  margin-bottom: 12px;
  font-size: 24px;
}

.modal-content p {
  color: var(--text-muted);
  margin-bottom: 20px;
  font-size: 14px;
}

.qris-box {
  background: var(--bg-secondary);
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  margin-bottom: 20px;
}

.qris-placeholder {
  background: white;
  padding: 20px;
  border-radius: 8px;
}

.modal-actions {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.modal-actions a,
.modal-actions button {
  flex: 1;
}

/* ===== NOTIFICATIONS ===== */
.notif-container {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 300px;
}

.notification {
  background: var(--bg-light);
  border: 1px solid var(--border-light);
  border-left: 4px solid var(--primary-blue);
  padding: 16px;
  border-radius: 8px;
  box-shadow: var(--shadow-md);
  animation: slideInRight 0.3s ease;
  font-size: 13px;
}

.notification strong {
  color: var(--text-dark);
  display: block;
  margin-bottom: 4px;
}

.notification p {
  color: var(--text-muted);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .review-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .nav {
    gap: 16px;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .hero-title {
    font-size: 36px;
  }

  .section-title {
    font-size: 28px;
  }
}

@media (max-width: 768px) {
  .wrap {
    padding: 0 16px;
  }

  .header-top {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }

  .nav {
    flex-direction: column;
    gap: 8px;
  }

  .mobile-menu-btn {
    display: block;
  }

  .hero {
    padding: 50px 0;
  }

  .hero-title {
    font-size: 28px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .section-title {
    font-size: 24px;
    margin-bottom: 32px;
  }

  .categories-container {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-stats {
    grid-template-columns: 1fr 1fr;
  }

  .feature-badge {
    font-size: 12px;
    padding: 6px 10px;
  }

  .floating-wa {
    bottom: 20px;
    right: 20px;
    padding: 10px 16px;
    font-size: 13px;
  }

  .chat-widget {
    bottom: 80px;
    right: 20px;
    width: 280px;
  }

  .modal-content {
    padding: 24px;
    width: 95%;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 24px;
  }

  .hero-subtitle {
    font-size: 14px;
  }

  .section-title {
    font-size: 20px;
  }

  .categories-container {
    grid-template-columns: 1fr;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .btn, .btn-lg {
    width: 100%;
    padding: 12px 20px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .footer-content {
    flex-direction: column;
    gap: 12px;
  }

  .feature-card {
    padding: 16px;
  }

  .about-content h3 {
    margin-top: 16px;
  }

  .review-item {
    padding: 12px;
  }

  .contact-card {
    padding: 16px;
  }
}
