@charset "UTF-8";

/* Hero Banner Section */
.hero {
  position: relative;
  height: 700px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../images/banner-home.jpg') center/cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(44, 21, 21, 0.7);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  color: var(--white);
}

.hero-label {
  display: inline-block;
  background: var(--secondary);
  color: var(--white);
  padding: 6px 18px;
  font-size: 13px;
  font-weight: bold;
  font-style: italic;
  letter-spacing: 2px;
  margin-bottom: 20px;
  border-radius: 2px;
}

.hero h1 {
  font-size: 48px;
  font-weight: bold;
  font-style: italic;
  line-height: 1.2;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.hero h1 span {
  color: var(--primary);
}

.hero-desc {
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 30px;
  color: var(--primary);
  opacity: 0.95;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-size: 15px;
  font-weight: 600;
  font-style: italic;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  letter-spacing: 0.5px;
}

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

.btn-primary:hover {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

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

.btn-arrow::after {
  content: '→';
  font-size: 18px;
  transition: var(--transition);
}

.btn-arrow:hover::after {
  transform: translateX(5px);
}

/* Story Narrative Section */
.story-section {
  padding: 80px 0;
}

.story-section.alt {
  background: var(--light);
}

.story-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.story-row.reverse {
  direction: rtl;
}

.story-row.reverse > * {
  direction: ltr;
}

.story-image {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(44,21,21,0.12);
}

.story-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: var(--transition);
}

.story-image:hover img {
  transform: scale(1.05);
}

.story-content .section-label {
  display: inline-block;
  color: var(--secondary);
  font-size: 13px;
  font-weight: bold;
  font-style: italic;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.story-content h2 {
  font-size: 32px;
  font-weight: bold;
  font-style: italic;
  color: var(--dark);
  margin-bottom: 20px;
  line-height: 1.3;
}

.story-content h2 span {
  color: var(--secondary);
}

.story-content p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--gray);
  margin-bottom: 15px;
}

.story-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin: 25px 0;
}

.story-feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--dark);
}

.story-feature-item::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--secondary);
  border-radius: 50%;
  flex-shrink: 0;
}

/* Stats Section */
.stats-section {
  background: var(--dark);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../images/banner-home.jpg') center/cover;
  opacity: 0.05;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  position: relative;
  z-index: 1;
}

.stat-item {
  text-align: center;
  padding: 20px;
}

.stat-number {
  font-size: 48px;
  font-weight: bold;
  font-style: italic;
  color: var(--primary);
  font-family: var(--font-sport);
  line-height: 1;
  margin-bottom: 10px;
}

.stat-label {
  font-size: 15px;
  color: var(--gray-light);
  letter-spacing: 1px;
}

.stat-divider {
  width: 40px;
  height: 2px;
  background: var(--secondary);
  margin: 15px auto;
}

/* Services Preview Section */
.services-section {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 50px;
}

.section-header .section-label {
  display: inline-block;
  color: var(--secondary);
  font-size: 13px;
  font-weight: bold;
  font-style: italic;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.section-header h2 {
  font-size: 36px;
  font-weight: bold;
  font-style: italic;
  color: var(--dark);
  margin-bottom: 15px;
}

.section-header p {
  font-size: 16px;
  color: var(--gray);
}

/* C6 Full Width Strip Cards */
.services-strip {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.service-strip-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 300px;
  overflow: hidden;
}

.service-strip-item:nth-child(even) {
  direction: rtl;
}

.service-strip-item:nth-child(even) > * {
  direction: ltr;
}

.service-strip-image {
  position: relative;
  overflow: hidden;
}

.service-strip-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.service-strip-item:hover .service-strip-image img {
  transform: scale(1.08);
}

.service-strip-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 50px 60px;
  background: var(--white);
}

.service-strip-item:nth-child(odd) .service-strip-content {
  background: var(--light);
}

.service-strip-num {
  font-size: 60px;
  font-weight: bold;
  font-style: italic;
  color: var(--primary);
  font-family: var(--font-sport);
  line-height: 1;
  margin-bottom: 15px;
  opacity: 0.6;
}

.service-strip-content h3 {
  font-size: 24px;
  font-weight: bold;
  font-style: italic;
  color: var(--dark);
  margin-bottom: 15px;
}

.service-strip-content p {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 20px;
}

.service-strip-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--secondary);
  font-weight: 600;
  font-style: italic;
  font-size: 14px;
}

.service-strip-link::after {
  content: '→';
  transition: var(--transition);
}

.service-strip-link:hover::after {
  transform: translateX(5px);
}

/* Process Section - F4=6 Steps */
.process-section {
  padding: 80px 0;
  background: var(--light);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  position: relative;
}

.process-step {
  text-align: center;
  position: relative;
  padding: 30px 15px;
}

.process-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 55px;
  right: -15px;
  width: 30px;
  height: 2px;
  background: var(--secondary);
}

.step-icon {
  width: 70px;
  height: 70px;
  background: var(--secondary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: bold;
  font-style: italic;
  margin: 0 auto 15px;
  font-family: var(--font-sport);
  box-shadow: 0 5px 15px rgba(169,50,38,0.3);
}

.step-title {
  font-size: 15px;
  font-weight: bold;
  color: var(--dark);
  margin-bottom: 8px;
  font-style: italic;
}

.step-desc {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.5;
}

/* CTA Section */
.cta-section {
  background: var(--secondary);
  padding: 60px 0;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 60%);
}

.cta-section h2 {
  font-size: 32px;
  font-weight: bold;
  font-style: italic;
  margin-bottom: 10px;
  position: relative;
}

.cta-section p {
  font-size: 16px;
  margin-bottom: 25px;
  opacity: 0.9;
  position: relative;
}

.cta-section .btn {
  background: var(--white);
  color: var(--secondary);
  border-color: var(--white);
  position: relative;
}

.cta-section .btn:hover {
  background: transparent;
  color: var(--white);
}

/* News Preview Section */
.news-section {
  padding: 80px 0;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.news-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 3px 15px rgba(44,21,21,0.08);
  transition: var(--transition);
  border: 1px solid var(--primary);
}

.news-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(44,21,21,0.12);
}

.news-card-image {
  height: 180px;
  background: var(--light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  color: var(--primary);
}

.news-card-content {
  padding: 25px;
}

.news-card-meta {
  display: flex;
  gap: 15px;
  margin-bottom: 10px;
  font-size: 12px;
  color: var(--gray);
}

.news-card-content h3 {
  font-size: 18px;
  font-weight: bold;
  color: var(--dark);
  margin-bottom: 10px;
  line-height: 1.4;
}

.news-card-content h3 a:hover {
  color: var(--secondary);
}

.news-card-content p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.6;
}

/* Partners Section */
.partners-section {
  padding: 60px 0;
  background: var(--light);
}

.partners-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
}

.partner-item {
  width: 120px;
  height: 60px;
  background: var(--white);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  font-size: 14px;
  font-weight: bold;
  font-style: italic;
  box-shadow: 0 2px 8px rgba(44,21,21,0.06);
}

/* Responsive */
@media (max-width: 768px) {
  .hero {
    height: auto;
    padding: 80px 0;
  }

  .hero h1 {
    font-size: 28px;
  }

  .hero-desc {
    font-size: 15px;
  }

  .story-row {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .story-row.reverse {
    direction: ltr;
  }

  .story-image img {
    height: 250px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .stat-number {
    font-size: 32px;
  }

  .service-strip-item {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .service-strip-item:nth-child(even) {
    direction: ltr;
  }

  .service-strip-image {
    height: 200px;
  }

  .service-strip-content {
    padding: 30px 25px;
  }

  .process-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .process-step:not(:last-child)::after {
    display: none;
  }

  .news-grid {
    grid-template-columns: 1fr;
  }

  .cta-section h2 {
    font-size: 24px;
  }

  .section-header h2 {
    font-size: 28px;
  }

  .story-content h2 {
    font-size: 24px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-steps {
    grid-template-columns: repeat(3, 1fr);
  }

  .process-step:not(:last-child)::after {
    display: none;
  }

  .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-strip-content {
    padding: 30px;
  }
}
