/* Beautiful Contact Card Styles */
.contact-inner {
  display: flex;
  gap: 2.5rem;
  align-items: flex-start;
  justify-content: center;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}

.contact-card-beautiful {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 6px 32px rgba(60, 60, 120, 0.13), 0 1.5px 6px rgba(0,0,0,0.08);
  padding: 2rem 2.5rem;
  max-width: 400px;
  min-width: 280px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  transition: box-shadow 0.2s;
}
.contact-card-beautiful:hover {
  box-shadow: 0 12px 36px rgba(60, 60, 120, 0.18), 0 3px 12px rgba(0,0,0,0.12);
}
.contact-card-beautiful .contact-spa-name {
  font-size: 1.5rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: #3a2e5c;
  margin-bottom: 0.5rem;
}
.contact-card-beautiful .contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact-card-beautiful .contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  font-size: 1rem;
  color: #444;
}
.contact-card-beautiful .contact-info-item i {
  color: #a98bdb;
  font-size: 1.2rem;
  min-width: 1.2rem;
  margin-top: 0.2rem;
}
.contact-card-beautiful a {
  color: #6c4bb6;
  text-decoration: none;
  word-break: break-all;
}
.contact-card-beautiful a:hover {
  text-decoration: underline;
}

/* Map Box Styles */
.contact-map-box {
  flex: 1 1 340px;
  min-width: 280px;
  max-width: 540px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 32px rgba(60, 60, 120, 0.13), 0 1.5px 6px rgba(0,0,0,0.08);
  background: #fff;
  height: 340px;
  display: flex;
  align-items: stretch;
  justify-content: stretch;
}
.contact-map-box iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* Responsive */
@media (max-width: 900px) {
  .contact-inner {
    flex-direction: column;
    gap: 2rem;
    align-items: stretch;
  }
  .contact-card-beautiful,
  .contact-map-box {
    max-width: 100%;
    min-width: 0;
    width: 100%;
  }
  .contact-map-box {
    height: 260px;
  }
}

/* Contact Section Styles */
.contact-section {
  padding: 3rem 0;
  background: #fafafa;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2.5rem;
  align-items: stretch;
  margin-top: 2.5rem;
}

/* CONTACT CARD */
.contact-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 6px 32px rgba(60, 60, 120, 0.13), 0 1.5px 6px rgba(0,0,0,0.08);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.contact-card:hover {
  box-shadow: 0 12px 48px rgba(60, 60, 120, 0.18), 0 3px 12px rgba(0,0,0,0.12);
  transform: translateY(-4px);
}

/* Card Header */
.contact-card-header {
  text-align: center;
  padding-bottom: 1.2rem;
  border-bottom: 2px solid #f0f0f0;
}

.contact-spa-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 1rem;
  background: linear-gradient(135deg, #D52317 0%, #a91a0f 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #fff;
  box-shadow: 0 4px 16px rgba(213, 35, 23, 0.25);
}

.contact-spa-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
}

.contact-spa-name {
  font-size: 1.8rem;
  font-weight: 700;
  color: #3a2e5c;
  margin: 0;
}

.contact-spa-tagline {
  font-size: 0.9rem;
  color: #888;
  margin: 0.4rem 0 0 0;
  font-style: italic;
}

/* Info List */
.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.contact-info-item {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
}

.contact-info-icon {
  width: 50px;
  height: 50px;
  background: #fde8e6; /* light red background */
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #D52317; /* brand red color */
  font-size: 1.3rem;
  flex-shrink: 0;
  position: relative;
}

/* Font Awesome 6 icons using ::before with brand color */
.contact-info-item.address .contact-info-icon::before {
  content: "\f3c5";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: #D52317;
  font-size: 1.3rem;
}

.contact-info-item.phone .contact-info-icon::before {
  content: "\f095";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: #D52317;
  font-size: 1.3rem;
}

.contact-info-item.email .contact-info-icon::before {
  content: "\f0e0";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: #D52317;
  font-size: 1.3rem;
}

.contact-info-item.website .contact-info-icon::before {
  content: "\f0ac";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: #D52317;
  font-size: 1.3rem;
}

.contact-info-item.hours .contact-info-icon::before {
  content: "\f017";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: #D52317;
  font-size: 1.3rem;
}

.contact-info-content {
  flex: 1;
}

.contact-info-content h4 {
  font-size: 1rem;
  font-weight: 600;
  color: #3a2e5c;
  margin: 0 0 0.4rem 0;
}

.contact-info-content p {
  font-size: 0.95rem;
  color: #666;
  margin: 0;
  line-height: 1.6;
}

.contact-info-content a {
  color: #6c4bb6;
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-info-content a:hover {
  color: #a98bdb;
  text-decoration: underline;
}

/* Card Footer */
.contact-card-footer {
  padding-top: 1.2rem;
  border-top: 2px solid #f0f0f0;
}

.contact-card-footer .btn-primary {
  width: 100%;
  justify-content: center;
  gap: 0.6rem;
}

/* MAP BOX */
.contact-map-box {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 32px rgba(60, 60, 120, 0.13), 0 1.5px 6px rgba(0,0,0,0.08);
  background: #fff;
  height: 100%;
  min-height: 500px;
  display: flex;
  align-items: stretch;
  justify-content: stretch;
}

.contact-map-box iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact-map-box {
    min-height: 400px;
  }
}

@media (max-width: 768px) {
  .contact-section {
    padding: 2rem 0;
  }

  .contact-card {
    padding: 1.8rem;
    gap: 1.2rem;
  }

  .contact-spa-icon {
    width: 60px;
    height: 60px;
    font-size: 1.6rem;
  }

  .contact-spa-name {
    font-size: 1.4rem;
  }

  .contact-info-item {
    gap: 0.8rem;
  }

  .contact-info-icon {
    width: 42px;
    height: 42px;
    font-size: 1.1rem;
  }

  .contact-info-content h4 {
    font-size: 0.9rem;
  }

  .contact-info-content p {
    font-size: 0.85rem;
  }

  .contact-map-box {
    min-height: 320px;
  }
}

/* ============================================
   SUCCESS MODAL STYLES
   ============================================ */

.success-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 4000;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
  animation: fadeInOverlay 0.3s ease;
}

.success-overlay.active {
  display: flex;
}

@keyframes fadeInOverlay {
  from { opacity: 0; }
  to { opacity: 1; }
}

.success-modal {
  background: #ffffff;
  border-radius: 20px;
  padding: 3rem 2.5rem;
  max-width: 500px;
  width: 95%;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 100px rgba(213, 35, 23, 0.1);
  animation: slideUpSuccess 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
}

@keyframes slideUpSuccess {
  from {
    transform: translateY(50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.success-icon {
  font-size: 5rem;
  color: #4CAF50;
  margin-bottom: 1.5rem;
  animation: popInIcon 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s backwards;
}

@keyframes popInIcon {
  from {
    transform: scale(0);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.success-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 0.8rem;
  animation: fadeInContent 0.5s ease 0.3s backwards;
}

.success-message {
  font-size: 1.3rem;
  font-weight: 600;
  color: #D52317;
  margin-bottom: 1rem;
  animation: fadeInContent 0.5s ease 0.4s backwards;
}

.success-subtitle {
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 2rem;
  animation: fadeInContent 0.5s ease 0.5s backwards;
}

@keyframes fadeInContent {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.success-btn {
  background: linear-gradient(135deg, #D52317 0%, #A01810 100%);
  color: #fff;
  border: none;
  padding: 1rem 2.5rem;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(213, 35, 23, 0.3);
  animation: fadeInContent 0.5s ease 0.6s backwards;
}

.success-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(213, 35, 23, 0.4);
  background: linear-gradient(135deg, #A01810 0%, #7a0f0a 100%);
}

.success-btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 10px rgba(213, 35, 23, 0.3);
}

@media (max-width: 600px) {
  .success-modal {
    padding: 2.5rem 1.5rem;
    margin: 1rem;
  }

  .success-icon {
    font-size: 4rem;
  }

  .success-title {
    font-size: 1.5rem;
  }

  .success-message {
    font-size: 1.1rem;
  }

  .success-subtitle {
    font-size: 0.95rem;
  }

  .success-btn {
    padding: 0.9rem 2rem;
    font-size: 0.95rem;
  }
}