/* Enhanced Contact Page Styles */
:root {
  --primary-color: #6e57e0;
  --secondary-color: #00d9ff;
  --accent-color: #ff3e7f;
  --dark-color: #121212;
  --light-color: #ffffff;
  --gradient-primary: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  --gradient-accent: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
  --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.1);
  --shadow-strong: 0 15px 35px rgba(0, 0, 0, 0.2);
  --glow-effect: 0 0 15px rgba(110, 87, 224, 0.6);
  --transition-fast: all 0.3s ease;
  --transition-medium: all 0.5s ease;
  --transition-slow: all 0.8s ease;
}

/* Contact Hero Section - Enhanced */
.contact-hero {
  position: relative;
  min-height: 100vh;
  background: radial-gradient(ellipse at bottom, #1B2735 0%, #090A0F 100%);
  overflow: hidden;
  padding: 120px 0 80px;
  z-index: 1;
}

#contact-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.contact-hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
  animation: fadeInUp 1s ease-out;
}

.contact-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 50px;
  padding: 8px 20px;
  margin-bottom: 25px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  color: var(--light-color);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 0.85rem;
  transform: translateY(0);
  transition: var(--transition-fast);
}

.contact-badge:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(110, 87, 224, 0.3);
  background: rgba(110, 87, 224, 0.2);
}

.contact-hero h1 {
  font-size: 4.5rem;
  font-weight: 800;
  margin-bottom: 30px;
  color: var(--light-color);
  line-height: 1.1;
  text-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.contact-hero h1 span {
  position: relative;
  display: inline-block;
  color: transparent;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  padding: 0 10px;
}

.contact-hero h1 span::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 8px;
  background: var(--gradient-primary);
  border-radius: 4px;
  opacity: 0.3;
  transform: scaleX(0.7);
  transform-origin: left;
  transition: var(--transition-medium);
}

.contact-hero h1:hover span::after {
  transform: scaleX(1);
  opacity: 0.5;
}

.contact-hero p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 700px;
  margin: 0 auto 50px;
  line-height: 1.8;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.floating-contact-cards {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 60px;
  perspective: 1000px;
}

.contact-card {
  position: relative;
  width: 280px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-soft);
  transition: var(--transition-medium);
  overflow: hidden;
  transform-style: preserve-3d;
  transform: translateZ(0) rotateX(0) rotateY(0);
}

.contact-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.1), transparent);
  opacity: 0;
  transition: var(--transition-medium);
  z-index: -1;
}

.contact-card:hover {
  transform: translateY(-15px) rotateX(5deg) rotateY(-5deg);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 20px rgba(110, 87, 224, 0.4);
  border-color: rgba(110, 87, 224, 0.3);
}

.contact-card:hover::before {
  opacity: 1;
}

.card-icon {
  position: relative;
  width: 70px;
  height: 70px;
  background: var(--gradient-primary);
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 20px rgba(110, 87, 224, 0.3);
  z-index: 1;
}

.card-icon i {
  font-size: 28px;
  color: var(--light-color);
}

.icon-pulse {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--gradient-primary);
  opacity: 0.6;
  z-index: -1;
  animation: pulse-ring 2s infinite;
}

.contact-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--light-color);
  margin-bottom: 15px;
  text-align: center;
}

.contact-card p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
  line-height: 1.6;
}

.hero-wave {
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 80px;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%230a0a20" fill-opacity="1" d="M0,224L48,213.3C96,203,192,181,288,181.3C384,181,480,203,576,213.3C672,224,768,224,864,202.7C960,181,1056,139,1152,138.7C1248,139,1344,181,1392,202.7L1440,224L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat;
  background-size: cover;
}

/* Contact Main Section */
.contact-main {
  background-color: var(--dark-bg);
  padding: 80px 0;
  position: relative;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

/* Contact Info Styles */
.contact-info {
  background: var(--card-bg);
  border-radius: 20px;
  padding: 40px;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
}

.contact-info::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--gradient-primary);
}

.info-header {
  margin-bottom: 30px;
  position: relative;
}

.info-header h2 {
  font-size: 2.2rem;
  color: var(--text-light);
  margin-bottom: 15px;
}

.info-header h2 span {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.header-line {
  width: 80px;
  height: 4px;
  background: var(--gradient-primary);
  border-radius: 2px;
}

.info-details {
  margin-bottom: 40px;
}

.info-item {
  display: flex;
  margin-bottom: 30px;
}

.info-icon {
  width: 50px;
  height: 50px;
  background: rgba(110, 66, 255, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.info-item:hover .info-icon {
  background: var(--gradient-primary);
  transform: rotate(10deg);
}

.info-icon i {
  font-size: 20px;
  color: var(--primary-color);
  transition: all 0.3s ease;
}

.info-item:hover .info-icon i {
  color: var(--text-light);
}

.info-content h3 {
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 10px;
}

.info-content p {
  color: var(--text-muted);
  margin-bottom: 5px;
  font-size: 0.95rem;
}

.hours-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 10px;
}

.day {
  color: var(--text-light);
  font-weight: 500;
}

.time {
  color: var(--text-muted);
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 15px;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(110, 66, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.social-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 0;
}

.social-link i {
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
}

.social-link:hover::before {
  opacity: 1;
}

.social-link:hover i {
  color: var(--text-light);
  transform: scale(1.2);
}

.contact-stats {
  display: flex;
  justify-content: space-between;
  padding-top: 30px;
  border-top: 1px solid rgba(110, 66, 255, 0.2);
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 5px;
}

.stat-label {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Enhanced Contact Form Styles */
.contact-form-container {
  position: relative;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 50px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  transition: var(--transition-medium);
  transform: translateZ(0);
}

.contact-form-container:hover {
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.2), 0 0 30px rgba(110, 87, 224, 0.3);
  border-color: rgba(110, 87, 224, 0.2);
}

.contact-form-container::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(110, 87, 224, 0.1), transparent 70%);
  opacity: 0;
  transition: var(--transition-slow);
  transform: scale(0.8);
  z-index: -1;
}

.contact-form-container:hover::before {
  opacity: 1;
  transform: scale(1);
}

.form-header {
  text-align: center;
  margin-bottom: 40px;
}

.form-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--light-color);
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.form-header h2 span {
  color: transparent;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
}

.form-header p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.form-group {
  position: relative;
}

.form-group:nth-child(5) {
  grid-column: span 2;
}

.form-group:nth-child(6) {
  grid-column: span 2;
  margin-top: 15px;
}

.input-animation {
  position: relative;
  width: 100%;
}

.input-animation input,
.input-animation select,
.input-animation textarea {
  width: 100%;
  padding: 15px 20px;
  padding-left: 50px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: var(--light-color);
  font-size: 1rem;
  transition: var(--transition-fast);
  outline: none;
  box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.1);
}

.input-animation textarea {
  min-height: 150px;
  resize: vertical;
}

.input-animation label {
  position: absolute;
  top: 15px;
  left: 50px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 1rem;
  pointer-events: none;
  transition: var(--transition-fast);
}

.input-animation input:focus,
.input-animation select:focus,
.input-animation textarea:focus,
.input-animation input:not(:placeholder-shown),
.input-animation select:not([value=""]):not([value="default"]),
.input-animation textarea:not(:placeholder-shown) {
  border-color: var(--primary-color);
  background: rgba(110, 87, 224, 0.05);
  box-shadow: 0 0 15px rgba(110, 87, 224, 0.2), inset 0 2px 5px rgba(0, 0, 0, 0.05);
}

.input-animation input:focus ~ label,
.input-animation select:focus ~ label,
.input-animation textarea:focus ~ label,
.input-animation input:not(:placeholder-shown) ~ label,
.input-animation select:not([value=""]):not([value="default"]) ~ label,
.input-animation textarea:not(:placeholder-shown) ~ label {
  top: -25px;
  left: 15px;
  font-size: 0.85rem;
  color: var(--secondary-color);
  font-weight: 600;
}

.input-animation input::placeholder,
.input-animation select::placeholder,
.input-animation textarea::placeholder {
  color: transparent;
}

.input-line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: var(--transition-fast);
}

.input-animation input:focus ~ .input-line,
.input-animation select:focus ~ .input-line,
.input-animation textarea:focus ~ .input-line {
  width: 100%;
}

.input-icon {
  position: absolute;
  top: 15px;
  left: 15px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 1.2rem;
  transition: var(--transition-fast);
}

.textarea .input-icon {
  top: 18px;
}

.input-animation input:focus ~ .input-icon,
.input-animation select:focus ~ .input-icon,
.input-animation textarea:focus ~ .input-icon {
  color: var(--secondary-color);
  transform: scale(1.2);
}

/* Enhanced Submit Button */
.form-submit {
  text-align: center;
  margin-top: 20px;
}

.submit-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 40px;
  background: var(--gradient-primary);
  border: none;
  border-radius: 50px;
  color: var(--light-color);
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  overflow: hidden;
  transition: var(--transition-fast);
  box-shadow: 0 10px 20px rgba(110, 87, 224, 0.3);
  z-index: 1;
}

.submit-btn .btn-text {
  position: relative;
  z-index: 2;
  transition: var(--transition-fast);
}

.submit-btn .btn-icon {
  margin-left: 10px;
  font-size: 1.2rem;
  position: relative;
  z-index: 2;
  transition: var(--transition-fast);
}

.btn-ripple {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-accent);
  opacity: 0;
  transform: scale(0);
  transition: var(--transition-medium);
  z-index: 1;
}

.submit-btn:hover .btn-ripple {
  transform: scale(2);
  opacity: 0.2;
}

.submit-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(110, 87, 224, 0.4);
}

.submit-btn:hover .btn-icon {
  transform: translateX(5px);
}

/* Map Section */
.map-section {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(to bottom, #121212, #1a1a1a);
  overflow: hidden;
}

.map-container {
  position: relative;
  height: 500px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: var(--transition-medium);
}

.map-container:hover {
  transform: translateY(-10px);
  box-shadow: 0 40px 70px rgba(0, 0, 0, 0.4), 0 0 30px rgba(110, 87, 224, 0.2);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(70%) contrast(1.1) brightness(0.9);
  transition: var(--transition-medium);
}

.map-container:hover iframe {
  filter: grayscale(0%) contrast(1.05) brightness(1);
}

.map-overlay {
  position: absolute;
  top: 30px;
  right: 30px;
  z-index: 10;
}

.map-card {
  background: rgba(18, 18, 18, 0.9);
  backdrop-filter: blur(10px);
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.05);
  width: 320px;
  transition: var(--transition-medium);
}

.map-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(110, 87, 224, 0.2);
  border-color: rgba(110, 87, 224, 0.2);
}

.map-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--light-color);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}

.map-card h3 i {
  margin-right: 12px;
  color: var(--secondary-color);
  font-size: 1.8rem;
}

.map-card p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 15px;
  line-height: 1.6;
  display: flex;
  align-items: center;
}

.map-card p i {
  margin-right: 12px;
  color: var(--primary-color);
  font-size: 1.2rem;
  width: 20px;
}

.map-directions {
  display: inline-flex;
  align-items: center;
  padding: 12px 25px;
  background: var(--gradient-primary);
  border-radius: 50px;
  color: var(--light-color);
  font-weight: 600;
  margin-top: 15px;
  transition: var(--transition-fast);
  box-shadow: 0 8px 15px rgba(110, 87, 224, 0.3);
  text-decoration: none;
}

.map-directions:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 20px rgba(110, 87, 224, 0.4);
}

/* Enhanced CTA Section */
.contact-cta {
  position: relative;
  padding: 120px 0;
  background: radial-gradient(ellipse at top, #1B2735 0%, #090A0F 100%);
  overflow: hidden;
  z-index: 1;
}

.cta-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.cta-content {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 60px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
  z-index: 2;
  transition: var(--transition-medium);
}

.cta-content:hover {
  transform: translateY(-10px);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.3), 0 0 30px rgba(110, 87, 224, 0.3);
  border-color: rgba(110, 87, 224, 0.2);
}

.cta-content::before {
  content: '';
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  border-radius: 40px;
  background: linear-gradient(45deg, 
    rgba(110, 87, 224, 0.5), 
    rgba(0, 217, 255, 0.5), 
    rgba(110, 87, 224, 0), 
    rgba(0, 217, 255, 0));
  background-size: 400% 400%;
  animation: border-glow 8s ease infinite;
  z-index: -1;
  opacity: 0.5;
  filter: blur(15px);
}

.cta-content h2 {
  font-size: 3rem;
  font-weight: 800;
  color: var(--light-color);
  margin-bottom: 25px;
  line-height: 1.2;
}

.cta-content h2 span {
  color: transparent;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
}

.cta-content p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 40px;
  line-height: 1.8;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.cta-btn {
  display: flex;
  align-items: center;
  padding: 15px 30px;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  transition: var(--transition-fast);
  text-decoration: none;
}

.cta-btn i {
  margin-right: 12px;
  font-size: 1.3rem;
}

.phone-btn {
  background: var(--gradient-primary);
  color: var(--light-color);
  box-shadow: 0 10px 20px rgba(110, 87, 224, 0.3);
}

.whatsapp-btn {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: var(--light-color);
  box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
}

.email-btn {
  background: var(--gradient-accent);
  color: var(--light-color);
  box-shadow: 0 10px 20px rgba(255, 62, 127, 0.3);
}

.cta-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

/* Enhanced FAQ Mini Section */
.faq-mini {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(to bottom, #1a1a1a, #121212);
}

.faq-header {
  text-align: center;
  margin-bottom: 60px;
}

.faq-header h2 {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--light-color);
  margin-bottom: 20px;
}

.faq-header h2 span {
  color: transparent;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
}

.faq-header p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

.faq-accordion {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 15px;
  margin-bottom: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: var(--transition-fast);
}

.faq-item:hover {
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transform: translateY(-3px);
  border-color: rgba(110, 87, 224, 0.2);
}

.faq-question {
  padding: 25px 30px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.faq-question h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--light-color);
  margin: 0;
}

.question-icon {
  width: 30px;
  height: 30px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.question-icon i {
  color: var(--secondary-color);
  font-size: 0.9rem;
  transition: var(--transition-fast);
}

.faq-item.active .question-icon {
  background: var(--primary-color);
  transform: rotate(180deg);
}

.faq-item.active .question-icon i {
  color: var(--light-color);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: var(--transition-medium);
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

.answer-content {
  padding: 0 30px 25px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  line-height: 1.7;
}

/* Enhanced Success Modal */
.success-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-medium);
}

.success-modal.show {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background: rgba(30, 30, 30, 0.95);
  border-radius: 20px;
  padding: 50px;
  text-align: center;
  max-width: 500px;
  width: 90%;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(110, 87, 224, 0.2);
  transform: scale(0.8);
  opacity: 0;
  transition: var(--transition-medium);
}

.success-modal.show .modal-content {
  transform: scale(1);
  opacity: 1;
}

.modal-icon {
  width: 100px;
  height: 100px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  position: relative;
  box-shadow: 0 10px 30px rgba(110, 87, 224, 0.4);
}

.modal-icon::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--gradient-primary);
  opacity: 0.6;
  animation: pulse-ring 2s infinite;
}

.modal-icon i {
  font-size: 40px;
  color: var(--light-color);
}

.modal-content h3 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--light-color);
  margin-bottom: 20px;
}

.modal-content p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 30px;
  line-height: 1.7;
}

.modal-close-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 40px;
  background: var(--gradient-primary);
  border: none;
  border-radius: 50px;
  color: var(--light-color);
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.modal-close-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(110, 87, 224, 0.4);
}

/* Enhanced Animations */
@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.8;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes pulse-ring {
  0% {
    transform: scale(0.8);
    opacity: 0.8;
  }
  70% {
    transform: scale(1.5);
    opacity: 0;
  }
  100% {
    transform: scale(0.8);
    opacity: 0;
  }
}

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

@keyframes border-glow {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* New 3D Tilt Effect for Cards */
.tilt-effect {
  transform-style: preserve-3d;
  perspective: 1000px;
}

.tilt-inner {
  transition: transform 0.5s ease;
  transform: translateZ(0);
}

/* New Glowing Border Effect */
.glow-border {
  position: relative;
  z-index: 1;
}

.glow-border::after {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  border-radius: inherit;
  background: linear-gradient(45deg, 
    var(--primary-color), 
    var(--secondary-color), 
    var(--accent-color), 
    var(--primary-color));
  background-size: 400% 400%;
  animation: border-glow 8s ease infinite;
  z-index: -1;
  filter: blur(8px);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.glow-border:hover::after {
  opacity: 1;
}

/* New Floating Elements for Visual Interest */
.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.floating-element {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(110, 87, 224, 0.3), transparent);
  filter: blur(5px);
  opacity: 0.5;
  animation: float 15s infinite ease-in-out;
}

.element-1 {
  width: 300px;
  height: 300px;
  top: 10%;
  left: 5%;
  animation-delay: 0s;
}

.element-2 {
  width: 200px;
  height: 200px;
  top: 60%;
  right: 10%;
  animation-delay: -5s;
  background: radial-gradient(circle at center, rgba(0, 217, 255, 0.3), transparent);
}

.element-3 {
  width: 150px;
  height: 150px;
  bottom: 20%;
  left: 15%;
  animation-delay: -10s;
  background: radial-gradient(circle at center, rgba(255, 62, 127, 0.3), transparent);
}

/* New Hover Card Effect */
.hover-card-effect {
  position: relative;
  transition: all 0.5s ease;
}

.hover-card-effect::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.1), transparent 70%);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.hover-card-effect:hover::before {
  opacity: 1;
}

.hover-card-effect:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 20px rgba(110, 87, 224, 0.3);
}

/* New Neon Text Effect */
.neon-text {
  color: var(--light-color);
  text-shadow: 
    0 0 5px rgba(110, 87, 224, 0.5),
    0 0 10px rgba(110, 87, 224, 0.3),
    0 0 15px rgba(110, 87, 224, 0.2);
  transition: text-shadow 0.3s ease;
}

.neon-text:hover {
  text-shadow: 
    0 0 5px rgba(110, 87, 224, 0.8),
    0 0 10px rgba(110, 87, 224, 0.5),
    0 0 15px rgba(110, 87, 224, 0.3),
    0 0 20px rgba(110, 87, 224, 0.2);
}

/* New Gradient Text Animation */
.gradient-text-animated {
  background: linear-gradient(
    to right,
    var(--primary-color),
    var(--secondary-color),
    var(--accent-color),
    var(--primary-color)
  );
  background-size: 300% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: gradient-shift 8s ease infinite;
}

@keyframes gradient-shift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* New Cyber Button Effect */
.cyber-btn {
  position: relative;
  padding: 15px 30px;
  background: rgba(110, 87, 224, 0.1);
  color: var(--light-color);
  border: 1px solid var(--primary-color);
  border-radius: 5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  overflow: hidden;
  transition: all 0.3s ease;
  z-index: 1;
}

.cyber-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--primary-color);
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  z-index: -1;
}

.cyber-btn:hover::before {
  transform: translateX(0);
}

.cyber-btn:hover {
  color: var(--light-color);
  box-shadow: 0 0 20px rgba(110, 87, 224, 0.5);
}

/* New Glitch Effect for Text */
.glitch-text {
  position: relative;
  color: var(--light-color);
}

.glitch-text::before,
.glitch-text::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.8;
}

.glitch-text::before {
  color: var(--accent-color);
  z-index: -1;
  animation: glitch-anim-1 0.4s infinite;
}

.glitch-text::after {
  color: var(--secondary-color);
  z-index: -2;
  animation: glitch-anim-2 0.3s infinite;
}

@keyframes glitch-anim-1 {
  0%, 100% {
    transform: translate(0);
  }
  20% {
    transform: translate(-3px, 3px);
  }
  40% {
    transform: translate(-3px, -3px);
  }
  60% {
    transform: translate(3px, 3px);
  }
  80% {
    transform: translate(3px, -3px);
  }
}

@keyframes glitch-anim-2 {
  0%, 100% {
    transform: translate(0);
  }
  20% {
    transform: translate(3px, -3px);
  }
  40% {
    transform: translate(3px, 3px);
  }
  60% {
    transform: translate(-3px, -3px);
  }
  80% {
    transform: translate(-3px, 3px);
  }
}

/* Enhanced Responsive Styles */
@media (max-width: 1200px) {
  .contact-hero h1 {
    font-size: 3.8rem;
  }
  
  .floating-contact-cards {
    gap: 20px;
  }
  
  .contact-card {
    width: 260px;
  }
}

@media (max-width: 992px) {
  .contact-hero h1 {
    font-size: 3.2rem;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .contact-form {
    grid-template-columns: 1fr;
  }
  
  .form-group:nth-child(5),
  .form-group:nth-child(6) {
    grid-column: span 1;
  }
  
  .map-overlay {
    position: relative;
    top: auto;
    right: auto;
    margin-top: 30px;
  }
  
  .map-card {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .contact-hero h1 {
    font-size: 2.8rem;
  }
  
  .contact-hero p {
    font-size: 1.1rem;
  }
  
  .floating-contact-cards {
    flex-direction: column;
    align-items: center;
  }
  
  .contact-card {
    width: 100%;
    max-width: 320px;
  }
  
  .cta-content {
    padding: 40px 30px;
  }
  
  .cta-content h2 {
    font-size: 2.5rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  
  .cta-btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .contact-hero h1 {
    font-size: 2.3rem;
  }
  
  .contact-form-container {
    padding: 30px 20px;
  }
  
  .form-header h2 {
    font-size: 2rem;
  }
  
  .modal-content {
    padding: 30px 20px;
  }
  
  .modal-icon {
    width: 80px;
    height: 80px;
  }
  
  .modal-icon i {
    font-size: 30px;
  }
  
  .modal-content h3 {
    font-size: 1.8rem;
  }
}