
.section-pad{padding:7rem 1rem}
.card{
background:rgba(255,255,255,.88);
border:1.5px solid rgba(201,162,74,.28);
border-radius:1.5rem;
box-shadow:0 20px 60px rgba(31,32,35,.08);
padding:3rem;
}
.btn-primary{
background:linear-gradient(135deg,#c9a24a,#e6c98b);
color:#1f2023;
font-weight:800;
padding:1.1rem 2.6rem;
border-radius:1rem;
box-shadow:0 12px 38px rgba(201,162,74,.25);
transition:.3s}
.btn-primary:hover{transform:translateY(-3px)}
.h-title{font-family:Playfair Display}


/* Enhanced Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes pulse-glow {
  0%, 100% {
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
  }
  50% {
    box-shadow: 0 0 40px rgba(212, 175, 55, 0.6);
  }
}

.animate-fadeInUp {
  animation: fadeInUp 0.8s ease-out forwards;
}

.animate-fadeIn {
  animation: fadeIn 0.8s ease-out forwards;
}

.animate-slideInLeft {
  animation: slideInLeft 0.8s ease-out forwards;
}

.animate-slideInRight {
  animation: slideInRight 0.8s ease-out forwards;
}

.stagger-1 { animation-delay: 0.1s; }
.stagger-2 { animation-delay: 0.2s; }
.stagger-3 { animation-delay: 0.3s; }
.stagger-4 { animation-delay: 0.4s; }
.stagger-5 { animation-delay: 0.5s; }

/* Contact Card Enhancements */
.contact-card {
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
  transition: left 0.6s ease;
}

.contact-card:hover::before {
  left: 100%;
}

.contact-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* Email Display Enhancement */
.email-display {
  position: relative;
  display: inline-block;
  padding: 20px 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.05));
  border: 2px solid rgba(212, 175, 55, 0.3);
  transition: all 0.3s ease;
  cursor: pointer;
}

.email-display:hover {
  border-color: rgba(212, 175, 55, 0.6);
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(212, 175, 55, 0.08));
  animation: pulse-glow 2s ease-in-out infinite;
}

.copy-tooltip {
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%) scale(0);
  background: #1a1a1a;
  color: #d4af37;
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 14px;
  white-space: nowrap;
  transition: all 0.3s ease;
  pointer-events: none;
  opacity: 0;
}

.copy-tooltip.show {
  transform: translateX(-50%) scale(1);
  opacity: 1;
}

/* Icon Styles */
.contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(212, 175, 55, 0.05));
  font-size: 28px;
  transition: all 0.3s ease;
}

.contact-icon:hover {
  transform: scale(1.1) rotate(5deg);
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.3), rgba(212, 175, 55, 0.1));
}

/* Expectation Items */
.expectation-item {
  position: relative;
  padding-left: 40px;
  opacity: 0;
}

.expectation-item::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, #d4af37, #b8941f);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-weight: bold;
  font-size: 16px;
}

/* Social Icons Placeholder */
.social-placeholder {
  display: inline-flex;
  gap: 20px;
  margin-top: 30px;
}

.social-icon-placeholder {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.05));
  border: 2px dashed rgba(212, 175, 55, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: rgba(212, 175, 55, 0.5);
  transition: all 0.3s ease;
}

.social-icon-placeholder:hover {
  border-style: solid;
  color: #d4af37;
  transform: scale(1.1);
}

/* CTA Enhancement */
.cta-wrapper {
  position: relative;
  display: inline-block;
}

.cta-wrapper::before {
  content: '';
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  background: linear-gradient(45deg, transparent, rgba(212, 175, 55, 0.1), transparent);
  border-radius: 16px;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.cta-wrapper:hover::before {
  opacity: 1;
}

/* Gradient Text */
.gradient-text {
  background: linear-gradient(135deg, #d4af37, #f4d03f, #d4af37);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradient-shift 3s ease infinite;
}

@keyframes gradient-shift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* Divider */
.elegant-divider {
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, transparent, #d4af37, transparent);
  margin: 40px auto;
}

/* Responsive Typography */
@media (max-width: 768px) {
  .email-display {
    padding: 15px 25px;
  }
  
  .contact-icon {
    width: 50px;
    height: 50px;
    font-size: 24px;
  }
}

/* Initial hidden state for animations */
.animate-on-scroll {
  opacity: 0;
}

.visible {
  opacity: 1;
}

