@import url('https://fonts.googleapis.com/css2?family=Lora:wght@400;500;600&display=swap');

:root {
  --primary-color: #424242;
  --surface-color: #ffffff;
  --brand-color: #083D77;
  --accent-color: #F4D35E;
  --secondary-color: #495057;
  --light-gray: #f8f9fa;
  --border-color: #dee2e6;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  line-height: 1.6;
}

body {
  color: var(--primary-color);
  background-color: var(--surface-color);
  font-family: 'Lora', serif;
  font-weight: 400;
  padding-top: 100px; /* Account for sticky header */
}

h1, h2, h3, h4, h5, h6 {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

h2 {
  font-size: 2rem;
  color: var(--brand-color);
  margin-bottom: 1.5rem;
}

h3 {
  font-size: 1.5rem;
  color: var(--secondary-color);
  font-weight: 500;
  margin-bottom: 1rem;
}

h4 {
  font-size: 1.25rem;
  color: var(--secondary-color);
  font-weight: 500;
  margin-bottom: 1rem;
  letter-spacing: 0.2rem;
}

p {
  font-size: 1.125rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  color: var(--secondary-color);
}

.text-centered {
  text-align: center;
}

.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
}

section {
  padding: 3rem 0;
  text-align: center;
}

section.container {
  margin-bottom: 4rem;
}

section:first-child {
  padding-top: 6rem;
}

.hero-section {
  padding: 2rem 0 4rem;
}

.image {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.flex {
  display: flex;
}

.flex-row {
  flex-direction: row;
  align-items: flex-start;
  gap: 3rem;
}

.flex-fourty-percent {
  flex: 0 0 40%;
}

.flex-1 {
  flex: 1;
}

.card {
  background: white;
  border-radius: 12px;
  padding: 3rem 2rem 2rem;
  margin: 2rem 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: relative;
}

.card::before {
  content: '"';
  font-size: 4rem;
  color: var(--brand-color);
  font-family: Georgia, serif;
  position: absolute;
  top: 0.5rem;
  left: 1.5rem;
  line-height: 1;
  opacity: 0.3;
}

quote {
  font-style: italic;
  font-size: 1.25rem;
  line-height: 1.8;
  display: block;
  margin: 1.5rem 0;
  color: var(--primary-color);
  font-weight: 400;
}

.card quote {
  font-style: italic;
  font-size: 1.25rem;
  line-height: 1.8;
  display: block;
  margin-bottom: 1.5rem;
  color: var(--primary-color);
  font-weight: 400;
}

.card .attribution-text {
  text-align: left;
}

.card .attribution-author, .card .attribution-author-title {
  font-weight: 500;
  color: var(--brand-color);
  font-style: normal;
}

.card .attribution-author {
  font-size: 1rem;
}

.card .attribution-author:before {
  content: "— ";
}

.card .attribution-author-title {
  font-size: 0.85rem;
  margin-left: 1rem;
}

.reference-attribution {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.attribution-left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.avatar-placeholder {
  flex-shrink: 0;
  border-radius: 50%;
}

.company-logo {
  opacity: 0.7;
  filter: grayscale(100%);
  transition: opacity 0.3s ease, filter 0.3s ease;
}

.company-logo:hover {
  opacity: 1;
  filter: grayscale(0%);
}

.mock-reference {
  position: relative;
}

.mock-label {
  position: absolute;
  top: 10px;
  right: 15px;
  background: var(--accent-color);
  color: var(--primary-color);
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

ul {
  padding: 0;
}

ul.contact-info {
  list-style: none;
}

li {
  font-size: 1.125rem;
  line-height: 1.7;
  margin-bottom: 1rem;
  padding-left: 1.5rem;
  position: relative;
  color: var(--secondary-color);
}

li::before {
  color: var(--brand-color);
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
}

li.contact-info-item:before {
  transform: translateX(-1rem);
}


li.contact-phone::before {
  content: "📞";
}

li.contact-email::before {
  content: "✉️";
}

li.contact-linkedin::before {
  content: "🔗";
}

.mt-2 {
  margin-top: 2rem;
}

.mb-3 {
  margin-bottom: 3rem;
}

/* Video Section */
.video-section {
  padding: 4rem 0;
}

.video-player {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Carousel Styles */
.carousel {
  position: relative;
}

.carousel-container {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.carousel-container::-webkit-scrollbar {
  display: none;
}

.carousel-slide {
  flex: none;
  width: 100%;
  scroll-snap-align: start;
}

.carousel-controls {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.control-btn {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--border-color);
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.control-btn:hover {
  background: var(--secondary-color);
  transform: scale(1.1);
}

.control-btn.active {
  background: var(--brand-color);
  transform: scale(1.2);
}

@media (max-width: 768px) {
  .container {
    padding: 0 1rem;
  }

  .flex-row {
    flex-direction: column;
    gap: 2rem;
  }

  .flex-third,
  .flex-two-thirds {
    flex: 1;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  section {
    padding: 3rem 0;
  }

  section.container {
    margin-bottom: 3rem;
  }

  section:first-child {
    padding-top: 4rem;
  }
}

/* Header Styles */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: white;
  border-radius: 0 0 30px 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}


.header-content {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem;
  height: 70px;
}

.logo-link {
  font-family: 'Lora', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
  cursor: pointer;
}

.logo-link:hover {
  color: var(--brand-color);
}

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

.nav-link {
  color: var(--primary-color);
  text-decoration: none;
  font-family: 'Lora', serif;
  font-size: 1.1rem;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

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

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--brand-color);
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.hamburger {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  width: 30px;
  height: 24px;
  justify-content: space-between;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 3px;
  background: var(--primary-color);
  border-radius: 2px;
  transition: all 0.3s ease;
}

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

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

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

.nav-mobile {
  display: none;
  flex-direction: column;
  background: white;
  padding: 1rem 2rem 2rem;
  gap: 1rem;
  border-top: 1px solid var(--border-color);
}

.nav-mobile.active {
  display: flex;
}

.nav-mobile .nav-link {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.nav-mobile .nav-link:last-child {
  border-bottom: none;
}

.contact-info {
  width: fit-content;
  margin: 0 auto;
}

/* Form Styles */
.contact-form {
  margin: 0 auto 2rem;
  padding: 2rem;
  background: var(--light-gray);
  border-radius: 12px;
  border-left: 4px solid var(--brand-color);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.form-row {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.form-field {
  flex: 1;
  margin-bottom: 1.5rem;
}

.form-field label {
  display: block;
  font-family: 'Lora', serif;
  font-weight: 500;
  font-size: 1.125rem;
  color: var(--secondary-color);
  margin-bottom: 0.5rem;
}

.form-field input,
.form-field textarea {
  width: 100%;
  padding: 1rem;
  border: 2px solid var(--border-color);
  border-radius: 8px;
  font-family: 'Lora', serif;
  font-size: 1rem;
  color: var(--primary-color);
  background: white;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--brand-color);
  box-shadow: 0 0 0 3px rgba(8, 61, 119, 0.1);
}

.form-field textarea {
  min-height: 120px;
  resize: vertical;
}

.submit-btn {
  background: var(--brand-color);
  color: white;
  border: none;
  border-radius: 8px;
  padding: 1rem 2rem;
  font-family: 'Lora', serif;
  font-size: 1.125rem;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
  display: block;
  margin: 1rem auto 0;
}

.submit-btn:hover {
  background: #0a4a8a;
  transform: translateY(-2px);
}

.submit-btn:active {
  transform: translateY(0);
}

@media (max-width: 768px) {
  .nav-desktop {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  body {
    padding-top: 80px;
  }

  .header-content {
    height: 60px;
    padding: 1rem;
  }

  .contact-form {
    padding: 1.5rem;
    margin: 1.5rem auto 0;
  }

  .form-row {
    flex-direction: column;
    gap: 0;
  }

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