:root {
  --primary-teal: #2c7873;
  --primary-orange: #ff6b35;
  --primary-forest: #2d5016;
  --primary-amber: #ffb700;
  --primary-slate: #3e4756;
  --light-teal: #4a9b96;
  --light-orange: #ff8c69;
  --light-forest: #5a7d3a;
  --light-amber: #ffcc33;
  --light-slate: #6b7280;
  --dark-teal: #1a4742;
  --dark-orange: #cc4213;
  --dark-forest: #1f3510;
  --dark-amber: #cc9200;
  --dark-slate: #2a2f3a;
  --white: #ffffff;
  --light-gray: #f8f9fa;
  --gray: #6c757d;
  --dark-gray: #343a40;
  --black: #000000;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
    overflow-x: hidden;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--dark-slate);
  background-color: var(--white);
}

/* Typography */
h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--primary-forest);
}

h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--primary-teal);
}

h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--primary-slate);
}

h4 {
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--primary-slate);
}

p {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: var(--gray);
}

/* Header */
.navbar-brand {
  font-size: 1.5rem !important;
  font-weight: 700;
  color: var(--primary-forest) !important;
}

.navbar {
  background: linear-gradient(135deg, var(--white) 0%, var(--light-gray) 100%);
  box-shadow: 0 2px 20px rgba(44, 120, 115, 0.1);
  padding: 1rem 0;
}

.navbar-nav .nav-link {
  color: var(--primary-slate) !important;
  font-weight: 500;
  margin: 0 0.5rem;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-teal) !important;
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--primary-teal) 0%, var(--primary-forest) 50%, var(--primary-slate) 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('../FIN_images/hero-bg.webp');
  background-size: cover;
  background-position: center;
  opacity: 0.3;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
}

.hero-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  opacity: 0.9;
}

.hero-desc {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.8;
}

/* Decorative Blobs */
.blob {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
  z-index: 1;
}

.blob-1 {
  width: 300px;
  height: 300px;
  background: var(--primary-orange);
  top: 10%;
  right: 10%;
}

.blob-2 {
  width: 200px;
  height: 200px;
  background: var(--primary-amber);
  bottom: 20%;
  left: 5%;
}

/* Section Spacing */
.section {
  padding: 5rem 0;
}

.section:nth-child(even) {
  background-color: var(--light-gray);
}

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-subtitle {
  color: var(--primary-orange);
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

.section-title {
  font-size: 2.5rem;
  color: var(--primary-forest);
  margin-bottom: 1rem;
}

.section-desc {
  font-size: 1.1rem;
  color: var(--gray);
  max-width: 600px;
  margin: 0 auto;
}

/* Cards */
.service-card, .feature-card, .price-card {
  background: var(--white);
  border-radius: 15px;
  padding: 2rem;
  height: 100%;
  box-shadow: 0 10px 30px rgba(44, 120, 115, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(44, 120, 115, 0.1);
}

.service-card:hover, .feature-card:hover, .price-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(44, 120, 115, 0.2);
}

.service-card img, .feature-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 1.5rem;
}

.card-title {
  font-size: 1.5rem;
  color: var(--primary-forest);
  margin-bottom: 1rem;
}

.card-desc {
  color: var(--gray);
  margin-bottom: 1.5rem;
}

.card-price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-orange);
  margin-bottom: 1rem;
}

.card-features {
  list-style: none;
  margin-bottom: 2rem;
}

.card-features li {
  padding: 0.5rem 0;
  color: var(--gray);
  position: relative;
  padding-left: 1.5rem;
}

.card-features li::before {
  content: '\f00c';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  color: var(--primary-teal);
  position: absolute;
  left: 0;
  top: 0.5rem;
}

/* Team Cards */
.team-card {
  background: var(--white);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(44, 120, 115, 0.1);
  transition: transform 0.3s ease;
}

.team-card:hover {
  transform: translateY(-5px);
}

.team-photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1.5rem;
  border: 4px solid var(--primary-teal);
}

.team-name {
  font-size: 1.25rem;
  color: var(--primary-forest);
  margin-bottom: 0.5rem;
}

.team-role {
  color: var(--primary-orange);
  font-weight: 500;
}

/* Testimonials */
.testimonial-card {
  background: var(--white);
  border-radius: 15px;
  padding: 2.5rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(44, 120, 115, 0.1);
  margin: 1rem;
}

.testimonial-text {
  font-size: 1.1rem;
  color: var(--gray);
  font-style: italic;
  margin-bottom: 2rem;
  line-height: 1.8;
}

.testimonial-author {
  font-size: 1.1rem;
  color: var(--primary-forest);
  font-weight: 600;
}

/* FAQ */
.faq-item {
  background: var(--white);
  border-radius: 10px;
  margin-bottom: 1rem;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(44, 120, 115, 0.1);
}

.faq-question {
  background: linear-gradient(135deg, var(--primary-teal), var(--light-teal));
  color: var(--white);
  padding: 1.5rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}

.faq-question:hover {
  background: linear-gradient(135deg, var(--dark-teal), var(--primary-teal));
}

.faq-answer {
  padding: 1.5rem;
  color: var(--gray);
  background: var(--white);
}

/* Contact Form */
.contact-form {
  background: var(--white);
  border-radius: 15px;
  padding: 3rem;
  box-shadow: 0 15px 40px rgba(44, 120, 115, 0.1);
}

.form-control {
  border-radius: 10px;
  border: 2px solid var(--light-gray);
  padding: 1rem;
  margin-bottom: 1.5rem;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-teal);
  box-shadow: 0 0 0 0.2rem rgba(44, 120, 115, 0.25);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-orange), var(--light-orange));
  border: none;
  border-radius: 10px;
  padding: 1rem 2rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--dark-orange), var(--primary-orange));
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(255, 107, 53, 0.3);
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.gallery-item {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(44, 120, 115, 0.1);
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.05);
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

/* Footer */
.footer {
  background: linear-gradient(135deg, var(--primary-forest) 0%, var(--dark-forest) 100%);
  color: var(--white);
  padding: 4rem 0 2rem;
}

.footer h5 {
  color: var(--primary-amber);
  margin-bottom: 1.5rem;
}

.footer p, .footer a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: var(--primary-amber);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  margin-top: 3rem;
  text-align: center;
}

/* Breadcrumbs */
.breadcrumb-container {
  padding: 2rem 0;
  background: var(--light-gray);
}

.breadcrumb-img {
  width: 100%;
  max-width: 400px;
  height: 60px;
  object-fit: contain;
}

/* Process Steps */
.process-step {
  text-align: center;
  padding: 2rem;
  position: relative;
}

.process-number {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-orange), var(--light-orange));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  margin: 0 auto 1.5rem;
}

.process-title {
  font-size: 1.25rem;
  color: var(--primary-forest);
  margin-bottom: 1rem;
}

.process-desc {
  color: var(--gray);
}

/* Timeline */
.timeline-item {
  position: relative;
  padding: 2rem;
  background: var(--white);
  border-radius: 15px;
  margin-bottom: 2rem;
  box-shadow: 0 10px 30px rgba(44, 120, 115, 0.1);
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -10px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background: var(--primary-orange);
  border-radius: 50%;
}

/* Blog Cards */
.blog-card {
  background: var(--white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(44, 120, 115, 0.1);
  transition: transform 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
}

.blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-card-body {
    overflow-x: hidden;
  padding: 2rem;
}

.blog-title {
  font-size: 1.25rem;
  color: var(--primary-forest);
  margin-bottom: 1rem;
}

.blog-excerpt {
  color: var(--gray);
  margin-bottom: 1.5rem;
}

.blog-link {
  color: var(--primary-orange);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.blog-link:hover {
  color: var(--dark-orange);
}

/* Career Cards */
.career-card {
  background: var(--white);
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(44, 120, 115, 0.1);
  transition: transform 0.3s ease;
}

.career-card:hover {
  transform: translateY(-5px);
}

.career-title {
  font-size: 1.25rem;
  color: var(--primary-forest);
  margin-bottom: 0.5rem;
}

.career-role {
  color: var(--primary-orange);
  font-weight: 600;
  margin-bottom: 1rem;
}

.career-desc {
  color: var(--gray);
}

/* Case Study Cards */
.casestudy-card {
  background: var(--white);
  border-radius: 15px;
  padding: 2.5rem;
  box-shadow: 0 10px 30px rgba(44, 120, 115, 0.1);
  transition: transform 0.3s ease;
}

.casestudy-card:hover {
  transform: translateY(-5px);
}

.casestudy-title {
  font-size: 1.5rem;
  color: var(--primary-forest);
  margin-bottom: 1.5rem;
}

.casestudy-desc {
  color: var(--gray);
  line-height: 1.8;
}

/* Core Info Cards */
.coreinfo-card {
  background: var(--white);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(44, 120, 115, 0.1);
  transition: transform 0.3s ease;
}

.coreinfo-card:hover {
  transform: translateY(-5px);
}

.coreinfo-icon {
  font-size: 3rem;
  color: var(--primary-teal);
  margin-bottom: 1.5rem;
}

.coreinfo-title {
  font-size: 1.25rem;
  color: var(--primary-forest);
  margin-bottom: 1rem;
}

.coreinfo-desc {
  color: var(--gray);
}

/* Space Page */
#space {
  min-height: 80vh;
  background: linear-gradient(135deg, var(--primary-teal) 0%, var(--primary-forest) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 3rem;
  text-align: center;
}

/* Utilities */
.text-primary-teal { color: var(--primary-teal) !important; }
.text-primary-orange { color: var(--primary-orange) !important; }
.text-primary-forest { color: var(--primary-forest) !important; }
.text-primary-amber { color: var(--primary-amber) !important; }
.text-primary-slate { color: var(--primary-slate) !important; }

.bg-primary-teal { background-color: var(--primary-teal) !important; }
.bg-primary-orange { background-color: var(--primary-orange) !important; }
.bg-primary-forest { background-color: var(--primary-forest) !important; }
.bg-primary-amber { background-color: var(--primary-amber) !important; }
.bg-primary-slate { background-color: var(--primary-slate) !important; }

.gradient-bg {
  background: linear-gradient(135deg, var(--primary-teal) 0%, var(--primary-orange) 50%, var(--primary-forest) 100%);
} 