/* Global Variables */
:root {
  --primary-color: #ffc129;
  --secondary-color: #301e78;
  --dark-bg: #121622;
  --light-bg: #f5f5f7;
  --text-light: #ffffff;
  --text-dark: #121622;
  --text-gray: #888888;
}

/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen,
    Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

html, body {
  height: 100%;
}

body {
  background-color: var(--dark-bg);
  color: var(--text-light);
  line-height: 1.6;
}

/* Layout */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Header & Navigation */
.fixed-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(18, 22, 34, 0.8);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.fixed-header.scrolled {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  background-color: rgba(18, 22, 34, 0.95);
}

header nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
}

.logo a {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text-light);
}

.logo-text {
  background: linear-gradient(45deg, var(--primary-color), #ff9d00);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  color: var(--text-light);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

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

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  background: transparent;
  border: none;
  cursor: pointer;
}

.mobile-menu-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: var(--text-light);
  transition: all 0.3s ease;
}

/* Main Content */
main {
  margin-top: 80px; /* Header height */
  min-height: calc(100vh - 80px - 200px); /* 100vh - header - footer approximate heights */
}

/* Footer */
footer {
  background-color: rgba(18, 22, 34, 0.95);
  padding: 4rem 0 2rem;
}

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

.footer-logo-container {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 0.5rem;
}

.footer-logo p {
  color: var(--text-gray);
  margin-top: 1rem;
  max-width: 300px;
}

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

.link-group h3 {
  color: var(--text-light);
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.link-group a {
  display: block;
  color: var(--text-gray);
  margin-bottom: 0.5rem;
  text-decoration: none;
  transition: color 0.2s ease;
}

.link-group a:hover {
  color: var(--primary-color);
}

.footer-bottom {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  color: var(--text-gray);
  font-size: 0.9rem;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

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

.btn-primary:hover {
  background-color: #ffce63;
  transform: translateY(-2px);
}

.btn-outline {
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-outline:hover {
  background-color: rgba(255, 193, 41, 0.1);
  transform: translateY(-2px);
}

.btn-text {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  transition: all 0.2s ease;
}

.btn-text span {
  margin-left: 0.5rem;
  transition: transform 0.2s ease;
}

.btn-text:hover span {
  transform: translateX(5px);
}

/* Hero Section */
.hero {
  padding: 6rem 0 4rem;
  position: relative;
  overflow: hidden;
}

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

.hero-content h1 {
  font-size: 3.5rem;
  line-height: 1.1;
  font-weight: 800;
  margin-bottom: 1.5rem;
  background: linear-gradient(45deg, var(--text-light), #a5a5a5);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-content p {
  font-size: 1.25rem;
  color: var(--text-gray);
  margin-bottom: 2.5rem;
  max-width: 90%;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
}

.hero-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.geometric-shapes {
  position: relative;
  width: 400px;
  height: 400px;
}

.shape {
  position: absolute;
  border-radius: 12px;
}

.shape-1 {
  width: 150px;
  height: 150px;
  background: linear-gradient(45deg, var(--primary-color), #ff9d00);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(15deg);
  box-shadow: 0 10px 30px rgba(255, 193, 41, 0.3);
  animation: float 6s ease-in-out infinite;
}

.shape-2 {
  width: 100px;
  height: 100px;
  background: linear-gradient(45deg, #3c1f91, var(--secondary-color));
  top: 25%;
  right: 25%;
  transform: rotate(-15deg);
  box-shadow: 0 10px 30px rgba(48, 30, 120, 0.3);
  animation: float 8s ease-in-out infinite 1s;
}

.shape-3 {
  width: 80px;
  height: 80px;
  background: linear-gradient(45deg, #444, #222);
  bottom: 25%;
  left: 25%;
  transform: rotate(45deg);
  opacity: 0.8;
  animation: float 7s ease-in-out infinite 0.5s;
}

.shape-4 {
  width: 120px;
  height: 120px;
  border: 3px solid var(--primary-color);
  background: transparent;
  bottom: 15%;
  right: 15%;
  transform: rotate(30deg);
  opacity: 0.6;
  animation: float 9s ease-in-out infinite 1.5s;
}

@keyframes float {
  0% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(5deg);
  }
  100% {
    transform: translateY(0) rotate(0deg);
  }
}

/* Services Section */
.services-section {
  padding: 6rem 0;
  position: relative;
}

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

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  background: linear-gradient(45deg, var(--text-light), #a5a5a5);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section-header p {
  font-size: 1.1rem;
  color: var(--text-gray);
  max-width: 700px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

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

/* Service Card */
.service-card {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  border-radius: 12px;
  padding: 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.2);
}

.service-card .icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.service-card h3 {
  color: var(--text-light);
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.service-card p {
  color: var(--text-gray);
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

/* Features Section */
.why-us-section {
  padding: 6rem 0;
  background: linear-gradient(180deg, var(--dark-bg) 0%, rgba(18, 22, 34, 0.9) 100%);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  border-radius: 12px;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.3s ease;
}

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

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.feature-card h3 {
  font-size: 1.5rem;
  color: var(--text-light);
  margin-bottom: 1rem;
}

.feature-card p {
  color: var(--text-gray);
}

/* CTA Section */
.cta-section {
  padding: 6rem 0;
  background: linear-gradient(45deg, rgba(48, 30, 120, 0.8), rgba(18, 22, 34, 0.9));
  text-align: center;
}

.cta-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--text-light);
}

.cta-content p {
  font-size: 1.25rem;
  color: var(--text-gray);
  margin-bottom: 2rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Page Header */
.page-header {
  padding: 8rem 0 4rem;
  background: linear-gradient(45deg, rgba(18, 22, 34, 0.95), rgba(48, 30, 120, 0.8));
  text-align: center;
}

.page-header h1 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: var(--text-light);
}

.page-header p {
  font-size: 1.25rem;
  color: var(--text-gray);
  max-width: 800px;
  margin: 0 auto;
}

/* Service Detail Page */
.service-icon {
  font-size: 4rem;
  margin-bottom: 2rem;
}

.service-content {
  padding: 6rem 0;
}

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

.service-description h2 {
  font-size: 2rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
  margin-top: 3rem;
}

.service-description h2:first-child {
  margin-top: 0;
}

.service-description p {
  color: var(--text-gray);
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  line-height: 1.7;
}

.service-description ul {
  padding-left: 1.5rem;
  margin-bottom: 2rem;
}

.service-description li {
  color: var(--text-gray);
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
  line-height: 1.5;
}

/* MVP CTA Section for Service Pages */
.mvp-cta {
  margin-top: 3rem;
  padding: 2rem;
  background: linear-gradient(145deg, rgba(255, 193, 41, 0.1), rgba(255, 193, 41, 0.05));
  border-radius: 12px;
  border: 1px solid rgba(255, 193, 41, 0.2);
  text-align: center;
}

.mvp-cta h2 {
  color: var(--text-light);
  margin-bottom: 1rem;
  font-size: 1.8rem;
}

.mvp-cta p {
  color: var(--text-gray);
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.service-features {
  margin-top: 3rem;
}

.service-features h2 {
  font-size: 2rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.feature-list {
  list-style: none;
  padding: 0;
}

.feature-list li {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
  color: var(--text-gray);
  font-size: 1.1rem;
}

.feature-list li svg {
  color: var(--primary-color);
  min-width: 24px;
  margin-right: 1rem;
}

.sidebar {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.contact-card, .related-services, .info-card, .values-card {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  border-radius: 12px;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-card h3, .related-services h3, .info-card h3, .values-card h3 {
  font-size: 1.5rem;
  color: var(--text-light);
  margin-bottom: 1rem;
}

.contact-card p, .info-card p {
  color: var(--text-gray);
  margin-bottom: 1.5rem;
}

.related-services ul, .info-list, .hours-list, .values-list {
  list-style: none;
  padding: 0;
}

.related-services li {
  margin-bottom: 1rem;
}

.related-services a {
  display: flex;
  align-items: center;
  color: var(--text-gray);
  text-decoration: none;
  transition: color 0.3s ease;
}

.related-services a:hover {
  color: var(--primary-color);
}

.related-icon {
  margin-right: 0.75rem;
  font-size: 1.2rem;
}

/* Contact Page */
.contact-section {
  padding: 6rem 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 3rem;
}

.contact-form h2 {
  font-size: 2rem;
  font-weight: 700;
}

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

.form-group.full-width {
  grid-column: span 2;
}

label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--text-light);
  font-weight: 500;
}

input, select, textarea {
  width: 100%;
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  color: var(--text-light);
  font-size: 1rem;
}

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--primary-color);
}

.info-card {
  margin-bottom: 2rem;
}

.info-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.info-list .icon {
  font-size: 1.5rem;
  margin-right: 1rem;
}

.info-list h4 {
  color: var(--text-light);
  margin: 0 0 0.25rem;
  font-size: 1.1rem;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.75rem;
  color: var(--text-gray);
}

.social-media h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.social-icons {
  display: flex;
  gap: 1rem;
}

.social-icons a {
  background: rgba(255, 255, 255, 0.05);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  transition: all 0.3s ease;
}

.social-icons a:hover {
  background: var(--primary-color);
  color: var(--text-dark);
  transform: translateY(-3px);
}

/* About Page */
.about-section {
  padding: 6rem 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
}

.about-content h2 {
  font-size: 2rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
  margin-top: 3rem;
}

.about-content h2:first-child {
  margin-top: 0;
}

.about-content p {
  color: var(--text-gray);
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  line-height: 1.7;
}

.values-card {
  height: fit-content;
  position: sticky;
  top: 100px;
}

.values-list li {
  display: flex;
  margin-bottom: 1.5rem;
}

.value-icon {
  font-size: 2rem;
  margin-right: 1rem;
  min-width: 2rem;
}

.value-content h4 {
  color: var(--text-light);
  margin: 0 0 0.5rem;
  font-size: 1.25rem;
}

.value-content p {
  color: var(--text-gray);
  margin: 0;
  font-size: 1rem;
}

.team-section {
  padding: 6rem 0;
  background: linear-gradient(180deg, var(--dark-bg) 0%, rgba(18, 22, 34, 0.9) 100%);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 3rem;
}

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

.member-image {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
  margin: 0 auto 1.5rem;
  position: relative;
  overflow: hidden;
}

.team-member h3 {
  font-size: 1.5rem;
  color: var(--text-light);
  margin-bottom: 0.5rem;
}

.member-title {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1rem;
}

.member-bio {
  color: var(--text-gray);
  font-size: 1rem;
  line-height: 1.6;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .hero .container, .content-grid, .about-grid {
    grid-template-columns: 1fr;
  }
  
  .hero-image {
    order: -1;
  }
  
  .geometric-shapes {
    width: 300px;
    height: 300px;
  }
  
  .sidebar, .values-card {
    margin-top: 3rem;
  }
  
  .values-card {
    position: static;
  }
  
  .team-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 80px;
    left: 0;
    flex-direction: column;
    width: 100%;
    background-color: var(--dark-bg);
    padding: 2rem;
    gap: 1.5rem;
    transform: translateY(-150%);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 999;
  }

  .nav-links.active {
    transform: translateY(0);
    opacity: 1;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .mobile-menu-toggle.active span:first-child {
    transform: rotate(45deg) translate(6px, 6px);
  }

  .mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .mobile-menu-toggle.active span:last-child {
    transform: rotate(-45deg) translate(6px, -6px);
  }

  .footer-content, .footer-links, .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-info {
    margin-top: 2rem;
  }

  .hero-content h1, .page-header h1 {
    font-size: 2.5rem;
  }
  
  .hero-content p, .page-header p {
    font-size: 1.1rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .geometric-shapes {
    width: 250px;
    height: 250px;
  }
  
  .section-header h2, .cta-content h2, .service-description h2, .service-features h2 {
    font-size: 2rem;
  }
  
  .services-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  }
  
  .about-content h2, .contact-form h2 {
    font-size: 1.75rem;
  }
  
  .cta-content p {
    font-size: 1.1rem;
  }
}

@media (max-width: 576px) {
  .hero-content h1 {
    font-size: 2rem;
  }
}
