:root {
  /* Pink Theme Colors - Match Other Pages */
  --pink-1: #fff5f7;
  --pink-2: #ffe8ec;
  --pink-3: #ffd6e0;
  --pink-4: #ffc2d1;
  --pink-5: #ff8fab;
  --pink-6: #ff6b93;
  --accent: #1a1625;
  --gold: #e8b923;
  --muted: #8b5b66;
  --maxw: 1200px;
  --radius: 16px;
  --shadow: 0 8px 30px rgba(255, 143, 171, 0.15);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(135deg, var(--pink-1) 0%, var(--pink-2) 50%, #ffffff 100%);
  color: var(--accent);
  line-height: 1.6;
  min-height: 100vh;
}

/* Magical Background */
.magic-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
  background-image: 
    radial-gradient(circle at 20% 30%, rgba(255, 182, 193, 0.15) 2px, transparent 0),
    radial-gradient(circle at 80% 70%, rgba(255, 105, 180, 0.1) 1px, transparent 0);
  background-size: 200px 200px, 150px 150px;
  animation: sparkleFloat 20s linear infinite;
}

@keyframes sparkleFloat {
  0% { transform: translateY(0) rotate(0deg); }
  100% { transform: translateY(-100px) rotate(5deg); }
}

/* Floating Elements */
.floating-element {
  position: fixed;
  pointer-events: none;
  opacity: 0.6;
  font-size: 1.5rem;
  z-index: -1;
  animation: float 6s ease-in-out infinite;
}

.floating-element:nth-child(1) {
  top: 10%;
  left: 5%;
  animation-delay: 0s;
}

.floating-element:nth-child(2) {
  top: 20%;
  right: 5%;
  animation-delay: 2s;
}

.floating-element:nth-child(3) {
  bottom: 20%;
  left: 10%;
  animation-delay: 4s;
}

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

/* Contact Section */
.contact-section {
  max-width: var(--maxw);
  margin: 100px auto 40px auto; /* tambah ruang atas */
  padding: 40px 25px;
}

.contact-header {
  text-align: center;
  margin-bottom: 50px;
}

.contact-header h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 15px;
  background: linear-gradient(135deg, var(--accent), var(--pink-6));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contact-header h1 i {
  color: var(--pink-6);
  margin-right: 15px;
}

.contact-intro {
  font-size: 1.2rem;
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto;
}

/* Contact Container */
.contact-container {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 40px;
  align-items: start;
}

/* Contact Card */
.contact-card {
  background: rgba(255, 255, 255, 0.9);
  border-radius: var(--radius);
  padding: 40px;
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow);
}

.card-header {
  text-align: center;
  margin-bottom: 30px;
}

.card-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  margin-bottom: 8px;
  color: var(--accent);
}

.card-header h2 i {
  color: var(--pink-6);
  margin-right: 10px;
}

.card-header p {
  color: var(--muted);
}

/* Contact Form */
.contact-form {
  display: grid;
  gap: 20px;
}

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

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

.form-group label i {
  color: var(--pink-6);
  width: 16px;
}

input, textarea, select {
  padding: 14px 16px;
  border-radius: 12px;
  border: 2px solid rgba(255, 182, 193, 0.3);
  background: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  color: var(--accent);
  transition: all 0.3s ease;
  font-family: 'Poppins', sans-serif;
}

input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--pink-6);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 0 0 3px rgba(255, 107, 147, 0.1);
  transform: translateY(-2px);
}

textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.5;
}

/* Submit Button */
.submit-btn {
  background: linear-gradient(135deg, var(--pink-6), var(--pink-5));
  color: white;
  border: none;
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
  box-shadow: 0 8px 25px rgba(255, 107, 147, 0.3);
}

.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(255, 107, 147, 0.4);
}

/* Contact Info */
.contact-info {
  position: sticky;
  top: 20px;
}

.info-card {
  background: rgba(255, 255, 255, 0.9);
  border-radius: var(--radius);
  padding: 30px;
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow);
}

.info-header {
  text-align: center;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 2px solid rgba(255, 182, 193, 0.3);
}

.info-header h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--accent);
}

.info-header h3 i {
  color: var(--pink-6);
  margin-right: 10px;
}

/* Info Items */
.info-item {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
  align-items: flex-start;
}

.info-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--pink-5), var(--pink-6));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
}

.info-content h4 {
  color: var(--accent);
  margin-bottom: 5px;
  font-weight: 600;
}

.info-content p {
  color: var(--muted);
  line-height: 1.5;
}

/* Social Links */
.social-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 25px;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 15px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 10px;
  color: var(--accent);
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 182, 193, 0.3);
}

.social-link:hover {
  background: var(--pink-6);
  color: white;
  transform: translateX(5px);
}

/* Map Section */
.map-section {
  max-width: var(--maxw);
  margin: 40px auto;
  padding: 0 25px;
}

.map-container {
  background: rgba(255, 255, 255, 0.9);
  border-radius: var(--radius);
  padding: 30px;
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow);
}

.map-container h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  margin-bottom: 20px;
  text-align: center;
  color: var(--accent);
}

.map-container h3 i {
  color: var(--pink-6);
  margin-right: 10px;
}

.map-placeholder {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 968px) {
  .contact-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .contact-info {
    position: static;
  }
}

@media (max-width: 768px) {
  .contact-header h1 {
    font-size: 2.5rem;
  }
  
  .contact-card {
    padding: 30px 25px;
  }
  
  .info-card {
    padding: 25px 20px;
  }
  
  .map-section {
    padding: 0 20px;
  }
}

@media (max-width: 480px) {
  .contact-section {
    padding: 30px 20px;
  }
  
  .contact-header h1 {
    font-size: 2rem;
  }
  
  .contact-intro {
    font-size: 1rem;
  }
  
  .contact-card {
    padding: 25px 20px;
  }
  
  .card-header h2 {
    font-size: 1.5rem;
  }
  
  .submit-btn {
    width: 100%;
  }
  
  .info-item {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
  
  .map-container {
    padding: 20px;
  }
}