:root {
  /* Updated color scheme with warm orange accent */
  --background: oklch(0.99 0.005 85);
  --foreground: oklch(0.15 0.01 85);
  --card: oklch(1 0 0);
  --card-foreground: oklch(0.15 0.01 85);
  --popover: oklch(1 0 0);
  --popover-foreground: oklch(0.15 0.01 85);
  --primary: oklch(0.65 0.15 35);
  --primary-foreground: oklch(0.99 0.005 85);
  --secondary: oklch(0.96 0.01 85);
  --secondary-foreground: oklch(0.15 0.01 85);
  --muted: oklch(0.96 0.01 85);
  --muted-foreground: oklch(0.45 0.01 85);
  --accent: oklch(0.75 0.12 25);
  --accent-foreground: oklch(0.99 0.005 85);
  --orange-accent: #ff6b35;
  --destructive: oklch(0.577 0.245 27.325);
  --destructive-foreground: oklch(0.98 0.01 85);
  --border: oklch(0.92 0.01 85);
  --input: oklch(0.92 0.01 85);
  --ring: oklch(0.65 0.15 35);
  --chart-1: oklch(0.65 0.15 35);
  --chart-2: oklch(0.6 0.118 184.704);
  --chart-3: oklch(0.398 0.07 227.392);
  --chart-4: oklch(0.828 0.189 84.429);
  --chart-5: oklch(0.769 0.188 70.08);
  --radius: 0rem;
  --sidebar: oklch(0.985 0 0);
  --sidebar-foreground: oklch(0.145 0 0);
  --sidebar-primary: oklch(0.205 0 0);
  --sidebar-primary-foreground: oklch(0.985 0 0);
  --sidebar-accent: oklch(0.97 0 0);
  --sidebar-accent-foreground: oklch(0.205 0 0);
  --sidebar-border: oklch(0.922 0 0);
  --sidebar-ring: oklch(0.708 0 0);
}

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

@media (max-width: 767px) {
  html {
    overflow-y: scroll;
  }
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  font-size: 16px;
  padding-top: 5rem;
}

.main {
  min-height: 100vh;
}

.hero-section {
  position: relative;
  height: calc(100vh - 5rem);
  overflow: hidden;
  padding: 0;
}

@media (max-width: 767px) {
  .hero-section {
    height: calc(100svh - 5rem);
    max-height: calc(100vh - 5rem);
  }
}

.hero-slider {
  position: relative;
  overflow: hidden;
  height: 100%;
  width: 100%;
}

.slides-container {
  position: absolute;
  inset: 0;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  -webkit-transition: opacity 1s ease;
  transition: opacity 1s ease;
}

.slide.active {
  opacity: 1;
}

.slide-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.image-overlay {
  position: absolute;
  inset: 0;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.1)), to(rgba(0, 0, 0, 0.3)));
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.3));
  z-index: 1;
}

.hero-content {
  position: absolute;
  inset: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 2;
  max-width: 100%;
}

.hero-text {
  text-align: center;
  color: white;
  padding: 0 1.5rem;
}

.hero-title {
  font-size: 2rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 3rem;
  }
}

.hero-description {
  font-size: 1.125rem;
  font-weight: 300;
  letter-spacing: 0.05em;
  opacity: 0.9;
  max-width: 32rem;
  margin: 0 auto;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .hero-description {
    font-size: 1.25rem;
  }
}

.nav-arrow {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 10;
  width: 3rem;
  height: 3rem;
  background: rgba(255, 255, 255, 0.2);
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  border-radius: 50%;
  border: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: white;
  cursor: pointer;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}

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

.nav-arrow:hover {
  background: rgba(255, 255, 255, 0.3);
}

.nav-arrow i {
  width: auto;
  height: auto;
}

.nav-arrow-left {
  left: 1.5rem;
}

.nav-arrow-right {
  right: 1.5rem;
}

.slide-counter {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  z-index: 10;
  color: white;
  font-size: 0.875rem;
  font-weight: 300;
  letter-spacing: 0.1em;
}

.slide-indicators {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 10;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5rem;
}

.indicator {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: none;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.indicator:hover {
  background: rgba(255, 255, 255, 0.7);
}

.indicator.active {
  background: #ff6b35;
  width: 2rem;
}

.section-cta {
  text-align: right;
  margin-top: 4rem;
}

.cta-button {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 1rem 3rem;
  font-size: 1.125rem;
  font-weight: 500;
  color: black;
  border: 2px solid black;
  background: transparent;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
  border-radius: 8px;
}

.cta-button:hover {
  background: #ff6b35;
  color: white;
  border-color: #ff6b35;
}

.cta-button.white {
  color: white;
  border-color: white;
}

.cta-button.white:hover {
  background: #ff6b35;
  color: white;
  border-color: #ff6b35;
}

.news-section {
  background: white;
}

.news-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .news-grid {
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .news-grid {
    -ms-grid-columns: (1fr)[3];
        grid-template-columns: repeat(3, 1fr);
  }
}

.news-card {
  background: white;
  border-radius: 1rem;
  overflow: hidden;
  -webkit-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.news-card:hover {
  -webkit-box-shadow: 0 10px 15px -3px rgba(255, 107, 53, 0.15);
          box-shadow: 0 10px 15px -3px rgba(255, 107, 53, 0.15);
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}

.news-image {
  aspect-ratio: 16/9;
  overflow: hidden;
}

.news-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.news-card:hover .news-image img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.news-content {
  padding: 1.5rem;
}

.news-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.news-date {
  font-size: 0.875rem;
  color: #313131;
  font-weight: 500;
}

.news-category {
  font-size: 0.75rem;
  color: #ff6b35;
  background: rgba(255, 107, 53, 0.1);
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  font-weight: 500;
}

.news-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: black;
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.news-title a {
  color: #000;
}

.news-excerpt {
  font-size: 0.875rem;
  color: #313131;
  line-height: 1.6;
}

.services-flow-section {
  background: #f9fafb;
}

.services-content {
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .services-content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 2rem;
  }
}

.service-main {
  -webkit-box-flex: 2;
      -ms-flex: 2 1 0%;
          flex: 2 1 0%;
}

.service-card {
  background: white;
  border-radius: 1rem;
  padding: 2rem;
  -webkit-box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
          box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

@media (min-width: 1024px) {
  .service-card {
    padding: 3rem;
  }
}

.service-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.service-step {
  font-size: 2.25rem;
  font-weight: 700;
  color: black;
}

.service-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.service-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: black;
}

.service-duration {
  color: #313131;
}

.service-description {
  color: #313131;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.service-navigation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.service-indicators {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5rem;
}

.service-indicator {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  background: #d1d5db;
  border: none;
  cursor: pointer;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}

.service-indicator.active {
  background: #ff6b35;
}

.service-arrows {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5rem;
}

.service-arrow {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: transparent;
  border: 1px solid black;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.service-arrow:hover {
  background: #ff6b35;
  color: white;
  border-color: #ff6b35;
}

.service-arrow i {
  width: auto;
  height: auto;
}

.service-image {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 0%;
          flex: 1 1 0%;
}

.service-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 1rem;
  aspect-ratio: auto;
}

.service-steps {
  margin-bottom: 4rem;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .service-steps {
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .service-steps {
    -ms-grid-columns: (1fr)[5];
        grid-template-columns: repeat(5, 1fr);
  }
}

.service-step-card {
  text-align: left;
  padding: 1.5rem;
  border-radius: 0.75rem;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  background: white;
  cursor: pointer;
}

.service-step-card:hover {
  background: #fff5f1;
  -webkit-box-shadow: 0 1px 3px 0 rgba(255, 107, 53, 0.15);
          box-shadow: 0 1px 3px 0 rgba(255, 107, 53, 0.15);
}

.service-step-card.active {
  background: rgba(255, 107, 53, 0.05);
  border-color: #ff6b35;
}

.step-image {
  aspect-ratio: 4/3;
  border-radius: 0.5rem;
  overflow: hidden;
  margin-bottom: 1rem;
  display: none;
}

@media (min-width: 768px) {
  .step-image {
    display: block;
  }
}

.step-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.step-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.step-number {
  font-size: 1.125rem;
  font-weight: 700;
  color: black;
}

.step-name {
  font-weight: 600;
  color: black;
}

.step-duration {
  font-size: 0.875rem;
  color: #313131;
}

.company-section {
  position: relative;
  padding: 6rem 0;
  overflow: hidden;
}

.company-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
}

.company-content {
  position: relative;
  z-index: 10;
  max-width: 32rem;
  margin: 0 auto;
}

.company-info {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .company-info {
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
  }
}

.info-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 1rem;
}

.info-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.5rem;
}

.info-value {
  font-size: 1.25rem;
  font-weight: 600;
  color: white;
}

.works-section {
  background: white;
}

.works-grid,
.grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .works-grid,
  .grid {
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .works-grid,
  .grid {
    -ms-grid-columns: (1fr)[3];
        grid-template-columns: repeat(3, 1fr);
  }
}

.work-card {
  cursor: pointer;
  overflow: hidden;
  background: white;
  border-radius: 1rem;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.work-card:hover {
  -webkit-box-shadow: 0 25px 50px -12px rgba(255, 107, 53, 0.2);
          box-shadow: 0 25px 50px -12px rgba(255, 107, 53, 0.2);
  -webkit-transform: translateY(-4px);
          transform: translateY(-4px);
}

.work-image {
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 1rem 1rem 0 0;
}

.work-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}

.work-card:hover .work-image img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.work-content {
  padding: 1.5rem;
}

.work-category {
  font-size: 0.875rem;
  font-weight: 500;
  color: #313131;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.work-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: black;
  margin-top: 0.5rem;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

.work-title a {
  color: inherit;
  text-decoration: none;
}

.work-card:hover .work-title {
  color: #313131;
}

.work-excerpt {
  margin-top: 0.5rem;
  color: #313131;
  font-size: 0.875rem;
  line-height: 1.6;
}

.work-meta {
  margin-top: 0.75rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  font-size: 0.75rem;
  color: #313131;
}

.careers-section {
  background: linear-gradient(135deg, #fff5f1 0%, #ffe8df 100%);
}

.recruit-cards {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  gap: 2rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .recruit-cards {
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

.recruit-card {
  background: white;
  border-radius: 1rem;
  padding: 2rem;
  -webkit-box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.recruit-card:hover {
  -webkit-box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
          box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  -webkit-transform: translateY(-4px);
          transform: translateY(-4px);
}

.recruit-header {
  margin-bottom: 1.5rem;
}

.recruit-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #ff6b35;
  margin-bottom: 0.5rem;
}

.recruit-subtitle {
  font-size: 1.875rem;
  font-weight: 700;
  color: black;
  margin-bottom: 0;
}

.recruit-image-container {
  position: relative;
  margin-bottom: 1.5rem;
  border-radius: 0.75rem;
  overflow: hidden;
}

.recruit-image {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.75rem;
  -webkit-clip-path: ellipse(100% 100% at 50% 50%);
          clip-path: ellipse(100% 100% at 50% 50%);
}

.recruit-decoration {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.decoration-1 {
  width: 60px;
  height: 60px;
  background: #ff6b35;
  top: 10px;
  right: 20px;
  z-index: 2;
}

.decoration-2 {
  width: 80px;
  height: 80px;
  background: rgba(255, 107, 53, 0.3);
  top: 20px;
  left: -20px;
  z-index: 1;
}

.decoration-3 {
  width: 50px;
  height: 50px;
  background: #ff6b35;
  top: 50%;
  right: 30px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 2;
}

.decoration-4 {
  width: 70px;
  height: 70px;
  background: rgba(255, 107, 53, 0.3);
  top: 10px;
  right: -10px;
  z-index: 1;
}

.decoration-5 {
  width: 90px;
  height: 90px;
  background: rgba(255, 107, 53, 0.2);
  bottom: -30px;
  left: -30px;
  z-index: 1;
}

.recruit-description {
  font-size: 0.875rem;
  color: #313131;
  line-height: 1.6;
  margin: 0;
}

.partnership-section {
  position: relative;
  padding: 8rem 0;
  background: white;
  overflow: hidden;
}

.partnership-decoration {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0.1;
}

.decoration-left {
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, #10b981, #34d399);
  top: -150px;
  left: -150px;
  z-index: 1;
}

.decoration-right {
  width: 400px;
  height: 400px;
  background: linear-gradient(135deg, #f472b6, #fbbf24);
  bottom: -200px;
  right: -200px;
  z-index: 1;
}

.partnership-header {
  text-align: left;
  margin-bottom: 4rem;
  position: relative;
  z-index: 10;
}

.partnership-subtitle {
  font-size: 0.875rem;
  font-weight: 600;
  color: #ff6b35;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.partnership-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: black;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .partnership-title {
    font-size: 3rem;
  }
}

.partnership-description {
  font-size: 1rem;
  color: #313131;
  line-height: 1.7;
  max-width: 48rem;
  margin-left: 0;
  margin-right: auto;
}

.partnership-content {
  position: relative;
  z-index: 10;
  background: #f8fafc;
  border-radius: 1.5rem;
  padding: 3rem 2rem;
  margin: 0 auto;
  max-width: 72rem;
}

@media (min-width: 768px) {
  .partnership-content {
    padding: 4rem 3rem;
  }
}

.partnership-section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.partnership-section-title h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #ff6b35;
  margin-bottom: 0.5rem;
}

.title-underline {
  width: 60px;
  height: 3px;
  background: #ff6b35;
  margin: 0 auto;
  border-radius: 2px;
}

.partner-cards,
.partnership-cards {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .partner-cards,
  .partnership-cards {
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .partner-cards,
  .partnership-cards {
    -ms-grid-columns: (1fr)[3];
        grid-template-columns: repeat(3, 1fr);
  }
}

.partner-card {
  background: white;
  border-radius: 1rem;
  padding: 2rem;
  -webkit-box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.partner-card:hover {
  -webkit-box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
          box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  -webkit-transform: translateY(-4px);
          transform: translateY(-4px);
}

.partner-card-header {
  margin-bottom: 1.5rem;
}

.partner-type {
  display: inline-block;
  background: #ff6b35;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.partner-icon-container {
  position: relative;
  margin-bottom: 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 120px;
}

.partner-icon {
  width: 100px;
  height: 100px;
  background: #ffddcc;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  z-index: 3;
}

.icon-decoration {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.icon-1 {
  width: 20px;
  height: 20px;
  background: #ff6b35;
  top: 20px;
  right: 20px;
  z-index: 2;
}

.icon-2 {
  width: 15px;
  height: 15px;
  background: #ffa07a;
  top: 40px;
  left: 20px;
  z-index: 2;
}

.icon-3 {
  width: 25px;
  height: 25px;
  background: #ff8c5a;
  bottom: 20px;
  right: 30px;
  z-index: 2;
}

.icon-4 {
  width: 18px;
  height: 18px;
  background: #ffb894;
  top: 25px;
  left: 25px;
  z-index: 2;
}

.icon-5 {
  width: 22px;
  height: 22px;
  background: #ff6b35;
  top: 35px;
  right: 25px;
  z-index: 2;
}

.icon-6 {
  width: 16px;
  height: 16px;
  background: #ffa07a;
  bottom: 25px;
  left: 30px;
  z-index: 2;
}

.icon-7 {
  width: 24px;
  height: 24px;
  background: #ff8c5a;
  top: 15px;
  right: 15px;
  z-index: 2;
}

.icon-8 {
  width: 19px;
  height: 19px;
  background: #ffb894;
  top: 45px;
  left: 15px;
  z-index: 2;
}

.icon-9 {
  width: 21px;
  height: 21px;
  background: #ff6b35;
  bottom: 15px;
  right: 25px;
  z-index: 2;
}

.partner-card-description {
  font-size: 0.875rem;
  color: #313131;
  line-height: 1.6;
  text-align: center;
  margin: 0;
}

.partnership-cta {
  text-align: center;
}

.partnership-button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.75rem;
  background: linear-gradient(135deg, #ff6b35, #ff8c5a);
  color: white;
  padding: 1rem 2rem;
  border-radius: 0.75rem;
  border: none;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-box-shadow: 0 4px 6px -1px rgba(255, 107, 53, 0.3);
          box-shadow: 0 4px 6px -1px rgba(255, 107, 53, 0.3);
}

.partnership-button:hover {
  background: linear-gradient(135deg, #ff8c5a, #ffa07a);
  -webkit-box-shadow: 0 10px 15px -3px rgba(255, 107, 53, 0.4);
          box-shadow: 0 10px 15px -3px rgba(255, 107, 53, 0.4);
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}

.partnership-button i {
  width: 1.25rem;
  height: 1.25rem;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.partnership-button:hover i {
  -webkit-transform: translateX(4px);
          transform: translateX(4px);
}

.contact-section {
  background: white;
}

.contact-form-section {
  padding: 4rem 0;
  border-bottom: 1px solid #e5e7eb;
  background-image: linear-gradient(135deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.4)), url("../../img/contact.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.contact-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  gap: 2rem;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

@media (min-width: 1024px) {
  .contact-grid {
    -ms-grid-columns: (1fr)[3];
        grid-template-columns: repeat(3, 1fr);
  }
}

.contact-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 1rem;
  background: #fff;
  border-radius: 0.75rem;
  padding: 1rem;
  height: 100%;
}

.contact-item.center {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  gap: 0.5rem;
}

.contact-icon {
  width: 3rem;
  height: 3rem;
  background: #374151;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.contact-icon.green {
  background: #10b981;
}

.contact-icon i {
  width: auto;
  height: auto;
  font-size: 1.6rem;
  color: white;
}

.contact-info .contact-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: black;
}

.contact-info .contact-description {
  font-size: 0.875rem;
  color: #313131;
}

.contact-phone {
  font-size: 1.5rem;
  font-weight: 700;
  color: black;
  margin-bottom: 0.5rem;
}

.contact-hours {
  font-size: 0.875rem;
  color: #313131;
}

.contact-line {
  font-weight: 700;
  color: black;
}

.contact-qr {
  width: 4rem;
  height: 4rem;
  background: #e5e7eb;
  border-radius: 0.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-left: auto;
}

.contact-qr i {
  width: 2rem;
  height: 2rem;
  color: #313131;
}

.footer {
  background: #111827;
  color: white;
  padding: 4rem 0;
}

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

@media (min-width: 768px) {
  .footer-content {
    -ms-grid-columns: (1fr)[3];
        grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-content {
    -ms-grid-columns: (1fr)[4];
        grid-template-columns: repeat(4, 1fr);
  }
}

.footer-section .footer-logo {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer-section .footer-description {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

.footer-section .footer-description .footer-company {
  text-decoration: underline;
}

.footer-section .footer-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
  letter-spacing: 0.1em;
}

.footer-section .footer-address {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-section .footer-address p {
  margin-bottom: 0.25rem;
}

.footer-section .footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section .footer-links li {
  margin-bottom: 0.5rem;
}

.footer-section .footer-links li a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

.footer-section .footer-links li a:hover {
  color: white;
}

.footer-section .footer-social .social-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  margin-bottom: 0.5rem;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

.footer-section .footer-social .social-link:hover {
  color: white;
}

.footer-section .footer-social .social-link .social-icon {
  margin-right: 0.5rem;
}

@media (max-width: 767px) {
  .hero-title {
    font-size: 2rem;
  }
  .hero-description {
    font-size: 1rem;
  }
  .nav-arrow {
    width: 2.5rem;
    height: 2.5rem;
  }
  .nav-arrow i {
    width: 1.25rem;
    height: 1.25rem;
  }
  .nav-arrow-left {
    left: 1rem;
  }
  .nav-arrow-right {
    right: 1rem;
  }
  .section-title {
    font-size: 1.25rem;
  }
  .service-card {
    padding: 1.5rem;
  }
  .service-step {
    font-size: 1.875rem;
  }
  .service-title {
    font-size: 1.25rem;
  }
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

.fade-in {
  -webkit-animation: fadeIn 0.6s ease-out;
          animation: fadeIn 0.6s ease-out;
}

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

.text-right {
  text-align: right;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

.mt-4 {
  margin-top: 1rem;
}

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

.hidden {
  display: none;
}

@media (min-width: 768px) {
  .md\\:block {
    display: block;
  }
  .md\\:flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .md\\:hidden {
    display: none;
  }
}
/*# sourceMappingURL=top.css.map */