/* Contact Page - Orange theme */
:root {
  --primary: #ff7a00; /* vibrant orange */
  --primary-600: #e56e00;
  --primary-700: #c65f00;
  --primary-light: rgba(255,122,0,0.1);
  --text: #222;
  --muted: #6b7280;
  --bg: #fffaf5; /* soft warm background */
  --card: #ffffff;
  --border: #f3e4d6;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.03);
  --shadow-md: 0 8px 32px rgba(255,122,0,0.08);
  --shadow-lg: 0 12px 40px rgba(255,122,0,0.12);
  --transition: all 0.3s ease;
}

/* Title banner with parallax */
.page-hero {
  position: relative;
  padding: 120px 0 100px;
  overflow: hidden;
  color: #fff;
  text-align: center;
}

.parallax-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../image/yoga_1.jpg');
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
  z-index: -2;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(0,0,0,0.7), rgba(255,122,0,0.7));
  z-index: -1;
}

.page-hero .eyebrow {
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0 0 10px;
  opacity: 0.9;
}

.page-hero .title {
  font-size: clamp(36px, 5vw, 52px);
  margin: 0 0 16px;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.page-hero .subtitle {
  color: rgba(255,255,255,0.9);
  max-width: 720px;
  margin: 0 auto 30px;
  font-size: 18px;
}

.hero-action {
  margin-top: 30px;
}

.scroll-down-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  color: #fff;
  font-size: 18px;
  transition: var(--transition);
  animation: float 2s ease-in-out infinite;
}

.scroll-down-btn:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-5px);
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Section header styling */
.section-header {
  margin-bottom: 40px;
}

.section-title-alt {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text);
}

.section-divider {
  position: relative;
  height: 20px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 20px 0;
}

.section-divider::before,
.section-divider::after {
  content: '';
  height: 1px;
  background-color: var(--border);
  width: 80px;
  max-width: 20%;
  display: block;
}

.section-divider i {
  color: var(--card);
  font-size: 24px;
  margin: 0 20px;
}

.section-subtitle {
  color: var(--muted);
  font-size: 18px;
  max-width: 680px;
  margin: 0 auto;
}

/* Enhanced info cards */
.contact-info-section {
  background: var(--bg);
  padding: 60px 0;
}

.info-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 20px;
  height: 100%;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  text-align: center;
}

.animated-card {
  transform: translateY(0);
}

.animated-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.icon-wrap {
  margin: 0 auto 16px;
  position: relative;
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-wrap::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--primary-light);
  transform: scale(0.8);
  transition: var(--transition);
}

.info-card:hover .icon-wrap::before {
  transform: scale(1);
  background: rgba(255,122,0,0.2);
}

.info-card .icon {
  color: var(--primary);
  font-size: 24px;
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  background: rgba(255,122,0,0.1);
  border-radius: 50%;
  z-index: 1;
  transition: var(--transition);
}

.info-card:hover .icon {
  background: var(--primary);
  color: white;
}

.info-card h5 { 
  margin: 0 0 6px; 
  font-weight: 700;
  font-size: 20px;
}

.info-card p { 
  margin: 0 0 12px; 
  color: var(--muted); 
}

.card-hover-info,
.card-link {
  opacity: 0;
  transform: translateY(10px);
  transition: var(--transition);
}

.info-card:hover .card-hover-info,
.info-card:hover .card-link {
  opacity: 1;
  transform: translateY(0);
}

.card-link {
  display: inline-block;
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
  margin-top: 8px;
}

.card-link:hover {
  color: var(--primary-700);
}

/* Enhanced Map section */
.map-form-section { padding: 60px 0; }

.section-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 16px;
  font-size: 22px;
}

.map-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 25px;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.map-card:hover {
  box-shadow: var(--shadow-lg);
}

.map-embed { 
  border-radius: 12px; 
  overflow: hidden; 
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  transition: var(--transition);
}

.map-embed:hover { 
  transform: scale(1.01);
}

.map-embed iframe { 
  border-radius: 0; 
  width: 100%; 
  height: 100%; 
}

.map-note { 
  color: var(--muted); 
  font-size: 0.9rem; 
  margin-top: 10px; 
  text-align: center;
}

/* Action buttons with animations */
.action-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
}

.btn-orange, .btn-orange-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  transition: var(--transition);
  min-width: 120px;
  justify-content: center;
}

.btn-orange {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 4px 12px rgba(255,122,0,0.25);
}

.btn-orange:hover { 
  background: var(--primary-600); 
  color: #fff; 
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(255,122,0,0.35);
}

.btn-orange-outline {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
}

.btn-orange-outline:hover {
  background: rgba(255,122,0,0.08);
  color: var(--primary-700);
  border-color: var(--primary-600);
  transform: translateY(-3px);
}

/* Pulse animation */
.pulse-effect {
  position: relative;
}

.pulse-effect::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: var(--primary);
  border-radius: 999px;
  z-index: -1;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  70% {
    transform: scale(1.1);
    opacity: 0;
  }
  100% {
    transform: scale(1.1);
    opacity: 0;
  }
}

/* Business Hours Section */
.business-hours-section {
  padding: 40px 0 80px;
  background: var(--bg);
}

.hours-card {
  background: var(--card);
  border-radius: 16px;
  padding: 30px;
  box-shadow: var(--shadow-md);
  text-align: center;
}

.hours-title {
  color: var(--text);
  font-weight: 700;
  margin-bottom: 12px;
}

.hours-divider {
  height: 2px;
  width: 60px;
  margin: 0 auto 24px;
  background: var(--primary);
}

.days-grid {
  display: grid;
  gap: 16px;
  margin-bottom: 24px;
}

.day-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px dashed var(--border);
}

.day {
  font-weight: 600;
  color: var(--text);
}

.time {
  color: var(--primary);
  font-weight: 700;
}

.special-note {
  font-size: 14px;
  color: var(--muted);
  padding-top: 12px;
}

.special-note i {
  color: var(--primary);
  margin-right: 6px;
}

/* Modal styling */
.modal-content {
  border-radius: 16px;
  border: none;
  box-shadow: var(--shadow-lg);
}

.modal-header {
  border-bottom: 1px solid var(--border);
  padding: 16px 24px;
}

.modal-title {
  color: var(--text);
  font-weight: 700;
}

.modal-body {
  padding: 24px;
}

.available-times {
  background: var(--bg);
  padding: 16px;
  border-radius: 10px;
  margin-top: 16px;
}

.available-times h6 {
  margin-bottom: 12px;
  color: var(--text);
}

.time-slots {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.time-slot {
  background: white;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary-700);
}

.modal-footer {
  border-top: 1px solid var(--border);
  padding: 16px 24px;
}
