
/* ===== GENERAL ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
 
  background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
  color: #fff;
  overflow-x: hidden;
  position: relative;
}

/* Animated Background Elements */
.animated-bg {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  overflow: hidden;
}

.floating-circle {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.3;
  animation: float 15s infinite ease-in-out;
}

.circle-1 {
  width: 400px;
  height: 400px;
  background: linear-gradient(45deg, #ff0080, #ff8c00);
  top: 10%;
  left: 5%;
  animation-delay: 0s;
}

.circle-2 {
  width: 300px;
  height: 300px;
  background: linear-gradient(45deg, #00dbde, #fc00ff);
  bottom: 15%;
  right: 10%;
  animation-delay: 5s;
}

.circle-3 {
  width: 250px;
  height: 250px;
  background: linear-gradient(45deg, #facc15, #38bdf8);
  top: 50%;
  left: 80%;
  animation-delay: 10s;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  33% {
    transform: translateY(-30px) rotate(120deg);
  }
  66% {
    transform: translateY(30px) rotate(240deg);
  }
}

/* Particle animation */
.particle {
  position: absolute;
  width: 6px;
  height: 1px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  animation: particle-float 20s infinite linear;
}
/* 
@keyframes particle-float {
  0% {
    transform: translateY(100vh) translateX(0);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(-100px) translateX(100px);
    opacity: 0;
  }
} 
/* ===== ENHANCED CONTACT HERO ===== */
.contact-hero {
  min-height: 60vh;
  padding: 150px 80px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: 
    radial-gradient(circle at 30% 30%, rgba(168, 85, 247, 0.25) 0%, transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(56, 189, 248, 0.2) 0%, transparent 50%),
    radial-gradient(circle at 40% 80%, rgba(255, 0, 128, 0.15) 0%, transparent 50%);
  position: relative;
  overflow: hidden;
}

.contact-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 Z" fill="rgba(255,255,255,0.03)"/></svg>'),
    linear-gradient(45deg, rgba(255,0,128,0.05), rgba(99,102,241,0.05), rgba(0,219,222,0.05));
  background-size: cover, auto;
  z-index: -1;
  animation: gradient-shift 10s infinite alternate;
}

@keyframes gradient-shift {
  0% {
    background-position: 0% 0%;
  }
  100% {
    background-position: 100% 100%;
  }
}

.contact-hero h1 {
  font-size: 4rem;
  margin-bottom: 20px;
  background: linear-gradient(90deg, #facc15, #38bdf8, #a855f7, #ff0080);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1.2;
  text-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  animation: text-float 3s infinite ease-in-out;
}

@keyframes text-float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.contact-hero p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto 30px;
  color: #e2e8f0;
  line-height: 1.6;
}

.hero-subtitle {
  font-size: 1.5rem;
  color: #94a3b8;
  margin-bottom: 40px;
  position: relative;
  display: inline-block;
  padding: 15px 40px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  animation: subtitle-glow 4s infinite alternate;
}

@keyframes subtitle-glow {
  0% {
    box-shadow: 0 8px 32px rgba(255, 0, 128, 0.1);
  }
  33% {
    box-shadow: 0 8px 32px rgba(56, 189, 248, 0.1);
  }
  66% {
    box-shadow: 0 8px 32px rgba(168, 85, 247, 0.1);
  }
  100% {
    box-shadow: 0 8px 32px rgba(250, 204, 21, 0.1);
  }
}

.hero-subtitle::before,
.hero-subtitle::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, transparent, #38bdf8, #a855f7);
  border-radius: 3px;
}

.hero-subtitle::before {
  left: -60px;
}

.hero-subtitle::after {
  right: -60px;
  background: linear-gradient(90deg, #a855f7, #38bdf8, transparent);
}

/* ===== ENHANCED CONTACT SECTION ===== */
.contact-section {
  padding: 80px 80px;
  max-width: 1400px;
  margin: 0 auto;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 60px;
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, #ff0080, #6366f1, #00dbde);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: title-shine 3s infinite linear;
}

@keyframes title-shine {
  0% {
    background-position: -200px;
  }
  100% {
    background-position: 200px;
  }
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #ff0080, #6366f1, #00dbde, #facc15);
  border-radius: 2px;
  animation: line-glow 2s infinite alternate;
}

@keyframes line-glow {
  0% {
    box-shadow: 0 0 5px #ff0080;
  }
  33% {
    box-shadow: 0 0 10px #6366f1;
  }
  66% {
    box-shadow: 0 0 10px #00dbde;
  }
  100% {
    box-shadow: 0 0 10px #facc15;
  }
}

/* Contact Container */
.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 80px;
}

/* Enhanced Contact Info Cards */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.info-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 30px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px);
}

.info-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(to bottom, #ff0080, #6366f1, #00dbde);
  transition: width 0.4s ease;
}

.info-card:hover::before {
  width: 10px;
}

.info-card.animated {
  opacity: 1;
  transform: translateY(0);
}

.info-card:hover {
  transform: translateY(-15px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(168, 85, 247, 0.5);
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.3),
    0 0 30px rgba(255, 0, 128, 0.1);
}

.info-card i {
  font-size: 2.5rem;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #ff0080, #6366f1, #00dbde);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  transition: transform 0.4s ease;
}

.info-card:hover i {
  transform: scale(1.2) rotate(5deg);
}

.info-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #f1f5f9;
}

.info-card p {
  color: #cbd5e1;
  line-height: 1.6;
  margin-bottom: 10px;
  transition: color 0.3s ease;
}

.info-card:hover p {
  color: #e2e8f0;
}

/* Enhanced Contact Form */
.contact-form-container {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 40px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.contact-form-container.animated {
  opacity: 1;
  transform: translateY(0);
}

.contact-form-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #ff0080, #6366f1, #00dbde);
  animation: border-flow 3s infinite linear;
}

@keyframes border-flow {
  0% {
    background-position: 0% 0%;
  }
  100% {
    background-position: 200% 0%;
  }
}

.contact-form h3 {
  font-size: 2rem;
  margin-bottom: 30px;
  color: #f1f5f9;
  text-align: center;
  background: linear-gradient(90deg, #facc15, #38bdf8);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.form-group {
  margin-bottom: 25px;
  position: relative;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  color: #cbd5e1;
  font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 15px 20px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: #38bdf8;
  box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.2), 0 0 15px rgba(56, 189, 248, 0.3);
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

.submit-btn {
  width: 100%;
  padding: 18px;
  background: linear-gradient(135deg, #ff0080, #6366f1, #00dbde);
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.4s ease;
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
  overflow: hidden;
  background-size: 200% 100%;
  animation: gradient-shift 3s infinite alternate;
}

.submit-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.7s ease;
}

.submit-btn:hover::before {
  left: 100%;
}

.submit-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(255, 0, 128, 0.4);
}

/* WhatsApp Integration Styles */
.whatsapp-option {
  margin: 25px 0;
  padding: 20px;
  background: rgba(37, 211, 102, 0.1);
  border-radius: 12px;
  border: 1px solid rgba(37, 211, 102, 0.3);
}

.whatsapp-option label {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #cbd5e1;
  font-weight: 500;
  cursor: pointer;
}

.whatsapp-option input[type="checkbox"] {
  width: auto;
  transform: scale(1.2);
}

.whatsapp-option .whatsapp-note {
  font-size: 0.9rem;
  color: #94a3b8;
  margin-top: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.whatsapp-btn {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: white;
  padding: 15px;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.4s ease;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 15px;
  width: 100%;
}

.whatsapp-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
}

.whatsapp-btn i {
  font-size: 1.2rem;
}

/* Enhanced Map Section */
.map-section {
  margin-top: 40px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 
    0 15px 35px rgba(0, 0, 0, 0.3),
    0 0 40px rgba(255, 0, 128, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.map-section.animated {
  opacity: 1;
  transform: translateY(0);
}

.map-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(255,0,128,0.05), rgba(99,102,241,0.05));
  z-index: 1;
  pointer-events: none;
}

.map-container {
  height: 400px;
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: hue-rotate(0deg);
  transition: filter 0.5s ease;
}

.map-container:hover iframe {
  filter: hue-rotate(180deg);
}

/* Map overlay with animation */
.map-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(255,0,128,0.1), rgba(99,102,241,0.1));
  z-index: 2;
  pointer-events: none;
  opacity: 0;
  animation: map-overlay 4s infinite;
}

@keyframes map-overlay {
  0%, 100% {
    opacity: 0;
  }
  50% {
    opacity: 0.2;
  }
}

/* Enhanced Business Hours */
.business-hours {
  margin-top: 80px;
  padding: 40px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.business-hours.animated {
  opacity: 1;
  transform: translateY(0);
}

.business-hours::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255,0,128,0.1) 0%, transparent 70%);
  z-index: 0;
}

.business-hours h3 {
  font-size: 2rem;
  margin-bottom: 30px;
  text-align: center;
  color: #f1f5f9;
  position: relative;
  z-index: 1;
  background: linear-gradient(90deg, #facc15, #38bdf8);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  position: relative;
  z-index: 1;
}

.hour-item {
  display: flex;
  justify-content: space-between;
  padding: 20px;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.4s ease;
}

.hour-item:hover {
  transform: translateY(-5px);
  background: rgba(255, 0, 128, 0.05);
  border-color: rgba(255, 0, 128, 0.3);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.day {
  color: #cbd5e1;
  font-weight: 500;
}

.time {
  color: #facc15;
  font-weight: 600;
  text-shadow: 0 0 10px rgba(250, 204, 21, 0.3);
}

/* ===== RESPONSIVE DESIGN ===== */

/* For tablets */
@media (max-width: 1024px) {
  header {
    padding: 0 30px;
  }
  
  .menu-toggle {
    display: flex;
  }
  
  .nav-links {
    position: fixed;
    top: 90px;
    left: 0;
    width: 100%;
    background: rgba(36, 36, 62, 0.98);
    backdrop-filter: blur(15px);
    flex-direction: column;
    align-items: center;
    padding: 30px 20px;
    gap: 20px;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 999;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }
  
  .nav-links.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  
  .nav-link {
    width: 100%;
    max-width: 300px;
    justify-content: center;
    padding: 15px 20px;
  }
  
  .contact-btn {
    margin-left: 0;
    margin-top: 10px;
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
  
  .contact-hero {
    padding: 150px 40px 60px;
  }
  
  .contact-hero h1 {
    font-size: 3rem;
  }
  
  .contact-section {
    padding: 60px 40px;
  }
  
  .contact-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .section-title {
    font-size: 2.2rem;
  }
  
  .map-container {
    height: 350px;
  }
}

/* For mobile devices */
@media (max-width: 768px) {
  header {
    padding: 0 20px;
    height: 80px;
  }
  
  .logo {
    font-size: 24px;
  }
  
  .contact-hero {
    padding: 130px 20px 40px;
    min-height: 50vh;
  }
  
  .contact-hero h1 {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
    padding: 12px 25px;
  }
  
  .hero-subtitle::before,
  .hero-subtitle::after {
    width: 30px;
  }
  
  .hero-subtitle::before {
    left: -40px;
  }
  
  .hero-subtitle::after {
    right: -40px;
  }
  
  .contact-section {
    padding: 40px 20px;
  }
  
  .section-title {
    font-size: 1.8rem;
    margin-bottom: 40px;
  }
  
  .info-card {
    padding: 20px;
  }
  
  .info-card h3 {
    font-size: 1.3rem;
  }
  
  .info-card i {
    font-size: 2rem;
  }
  
  .contact-form-container {
    padding: 25px;
  }
  
  .contact-form h3 {
    font-size: 1.6rem;
  }
  
  .map-container {
    height: 300px;
  }
  
  .business-hours {
    padding: 25px;
    margin-top: 50px;
  }
  
  .business-hours h3 {
    font-size: 1.6rem;
  }
  
  .hours-grid {
    grid-template-columns: 1fr;
  }
  
  .hour-item {
    flex-direction: column;
    gap: 5px;
  }
  
  .floating-circle {
    display: none;
  }
}

/* For very small mobile devices */
@media (max-width: 480px) {
  .contact-hero h1 {
    font-size: 2rem;
  }
  
  .contact-hero p {
    font-size: 1rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
    padding: 10px 20px;
  }
  
  .section-title {
    font-size: 1.5rem;
  }
  
  .form-group input,
  .form-group textarea,
  .form-group select {
    padding: 12px 15px;
  }
  
  .submit-btn,
  .whatsapp-btn {
    padding: 15px;
    font-size: 1rem;
  }
  
  .map-container {
    height: 250px;
  }
}

/* Floating WhatsApp Button */
.floating-whatsapp {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 30px;
  box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
  z-index: 999;
  cursor: pointer;
  transition: all 0.3s ease;
  animation: whatsapp-pulse 2s infinite;
  text-decoration: none;
}

@keyframes whatsapp-pulse {
  0% {
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
  }
  50% {
    box-shadow: 0 5px 30px rgba(37, 211, 102, 0.7);
  }
  100% {
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
  }
}

.floating-whatsapp:hover {
  transform: scale(1.1) rotate(10deg);
  background: #128c7e;
}

.floating-whatsapp .tooltip {
  position: absolute;
  right: 70px;
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 8px 15px;
  border-radius: 5px;
  font-size: 14px;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(10px);
  transition: all 0.3s ease;
  pointer-events: none;
}

.floating-whatsapp:hover .tooltip {
  opacity: 1;
  transform: translateX(0);
}

@media (max-width: 768px) {
  .floating-whatsapp {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    font-size: 24px;
  }
}
