/* ========================================
   CONTACT PAGE STYLES
   ======================================== */

/* Import fonts */
@import url('https://fonts.googleapis.com/css2?family=Syne:wght@600;700;800&family=DM+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&display=swap');

/* Use same variables */
:root {
  --bg-primary: #000000;
  --bg-secondary: #0a0d1b;
  --bg-card: #0f1a30;
  --bg-card-hover: #152040;
  --border-color: #1e3054;
  --accent-blue: #4361ee;
  --accent-purple: #7c3aed;
  --gradient-main: linear-gradient(135deg, #2d429e, #7c3aed);
  --text-primary: #ffffff;
  --text-secondary: #abbcd4;
  --text-accent: #60a5fa;
}

/* Global Animation Classes */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.slide-in-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.slide-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.slide-in-right {
  opacity: 0;
  transform: translateX(60px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.slide-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.scale-in {
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.scale-in.visible {
  opacity: 1;
  transform: scale(1);
}

.rotate-in {
  opacity: 0;
  transform: rotate(-10deg) scale(0.8);
  transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.rotate-in.visible {
  opacity: 1;
  transform: rotate(0deg) scale(1);
}

/* Page Load Animations */
@keyframes pageLoad {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideDown {
  0% {
    opacity: 0;
    transform: translateY(-30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideFromLeft {
  0% {
    opacity: 0;
    transform: translateX(-50px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideFromRight {
  0% {
    opacity: 0;
    transform: translateX(50px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  0% {
    opacity: 0;
    transform: scale(0.5);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes rotateScale {
  0% {
    opacity: 0;
    transform: rotate(-15deg) scale(0.5);
  }
  100% {
    opacity: 1;
    transform: rotate(0deg) scale(1);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes glow {
  0%, 100% {
    box-shadow: 0 0 5px rgba(67, 97, 238, 0.5);
  }
  50% {
    box-shadow: 0 0 20px rgba(67, 97, 238, 0.8), 0 0 40px rgba(67, 97, 238, 0.4);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.8;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes shimmer {
  0% {
    background-position: -200% center;
  }
  100% {
    background-position: 200% center;
  }
}

@keyframes ripple {
  0% {
    transform: scale(0);
    opacity: 1;
  }
  100% {
    transform: scale(4);
    opacity: 0;
  }
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes particleFloat {
  0% {
    transform: translateY(100px) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(-100px) rotate(360deg);
    opacity: 0;
  }
}

@keyframes typing {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

@keyframes blink {
  50% {
    border-color: transparent;
  }
}

/* Contact Page Container */
.contact-page {
  min-height: 100vh;
  padding: 120px 0 80px;
  position: relative;
  overflow-x: hidden;
}

/* Animated Background Particles */
.contact-particles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(67, 97, 238, 0.6);
  border-radius: 50%;
  animation: particleFloat 8s infinite ease-in-out;
}

.particle:nth-child(1) { left: 10%; animation-delay: 0s; }
.particle:nth-child(2) { left: 20%; animation-delay: 1s; }
.particle:nth-child(3) { left: 30%; animation-delay: 2s; }
.particle:nth-child(4) { left: 40%; animation-delay: 3s; }
.particle:nth-child(5) { left: 50%; animation-delay: 4s; }
.particle:nth-child(6) { left: 60%; animation-delay: 5s; }
.particle:nth-child(7) { left: 70%; animation-delay: 6s; }
.particle:nth-child(8) { left: 80%; animation-delay: 7s; }
.particle:nth-child(9) { left: 90%; animation-delay: 8s; }
.particle:nth-child(10) { left: 95%; animation-delay: 9s; }

/* Contact Header with Enhanced Animations */
.contact-header {
  text-align: left;
  margin-bottom: 60px;
  animation: slideUp 1s ease-out;
}

.contact-badge {
  display: inline-block;
  background: rgba(67, 97, 238, 0.15);
  border: 1px solid rgba(67, 97, 238, 0.3);
  color: var(--text-accent);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 8px 16px;
  border-radius: 999px;
  margin-bottom: 24px;
  font-weight: 600;
  animation: slideFromLeft 0.8s ease-out 0.2s both;
  position: relative;
  overflow: hidden;
}

.contact-badge::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(67, 97, 238, 0.3), transparent);
  animation: shimmer 3s infinite;
}

.contact-header h1 {
  font-family:  'DM Sans', sans-serif;
  font-size: clamp(0.5rem, 10vw, 2.25rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 16px;
  letter-spacing: -0.03em;
  animation: slideFromLeft 0.8s ease-out 0.4s both;
}

.contact-header h1 .gradient-text {
  background: linear-gradient(135deg, #3b82f6 20%, #8b5cf6 80%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 3s ease-in-out infinite;
}

.contact-header p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 1200px;
  line-height: 1.6;
  animation: slideFromLeft 0.8s ease-out 0.6s both;
}

/* Enhanced Feature Pills */
.contact-features {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.feature-pill {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 50px;
  padding: 12px 24px;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
  animation: slideUp 0.8s ease-out;
}

.feature-pill:nth-child(1) { animation-delay: 0.8s; }
.feature-pill:nth-child(2) { animation-delay: 1s; }
.feature-pill:nth-child(3) { animation-delay: 1.2s; }

.feature-pill::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: radial-gradient(circle, rgba(67, 97, 238, 0.3), transparent);
  transition: all 0.4s;
  transform: translate(-50%, -50%);
  border-radius: 50%;
}

.feature-pill:hover::before {
  width: 100%;
  height: 100%;
}

.feature-pill:hover {
  border-color: var(--accent-blue);
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 8px 25px rgba(67, 97, 238, 0.3);
}

.feature-pill-icon {
  width: 36px;
  height: 36px;
  background: var(--gradient-main);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  transition: all 0.4s;
}

.feature-pill:hover .feature-pill-icon {
  transform: rotate(360deg) scale(1.1);
  box-shadow: 0 0 20px rgba(67, 97, 238, 0.6);
}

.feature-pill-icon svg {
  width: 18px;
  height: 18px;
  color: #fff;
  transition: all 0.4s;
}

.feature-pill-text {
  position: relative;
  z-index: 1;
}

.feature-pill-text h4 {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  margin: 0;
  line-height: 1.2;
  transition: all 0.3s;
}

.feature-pill-text p {
  font-size: 12px;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.2;
  transition: all 0.3s;
}

.feature-pill:hover .feature-pill-text h4,
.feature-pill:hover .feature-pill-text p {
  color: #fff;
  transform: translateX(2px);
}

/* Get in Touch Section */
.get-in-touch {
  margin-bottom: 60px;
}

.get-in-touch h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.2rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 32px;
}

/* Enhanced Contact Cards with Advanced Animations */
.contact-cards-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.contact-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  /* Remove direct animation, will be added by JavaScript */
}

.contact-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-main);
  transform: scaleX(0);
  transition: transform 0.4s;
}

.contact-card::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: radial-gradient(circle, rgba(67, 97, 238, 0.2), transparent);
  transition: all 0.4s;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  z-index: 0;
}

.contact-card:hover::before {
  transform: scaleX(1);
}

.contact-card:hover::after {
  width: 120%;
  height: 120%;
}

.contact-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(67, 97, 238, 0.6);
  box-shadow: 0 16px 40px rgba(67, 97, 238, 0.3);
}

.contact-card-icon {
  width: 72px;
  height: 72px;
  background: rgba(67, 97, 238, 0.1);
  border: 2px solid rgba(67, 97, 238, 0.3);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  z-index: 1;
}

.contact-card:hover .contact-card-icon {
  background: var(--gradient-main);
  border-color: transparent;
  transform: scale(1.15) rotate(5deg);
  box-shadow: 0 8px 25px rgba(67, 97, 238, 0.5);
}

.contact-card-icon svg {
  width: 32px;
  height: 32px;
  color: var(--text-primary);
  transition: all 0.4s;
}

.contact-card:hover .contact-card-icon svg {
  color: #fff;
  transform: scale(1.1);
}

.contact-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 8px;
  transition: all 0.3s;
  position: relative;
  z-index: 1;
}

.contact-card:hover h3 {
  transform: translateY(-2px);
}

.contact-card p {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 4px;
  line-height: 1.5;
  transition: all 0.3s;
  position: relative;
  z-index: 1;
}

.contact-card:hover p {
  color: rgba(255, 255, 255, 0.9);
}

.contact-card .contact-detail {
  font-size: 13px;
  color: var(--text-accent);
  font-weight: 500;
  transition: all 0.3s;
}

.contact-card:hover .contact-detail {
  color: #fff;
  text-shadow: 0 0 10px rgba(67, 97, 238, 0.8);
}

/* Two Column Layout */
.contact-main-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 60px;
}

/* Contact Form */
.contact-form-section {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 40px;
}

.contact-form-section h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}

.contact-form-section p {
  color: var(--text-secondary);
  margin-bottom: 32px;
  font-size: 14px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  color: var(--text-secondary);
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 8px;
}

.form-input {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-color);
  color: #fff;
  border-radius: 10px;
  padding: 14px 16px;
  font-size: 14px;
  font-family: 'DM Sans', sans-serif;
  outline: none;
  transition: all 0.3s;
}

.form-input::placeholder {
  color: rgba(171, 188, 212, 0.4);
}

.form-input:focus {
  border-color: var(--accent-blue);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 0 0 3px rgba(67, 97, 238, 0.15);
}

textarea.form-input {
  min-height: 140px;
  resize: vertical;
}

.submit-btn {
  width: 100%;
  background: var(--gradient-main);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 16px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  font-family: 'DM Sans', sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(67, 97, 238, 0.4);
}

.submit-btn svg {
  width: 18px;
  height: 18px;
}

/* Office Info Section */
.office-info-section {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.office-info-section h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}

.office-info-section > p {
  color: var(--text-secondary);
  font-size: 14px;
  margin-bottom: 8px;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(30, 48, 84, 0.5);
  border-radius: 12px;
  transition: all 0.3s;
}

.info-item:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--accent-blue);
}

.info-icon {
  width: 44px;
  height: 44px;
  background: var(--gradient-main);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.info-icon svg {
  width: 22px;
  height: 22px;
  color: #fff;
}

.info-content p {
  margin: 0;
  font-size: 14px;
}

.info-content p:first-child {
  color: var(--text-secondary);
  margin-bottom: 4px;
}

.info-content p:last-child {
  color: #fff;
  font-weight: 600;
}

/* WhatsApp CTA Banner */
.whatsapp-cta-banner {
  background: linear-gradient(135deg, rgba(67, 97, 238, 0.1), rgba(124, 58, 237, 0.1));
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 40px;
  text-align: center;
  margin-top: 60px;
  position: relative;
  overflow: hidden;
}

.whatsapp-cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(67, 97, 238, 0.15) 0%, transparent 70%);
  animation: pulse 6s ease-in-out infinite;
}

.whatsapp-icon-large {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  position: relative;
  z-index: 1;
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.3);
}

.whatsapp-icon-large svg {
  width: 44px;
  height: 44px;
  color: #fff;
}

.whatsapp-cta-banner h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.whatsapp-cta-banner p {
  color: var(--text-secondary);
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 16px 32px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  font-family: 'DM Sans', sans-serif;
  text-decoration: none;
  position: relative;
  z-index: 1;
}

.whatsapp-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.4);
}

.whatsapp-btn svg {
  width: 22px;
  height: 22px;
}

/* Quick Links Buttons */
.quick-links-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}

.quick-link-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(67, 97, 238, 0.1);
  border: 1px solid rgba(67, 97, 238, 0.3);
  border-radius: 12px;
  padding: 16px 20px;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  font-family: 'DM Sans', sans-serif;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.quick-link-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(67, 97, 238, 0.2), transparent);
  transition: left 0.5s;
}

.quick-link-btn:hover::before {
  left: 100%;
}

.quick-link-btn:hover {
  background: rgba(67, 97, 238, 0.2);
  border-color: var(--accent-blue);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(67, 97, 238, 0.2);
}

.quick-link-btn svg {
  width: 20px;
  height: 20px;
  color: var(--text-accent);
  flex-shrink: 0;
}

.quick-link-btn:hover svg {
  color: #fff;
}

/* Vertical Hero Buttons Layout */
.hero-btns-vertical {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
}

.btn-blue-large {
  background: var(--gradient-main); 
  color: #fff; 
  border: none;
  padding: 18px 32px; 
  border-radius: 24px; 
  font-weight: 600; 
  font-size: 21px;
  cursor: pointer; 
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94); 
  font-family: 'DM Sans', sans-serif;
  width: 100%;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.btn-blue-large::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn-blue-large:hover::before {
  width: 300px;
  height: 300px;
}

.btn-blue-large:hover { 
  transform: translateY(-3px) scale(1.02); 
  box-shadow: 0 12px 32px rgba(45,66,158,0.5); 
}

.btn-outline-white-large {
  background: transparent; 
  color: #fff; 
  border: 2px solid rgba(45,66,158,0.7);
  padding: 18px 32px; 
  border-radius: 24px; 
  font-weight: 500; 
  font-size: 21px;
  cursor: pointer; 
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94); 
  font-family: 'DM Sans', sans-serif;
  width: 100%;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.btn-outline-white-large::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--gradient-main);
  transition: left 0.4s;
  z-index: -1;
}

.btn-outline-white-large:hover::before {
  left: 0;
}

.btn-outline-white-large:hover { 
  color: #fff;
  border-color: #2d429e; 
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 32px rgba(45,66,158,0.4);
}

.btn-outline-purple-large {
  background: transparent; 
  color: #fff; 
  border: 2px solid rgba(124,58,237,0.7);
  padding: 18px 32px; 
  border-radius: 24px; 
  font-weight: 500; 
  font-size: 21px;
  cursor: pointer; 
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94); 
  font-family: 'DM Sans', sans-serif;
  width: 100%;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.btn-outline-purple-large::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #7c3aed, #a855f7);
  transition: left 0.4s;
  z-index: -1;
}

.btn-outline-purple-large:hover::before {
  left: 0;
}

.btn-outline-purple-large:hover { 
  color: #fff;
  border-color: #7c3aed; 
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 32px rgba(124,58,237,0.4);
}

.btn-green-large {
  background: linear-gradient(135deg, #10b981, #059669); 
  color: #fff; 
  border: none;
  padding: 18px 32px; 
  border-radius: 24px; 
  font-weight: 600; 
  font-size: 21px;
  cursor: pointer; 
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94); 
  font-family: 'DM Sans', sans-serif;
  width: 100%;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.btn-green-large::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn-green-large:hover::before {
  width: 300px;
  height: 300px;
}

.btn-green-large:hover { 
  transform: translateY(-3px) scale(1.02); 
  box-shadow: 0 12px 32px rgba(16,185,129,0.5); 
}

.btn-orange-large {
  background: linear-gradient(135deg, #f97316, #ea580c); 
  color: #fff; 
  border: none;
  padding: 18px 32px; 
  border-radius: 24px; 
  font-weight: 600; 
  font-size: 21px;
  cursor: pointer; 
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94); 
  font-family: 'DM Sans', sans-serif;
  width: 100%;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.btn-orange-large::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn-orange-large:hover::before {
  width: 300px;
  height: 300px;
}

.btn-orange-large:hover { 
  transform: translateY(-3px) scale(1.02); 
  box-shadow: 0 12px 32px rgba(249,115,22,0.5); 
}

.btn-pink-large {
  background: linear-gradient(135deg, #ec4899, #db2777); 
  color: #fff; 
  border: none;
  padding: 18px 32px; 
  border-radius: 24px; 
  font-weight: 600; 
  font-size: 21px;
  cursor: pointer; 
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94); 
  font-family: 'DM Sans', sans-serif;
  width: 100%;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.btn-pink-large::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn-pink-large:hover::before {
  width: 300px;
  height: 300px;
}

.btn-pink-large:hover { 
  transform: translateY(-3px) scale(1.02); 
  box-shadow: 0 12px 32px rgba(236,72,153,0.5); 
}

/* Ripple Effect */
.ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  transform: scale(0);
  animation: ripple 0.6s ease-out;
  pointer-events: none;
}

/* Enhanced WhatsApp Icon Animation */
.whatsapp-icon-large {
  animation: float 3s ease-in-out infinite;
}

.whatsapp-icon-large:hover {
  animation: pulse 1s ease-in-out infinite;
  transform: scale(1.1);
}

/* Parallax Background Enhancement */
.contact-page::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(67, 97, 238, 0.05), rgba(124, 58, 237, 0.05));
  z-index: -1;
  animation: gradientShift 10s ease-in-out infinite;
}

/* Loading Screen Animation */
@keyframes pageLoad {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Enhanced Navbar Animation */
#navbar {
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

#navbar.scrolled {
  background: rgba(10, 15, 30, 0.97);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

/* Enhanced Form Input Animations */
.form-input {
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.form-input:focus {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(67, 97, 238, 0.3);
}

/* Enhanced Submit Button */
.submit-btn {
  position: relative;
  overflow: hidden;
}

.submit-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.submit-btn:hover::before {
  width: 300px;
  height: 300px;
}

.submit-btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 32px rgba(67, 97, 238, 0.5);
}

/* Enhanced Info Item Hover */
.info-item:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 8px 25px rgba(67, 97, 238, 0.2);
}

.info-item:hover .info-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 4px 15px rgba(67, 97, 238, 0.4);
}

/* Enhanced WhatsApp Button */
.whatsapp-btn {
  position: relative;
  overflow: hidden;
}

.whatsapp-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.whatsapp-btn:hover::before {
  width: 200px;
  height: 200px;
}

.whatsapp-btn:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 16px 40px rgba(37, 211, 102, 0.5);
}

/* Mobile Responsive Animations */
@media (max-width: 768px) {
  .contact-card {
    animation: slideUp 0.6s ease-out;
  }
  
  .contact-card:nth-child(n) {
    animation-delay: 0.1s;
  }
  
  .feature-pill {
    animation: slideUp 0.6s ease-out;
  }
  
  .feature-pill:nth-child(n) {
    animation-delay: 0.1s;
  }
  
  .btn-blue-large,
  .btn-outline-white-large,
  .btn-outline-purple-large,
  .btn-green-large,
  .btn-orange-large,
  .btn-pink-large {
    animation: slideUp 0.6s ease-out;
  }
}
@media (max-width: 1024px) {
  .contact-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .contact-main-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .contact-page {
    padding: 100px 0 60px;
  }
  
  .contact-features {
    flex-direction: column;
  }
  
  .contact-cards-grid {
    grid-template-columns: 1fr;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .contact-form-section,
  .office-info-section {
    padding: 24px;
  }
  
  .whatsapp-cta-banner {
    padding: 32px 20px;
  }
}

/* Feature Modal Styles */
.feature-modal {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
  animation: fadeIn 0.3s ease-out;
}

.feature-modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-modal-content {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  max-width: 500px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
  animation: slideUp 0.4s ease-out;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

/* Custom scrollbar for feature modal */
.feature-modal-content::-webkit-scrollbar {
  width: 8px;
}

.feature-modal-content::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 4px;
  margin: 10px 0;
}

.feature-modal-content::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
  border-radius: 4px;
  border: 2px solid transparent;
  background-clip: content-box;
}

.feature-modal-content::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, #5a7fee, #8b5cf6);
  background-clip: content-box;
}

/* Firefox scrollbar styling */
.feature-modal-content {
  scrollbar-width: thin;
  scrollbar-color: var(--accent-blue) rgba(255, 255, 255, 0.05);
}

.feature-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  color: var(--text-secondary);
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
}

.feature-modal-close:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  transform: scale(1.1);
}

.feature-modal-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-main);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 40px auto 24px;
  box-shadow: 0 8px 32px rgba(67, 97, 238, 0.4);
  animation: pulse 2s ease-in-out infinite;
}

.feature-modal-icon svg {
  width: 40px;
  height: 40px;
  color: #fff;
}

.feature-modal-title {
  font-family: 'Syne', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
  margin-bottom: 20px;
  padding: 0 20px;
}

.feature-modal-body {
  padding: 0 40px 30px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.feature-modal-body h3 {
  color: #fff;
  font-family: 'Syne', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  margin: 24px 0 12px 0;
}

.feature-modal-body h3:first-child {
  margin-top: 0;
}

.feature-modal-body p {
  margin-bottom: 16px;
  font-size: 15px;
}

.feature-modal-body ul {
  margin: 16px 0;
  padding-left: 20px;
}

.feature-modal-body li {
  margin-bottom: 8px;
  font-size: 15px;
}

.feature-modal-actions {
  padding: 20px 40px 40px;
  text-align: center;
}

.feature-modal-btn {
  background: var(--gradient-main);
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  font-family: 'DM Sans', sans-serif;
  min-width: 150px;
}

.feature-modal-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(67, 97, 238, 0.4);
}

.feature-modal-btn:active {
  transform: translateY(0);
}

/* Update feature pills to be more clickable */
.feature-pill {
  cursor: pointer;
  position: relative;
}

.feature-pill:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 8px 25px rgba(67, 97, 238, 0.3);
}

.feature-pill:active {
  transform: translateY(-2px) scale(1.02);
}

/* Mobile responsive for modal */
@media (max-width: 768px) {
  .feature-modal-content {
    width: 95%;
    margin: 20px;
    max-height: 90vh;
  }
  
  .feature-modal-icon {
    width: 60px;
    height: 60px;
    margin: 30px auto 20px;
  }
  
  .feature-modal-icon svg {
    width: 30px;
    height: 30px;
  }
  
  .feature-modal-title {
    font-size: 1.5rem;
  }
  
  .feature-modal-body {
    padding: 0 20px 20px;
  }
  
  .feature-modal-actions {
    padding: 20px;
  }
}