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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background: white;
}

/* Container Utilities */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container-small {
  max-width: 896px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Header */
.header {
  border-bottom: 1px solid #e5e7eb;
  background: white;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.logo {
  font-size: 1.5rem;
  font-weight:600;
  color: #ea5b0c;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-link {
  font-size: 0.875rem;
  color: #4b5563;
  text-decoration: none;
  transition: color 0.2s;
}

.nav-link:hover {
  color: #111827;
}

.nav-link.active {
  color: #111827;
  font-weight: 500;
  border-bottom: 2px solid #ea5b0c;
  padding-bottom: 0.25rem;
}

.icon-btn {
  background: none;
  border: none;
  color: #4b5563;
  cursor: pointer;
  padding: 0.5rem;
  transition: color 0.2s;
}

.icon-btn:hover {
  color: #111827;
}

/* Breadcrumb */
.breadcrumb {
  background: #000;
  color: white;
  font-size: 0.75rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid #e5e7eb;
}

/* Hero Section */
.hero-section {
  position: relative;
  height: 75vh;
  overflow: hidden;
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgb(0 0 0), rgb(0 0 0 / 39%));
}

.hero-content {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  z-index: 10;
}

.hero-text {
  max-width: 36rem;
}

.hero-subtitle {
  font-size: 1.125rem;
  color: white;
  margin-bottom: 0.5rem;
}

.hero-title {
  font-size: 4.5rem;
  font-weight: 400;
  color: white;
  line-height: 1.1;
  margin: 0;
}

.hero-tagline {
  font-size: 1.5rem;
  color: white;
  font-weight: 300;
}

/* Sections */
.section {
  padding: 5rem 80px;
}

.section-alt {
  background: #f9fafb;
}

.section-title {
  font-size: 2.25rem;
  font-weight: 400;
  color: #111827;
  margin-bottom: 1.5rem;
}

.section-text {
  color: #4b5563;
  margin:auto;
  line-height: 1.75;
  margin-bottom: 2rem;
}

.section-intro {
  max-width: 48rem;
  margin-bottom: 3rem;
}

/* Two Column Layout */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.content-image {
  width: 100%;
  height: auto;
  border-radius: 2px;
}

/* Video Wrapper */
.video-wrapper {
  position: relative;
}

.play-button {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: #ea5b0c;
  padding: 1rem;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.2s;
}

.play-button:hover {
  background: #d14f09;
}

/* Buttons */
.btn-secondary {
  display: inline-flex;
  align-items: center;
  padding: 0.75rem 1.5rem;
  border: 1px solid #333;
  background: transparent;
  color: #333;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-secondary:hover {
  background: #333;
  color: white;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  padding: 0.875rem 2rem;
  border: none;
  background: #ea5b0c;
  color: white;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  border-radius: 2px;
}

.btn-primary:hover {
  background: #d14f09;
}

.btn-icon {
  margin-left: 0.5rem;
}

/* Tabs */
.tabs {
  border-bottom: 1px solid #d1d5db;
  margin-bottom: 3rem;
  display: flex;
  gap: 2rem;
}

.tab {
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  padding-bottom: 0.75rem;
  font-size: 0.875rem;
  color: #6b7280;
  cursor: pointer;
  transition: all 0.2s;
}

.tab:hover {
  color: #111827;
}

.tab-active {
  color: #111827;
  font-weight: 500;
  border-bottom-color: #ea5b0c;
}

/* Value List */
.value-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.value-item {
  display: flex;
  gap: 0.75rem;
}

.bullet {
  color: #ea5b0c;
  font-weight:600;
  margin-top: 0.25rem;
}

/* Values Section */
.values-header {
  text-align: center;
  margin-bottom: 4rem;
}

.values-grid {
  max-width:1100px;
  margin:auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.value-card {
  background: white;
  padding: 2rem;
  border-radius: 2px;
  border: 1px solid #e5e7eb;
  transition: all 0.3s;
}

.value-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.value-card-icon {
  color: #ea5b0c;
  margin-bottom: 1.5rem;
}

.value-card-title {
  font-size: 1.25rem;
  font-weight: 500;
  color: #111827;
  margin-bottom: 0.75rem;
}

.value-card-text {
  color: #4b5563;
  line-height: 1.6;
  font-size: 0.9375rem;
}

.values-image {
  max-width: 800px;
  margin: 0 auto;
}

/* Contact Form */
.form-header {
  text-align: center;
  margin-bottom: 3rem;
}

.contact-form {
  background: white;
  padding: 3rem;
  border-radius: 2px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

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

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: #374151;
  margin-bottom: 0.5rem;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #d1d5db;
  border-radius: 2px;
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.2s;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: transparent;
  box-shadow: 0 0 0 2px #ea5b0c;
}

.form-textarea {
  resize: none;
}

.form-submit {
  display: flex;
  justify-content: center;
}

/* Order Utilities */
.order-1 {
  order: 2;
}

.order-2 {
  order: 1;
}

/* Responsive Design */
@media (max-width: 768px) {

  .section{
    padding: 2.5rem 0px;
  }
  .nav {
    display: none;
  }

  .hero-section {
    height: 80vh;
  }

  .hero-title {
    font-size: 3rem;
  }

  .two-col {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .order-1 {
    order: 1;
  }

  .order-2 {
    order: 2;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 2rem;
  }

  .tabs {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .values-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .value-card {
    padding: 1.5rem;
  }
}
