/* Root Variables - Color Scheme Triad */
:root {
  --primary: #7928ca;
  --primary-dark: #5a1e96;
  --primary-light: #9c4dff;
  
  --secondary: #ff2d55;
  --secondary-dark: #d91c42;
  --secondary-light: #ff6b8a;
  
  --tertiary: #00b8d9;
  --tertiary-dark: #008eb0;
  --tertiary-light: #47daff;
  
  --bg-light: #f8f9fa;
  --bg-dark: #121212;
  --bg-gradient: linear-gradient(135deg, rgba(121, 40, 202, 0.05), rgba(0, 184, 217, 0.05));
  
  --text-dark: #2c2c2c;
  --text-light: #ffffff;
  --text-muted: #6c757d;
  
  --border-color: rgba(121, 40, 202, 0.2);
  --card-bg: rgba(255, 255, 255, 0.95);
  --card-shadow: 0 8px 32px rgba(31, 38, 135, 0.15);
  
  --success: #00d68f;
  --warning: #ffaa00;
  --error: #ff3d71;
  
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
  
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 3rem;
  --spacing-xl: 5rem;
}

/* Base Styles */
html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Source Sans Pro', sans-serif;
  color: var(--text-dark);
  background-color: var(--bg-light);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
}

a {
  color: var(--primary);
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--primary-dark);
  text-decoration: none;
}

.read-more {
  display: inline-block;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
  position: relative;
  padding-bottom: 2px;
  margin-top: 0.5rem;
}

.read-more::after {
  content: '';
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--primary);
  transform-origin: bottom right;
  transition: transform var(--transition-normal);
}

.read-more:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

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

.section {
  padding: 4rem 2rem;
}

/* Utilities */
.text-center {
  text-align: center !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mt-0 {
  margin-top: 0 !important;
}

.mb-1 {
  margin-bottom: 0.5rem !important;
}

.mt-1 {
  margin-top: 0.5rem !important;
}

.mb-2 {
  margin-bottom: 1rem !important;
}

.mt-2 {
  margin-top: 1rem !important;
}

.mb-3 {
  margin-bottom: 1.5rem !important;
}

.mt-3 {
  margin-top: 1.5rem !important;
}

.mb-4 {
  margin-bottom: 2rem !important;
}

.mt-4 {
  margin-top: 2rem !important;
}

.mb-5 {
  margin-bottom: 3rem !important;
}

.mt-5 {
  margin-top: 3rem !important;
}

/* Buttons */
.button {
  transition: all var(--transition-fast);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

.button.is-primary:hover,
.button.is-primary:focus {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
}

.button.is-outlined {
  border: 2px solid var(--primary);
  color: var(--primary);
  background: transparent;
}

.button.is-outlined:hover,
.button.is-outlined:focus {
  background-color: var(--primary);
  color: white;
}

.pulse-button {
  animation: pulse 2s infinite;
  position: relative;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(121, 40, 202, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(121, 40, 202, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(121, 40, 202, 0);
  }
}

.glow-button {
  position: relative;
  overflow: hidden;
}

.glow-button:after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0) 100%);
  transform: rotate(30deg);
  transition: all 0.5s;
  opacity: 0;
}

.glow-button:hover:after {
  animation: glow 1.5s ease-in-out;
}

@keyframes glow {
  0% {
    transform: rotate(30deg) translateX(-300%);
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  100% {
    transform: rotate(30deg) translateX(300%);
    opacity: 0;
  }
}

/* Header & Navigation */
.header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  transition: all var(--transition-normal);
}

.navbar {
  transition: all var(--transition-normal);
  background-color: transparent;
}

.navbar.is-transparent {
  background-color: transparent;
}

.navbar.scrolled {
  background-color: rgba(18, 18, 18, 0.95);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.navbar-item {
  font-weight: 600;
  font-size: 1rem;
  color: var(--text-light);
  padding: 1.5rem 1rem;
}

.navbar-item:hover {
  color: var(--primary-light);
  background-color: transparent !important;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-light) !important;
  letter-spacing: 1px;
}

/* Hero Section */
.hero {
  position: relative;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  color: var(--text-light);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(121, 40, 202, 0.7), rgba(0, 184, 217, 0.7));
  z-index: 0;
}

.hero-body {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  min-height: 100vh;
}

.hero-text {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  max-width: 650px;
}

.hero .title,
.hero .subtitle,
.hero-text {
  color: var(--text-light) !important;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.navbar-brand, .navbar-tabs {
  align-items: center !important;
}

.scroll-arrow {
  display: block;
  width: 30px;
  height: 30px;
  border-bottom: 3px solid var(--text-light);
  border-right: 3px solid var(--text-light);
  transform: rotate(45deg);
  animation: scroll-down 2s infinite;
  opacity: 0.7;
}

@keyframes scroll-down {
  0% {
    transform: rotate(45deg) translate(-10px, -10px);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: rotate(45deg) translate(10px, 10px);
    opacity: 0;
  }
}

/* Vision Section */
.vision-section {
  background: var(--bg-gradient);
  padding: var(--spacing-lg) 0;
}

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

.vision-image-container {
  margin: 2rem 0;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: var(--card-shadow);
  text-align: center;
}

.vision-image-container img {
  width: 100%;
  transition: transform var(--transition-slow);
  object-fit: cover;
  height: auto;
}

.vision-image-container:hover img {
  transform: scale(1.05);
}

.vision-values {
  margin-top: 3rem;
}

.value-card {
  background-color: var(--card-bg);
  padding: 2rem;
  border-radius: 10px;
  height: 100%;
  box-shadow: var(--card-shadow);
  transition: transform var(--transition-normal);
  text-align: center;
}

.value-card:hover {
  transform: translateY(-10px);
}

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

/* Projects Section */
.projects-section {
  background-color: var(--bg-light);
  padding: var(--spacing-lg) 0;
}

.card {
  height: 100%;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: none;
  border-radius: 10px;
  box-shadow: var(--card-shadow);
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(31, 38, 135, 0.2);
}

.card-image {
  width: 100%;
  overflow: hidden;
}

.image-container {
  overflow: hidden;
  position: relative;
  text-align: center;
  height: 250px;
}

.image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-normal);
}

.card:hover .image-container img {
  transform: scale(1.1);
}

.card-content {
  padding: 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
}

.card-content h3 {
  color: var(--primary);
  margin-bottom: 1rem;
}

/* Behind the Scenes Section */
.behind-scenes-section {
  background: linear-gradient(135deg, rgba(0, 184, 217, 0.1), rgba(121, 40, 202, 0.1));
  padding: var(--spacing-lg) 0;
}

.timeline {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  width: 2px;
  background-color: var(--primary-light);
  top: 0;
  bottom: 0;
  left: 0;
  margin-left: 20px;
}

.timeline-item {
  padding: 10px 40px;
  position: relative;
  background-color: inherit;
  margin-bottom: 3rem;
}

.timeline-marker {
  position: absolute;
  background-color: var(--primary);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  left: 0;
  top: 15px;
  z-index: 1;
}

.timeline-content {
  padding: 1.5rem;
  background-color: var(--card-bg);
  border-radius: 10px;
  box-shadow: var(--card-shadow);
  text-align: center;
}

.timeline-content h3 {
  color: var(--primary);
  margin-bottom: 1rem;
}

.timeline-content img {
  margin: 1.5rem auto;
  border-radius: 10px;
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* Pricing Section */
.pricing-section {
  background-color: var(--bg-light);
  padding: var(--spacing-lg) 0;
}

.pricing-card {
  background-color: var(--card-bg);
  padding: 1rem;
  text-align: center;
  border-radius: 10px;
  box-shadow: var(--card-shadow);
  transition: transform var(--transition-normal);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pricing-card.featured {
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  color: var(--text-light);
  transform: scale(1.05);
  z-index: 2;
}

.pricing-card.featured:hover {
  transform: scale(1.08);
}

.pricing-card.featured h3,
.pricing-card.featured .price,
.pricing-card.featured .period {
  color: var(--text-light);
}

.pricing-card:hover {
  transform: translateY(-10px);
}

.pricing-card h3 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  color: var(--primary);
}

.pricing-card .price {
  font-size: 3rem;
  font-weight: 700;
  color: var(--text-dark);
}

.pricing-card .period {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.pricing-card .features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
  text-align: center;
}

.pricing-card .features li {
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.pricing-card.featured .features li {
  border-bottom-color: rgba(255, 255, 255, 0.2);
}

.additional-options {
  margin-top: 4rem;
}

.option-card {
  padding: 1.5rem;
  background-color: var(--card-bg);
  border-radius: 10px;
  box-shadow: var(--card-shadow);
  transition: transform var(--transition-normal);
  height: 100%;
  text-align: center;
}

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

.option-card h4 {
  font-size: 1.3rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.option-card .price {
  font-weight: 700;
  color: var(--text-dark);
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

/* Insights Section */
.insights-section {
  background: linear-gradient(135deg, rgba(121, 40, 202, 0.05), rgba(255, 45, 85, 0.05));
  padding: var(--spacing-lg) 0;
}

.insight-card {
  margin-bottom: 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.insight-card .card-content {
  padding: 2rem;
}

.insight-card h3 {
  color: var(--primary);
  margin-bottom: 1rem;
}

/* Partners Section */
.partners-section {
  background-color: var(--bg-light);
  padding: var(--spacing-lg) 0;
}

.partners-intro {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 1.2rem;
}

.partners-logos {
  margin-bottom: 3rem;
}

.partner-card {
  text-align: center;
  padding: 1.5rem;
  background-color: var(--card-bg);
  border-radius: 10px;
  box-shadow: var(--card-shadow);
  transition: all var(--transition-normal);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.partner-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(31, 38, 135, 0.15);
}

.partner-card img {
  max-width: 150px;
  height: auto;
  margin-bottom: 1.5rem;
  object-fit: contain;
  max-height: 100px;
}

.partner-card h3 {
  font-size: 1.2rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.partner-with-us {
  text-align: center;
  background-color: var(--card-bg);
  padding: 2rem;
  border-radius: 10px;
  box-shadow: var(--card-shadow);
}

.partner-with-us h3 {
  color: var(--primary);
  margin-bottom: 1rem;
}

.partner-with-us p {
  margin-bottom: 1.5rem;
}

/* Sustainability Section */
.sustainability-section {
  background: linear-gradient(135deg, rgba(0, 184, 217, 0.1), rgba(0, 214, 143, 0.1));
  padding: var(--spacing-lg) 0;
}

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

.sustainability-content img {
  width: 100%;
  border-radius: 10px;
  margin: 2rem 0;
  box-shadow: var(--card-shadow);
}

.sustainability-initiatives {
  margin-top: 3rem;
}

.initiative-card {
  background-color: var(--card-bg);
  padding: 2rem;
  border-radius: 10px;
  box-shadow: var(--card-shadow);
  height: 100%;
  transition: transform var(--transition-normal);
  text-align: center;
}

.initiative-card:hover {
  transform: translateY(-10px);
}

.initiative-card h3 {
  color: var(--primary);
  margin-bottom: 1rem;
}

/* Clientele Section */
.clientele-section {
  background-color: var(--bg-light);
  padding: var(--spacing-lg) 0;
}

.clientele-intro {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 1.2rem;
}

.testimonials-carousel {
  margin-bottom: 3rem;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: var(--card-bg);
  padding: 2rem;
  border-radius: 10px;
  box-shadow: var(--card-shadow);
  margin-bottom: 2rem;
  text-align: center;
}

.testimonial-card img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1.5rem;
}

.testimonial-content p {
  font-style: italic;
  margin-bottom: 1.5rem;
}

.testimonial-content h4 {
  color: var(--primary);
  margin-bottom: 0.3rem;
}

.testimonial-title {
  font-weight: 600;
  color: var(--text-muted);
}

.community-stats {
  margin-top: 3rem;
}

.stat-card {
  background-color: var(--card-bg);
  padding: 2rem;
  border-radius: 10px;
  box-shadow: var(--card-shadow);
  text-align: center;
  height: 100%;
}

.stat-card h3 {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

/* Careers Section */
.careers-section {
  background: linear-gradient(135deg, rgba(255, 45, 85, 0.05), rgba(121, 40, 202, 0.05));
  padding: var(--spacing-lg) 0;
}

.careers-intro {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 1.2rem;
}

.current-openings {
  margin-bottom: 3rem;
}

.job-card {
  background-color: var(--card-bg);
  padding: 2rem;
  border-radius: 10px;
  box-shadow: var(--card-shadow);
  margin-bottom: 1.5rem;
  transition: transform var(--transition-normal);
  text-align: center;
}

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

.job-card h4 {
  font-size: 1.3rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.job-location {
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.benefits {
  margin-bottom: 3rem;
}

.benefit-item {
  background-color: var(--card-bg);
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: var(--card-shadow);
  height: 100%;
  transition: transform var(--transition-normal);
  text-align: center;
}

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

.benefit-item h4 {
  font-size: 1.2rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

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

/* Contact Section */
.contact-section {
  background-color: var(--bg-light);
  padding: var(--spacing-lg) 0;
}

.contact-intro {
  text-align: center;
  margin-bottom: 2rem;
}

.contact-form {
  background-color: var(--card-bg);
  padding: 2rem;
  border-radius: 10px;
  box-shadow: var(--card-shadow);
  margin-bottom: 2rem;
}

.contact-form .field {
  margin-bottom: 1.5rem;
}

.contact-form .label {
  color: var(--text-dark);
  font-weight: 600;
}

.contact-form .input,
.contact-form .textarea,
.contact-form .select select {
  border-radius: 5px;
  border: 1px solid var(--border-color);
  transition: all var(--transition-fast);
}

.contact-form .input:focus,
.contact-form .textarea:focus,
.contact-form .select select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(121, 40, 202, 0.2);
}

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

.location-card {
  background-color: var(--card-bg);
  border-radius: 10px;
  box-shadow: var(--card-shadow);
  overflow: hidden;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.location-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.location-details {
  padding: 2rem;
  text-align: center;
}

.location-details h4 {
  font-size: 1.3rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

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

.social-links .button {
  margin: 0.5rem;
  color: var(--primary);
  border-color: var(--primary);
}

.social-links .button:hover {
  background-color: var(--primary);
  color: var(--text-light);
}

/* Success Page */
.success-page {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem;
}

.success-content {
  background-color: var(--card-bg);
  padding: 3rem;
  border-radius: 10px;
  box-shadow: var(--card-shadow);
  max-width: 600px;
}

.success-icon {
  color: var(--success);
  font-size: 5rem;
  margin-bottom: 2rem;
}

/* Footer */
.footer {
  background-color: var(--bg-dark);
  color: var(--text-light);
  padding: 4rem 2rem 2rem;
}

.footer-title {
  color: var(--primary-light);
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  font-family: 'Playfair Display', serif;
}

.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer ul li {
  margin-bottom: 0.7rem;
}

.footer a {
  color: var(--text-light);
  transition: color var(--transition-fast);
}

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

.social-links {
  margin-top: 1.5rem;
}

.social-links a {
  display: inline-block;
  margin-right: 1.5rem;
  font-weight: 600;
  color: var(--text-light);
  transition: color var(--transition-fast);
}

.social-links a:hover {
  color: var(--primary-light);
}

.copyright {
  text-align: center;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
}

/* Privacy and Terms Pages */
.privacy-page,
.terms-page {
  padding-top: 100px;
}

/* Responsive */
@media screen and (max-width: 1023px) {
  .navbar-menu {
    background-color: var(--bg-dark);
  }

  .timeline::before {
    left: 31px;
  }

  .timeline-item {
    padding-left: 70px;
  }

  .pricing-card.featured {
    transform: none;
  }

  .pricing-card.featured:hover {
    transform: translateY(-10px);
  }
}

@media screen and (max-width: 768px) {
  .section {
    padding: 3rem 1rem;
  }

  .hero-body {
    padding: 2rem 1rem;
  }

  .hero .title {
    font-size: 2.5rem !important;
  }

  .hero .subtitle {
    font-size: 1.5rem !important;
  }

  .hero-text {
    font-size: 1rem;
  }

  .testimonial-card {
    flex-direction: column;
  }

  .location-card {
    flex-direction: column;
  }
}

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

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

/* Scroll Dependent Animations */
.scroll-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.scroll-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Resources Section */
.resources-section {
  background: linear-gradient(135deg, rgba(121, 40, 202, 0.05), rgba(0, 184, 217, 0.05));
  padding: var(--spacing-lg) 0;
}

.resource-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.resource-card .card-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.resource-card .button {
  margin-top: 1.5rem;
}

/* Resource image container */
.resource-card .image-container {
  height: 250px;
  width: 100%;
}