* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* ===== HERO SECTION ===== */
.hero-section {
  position: relative;
  background: url('images/BG.jpeg') center/cover no-repeat;
  color: #fff;
  text-align: center;
  overflow: hidden;
  padding: 80px 20px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(2px);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  background: rgba(17, 25, 40, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  padding: 60px 40px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(6px);
  animation: fadeInUp 1s ease forwards;
}

.logo-text {
  font-size: 6rem;
  font-weight: 900;
  color: #fff;
  text-shadow: 0 0 25px rgba(255, 255, 255, 0.8);
  margin-bottom: 20px;
  line-height: 1.1;
  letter-spacing: 3px;
  animation: pulseGlow 3s ease-in-out infinite;
}

@keyframes pulseGlow {
  0%, 100% { 
    text-shadow: 0 0 25px rgba(255, 255, 255, 0.8); 
  }
  50% { 
    text-shadow: 0 0 40px rgba(255, 255, 255, 1), 
                 0 0 60px rgba(255, 255, 255, 0.7); 
  }
}

.hero-content h1 {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 20px;
}

.hero-content .highlight {
  color: #ffcc00;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content .subtitle {
  font-size: 1.6rem;
  color: #d1d5db;
  margin-bottom: 20px;
  font-weight: 500;
}

.hero p {
  font-size: 1.4rem;
  margin-bottom: 40px;
  opacity: 0.9;
  line-height: 1.6;
  animation: fadeInUp 1.2s ease;
}

.cta-buttons {
  display: flex;
  gap: 25px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 1.4s ease;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 22px 50px;
  text-decoration: none;
  border-radius: 50px;
  font-size: 1.3rem;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);
  position: relative;
  overflow: hidden;
}

/* Animasi Pulse Smooth Glow untuk tombol */
.cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 50px;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.cta-button:hover::before {
  opacity: 1;
}

.cta-whatsapp {
  background: #25D366;
  color: white;
  animation: pulseWhatsApp 3s infinite;
}

.cta-whatsapp::before {
  box-shadow: 0 0 25px 12px rgba(37, 211, 102, 0.7);
}

@keyframes pulseWhatsApp {
  0%, 100% { 
    box-shadow: 0 8px 25px rgba(0,0,0,0.3); 
  }
  50% { 
    box-shadow: 0 8px 25px rgba(0,0,0,0.3), 
                0 0 25px 12px rgba(37, 211, 102, 0.5); 
  }
}

.cta-whatsapp:hover {
  background: #1ea952;
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(37,211,102,0.5);
}

.cta-phone {
  background: #ff4757;
  color: white;
}

.cta-phone::before {
  box-shadow: 0 0 25px 12px rgba(255, 71, 87, 0.7);
}

.cta-phone:hover {
  background: #e63946;
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(255,71,87,0.5);
}

.cta-consult {
  background: #f39c12;
  color: white;
}

.cta-consult::before {
  box-shadow: 0 0 25px 12px rgba(243, 156, 18, 0.7);
}

.cta-consult:hover {
  background: #e67e22;
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(243,156,18,0.5);
}

/* Animasi Fade In */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .logo-text {
    font-size: 5rem;
  }
  
  .hero-content h1 {
    font-size: 2.8rem;
  }
  
  .hero-content .subtitle {
    font-size: 1.4rem;
  }
  
  .hero p {
    font-size: 1.2rem;
  }
  
  .cta-button {
    padding: 20px 45px;
    font-size: 1.2rem;
  }
}

@media (max-width: 992px) {
  .logo-text {
    font-size: 4rem;
  }
  
  .hero-content h1 {
    font-size: 2.4rem;
  }
  
  .hero-content .subtitle {
    font-size: 1.3rem;
  }
  
  .hero p {
    font-size: 1.1rem;
  }
  
  .cta-button {
    padding: 18px 40px;
    font-size: 1.1rem;
  }
}

@media (max-width: 768px) {
  .logo-text {
    font-size: 3.2rem;
  }
  
  .hero-content h1 {
    font-size: 2rem;
  }
  
  .hero-content .subtitle {
    font-size: 1.1rem;
  }
  
  .hero p {
    font-size: 1rem;
  }
  
  .cta-button {
    padding: 16px 35px;
    font-size: 1rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  
  .hero-content {
    padding: 40px 25px;
  }
}

@media (max-width: 576px) {
  .logo-text {
    font-size: 2.5rem;
    letter-spacing: 2px;
  }
  
  .hero-content h1 {
    font-size: 1.6rem;
  }
  
  .hero-content .subtitle {
    font-size: 1rem;
  }
  
  .hero p {
    font-size: 0.9rem;
  }
  
  .cta-button {
    padding: 14px 30px;
    font-size: 0.9rem;
  }
  
  .hero-content {
    padding: 30px 20px;
  }
  
  .hero-section {
    padding: 40px 15px;
  }
}

/* Extra Large Screens (Super Besar) */
@media (min-width: 1600px) {
  .logo-text {
    font-size: 7rem;
    margin-bottom: 30px;
  }
  
  .hero-content h1 {
    font-size: 3.8rem;
    margin-bottom: 30px;
  }
  
  .hero-content .subtitle {
    font-size: 2rem;
    margin-bottom: 30px;
  }
  
  .hero p {
    font-size: 1.6rem;
    margin-bottom: 50px;
  }
  
  .cta-button {
    padding: 25px 60px;
    font-size: 1.5rem;
    gap: 15px;
  }
  
  .cta-buttons {
    gap: 30px;
  }
  
  .hero-content {
    max-width: 1600px;
    padding: 80px 60px;
  }
}

@media (min-width: 2000px) {
  .logo-text {
    font-size: 8rem;
  }
  
  .hero-content h1 {
    font-size: 4.5rem;
  }
  
  .hero-content .subtitle {
    font-size: 2.3rem;
  }
  
  .hero p {
    font-size: 1.8rem;
  }
  
  .cta-button {
    padding: 30px 70px;
    font-size: 1.7rem;
  }
}

/* Product Showcase Section */
.product-showcase {
    padding: 100px 20px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    position: relative;
    overflow: hidden;
}

.product-showcase::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(37, 211, 102, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.product-showcase::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(26, 26, 46, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-30px); }
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Section Titles */
.section-title {
    text-align: center;
    font-size: 3em; /* 48px */
    margin-bottom: 20px;
    color: #1a1a2e;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    display: inline-block;
    width: 100%;
    line-height: 1.2;
}

/* For dark backgrounds */
.dark-section .section-title, .testimonials,
.consultation-section .section-title,
.features .section-title {
    color: white;
}

/* For light backgrounds */
.product-showcase .section-title {
    color: #1a1a2e;
}

/* Underline effect for h1/first title */
.section-title:first-child::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 5px;
    background: linear-gradient(90deg, #25D366 0%, #128C7E 100%);
    border-radius: 3px;
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.5);
}

/* Subtitle/paragraph with section-title class */
.section-title:last-of-type,
.section-title.subtitle,
p.section-title {
    font-size: 1.5em; /* 24px */
    font-weight: 500;
    color: #555;
    text-transform: none;
    letter-spacing: 0.5px;
    margin-bottom: 60px;
    line-height: 1.7;
    margin-top: 25px;
}

/* Subtitle for dark backgrounds */
.dark-section .section-title:last-of-type,
.dark-section p.section-title,
.consultation-section .section-title:last-of-type,
.consultation-section p.section-title, .testimonials,
.features .section-title:last-of-type,
.features p.section-title {
    color: #b8b8d1;
}

/* Subtitle for light backgrounds */
.product-showcase .section-title:last-of-type,
.product-showcase p.section-title {
    color: #555;
}

/* Responsive Design */

/* Large Desktop */
@media (max-width: 1400px) {
    .section-title {
        font-size: 2.8em; /* ~45px */
    }
    
    .section-title:last-of-type,
    .section-title.subtitle,
    p.section-title {
        font-size: 1.45em; /* ~23px */
    }
}

/* Desktop */
@media (max-width: 1200px) {
    .section-title {
        font-size: 2.5em; /* 40px */
        letter-spacing: 1.5px;
    }
    
    .section-title:first-child::after {
        width: 100px;
        height: 4px;
        bottom: -12px;
    }
    
    .section-title:last-of-type,
    .section-title.subtitle,
    p.section-title {
        font-size: 1.35em; /* ~22px */
        margin-bottom: 50px;
        margin-top: 20px;
    }
}

/* Tablet Landscape */
@media (max-width: 1024px) {
    .section-title {
        font-size: 2.25em; /* 36px */
        margin-bottom: 18px;
    }
    
    .section-title:first-child::after {
        width: 90px;
    }
    
    .section-title:last-of-type,
    .section-title.subtitle,
    p.section-title {
        font-size: 1.25em; /* 20px */
        margin-bottom: 45px;
    }
}

/* Tablet Portrait */
@media (max-width: 768px) {
    .section-title {
        font-size: 2em; /* 32px */
        margin-bottom: 15px;
        letter-spacing: 1px;
        padding: 0 10px;
    }
    
    .section-title:first-child::after {
        width: 80px;
        height: 4px;
        bottom: -10px;
    }
    
    .section-title:last-of-type,
    .section-title.subtitle,
    p.section-title {
        font-size: 1.15em; /* 18-19px */
        margin-bottom: 40px;
        margin-top: 18px;
        padding: 0 10px;
        line-height: 1.6;
    }
}

/* Mobile Large */
@media (max-width: 576px) {
    .section-title {
        font-size: 1.75em; /* 28px */
        margin-bottom: 12px;
        padding: 0 8px;
    }
    
    .section-title:first-child::after {
        width: 70px;
        height: 3px;
    }
    
    .section-title:last-of-type,
    .section-title.subtitle,
    p.section-title {
        font-size: 1.05em; /* 17px */
        margin-bottom: 35px;
        margin-top: 15px;
        padding: 0 8px;
    }
}

/* Mobile Standard */
@media (max-width: 480px) {
    .section-title {
        font-size: 1.5em; /* 24px */
        margin-bottom: 10px;
        letter-spacing: 0.8px;
        padding: 0 5px;
    }
    
    .section-title:first-child::after {
        width: 60px;
        height: 3px;
        bottom: -8px;
    }
    
    .section-title:last-of-type,
    .section-title.subtitle,
    p.section-title {
        font-size: 1em; /* 16px */
        margin-bottom: 30px;
        margin-top: 12px;
        padding: 0 5px;
        line-height: 1.5;
    }
}

/* Mobile Small */
@media (max-width: 375px) {
    .section-title {
        font-size: 1.4em; /* 22px */
        padding: 0 3px;
    }
    
    .section-title:first-child::after {
        width: 50px;
    }
    
    .section-title:last-of-type,
    .section-title.subtitle,
    p.section-title {
        font-size: 0.95em; /* 15px */
        margin-bottom: 28px;
    }
}

/* Mobile Extra Small */
@media (max-width: 320px) {
    .section-title {
        font-size: 1.3em; /* 21px */
        letter-spacing: 0.5px;
    }
    
    .section-title:first-child::after {
        width: 45px;
        height: 2px;
    }
    
    .section-title:last-of-type,
    .section-title.subtitle,
    p.section-title {
        font-size: 0.9em; /* 14px */
        margin-bottom: 25px;
        margin-top: 10px;
    }
}

.text-center {
    text-align: center;
    font-size: 24px;
}

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 50px;
    margin-top: 60px;
    align-items: stretch;
}

/* Product Card */
.product-card {
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #25D366 0%, #128C7E 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.product-card:hover::before {
    transform: scaleX(1);
}

.product-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
}

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 50px;
    margin-top: 60px;
    align-items: stretch;
}

/* Product Card */
.product-card {
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #25D366 0%, #128C7E 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.product-card:hover::before {
    transform: scaleX(1);
}

.product-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
}

/* Product Images - Disesuaikan dengan ukuran gambar 582x702 */
.product-image-mobil, 
.product-image-motor { 
    width: 100%; 
    height: 702px;
    max-height: 702px;
    position: relative; 
    overflow: hidden; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
}

.bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.6s ease;
    z-index: 0;
}

.product-card:hover .bg-image {
    transform: scale(1.1);
}

/* Overlay untuk gambar */
.product-image-mobil::before,
.product-image-motor::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 1;
    transition: background 0.4s ease;
}

.product-card:hover .product-image-mobil::before,
.product-card:hover .product-image-motor::before {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.7) 100%);
}

/* Badge - Tetap merah */
.product-badge {
    position: absolute;
    top: 25px;
    right: 25px;
    background: linear-gradient(135deg, #ff4444 0%, #cc0000 100%);
    color: white;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.85em;
    z-index: 3;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    box-shadow: 0 8px 20px rgba(255, 68, 68, 0.4);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { 
        transform: scale(1); 
        box-shadow: 0 8px 20px rgba(255, 68, 68, 0.4); 
    }
    50% { 
        transform: scale(1.05); 
        box-shadow: 0 12px 30px rgba(255, 68, 68, 0.6); 
    }
}

/* Product Content */
.product-content {
    padding: 40px 35px;
    background: white;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-title {
    font-size: 1.6em;
    margin-bottom: 25px;
    color: #1a1a2e;
    font-weight: 800;
    line-height: 1.3;
    border-left: 5px solid #25D366;
    padding-left: 15px;
}

/* Product List */
.product-list {
    list-style: none;
    margin: 0 0 30px 0;
    padding: 0;
    background: #f8f9fa;
    border-radius: 15px;
    padding: 25px 20px;
}

.product-list h3 {
    margin: 0;
    padding: 0;
    font-weight: normal;
}

.product-list li {
    padding: 10px 0 10px 35px;
    position: relative;
    color: #333;
    font-size: 0.95em;
    font-weight: 600;
    transition: all 0.3s ease;
    border-radius: 8px;
}

.product-list li:hover {
    background: white;
    padding-left: 40px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.product-list li:before {
    content: '✓';
    position: absolute;
    left: 10px;
    color: #25D366;
    font-weight: bold;
    font-size: 1.3em;
    transition: all 0.3s ease;
}

.product-list li:hover:before {
    transform: scale(1.2) rotate(360deg);
}

/* Promo Section */
.promo-section {
    background: linear-gradient(135deg, #fff5e6 0%, #ffe6cc 100%);
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 25px;
    border-left: 5px solid #ff9800;
    box-shadow: 0 5px 15px rgba(255, 152, 0, 0.15);
}

.promo-highlight {
    font-size: 1em;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.6;
}

.promo-highlight strong {
    color: #e65100;
    display: block;
    margin-bottom: 8px;
    font-size: 1.1em;
}

.promo-badge {
    background: linear-gradient(135deg, #ff9800 0%, #f57c00 100%);
    color: white;
    padding: 15px 20px;
    border-radius: 10px;
    text-align: center;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(255, 152, 0, 0.3);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { 
        box-shadow: 0 5px 15px rgba(255, 152, 0, 0.3); 
    }
    50% { 
        box-shadow: 0 8px 25px rgba(255, 152, 0, 0.5); 
    }
}

/* Product Action Button */
.product-action {
    text-align: center;
    margin-top: 25px;
}

.btn-order {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    padding: 18px 45px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.1em;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-order::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-order:hover::before {
    width: 300px;
    height: 300px;
}

.btn-order:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.5);
}

.btn-order i {
    font-size: 1.4em;
    position: relative;
    z-index: 1;
}

.btn-order:active {
    transform: translateY(-1px) scale(1.02);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .product-image-mobil,
    .product-image-motor {
        height: 600px;
        max-height: 600px;
    }
}

@media (max-width: 1024px) {
    .product-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .product-showcase {
        padding: 60px 15px;
    }
    
    .section-title {
        font-size: 1.6em;
        padding: 0 10px;
    }
    
    .section-title:last-of-type {
        font-size: 0.9em;
        padding: 0 10px;
    }
    
    .product-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 40px;
    }
    
    .product-image-mobil,
    .product-image-motor {
        height: 500px;
        max-height: 500px;
    }
    
    .product-content {
        padding: 25px 20px;
    }
    
    .product-title {
        font-size: 1.2em;
        margin-bottom: 20px;
    }
    
    .product-list {
        padding: 20px 15px;
        margin-bottom: 20px;
    }
    
    .product-list li {
        font-size: 0.85em;
        padding: 8px 0 8px 30px;
    }
    
    .promo-section {
        padding: 20px;
        margin-bottom: 20px;
    }
    
    .promo-highlight {
        font-size: 0.9em;
    }
    
    .promo-badge {
        padding: 12px 15px;
        font-size: 0.9em;
    }
    
    .btn-order {
        padding: 15px 30px;
        font-size: 0.95em;
        width: 100%;
        justify-content: center;
    }
    
    .product-badge {
        top: 15px;
        right: 15px;
        padding: 8px 16px;
        font-size: 0.7em;
    }
}

@media (max-width: 480px) {
    .product-showcase {
        padding: 40px 10px;
    }
    
    .section-title {
        font-size: 1.3em;
        padding: 0 5px;
    }
    
    .section-title:last-of-type {
        font-size: 0.8em;
        padding: 0 5px;
    }
    
    .product-grid {
        gap: 25px;
        margin-top: 30px;
    }
    
    .product-image-mobil,
    .product-image-motor {
        height: 400px;
        max-height: 400px;
    }
    
    .product-content {
        padding: 20px 15px;
    }
    
    .product-title {
        font-size: 1.1em;
        padding-left: 12px;
    }
    
    .product-list {
        padding: 15px 12px;
    }
    
    .product-list li {
        font-size: 0.8em;
        padding: 7px 0 7px 28px;
    }
    
    .product-list li:before {
        font-size: 1.1em;
        left: 8px;
    }
    
    .promo-section {
        padding: 15px;
    }
    
    .promo-highlight {
        font-size: 0.85em;
    }
    
    .promo-highlight strong {
        font-size: 1em;
    }
    
    .promo-badge {
        padding: 10px 12px;
        font-size: 0.85em;
    }
    
    .btn-order {
        padding: 14px 25px;
        font-size: 0.9em;
    }
    
    .btn-order i {
        font-size: 1.2em;
    }
    
    .product-badge {
        top: 12px;
        right: 12px;
        padding: 6px 14px;
        font-size: 0.65em;
        letter-spacing: 0.5px;
    }
}

/* Consultation Section - Dark Blue Mode */
.consultation-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, #0a1628 0%, #1a1a2e 100%);
    position: relative;
    overflow: hidden;
}

.consultation-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(37, 211, 102, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.consultation-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(37, 211, 102, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-30px); }
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Section Title */
.section-title {
    text-align: center;
    font-size: 3em;
    margin-bottom: 70px;
    color: white;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 5px;
    background: linear-gradient(90deg, #25D366 0%, #128C7E 100%);
    border-radius: 3px;
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.5);
}

/* Consultation Items */
.consultation-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
    padding: 0;
    background: linear-gradient(135deg, #16213e 0%, #1a1a2e 100%);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(37, 211, 102, 0.1);
    transition: all 0.4s ease;
}

.consultation-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
    border-color: rgba(37, 211, 102, 0.3);
}

/* Alternate Layout */
.consultation-item.reverse {
    grid-template-columns: 1fr 1fr;
}

.consultation-item.reverse .consultation-image {
    order: 2;
}

.consultation-item.reverse .consultation-content {
    order: 1;
}

/* Image Container */
.consultation-image {
    position: relative;
    height: 100%;
    min-height: 500px;
    overflow: hidden;
}

.consultation-image img {
    width: 100%;
    height: 100%;
    min-height: 500px;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.6s ease;
}

.consultation-item:hover .consultation-image img {
    transform: scale(1.1);
}

.consultation-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(26, 26, 46, 0.3) 0%, rgba(26, 26, 46, 0.7) 100%);
    transition: background 0.4s ease;
}

.consultation-item:hover .consultation-image::after {
    background: linear-gradient(180deg, rgba(26, 26, 46, 0.4) 0%, rgba(26, 26, 46, 0.8) 100%);
}

/* Content */
.consultation-content {
    padding: 50px 45px;
    background: transparent;
}

.consultation-icon {
    width: 85px;
    height: 85px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { 
        transform: scale(1); 
        box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4); 
    }
    50% { 
        transform: scale(1.05); 
        box-shadow: 0 15px 40px rgba(37, 211, 102, 0.6); 
    }
}

.consultation-icon i {
    font-size: 2.5em;
    color: white;
}

.consultation-content h3 {
    font-size: 2.2em;
    margin-bottom: 20px;
    color: white;
    font-weight: 800;
    line-height: 1.3;
}

.consultation-number {
    font-size: 2em;
    color: #25D366;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: 2px;
    text-shadow: 0 0 20px rgba(37, 211, 102, 0.3);
}

.consultation-content p {
    font-size: 1.1em;
    line-height: 1.8;
    color: #b8b8d1;
    margin-bottom: 30px;
}

.consultation-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-consult {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    padding: 18px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.05em;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.btn-consult::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-consult:hover::before {
    width: 300px;
    height: 300px;
}

.btn-consult:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.6);
}

.btn-consult i {
    font-size: 1.3em;
    position: relative;
    z-index: 1;
}

.btn-call {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #0a1628 0%, #0d1b2a 100%);
    color: white;
    padding: 18px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.05em;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(37, 211, 102, 0.3);
}

.btn-call::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(37, 211, 102, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-call:hover::before {
    width: 300px;
    height: 300px;
}

.btn-call:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.3);
    border-color: rgba(37, 211, 102, 0.6);
}

.btn-call i {
    font-size: 1.3em;
    position: relative;
    z-index: 1;
}

/* Promo Badge */
.promo-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ff9800 0%, #f57c00 100%);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.95em;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(255, 152, 0, 0.4);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { 
        box-shadow: 0 5px 15px rgba(255, 152, 0, 0.4); 
    }
    50% { 
        box-shadow: 0 8px 25px rgba(255, 152, 0, 0.7); 
    }
}

/* Responsive Design */

/* Large Desktop */
@media (max-width: 1400px) {
    .consultation-image {
        min-height: 480px;
    }
    
    .consultation-image img {
        min-height: 480px;
    }
}

/* Desktop */
@media (max-width: 1200px) {
    .consultation-item {
        gap: 50px;
    }
    
    .consultation-content {
        padding: 40px 35px;
    }
    
    .consultation-image {
        min-height: 450px;
    }
    
    .consultation-image img {
        min-height: 450px;
    }
}

/* Tablet Landscape */
@media (max-width: 1024px) {
    .consultation-section {
        padding: 80px 20px;
    }
    
    .section-title {
        font-size: 2.5em;
        margin-bottom: 60px;
    }
    
    .consultation-item {
        gap: 40px;
    }
    
    .consultation-content h3 {
        font-size: 2em;
    }
    
    .consultation-number {
        font-size: 1.8em;
    }
    
    .consultation-image {
        min-height: 420px;
    }
    
    .consultation-image img {
        min-height: 420px;
    }
}

/* Tablet Portrait */
@media (max-width: 768px) {
    .consultation-section {
        padding: 60px 15px;
    }
    
    .section-title {
        font-size: 2em;
        margin-bottom: 50px;
    }
    
    .consultation-item,
    .consultation-item.reverse {
        grid-template-columns: 1fr;
        gap: 0;
        margin-bottom: 40px;
    }
    
    .consultation-item.reverse .consultation-image,
    .consultation-item.reverse .consultation-content {
        order: unset;
    }
    
    .consultation-image {
        min-height: 350px;
    }
    
    .consultation-image img {
        min-height: 350px;
    }
    
    .consultation-content {
        padding: 35px 30px;
    }
    
    .consultation-icon {
        width: 75px;
        height: 75px;
    }
    
    .consultation-icon i {
        font-size: 2.2em;
    }
    
    .consultation-content h3 {
        font-size: 1.8em;
    }
    
    .consultation-number {
        font-size: 1.6em;
    }
    
    .consultation-content p {
        font-size: 1em;
    }
    
    .consultation-buttons {
        flex-direction: column;
    }
    
    .btn-consult,
    .btn-call {
        width: 100%;
        justify-content: center;
    }
}

/* Mobile Large */
@media (max-width: 576px) {
    .consultation-section {
        padding: 50px 12px;
    }
    
    .section-title {
        font-size: 1.7em;
        margin-bottom: 40px;
    }
    
    .consultation-image {
        min-height: 320px;
    }
    
    .consultation-image img {
        min-height: 320px;
    }
    
    .consultation-content {
        padding: 30px 25px;
    }
    
    .consultation-content h3 {
        font-size: 1.6em;
    }
    
    .consultation-number {
        font-size: 1.5em;
    }
}

/* Mobile Standard */
@media (max-width: 480px) {
    .consultation-section {
        padding: 40px 10px;
    }
    
    .section-title {
        font-size: 1.5em;
        margin-bottom: 35px;
        letter-spacing: 1px;
    }
    
    .section-title::after {
        width: 80px;
        height: 4px;
    }
    
    .consultation-item {
        border-radius: 20px;
        margin-bottom: 30px;
    }
    
    .consultation-image {
        min-height: 280px;
    }
    
    .consultation-image img {
        min-height: 280px;
    }
    
    .consultation-content {
        padding: 25px 20px;
    }
    
    .consultation-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
    }
    
    .consultation-icon i {
        font-size: 2em;
    }
    
    .consultation-content h3 {
        font-size: 1.4em;
        margin-bottom: 15px;
    }
    
    .consultation-number {
        font-size: 1.4em;
        margin-bottom: 15px;
        letter-spacing: 1.5px;
    }
    
    .consultation-content p {
        font-size: 0.95em;
        margin-bottom: 25px;
        line-height: 1.6;
    }
    
    .promo-badge {
        padding: 8px 16px;
        font-size: 0.85em;
        margin-bottom: 15px;
    }
    
    .btn-consult,
    .btn-call {
        padding: 15px 30px;
        font-size: 0.95em;
        letter-spacing: 0.5px;
    }
    
    .btn-consult i,
    .btn-call i {
        font-size: 1.2em;
    }
}

/* Mobile Small */
@media (max-width: 375px) {
    .consultation-section {
        padding: 35px 8px;
    }
    
    .section-title {
        font-size: 1.3em;
        margin-bottom: 30px;
    }
    
    .consultation-image {
        min-height: 260px;
    }
    
    .consultation-image img {
        min-height: 260px;
    }
    
    .consultation-content {
        padding: 20px 15px;
    }
    
    .consultation-icon {
        width: 65px;
        height: 65px;
    }
    
    .consultation-icon i {
        font-size: 1.8em;
    }
    
    .consultation-content h3 {
        font-size: 1.3em;
    }
    
    .consultation-number {
        font-size: 1.3em;
    }
    
    .consultation-content p {
        font-size: 0.9em;
    }
    
    .btn-consult,
    .btn-call {
        padding: 14px 25px;
        font-size: 0.9em;
    }
}

/* Mobile Extra Small */
@media (max-width: 320px) {
    .section-title {
        font-size: 1.2em;
    }
    
    .consultation-image {
        min-height: 240px;
    }
    
    .consultation-image img {
        min-height: 240px;
    }
    
    .consultation-content {
        padding: 18px 12px;
    }
    
    .consultation-icon {
        width: 60px;
        height: 60px;
    }
    
    .consultation-content h3 {
        font-size: 1.2em;
    }
    
    .consultation-number {
        font-size: 1.2em;
    }
    
    .consultation-content p {
        font-size: 0.85em;
    }
    
    .btn-consult,
    .btn-call {
        padding: 12px 20px;
        font-size: 0.85em;
    }
}

/* Features Section - Dark Blue Mode */
.features {
    padding: 100px 20px;
    background: linear-gradient(135deg, #0a1628 0%, #1a1a2e 100%);
    position: relative;
    overflow: hidden;
}

.features::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(37, 211, 102, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatRotate 15s ease-in-out infinite;
}

.features::after {
    content: '';
    position: absolute;
    bottom: -20%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(37, 211, 102, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatRotate 20s ease-in-out infinite reverse;
}

@keyframes floatRotate {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg); 
    }
    50% { 
        transform: translateY(-40px) rotate(180deg); 
    }
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Section Title */
.section-title {
    text-align: center;
    font-size: 3em;
    margin-bottom: 70px;
    color: white;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    animation: fadeInDown 1s ease-out;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 5px;
    background: linear-gradient(90deg, #25D366 0%, #128C7E 100%);
    border-radius: 3px;
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.5);
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

/* Feature Card */
.feature-card {
    background: linear-gradient(135deg, #16213e 0%, #1a1a2e 100%);
    padding: 45px 35px;
    border-radius: 25px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid rgba(37, 211, 102, 0.1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.8s ease-out backwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Stagger animation delay */
.feature-card:nth-child(1) { animation-delay: 0.1s; }
.feature-card:nth-child(2) { animation-delay: 0.2s; }
.feature-card:nth-child(3) { animation-delay: 0.3s; }
.feature-card:nth-child(4) { animation-delay: 0.4s; }
.feature-card:nth-child(5) { animation-delay: 0.5s; }
.feature-card:nth-child(6) { animation-delay: 0.6s; }

/* Shine effect on card */
.feature-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(37, 211, 102, 0.1) 50%,
        transparent 70%
    );
    transform: rotate(45deg);
    transition: all 0.6s ease;
}

.feature-card:hover::before {
    left: 100%;
}

/* Glow effect on hover */
.feature-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 25px;
    background: radial-gradient(circle at center, rgba(37, 211, 102, 0.15) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.feature-card:hover {
    transform: translateY(-15px) scale(1.03);
    border-color: rgba(37, 211, 102, 0.5);
    box-shadow: 0 20px 50px rgba(37, 211, 102, 0.2), 0 0 60px rgba(37, 211, 102, 0.1);
}

.feature-card:hover::after {
    opacity: 1;
}

/* Feature Icon */
.feature-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3em;
    margin: 0 auto 25px;
    position: relative;
    z-index: 2;
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.4);
    animation: iconPulse 2s ease-in-out infinite;
    transition: all 0.4s ease;
}

@keyframes iconPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 15px 35px rgba(37, 211, 102, 0.4);
    }
    50% {
        transform: scale(1.08);
        box-shadow: 0 20px 45px rgba(37, 211, 102, 0.6);
    }
}

.feature-card:hover .feature-icon {
    animation: iconBounce 0.6s ease;
    transform: rotateY(360deg);
}

@keyframes iconBounce {
    0%, 100% { transform: translateY(0) rotateY(0deg); }
    25% { transform: translateY(-15px) rotateY(90deg); }
    50% { transform: translateY(0) rotateY(180deg); }
    75% { transform: translateY(-8px) rotateY(270deg); }
}

/* Pulse ring effect */
.feature-icon::before,
.feature-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border: 3px solid rgba(37, 211, 102, 0.6);
    border-radius: 50%;
    animation: pulseRing 2s ease-out infinite;
}

.feature-icon::after {
    animation-delay: 1s;
}

@keyframes pulseRing {
    0% {
        width: 100%;
        height: 100%;
        opacity: 1;
    }
    100% {
        width: 160%;
        height: 160%;
        opacity: 0;
    }
}

/* Feature Title */
.feature-card h3 {
    font-size: 1.6em;
    margin-bottom: 15px;
    color: white;
    font-weight: 800;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.feature-card:hover h3 {
    color: #25D366;
    transform: scale(1.05);
}

/* Feature Description */
.feature-card p {
    font-size: 1.05em;
    line-height: 1.7;
    color: #b8b8d1;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.feature-card:hover p {
    color: #d1d1e0;
}

/* Floating particles effect */
@keyframes particleFloat {
    0%, 100% { 
        transform: translateY(0) translateX(0); 
        opacity: 0.3;
    }
    50% { 
        transform: translateY(-20px) translateX(10px); 
        opacity: 0.6;
    }
}

/* Responsive Design */

/* Large Desktop */
@media (max-width: 1400px) {
    .features-grid {
        gap: 35px;
    }
}

/* Desktop */
@media (max-width: 1200px) {
    .features {
        padding: 80px 20px;
    }
    
    .section-title {
        font-size: 2.5em;
        margin-bottom: 60px;
    }
    
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
    }
    
    .feature-card {
        padding: 40px 30px;
    }
    
    .feature-icon {
        width: 90px;
        height: 90px;
        font-size: 2.8em;
    }
}

/* Tablet Landscape */
@media (max-width: 1024px) {
    .section-title {
        font-size: 2.3em;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .feature-card h3 {
        font-size: 1.5em;
    }
}

/* Tablet Portrait */
@media (max-width: 768px) {
    .features {
        padding: 60px 15px;
    }
    
    .section-title {
        font-size: 2em;
        margin-bottom: 50px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-top: 50px;
    }
    
    .feature-card {
        padding: 35px 28px;
    }
    
    .feature-icon {
        width: 85px;
        height: 85px;
        font-size: 2.5em;
        margin-bottom: 20px;
    }
    
    .feature-card h3 {
        font-size: 1.4em;
        margin-bottom: 12px;
    }
    
    .feature-card p {
        font-size: 1em;
    }
}

/* Mobile Large */
@media (max-width: 576px) {
    .features {
        padding: 50px 12px;
    }
    
    .section-title {
        font-size: 1.8em;
        margin-bottom: 40px;
    }
    
    .feature-card {
        padding: 32px 25px;
    }
    
    .feature-icon {
        width: 80px;
        height: 80px;
        font-size: 2.3em;
    }
    
    .feature-card h3 {
        font-size: 1.3em;
    }
    
    .feature-card p {
        font-size: 0.98em;
    }
}

/* Mobile Standard */
@media (max-width: 480px) {
    .features {
        padding: 40px 10px;
    }
    
    .section-title {
        font-size: 1.6em;
        margin-bottom: 35px;
        letter-spacing: 1px;
    }
    
    .section-title::after {
        width: 80px;
        height: 4px;
    }
    
    .features-grid {
        gap: 20px;
        margin-top: 40px;
    }
    
    .feature-card {
        padding: 30px 20px;
        border-radius: 20px;
    }
    
    .feature-icon {
        width: 75px;
        height: 75px;
        font-size: 2.2em;
        margin-bottom: 18px;
    }
    
    .feature-card h3 {
        font-size: 1.25em;
        margin-bottom: 10px;
    }
    
    .feature-card p {
        font-size: 0.95em;
        line-height: 1.6;
    }
}

/* Mobile Small */
@media (max-width: 375px) {
    .features {
        padding: 35px 8px;
    }
    
    .section-title {
        font-size: 1.4em;
        margin-bottom: 30px;
    }
    
    .feature-card {
        padding: 25px 18px;
    }
    
    .feature-icon {
        width: 70px;
        height: 70px;
        font-size: 2em;
        margin-bottom: 15px;
    }
    
    .feature-card h3 {
        font-size: 1.2em;
    }
    
    .feature-card p {
        font-size: 0.9em;
    }
}

/* Mobile Extra Small */
@media (max-width: 320px) {
    .section-title {
        font-size: 1.3em;
    }
    
    .feature-card {
        padding: 22px 15px;
    }
    
    .feature-icon {
        width: 65px;
        height: 65px;
        font-size: 1.8em;
    }
    
    .feature-card h3 {
        font-size: 1.15em;
    }
    
    .feature-card p {
        font-size: 0.88em;
    }
}

/* ===== LOCATION SECTION ===== */
.location-section {
    padding: 80px 20px;
    background: #f8f9fa;
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
    margin-top: 40px;
}

/* Sebelah Kiri: Info Kontak */
.location-info {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    height: fit-content;
}

.info-item {
    margin-bottom: 30px;
    display: flex;
    gap: 20px;
    align-items: start;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5em;
    flex-shrink: 0;
}

.info-text h3 {
    font-size: 1.3em;
    margin-bottom: 8px;
    color: #1a1a2e;
}

.info-text p {
    color: #666;
    line-height: 1.8;
}

.contact-link-whatsapp {
    color: #25D366;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.contact-link-whatsapp:hover {
    color: #1ea952;
    transform: translateX(5px);
}

.contact-link-phone {
    color: #ff4757;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
}

.contact-link-phone:hover {
    color: #e63946;
    transform: translateX(5px);
}

.nav-button-primary {
    display: block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 15px 25px;
    text-align: center;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.nav-button-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
}

/* Sebelah Kanan: Card dengan 4 Grid Map */
.location-maps-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    overflow: hidden;
    height: fit-content;
}

.maps-card-header {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: white;
    padding: 25px 30px;
    text-align: center;
}

.maps-card-header h3 {
    font-size: 1.5em;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.maps-card-header p {
    opacity: 0.9;
    margin: 0;
}

.maps-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.map-item {
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.map-item:hover {
    transform: scale(1.02);
    z-index: 2;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.map-frame {
    height: 180px;
    width: 100%;
    border-bottom: 1px solid #e9ecef;
}

.map-frame iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.map-info {
    padding: 15px;
    text-align: center;
    background: white;
}

.map-info h4 {
    color: #1a1a2e;
    margin-bottom: 5px;
    font-size: 1.1em;
    font-weight: 600;
}

.map-info p {
    color: #666;
    margin: 0 0 8px 0;
    font-size: 0.9em;
}

.map-badge {
    display: inline-block;
    background: #6c757d;
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.75em;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.map-badge.primary {
    background: #ff4757;
}

/* Responsive Design untuk Location Section */
@media (max-width: 1024px) {
    .location-content {
        gap: 30px;
    }
    
    .location-info {
        padding: 30px;
    }
    
    .map-frame {
        height: 160px;
    }
}

@media (max-width: 768px) {
    .location-section {
        padding: 60px 20px;
    }
    
    .location-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .maps-grid {
        grid-template-columns: 1fr;
    }
    
    .map-frame {
        height: 200px;
    }
    
    .location-info {
        padding: 25px;
    }
    
    .info-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .info-icon {
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .location-section {
        padding: 40px 15px;
    }
    
    .location-info {
        padding: 20px;
    }
    
    .maps-card-header {
        padding: 20px;
    }
    
    .maps-card-header h3 {
        font-size: 1.3em;
    }
    
    .map-frame {
        height: 180px;
    }
    
    .map-info {
        padding: 12px;
    }
}
/* ===== TESTIMONIALS SECTION ===== */
.testimonials {
    padding: 80px 20px;
    background: #1a1a2e;
    color: white;
    overflow: hidden;
    position: relative;
}

.testimonial-slider {
    width: 100%;
    overflow: hidden;
    margin-top: 50px;
    position: relative;
}

.testimonial-track {
    display: flex;
    transition: transform 0.8s ease-in-out;
    animation: slideCards 24s ease-in-out infinite;
}

.testimonial-card {
    background: rgba(255,255,255,0.1);
    padding: 25px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    flex: 0 0 25%; /* 3 cards per view (desktop) */
    margin: 0 10px;
    transform: translateY(0);
    transition: transform 0.6s ease;
}

.testimonial-card:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-5px);
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 15px;
    line-height: 1.6;
    font-size: 0.95em;
}

.testimonial-author {
    font-weight: 600;
    color: #ffd700;
    margin-bottom: 8px;
    font-size: 0.9em;
}

.testimonial-rating {
    color: #ffd700;
    font-size: 1.1em;
}

/* ===== ANIMATION ===== */
@keyframes slideCards {
    0%, 8%   { transform: translateX(0); }
    12%, 20% { transform: translateX(-33.333%); }
    24%, 32% { transform: translateX(-66.666%); }
    36%, 44% { transform: translateX(-100%); }
    48%, 56% { transform: translateX(-133.333%); }
    60%, 68% { transform: translateX(-166.666%); }
    72%, 80% { transform: translateX(-200%); }
    84%, 92% { transform: translateX(-233.333%); }
    96%, 100% { transform: translateX(0); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .testimonial-card {
        flex: 0 0 50%; /* 2 per view */
    }
    @keyframes slideCards {
        0%, 10% { transform: translateX(0); }
        15%, 25% { transform: translateX(-50%); }
        30%, 40% { transform: translateX(-100%); }
        45%, 55% { transform: translateX(-150%); }
        60%, 70% { transform: translateX(-200%); }
        75%, 85% { transform: translateX(-250%); }
        90%, 100% { transform: translateX(0); }
    }
}

@media (max-width: 768px) {
    .testimonial-card {
        flex: 0 0 100%; /* 1 per view */
    }
    @keyframes slideCards {
        0%, 15% { transform: translateX(0); }
        20%, 35% { transform: translateX(-100%); }
        40%, 55% { transform: translateX(-200%); }
        60%, 75% { transform: translateX(-300%); }
        80%, 95% { transform: translateX(-400%); }
        100% { transform: translateX(0); }
    }
}

.testimonial-track:hover {
    animation-play-state: paused;
}

.faq-section {
    padding: 60px 20px;
    background: var(--bg);
    color: var(--text);
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

:root {
    --bg: #f9fafb;
    --text: #222;
    --card: #fff;
    --border: #e5e7eb;
    --primary: #3b82f6;
}

.dark-mode {
    --bg: #0f172a;
    --text: #e2e8f0;
    --card: #1e293b;
    --border: #334155;
    --primary: #60a5fa;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 600;
    font-color: white;
    margin-bottom: 5px;
}

.section-subtitle {
    text-align: center;
    color: var(--text);
    opacity: 0.8;
    margin-bottom: 40px;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
    box-shadow: 0 3px 8px rgba(0,0,0,0.08);
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-question {
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 24px;
    font-weight: 500;
    color: var(--text);
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: rgba(59,130,246,0.1);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    padding: 0 24px;
    transition: all 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 400px;
    opacity: 1;
    padding: 18px 24px;
}

.faq-answer p {
    margin-bottom: 10px;
    line-height: 1.6;
    color: var(--text);
}

.faq-highlight {
    background: rgba(59,130,246,0.1);
    border-left: 4px solid var(--primary);
    padding: 10px 14px;
    border-radius: 6px;
    color: var(--primary);
    font-size: 0.95rem;
}

.faq-question i {
    color: var(--primary);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .faq-container {
        max-width: 900px;
    }
}

@media (max-width: 1024px) {
    .faq-section {
        padding: 50px 20px;
    }
    
    .faq-container {
        max-width: 800px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .faq-section {
        padding: 40px 15px;
    }
    
    .section-title {
        font-size: 1.6rem;
        margin-bottom: 8px;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
        margin-bottom: 35px;
    }
    
    .faq-container {
        max-width: 100%;
    }
    
    .faq-question {
        padding: 16px 20px;
        font-size: 0.95rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 16px 20px;
    }
    
    .faq-answer {
        padding: 0 20px;
    }
    
    .faq-answer p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .faq-highlight {
        padding: 8px 12px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .faq-section {
        padding: 30px 12px;
    }
    
    .section-title {
        font-size: 1.4rem;
        margin-bottom: 10px;
    }
    
    .section-subtitle {
        font-size: 0.9rem;
        margin-bottom: 30px;
        line-height: 1.4;
    }
    
    .faq-question {
        padding: 14px 16px;
        font-size: 0.9rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 14px 16px;
        max-height: 500px;
    }
    
    .faq-answer {
        padding: 0 16px;
    }
    
    .faq-answer p {
        font-size: 0.85rem;
        line-height: 1.4;
        margin-bottom: 8px;
    }
    
    .faq-highlight {
        padding: 6px 10px;
        font-size: 0.85rem;
        border-left-width: 3px;
    }
    
    .faq-question i {
        font-size: 0.9rem;
    }
}

@media (max-width: 360px) {
    .faq-section {
        padding: 25px 10px;
    }
    
    .section-title {
        font-size: 1.3rem;
    }
    
    .section-subtitle {
        font-size: 0.85rem;
        margin-bottom: 25px;
    }
    
    .faq-question {
        padding: 12px 14px;
        font-size: 0.85rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 12px 14px;
    }
    
    .faq-answer {
        padding: 0 14px;
    }
    
    .faq-answer p {
        font-size: 0.8rem;
    }
    
    .faq-highlight {
        padding: 5px 8px;
        font-size: 0.8rem;
    }
}

/* Auto dark mode support */
@media (prefers-color-scheme: dark) {
    :root {
        --bg: #0f172a;
        --text: #e2e8f0;
        --card: #1e293b;
        --border: #334155;
        --primary: #60a5fa;
    }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
    .faq-question:hover {
        background: transparent;
    }
    
    .faq-item.active .faq-question {
        background: rgba(59,130,246,0.1);
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .faq-item {
        border-width: 2px;
    }
    
    .faq-highlight {
        border-left-width: 6px;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .faq-section,
    .faq-item,
    .faq-question,
    .faq-answer,
    .faq-question i {
        transition: none;
    }
    
    .faq-item.active .faq-question i {
        transform: none;
    }
}

/* ===== CARD FLOAT EFFECT ===== */
.testimonial-track {
    animation-timing-function: ease-in-out;
}

@keyframes cardFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.testimonial-card {
    animation: cardFloat 4s ease-in-out infinite;
}


/* ===== CONTACT CTA SECTION ===== */
.contact-cta {
    padding: 80px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><path d="M0 0h100v100H0z" fill="none"/><path d="M50 10l5 15h16l-13 9 5 15-13-9-13 9 5-15-13-9h16z" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.1;
}

.contact-cta .container {
    position: relative;
    z-index: 1;
}

.contact-cta h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.contact-cta p {
    font-size: 1.3em;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-cta .cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-cta .cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 40px;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.1em;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.contact-cta .cta-whatsapp {
    background: #25D366;
    color: white;
}

.contact-cta .cta-whatsapp:hover {
    background: #1ea952;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(37,211,102,0.4);
}

.contact-cta .cta-phone {
    background: #ff4757;
    color: white;
}

.contact-cta .cta-phone:hover {
    background: #e63946;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(255,71,87,0.4);
}

/* ===== FOOTER ===== */
footer {
    background: #0f0f1e;
    color: white;
    padding: 40px 20px;
    text-align: center;
}

footer .container {
    max-width: 1200px;
    margin: 0 auto;
}

footer p {
    margin: 0;
    line-height: 1.6;
}

footer p:first-child {
    font-size: 1.1em;
    font-weight: 600;
    margin-bottom: 10px;
}

footer p:last-child {
    opacity: 0.8;
    font-size: 0.95em;
}

/* ===== FLOATING BUTTONS ===== */
.floating-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
}

.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8em;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    color: white;
    position: relative;
}

.floating-btn:hover {
    transform: scale(1.1);
}

.floating-btn::after {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    opacity: 0;
    transition: all 0.3s ease;
}

.floating-btn:hover::after {
    opacity: 1;
    transform: scale(1.1);
}

.btn-whatsapp {
    background: #25D366;
    animation: pulse-whatsapp 2s infinite;
}

.btn-whatsapp:hover {
    box-shadow: 0 8px 30px rgba(37,211,102,0.6);
}

.btn-phone {
    background: #ff4757;
    animation: pulse-phone 2s infinite;
}

.btn-phone:hover {
    box-shadow: 0 8px 30px rgba(255,71,87,0.6);
}

/* Pulse animations untuk floating buttons */
@keyframes pulse-whatsapp {
    0% {
        box-shadow: 0 5px 20px rgba(37,211,102,0.4);
    }
    50% {
        box-shadow: 0 5px 30px rgba(37,211,102,0.8);
    }
    100% {
        box-shadow: 0 5px 20px rgba(37,211,102,0.4);
    }
}

@keyframes pulse-phone {
    0% {
        box-shadow: 0 5px 20px rgba(255,71,87,0.4);
    }
    50% {
        box-shadow: 0 5px 30px rgba(255,71,87,0.8);
    }
    100% {
        box-shadow: 0 5px 20px rgba(255,71,87,0.4);
    }
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .contact-cta {
        padding: 60px 20px;
    }
    
    .contact-cta h2 {
        font-size: 2em;
    }
    
    .contact-cta p {
        font-size: 1.1em;
        margin-bottom: 30px;
    }
    
    .contact-cta .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-cta .cta-button {
        padding: 15px 30px;
        font-size: 1em;
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    footer {
        padding: 30px 20px;
    }
    
    .floating-buttons {
        bottom: 20px;
        right: 20px;
    }
    
    .floating-btn {
        width: 55px;
        height: 55px;
        font-size: 1.6em;
    }
}

@media (max-width: 480px) {
    .contact-cta {
        padding: 50px 15px;
    }
    
    .contact-cta h2 {
        font-size: 1.8em;
    }
    
    .contact-cta p {
        font-size: 1em;
    }
    
    .contact-cta .cta-button {
        padding: 14px 25px;
        font-size: 0.95em;
    }
    
    footer {
        padding: 25px 15px;
    }
    
    footer p:first-child {
        font-size: 1em;
    }
    
    footer p:last-child {
        font-size: 0.9em;
    }
    
    .floating-buttons {
        bottom: 15px;
        right: 15px;
        gap: 12px;
    }
    
    .floating-btn {
        width: 50px;
        height: 50px;
        font-size: 1.5em;
    }
}

/* Animation untuk munculnya floating buttons */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.floating-buttons {
    animation: fadeInUp 0.8s ease;
}

/* ====== Popup Style ====== */
.popup-block {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease;
}

.popup-block.active {
    visibility: visible;
    opacity: 1;
}

.popup-content {
    background: #1a1a2e;
    color: #fff;
    padding: 25px 30px;
    border-radius: 12px;
    text-align: center;
    max-width: 350px;
    box-shadow: 0 4px 25px rgba(0,0,0,0.4);
    animation: popIn 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.popup-content h3 {
    margin: 0 0 10px;
    font-size: 20px;
    color: #ff5252;
}

.popup-content p {
    font-size: 15px;
    color: #ddd;
    margin-bottom: 15px;
}

.popup-content button {
    background: #ff5252;
    border: none;
    padding: 8px 18px;
    color: #fff;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.2s;
}
.popup-content button:hover {
    background: #ff2e2e;
}

@keyframes popIn {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}