/* Base Styles & Variables */
:root {
  --primary-dark: #231651;
  --accent-cyan: #D6FFF6;
  --neutral-white: rgba(255, 255, 255, 0.05);
  --highlight-glow: rgba(214, 255, 246, 0.2);
  --text-light: #ffffff;
  --text-dark: #333333;
  --transition-standard: all 0.3s ease;
  --shadow-standard: 0 10px 30px rgba(0, 0, 0, 0.1);
  --glass-blur: blur(10px);
  --border-radius: 12px;
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  background-color: var(--primary-dark);
  color: var(--text-light);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  background: linear-gradient(135deg, var(--primary-dark) 0%, #2a1a5e 50%, #1a1040 100%);
  background-attachment: fixed;
  
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  background: linear-gradient(90deg, var(--text-light), var(--accent-cyan));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 1.2rem;
}

h3 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

a {
  color: var(--accent-cyan);
  text-decoration: none;
  transition: var(--transition-standard);
}

a:hover {
  text-decoration: none;
  color: #ffffff;
}

.quick-contact .container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Glassmorphism Styles */
.glass-card {
  background: var(--neutral-white);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-radius: var(--border-radius);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-standard);
  padding: 2rem;
  transition: var(--transition-standard);
  position: relative;
  overflow: hidden;
}

.glass-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
      90deg, 
      transparent, 
      rgba(255, 255, 255, 0.05), 
      transparent
  );
  transition: 0.5s;
  pointer-events: none;
}

.glass-card:hover::before {
  left: 100%;
}

nav.home {
  padding: 110px 5% 20px 5%;
  font-size: 0.95rem;
  color: var(--text);
  display: flex;
  align-items: center;
}




/* Hero Section */
.hero {
  position: relative;
  height: 60vh;
  min-height: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(35, 22, 81, 0.5) 0%, rgba(35, 22, 81, 0.8) 70%, rgba(35, 22, 81, 1) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 2rem;
}

.hero-content p {
  font-size: 1.5rem;
  color: var(--accent-cyan);
  margin-bottom: 2rem;
  animation: fadeIn 1.5s ease-out;
}

.bubble-container {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  top: 0;
  left: 0;
  z-index: 0;
}

.bubble {
  position: absolute;
  bottom: -50px;
  background: rgba(214, 255, 246, 0.05);
  border: 1px solid rgba(214, 255, 246, 0.1);
  border-radius: 50%;
  animation: float linear infinite;
}

/* Main Content - Split Layout */
.main-content {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 4rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.contact-info {
  flex: 1;
  min-width: 300px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.contact-form-container {
  flex: 1.5;
  min-width: 350px;
}

.icon-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--accent-cyan);
  margin-bottom: 1rem;
}

.icon {
  width: 24px;
  height: 24px;
  fill: var(--primary-dark);
}

/* Contact Form Styles */
.form-card {
  padding: 2.5rem;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

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

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

label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--accent-cyan);
}

input, textarea {
  width: 100%;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius);
  background: rgba(255, 255, 255, 0.05);
  color: white;
  font-size: 1rem;
  transition: var(--transition-standard);
}

input:focus, textarea:focus {
  outline: none;
  border-color: var(--accent-cyan);
  box-shadow: 0 0 0 2px var(--highlight-glow);
}

.file-upload {
  position: relative;
}

.file-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.file-button {
  background-color: var(--accent-cyan);
  color: var(--primary-dark);
  padding: 0.5rem 1rem;
  border-radius: var(--border-radius);
  font-weight: 500;
  transition: var(--transition-standard);
}

.file-input {
  position: absolute;
  width: 0.1px;
  height: 0.1px;
  opacity: 0;
  overflow: hidden;
  z-index: -1;
}

.file-name {
  margin-top: 0.5rem;
  display: block;
  color: rgba(255, 255, 255, 0.7);
}

.checkbox-group {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.checkbox-group input {
  width: auto;
}

.submit-button {
  grid-column: span 2;
  background: linear-gradient(45deg, var(--primary-dark), var(--accent-cyan));
  color: white;
  border: none;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: var(--transition-standard);
  position: relative;
  overflow: hidden;
}

.submit-button::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: 0.5s;
}

.submit-button:hover::before {
  left: 100%;
}

.submit-button span {
  position: relative;
  z-index: 1;
}

/* FAQ Shortcut Section */
.faq-shortcut {
  text-align: center;
  padding: 5rem 2rem;
  background: linear-gradient(
      rgba(35, 22, 81, 0.7), 
      rgba(35, 22, 81, 0.9)
  );
}

.glow-button {
  display: inline-block;
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary-dark);
  background-color: var(--accent-cyan);
  border-radius: 30px;
  box-shadow: 0 0 20px var(--highlight-glow);
  transition: var(--transition-standard);
  margin-top: 1.5rem;
}

.glow-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 30px var(--accent-cyan);
  color: var(--primary-dark);
}

/* Quick Contact Cards */
.quick-contact {
  padding: 5rem 2rem;
  text-align: center;
}

.cards-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 3rem;
}

.quick-card {
  flex: 1;
  min-width: 250px;
  max-width: 350px;
  height: 200px;
  perspective: 1000px;
  cursor: pointer;
}

.quick-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.6s;
  transform-style: preserve-3d;
  border-radius: var(--border-radius);
  background: var(--neutral-white);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.quick-card:hover .quick-card-inner {
  transform: rotateY(10deg);
  box-shadow: -5px 5px 15px rgba(0, 0, 0, 0.2);
}

/* Footer CTA */
.footer-cta {
  text-align: center;
  padding: 6rem 2rem;
  background: linear-gradient(
      to bottom,
      rgba(35, 22, 81, 0.9),
      rgba(35, 22, 81, 1)
  );
}

.large-glow-button {
  display: inline-block;
  padding: 1.2rem 3rem;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--primary-dark);
  background-color: var(--accent-cyan);
  border: none;
  border-radius: 40px;
  box-shadow: 0 0 30px var(--highlight-glow);
  transition: var(--transition-standard);
  margin-top: 2rem;
  cursor: pointer;
  animation: pulse 2s infinite;
}

.large-glow-button:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 40px var(--accent-cyan);
}

/* Animations */
@keyframes pulse {
  0% {
      box-shadow: 0 0 0 0 var(--highlight-glow);
  }
  70% {
      box-shadow: 0 0 0 15px rgba(214, 255, 246, 0);
  }
  100% {
      box-shadow: 0 0 0 0 rgba(214, 255, 246, 0);
  }
}

@keyframes float {
  0% {
      transform: translateY(0) rotate(0);
      opacity: 0;
  }
  10% {
      opacity: 1;
  }
  90% {
      opacity: 1;
  }
  100% {
      transform: translateY(-1000%) rotate(720deg);
      opacity: 0;
  }
}

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

.reveal-card {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s, transform 0.8s;
}

.reveal-card.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Media Queries */
@media (max-width: 1200px) {
  .main-content {
      padding: 3rem 1.5rem;
  }
  
  h1 {
      font-size: 3rem;
  }
  
  h2 {
      font-size: 2.2rem;
  }
}

@media (max-width: 992px) {
  .contact-info {
      grid-template-columns: repeat(2, 1fr);
  }
  
  .hero {
      height: 50vh;
  }
  
  .hero-content p {
      font-size: 1.3rem;
  }
}

@media (max-width: 768px) {
  .main-content {
      flex-direction: column;
  }
  
  .contact-form {
      grid-template-columns: 1fr;
  }
  
  .form-group:nth-child(5),
  .form-group:nth-child(6),
  .form-group:nth-child(7),
  .form-group:nth-child(8),
  .submit-button {
      grid-column: span 1;
  }
  
  h1 {
      font-size: 2.5rem;
  }
  
  h2 {
      font-size: 2rem;
  }
  
  .hero-content p {
      font-size: 1.1rem;
  }
}

@media (max-width: 576px) {
  .contact-info {
      grid-template-columns: 1fr;
  }
  
  .glass-card {
      padding: 1.5rem;
  }
  
  .hero {
      min-height: 400px;
  }
  
  h1 {
      font-size: 2rem;
  }
  
  h2 {
      font-size: 1.7rem;
  }
  
  .form-card {
      padding: 1.5rem;
  }
}
