:root {
  --primary-blue: #0077be;
  --dark-blue: #004d7a;
  --light-blue: #e6f3fa;
  --dark-bg: #0a0e1a;
  --light-bg: #f8f9fa;
  --text-dark: #333;
  --text-light: #fff;
  --gray: #6c757d;
  --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  --max-width: 1200px;
}

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

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

html, body {
  height: 100%;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Navigation */
header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: rgba(0, 0, 0, 0.8);
  padding: 1rem 2rem;
}

header nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: var(--max-width);
  margin: 0 auto;
}

.logo {
  /* Empty logo div as in original */
}

nav ul {
  display: flex;
  list-style: none;
  gap: 2rem;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

nav a:hover {
  color: var(--primary-blue);
}

/* Hide the new navbar structure */
.navbar {
  display: none;
}

/* Hero Section - Full Window */
.hero {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}

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

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.hero-text {
  position: absolute;
  bottom: 15vh;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 10;
  white-space: nowrap;
}

.hero-title {
  font-family: 'Orbitron', monospace;
  font-size: clamp(2.4rem, 7.2vw, 4.8rem);
  font-weight: 900;
  color: white;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
  letter-spacing: 0.2em;
  margin: 0;
}

.coming-soon {
  position: absolute;
  bottom: 5vh;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: var(--text-dark);
  background: white;
  z-index: 10;
  padding: 2rem 3rem;
  border-radius: 15px;
  max-width: 600px;
  width: 90%;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  animation: fadeOut 5s ease-in-out forwards;
}

.coming-soon h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--primary-blue);
}

.coming-soon p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin: 0;
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  70% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    visibility: hidden;
  }
}



.aboutUs {
  font-size: 1.1rem;
  line-height: 1.8;
  text-align: center;
}

/* Main Content */
.main-content {
  min-height: 100vh;
}

/* Footer - Hidden on homepage */
.footer {
  display: none;
}

/* Show footer on other pages */
body.page-about .footer,
body.page-plans .footer,
body.page-team .footer,
body.page-contact .footer {
  display: block;
  background-color: var(--dark-bg);
  color: var(--text-light);
  padding: 2rem 0;
}

.footer-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  gap: 2rem;
}

.footer-left p {
  margin: 0;
}

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

.footer-center a {
  color: var(--text-light);
  text-decoration: none;
  margin: 0 1rem;
}

.footer-center a:hover {
  color: var(--primary-blue);
}

.footer-right {
  text-align: right;
}

.footer-right a {
  color: var(--primary-blue);
  text-decoration: none;
}

.footer-right a:hover {
  text-decoration: underline;
}

/* Mobile hero text */
@media (max-width: 768px) {
  .hero-text {
    bottom: 12vh;
  }
  
  .hero-title {
    font-size: clamp(2.16rem, 6vw, 3rem);
    letter-spacing: 0.1em;
  }
  
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 1rem;
  }
  
  .footer-right {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-text {
    bottom: 10vh;
  }
  
  .hero-title {
    font-size: clamp(1.8rem, 4.8vw, 2.4rem);
    letter-spacing: 0.05em;
  }
}

/* Plans Page */
.plans-section {
  padding: 5rem 0;
  background: var(--light-bg);
}

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

.plan-card {
  background: white;
  border-radius: 15px;
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow);
  position: relative;
  text-align: center;
  transition: transform 0.3s ease;
}

.plan-card:hover {
  transform: translateY(-5px);
}

.plan-card-popular {
  border: 3px solid var(--primary-blue);
  transform: scale(1.05);
}

.popular-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-blue);
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: bold;
}

.plan-title {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: var(--dark-bg);
}

.plan-price {
  margin-bottom: 2rem;
}

.plan-price .price {
  font-size: 3rem;
  font-weight: bold;
  color: var(--primary-blue);
}

.plan-price .period {
  font-size: 1.1rem;
  color: var(--gray);
}

.plan-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
}

.plan-features li {
  padding: 0.5rem 0;
  border-bottom: 1px solid #eee;
}

.plan-features li:last-child {
  border-bottom: none;
}

.plan-button {
  width: 100%;
  padding: 1rem;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}

.plan-button-free {
  background: var(--gray);
  color: white;
}

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

.plan-button-enterprise {
  background: var(--dark-bg);
  color: white;
}

.plan-button:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.plans-note {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background: white;
  border-radius: 15px;
  box-shadow: var(--shadow);
}

.plans-note p {
  font-size: 1.1rem;
  margin: 0;
  color: var(--dark-bg);
}

/* Mobile plans */
@media (max-width: 768px) {
  .plans-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .plan-card-popular {
    transform: none;
  }
  
  .coming-soon h2 {
    font-size: 2rem;
  }
  
  .coming-soon p {
    font-size: 1rem;
  }
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  animation: fadeIn 0.3s ease;
}

.modal.show {
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  animation: scaleIn 0.3s ease;
}

.modal-image {
  width: 100%;
  height: auto;
  display: block;
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 20px;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
}

.modal-close:hover {
  background: rgba(0, 0, 0, 0.9);
}

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

@keyframes scaleIn {
  from { 
    opacity: 0;
    transform: scale(0.8);
  }
  to { 
    opacity: 1;
    transform: scale(1);
  }
}

/* Make thumbnails clickable */
.card-image {
  cursor: pointer;
  transition: transform 0.2s ease;
}

.card-image:hover {
  transform: scale(1.05);
}

/* Team Page */
.team-hero {
  background: var(--dark-bg);
  color: var(--text-light);
  padding: 4rem 0 2rem;
  text-align: center;
}

.page-title {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.page-subtitle {
  font-size: 1.2rem;
  color: var(--primary-blue);
}

.team-grid {
  padding: 5rem 0;
}

.team-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
}


.team-card {
  background: white;
  border-radius: 15px;
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.card-header {
  display: grid;
  grid-template-columns: 150px 2fr auto;
  gap: 2rem;
  align-items: start;
  padding: 2.5rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.card-header:hover {
  background-color: #f8f9fa;
}

.card-image {
  width: 150px;
  height: 120px;
}

.card-image img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.card-info h2 {
  color: var(--dark-bg);
  font-size: 1.875rem;
  margin-bottom: 0.625rem;
}

.card-info h3 {
  color: var(--primary-blue);
  font-size: 1.2rem;
  margin-bottom: 1.25rem;
  line-height: 1.3;
}

.card-teaser {
  color: #666;
  font-size: 1.125rem;
  line-height: 1.4;
  margin: 0;
}

.expand-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: var(--primary-blue);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.expand-icon {
  color: white;
  font-size: 1.5rem;
  font-weight: bold;
  transition: transform 0.3s ease;
}

.team-card.expanded .expand-icon {
  transform: rotate(45deg);
}

.team-card.expanded .expand-button {
  background: #666;
}

.card-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.team-card.expanded .card-content {
  max-height: 1000px;
}

.card-content .member-bio {
  padding: 0 2rem 1rem;
}

.card-content .member-bio p {
  margin-bottom: 1rem;
  line-height: 1.8;
}

.member-expertise {
  padding: 0 2rem 2rem;
  border-top: 1px solid #eee;
  margin-top: 1rem;
}

.member-expertise h4 {
  color: var(--dark-bg);
  margin-bottom: 1rem;
  margin-top: 1rem;
}

.member-expertise ul {
  list-style: none;
  padding: 0;
}

.member-expertise li {
  padding: 0.5rem 0;
  padding-left: 1rem;
  position: relative;
}

.member-expertise li:before {
  content: "▶";
  position: absolute;
  left: 0;
  color: var(--primary-blue);
}

.team-member {
  padding: 5rem 0;
}

.member-card {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 3rem;
  align-items: start;
  background: white;
  padding: 3rem;
  border-radius: 10px;
  box-shadow: var(--shadow);
  max-width: 1000px;
  margin: 0 auto;
}

.member-image img {
  width: 100%;
  border-radius: 10px;
}

.member-info h2 {
  color: var(--dark-bg);
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.member-info h3 {
  color: var(--primary-blue);
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.member-bio p {
  margin-bottom: 1rem;
  line-height: 1.8;
}

.member-expertise {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid #eee;
}

.member-expertise h4 {
  color: var(--dark-bg);
  margin-bottom: 1rem;
}

.member-expertise ul {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 0.5rem;
}

.member-expertise li {
  padding-left: 1.5rem;
  position: relative;
}

.member-expertise li::before {
  content: "▸";
  position: absolute;
  left: 0;
  color: var(--primary-blue);
}

/* Contact Page */
.contact-hero {
  background: var(--dark-bg);
  color: var(--text-light);
  padding: 8rem 0 4rem;
  text-align: center;
}

.contact-content {
  padding: 5rem 0;
  max-width: 1000px;
  margin: 0 auto;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  padding: 0 2rem;
}

.contact-info h2,
.contact-form h2 {
  color: var(--dark-bg);
  margin-bottom: 2rem;
}

.contact-details {
  margin-top: 2rem;
}

.contact-item {
  margin-bottom: 2rem;
}

.contact-item h3 {
  color: var(--primary-blue);
  margin-bottom: 0.5rem;
}

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

.contact-item a:hover {
  text-decoration: underline;
}

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

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--dark-bg);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-blue);
}

.submit-button {
  background-color: var(--primary-blue);
  color: var(--text-light);
  padding: 0.75rem 2rem;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.submit-button:hover {
  background-color: var(--dark-blue);
}

/* 404 Page */
.error-page {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8rem 0 4rem;
}

.error-code {
  font-size: 8rem;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 1rem;
}

.error-title {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--dark-bg);
}

.error-message {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: var(--gray);
}

/* Responsive Design */
@media (max-width: 1200px) {
  .team-cards {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

@media (max-width: 992px) {
  .hero-text h1 {
    font-size: 2.5rem;
  }

  .aboutUs {
    font-size: 1rem;
  }

  nav ul {
    gap: 1rem;
  }

  .member-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .member-image {
    max-width: 300px;
    margin: 0 auto;
  }

  .card-header {
    grid-template-columns: 100px 1fr auto;
    gap: 1.25rem;
    padding: 2rem;
  }

  .card-image {
    width: 100px;
    height: 80px;
  }

  .card-info h2 {
    font-size: 1.5rem;
  }

  .card-info h3 {
    font-size: 1.125rem;
  }

  .card-teaser {
    font-size: 1rem;
  }

  .expand-button {
    width: 44px;
    height: 44px;
  }

  .expand-icon {
    font-size: 1.4rem;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }
}