/* Coming Soon Page Styles for ZRV Consultancy */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;900&family=Nunito:wght@400;600&display=swap');

:root {
  --primary: #2e1065; /* Deep Indigo */
  --secondary: #06b6d4; /* Teal */
  --accent: #a21caf; /* Soft Purple */
  --background: #f8fafc; /* Light Gray */
  --card-bg: rgba(255,255,255,0.95);
  --glass-bg: rgba(255,255,255,0.8);
  --primary-solid: #2e1065;
  --secondary-solid: #06b6d4;
  --text-main: #1e293b;
  --text-light: #64748b;
  --white: #fff;
  --shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15);
  --shadow-lg: 0 20px 60px 0 rgba(31, 38, 135, 0.2);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'Nunito', Arial, sans-serif;
  background: var(--background);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
  position: relative;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
  letter-spacing: -1px;
}

/* Background Container */
.background-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--primary);
  z-index: -2;
}

.background-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('https://images.unsplash.com/photo-1488646953014-85cb44e25828?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80') center/cover;
  opacity: 0.3;
  z-index: -1;
}

.background-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(46, 16, 101, 0.8);
  z-index: -1;
}

/* Floating Elements */
.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
}

.floating-element {
  position: absolute;
  color: rgba(255, 255, 255, 0.1);
  font-size: 2rem;
  animation: float var(--duration) ease-in-out infinite;
  animation-delay: var(--delay);
  left: var(--x);
  top: var(--y);
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
    opacity: 0.1;
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
    opacity: 0.3;
  }
}

/* Main Container */
.main-container {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  position: relative;
  z-index: 1;
}

/* Logo Section */
.logo-section {
  margin-bottom: 3rem;
  animation: fadeInDown 1s ease-out;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--glass-bg);
  padding: 1.5rem 2rem;
  border-radius: 1rem;
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.logo-icon {
  width: 3rem;
  height: 3rem;
  background: var(--primary);
  border-radius: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
  box-shadow: 0 4px 16px rgba(46, 16, 101, 0.3);
}

.logo-text h1 {
  font-size: 1.8rem;
  color: var(--primary);
  margin: 0;
  font-weight: 900;
}

.logo-text p {
  font-size: 0.8rem;
  color: var(--secondary);
  font-weight: 700;
  letter-spacing: 1px;
  margin: 0;
}

/* Hero Content */
.hero-content {
  text-align: center;
  max-width: 800px;
  margin-bottom: 4rem;
  animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--glass-bg);
  color: var(--secondary);
  padding: 0.75rem 1.5rem;
  border-radius: 2rem;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 2rem;
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-title {
  font-size: 3.5rem;
  color: var(--white);
  margin-bottom: 1.5rem;
  line-height: 1.2;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.gradient-text {
  color: var(--secondary-solid);
}

.hero-description {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* Countdown Timer */
.countdown-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.countdown-item {
  background: var(--glass-bg);
  padding: 1.5rem;
  border-radius: 1rem;
  text-align: center;
  min-width: 100px;
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: transform 0.3s ease;
}

.countdown-item:hover {
  transform: translateY(-5px);
}

.countdown-number {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--primary);
  font-family: 'Montserrat', sans-serif;
  line-height: 1;
}

.countdown-label {
  font-size: 0.9rem;
  color: var(--text-light);
  font-weight: 600;
  margin-top: 0.5rem;
}

.countdown-separator {
  font-size: 2rem;
  font-weight: 900;
  color: var(--white);
  margin: 0 0.5rem;
}

/* Signup Section */
.signup-section {
  margin-bottom: 4rem;
  animation: fadeInUp 1s ease-out 0.6s both;
}

.signup-card {
  background: var(--card-bg);
  padding: 3rem;
  border-radius: 1.5rem;
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  max-width: 500px;
  margin: 0 auto;
}

.signup-header {
  text-align: center;
  margin-bottom: 2rem;
}

.signup-header h3 {
  font-size: 1.8rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.signup-header p {
  color: var(--text-light);
  font-size: 1rem;
}

.signup-form {
  margin-bottom: 2rem;
}

.form-group {
  position: relative;
  margin-bottom: 1.5rem;
}

.form-group input {
  width: 100%;
  padding: 1rem 1rem 1rem 3rem;
  border: 2px solid rgba(46, 16, 101, 0.1);
  border-radius: 0.8rem;
  font-size: 1rem;
  background: var(--white);
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.form-group input:focus {
  outline: none;
  border-color: var(--secondary);
  box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.form-group i {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-light);
  font-size: 1.2rem;
  pointer-events: none;
  z-index: 1;
}

.signup-btn {
  width: 100%;
  background: var(--secondary-solid);
  color: var(--white);
  border: none;
  padding: 1rem 2rem;
  border-radius: 0.8rem;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  box-shadow: 0 4px 16px rgba(6, 182, 212, 0.3);
}

.signup-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(6, 182, 212, 0.4);
}

.signup-benefits {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-light);
  font-size: 0.9rem;
}

.benefit-item i {
  color: var(--secondary);
  font-size: 1.1rem;
}

/* Features Section */
.features-section {
  margin-bottom: 4rem;
  animation: fadeInUp 1s ease-out 0.9s both;
}

.features-section h3 {
  text-align: center;
  font-size: 2rem;
  color: var(--white);
  margin-bottom: 2rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.feature-card {
  background: var(--glass-bg);
  padding: 2rem;
  border-radius: 1rem;
  text-align: center;
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.feature-icon {
  width: 4rem;
  height: 4rem;
  background: var(--secondary-solid);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: var(--white);
  font-size: 1.5rem;
}

.feature-card h4 {
  font-size: 1.2rem;
  color: var(--primary);
  margin-bottom: 0.75rem;
}

.feature-card p {
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.5;
}

/* Social Section */
.social-section {
  animation: fadeInUp 1s ease-out 1.2s both;
}

.social-content {
  text-align: center;
  background: var(--glass-bg);
  padding: 2rem;
  border-radius: 1rem;
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-content h3 {
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.social-content p {
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.social-link {
  width: 3rem;
  height: 3rem;
  background: var(--secondary-solid);
  color: var(--white);
  border-radius: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(6, 182, 212, 0.2);
}

.social-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(6, 182, 212, 0.4);
}

.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.contact-section {
  background: var(--white);
  padding: 2rem 1.5rem;
  border-radius: 1.5rem;
  text-align: center;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.contact-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--secondary-solid);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.contact-section:hover::before {
  transform: scaleX(1);
}

.contact-section:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(6, 182, 212, 0.2);
}

.contact-section h4 {
  color: var(--primary);
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  position: relative;
}

.contact-section h4::after {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background: var(--secondary-solid);
  border-radius: 1px;
}

.contact-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  color: var(--text-light);
  font-size: 1rem;
  margin-bottom: 0.75rem;
  padding: 0.5rem;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
}

.contact-item:hover {
  background: rgba(6, 182, 212, 0.05);
  transform: translateX(5px);
}

.contact-item a {
  color: var(--secondary);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.contact-item a:hover {
  color: var(--primary);
  text-decoration: underline;
}

.contact-item i {
  color: var(--secondary);
  font-size: 1.2rem;
  min-width: 20px;
}

.contact-desc {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  line-height: 1.5;
  font-weight: 500;
  padding: 0 0.5rem;
}

.contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--secondary-solid);
  color: var(--white);
  padding: 1rem 2rem;
  border-radius: 1rem;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(6, 182, 212, 0.2);
  position: relative;
  overflow: hidden;
}

.contact-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.5s ease;
}

.contact-btn:hover::before {
  left: 100%;
}

.contact-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(6, 182, 212, 0.4);
  color: var(--white);
}

.contact-btn i {
  font-size: 1.1rem;
}

.whatsapp-btn {
  background: #25D366;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.2);
}

.whatsapp-btn:hover {
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.premium-btn {
  background: var(--primary);
  box-shadow: 0 4px 16px rgba(46, 16, 101, 0.2);
}

.premium-btn:hover {
  box-shadow: 0 8px 25px rgba(46, 16, 101, 0.4);
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1000;
  backdrop-filter: blur(5px);
}

.modal-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--white);
  padding: 3rem;
  border-radius: 1.5rem;
  text-align: center;
  max-width: 400px;
  width: 90%;
  box-shadow: var(--shadow-lg);
}

.modal-icon {
  width: 4rem;
  height: 4rem;
  background: var(--secondary-solid);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--white);
  font-size: 1.5rem;
}

.modal-content h3 {
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.modal-content p {
  color: var(--text-light);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.modal-close {
  background: var(--secondary-solid);
  color: var(--white);
  border: none;
  padding: 0.75rem 2rem;
  border-radius: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.modal-close:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(6, 182, 212, 0.3);
}

/* Loading Overlay */
.loading-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1001;
  backdrop-filter: blur(5px);
}

.loading-spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--white);
  font-size: 2rem;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

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

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

/* Responsive Design */
@media (max-width: 768px) {
  .main-container {
    padding: 1rem;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-description {
    font-size: 1rem;
  }
  
  .countdown-container {
    gap: 0.5rem;
  }
  
  .countdown-item {
    min-width: 80px;
    padding: 1rem;
  }
  
  .countdown-number {
    font-size: 2rem;
  }
  
  .countdown-separator {
    font-size: 1.5rem;
  }
  
  .signup-card {
    padding: 2rem;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-info {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 0 0.5rem;
  }
  
  .contact-section {
    padding: 1.75rem 1.25rem;
  }
  
  .contact-section h4 {
    font-size: 1.2rem;
    margin-bottom: 1.25rem;
  }
  
  .contact-item {
    font-size: 0.95rem;
    padding: 0.4rem;
  }
  
  .contact-btn {
    padding: 0.875rem 1.75rem;
    font-size: 0.95rem;
  }
  
  .logo-container {
    padding: 1rem 1.5rem;
  }
  
  .logo-text h1 {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .countdown-container {
    flex-direction: column;
    gap: 1rem;
  }
  
  .countdown-separator {
    display: none;
  }
  
  .social-links {
    flex-wrap: wrap;
  }
  
  .logo-container {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }
  
  .contact-info {
    gap: 1.25rem;
    padding: 0;
  }
  
  .contact-section {
    padding: 1.5rem 1rem;
    border-radius: 1.25rem;
  }
  
  .contact-section h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
  }
  
  .contact-item {
    font-size: 0.9rem;
    padding: 0.3rem;
  }
  
  .contact-btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
    border-radius: 0.875rem;
  }
  
  .contact-desc {
    font-size: 0.85rem;
    margin-bottom: 1.25rem;
  }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
}

::-webkit-scrollbar-thumb {
  background: var(--secondary-solid);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
} 