:root {
  /* Primary Color Palette */
  --primary-navy: #1a2332;
  --primary-gold: #d4af37;
  --primary-crimson: #8b1538;
  --primary-teal: #2c5f5d;
  --primary-charcoal: #36454f;
  
  /* Light/Dark Shades */
  --light-navy: #2d3748;
  --dark-navy: #0f1419;
  --light-gold: #f4e4a6;
  --dark-gold: #b8941f;
  --light-crimson: #c4476f;
  --dark-crimson: #5c0e24;
  --light-teal: #4a8b87;
  --dark-teal: #1a3f3d;
  --light-charcoal: #5a6b7d;
  --dark-charcoal: #1e2328;
  
  /* Neutral Colors */
  --white: #ffffff;
  --light-gray: #f8f9fa;
  --gray: #6c757d;
  --dark-gray: #343a40;
  --black: #000000;
  
  /* Typography */
  --font-primary: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  --font-secondary: Georgia, 'Times New Roman', serif;
  
  /* Spacing */
  --section-padding: 4rem 0;
  --container-padding: 0 1rem;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
    overflow-x: hidden;
  font-family: var(--font-primary);
  font-size: 16px;
  line-height: 1.6;
  color: var(--dark-charcoal);
  background-color: var(--white);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--primary-navy);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.1rem; }
h6 { font-size: 1rem; }

p {
  margin-bottom: 1rem;
  font-size: 1rem;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--container-padding);
}

/* Header */
.navbar {
  background: linear-gradient(135deg, var(--primary-navy), var(--light-navy));
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}

.navbar-brand {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-gold) !important;
  text-decoration: none;
}

.navbar-nav .nav-link {
  color: var(--white) !important;
  font-weight: 500;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-gold) !important;
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--primary-navy) 0%, var(--primary-teal) 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../GLA_images/hero-bg.webp') center/cover;
  opacity: 0.1;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  background: linear-gradient(45deg, var(--primary-gold), var(--light-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.hero-desc {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.8;
}

/* Decorative Shapes */
.hero-shape {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(45deg, var(--primary-gold), var(--primary-crimson));
  opacity: 0.1;
  animation: float 6s ease-in-out infinite;
}

.hero-shape-1 {
  width: 200px;
  height: 200px;
  top: 10%;
  right: 10%;
  animation-delay: 0s;
}

.hero-shape-2 {
  width: 150px;
  height: 150px;
  bottom: 20%;
  left: 5%;
  animation-delay: 2s;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

/* Section Styles */
.section {
  padding: var(--section-padding);
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-subtitle {
  color: var(--primary-gold);
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

.section-desc {
  color: var(--gray);
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

/* About Section */
.about-section {
  background: var(--light-gray);
}

.about-features {
  margin-top: 3rem;
}

.feature-item {
  text-align: center;
  padding: 2rem 1rem;
  background: var(--white);
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  margin-bottom: 2rem;
}

.feature-item:hover {
  transform: translateY(-5px);
}

.feature-icon {
  font-size: 3rem;
  color: var(--primary-gold);
  margin-bottom: 1rem;
}

/* Services Section */
.services-section {
  background: linear-gradient(135deg, var(--white) 0%, var(--light-gray) 100%);
}

.services-grid {
  margin-top: 3rem;
}

.service-card {
  background: var(--white);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  margin-bottom: 2rem;
  border: 2px solid transparent;
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary-gold);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.service-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 1.5rem;
}

.service-name {
  color: var(--primary-navy);
  margin-bottom: 1rem;
}

.service-desc {
  color: var(--gray);
  margin-bottom: 1.5rem;
}

.service-features {
  list-style: none;
  margin-bottom: 2rem;
}

.service-features li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--light-gray);
}

.service-features li:last-child {
  border-bottom: none;
}

.service-price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-crimson);
  margin-bottom: 1rem;
}

/* Features Section */
.features-section {
  background: var(--primary-navy);
  color: var(--white);
}

.features-section .section-title h2 {
  color: var(--white);
}

.features-section .section-desc {
  color: var(--light-gray);
}

.features-grid {
  margin-top: 3rem;
}

.feature-card {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  margin-bottom: 2rem;
}

.feature-card:hover {
  background: rgba(255,255,255,0.15);
  transform: translateY(-5px);
}

/* Price Plan Section */
.priceplan-section {
  background: linear-gradient(135deg, var(--light-gray) 0%, var(--white) 100%);
}

.priceplan-grid {
  margin-top: 3rem;
}

.priceplan-card {
  background: var(--white);
  border-radius: 20px;
  padding: 3rem 2rem;
  text-align: center;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  margin-bottom: 2rem;
  position: relative;
  overflow: hidden;
}

.priceplan-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--primary-gold), var(--primary-crimson));
}

.priceplan-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.priceplan-card.featured {
  border: 3px solid var(--primary-gold);
  transform: scale(1.05);
}

/* Team Section */
.team-section {
  background: var(--white);
}

.team-grid {
  margin-top: 3rem;
}

.team-member {
  text-align: center;
  margin-bottom: 2rem;
}

.team-photo {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1.5rem;
  border: 5px solid var(--primary-gold);
  transition: all 0.3s ease;
}

.team-photo:hover {
  transform: scale(1.05);
  border-color: var(--primary-crimson);
}

.team-name {
  color: var(--primary-navy);
  margin-bottom: 0.5rem;
}

.team-role {
  color: var(--primary-gold);
  font-weight: 600;
}

/* Reviews Section */
.reviews-section {
  background: linear-gradient(135deg, var(--primary-teal) 0%, var(--dark-teal) 100%);
  color: var(--white);
}

.reviews-section .section-title h2 {
  color: var(--white);
}

.reviews-section .section-desc {
  color: var(--light-gray);
}

.reviews-slider {
  margin-top: 3rem;
}

.review-item {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  margin: 0 1rem;
}

.review-text {
  font-style: italic;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.review-author {
  font-weight: 600;
  color: var(--primary-gold);
}

/* Case Study Section */
.casestudy-section {
  background: var(--light-gray);
}

.casestudy-grid {
  margin-top: 3rem;
}

.casestudy-item {
  background: var(--white);
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  margin-bottom: 2rem;
}

.casestudy-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* Process Section */
.process-section {
  background: var(--white);
}

.process-timeline {
  margin-top: 3rem;
  position: relative;
}

.process-timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--primary-gold);
  transform: translateX(-50%);
}

.process-item {
  position: relative;
  margin-bottom: 3rem;
  padding: 0 2rem;
}

.process-item:nth-child(odd) {
  text-align: right;
  padding-right: calc(50% + 2rem);
}

.process-item:nth-child(even) {
  text-align: left;
  padding-left: calc(50% + 2rem);
}

.process-item::before {
  content: '';
  position: absolute;
  top: 0;
  width: 20px;
  height: 20px;
  background: var(--primary-gold);
  border-radius: 50%;
  left: 50%;
  transform: translateX(-50%);
}

/* Timeline Section */
.timeline-section {
  background: linear-gradient(135deg, var(--primary-charcoal) 0%, var(--dark-charcoal) 100%);
  color: var(--white);
}

.timeline-section .section-title h2 {
  color: var(--white);
}

.timeline-section .section-desc {
  color: var(--light-gray);
}

/* Career Section */
.career-section {
  background: var(--light-gray);
}

.career-grid {
  margin-top: 3rem;
}

.career-item {
  background: var(--white);
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  margin-bottom: 2rem;
  border-left: 5px solid var(--primary-gold);
}

.career-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* Core Info Section */
.coreinfo-section {
  background: var(--white);
}

.coreinfo-grid {
  margin-top: 3rem;
}

.coreinfo-item {
  text-align: center;
  padding: 2rem 1rem;
  background: linear-gradient(135deg, var(--light-gray) 0%, var(--white) 100%);
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  margin-bottom: 2rem;
}

.coreinfo-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

/* Contact Section */
.contact-section {
  background: linear-gradient(135deg, var(--primary-navy) 0%, var(--primary-teal) 100%);
  color: var(--white);
}

.contact-section .section-title h2 {
  color: var(--white);
}

.contact-section .section-desc {
  color: var(--light-gray);
}

.contact-form {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 3rem;
  margin-top: 3rem;
}

.form-group {
  margin-bottom: 2rem;
}

.form-control {
  width: 100%;
  padding: 1rem;
  border: 2px solid transparent;
  border-radius: 10px;
  background: rgba(255,255,255,0.9);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-gold);
  background: var(--white);
}

.form-control::placeholder {
  color: var(--gray);
}

.btn-submit {
  background: linear-gradient(45deg, var(--primary-gold), var(--primary-crimson));
  color: var(--white);
  border: none;
  padding: 1rem 3rem;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.contact-info {
  margin-top: 3rem;
  text-align: center;
}

.contact-info p {
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

/* Blog Section */
.blog-section {
  background: var(--light-gray);
}

.blog-grid {
  margin-top: 3rem;
}

.blog-item {
  background: var(--white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  margin-bottom: 2rem;
}

.blog-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.blog-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-content {
  padding: 2rem;
}

.blog-title {
  color: var(--primary-navy);
  margin-bottom: 1rem;
}

.blog-excerpt {
  color: var(--gray);
  margin-bottom: 1.5rem;
}

.blog-link {
  color: var(--primary-gold);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.blog-link:hover {
  color: var(--primary-crimson);
}

/* FAQ Section */
.faq-section {
  background: var(--white);
}

.faq-container {
  margin-top: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.faq-item {
  background: var(--light-gray);
  border-radius: 10px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.faq-question {
  background: var(--primary-navy);
  color: var(--white);
  padding: 1.5rem;
  cursor: pointer;
  transition: background 0.3s ease;
  margin: 0;
  font-weight: 600;
}

.faq-question:hover {
  background: var(--light-navy);
}

.faq-answer {
  padding: 1.5rem;
  color: var(--dark-charcoal);
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
}

/* Gallery Section */
.gallery-section {
  background: var(--dark-charcoal);
  padding: 4rem 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  aspect-ratio: 4/3;
}

.gallery-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-image {
  transform: scale(1.1);
}

/* Footer */
.footer {
  background: linear-gradient(135deg, var(--dark-charcoal) 0%, var(--primary-navy) 100%);
  color: var(--white);
  padding: 3rem 0 1rem;
}

.footer-content {
  margin-bottom: 2rem;
}

.footer-section {
  margin-bottom: 2rem;
}

.footer-title {
  color: var(--primary-gold);
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: var(--light-gray);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary-gold);
}

.footer-bottom {
  border-top: 1px solid var(--light-charcoal);
  padding-top: 2rem;
  text-align: center;
}

.footer-copyright {
  color: var(--light-gray);
  font-size: 0.9rem;
}

/* Breadcrumbs */
.breadcrumb-section {
  background: var(--light-gray);
  padding: 2rem 0;
  margin-top: 80px;
}

.breadcrumb-image {
  width: 100%;
  max-width: 200px;
  height: auto;
  margin: 0 auto;
  display: block;
}

/* Space Page */
.space-container {
  min-height: calc(100vh - 160px);
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--light-gray) 0%, var(--white) 100%);
  margin-top: 80px;
}

#space {
  width: 100%;
  max-width: 1200px;
  min-height: 400px;
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  padding: 3rem;
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }

.d-none { display: none; }
.d-block { display: block; }
.d-flex { display: flex; }

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.slide-in-left {
  animation: slideInLeft 0.6s ease-out;
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.slide-in-right {
  animation: slideInRight 0.6s ease-out;
} 