/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  line-height: 1.2;
}

.section-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 1rem;
  color: #8b4513;
}

.section-subtitle {
  text-align: center;
  color: #7f8c8d;
  font-size: 1.1rem;
  margin-bottom: 3rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 12px 24px;
  border: none;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  justify-content: center;
}

.btn-primary {
  background: linear-gradient(135deg, #d2691e, #a0522d);
  color: white;
  box-shadow: 0 4px 15px rgba(210, 105, 30, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(210, 105, 30, 0.4);
}

.btn-secondary {
  background: linear-gradient(135deg, #3498db, #2980b9);
  color: white;
  box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);
}

.btn-success {
  background: linear-gradient(135deg, #27ae60, #229954);
  color: white;
  box-shadow: 0 4px 15px rgba(39, 174, 96, 0.3);
}

.btn-success:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(39, 174, 96, 0.4);
}

.btn-instagram {
  background: linear-gradient(135deg, #e1306c, #c13584);
  color: white;
  box-shadow: 0 4px 15px rgba(225, 48, 108, 0.3);
}

.btn-instagram:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(225, 48, 108, 0.4);
}

.btn-tiktok {
  background: linear-gradient(135deg, #000000, #333333);
  color: white;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.btn-tiktok:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.btn-outline {
  background: transparent;
  color: #e74c3c;
  border: 2px solid #e74c3c;
}

.btn-outline:hover {
  background: #e74c3c;
  color: white;
  transform: translateY(-2px);
}

.btn-large {
  padding: 16px 32px;
  font-size: 1.1rem;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 1rem 0;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-img {
  height: 45px;
  width: auto;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.logo h1 {
  color: #8b4513;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0;
}

.nav {
  display: flex;
  gap: 2rem;
}

.nav-link {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #e74c3c;
}

.mobile-menu-toggle {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #333;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(
    135deg,
    #015057 0%,
    #02525b 33%,
    #025e69 66%,
    #014c52 100%
  );
  color: white;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("../assets/batik-pattern.png") repeat;
  opacity: 0.1;
  animation: float 20s ease-in-out infinite;
}

/* Hero Particles */
.hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 1;
}

.particle {
  position: absolute;
  width: 6px;
  height: 6px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  animation: particleFloat 20s linear infinite;
}

.particle-1 {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.particle-2 {
  top: 40%;
  left: 80%;
  animation-delay: 4s;
}

.particle-3 {
  top: 60%;
  left: 20%;
  animation-delay: 8s;
}

.particle-4 {
  top: 80%;
  left: 70%;
  animation-delay: 12s;
}

.particle-5 {
  top: 30%;
  left: 50%;
  animation-delay: 16s;
}

@keyframes particleFloat {
  0% {
    transform: translateY(0px) scale(1);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(-100vh) scale(0.5);
    opacity: 0;
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes shimmer {
  0% {
    background-position: -200px 0;
  }
  100% {
    background-position: calc(200px + 100%) 0;
  }
}

/* Hero Floating Promos */
.hero-floating-promos {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 2;
}

.floating-promo {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  animation: floatingPromoFloat 6s ease-in-out infinite;
  min-width: 140px;
}

.floating-promo .promo-icon {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: white;
}

.promo-discount .promo-icon {
  background: linear-gradient(135deg, #e74c3c, #c0392b);
}

.promo-gift .promo-icon {
  background: linear-gradient(135deg, #f39c12, #e67e22);
}

.promo-price .promo-icon {
  background: linear-gradient(135deg, #27ae60, #229954);
}

.floating-promo .promo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.promo-title {
  font-size: 9px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 0.3px;
  line-height: 1.2;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.promo-value {
  font-size: 12px;
  font-weight: 800;
  color: rgba(255, 255, 255, 1);
  line-height: 1.1;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

.promo-discount {
  top: 15%;
  right: 8%;
  animation-delay: 0s;
}

.promo-gift {
  top: 40%;
  left: 8%;
  animation-delay: 2s;
}

.promo-price {
  top: 65%;
  right: 12%;
  animation-delay: 4s;
}

@keyframes floatingPromoFloat {
  0%,
  100% {
    transform: translateY(0px) scale(1);
  }
  50% {
    transform: translateY(-10px) scale(1.05);
  }
}

.hero-content {
  position: relative;
  z-index: 3;
}

/* Enhanced Hero Typography */
.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  line-height: 1.1;
}

.title-main {
  display: block;
  font-size: 2.8rem;
  font-weight: 600;
  opacity: 0.9;
}

.title-year {
  font-size: 2rem;
  font-weight: 800;
  margin-left: 0.5rem;
  background: linear-gradient(45deg, #f39c12, #e67e22);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  margin: 1.5rem 0;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.hero-subtitle p {
  font-size: 1.2rem;
  opacity: 0.9;
  line-height: 1.5;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 1rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  animation: pulse 2s ease-in-out infinite;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.highlight {
  background: linear-gradient(45deg, #f39c12, #e67e22);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-date {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 1.2rem;
  margin-bottom: 2rem;
  background: rgba(255, 255, 255, 0.1);
  padding: 10px 20px;
  border-radius: 50px;
  backdrop-filter: blur(10px);
  display: inline-flex;
}

.countdown-container {
  margin: 2rem 0;
}

.countdown-container h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  opacity: 0.9;
}

.countdown {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.countdown-item {
  background: rgba(255, 255, 255, 0.1);
  padding: 1rem;
  border-radius: 15px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  min-width: 80px;
}

.countdown-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: #f39c12;
}

.countdown-label {
  font-size: 0.9rem;
  opacity: 0.8;
}

.hero-cta {
  margin-top: 2rem;
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-order-btn {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: white;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
  animation: pulse-green 2s ease-in-out infinite;
}

.hero-order-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

@keyframes pulse-green {
  0%,
  100% {
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
  }
  50% {
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
  }
}

/* Promo Section */
.promo-section {
  padding: 5rem 0;
  background: #f8f9fa;
}

.promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.promo-card {
  background: white;
  padding: 2rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.promo-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.promo-card.featured {
  background: linear-gradient(135deg, #e74c3c, #c0392b);
  color: white;
  transform: scale(1.05);
}

.promo-card.special {
  background: linear-gradient(135deg, #f39c12, #e67e22);
  color: white;
}

.promo-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: #e74c3c;
}

.promo-card.featured .promo-icon,
.promo-card.special .promo-icon {
  color: white;
}

.promo-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.promo-card p {
  opacity: 0.8;
  line-height: 1.6;
}

.promo-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #e74c3c;
  color: white;
  padding: 5px 10px;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
  animation: pulse 1.5s ease-in-out infinite;
}

.promo-card.featured .promo-badge,
.promo-card.special .promo-badge {
  background: rgba(255, 255, 255, 0.2);
}

/* Enhanced Oil Promo Card */
.promo-card.oil-promo {
  position: relative;
  display: flex;
  flex-direction: column;
  background: linear-gradient(135deg, #f39c12, #e67e22, #d35400);
  color: white;
  overflow: hidden;
  min-height: 320px;
}

.promo-card.oil-promo .promo-image {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.promo-card.oil-promo .oil-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.promo-card.oil-promo .promo-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1rem;
  z-index: 2;
}

.promo-card.oil-promo .promo-icon {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  color: white;
}

.promo-card.oil-promo h3 {
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
  line-height: 1.3;
}

.promo-card.oil-promo p {
  opacity: 0.9;
  margin-bottom: 1rem;
  line-height: 1.4;
}

.promo-value {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: auto;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  width: fit-content;
}

.value-text {
  font-size: 0.9rem;
  opacity: 0.9;
}

.value-price {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
}

.promo-shine {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  transform: rotate(45deg);
  animation: shine 3s ease-in-out infinite;
}

@keyframes shine {
  0% {
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
  }
  50% {
    transform: translateX(0%) translateY(0%) rotate(45deg);
  }
  100% {
    transform: translateX(100%) translateY(100%) rotate(45deg);
  }
}

/* Products Section */
.products-section {
  padding: 5rem 0;
  background: white;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.product-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.product-image {
  position: relative;
  height: 250px;
  background: #f8f9fa;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.1);
}

.product-overlay {
  position: absolute;
  top: 15px;
  left: 15px;
}

.product-discount {
  background: #e74c3c;
  color: white;
  padding: 5px 10px;
  border-radius: 15px;
  font-weight: 600;
  font-size: 0.9rem;
}

.product-info {
  padding: 1.5rem;
}

.product-info h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: #2c3e50;
}

.product-price {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.price-original {
  text-decoration: line-through;
  color: #7f8c8d;
  font-size: 0.9rem;
}

.price-sale {
  color: #e74c3c;
  font-weight: 700;
  font-size: 1.2rem;
}

.products-cta {
  text-align: center;
}

/* Gallery Section */
.gallery-section {
  padding: 5rem 0;
  background: white;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.gallery-item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  background: white;
}

.gallery-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.gallery-media {
  position: relative;
  width: 100%;
  height: 400px; /* Portrait aspect ratio */
  overflow: hidden;
}

.gallery-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-image,
.gallery-item:hover .gallery-video {
  transform: scale(1.05);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.1) 0%,
    rgba(0, 0, 0, 0.3) 50%,
    rgba(0, 0, 0, 0.8) 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-info {
  margin-top: auto;
  color: white;
}

.gallery-info h4 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.gallery-info p {
  font-size: 0.9rem;
  opacity: 0.9;
  line-height: 1.4;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.gallery-actions {
  display: flex;
  gap: 0.5rem;
  justify-content: flex-end;
}

.gallery-btn {
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.gallery-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

.gallery-btn.view-btn:hover {
  background: rgba(52, 152, 219, 0.8);
}

.gallery-btn.play-btn:hover {
  background: rgba(231, 76, 60, 0.8);
}

.gallery-btn.share-btn:hover {
  background: rgba(46, 204, 113, 0.8);
}

.video-indicator {
  position: absolute;
  top: 15px;
  left: 15px;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 5px 10px;
  border-radius: 15px;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  backdrop-filter: blur(10px);
}

.video-indicator i {
  font-size: 0.9rem;
}

.gallery-cta {
  text-align: center;
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Location Section */
.location-section {
  padding: 5rem 0;
  background: #f8f9fa;
}

.location-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.location-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

.location-icon {
  background: linear-gradient(135deg, #e74c3c, #c0392b);
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.location-details h3 {
  color: #2c3e50;
  margin-bottom: 0.5rem;
}

.location-details p {
  color: #7f8c8d;
  line-height: 1.6;
}

.location-map {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.map-link {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

.map-link:hover {
  text-decoration: none;
  color: inherit;
}

.map-placeholder {
  height: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #015057, #02525b);
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.map-placeholder:hover {
  background: linear-gradient(135deg, #02525b, #025e69);
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.map-placeholder i {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: #f39c12;
}

.map-placeholder p {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  text-align: center;
}

.map-placeholder small {
  opacity: 0.8;
  display: block;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  text-align: center;
  line-height: 1.4;
}

.map-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #f39c12, #e67e22);
  color: white;
  padding: 10px 20px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.9rem;
  margin-top: 1rem;
  transition: all 0.3s ease;
  border: none;
}

.map-placeholder:hover .map-button {
  background: linear-gradient(135deg, #e67e22, #d35400);
  transform: scale(1.05);
}

/* Contact Section */
.contact-section {
  padding: 5rem 0;
  background: white;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.contact-card {
  background: white;
  padding: 2rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.contact-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: #27ae60;
}

.contact-card.instagram .contact-icon {
  color: #e1306c;
}

.contact-card.tiktok .contact-icon {
  color: #000000;
}

.contact-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #2c3e50;
}

.contact-card p {
  color: #7f8c8d;
  margin-bottom: 1.5rem;
}

/* CTA Section */
.cta-section {
  padding: 5rem 0;
  background: linear-gradient(
    135deg,
    #015057 0%,
    #02525b 33%,
    #025e69 66%,
    #014c52 100%
  );
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("../assets/batik-pattern.png") repeat;
  opacity: 0.05;
  pointer-events: none;
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.cta-content p {
  font-size: 1.2rem;
  opacity: 0.9;
  margin-bottom: 2rem;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Footer */
.footer {
  background: linear-gradient(
    135deg,
    #015057 0%,
    #02525b 33%,
    #025e69 66%,
    #014c52 100%
  );
  color: white;
  padding: 3rem 0 1rem;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("../assets/batik-pattern.png") repeat;
  opacity: 0.05;
  pointer-events: none;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}

.footer-section h3,
.footer-section h4 {
  margin-bottom: 1rem;
  color: #ecf0f1;
}

.footer-section p {
  opacity: 0.8;
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: #e74c3c;
  transform: translateY(-2px);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  opacity: 0.7;
  position: relative;
  z-index: 1;
}

/* Mobile Navigation Styles */
@media (max-width: 768px) {
  .nav {
    position: fixed;
    top: 80px; /* Height of header */
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-100%);
    transition: transform 0.3s ease;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
  }

  .nav.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-link {
    padding: 1rem 0;
    border-bottom: 1px solid #ecf0f1;
    font-size: 1.1rem;
    color: #333;
    text-decoration: none;
  }

  .nav-link:hover {
    color: #015057;
    background-color: #f8f9fa;
  }

  .nav-link:last-child {
    border-bottom: none;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .container {
    padding: 0 15px;
  }

  .mobile-menu-toggle {
    display: block;
  }

  .hero {
    min-height: 90vh;
    padding: 2rem 0;
  }

  .logo-img {
    height: 35px;
  }

  .logo h1 {
    font-size: 1.2rem;
  }

  .hero-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
  }

  .hero-cta {
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .countdown {
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
  }

  .countdown-item {
    min-width: 70px;
    padding: 0.8rem 0.5rem;
  }

  .countdown-number {
    font-size: 1.5rem;
  }

  .promo-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .promo-card.featured {
    transform: none;
    order: -1;
  }

  .location-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .map-placeholder {
    height: 250px;
    padding: 2rem;
  }

  .map-placeholder i {
    font-size: 2.5rem;
  }

  .map-placeholder p {
    font-size: 1.1rem;
  }

  .map-button {
    padding: 8px 16px;
    font-size: 0.8rem;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .cta-content h2 {
    font-size: 2rem;
  }

  .products-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
  }

  .gallery-media {
    height: 350px;
  }

  .gallery-cta {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .floating-promo {
    padding: 8px 12px;
    gap: 6px;
    min-width: 110px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    opacity: 0.8;
  }

  .floating-promo .promo-icon {
    width: 28px;
    height: 28px;
    font-size: 12px;
  }

  .promo-title {
    font-size: 7px;
  }

  .promo-value {
    font-size: 10px;
  }

  .promo-discount {
    top: 12%;
    right: 2%;
  }

  .promo-gift {
    top: 90%;
    left: 2%;
  }

  .promo-price {
    top: 90%;
    right: 2%;
  }

  .hero-content {
    padding-top: 0.5rem;
  }

  .hero-badge {
    margin-top: 1rem;
    padding: 6px 18px;
    font-size: 0.9rem;
  }

  .hero-date {
    font-size: 1.1rem;
    padding: 9px 18px;
    margin-bottom: 1.8rem;
  }

  .promo-card.oil-promo .promo-image {
    width: 60px;
    height: 60px;
    top: 10px;
    right: 10px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }
}

@media (max-width: 480px) {
  .logo-img {
    height: 30px;
  }

  .logo h1 {
    font-size: 1rem;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-cta .btn {
    width: 100%;
    max-width: 280px;
  }

  .countdown-item {
    min-width: 50px;
    padding: 0.6rem;
  }

  .countdown-number {
    font-size: 1.2rem;
  }

  .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }

  .btn-large {
    padding: 14px 28px;
    font-size: 1rem;
  }

  .floating-promo {
    padding: 6px 10px;
    gap: 5px;
    min-width: 85px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    opacity: 0.7;
    transform: scale(0.85);
  }

  .floating-promo .promo-icon {
    width: 20px;
    height: 20px;
    font-size: 8px;
  }

  .promo-title {
    font-size: 5px;
  }

  .promo-value {
    font-size: 7px;
  }

  .promo-discount {
    top: 15%;
    right: 1%;
  }

  .promo-gift {
    top: 92%;
    left: 1%;
  }

  .promo-price {
    top: 92%;
    right: 1%;
  }

  .hero-content {
    padding-top: 1rem;
  }

  .hero-badge {
    margin-top: 1.5rem;
    padding: 6px 16px;
    font-size: 0.85rem;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .title-main {
    font-size: 1.8rem;
  }

  .title-year {
    font-size: 1.4rem;
  }

  .hero-subtitle {
    margin: 1rem 0;
  }

  .hero-subtitle p {
    font-size: 1rem;
  }

  .countdown-container {
    margin: 1.5rem 0;
  }

  .hero-date {
    font-size: 1rem;
    padding: 8px 16px;
    margin-bottom: 1.5rem;
  }

  .hero-cta {
    margin-top: 1.5rem;
  }

  .promo-card.oil-promo .promo-image {
    width: 50px;
    height: 50px;
    top: 8px;
    right: 8px;
  }

  .promo-card.oil-promo h3 {
    font-size: 1.1rem;
  }

  .value-price {
    font-size: 1rem;
  }
}
