/* ================= GLOBAL DESIGN SYSTEM ================= */
:root {
  --bg-primary: #07090e;
  --bg-secondary: #0c0f17;
  --bg-card: rgba(12, 15, 23, 0.6);
  --border-color: rgba(255, 255, 255, 0.05);
  --border-glow: rgba(255, 210, 0, 0.3);
  
  /* Color Palette - Premium Warm Gold */
  --primary: #ffd200;
  --primary-dark: #cc8e00;
  --primary-gradient: linear-gradient(135deg, #ffd200 0%, #ff9000 100%);
  --accent-gold: #ffd200;
  --accent-gradient: linear-gradient(135deg, #ffd200 0%, #ff9000 100%);
  --danger: #ff4d4d;
  
  /* Text colors */
  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --text-inverse: #07090e;

  /* Transitions & Shadows */
  --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-glow: 0 0 40px rgba(255, 210, 0, 0.15);
  --shadow-card: 0 20px 40px -15px rgba(0, 0, 0, 0.8);
}

/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  background-color: var(--bg-primary);
  /* Subtle Tech Dot-Grid Background */
  background-image: 
    radial-gradient(rgba(255, 255, 255, 0.015) 1.5px, transparent 1.5px),
    radial-gradient(rgba(255, 210, 0, 0.006) 1px, transparent 1px);
  background-size: 40px 40px;
  background-position: 0 0, 20px 20px;
  color: var(--text-main);
  overflow-x: hidden;
  line-height: 1.6;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 5px;
  border: 2px solid var(--bg-primary);
  transition: var(--transition-smooth);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primary-gradient);
}

/* Scroll Reveal Base Styles */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1),
              transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity;
}

.reveal-on-scroll.active {
  opacity: 1;
  transform: translateY(0);
}

/* Utility Tag Styles */
.section-tag, .hero-tag {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 3px;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  margin-bottom: 12px;
}

/* Pulsing Premium Badge */
.badge-container {
  margin-bottom: 20px;
}

.premium-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 210, 0, 0.04);
  border: 1px solid rgba(255, 210, 0, 0.12);
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: 0.5px;
}

.pulse-dot {
  width: 7px;
  height: 7px;
  background: var(--primary);
  border-radius: 50%;
  position: relative;
  display: inline-block;
}

.pulse-dot::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--primary);
  animation: pulse 1.8s infinite ease-in-out;
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(2.8); opacity: 0; }
}

/* Common Section Header */
.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px auto;
}

.section-header h2 {
  font-size: 38px;
  font-weight: 800;
  letter-spacing: -1.5px;
  margin-bottom: 15px;
  background: linear-gradient(135deg, #fff 50%, var(--text-muted) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-header p {
  color: var(--text-muted);
  font-size: 16px;
}

/* Common Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  font-weight: 600;
  font-size: 15px;
  border-radius: 30px;
  text-decoration: none;
  transition: var(--transition-smooth);
  cursor: pointer;
}

.btn-primary {
  background: var(--primary-gradient);
  color: var(--text-inverse);
  box-shadow: 0 4px 20px rgba(255, 210, 0, 0.15);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #ff9000 0%, #ffd200 100%);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.btn-primary:hover::after {
  opacity: 1;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 210, 0, 0.35);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.02);
  color: var(--text-main);
  border: 1px solid var(--border-color);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
}

/* ================= HEADER & NAVIGATION ================= */
header {
  width: 100%;
  padding: 20px 80px;
  background: rgba(7, 9, 14, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  transition: var(--transition-smooth);
}

.logo img {
  height: 40px;
  width: auto;
  border-radius: 6px;
  display: block;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
}

nav ul li a {
  text-decoration: none;
  color: var(--text-muted);
  font-weight: 500;
  font-size: 15px;
  transition: var(--transition-smooth);
  position: relative;
  padding: 8px 0;
}

nav ul li a:hover {
  color: var(--text-main);
}

nav ul li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-gradient);
  transition: var(--transition-smooth);
}

nav ul li a:hover::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  font-size: 22px;
  color: var(--text-main);
  cursor: pointer;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.02);
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-color);
  transition: var(--transition-smooth);
}

.menu-toggle:hover {
  background: rgba(255, 255, 255, 0.06);
}

/* ================= HERO SECTION ================= */
.hero {
  min-height: 95vh;
  padding: 150px 80px 80px 80px;
  background: radial-gradient(circle at 80% 30%, rgba(255, 210, 0, 0.04) 0%, rgba(7, 9, 14, 0) 65%);
  display: flex;
  align-items: center;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  align-items: center;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.hero-text h1 {
  font-size: 58px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -2.5px;
  margin-bottom: 20px;
}

.highlight-text {
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-text p {
  color: var(--text-muted);
  font-size: 18px;
  margin-bottom: 35px;
  max-width: 500px;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

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

/* Double Glowing Backdrops */
.hero-glow {
  position: absolute;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(255, 210, 0, 0.12) 0%, rgba(255, 210, 0, 0) 70%);
  border-radius: 50%;
  z-index: 1;
}

.hero-glow-secondary {
  position: absolute;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(255, 144, 0, 0.05) 0%, rgba(255, 144, 0, 0) 70%);
  border-radius: 50%;
  z-index: 1;
  transform: translate(30px, -30px);
}

.hero-image-container img {
  width: 100%;
  max-width: 480px;
  height: auto;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.55));
  animation: floating 5s ease-in-out infinite;
}

@keyframes floating {
  0% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-12px) rotate(-1.5deg); }
  100% { transform: translateY(0px) rotate(0deg); }
}

/* ================= PRICE SECTION ================= */
.price {
  padding: 100px 80px;
  background-color: var(--bg-secondary);
  position: relative;
}

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

/* Glassmorphism Cards with Gradient Border Technique */
.price-card {
  background: linear-gradient(var(--bg-card), var(--bg-card)) padding-box,
              linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%) border-box;
  border: 1px solid transparent;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 40px 35px;
  border-radius: 24px;
  position: relative;
  overflow: hidden;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.price-card:hover {
  transform: translateY(-8px);
  background: linear-gradient(var(--bg-card), var(--bg-card)) padding-box,
              linear-gradient(135deg, rgba(255, 210, 0, 0.3) 0%, rgba(255, 255, 255, 0.02) 100%) border-box;
  box-shadow: var(--shadow-glow), var(--shadow-card);
}

.card-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(255, 210, 0, 0.03);
  border: 1px solid rgba(255, 210, 0, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--primary);
  margin-bottom: 25px;
  transition: var(--transition-smooth);
}

.price-card:hover .card-icon {
  background: var(--primary-gradient);
  color: var(--text-inverse);
  border-color: transparent;
  box-shadow: 0 0 15px rgba(255, 210, 0, 0.35);
}

.price-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.5px;
}

.price-value {
  font-size: 26px;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 25px;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.price-list-items {
  list-style: none;
  margin-bottom: 35px;
  flex-grow: 1;
}

.price-list-items li {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition-smooth);
}

.price-list-items li i {
  color: var(--primary);
  font-size: 16px;
  transition: var(--transition-smooth);
}

.price-card:hover .price-list-items li i {
  transform: scale(1.15);
}

.btn-price {
  width: 100%;
  padding: 13px 20px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.02);
  color: var(--text-main);
  border: 1px solid var(--border-color);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: var(--transition-smooth);
}

.price-card:hover .btn-price {
  background: var(--primary-gradient);
  color: var(--text-inverse);
  border-color: transparent;
  box-shadow: 0 4px 15px rgba(255, 210, 0, 0.15);
}

/* Highlight Popular Card with Custom Gold Gradient Border */
.price-card.popular {
  background: linear-gradient(var(--bg-card), var(--bg-card)) padding-box,
              linear-gradient(135deg, rgba(255, 210, 0, 0.4) 0%, rgba(255, 144, 0, 0.1) 100%) border-box;
  border: 1px solid transparent;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.price-card.popular:hover {
  background: linear-gradient(var(--bg-card), var(--bg-card)) padding-box,
              linear-gradient(135deg, rgba(255, 210, 0, 0.6) 0%, rgba(255, 144, 0, 0.15) 100%) border-box;
}

.popular-tag {
  position: absolute;
  top: 25px;
  right: -30px;
  background: var(--accent-gradient);
  color: var(--text-inverse);
  font-size: 10px;
  font-weight: 800;
  padding: 4px 30px;
  transform: rotate(45deg);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ================= MODAL ================= */
.modal {
  display: none;
  position: fixed;
  z-index: 10000;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(7, 9, 14, 0.9);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-wrapper {
  position: relative;
  max-width: 800px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: modalIn 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes modalIn {
  from { transform: scale(0.95); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.modal-content {
  max-width: 100%;
  max-height: 80vh;
  border-radius: 16px;
  object-fit: contain;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
  border: 1px solid var(--border-color);
}

.close {
  position: absolute;
  top: -50px;
  right: 0;
  color: var(--text-main);
  font-size: 32px;
  cursor: pointer;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.close:hover {
  background: rgba(255, 255, 255, 0.15);
  color: var(--primary);
}

/* ================= ABOUT SECTION ================= */
.about {
  padding: 100px 80px;
  background-color: var(--bg-primary);
}

.about-container {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 70px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}

.about-image {
  position: relative;
}

.image-overlay-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(255, 210, 0, 0.1) 0%, rgba(0, 0, 0, 0) 50%);
  z-index: 2;
  pointer-events: none;
}

.about-image img {
  width: 100%;
  border-radius: 20px;
  display: block;
  object-fit: cover;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-card);
  transition: var(--transition-smooth);
  position: relative;
  z-index: 1;
}

.about-image:hover img {
  transform: scale(1.02);
  border-color: rgba(255, 210, 0, 0.25);
}

.about-text h2 {
  font-size: 38px;
  font-weight: 800;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #fff 50%, var(--text-muted) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -1.5px;
}

.about-text p {
  color: var(--text-muted);
  font-size: 16px;
  margin-bottom: 20px;
}

.why-choose {
  margin-top: 40px;
}

.why-choose h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 25px;
  color: var(--text-main);
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 10px;
  letter-spacing: -0.5px;
}

.why-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.why-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.why-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(255, 210, 0, 0.02);
  border: 1px solid rgba(255, 210, 0, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 18px;
  flex-shrink: 0;
  transition: var(--transition-smooth);
}

.why-item:hover .why-icon {
  background: var(--primary-gradient);
  color: var(--text-inverse);
  box-shadow: 0 0 10px rgba(255, 210, 0, 0.2);
  border-color: transparent;
}

.why-content h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 4px;
}

.why-content p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 0;
}

/* ================= CONTACT SECTION ================= */
.contact {
  padding: 100px 80px;
  background-color: var(--bg-secondary);
}

.contact-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  background: linear-gradient(var(--bg-card), var(--bg-card)) padding-box,
              linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%) border-box;
  border: 1px solid transparent;
  color: var(--text-main);
  transition: var(--transition-smooth);
}

.contact-link i {
  font-size: 20px;
}

.contact-link:hover {
  transform: translateY(-3px);
}

.contact-link.instagram:hover {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 5px 20px rgba(214, 36, 159, 0.3);
}

.contact-link.whatsapp:hover {
  background: #25d366;
  border-color: transparent;
  color: #fff;
  box-shadow: 0 5px 20px rgba(37, 211, 102, 0.3);
}

.contact-link.tiktok:hover {
  background: #000;
  border-color: rgba(255, 255, 255, 0.2);
  color: #fff;
  box-shadow: 0 5px 20px rgba(255, 255, 255, 0.15);
}

.contact-location {
  max-width: 850px;
  margin: 0 auto;
  text-align: center;
}

.contact-location h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}

.location-name {
  color: var(--primary);
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 6px;
}

.location-desc {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 30px;
}

.map-container {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-card);
  transition: var(--transition-smooth);
}

.map-container:hover {
  border-color: rgba(255, 210, 0, 0.15);
}

/* ================= TESTIMONI SECTION ================= */
.testimoni {
  padding: 100px 80px;
  background-color: var(--bg-primary);
}

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

.testimoni-card {
  background: linear-gradient(var(--bg-card), var(--bg-card)) padding-box,
              linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%) border-box;
  border: 1px solid transparent;
  padding: 35px 30px;
  border-radius: 24px;
  position: relative;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.testimoni-card:hover {
  transform: translateY(-5px);
  background: linear-gradient(var(--bg-card), var(--bg-card)) padding-box,
              linear-gradient(135deg, rgba(255, 210, 0, 0.2) 0%, rgba(255, 255, 255, 0.02) 100%) border-box;
  box-shadow: 0 10px 25px -10px rgba(255, 210, 0, 0.06), var(--shadow-card);
}

.quote-icon {
  position: absolute;
  top: 30px;
  right: 30px;
  font-size: 24px;
  color: rgba(255, 255, 255, 0.03);
  pointer-events: none;
  transition: var(--transition-smooth);
}

.testimoni-card:hover .quote-icon {
  color: rgba(255, 210, 0, 0.08);
  transform: scale(1.1);
}

.testimoni-rating {
  display: flex;
  gap: 4px;
  color: var(--primary);
  font-size: 13px;
  margin-bottom: 20px;
}

.testimoni-card p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 25px;
  flex-grow: 1;
  font-style: italic;
}

.testimoni-user {
  display: flex;
  align-items: center;
  gap: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 15px;
}

.testimoni-user img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid var(--primary);
}

.user-info h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-main);
}

.user-info span {
  font-size: 12px;
  color: var(--text-muted);
  display: block;
}

/* ================= FEEDBACK SECTION ================= */
.feedback {
  padding: 100px 80px;
  background-color: var(--bg-secondary);
}

.feedback-box {
  max-width: 750px;
  margin: 0 auto;
  background: linear-gradient(var(--bg-card), var(--bg-card)) padding-box,
              linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%) border-box;
  border: 1px solid transparent;
  border-radius: 28px;
  padding: 50px 45px;
  box-shadow: var(--shadow-card);
}

.feedback-box:hover {
  background: linear-gradient(var(--bg-card), var(--bg-card)) padding-box,
              linear-gradient(135deg, rgba(255, 210, 0, 0.15) 0%, rgba(255, 255, 255, 0.02) 100%) border-box;
}

.feedback .section-header {
  margin-bottom: 40px;
}

.feedback-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 8px;
}

.form-group label i {
  color: var(--primary);
}

.form-group input,
.form-group textarea {
  width: 100%;
  background-color: rgba(7, 9, 14, 0.5);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 14px;
  color: var(--text-main);
  font-size: 14px;
  transition: var(--transition-smooth);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  background-color: rgba(7, 9, 14, 0.7);
  box-shadow: 0 0 10px rgba(255, 210, 0, 0.08);
}

.btn-feedback {
  width: max-content;
  align-self: flex-start;
  background: var(--primary-gradient);
  color: var(--text-inverse);
  padding: 14px 28px;
  border: none;
  border-radius: 30px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 15px rgba(255, 210, 0, 0.15);
}

.btn-feedback:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 210, 0, 0.3);
}

/* ================= FOOTER ================= */
footer {
  background-color: var(--bg-primary);
  border-top: 1px solid var(--border-color);
  padding: 80px 80px 30px 80px;
  position: relative;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto 50px auto;
}

.footer-col h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 25px;
  color: var(--text-main);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  position: relative;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--primary-gradient);
}

.brand-col p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.6;
  margin-top: 20px;
  max-width: 360px;
}

.footer-logo-img {
  height: 44px;
  width: auto;
  display: block;
}

.footer-socials {
  display: flex;
  gap: 15px;
  margin-top: 25px;
}

.footer-socials a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 16px;
  transition: var(--transition-smooth);
  text-decoration: none;
}

.footer-socials a:hover {
  background: var(--primary-gradient);
  color: var(--text-inverse);
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255, 210, 0, 0.25);
}

.links-col ul {
  list-style: none;
}

.links-col ul li {
  margin-bottom: 12px;
}

.links-col ul li a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  transition: var(--transition-smooth);
  display: inline-block;
}

.links-col ul li a:hover {
  color: var(--primary);
  transform: translateX(5px);
}

.contact-col .footer-info-item {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.contact-col .footer-info-item i {
  color: var(--primary);
  font-size: 15px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.3);
  font-size: 13px;
}

.back-to-top {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  transition: var(--transition-smooth);
  display: flex;
  align-items: center;
  gap: 8px;
}

.back-to-top:hover {
  color: var(--primary);
  transform: translateY(-2px);
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .footer-col h4::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .brand-col p {
    margin: 20px auto 0 auto;
  }
  
  .footer-logo-img {
    margin: 0 auto;
  }
  
  .footer-socials {
    justify-content: center;
  }
  
  .contact-col .footer-info-item {
    justify-content: center;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
}

/* ================= RESPONSIVE STYLING ================= */

@media (max-width: 1024px) {
  header {
    padding: 20px 40px;
  }
  
  .hero {
    padding: 120px 40px 60px 40px;
  }
  
  .hero-grid {
    gap: 40px;
  }
  
  .hero-text h1 {
    font-size: 46px;
  }
  
  .price, .about, .contact, .testimoni, .feedback, footer {
    padding: 80px 40px;
  }
  
  .about-container {
    gap: 40px;
  }
}

@media (max-width: 900px) {
  /* Hamburger Menu Styling */
  .menu-toggle {
    display: flex;
    z-index: 1001;
  }
  
  nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(12, 15, 23, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-left: 1px solid var(--border-color);
    padding: 100px 40px 40px 40px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1000;
  }
  
  nav.show {
    right: 0;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
  }
  
  nav ul {
    flex-direction: column;
    gap: 25px;
  }
  
  nav ul li a {
    font-size: 18px;
    display: block;
  }
  
  /* Hamburger Active Animation */
  .menu-toggle.active i::before {
    content: "\f00d"; /* Change Font Awesome bar to times (X) */
  }

  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 50px;
  }
  
  .hero-text {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .hero-text p {
    margin: 0 auto 30px auto;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .about-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .about-image {
    max-width: 450px;
    margin: 0 auto;
  }
  
  .why-choose {
    text-align: left;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  header {
    padding: 15px 20px;
  }
  
  .hero {
    padding: 100px 20px 40px 20px;
  }
  
  .hero-text h1 {
    font-size: 34px;
  }
  
  .hero-text p {
    font-size: 15px;
  }
  
  .price, .about, .contact, .testimoni, .feedback, footer {
    padding: 60px 20px;
  }
  
  .section-header h2 {
    font-size: 30px;
  }
  
  .price-card {
    padding: 30px 20px;
  }
  
  .feedback-box {
    padding: 30px 20px;
  }
  
  .btn-feedback {
    width: 100%;
    justify-content: center;
  }
  
  footer {
    padding: 40px 20px 20px 20px;
  }
}