/* CSS Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  line-height: 1.6;
  color: #0B3C36;
  background-color: #F3EDE5;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Color Variables */
:root {
  --primary-dark: #003D3D;
  --primary-light: #F3EDE5;
  --accent-orange: #E1640A;
  --accent-orange-light: #FF9C3A;
  --light-blue: #E8F4F3;
  --white: #FFFFFF;
  --text-dark: #003D3D;
  --text-light: #5E756D;
  --shadow: rgba(11, 60, 54, 0.1);
}

/* Typography */
h1, h2, h3, h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 120px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-orange), var(--accent-orange-light));
  color: var(--white);
  box-shadow: 0 4px 12px rgba(225, 100, 10, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(225, 100, 10, 0.4);
}

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

.btn-secondary:hover {
  background-color: #0a332e;
}

.btn-outline {
  background-color: var(--white);
  color: var(--primary-dark);
  border: 2px solid var(--primary-dark);
}

.btn-outline:hover {
  background-color: var(--primary-dark);
  color: var(--white);
}

.btn-large {
  padding: 16px 32px;
  font-size: 18px;
  min-width: 160px;
}

/* Header */
.header {
  width: 100%;
  height: 106px;
  padding: 9px 84px;
  background: #F3EDE5;
  position: relative;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(11, 60, 54, 0.1);
}

.header-content {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  width: 100%;
  height: 100%;
  max-width: 1272px;
  margin: 0 auto;
  gap: 40px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-self: start;
}

.logo-icon {
  width: 68.54px;
  height: 60px;
}

.logo-text {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 54px;
  letter-spacing: 5.4px;
  color: var(--text-dark);
}

.nav {
  display: flex;
  gap: 48px;
  justify-content: center;
  align-items: center;
  justify-self: center;
  margin: 0 auto;
}

.nav-link {
  color: var(--text-dark);
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 16px;
  transition: color 0.3s ease;
  white-space: nowrap;
}

.nav-link:hover {
  color: var(--accent-orange);
}

.header-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-self: end;
}

/* Hamburger Menu */
.hamburger-menu {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

.hamburger-menu span {
  display: block;
  width: 24px;
  height: 3px;
  background-color: var(--text-dark);
  margin: 2px 0;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.hamburger-menu.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

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

.hamburger-menu.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* Hero Section */
.hero {
  background-color: var(--primary-dark);
  padding: 20px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-header {
  color: var(--Cream, #F3EDE5);
  text-align: center;
  font-family: Inter;
  font-size: var(--Static-Display-Medium-Size, 45px);
  font-style: normal;
  font-weight: 400;
  line-height: var(--Static-Display-Medium-Line-Height, 52px); /* 115.556% */
  letter-spacing: var(--Static-Display-Medium-Tracking, 0);
  margin-bottom: 10px;
  margin-top: 20px;
}

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

.carousel-track {
  position: relative;
  width: 100%;
  height: 600px;
  overflow: hidden;
  border-radius: 12px;
}

.carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-slide.active {
  opacity: 1;
}

.carousel-slide img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
  /*box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);*/
}

.carousel-indicators {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
}

.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.indicator.active {
  background-color: var(--white);
}

.indicator:hover {
  background-color: rgba(255, 255, 255, 0.6);
}

/* Dashboard Section */
.dashboard-section {
  padding: 60px 0;
  background-color: var(--primary-light);
  position: relative;
}

.section-title {
  color: var(--Dark-Green, #003D3D);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 48px;
  text-align: center;
  margin-bottom: 40px;
}

.dashboard-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('assets/svgs/services_bkgnd_line_art.svg');
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  opacity: 0.3;
  z-index: 1;
}

.dashboard-section .container {
  position: relative;
  z-index: 2;
}

.dashboard-container {
  text-align: center;
}

.dashboard-image {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
 /* box-shadow: 0 20px 60px rgba(11, 60, 54, 0.15);*/
}

/* Features Section */
.features-section {
  padding: 10px 0;
  background-color: var(--primary-light);
  position: relative;
}

.features-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('assets/svgs/services_bkgnd_line_art.svg');
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  opacity: 0.3;
  z-index: 1;
}

.features-section .container {
  position: relative;
  z-index: 2;
}

.features-intro {
  text-align: center;
  margin-bottom: 80px;
}

.features-intro h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: clamp(32px, 4vw, 48px);
  color: var(--text-dark);
  margin-bottom: 24px;
}

.features-intro p {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 18px;
  color: var(--text-dark);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-card {
 /* background-color: var(--white);*/
  padding: 40px 32px;
  border-radius: 12px;
  text-align: left;
 /* box-shadow: 0 8px 24px rgba(11, 60, 54, 0.08);*/
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(11, 60, 54, 0.12);
}


.feature-title {
  color: var(--Dark-Green, #003D3D);

/* Headline Sm Bold */
font-family: Inter;
font-size: var(--Static-Headline-Small-Size, 24px);
font-style: normal;
font-weight: 500;
line-height: var(--Static-Headline-Small-Line-Height, 32px); /* 133.333% */
letter-spacing: var(--Static-Headline-Small-Tracking, 0);
margin-bottom: 20px;
}

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

.feature-list li {
  margin-bottom: 12px;
  color: var(--text-dark);
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.feature-list li:last-child {
  margin-bottom: 0;
}

.feature-list .feature-icon {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  margin-top: 2px;
}

/* CTA Section */
.cta-section {
  display: flex;
  /*width: 1440px;*/
  padding: 67.5px 79px 66.5px 79px;
  justify-content: center;
  align-items: center;
  background: linear-gradient(180deg, #003D3D 7.25%, #00A3A3 100%);
}

.cta-content {
  border-radius: 20px;
  border: 2px solid var(--accent-orange-light);
  display: flex;
  width: 1160px;
  padding: 40px 0;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 30px;
  flex-shrink: 0;
}

.cta-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: clamp(36px, 4vw, 48px);
  color: var(--white);
  line-height: 1.2;
  margin: 0;
}

.cta-subtitle {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  max-width: 600px;
  text-align: center;
  margin: 0;
}

/* Team Section */
.team-section {
  padding: 60px 0;
  background-color: var(--light-blue);
  position: relative;
}

.team-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('assets/svgs/bio_bkgnd_line_art.svg');
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  opacity: 0.4;
  z-index: 1;
}

.team-section .container {
  position: relative;
  z-index: 2;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 60px;
  align-items: start;
}

.team-member {
  display: flex;
  gap: 32px;
  align-items: flex-start;
}

.member-image {
  flex-shrink: 0;
}

.member-image img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
}

.member-info {
  flex: 1;
}

.member-name {
  font-size: 24px;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.member-description {
  color: var(--text-dark);
  line-height: 1.6;
}

/* Footer */
.footer {
  background-color: #F3EDE5;
  padding: 60px 0 40px;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 60px;
}

.footer-brand .logo-text {
  color: var(--text-dark);
  font-family: Montserrat;
font-size: 54px;
font-style: normal;
font-weight: 500;
line-height: normal;
letter-spacing: 5.4px;
}

.footer-brand .logo-icon {
  /*filter: brightness(0) saturate(100%) invert(18%) sepia(15%) saturate(1000%) hue-rotate(158deg) brightness(95%) contrast(86%);*/
}

.footer-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  text-decoration: underline;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: var(--text-dark);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--accent-orange);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-dark);
}

.contact-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.social-link {
  margin-top: 20px;
}

.follow-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-dark);
  text-decoration: none;
  transition: color 0.3s ease;
}

.follow-link:hover {
  color: var(--accent-orange);
}

.social-icon {
  width: 20px;
  height: 20px;
  background-color: var(--primary-dark);
  margin-left: 5px;
  box-shadow: 0 0 0 5px var(--primary-dark);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .container {
    padding: 0 16px;
  }
  
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  
  .team-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .header {
    padding: 9px 20px;
  }
  
  .header-content {
    position: relative;
    gap: 20px;
  }
  
  .logo {
    margin-left: 0;
  }
  
  .hamburger-menu {
    display: flex;
    justify-self: end;
  }
  
  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--primary-light);
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(11, 60, 54, 0.1);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    display: flex;
    width: 100%;
  }
  
  .nav.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    display: flex;
    flex-direction: column;
  }
  
  .nav .nav-link {
    padding: 12px 0;
    border-bottom: 1px solid rgba(11, 60, 54, 0.1);
    display: block !important;
    text-align: center;
    color: var(--text-dark) !important;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 16px;
    width: 100%;
    visibility: visible !important;
    opacity: 1 !important;
  }
  
  .nav .nav-link:last-child {
    border-bottom: none;
  }
  
  .nav .nav-link:hover {
    color: var(--accent-orange) !important;
  }
  
  .header-actions {
    position: absolute;
    top: calc(100% + 140px);
    left: 0;
    right: 0;
    background-color: var(--primary-light);
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(11, 60, 54, 0.1);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    gap: 12px;
    display: flex;
    width: 100%;
  }
  
  .header-actions.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    display: flex;
  }
  
  .hero {
    padding: 80px 0 60px;
  }
  
  .hero-title {
    margin-bottom: 40px;
  }
  .carousel-track {
    height: 300px;
  } 
  
  .dashboard-section,
  .features-section,
  .cta-section,
  .team-section {
    padding: 60px 0;
  }
  
  div.cta-section {
    width: 400px;
  }
  div.cta-content {
    width: 400px;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .feature-card {
    padding: 32px 24px;
  }
  
  .team-member {
    flex-direction: column;
    text-align: center;
    gap: 24px;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }
  
  .contact-info {
    align-items: center;
  }
}

@media (max-width: 480px) {
  .nav {
    flex-direction: column;
    gap: 16px;
  }
  
  .header-actions {
    flex-direction: column;
    width: 100%;
  }
  
  .btn {
    width: 90%;
    justify-content: center;
  }
  
  .hero-title {
    font-size: 28px;
  }
  
  .cta-title {
    font-size: 24px;
  }
  
  .member-name {
    font-size: 20px;
  }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Focus styles for accessibility */
.btn:focus,
.nav-link:focus,
.footer-links a:focus {
  outline: 2px solid var(--accent-orange);
  outline-offset: 2px;
}