/* CSS Variables */
:root {
  --primary: #000000;
  --primary-foreground: #FFFFFF;
  --secondary: #F59F0A;
  --secondary-foreground: #111827;
  --accent: #28DC94;
  --accent-foreground: #111827;
  --background: #FFFFFF;
  --foreground: #111827;
  --card: #FFFFFF;
  --card-foreground: #111827;
  --border: #E5E7EB;
  --input: #E5E7EB;
  --ring: #000000;
  --muted: #F3F4F6;
  --muted-foreground: #6B7280;
  --font-family: 'Roboto', sans-serif;
  --radius: 0.75rem;
}

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

body, h1, h2, h3, h4, h5, h6, p, ul, ol, li, figure, blockquote, dl, dd {
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-family);
  line-height: 1.6;
  color: var(--foreground);
  background: var(--background);
  overflow-wrap: break-word;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* Utility Classes */
.hidden {
  display: none !important;
}

.text-primary {
  color: var(--primary);
}

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

.text-muted {
  color: var(--muted-foreground);
}

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

.text-lg {
  font-size: 1.125rem;
}

.text-sm {
  font-size: 0.875rem;
}

.font-semibold {
  font-weight: 600;
}

.font-medium {
  font-weight: 500;
}

.mb-4 {
  margin-bottom: 1rem;
}

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

/* Grid Layouts */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

@media (max-width: 768px) {
  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }
}

/* Button Styles */
.btn-primary {
  background: var(--primary);
  color: var(--primary-foreground);
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  border: none;
  font-weight: 500;
  cursor: pointer;
  display: inline-block;
  text-align: center;
  transition: all 0.2s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.btn-primary:active {
  transform: translateY(1px);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.btn-outline {
  background: transparent;
  color: var(--foreground);
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  font-weight: 500;
  cursor: pointer;
  display: inline-block;
  text-align: center;
  transition: all 0.2s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-outline:hover {
  background: var(--primary);
  color: var(--primary-foreground);
  border-color: var(--primary);
  transform: translateY(-1px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.btn-outline:active {
  transform: translateY(1px);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.btn-outline-white {
  background: transparent;
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.3);
  font-weight: 500;
  cursor: pointer;
  display: inline-block;
  text-align: center;
  transition: all 0.2s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-outline-white:hover {
  background: #fff;
  color: var(--primary);
  border-color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.btn-outline-white:active {
  transform: translateY(1px);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Form Styles */
.form-input {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-family);
  font-size: 1rem;
  transition: border-color 0.2s ease;
}

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

/* Success Message */
.success-message {
  background: #f0f9ff;
  border: 1px solid #0ea5e9;
  color: #0c4a6e;
  padding: 1.5rem;
  border-radius: var(--radius);
  margin-top: 1rem;
}

.success-content {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.success-icon {
  font-size: 1.5rem;
}

.success-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.success-description {
  font-size: 0.875rem;
  .8;
}

/* Icon Styles */
.icon-box {
  width: 3rem;
  height: 3rem;
  background: var(--muted);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.icon-sm {
  width: 1rem;
  height: 1rem;
}

.icon-md {
  width: 1.5rem;
  height: 1.5rem;
}

.icon-lg {
  width: 2rem;
  height: 2rem;
}

.icon-xl {
  width: 3rem;
  height: 3rem;
}

/* Header and Navigation */
.header {
  background: var(--background);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
}

.logo-link {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 2.5rem;
  width: auto;
}

.nav-desktop {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-link {
  font-weight: 500;
  transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary);
}

.auroranovae_mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
}

.auroranovae_mobile-menu {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem 0;
  border-top: 1px solid var(--border);
}

.mobile-nav-link {
  padding: 0.5rem 0;
  font-weight: 500;
  text-align: center;
}

@media (max-width: 768px) {
  .nav-desktop {
    display: none;
  }
  
  .auroranovae_mobile-menu-toggle {
    display: block;
  }
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  padding: 7rem 0;
}

.hero-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-description {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  .9;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-description {
    font-size: 1rem;
  }
  
  .hero-actions {
    flex-direction: column;
    align-items: center;
  }
}

/* Page Header */
.page-header {
  padding: 4rem 0;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.page-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.page-description {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  max-width: 600px;
  margin: 0 auto;
}

/* Section Styles */
section {
  padding: 7rem 0;
  border-bottom: 1px solid var(--border);
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.section-description {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  max-width: 600px;
  margin: 0 auto;
}

/* Feature Cards */
.feature-card {
  text-align: center;
  
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.feature-card.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.feature-card:nth-child(1) { transition-delay: 0ms; }
.feature-card:nth-child(2) { transition-delay: 100ms; }
.feature-card:nth-child(3) { transition-delay: 200ms; }
.feature-card:nth-child(4) { transition-delay: 300ms; }

.feature-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.feature-description {
  color: var(--muted-foreground);
}

/* Pricing Cards */
.pricing-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.pricing-card.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.pricing-card:nth-child(1) { transition-delay: 0ms; }
.pricing-card:nth-child(2) { transition-delay: 100ms; }
.pricing-card:nth-child(3) { transition-delay: 200ms; }

.pricing-card.featured {
  border-color: var(--primary);
  transform: scale(1.05);
}

.pricing-header {
  margin-bottom: 2rem;
}

.pricing-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.pricing-description {
  color: var(--muted-foreground);
}

.pricing-features {
  margin-bottom: 2rem;
}

.pricing-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

/* Service Cards */
.service-card {
  background: var(--card);
  border-radius: var(--radius);
  overflow: hidden;
  
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.service-card.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.service-card:nth-child(1) { transition-delay: 0ms; }
.service-card:nth-child(2) { transition-delay: 100ms; }
.service-card:nth-child(3) { transition-delay: 200ms; }

.service-image {
  height: 200px;
  overflow: hidden;
}

.card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-content {
  padding: 2rem;
}

.service-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.service-description {
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
}

.service-features {
  margin-bottom: 2rem;
}

.service-features li {
  padding: 0.25rem 0;
  color: var(--muted-foreground);
}

/* Team Cards */
.team-card {
  text-align: center;
  
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.team-card.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.team-card:nth-child(1) { transition-delay: 0ms; }
.team-card:nth-child(2) { transition-delay: 100ms; }
.team-card:nth-child(3) { transition-delay: 200ms; }

.team-icon {
  margin-bottom: 1rem;
}

.team-name {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.team-role {
  color: var(--muted-foreground);
  margin-bottom: 1rem;
}

/* FAQ Styles */
.faq-preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.faq-preview-item {
  
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.faq-preview-item.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.faq-preview-item:nth-child(1) { transition-delay: 0ms; }
.faq-preview-item:nth-child(2) { transition-delay: 100ms; }
.faq-preview-item:nth-child(3) { transition-delay: 200ms; }

.faq-question {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.faq-answer {
  color: var(--muted-foreground);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
  
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.faq-item.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.faq-item:nth-child(1) { transition-delay: 0ms; }
.faq-item:nth-child(2) { transition-delay: 100ms; }
.faq-item:nth-child(3) { transition-delay: 200ms; }
.faq-item:nth-child(4) { transition-delay: 300ms; }
.faq-item:nth-child(5) { transition-delay: 400ms; }
.faq-item:nth-child(6) { transition-delay: 500ms; }
.faq-item:nth-child(7) { transition-delay: 600ms; }
.faq-item:nth-child(8) { transition-delay: 700ms; }

.faq-question[data-faq-toggle] {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  cursor: pointer;
  transition: color 0.2s ease;
}

.faq-question[data-faq-toggle]:hover {
  color: var(--primary);
}

.faq-question h3 {
  font-size: 1.125rem;
  font-weight: 600;
}

.faq-icon {
  transition: transform 0.2s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 0 1.5rem 0;
  color: var(--muted-foreground);
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
}

/* Newsletter Section */
.newsletter-section {
  background: var(--muted);
}

.newsletter-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.newsletter-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.newsletter-description {
  color: var(--muted-foreground);
  font-size: 1.125rem;
}

.newsletter-form-inner {
  display: flex;
  gap: 1rem;
}

.newsletter-input {
  flex: 1;
  padding: 0.75rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-family);
}

@media (max-width: 768px) {
  .newsletter-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .newsletter-form-inner {
    flex-direction: column;
  }
}

/* About Preview Section */
.about-preview-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-preview-description {
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
}

.about-image {
  width: 100%;
  border-radius: var(--radius);
}

@media (max-width: 768px) {
  .about-preview-content {
    grid-template-columns: 1fr;
  }
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
}

.cta-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.cta-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.cta-description {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  .9;
}

.cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .cta-title {
    font-size: 2rem;
  }
  
  .cta-actions {
    flex-direction: column;
    align-items: center;
  }
}

/* Footer */
footer {
  background: var(--primary);
  color: #fff;
  padding: 4rem 0 2rem;
}

footer a {
  color: rgba(255, 255, 255, 0.85);
  transition: color 0.2s ease;
}

footer a:hover {
  color: #fff;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
}

.footer-logo {
  height: 2rem;
  width: auto;
  margin-bottom: 1rem;
  filter: brightness(0) invert(1);
}

.footer-tagline {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
}

.footer-links-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.footer-heading {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-link {
  display: block;
  padding: 0.25rem 0;
  font-size: 0.875rem;
}

.footer-contact-item {
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 2rem;
  text-align: center;
}

.footer-copyright {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .footer-links-group {
    grid-template-columns: 1fr;
  }
}

/* Contact Page Styles */
.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.auroranovae_contact-form-container {
  background: var(--card);
  padding: 2rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.auroranovae_contact-form-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.auroranovae_contact-form-description {
  color: var(--muted-foreground);
  margin-bottom: 2rem;
}

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

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

.contact-info-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.contact-info-description {
  color: var(--muted-foreground);
  margin-bottom: 2rem;
}

.contact-info-items {
  margin-bottom: 2rem;
}

.contact-info-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

.contact-info-content {
  flex: 1;
}

.contact-info-label {
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.contact-info-value {
  margin-bottom: 0.25rem;
}

.contact-info-note {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.business-hours {
  background: var(--muted);
  padding: 1.5rem;
  border-radius: var(--radius);
}

.business-hours-title {
  font-weight: 600;
  margin-bottom: 1rem;
}

.business-hours-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}

.business-hours-day {
  font-weight: 500;
}

@media (max-width: 768px) {
  .contact-content {
    grid-template-columns: 1fr;
  }
}

/* Contact Option Cards */
.contact-option-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.contact-option-card.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.contact-option-card:nth-child(1) { transition-delay: 0ms; }
.contact-option-card:nth-child(2) { transition-delay: 100ms; }
.contact-option-card:nth-child(3) { transition-delay: 200ms; }

.contact-option-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.contact-option-description {
  color: var(--muted-foreground);
  margin-bottom: 2rem;
}

/* Services Page Styles */
.services-overview {
  padding: 4rem 0;
}

.detailed-services {
  padding: 4rem 0;
}

.service-detail {
  margin-bottom: 4rem;
}

.service-detail.reverse .service-detail-content {
  flex-direction: row-reverse;
}

.service-detail-content {
  display: flex;
  gap: 3rem;
  align-items: center;
}

.service-detail-text {
  flex: 1;
}

.service-detail-image {
  flex: 1;
}

.detail-image {
  width: 100%;
  border-radius: var(--radius);
}

.service-detail-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.service-detail-description {
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
}

.service-detail-features {
  margin-bottom: 2rem;
}

.service-detail-features li {
  padding: 0.25rem 0;
  color: var(--muted-foreground);
}

@media (max-width: 768px) {
  .service-detail-content,
  .service-detail.reverse .service-detail-content {
    flex-direction: column;
  }
}

/* Package Cards */
.package-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.package-card.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.package-card:nth-child(1) { transition-delay: 0ms; }
.package-card:nth-child(2) { transition-delay: 100ms; }
.package-card:nth-child(3) { transition-delay: 200ms; }

.package-card.featured {
  border-color: var(--primary);
  transform: scale(1.05);
}

.package-header {
  margin-bottom: 2rem;
}

.package-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.package-description {
  color: var(--muted-foreground);
}

.package-features {
  margin-bottom: 2rem;
  text-align: left;
}

.package-features h4 {
  font-weight: 600;
  margin-bottom: 1rem;
}

.package-features li {
  padding: 0.25rem 0;
  color: var(--muted-foreground);
}

/* About Page Styles */
.mission-section {
  text-align: center;
  padding: 4rem 0;
}

.mission-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
}

.mission-statement {
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 2rem;
  color: var(--primary);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.mission-description {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  max-width: 600px;
  margin: 0 auto 1rem;
}

.story-section {
  padding: 4rem 0;
}

.story-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.story-paragraph {
  margin-bottom: 1.5rem;
  color: var(--muted-foreground);
}

@media (max-width: 768px) {
  .story-content {
    grid-template-columns: 1fr;
  }
}

/* Value Cards */
.value-card {
  text-align: center;
  
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.value-card.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.value-card:nth-child(1) { transition-delay: 0ms; }
.value-card:nth-child(2) { transition-delay: 100ms; }
.value-card:nth-child(3) { transition-delay: 200ms; }

.value-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.value-description {
  color: var(--muted-foreground);
}

/* Team Member Cards */
.team-member-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.team-member-card.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.team-member-card:nth-child(1) { transition-delay: 0ms; }
.team-member-card:nth-child(2) { transition-delay: 100ms; }
.team-member-card:nth-child(3) { transition-delay: 200ms; }

.team-member-icon {
  margin-bottom: 1rem;
}

.team-member-name {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.team-member-role {
  color: var(--primary);
  font-weight: 500;
  margin-bottom: 1rem;
}

.team-member-description {
  color: var(--muted-foreground);
}

/* Achievement Cards */
.achievement-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.achievement-card.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.achievement-card:nth-child(1) { transition-delay: 0ms; }
.achievement-card:nth-child(2) { transition-delay: 100ms; }
.achievement-card:nth-child(3) { transition-delay: 200ms; }
.achievement-card:nth-child(4) { transition-delay: 300ms; }

.achievement-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.achievement-description {
  color: var(--muted-foreground);
}

/* Location Section */
.location-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

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

.location-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  align-items: flex-start;
}

.location-label {
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.location-value {
  color: var(--muted-foreground);
}

@media (max-width: 768px) {
  .location-content {
    grid-template-columns: 1fr;
  }
}

/* Portfolio Page Styles */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.portfolio-card {
  background: var(--card);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.portfolio-card.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.portfolio-card:nth-child(1) { transition-delay: 0ms; }
.portfolio-card:nth-child(2) { transition-delay: 100ms; }
.portfolio-card:nth-child(3) { transition-delay: 200ms; }
.portfolio-card:nth-child(4) { transition-delay: 300ms; }
.portfolio-card:nth-child(5) { transition-delay: 400ms; }
.portfolio-card:nth-child(6) { transition-delay: 500ms; }

.portfolio-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.project-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.portfolio-overlay {
  position: absolute;
  top: 1rem;
  right: 1rem;
}

.portfolio-category {
  background: var(--primary);
  color: var(--primary-foreground);
  padding: 0.25rem 0.75rem;
  border-radius: 1rem;
  font-size: 0.875rem;
  font-weight: 500;
}

.portfolio-content {
  padding: 2rem;
}

.portfolio-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.portfolio-description {
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
}

.portfolio-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.portfolio-feature {
  background: var(--muted);
  color: var(--muted-foreground);
  padding: 0.25rem 0.75rem;
  border-radius: 1rem;
  font-size: 0.875rem;
}

/* Highlight Cards */
.highlight-card {
  text-align: center;
  
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.highlight-card.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.highlight-card:nth-child(1) { transition-delay: 0ms; }
.highlight-card:nth-child(2) { transition-delay: 100ms; }
.highlight-card:nth-child(3) { transition-delay: 200ms; }

.highlight-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.highlight-description {
  color: var(--muted-foreground);
}

/* Process Steps */
.process-steps {
  display: grid;
  gap: 2rem;
}

.process-step {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.process-step.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.process-step:nth-child(1) { transition-delay: 0ms; }
.process-step:nth-child(2) { transition-delay: 100ms; }
.process-step:nth-child(3) { transition-delay: 200ms; }
.process-step:nth-child(4) { transition-delay: 300ms; }

.process-number {
  background: var(--primary);
  color: var(--primary-foreground);
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.process-content {
  flex: 1;
}

.process-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.process-description {
  color: var(--muted-foreground);
}

/* FAQ CTA */
.faq-cta {
  background: var(--muted);
  text-align: center;
}

.faq-cta-content {
  max-width: 600px;
  margin: 0 auto;
}

.faq-cta-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.faq-cta-description {
  color: var(--muted-foreground);
  margin-bottom: 2rem;
}

.faq-cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .faq-cta-actions {
    flex-direction: column;
    align-items: center;
  }
}

/* Legal Content */
.legal-content {
  padding: 4rem 0;
}

.legal-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.legal-updated {
  color: var(--muted-foreground);
  margin-bottom: 3rem;
  font-style: italic;
}

.legal-section {
  margin-bottom: 3rem;
}

.legal-section h2 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--primary);
}

.legal-section h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  margin-top: 2rem;
}

.legal-section p {
  margin-bottom: 1rem;
  color: var(--muted-foreground);
  line-height: 1.7;
}

.legal-section ul {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}

.legal-section li {
  margin-bottom: 0.5rem;
  color: var(--muted-foreground);
  list-style: disc;
}

.contact-details {
  background: var(--muted);
  padding: 1.5rem;
  border-radius: var(--radius);
  margin: 1rem 0;
}

/* Cookie Table */
.cookie-table {
  margin: 2rem 0;
  overflow-x: auto;
}

.cookie-table table {
  width: 100%;
  border-collapse: collapse;
  background: var(--card);
  border-radius: var(--radius);
  overflow: hidden;
}

.cookie-table th,
.cookie-table td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.cookie-table th {
  background: var(--muted);
  font-weight: 600;
}

.cookie-table td {
  color: var(--muted-foreground);
}

/* Cookie Consent Styles */
.auroranovae_cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--card);
  border-top: 1px solid var(--border);
  z-index: 1000;
  padding: 1rem 0;
  box-shadow: 0 -4px 6px rgba(0, 0, 0, 0.1);
}

.auroranovae_cookie-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.auroranovae_cookie-banner-text {
  flex: 1;
}

.auroranovae_cookie-banner-text p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.auroranovae_cookie-banner-actions {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
}

.auroranovae_cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1001;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.auroranovae_cookie-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  cursor: pointer;
}

.auroranovae_cookie-modal-content {
  background: var(--card);
  border-radius: var(--radius);
  padding: 2rem;
  max-width: 500px;
  width: 100%;
  position: relative;
  z-index: 1;
}

.cookie-toggles {
  margin: 2rem 0;
}

.auroranovae_cookie-toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}

.auroranovae_cookie-toggle-row:last-child {
  border-bottom: none;
}

.auroranovae_cookie-modal-actions {
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
}

@media (max-width: 768px) {
  .auroranovae_cookie-banner-inner {
    flex-direction: column;
    text-align: center;
  }
  
  .auroranovae_cookie-banner-actions {
    width: 100%;
    justify-content: center;
  }
  
  .auroranovae_cookie-modal-actions {
    flex-direction: column;
  }
}

/* === CLASS ALIAS FIXES (injected by engine) === */
.hero-text { /* alias for .hero-content */ }
.hero-text {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

/* === BASELINE SAFETY CSS (injected by engine) === */

/* Ensure .hidden works consistently even with ID-specific overrides */
.hidden { display: none !important; }

/* Prevent content overflow breaking layout */
img, video, iframe { max-width: 100%; height: auto; }
* { box-sizing: border-box; }

/* Ensure container has responsive padding */
.container { width: 100%; max-width: 1200px; margin-left: auto; margin-right: auto; padding-left: 1rem; padding-right: 1rem; }

/* Prevent flex/grid children from overflowing */
.grid-2, .grid-3, .grid-4 { display: grid; gap: 1.5rem; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* Responsive grid fallbacks */
@media (max-width: 768px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

/* Ensure forms don't break layout */
.form-input, input[type="text"], input[type="email"], input[type="tel"], textarea, select {
  width: 100%;
  max-width: 100%;
}

/* Success message styling */
.success-message {
  margin-top: 1rem;
  padding: 1rem;
  background: #ecfdf5;
  border: 1px solid #6ee7b7;
  border-radius: 0.5rem;
  color: #065f46;
  text-align: center;
}

/* Stacking context for hero sections — prevents z-index:-1 children from going behind the page */
.hero, .hero-section, .page-header, .cta, .cta-section { isolation: isolate; position: relative; }

/* Desktop nav injected by engine — show on desktop, hide on mobile */
.nav-menu { display: flex; align-items: center; gap: 1.5rem; }
.nav-menu .nav-link { text-decoration: none; color: var(--foreground, #1f2937); font-weight: 500; font-size: 0.95rem; transition: color 0.2s; }
.nav-menu .nav-link:hover { color: var(--primary, #2563eb); }
@media (max-width: 768px) {
  .nav-menu { display: none !important; }
}

/* Fixed header body padding safety */
body { min-height: 100vh; }

/* Prevent long words breaking layout */
h1, h2, h3, h4, p, li, td, th { overflow-wrap: break-word; word-wrap: break-word; }

/* === END BASELINE SAFETY CSS === */

/* Cookie banner visibility rules */
#auroranovae_cookie-banner.hidden, #cookie-consent-banner.hidden { display: none !important; }
#auroranovae_cookie-banner:not(.hidden), #cookie-consent-banner:not(.hidden) { display: block !important; }
#auroranovae_cookie-modal.hidden { display: none !important; }
.hidden { display: none !important; }
