/* Reset margin & padding di body dan html */
html, body {
  margin: 0;
  padding: 0;
  font-family: 'Open Sans', sans-serif;
  background-color: #fafafa;
  color: #333;
}

/* Container untuk batas lebar konten */
.container {
  width: 90%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

/* Semua section tanpa margin & padding vertikal di luar section */
section {
  margin: 0;
  padding: 0;
}




/* Modern Hero Section */
.hero-section {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: linear-gradient(135deg, #1b272d, #2c3e50);
  color: white;
  padding: 0 20px;
}

.hero-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" opacity="0.03"><path d="M30,50 Q50,30 70,50 T90,50" fill="none" stroke="white" stroke-width="2"/></svg>') repeat;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 0;
}

.hero-pre-title {
  font-size: 1.5rem;
  font-weight: 300;
  letter-spacing: 5px;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: rgba(255,255,255,0.8);
  position: relative;
  display: inline-block;
}

.hero-pre-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 2px;
  background: rgba(255,255,255,0.5);
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  font-weight: 700;
  margin: 0 0 30px 0;
  line-height: 1.1;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.ampersand {
  color: #ffeb3b;
  font-weight: 400;
  margin: 0 15px;
}

.invitation-card {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 30px;
  max-width: 600px;
  margin: 0 auto 40px;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.invitation-label {
  font-size: 1rem;
  margin-bottom: 15px;
  color: rgba(255,255,255,0.8);
}

.guest-name {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  margin: 0 0 10px 0;
  color: white;
  position: relative;
  display: inline-block;
}

.guest-name::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 2px;
  background: rgba(255,255,255,0.3);
}

.guest-address {
  font-size: 1rem;
  margin-bottom: 20px;
  color: rgba(255,255,255,0.8);
}

.invitation-text {
  font-size: 1.1rem;
  line-height: 1.6;
  margin: 20px 0 0 0;
}

/* Scroll Button */
.scroll-down {
  margin-top: 50px;
}

.scroll-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 30px;
  background: linear-gradient(135deg, #48665f, #7AAA9F);
  color: white;
  border: none;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(72,102,95,0.3);
  position: relative;
  overflow: hidden;
}

.scroll-button span {
  position: relative;
  z-index: 2;
  margin-right: 15px;
}

.scroll-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(72,102,95,0.4);
}

.scroll-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #7AAA9F, #48665f);
  transition: all 0.4s ease;
  z-index: 1;
}

.scroll-button:hover::before {
  left: 0;
}

/* Mouse Animation */
.mouse {
  width: 25px;
  height: 40px;
  border: 2px solid white;
  border-radius: 15px;
  position: relative;
  display: flex;
  justify-content: center;
  z-index: 2;
}

.wheel {
  width: 5px;
  height: 8px;
  background: white;
  border-radius: 3px;
  position: absolute;
  top: 5px;
  animation: mouse-wheel 1.5s ease infinite;
}

@keyframes mouse-wheel {
  0% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(10px); opacity: 0; }
}

/* Floating Elements */
.hero-floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
}

.floating-heart,
.floating-flower,
.floating-ring {
  position: absolute;
  opacity: 0.1;
}

.floating-heart {
  width: 80px;
  height: 80px;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="white"><path d="M12 21.35l-1.45-1.32C5.4 15.36 2 12.28 2 8.5 2 5.42 4.42 3 7.5 3c1.74 0 3.41.81 4.5 2.09C13.09 3.81 14.76 3 16.5 3 19.58 3 22 5.42 22 8.5c0 3.78-3.4 6.86-8.55 11.54L12 21.35z"/></svg>') no-repeat center;
  animation: float 15s ease-in-out infinite;
}

.floating-flower {
  width: 60px;
  height: 60px;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="white"><path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-2 15l-5-5 1.41-1.41L10 14.17l7.59-7.59L19 8l-9 9z"/></svg>') no-repeat center;
  animation: float 20s ease-in-out infinite reverse;
}

.floating-ring {
  width: 70px;
  height: 70px;
  border: 2px dashed white;
  border-radius: 50%;
  animation: float 25s linear infinite;
}

@keyframes float {
  0% { transform: translate(0, 0) rotate(0deg); }
  25% { transform: translate(50px, 50px) rotate(5deg); }
  50% { transform: translate(100px, 0) rotate(0deg); }
  75% { transform: translate(50px, -50px) rotate(-5deg); }
  100% { transform: translate(0, 0) rotate(0deg); }
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 4rem;
  }
  
  .guest-name {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .hero-section {
    min-height: 500px;
  }
  
  .hero-title {
    font-size: 3.5rem;
  }
  
  .invitation-card {
    padding: 25px;
  }
  
  .guest-name {
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  .hero-section {
    min-height: 450px;
  }
  
  .hero-pre-title {
    font-size: 1.2rem;
    letter-spacing: 3px;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .invitation-card {
    padding: 20px;
  }
  
  .guest-name {
    font-size: 1.5rem;
  }
  
  .invitation-text {
    font-size: 1rem;
  }
  
  .scroll-button {
    padding: 12px 25px;
    font-size: 0.9rem;
  }
  
  .mouse {
    width: 20px;
    height: 35px;
  }
}




/* Doa Section Styles */
.doa-section {
  padding: 60px 0;
  background-color: #f9f9f9;
  background-image: linear-gradient(to bottom, #ffffff, #f0f7ff);
  position: relative;
  overflow: hidden;
}

.doa-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('islamic-pattern.png') repeat;
  opacity: 0.03;
  pointer-events: none;
}

.section-title-doa {
  text-align: center;
  font-size: 2rem;
  color: #2c3e50;
  margin-bottom: 40px;
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
}

.section-title-doa::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background: linear-gradient(to right, #8e44ad, #3498db);
  margin: 10px auto 0;
}

.verse-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.verse-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.verse-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.verse-content {
  background: linear-gradient(135deg, #8e44ad, #3498db);
  color: white;
  padding: 30px;
  position: relative;
  text-align: center;
}

.arabic-text {
  font-size: 2rem;
  font-family: 'Scheherazade', 'Traditional Arabic', 'Amiri', serif;
  line-height: 1.8;
  margin: 0;
  text-align: center;
  direction: rtl;
  color: white;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.verse-details {
  padding: 25px;
  text-align: center;
}

.latin-text {
  font-style: italic;
  color: #555;
  font-size: 1.1rem;
  margin-bottom: 15px;
  line-height: 1.6;
}

.translation-text {
  font-size: 1rem;
  color: #444;
  line-height: 1.8;
  margin-bottom: 20px;
}

.verse-reference {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 15px;
  border-top: 1px solid #eee;
}

.surah-name {
  font-weight: 600;
  color: #8e44ad;
}

.verse-actions {
  display: flex;
  gap: 10px;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .section-title-doa {
    font-size: 1.8rem;
  }
  
  .arabic-text {
    font-size: 1.6rem;
  line-height: 1.6;
  }
  
  .verse-content {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .doa-section {
    padding: 40px 0;
  }
  
  .section-title-doa {
    font-size: 1.5rem;
  }
  
  .arabic-text {
    font-size: 1.3rem;
  }
  
  .latin-text {
    font-size: 1rem;
  }
  
  .verse-details {
    padding: 20px 15px;
  }
  
  .verse-content {
    padding: 15px;
  }
}

/* Animation */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.verse-card {
  animation: fadeIn 0.6s ease-out forwards;
}



/* Modern Wedding Details Section */
.wedding-details {
  background: linear-gradient(135deg, #48665f, #7AAA9F);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.wedding-details::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" opacity="0.03"><path d="M30,50 Q50,30 70,50 T90,50" fill="none" stroke="white" stroke-width="2"/></svg>') repeat;
  pointer-events: none;
}

.acara-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}

.title-text-acara {
  display: inline-block;
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 15px;
  position: relative;
  text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.title-divider {
  width: 120px;
  height: 10px;
  display: block;
  margin: 0 auto;
}

.acara-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-bottom: 60px;
}

.acara-box {
  flex: 1 1 350px;
  max-width: 100%;
  background: white;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center; /* Ini akan membuat semua konten termasuk tombol berada di tengah */
  text-align: center;
}

.acara-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #48665f, #7AAA9F);
}

.acara-box:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.acara-icon {
  width: 60px;
  height: 60px;
  background: rgba(72, 102, 95, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.acara-icon svg {
  width: 30px;
  height: 30px;
}

.acara-box h3 {
  font-size: 1.8rem;
  color: #1b272d;
  margin-bottom: 25px;
  text-align: center;
  position: relative;
  padding-bottom: 15px;
}

.acara-box h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, #48665f, #7AAA9F);
  border-radius: 3px;
}

.acara-box ul {
  list-style: none;
  padding: 0;
  margin: 0 0 25px 0;
}

.acara-box ul li {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 1.1rem;
  color: #1b272d;
}

.acara-box ul li svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.btn-map-container {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.btn-map {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 10px;
  padding: 12px 25px;
  background: linear-gradient(90deg, #48665f, #7AAA9F);
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 500;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(72, 102, 95, 0.3);
}

.btn-map:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(72, 102, 95, 0.4);
  background: linear-gradient(90deg, #3a5650, #5d8e83);
}

.btn-map svg {
  width: 16px;
  height: 16px;
}

/* Map Container */
.map-container {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.map-tabs {
  display: flex;
  border-bottom: 1px solid #eee;
}

.map-tab {
  flex: 1;
  padding: 15px;
  text-align: center;
  background: #f9f9f9;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  color: #48665f;
  transition: all 0.3s ease;
}

.map-tab.active {
  background: white;
  color: #1b272d;
  position: relative;
}

.map-tab.active::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #48665f, #7AAA9F);
}

.map-embed {
  display: none;
  height: 400px;
}

.map-embed.active {
  display: block;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .title-text-acara {
    font-size: 2rem;
  }
  
  .acara-content {
    gap: 20px;
  }
  
  .acara-box {
    padding: 25px;
  }
  
  .acara-box h3 {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .wedding-details {
    padding: 60px 0;
  }
  
  .title-text {
    font-size: 1.8rem;
  }
  
  .acara-box {
    flex: 1 1 100%;
    padding: 20px;
  }
  
  .map-tab {
    padding: 12px;
    font-size: 0.9rem;
  }
  
  .map-embed {
    height: 300px;
  }
}

/* Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.acara-box {
  animation: fadeInUp 0.6s ease-out forwards;
}

.acara-box:nth-child(2) {
  animation-delay: 0.2s;
}



/* Modern Pengantin Section */
.pengantin-section {
  background: linear-gradient(135deg, #f8fafc, #e6f0ff);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.pengantin-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" opacity="0.03"><path d="M30,50 Q50,30 70,50 T90,50" fill="none" stroke="%231b272d" stroke-width="2"/></svg>') repeat;
  pointer-events: none;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
}

.title-text {
  display: inline-block;
  font-size: 2.5rem;
  font-weight: 700;
  color: #1b272d;
  margin-bottom: 15px;
  position: relative;
}

.title-divider {
  width: 120px;
  height: 10px;
  display: block;
  margin: 0 auto;
}

.couple-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.person-card {
  flex: 1 1 400px;
  max-width: 450px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: white;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.08);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.person-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #48665f, #7AAA9F);
}

.person-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.photo-frame {
  width: 250px;
  height: 250px;
  border-radius: 50%;
  position: relative;
  margin-bottom: 25px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  overflow: hidden;
  border: 5px solid white;
}

.photo-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(72,102,95,0.2), rgba(122,170,159,0.2));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.person-card:hover .photo-overlay {
  opacity: 1;
}

.person-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.person-card:hover .person-photo {
  transform: scale(1.05);
}

.person-info {
  text-align: center;
}

.person-name {
  font-size: 1.8rem;
  font-weight: 700;
  color: #1b272d;
  margin-bottom: 10px;
  position: relative;
}

.person-name::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, #48665f, #7AAA9F);
}

.person-parents {
  font-size: 1.1rem;
  color: #1b272d;
  margin: 20px 0;
  line-height: 1.6;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 25px;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #48665f, #7AAA9F);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(72,102,95,0.3);
}

.social-icon:hover {
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 8px 15px rgba(72,102,95,0.4);
}

.heart-divider {
  flex: 0 0 100px;
  text-align: center;
  animation: heartbeat 1.5s ease-in-out infinite;
}

.heart-divider svg {
  width: 50px;
  height: 50px;
  filter: drop-shadow(0 2px 5px rgba(231, 76, 60, 0.3));
}

/* Animations */
@keyframes heartbeat {
  0% { transform: scale(1); }
  25% { transform: scale(1.1); }
  50% { transform: scale(1); }
  75% { transform: scale(1.1); }
  100% { transform: scale(1); }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.person-card {
  animation: fadeInUp 0.8s ease-out forwards;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .couple-container {
    gap: 30px;
  }
  
  .person-card {
    flex: 1 1 350px;
  }
}

@media (max-width: 768px) {
  .section-title {
    margin-bottom: 40px;
  }
  
  .title-text {
    font-size: 2rem;
  }
  
  .heart-divider {
    flex: 0 0 100%;
    order: -1;
    margin-bottom: 20px;
  }
  
  .photo-frame {
    width: 200px;
    height: 200px;
  }
}

@media (max-width: 480px) {
  .pengantin-section {
    padding: 60px 0;
  }
  
  .title-text {
    font-size: 1.8rem;
  }
  
  .person-card {
    padding: 20px;
  }
  
  .person-name {
    font-size: 1.5rem;
  }
  
  .person-parents {
    font-size: 1rem;
  }
  
  .social-icon {
    width: 35px;
    height: 35px;
    font-size: 1rem;
  }
}



/* Modern Countdown Section */
.countdown-section {
  position: relative;
  background: linear-gradient(135deg, #48665f, #7AAA9F);
  color: #fff;
  padding: 100px 20px;
  overflow: hidden;
  font-family: 'Poppins', sans-serif;
}

.countdown-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.countdown-header {
  text-align: center;
  margin-bottom: 60px;
}

.countdown-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.countdown-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: rgba(255,255,255,0.5);
  border-radius: 2px;
}

.countdown-subtitle {
  font-size: 1.2rem;
  opacity: 0.9;
  margin-top: 10px;
}

.countdown-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 25px;
  max-width: 800px;
  margin: 0 auto;
}

.countdown-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 30px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.countdown-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.countdown-number {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 5px;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
}

.countdown-card:hover .countdown-number {
  transform: scale(1.05);
}

.countdown-label {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  opacity: 0.8;
}

.countdown-message {
  text-align: center;
  margin-top: 40px;
  font-size: 1.2rem;
  opacity: 0.9;
}

/* Decorative elements */
.countdown-decoration {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
}

.floating-heart {
  position: absolute;
  width: 100px;
  height: 100px;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="rgba(255,255,255,0.1)"><path d="M12 21.35l-1.45-1.32C5.4 15.36 2 12.28 2 8.5 2 5.42 4.42 3 7.5 3c1.74 0 3.41.81 4.5 2.09C13.09 3.81 14.76 3 16.5 3 19.58 3 22 5.42 22 8.5c0 3.78-3.4 6.86-8.55 11.54L12 21.35z"/></svg>') no-repeat center;
  animation: float 15s ease-in-out infinite;
}

.floating-ring {
  position: absolute;
  width: 80px;
  height: 80px;
  border: 2px dashed rgba(255,255,255,0.1);
  border-radius: 50%;
  animation: float 20s ease-in-out infinite reverse;
}

/* Animations */
@keyframes progress {
  0% { transform: scaleX(0); }
  100% { transform: scaleX(1); }
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  25% { transform: translate(50px, 50px) rotate(5deg); }
  50% { transform: translate(100px, 0) rotate(0deg); }
  75% { transform: translate(50px, -50px) rotate(-5deg); }
}

/* Responsive Styles */
@media (max-width: 768px) {
  .countdown-title {
    font-size: 2rem;
  }
  
  .countdown-subtitle {
    font-size: 1rem;
  }
  
  .countdown-grid {
    gap: 15px;
  }
  
  .countdown-card {
    padding: 20px 15px;
  }
  
  .countdown-number {
    font-size: 2.5rem;
  }
}

@media (max-width: 480px) {
  .countdown-section {
    padding: 70px 15px;
  }
  
  .countdown-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .countdown-number {
    font-size: 2rem;
  }
  
  .countdown-label {
    font-size: 0.8rem;
    letter-spacing: 1px;
  }
}



/* Modern Gallery Section */
.gallery-section {
  background-color: #ffffff;
  padding: 80px 0;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-title {
  position: relative;
  margin-bottom: 15px;
}

.title-text {
  display: inline-block;
  font-size: 2.5rem;
  font-weight: 700;
  color: #1b272d;
  margin-bottom: 15px;
}

.title-divider {
  width: 120px;
  height: 10px;
  display: block;
  margin: 0 auto;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #1b272d;
  opacity: 0.8;
  margin-top: 10px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.gallery-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.4);
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.view-button {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  border: none;
  color: #1b272d;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.view-button:hover {
  background: white;
  transform: scale(1.1);
}

/* Lightbox Styles */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.9);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.lightbox.active {
  opacity: 1;
  pointer-events: all;
}

.lightbox-close {
  position: absolute;
  top: 30px;
  right: 30px;
  background: none;
  border: none;
  color: white;
  font-size: 1.8rem;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.lightbox-close:hover {
  transform: rotate(90deg);
}

.lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
}

.lightbox-content img {
  max-height: 80vh;
  max-width: 100%;
  border-radius: 8px;
  box-shadow: 0 5px 30px rgba(0,0,0,0.3);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.2);
  border: none;
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.lightbox-nav:hover {
  background: rgba(255,255,255,0.3);
}

.lightbox-nav.prev {
  left: -70px;
}

.lightbox-nav.next {
  right: -70px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }
}

@media (max-width: 768px) {
  .gallery-section {
    padding: 60px 0;
  }
  
  .title-text {
    font-size: 2rem;
  }
  
  .section-subtitle {
    font-size: 1rem;
  }
  
  .gallery-grid {
    gap: 15px;
  }
  
  .lightbox-nav.prev {
    left: 10px;
  }
  
  .lightbox-nav.next {
    right: 10px;
  }
}

@media (max-width: 480px) {
  .gallery-section {
    padding: 50px 0;
  }
  
  .title-text {
    font-size: 1.8rem;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 10px;
    padding: 0 10px;
  }
  
  .lightbox-close {
    top: 15px;
    right: 15px;
  }
  
  .lightbox-content img {
    max-height: 70vh;
  }
}



/* Modern Gift Section */
.gift-section {
  background: linear-gradient(135deg, #f8fafc, #e6f0ff);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.gift-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" opacity="0.03"><path d="M30,50 Q50,30 70,50 T90,50" fill="none" stroke="%2348665f" stroke-width="2"/></svg>') repeat;
  pointer-events: none;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-title {
  position: relative;
  margin-bottom: 15px;
}

.title-text {
  display: inline-block;
  font-size: 2.5rem;
  font-weight: 700;
  color: #48665f;
  margin-bottom: 15px;
}

.title-divider {
  width: 120px;
  height: 10px;
  display: block;
  margin: 0 auto;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #48665f;
  opacity: 0.8;
  margin-top: 10px;
}

.gift-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  max-width: 900px;
  margin: 0 auto 40px;
}

.gift-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0,0,0,0.08);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
}

.gift-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.gift-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px;
  background: linear-gradient(135deg, rgba(72,102,95,0.1), rgba(122,170,159,0.1));
  border-bottom: 1px solid rgba(72,102,95,0.1);
}

.bank-logo img {
  height: 40px;
  width: auto;
  max-width: 150px;
}

.gift-icon svg {
  width: 40px;
  height: 40px;
  opacity: 0.7;
}

.gift-card-body {
  padding: 25px;
}

.account-info {
  margin-bottom: 15px;
}

.account-name {
  font-size: 1.3rem;
  font-weight: 700;
  color: #1b272d;
  margin-bottom: 15px;
}

.account-number-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #f8f9fa;
  border-radius: 8px;
  padding: 12px 15px;
  border: 1px solid #e9ecef;
}

.account-number {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1b272d;
  letter-spacing: 1px;
  font-family: 'Courier New', monospace;
}

.copy-btn {
  background: none;
  border: none;
  color: #48665f;
  cursor: pointer;
  padding: 5px;
  border-radius: 5px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.copy-btn svg {
  width: 20px;
  height: 20px;
}

.copy-btn:hover {
  color: #7AAA9F;
  transform: scale(1.1);
}

.success-message {
  height: 20px;
  font-size: 0.9rem;
  color: #28a745;
  text-align: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.success-message.show {
  opacity: 1;
}

.gift-note {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  font-size: 1rem;
  color: #48665f;
  opacity: 0.8;
  line-height: 1.6;
}

/* Floating decorative elements */
.floating-gift {
  position: absolute;
  width: 60px;
  height: 60px;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%2348665f"><path d="M20 6h-2.18c.11-.31.18-.65.18-1 0-1.66-1.34-3-3-3-1.05 0-1.96.54-2.5 1.35l-.5.67-.5-.68C12.96 2.54 12.05 2 11 2 9.34 2 8 3.34 8 5c0 .35.07.69.18 1H4c-1.11 0-2 .89-2 2v2c0 .55.45 1 1 1h18c.55 0 1-.45 1-1V8c0-1.11-.89-2-2-2zm-5-2c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zM11 4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zM3 19c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2v-8H3v8z"/></svg>') no-repeat center;
  background-size: contain;
  opacity: 0.1;
  animation: float 15s ease-in-out infinite;
}

/* Animations */
@keyframes float {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  25% { transform: translate(20px, 20px) rotate(5deg); }
  50% { transform: translate(40px, 0) rotate(0deg); }
  75% { transform: translate(20px, -20px) rotate(-5deg); }
}

/* Responsive Styles */
@media (max-width: 768px) {
  .gift-section {
    padding: 60px 0;
  }
  
  .title-text {
    font-size: 2rem;
  }
  
  .section-subtitle {
    font-size: 1rem;
  }
  
  .gift-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .gift-section {
    padding: 50px 15px;
  }
  
  .title-text {
    font-size: 1.8rem;
  }
  
  .gift-card {
    padding: 15px;
  }
  
  .account-name {
    font-size: 1.2rem;
    text-align: center;
  }
  
  .account-number {
    font-size: 0.8rem;
  }
}



/* Modern Comment Section */
.comment-section {
  background: linear-gradient(135deg, #f8fafc, #e6f0ff);
  padding: 5rem 1.5rem;
  position: relative;
  overflow: hidden;
  font-family: 'Poppins', sans-serif;
  isolation: isolate;
}

.comment-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" opacity="0.03"><path d="M30,50 Q50,30 70,50 T90,50" fill="none" stroke="%2348665f" stroke-width="2"/></svg>') repeat;
  pointer-events: none;
  z-index: -1;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
}

.section-title {
  position: relative;
  margin-bottom: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.title-text {
  display: inline-block;
  font-size: clamp(1.8rem, 5vw, 2.5rem);
  font-weight: 700;
  color: #48665f;
  margin-bottom: 1rem;
  position: relative;
  text-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.title-divider {
  width: 120px;
  height: 10px;
  display: block;
  margin: 0 auto;
}

.section-subtitle {
  font-size: clamp(0.9rem, 3vw, 1.1rem);
  color: #48665f;
  opacity: 0.8;
  margin-top: 0.5rem;
}

.comment-form {
  max-width: 800px;
  margin: 0 auto 3rem auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  background: white;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(122, 170, 159, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.comment-form:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.form-group {
  position: relative;
}

.comment-form input,
.comment-form textarea {
  padding: 1rem 1rem 1rem 3rem;
  border: 1px solid #e0e6ed;
  border-radius: 12px;
  font-size: 1rem;
  width: 100%;
  box-sizing: border-box;
  transition: all 0.3s ease;
  background-color: #ffffff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
  font-family: 'Poppins', sans-serif;
}

.comment-form input::placeholder,
.comment-form textarea::placeholder {
  color: #a0aec0;
  opacity: 0.7;
}

.comment-form textarea {
  min-height: 150px;
  resize: vertical;
  line-height: 1.6;
}

.comment-form input:focus,
.comment-form textarea:focus {
  outline: none;
  border-color: #7AAA9F;
  box-shadow: 0 0 0 3px rgba(122, 170, 159, 0.2);
}

.icon {
  position: absolute;
  left: 1.2rem;
  top: 50%;
  transform: translateY(-50%);
  color: #7AAA9F;
  font-size: 1.1rem;
}

.comment-form textarea + .icon {
  top: 1.2rem;
  transform: none;
}

.form-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.comment-btn {
  background: linear-gradient(135deg, #48665f, #7AAA9F);
  color: white;
  padding: 1rem 1.5rem;
  border: none;
  border-radius: 12px;
  font-size: 1rem;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  box-shadow: 0 5px 15px rgba(72, 102, 95, 0.3);
  flex-shrink: 0;
}

.comment-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(72, 102, 95, 0.4);
  background: linear-gradient(135deg, #3a5650, #5d8b7d);
}

.comment-btn:active {
  transform: translateY(0);
}

.comment-btn.loading {
  pointer-events: none;
  opacity: 0.8;
}

.comment-btn.success {
  background: linear-gradient(135deg, #4CAF50, #2E7D32);
}

.character-counter {
  font-size: 0.8rem;
  color: #718096;
  margin-left: auto;
}

.comment-list {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  gap: 1.5rem;
}

.comment-item {
  background: white;
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  animation: fadeIn 0.5s ease;
  position: relative;
  transition: all 0.3s ease;
  border: 1px solid rgba(122, 170, 159, 0.1);
  overflow: hidden;
}

.comment-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.comment-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, #48665f, #7AAA9F);
}

.comment-item h4 {
  margin: 0 0 0.5rem 0;
  font-weight: 700;
  color: #1b272d;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.comment-item h4 .avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, #48665f, #7AAA9F);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 0.9rem;
}

.comment-item p {
  margin: 0.5rem 0 0 0;
  color: #3a3a3a;
  line-height: 1.7;
  white-space: pre-wrap;
  font-size: 1rem;
  padding-left: 2.5rem;
}

.comment-date {
  display: block;
  margin-top: 1rem;
  font-size: 0.8rem;
  color: #7AAA9F;
  text-align: right;
  font-style: italic;
}

/* Pagination Styles */
.pagination-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-top: 3rem;
  padding: 1rem 0;
  flex-wrap: wrap;
}

.pagination-btn {
  background: linear-gradient(135deg, #48665f, #7AAA9F);
  color: white;
  padding: 0.7rem 1.2rem;
  border: none;
  border-radius: 8px;
  font-size: 0.9rem;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 3px 10px rgba(72, 102, 95, 0.2);
  min-width: 110px;
  justify-content: center;
}

.pagination-btn:hover:not(.disabled) {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(72, 102, 95, 0.3);
  background: linear-gradient(135deg, #3a5650, #5d8b7d);
}

.pagination-btn:active:not(.disabled) {
  transform: translateY(0);
}

.pagination-btn.disabled {
  opacity: 0.5;
  cursor: not-allowed;
  background: #cccccc;
  box-shadow: none;
}

.page-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 120px;
}

#paginationInfo {
  font-size: 0.9rem;
  color: #48665f;
  font-weight: 500;
  margin-bottom: 0.3rem;
}

.page-dots {
  display: flex;
  gap: 0.5rem;
}

.page-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #cbd5e0;
  transition: all 0.3s ease;
}

.page-dot.active {
  background: #48665f;
  transform: scale(1.2);
}

/* Floating decorative elements */
.floating-hearts,
.floating-flowers {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: -1;
}

.floating-hearts::before,
.floating-hearts::after,
.floating-flowers::before,
.floating-flowers::after {
  content: '';
  position: absolute;
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.1;
  animation: float 15s ease-in-out infinite;
}

.floating-hearts::before {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%2348665f"><path d="M12 21.35l-1.45-1.32C5.4 15.36 2 12.28 2 8.5 2 5.42 4.42 3 7.5 3c1.74 0 3.41.81 4.5 2.09C13.09 3.81 14.76 3 16.5 3 19.58 3 22 5.42 22 8.5c0 3.78-3.4 6.86-8.55 11.54L12 21.35z"/></svg>');
  width: 40px;
  height: 40px;
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.floating-hearts::after {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%2348665f"><path d="M12 21.35l-1.45-1.32C5.4 15.36 2 12.28 2 8.5 2 5.42 4.42 3 7.5 3c1.74 0 3.41.81 4.5 2.09C13.09 3.81 14.76 3 16.5 3 19.58 3 22 5.42 22 8.5c0 3.78-3.4 6.86-8.55 11.54L12 21.35z"/></svg>');
  width: 30px;
  height: 30px;
  top: 70%;
  left: 80%;
  animation-delay: 3s;
}

.floating-flowers::before {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%2348665f"><path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm0-13c-2.76 0-5 2.24-5 5s2.24 5 5 5 5-2.24 5-5-2.24-5-5-5z"/></svg>');
  width: 25px;
  height: 25px;
  top: 30%;
  left: 85%;
  animation-delay: 5s;
}

.floating-flowers::after {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%2348665f"><path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm0-13c-2.76 0-5 2.24-5 5s2.24 5 5 5 5-2.24 5-5-2.24-5-5-5z"/></svg>');
  width: 35px;
  height: 35px;
  top: 80%;
  left: 15%;
  animation-delay: 7s;
}

.storage-info {
  font-size: 0.85rem;
  color: #7AAA9F;
  margin-top: -0.5rem;
  font-style: italic;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(5deg);
  }
}

/* Loading animation */
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.loading-spinner {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  border-top-color: white;
  animation: spin 1s ease-in-out infinite;
}

/* Responsive */
@media (max-width: 768px) {
  .comment-section {
    padding: 3rem 1rem;
  }
  
  .comment-form {
    padding: 1.5rem;
    margin-bottom: 2rem;
  }
  
  .form-footer {
    flex-direction: column;
    align-items: stretch;
  }
  
  .character-counter {
    margin-left: 0;
    text-align: right;
  }
  
  .pagination-controls {
    gap: 0.5rem;
  }
  
  .pagination-btn {
    min-width: auto;
    padding: 0.6rem 1rem;
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .comment-form {
    padding: 1.2rem;
    gap: 1rem;
  }
  
  .comment-form input,
  .comment-form textarea {
    padding: 0.8rem 0.8rem 0.8rem 2.8rem;
  }
  
  .icon {
    left: 1rem;
  }
  
  .comment-item {
    padding: 1.2rem;
  }
  
  .comment-item p {
    padding-left: 0;
  }
  
  .pagination-controls {
    flex-direction: column;
  }
}






/* Modern Thank You Section */
.thank-you-section {
  position: relative;
  background: linear-gradient(135deg, #48665f, #7AAA9F);
  padding: 100px 20px;
  overflow: hidden;
  color: #ffffff;
  text-align: center;
  font-family: 'Poppins', sans-serif;
}

.thank-you-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" opacity="0.05"><path d="M30,50 Q50,30 70,50 T90,50" fill="none" stroke="white" stroke-width="2"/></svg>') repeat;
  pointer-events: none;
}

.section-title-thank {
  margin-bottom: 40px;
  position: relative;
}

.title-text {
  display: inline-block;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  position: relative;
  text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.title-divider {
  width: 120px;
  height: 10px;
  display: block;
  margin: 0 auto;
}

.thank-you-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.thank-you-message {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(5px);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  border: 1px solid rgba(255,255,255,0.2);
}

.thank-you-text {
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 40px;
  position: relative;
}

.signature {
  margin-top: 50px;
  position: relative;
}

.signature-text {
  font-size: 1.1rem;
  margin-bottom: 10px;
  font-style: italic;
}

.couple-names {
  font-size: 1.8rem;
  font-weight: 700;
  margin-top: 15px;
}

.and {
  color: #ffeb3b;
  font-weight: 400;
  margin: 0 10px;
}

/* Floating decorative elements */
.floating-hearts {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 15px;
}

.heart {
  width: 20px;
  height: 20px;
  background: #ffeb3b;
  transform: rotate(45deg);
  opacity: 0;
  animation: float-heart 3s ease-in-out infinite;
}

.heart::before,
.heart::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  background: #ffeb3b;
  border-radius: 50%;
}

.heart::before {
  top: -10px;
  left: 0;
}

.heart::after {
  top: 0;
  left: -10px;
}

.heart:nth-child(1) {
  animation-delay: 0.5s;
}

.heart:nth-child(2) {
  animation-delay: 1s;
}

.heart:nth-child(3) {
  animation-delay: 1.5s;
}

.floating-flowers {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.flower {
  position: absolute;
  width: 40px;
  height: 40px;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="rgba(255,255,255,0.3)"><path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-2 15l-5-5 1.41-1.41L10 14.17l7.59-7.59L19 8l-9 9z"/></svg>') no-repeat center;
  background-size: contain;
  opacity: 0;
  animation: float-flower 15s linear infinite;
}

.flower:nth-child(1) {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.flower:nth-child(2) {
  top: 70%;
  left: 80%;
  animation-delay: 5s;
}

.flower:nth-child(3) {
  top: 40%;
  left: 60%;
  animation-delay: 10s;
}

/* Animations */
@keyframes float-heart {
  0% {
    transform: rotate(45deg) translateY(0) scale(0);
    opacity: 0;
  }
  50% {
    opacity: 1;
    transform: rotate(45deg) translateY(-20px) scale(1);
  }
  100% {
    transform: rotate(45deg) translateY(-40px) scale(0);
    opacity: 0;
  }
}

@keyframes float-flower {
  0% {
    transform: translate(0, 0) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 0.3;
  }
  90% {
    opacity: 0.3;
  }
  100% {
    transform: translate(100px, -100px) rotate(360deg);
    opacity: 0;
  }
}

/* Responsive Styles */
@media (max-width: 768px) {
  .thank-you-section {
    padding: 80px 20px;
  }
  
  .title-text-thank {
    font-size: 2rem;
  }
  
  .thank-you-message {
    padding: 30px;
  }
  
  .thank-you-text {
    font-size: 1.1rem;
  }
  
  .couple-names {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .thank-you-section {
    padding: 60px 15px;
  }
  
  .title-text {
    font-size: 1.8rem;
  }
  
  .thank-you-message {
    padding: 25px 20px;
  }
  
  .thank-you-text {
    font-size: 1rem;
    margin-bottom: 30px;
  }
  
  .couple-names {
    font-size: 1.3rem;
  }
  
  .and {
    display: block;
    margin: 10px 0;
  }
}




/* Footer */
footer {
  background: #eee;
  padding: 1rem 0;
  text-align: center;
  font-size: 0.9rem;
  color: #666;
}





/* Modern Music Player */
.audio-player-container {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 15px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-radius: 50px;
  padding: 10px 20px 10px 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.audio-player-container.visible {
  transform: translateY(0);
  opacity: 1;
}

.music-player-btn {
  position: relative;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, #48665f, #7AAA9F);
  color: white;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  padding: 0;
  overflow: hidden;
}

.music-player-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(72, 102, 95, 0.4);
}

.music-player-btn.playing {
  background: linear-gradient(135deg, #28a745, #5cb85c);
}

.music-player-btn i {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.music-player-btn.playing i {
  transform: scale(1.2);
}


@keyframes wave {
  0% { transform: scaleY(0.3); }
  100% { transform: scaleY(1); }
}

.music-tooltip {
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  background: #1b272d;
  color: white;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 0.8rem;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
}

.music-player-btn:hover .music-tooltip {
  opacity: 1;
  transform: translateX(-50%) translateY(-5px);
}

.volume-control {
  width: 0;
  overflow: hidden;
  transition: all 0.5s ease;
}

.audio-player-container:hover .volume-control {
  width: 100px;
}

#volumeSlider {
  width: 100%;
  height: 5px;
  -webkit-appearance: none; /* Untuk Chrome, Safari, Edge versi baru */
  -moz-appearance: none;    /* Untuk Firefox */
  appearance: none;         /* Sintaks standar */
  background: rgba(72, 102, 95, 0.3);
  border-radius: 5px;
  outline: none;
  cursor: pointer;
}

#volumeSlider::-webkit-slider-thumb {
  -webkit-appearance: none; /* Untuk Chrome, Safari, Edge versi baru */
  -moz-appearance: none;    /* Untuk Firefox */
  appearance: none;         /* Sintaks standar */
  width: 15px;
  height: 15px;
  background: #48665f;
  border-radius: 50%;
  cursor: pointer;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .audio-player-container {
    bottom: 20px;
    right: 20px;
    padding: 8px 15px 8px 8px;
  }
  
  .music-player-btn {
    width: 45px;
    height: 45px;
  }
  
  .audio-player-container:hover .volume-control {
    width: 80px;
  }
}

@media (max-width: 480px) {
  .audio-player-container {
    bottom: 15px;
    right: 15px;
    transform: translateY(100px) scale(0.9);
    transform-origin: bottom right;
  }
  
  .audio-player-container.visible {
    transform: translateY(0) scale(0.9);
  }
  
  .music-tooltip {
    display: none;
  }
}





