* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #006c80;
  --secondary: #00b3a0;
  --accent: #7cd1e8;
  --bg-light: #f7f9fb;
  --text-dark: #333333;
  --white: #ffffff;
  --gray: #666666;
  --light-gray: #f0f0f0;
  --border-radius: 12px;
  --shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  --shadow-hover: 0 8px 25px rgba(0, 0, 0, 0.15);
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'Open Sans', sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  background: var(--white);
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
}

/* ========== HERO SECTION ========== */
.about-hero {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 100px;
}

.about-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../assets/gallery/about1.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  z-index: 1;
}

.about-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 108, 128, 0.8) 0%, rgba(0, 179, 160, 0.6) 50%, rgba(0, 108, 128, 0.8) 100%);
  z-index: 2;
}

.about-hero-overlay::after {
  display: none;
}

.about-hero-overlay::before {
  display: none;
}

.about-hero-content {
  position: relative;
  z-index: 4;
  width: 100%;
  text-align: center;
  color: white;
}

.about-hero-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: white;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  margin-bottom: 2rem;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  box-shadow: 0 4px 15px rgba(0, 108, 128, 0.3);
  transition: all 0.3s ease;
}

.about-hero-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 108, 128, 0.4);
}

.about-hero-title {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 2rem;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  color: white;
}

@media (max-width: 768px) {
  .about-hero {
    min-height: 40vh;
    padding-top: 80px;
  }

  .about-hero-bg {
    background-attachment: scroll;
  }

  .about-hero-title {
    font-size: 2.5rem;
  }

  .about-hero-badge {
    font-size: 0.8rem;
    padding: 0.6rem 1.5rem;
  }

  .about-hero-subtitle {
    font-size: 1.1rem;
  }
}

@media (max-width: 576px) {
  .about-hero {
    min-height: 35vh;
    padding-top: 80px;
  }

  .about-hero-title {
    font-size: 2rem;
  }

  .about-hero-badge {
    font-size: 0.75rem;
    padding: 0.5rem 1.2rem;
  }

  .about-hero-subtitle {
    font-size: 1rem;
  }
}

/* Services Section */
.services-section {
  padding: 80px 20px;
  background: linear-gradient(180deg, #ffffff 0%, var(--bg-light) 100%);
  position: relative;
  overflow: hidden;
}

/* Removed floating animations */

/* Remove white fade overlays on services page */
.about-hero-overlay::after,
.about-hero-overlay::before {
  display: none;
}

/* Remove decorative white radial glows on services section */
.services-section::before,
.services-section::after {
  display: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.section-header {
  text-align: center;
  margin-bottom: 70px;
}

.section-header h2 {
  font-size: 2.8rem;
  color: var(--primary);
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--white));
  border-radius: 2px;
}

.section-header p {
  font-size: 1.1rem;
  color: var(--gray);
  max-width: 600px;
  margin: 25px auto 0;
}

/* Services Grid Layout */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  margin: 4rem 0;
}

.service-card {
  background: var(--white);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.service-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
}

.service-icon-wrapper {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.service-card:hover .service-icon-wrapper {
  transform: scale(1.1);
}

.service-card-icon {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-badge {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--white);
  padding: 0.8rem 1.5rem;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.service-card-content h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.service-card-content p {
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.service-highlights {
  margin-bottom: 2rem;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  padding: 0.8rem;
  background: rgba(var(--primary-rgb), 0.05);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.highlight-item:hover {
  background: rgba(var(--primary-rgb), 0.1);
  transform: translateX(5px);
}

.highlight-item i {
  color: var(--primary);
  font-size: 1.2rem;
  width: 20px;
  text-align: center;
}

.highlight-item span {
  color: var(--text-dark);
  font-weight: 500;
  font-size: 1rem;
}

.service-stats {
  display: flex;
  gap: 2rem;
  padding: 1.5rem;
  background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.1), rgba(var(--secondary-rgb), 0.1));
  border-radius: 15px;
  margin-top: 1.5rem;
}

.stat-mini {
  text-align: center;
  flex: 1;
}

.stat-mini .stat-number {
  display: block;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.3rem;
}

.stat-mini .stat-label {
  font-size: 0.9rem;
  color: var(--text-light);
  font-weight: 500;
}

/* Responsive Services Grid */
@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 1.5rem 0;
  }

  .service-card {
    padding: 1.5rem;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  }

  .service-card-content h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
  }

  .service-card-content p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
  }

  .service-card-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.2rem;
  }

  .service-icon-wrapper {
    width: 60px;
    height: 60px;
  }

  .service-badge {
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
  }

  .highlight-item {
    padding: 0.5rem;
    margin-bottom: 0.6rem;
  }

  .highlight-item i {
    font-size: 0.9rem;
    width: 18px;
  }

  .highlight-item span {
    font-size: 0.85rem;
  }

  .service-stats {
    flex-direction: column;
    gap: 0.8rem;
    padding: 1rem;
    margin-top: 1rem;
  }

  .stat-mini {
    padding: 0.8rem;
    background: rgba(0, 108, 128, 0.05);
    border-radius: 10px;
  }

  .stat-mini .stat-number {
    font-size: 1.4rem;
  }

  .stat-mini .stat-label {
    font-size: 0.8rem;
  }

  .service-highlights {
    margin-bottom: 1.5rem;
  }
}

@media (max-width: 480px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin: 1rem 0;
  }

  .service-card {
    padding: 1rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  }

  .service-card-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.6rem;
  }

  .service-card-content p {
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1rem;
  }

  .service-card-header {
    gap: 0.8rem;
    margin-bottom: 1rem;
  }

  .service-icon-wrapper {
    width: 50px;
    height: 50px;
  }

  .service-badge {
    padding: 0.4rem 0.8rem;
    font-size: 0.7rem;
  }

  .highlight-item {
    padding: 0.4rem;
    margin-bottom: 0.5rem;
  }

  .highlight-item i {
    font-size: 0.85rem;
    width: 16px;
  }

  .highlight-item span {
    font-size: 0.8rem;
  }

  .service-stats {
    padding: 0.8rem;
    gap: 0.6rem;
    margin-top: 1rem;
  }

  .stat-mini {
    padding: 0.6rem;
  }

  .stat-mini .stat-number {
    font-size: 1.2rem;
  }

  .stat-mini .stat-label {
    font-size: 0.75rem;
  }

  .service-highlights {
    margin-bottom: 1rem;
  }
}

.service-item:hover .service-icon-img {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.service-content h3 {
  font-size: 1.8rem;
  color: var(--primary);
  margin-bottom: 15px;
  transition: all 0.3s ease;
}

.service-item:hover .service-content h3 {
  color: var(--secondary);
  transform: translateX(5px);
}

.service-item:nth-child(even):hover .service-content h3 {
  transform: translateX(-5px);
}

.service-content p {
  color: var(--gray);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

.service-features {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.service-item:nth-child(even) .service-features {
  justify-content: flex-end;
}

.feature-badge {
  background: var(--white);
  color: var(--primary);
  padding: 8px 18px;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.feature-badge:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--secondary);
  transform: translateY(-2px);
}

/* Stats Banner */
.stats-banner {
  margin-top: 80px;
  padding: 60px 40px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-hover);
  position: relative;
  overflow: hidden;
}

.stats-banner::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  position: relative;
  z-index: 1;
}

.stat-item {
  text-align: center;
  transition: all 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-10px);
}

.stat-icon {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
}

.stat-item:hover .stat-icon {
  background: rgba(255, 255, 255, 0.3);
}

.stat-icon i {
  font-size: 2rem;
  color: var(--white);
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
  font-family: 'Poppins', sans-serif;
}

.stat-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  font-weight: 600;
}

/* Why Choose Us Section */
.why-choose-section {
  margin-top: 80px;
  background: #ffffff;
  padding: 60px 40px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-hover);
}

.why-title {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 50px;
  position: relative;
  display: inline-block;
  text-align: center;
  width: 100%;
}

.why-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  border-radius: 2px;
}

.benefits-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-bottom: 50px;
}

.benefit-card {
  background: linear-gradient(135deg, #f8fbfc 0%, var(--white) 100%);
  padding: 40px 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  transition: all 0.4s ease;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.benefit-card:hover::before {
  transform: scaleX(1);
}

.benefit-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
  border-color: var(--accent);
}

.benefit-header {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  gap: 20px;
}

.benefit-icon-wrap {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon-wrap {
  transform: scale(1.1);
}

.benefit-icon-wrap i {
  font-size: 2rem;
  color: var(--white);
}

.benefit-header h4 {
  font-size: 1.5rem;
  color: var(--primary);
  margin: 0;
}

.benefit-card p {
  color: var(--gray);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

.benefit-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.benefit-list li {
  padding: 10px 0;
  color: var(--text-dark);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s ease;
}

.benefit-list li:hover {
  padding-left: 10px;
  color: var(--secondary);
}

.benefit-list li i {
  color: var(--secondary);
  font-size: 1rem;
  flex-shrink: 0;
}

/* Process Flow Section */
.process-section {
  margin-top: 50px;
  text-align: center;
}

.process-title {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 40px;
  font-weight: 600;
}

.process-flow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.process-step {
  flex: 1;
  min-width: 200px;
  background: linear-gradient(135deg, var(--white), #f8fbfc);
  padding: 30px 20px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  position: relative;
  transition: all 0.4s ease;
  border: 2px solid transparent;
}

.process-step:hover {
  transform: translateY(-10px) scale(1.05);
  border-color: var(--secondary);
  box-shadow: var(--shadow-hover);
}

.process-number {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 20px;
  box-shadow: 0 4px 15px rgba(0, 108, 128, 0.3);
  transition: all 0.3s ease;
}

.process-step:hover .process-number {
  transform: scale(1.1);
}

.process-step i {
  font-size: 2.5rem;
  color: var(--secondary);
  margin-bottom: 15px;
  display: block;
  transition: all 0.3s ease;
}

.process-step:hover i {
  transform: scale(1.2);
  color: var(--primary);
}

.process-step h5 {
  font-size: 1.2rem;
  color: var(--primary);
  margin-bottom: 10px;
}

.process-step p {
  color: var(--gray);
  font-size: 0.9rem;
  line-height: 1.6;
}

.process-arrow {
  font-size: 2rem;
  color: var(--accent);
  flex-shrink: 0;
}

/* Animations removed */

/* Responsive */
@media (max-width: 768px) {
  .services-timeline {
    margin: 30px 0;
  }

  .timeline-line {
    left: 30px;
    opacity: 0.1;
  }

  .service-item,
  .service-item:nth-child(even) {
    flex-direction: column;
    text-align: center;
  }

  .service-content,
  .service-item:nth-child(even) .service-content {
    text-align: center;
    padding: 30px 0 0 0;
    width: 100%;
  }

  .service-icon {
    margin: 0 auto;
    width: 100%;
    max-width: 520px;
    height: 180px;
  }

  /* Reset image shifts on mobile to center images */
  .services-timeline .service-item .service-icon,
  .services-timeline .service-item:nth-child(even) .service-icon {
    margin-left: 0;
    margin-right: 0;
  }

  .service-icon-img {
    margin: 0 auto;
  }

  .service-features,
  .service-item:nth-child(even) .service-features {
    justify-content: center;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .service-item:hover .service-content h3,
  .service-item:nth-child(even):hover .service-content h3 {
    transform: translateX(0);
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .benefits-wrapper {
    grid-template-columns: 1fr;
  }

  .process-flow {
    flex-direction: column;
  }

  .process-arrow {
    transform: rotate(90deg);
  }

  .why-title,
  .process-title {
    font-size: 1.8rem;
  }
}

/* Why Choose Us Modern Flow */
.benefits-flow {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(4, minmax(200px, 1fr));
  gap: 24px;
  align-items: stretch;
}

.benefit-node {
  background: linear-gradient(135deg, #f8fbfc 0%, #ffffff 100%);
  border: 1px solid #e9eef2;
  border-radius: 16px;
  padding: 28px 22px;
  box-shadow: var(--shadow);
  transition: transform 250ms ease, box-shadow 250ms ease, border-color 250ms ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.benefit-node:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(0, 179, 160, 0.35);
}

.node-number {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  box-shadow: 0 6px 16px rgba(0, 108, 128, 0.25);
  margin-bottom: 14px;
}

.node-content i {
  font-size: 28px;
  color: var(--secondary);
  margin-bottom: 10px;
  display: block;
}

.node-content h4 {
  font-size: 1.1rem;
  color: var(--primary);
  margin-bottom: 6px;
}

.node-content p {
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.6;
}

.flow-arrow {
  display: none; /* arrows not needed in modern grid layout */
}

@media (max-width: 1024px) {
  .benefits-flow {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .benefits-flow {
    grid-template-columns: 1fr;
  }
}

/* ========== SERVICE CTA BUTTON ========== */
.service-cta {
  margin-top: 2rem;
  text-align: center;
}

.btn-shopee {
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  border: none;
  color: white;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
  position: relative;
  overflow: hidden;
}

.btn-shopee::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.btn-shopee:hover::before {
  left: 100%;
}

.btn-shopee:hover {
  background: linear-gradient(135deg, #e55a2b, #e0841a);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 30px rgba(255, 107, 53, 0.5);
  color: white;
  text-decoration: none;
}

.btn-shopee i {
  font-size: 1.4rem;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

@media (max-width: 768px) {
  .btn-shopee {
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
  }
}

/* ========== LAZADA BUTTON STYLING ========== */
.btn-lazada {
  background: linear-gradient(135deg, #0f147f, #ff6600) !important;
  color: white !important;
  border: none !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 0.75rem !important;
  padding: 1rem 2rem !important;
  border-radius: 50px !important;
  font-weight: 600 !important;
  font-size: 1.1rem !important;
  text-decoration: none !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 6px 20px rgba(15, 20, 127, 0.4) !important;
  position: relative !important;
  overflow: hidden !important;
}

.btn-lazada::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.btn-lazada:hover::before {
  left: 100%;
}

.btn-lazada:hover {
  background: linear-gradient(135deg, #0d115f, #e55a00) !important;
  transform: translateY(-3px) scale(1.02) !important;
  box-shadow: 0 12px 30px rgba(15, 20, 127, 0.5) !important;
  color: white !important;
  text-decoration: none !important;
}

.btn-lazada i {
  font-size: 1.4rem;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

/* ========== GRAB BUTTON STYLING ========== */
.btn-grab {
  background: linear-gradient(135deg, #00b14f, #00a651) !important;
  color: white !important;
  border: none !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 0.75rem !important;
  padding: 1rem 2rem !important;
  border-radius: 50px !important;
  font-weight: 600 !important;
  font-size: 1.1rem !important;
  text-decoration: none !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 6px 20px rgba(0, 177, 79, 0.4) !important;
  position: relative !important;
  overflow: hidden !important;
}

.btn-grab::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.btn-grab:hover::before {
  left: 100%;
}

.btn-grab:hover {
  background: linear-gradient(135deg, #009e47, #009543) !important;
  transform: translateY(-3px) scale(1.02) !important;
  box-shadow: 0 12px 30px rgba(0, 177, 79, 0.5) !important;
  color: white !important;
  text-decoration: none !important;
}

.btn-grab i {
  font-size: 1.4rem;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

@media (max-width: 768px) {
  .btn-lazada,
  .btn-grab {
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
  }
}
