/* Global Styles */
:root {
  --primary-color: #14B8A6;
  --secondary-color: #8B5CF6;
  --text-color: #333;
  --light-text: #F3F4F6;
  --dark-overlay: rgba(0, 0, 0, 0.4);
  --glass-bg: rgba(255, 255, 255, 0.1);
  --card-border: rgba(255, 255, 255, 0.1);
  --transition-speed: 0.3s;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text-color);
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Orbitron', sans-serif;
  margin: 0;
}

.text-gradient {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Navigation */
.nav-glass {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
}

.nav-menu {
  display: none;
  list-style: none;
  margin: 0;
  padding: 0;
}

@media (min-width: 1024px) {
  .nav-menu {
    display: flex;
    gap: 2rem;
  }
}

.nav-menu.show {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  padding: 2.5rem 1.5rem 2rem;
  text-align: center;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  gap: 1.2rem;
}

.nav-link {
  color: #4B5563;
  text-decoration: none;
  font-weight: 600;
  padding: 0.6rem 0;
  transition: all var(--transition-speed) ease;
  font-family: 'Orbitron', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  font-size: 1.15rem;
}

.nav-link:hover {
  color: var(--secondary-color);
}

.nav-link.active {
  color: var(--secondary-color);
}

.nav-link::before {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 50%;
  background: linear-gradient(90deg, var(--secondary-color), var(--primary-color));
  transform: translateX(-50%);
  transition: width var(--transition-speed) ease;
}

.nav-link:hover::before,
.nav-link.active::before {
  width: 70%;
}

.nav-button {
  background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
  color: white !important;
  padding: 0.8rem 1.5rem !important;
  border-radius: 8px;
  font-weight: bold !important;
  box-shadow: 0 4px 15px rgba(139, 92, 246, 0.2);
  margin-top: 0.5rem;
  width: 80%;
  align-self: center;
}

.nav-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(139, 92, 246, 0.3);
  background: linear-gradient(135deg, #7c4ef3, #0ea394);
}

.nav-button::before {
  display: none !important;
}

/* Logo */
.logo-container {
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
  padding-bottom: 4px;
}

.logo-img {
  width: 40px;
  height: 50px;
  transition: transform var(--transition-speed) ease;
}

.logo-img:hover {
  transform: scale(1.05);
}

.logo-text {
  font-family: 'Orbitron', sans-serif;
  color: var(--secondary-color);
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  position: relative;
  top: 2px;
}

.logo-underline {
  position: absolute;
  bottom: 5px;
  left: 53px;
  width: 23%;
  height: 3px;
  background: linear-gradient(90deg, var(--secondary-color), var(--primary-color));
  border-radius: 5px;
}

/* Mobile Menu */
.menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 10;
}

@media (min-width: 1024px) {
  .menu-toggle {
    display: none;
  }
}

.menu-bar {
  width: 30px;
  height: 3px;
  background: linear-gradient(90deg, var(--secondary-color), var(--primary-color));
  border-radius: 3px;
  transition: all var(--transition-speed) ease;
  margin: 0;
}

.menu-toggle.active .menu-bar:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.menu-toggle.active .menu-bar:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active .menu-bar:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}

.hero-bg-traditional,
.hero-bg-modern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: opacity 1s ease-in-out;
}

.hero-content {
  position: relative;
  z-index: 10;
  padding: 6rem 1rem;
  color: white;
  text-align: center;
}

.hero-title {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.hero-description {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto 2rem;
}

/* Digital Overlay & Hexagons */
.digital-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

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

.hex {
  position: absolute;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  transition: all 1.5s ease-in-out;
}

.animate-forward {
  transform: rotate(360deg) scale(1.2);
}

.animate-backward {
  transform: rotate(-360deg) scale(0.8);
}

/* Cards & Sections */
.section {
  padding: 4rem 1rem;
  position: relative;
}

.section-dark {
  background-color: #1a1a1a;
  color: white;
}

.card {
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  border: 1px solid var(--card-border);
  border-radius: 15px;
  padding: 2rem;
  margin: 1rem;
  transition: all var(--transition-speed) ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Buttons */
.button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.5rem;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  transition: all var(--transition-speed) ease;
  cursor: pointer;
}

.button-primary {
  background: var(--primary-color);
  color: white;
}

.button-secondary {
  background: var(--secondary-color);
  color: white;
}

.button-outline {
  border: 2px solid white;
  color: white;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Forms */
.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.form-input {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-family: inherit;
  transition: all var(--transition-speed) ease;
}

.form-input:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 2px rgba(20, 184, 166, 0.2);
}

/* Footer */
footer {
  background: white;
  color: var(--text-color);
  text-align: center;
  padding: 1rem;
  position: relative;
  z-index: 10;
}

/* Utilities */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

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

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

/* Responsive Design */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-description {
    font-size: 1rem;
  }
  
  .card {
    margin: 0.5rem;
    padding: 1.5rem;
  }
  
  .section {
    padding: 3rem 0.5rem;
  }
}

/* Solution Page Specific */
.solution-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  padding: 2rem 0;
}

.solution-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all var(--transition-speed) ease;
}

.solution-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* About Page Specific */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  padding: 2rem 0;
}

.team-member {
  text-align: center;
}

.team-member img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  margin-bottom: 1rem;
  object-fit: cover;
}

/* Contact Page Specific */
.contact-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 3.5rem;
  margin-bottom: 2rem;
  color: white;
}

.contact-title span {
  color: var(--secondary-color);
}

.contact-description {
  font-size: 1.2rem;
  color: white;
  max-width: 800px;
  margin: 0 auto 3rem;
  line-height: 1.6;
}

.contact-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.contact-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: all 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.15);
}

.contact-icon {
  font-size: 2rem;
  color: var(--primary-color);
  background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.contact-label {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.8rem;
  color: white;
  margin-bottom: 0.5rem;
}

.contact-value {
  font-size: 1.2rem;
  color: white;
  text-decoration: none;
}

.contact-value:hover {
  color: var(--primary-color);
}

.contact-divider {
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--secondary-color), var(--primary-color));
  margin: 2rem auto;
  max-width: 200px;
  opacity: 0.3;
}

@media (max-width: 768px) {
  .contact-title {
    font-size: 2.5rem;
  }
  
  .contact-description {
    font-size: 1rem;
    padding: 0 1rem;
  }
  
  .contact-card {
    margin: 0 1rem;
  }
  
  .contact-label {
    font-size: 1.5rem;
  }
  
  .contact-value {
    font-size: 1rem;
  }
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

.animate-fade-in {
  animation: fadeIn 1s ease-out;
}

.animate-slide-up {
  animation: slideUp 1s ease-out;
} 