/* ================= CSS VARIABLES ================= */
:root {
  /* Color Scheme - Tetrad */
  --primary: #4361ee;
  --primary-dark: #2a3eb1;
  --primary-light: #7790f7;
  --secondary: #ee4362;
  --secondary-dark: #c62c49;
  --secondary-light: #ff6e89;
  --accent1: #61ee43;
  --accent1-dark: #40b926;
  --accent1-light: #8dff73;
  --accent2: #ee9043;
  --accent2-dark: #c46d29;
  --accent2-light: #ffb673;

  /* Neutral Colors */
  --dark: #0a1128;
  --dark-medium: #1c2e4a;
  --medium: #4a5568;
  --light-medium: #7a869a;
  --light: #e2e8f0;
  --white: #ffffff;

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  --gradient-secondary: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%);
  --gradient-accent1: linear-gradient(135deg, var(--accent1) 0%, var(--accent1-light) 100%);
  --gradient-accent2: linear-gradient(135deg, var(--accent2) 0%, var(--accent2-light) 100%);
  --gradient-dark: linear-gradient(135deg, var(--dark) 0%, var(--dark-medium) 100%);
  
  /* Overlay */
  --overlay-dark: rgba(10, 17, 40, 0.7);
  --overlay-light: rgba(255, 255, 255, 0.7);
  --overlay-gradient: linear-gradient(to bottom, rgba(10, 17, 40, 0.8), rgba(10, 17, 40, 0.4));
  
  /* Typography */
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Work Sans', sans-serif;
  
  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 2rem;
  --space-xl: 4rem;
  
  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-full: 9999px;
  
  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 10px 20px rgba(0, 0, 0, 0.1), 0 3px 6px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
}

/* ================= BASE STYLES ================= */
html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--medium);
  line-height: 1.6;
  overflow-x: hidden;
  background-color: var(--white);
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--dark);
  line-height: 1.3;
  margin-bottom: var(--space-md);
}

h1 {
  font-size: 3rem;
  font-weight: 700;
}

h2 {
  font-size: 2.5rem;
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.25rem;
}

p {
  margin-bottom: var(--space-md);
}

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

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

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

/* ================= UTILITIES ================= */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.section-title {
  text-align: center;
  margin-bottom: var(--space-xl);
  position: relative;
  font-size: 2.5rem;
  font-weight: 700;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--gradient-primary);
  border-radius: var(--radius-full);
}

.section-description {
  text-align: center;
  max-width: 800px;
  margin: 0 auto var(--space-xl);
  font-size: 1.1rem;
  color: var(--light-medium);
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--overlay-gradient);
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--overlay-gradient);
  z-index: 1;
}

/* ================= BUTTONS ================= */
.button, 
.btn-animated,
button, 
input[type="submit"] {
  display: inline-block;
  padding: 0.8rem 2rem;
  border-radius: var(--radius-md);
  font-family: var(--font-heading);
  font-weight: 500;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: all var(--transition-normal);
  border: none;
  outline: none;
  box-shadow: var(--shadow-md);
}

.button.is-primary, 
button.is-primary, 
input[type="submit"].is-primary {
  background: var(--gradient-primary);
  color: var(--white);
}

.button.is-primary:hover, 
button.is-primary:hover, 
input[type="submit"].is-primary:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.button.is-light, 
button.is-light, 
input[type="submit"].is-light {
  background: var(--white);
  color: var(--primary);
}

.button.is-light.is-outlined, 
button.is-light.is-outlined, 
input[type="submit"].is-light.is-outlined {
  background: transparent;
  border: 2px solid var(--white);
  color: var(--white);
}

.button.is-light.is-outlined:hover, 
button.is-light.is-outlined:hover, 
input[type="submit"].is-light.is-outlined:hover {
  background: var(--white);
  color: var(--primary);
}

.button.is-outlined, 
button.is-outlined, 
input[type="submit"].is-outlined {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
}

.button.is-outlined:hover, 
button.is-outlined:hover, 
input[type="submit"].is-outlined:hover {
  background: var(--primary);
  color: var(--white);
}

.btn-animated {
  position: relative;
  overflow: hidden;
}

.btn-animated::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: all 0.6s ease;
}

.btn-animated:hover::before {
  left: 100%;
}

/* ================= HEADER & NAVIGATION ================= */
.header-section {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(5px);
  transition: background var(--transition-normal);
}

.header-section.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-md);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-md) 0;
}

.logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  margin: 0;
}

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

.navbar-menu {
  display: flex;
}

.navbar-end {
  display: flex;
  @media(max-width: 768px) {
    flex-direction: column;
  }
}

.navbar-brand {
  @media(max-width: 768px) {
    width: 100%;
  }
}

.navbar-item {
  padding: var(--space-md) var(--space-md);
  color: var(--dark);
  font-weight: 500;
  transition: color var(--transition-fast);
}

.navbar-item:hover {
  color: var(--primary);
}

.navbar-burger {
  display: none;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0.5rem;
}

/* ================= HERO SECTION ================= */
.hero-section {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--white);
  overflow: hidden;
}

.parallax-section {
  background-attachment: fixed;
}

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

.hero-title {
  font-size: 3.5rem;
  margin-bottom: var(--space-md);
  color: var(--white);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: 2rem;
  margin-bottom: var(--space-lg);
  color: var(--white);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-description {
  font-size: 1.25rem;
  margin-bottom: var(--space-xl);
  color: var(--white);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-buttons {
  display: flex;
  gap: var(--space-md);
}

/* ================= FEATURES SECTION ================= */
.features-section {
  padding: var(--space-xl) 0;
}

.feature-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  box-shadow: var(--shadow-md);
  height: 100%;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.feature-icon {
  width: 80px;
  height: 80px;
  margin-bottom: var(--space-md);
  display: flex;
  justify-content: center;
  align-items: center;
}

.feature-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-full);
}

.feature-card h3 {
  font-size: 1.5rem;
  margin-bottom: var(--space-md);
  color: var(--dark);
}

.feature-card p {
  color: var(--medium);
  margin: 0;
}

/* ================= SERVICES SECTION ================= */
.services-section {
  padding: var(--space-xl) 0;
  background-color: var(--light);
}

.services-content {
  margin-bottom: var(--space-lg);
}

.services-description {
  font-size: 1.1rem;
  margin-bottom: var(--space-lg);
}

.service-highlights {
  background: var(--white);
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

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

.service-highlights li {
  padding: var(--space-md) 0;
  border-bottom: 1px solid var(--light);
  display: flex;
  align-items: center;
}

.service-highlights li:last-child {
  border-bottom: none;
}

.icon-check {
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-right: var(--space-md);
  background-color: var(--primary);
  border-radius: var(--radius-full);
  position: relative;
}

.icon-check::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 4px;
  border-left: 2px solid var(--white);
  border-bottom: 2px solid var(--white);
  transform: translate(-50%, -60%) rotate(-45deg);
}

.service-cards {
  margin-top: var(--space-xl);
}

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

.card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.card-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

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

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

.card-content {
  padding: var(--space-lg);
  flex-grow: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.card h3 {
  font-size: 1.5rem;
  margin-bottom: var(--space-md);
  color: var(--dark);
}

.news-link, .resource-link {
  color: var(--primary);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  margin-top: var(--space-md);
  transition: color var(--transition-fast);
}

.news-link:hover, .resource-link:hover {
  color: var(--primary-dark);
}

.arrow {
  display: inline-block;
  margin-left: var(--space-sm);
  transition: transform var(--transition-fast);
}

.news-link:hover .arrow, .resource-link:hover .arrow {
  transform: translateX(5px);
}

/* ================= PRICING SECTION ================= */
.pricing-section {
  padding: var(--space-xl) 0;
}

.pricing-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.pricing-card.popular {
  border: 2px solid var(--primary);
  transform: scale(1.05);
}

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

.pricing-tag {
  position: absolute;
  top: 20px;
  right: -30px;
  background: var(--primary);
  color: var(--white);
  padding: 5px 30px;
  font-size: 0.8rem;
  transform: rotate(45deg);
  box-shadow: var(--shadow-md);
  z-index: 1;
}

.pricing-header {
  background: var(--gradient-primary);
  color: var(--white);
  padding: var(--space-lg);
  text-align: center;
  width: 100%;
}

.pricing-header h3 {
  color: var(--white);
  margin-bottom: var(--space-md);
  font-size: 1.8rem;
}

.price {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  margin-bottom: var(--space-md);
}

.amount {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
}

.currency {
  font-size: 1.2rem;
  margin-top: 0.5rem;
  margin-left: 0.3rem;
}

.period {
  font-size: 1rem;
  opacity: 0.8;
  margin-top: 0.5rem;
}

.pricing-features {
  padding: var(--space-lg);
  flex-grow: 1;
}

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

.pricing-features li {
  padding: var(--space-md) 0;
  border-bottom: 1px solid var(--light);
  text-align: center;
}

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

.pricing-footer {
  padding: var(--space-lg);
  text-align: center;
  width: 100%;
}

/* ================= HISTORY SECTION ================= */
.history-section {
  padding: var(--space-xl) 0;
  position: relative;
  color: var(--white);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.history-section .section-title {
  color: var(--white);
  position: relative;
  z-index: 2;
}

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

.timeline::after {
  content: '';
  position: absolute;
  width: 6px;
  background-color: var(--white);
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -3px;
  border-radius: var(--radius-full);
}

.timeline-item {
  padding: var(--space-lg) 40px;
  position: relative;
  width: 50%;
  box-sizing: border-box;
}

.timeline-item:nth-child(odd) {
  left: 0;
}

.timeline-item:nth-child(even) {
  left: 50%;
}

.timeline-year {
  position: absolute;
  width: 100px;
  height: 100px;
  right: -50px;
  background-color: var(--primary);
  color: var(--white);
  border-radius: var(--radius-full);
  top: 15px;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  box-shadow: var(--shadow-md);
}

.timeline-item:nth-child(even) .timeline-year {
  left: -50px;
}

.timeline-content {
  padding: var(--space-lg);
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  position: relative;
  transition: transform var(--transition-normal);
}

.timeline-content:hover {
  transform: scale(1.03);
}

.timeline-content::after {
  content: '';
  position: absolute;
  width: 25px;
  height: 25px;
  right: -17px;
  top: 30px;
  background-color: rgba(255, 255, 255, 0.1);
  transform: rotate(45deg);
}

.timeline-item:nth-child(even) .timeline-content::after {
  left: -17px;
}

.timeline-content h3 {
  color: var(--white);
  margin-top: 0;
}

.timeline-content p {
  margin-bottom: 0;
  color: var(--light);
}

/* ================= STATISTICS SECTION ================= */
.statistics-section {
  padding: var(--space-xl) 0;
  background-color: var(--white);
}

.stat-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  box-shadow: var(--shadow-md);
  text-align: center;
  height: 100%;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.stat-icon {
  width: 64px;
  height: 64px;
  margin-bottom: var(--space-md);
  display: flex;
  justify-content: center;
  align-items: center;
}

.stat-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-full);
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: var(--space-sm);
}

.stat-title {
  font-size: 1.2rem;
  color: var(--medium);
}

/* ================= TESTIMONIALS SECTION ================= */
.testimonials-section {
  padding: var(--space-xl) 0;
  background-color: var(--light);
}

.testimonial-carousel {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

.testimonial-slide {
  display: none;
  animation: fadeIn 0.5s ease forwards;
}

.testimonial-slide.active {
  display: block;
}

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

.testimonial-image {
  width: 250px;
  height: 250px;
  border-radius: var(--radius-full);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

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

.testimonial-content {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  box-shadow: var(--shadow-md);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.rating {
  color: var(--accent2);
  font-size: 1.5rem;
  margin-bottom: var(--space-md);
}

blockquote {
  font-style: italic;
  margin: 0 0 var(--space-lg);
  font-size: 1.1rem;
  line-height: 1.8;
  text-align: center;
}

.testimonial-author {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.testimonial-author h4 {
  margin-bottom: var(--space-xs);
  font-size: 1.3rem;
}

.testimonial-author p {
  color: var(--light-medium);
  margin: 0;
}

.carousel-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: var(--space-lg);
}

.prev-btn, .next-btn {
  background: var(--primary);
  color: var(--white);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all var(--transition-fast);
  box-shadow: var(--shadow-md);
}

.prev-btn:hover, .next-btn:hover {
  background: var(--primary-dark);
  transform: scale(1.1);
}

.carousel-dots {
  display: flex;
  gap: var(--space-sm);
  margin: 0 var(--space-md);
}

.dot {
  width: 12px;
  height: 12px;
  background: var(--light-medium);
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.dot.active {
  background: var(--primary);
  transform: scale(1.2);
}

/* ================= RESOURCES SECTION ================= */
.resources-section {
  padding: var(--space-xl) 0;
}

/* ================= NEWS SECTION ================= */
.news-section {
  padding: var(--space-xl) 0;
  background-color: var(--light);
}

.news-date {
  font-size: 0.9rem;
  color: var(--light-medium);
  margin-bottom: var(--space-sm);
}

/* ================= MEDIA SECTION ================= */
.media-section {
  padding: var(--space-xl) 0;
}

.media-filter {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
  flex-wrap: wrap;
}

.filter-btn {
  background: transparent;
  border: none;
  padding: var(--space-sm) var(--space-md);
  cursor: pointer;
  font-weight: 500;
  color: var(--medium);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}

.filter-btn:hover, .filter-btn.active {
  background: var(--primary);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}

.media-gallery {
  margin-top: var(--space-lg);
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 200px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}

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

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: var(--space-md);
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  color: var(--white);
  opacity: 0;
  transition: opacity var(--transition-normal);
  text-align: center;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay h3 {
  margin-bottom: var(--space-xs);
  color: var(--white);
  font-size: 1.2rem;
}

.gallery-overlay p {
  margin: 0;
  font-size: 0.9rem;
}

/* ================= CONTACT SECTION ================= */
.contact-section {
  padding: var(--space-xl) 0;
  background-color: var(--white);
}

.contact-form-container {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: var(--space-xl);
  box-shadow: var(--shadow-md);
}

.contact-form-container h3 {
  text-align: center;
  margin-bottom: var(--space-lg);
  font-size: 1.8rem;
}

.field {
  margin-bottom: var(--space-md);
}

.label {
  display: block;
  margin-bottom: var(--space-sm);
  font-weight: 500;
  color: var(--dark);
}

.control {
  position: relative;
}

.input, .textarea, .select select {
  width: 100%;
  padding: var(--space-md);
  border: 1px solid var(--light);
  border-radius: var(--radius-md);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  font-family: var(--font-body);
  font-size: 1rem;
}

.input:focus, .textarea:focus, .select select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(67, 97, 238, 0.3);
}

.textarea {
  min-height: 150px;
  resize: vertical;
}

.checkbox {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.checkbox input {
  margin-right: var(--space-sm);
}

.contact-info {
  background: var(--gradient-primary);
  color: var(--white);
  border-radius: var(--radius-md);
  padding: var(--space-xl);
  height: 100%;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
}

.contact-info h3 {
  color: var(--white);
  text-align: center;
  margin-bottom: var(--space-lg);
  font-size: 1.8rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: var(--space-lg);
}

.icon {
  width: 32px;
  height: 32px;
  margin-right: var(--space-md);
  border-radius: var(--radius-full);
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.text {
  flex: 1;
}

.text h4 {
  color: var(--white);
  margin-bottom: var(--space-xs);
}

.text p {
  margin: 0;
  color: var(--light);
}

.social-links {
  margin-top: auto;
}

.social-links h4 {
  color: var(--white);
  margin-bottom: var(--space-md);
  font-size: 1.2rem;
  text-align: center;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.social-icons a {
  color: var(--white);
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.2);
  transition: all var(--transition-fast);
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.social-icons a:hover {
  background: var(--white);
  color: var(--primary);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

/* ================= CAREERS SECTION ================= */
.careers-section {
  padding: var(--space-xl) 0;
  position: relative;
  color: var(--white);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.careers-section .section-title,
.careers-section .section-description {
  color: var(--white);
  position: relative;
  z-index: 2;
}

.careers-content {
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  height: 100%;
}

.careers-content h3 {
  color: var(--white);
  margin-bottom: var(--space-lg);
}

.benefits-list {
  margin-top: var(--space-lg);
}

.benefit-item {
  display: flex;
  align-items: center;
  margin-bottom: var(--space-md);
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  transition: transform var(--transition-fast);
}

.benefit-item:hover {
  transform: translateX(10px);
}

.benefit-icon {
  width: 48px;
  height: 48px;
  margin-right: var(--space-md);
  border-radius: var(--radius-full);
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.benefit-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.benefit-text {
  flex: 1;
}

.benefit-text h4 {
  color: var(--white);
  margin-bottom: var(--space-xs);
}

.benefit-text p {
  margin: 0;
  color: var(--light);
}

.job-listings {
  position: relative;
  z-index: 2;
}

.job-listings h3 {
  color: var(--white);
  margin-bottom: var(--space-lg);
  text-align: center;
}

.job-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  margin-bottom: var(--space-lg);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.job-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.job-card h4 {
  color: var(--white);
  margin-bottom: var(--space-xs);
}

.job-details {
  display: flex;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
  font-size: 0.9rem;
  color: var(--light);
}

.job-card p {
  margin-bottom: var(--space-md);
  color: var(--light);
}

.view-all-jobs {
  display: block;
  text-align: center;
  color: var(--white);
  font-weight: 500;
  margin-top: var(--space-lg);
  transition: all var(--transition-fast);
}

.view-all-jobs:hover {
  color: var(--accent2-light);
}

.view-all-jobs .arrow {
  transition: transform var(--transition-fast);
}

.view-all-jobs:hover .arrow {
  transform: translateX(5px);
}

/* ================= PORTFOLIO SECTION ================= */
.portfolio-section {
  padding: var(--space-xl) 0;
  background-color: var(--white);
}

.portfolio-filter {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
  flex-wrap: wrap;
}

.portfolio-gallery {
  margin-top: var(--space-lg);
}

/* ================= FOOTER SECTION ================= */
.footer-section {
  background: var(--gradient-dark);
  color: var(--light);
  padding: var(--space-xl) 0 var(--space-lg);
}

.footer-logo h2 {
  color: var(--white);
  font-size: 2rem;
  margin-bottom: var(--space-sm);
}

.footer-logo span {
  color: var(--secondary);
}

.footer-logo p {
  color: var(--light);
  margin-bottom: var(--space-md);
}

.footer-about {
  margin-bottom: var(--space-lg);
  line-height: 1.7;
}

.footer-title {
  color: var(--white);
  margin-bottom: var(--space-lg);
  font-size: 1.3rem;
  position: relative;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 50px;
  height: 3px;
  background: var(--gradient-primary);
  border-radius: var(--radius-full);
}

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

.footer-links li {
  margin-bottom: var(--space-md);
}

.footer-links a {
  color: var(--light);
  transition: color var(--transition-fast), transform var(--transition-fast);
  display: inline-block;
}

.footer-links a:hover {
  color: var(--white);
  transform: translateX(5px);
}

.footer-contact p {
  margin-bottom: var(--space-md);
  display: flex;
  align-items: flex-start;
}

.footer-contact strong {
  color: var(--white);
  margin-right: var(--space-sm);
  min-width: 80px;
}

.newsletter {
  margin-top: var(--space-lg);
}

.newsletter h4 {
  color: var(--white);
  margin-bottom: var(--space-md);
}

.newsletter-form {
  display: flex;
}

.newsletter-form input {
  flex: 1;
  padding: var(--space-md);
  border: none;
  border-radius: var(--radius-md) 0 0 var(--radius-md);
  font-family: var(--font-body);
}

.newsletter-form button {
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: var(--space-md);
}

.footer-bottom {
  margin-top: var(--space-xl);
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.copyright {
  color: var(--light-medium);
  font-size: 0.9rem;
}

.legal-links {
  display: flex;
  gap: var(--space-md);
}

.legal-links a {
  color: var(--light-medium);
  font-size: 0.9rem;
  transition: color var(--transition-fast);
}

.legal-links a:hover {
  color: var(--white);
}

/* ================= ADDITIONAL PAGES ================= */
/* Success Page */
.success-page {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  min-height: 100vh;
  padding: var(--space-xl);
}

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

.success-title {
  font-size: 2.5rem;
  margin-bottom: var(--space-md);
}

.success-message {
  max-width: 600px;
  margin-bottom: var(--space-lg);
}

/* Terms and Privacy Pages */
.terms-page, .privacy-page {
  padding-top: 100px;
  padding-bottom: var(--space-xl);
}

.terms-content, .privacy-content {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: var(--space-xl);
  box-shadow: var(--shadow-md);
}

.terms-content h2, .privacy-content h2 {
  margin-top: var(--space-lg);
  margin-bottom: var(--space-md);
  font-size: 1.8rem;
}

.terms-content h3, .privacy-content h3 {
  margin-top: var(--space-lg);
  margin-bottom: var(--space-md);
  font-size: 1.5rem;
}

.terms-content p, .privacy-content p {
  margin-bottom: var(--space-md);
}

.terms-content ul, .privacy-content ul {
  margin-bottom: var(--space-md);
  padding-left: var(--space-lg);
}

/* ================= RESPONSIVE STYLES ================= */
@media (max-width: 1023px) {
  .hero-title {
    font-size: 3rem;
  }
  
  .hero-subtitle {
    font-size: 1.8rem;
  }
  
  .timeline::after {
    left: 31px;
  }
  
  .timeline-item {
    width: 100%;
    padding-left: 70px;
    padding-right: 25px;
  }
  
  .timeline-item:nth-child(even) {
    left: 0;
  }
  
  .timeline-year {
    left: -20px;
    right: auto;
    width: 80px;
    height: 80px;
    font-size: 1.2rem;
  }
  
  .timeline-item:nth-child(even) .timeline-year {
    left: -20px;
  }
  
  .timeline-content::after {
    left: -15px;
    right: auto;
  }
  
  .timeline-item:nth-child(even) .timeline-content::after {
    left: -15px;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.5rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: var(--space-md);
  }
  
  .navbar-menu {
    display: none;
  }
  
  .navbar-menu.is-active {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--white);
    box-shadow: var(--shadow-md);
    padding: var(--space-md) 0;
    z-index: 1000;
  }
  
  .navbar-burger {
    display: block;
  }
  
  .navbar-item {
    display: block;
    text-align: center;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .legal-links {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 var(--space-md);
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
  }
  
  .pricing-card.popular {
    transform: none;
  }
  
  .pricing-card.popular:hover {
    transform: translateY(-10px);
  }
}

/* ================= ANIMATIONS ================= */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

[data-aos="fade-up"] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos="fade-up"].aos-animate {
  opacity: 1;
  transform: translateY(0);
}

[data-aos="fade-right"] {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos="fade-right"].aos-animate {
  opacity: 1;
  transform: translateX(0);
}

[data-aos="fade-left"] {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos="fade-left"].aos-animate {
  opacity: 1;
  transform: translateX(0);
}

[data-aos="zoom-in"] {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos="zoom-in"].aos-animate {
  opacity: 1;
  transform: scale(1);
}

[data-aos="flip-left"] {
  opacity: 0;
  transform: perspective(2500px) rotateY(90deg);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos="flip-left"].aos-animate {
  opacity: 1;
  transform: perspective(2500px) rotateY(0);
}