/* ============================================================
   ABOUT US PAGE STYLES
   ============================================================ */

/* Welcome Section */
.sv-welcome-section {
  padding: 80px 0;
  background: #ffffff;
}

.sv-welcome-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.sv-welcome-text h2 {
  font-size: 42px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 20px;
  line-height: 1.2;
  letter-spacing: 1px;
}

.sv-welcome-text h2 .sv-highlight {
  color: #D4AF37;
}

.sv-welcome-text p {
  font-size: 17px;
  color: #4a5568;
  line-height: 1.8;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.sv-welcome-image {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(139, 69, 19, 0.15);
}

.sv-welcome-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

.sv-welcome-image::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
  animation: float 6s ease-in-out infinite;
  pointer-events: none;
  border-radius: 50%;
}

@keyframes float {
  0%, 100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(20px, 20px);
  }
}

/* Mission Section */
.sv-mission-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.sv-mission-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.sv-mission-image {
  order: -1;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(139, 69, 19, 0.15);
}

.sv-mission-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

.sv-mission-text h2 {
  font-size: 42px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 20px;
  line-height: 1.2;
  letter-spacing: 1px;
}

.sv-mission-text h2 .sv-highlight {
  color: #8B4513;
}

.sv-mission-text p {
  font-size: 17px;
  color: #4a5568;
  line-height: 1.8;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

/* Features Section */
.sv-features-section {
  padding: 80px 0;
  background: #ffffff;
}

.sv-section-header {
  text-align: center;
  margin-bottom: 60px;
}

.sv-section-header h2 {
  font-size: 42px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 15px;
  letter-spacing: 1px;
}

.sv-section-header h2 .sv-highlight {
  color: #D4AF37;
}

.sv-section-header p {
  font-size: 18px;
  color: #4a5568;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
  letter-spacing: 1px;
}

.sv-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}

.sv-feature-card {
  background: #f8f9fa;
  padding: 35px;
  border-radius: 12px;
  text-align: center;
  transition: all 300ms ease;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.sv-feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #8B4513, #D4AF37);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 300ms ease;
}

.sv-feature-card:hover::before {
  transform: scaleX(1);
}

.sv-feature-card:hover {
  background: #ffffff;
  border-color: #D4AF37;
  box-shadow: 0 8px 30px rgba(139, 69, 19, 0.12);
  transform: translateY(-5px);
}

.sv-feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #8B4513, #D4AF37);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #ffffff;
  margin: 0 auto 20px;
}

.sv-feature-card h3 {
  font-size: 22px;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 12px;
  letter-spacing: 1px;
}

.sv-feature-card p {
  font-size: 15px;
  color: #4a5568;
  line-height: 1.6;
  letter-spacing: 1px;
}

/* Values Section */
.sv-values-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #0f172a 0%, #1a1f3a 100%);
}

.sv-values-header {
  text-align: center;
  margin-bottom: 60px;
}

.sv-values-header h2 {
  font-size: 42px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 15px;
  letter-spacing: 1px;
}

.sv-values-header h2 .sv-highlight {
  color: #D4AF37;
}

.sv-values-header p {
  font-size: 18px;
  color: #c9cace;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
  letter-spacing: 1px;
}

.sv-values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.sv-value-card {
  background: rgba(212, 175, 55, 0.08);
  padding: 40px;
  border-radius: 12px;
  text-align: center;
  border-left: 4px solid #D4AF37;
  transition: all 300ms ease;
}

.sv-value-card:hover {
  background: rgba(212, 175, 55, 0.15);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.sv-value-icon {
  font-size: 40px;
  color: #D4AF37;
  margin-bottom: 15px;
}

.sv-value-card h3 {
  font-size: 20px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 12px;
  letter-spacing: 1px;
}

.sv-value-card p {
  font-size: 15px;
  color: #c9cace;
  line-height: 1.6;
  letter-spacing: 1px;
}

/* CTA Section */
.sv-cta-section {
  padding: 80px 0;
  background: #ffffff;
  text-align: center;
}

.sv-cta-content h2 {
  font-size: 42px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.sv-cta-content p {
  font-size: 18px;
  color: #4a5568;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
  letter-spacing: 1px;
}

.sv-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.sv-cta-btn {
  padding: 14px 40px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all 300ms ease;
  text-decoration: none;
  display: inline-block;
}

.sv-cta-btn-primary {
  background: linear-gradient(135deg, #8B4513, #D4AF37);
  color: #ffffff;
}

.sv-cta-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(139, 69, 19, 0.3);
}

.sv-cta-btn-secondary {
  background: #f8f9fa;
  color: #8B4513;
  border: 2px solid #8B4513;
}

.sv-cta-btn-secondary:hover {
  background: #8B4513;
  color: #ffffff;
  transform: translateY(-3px);
}

/* ============================================================
   RESPONSIVE MEDIA QUERIES
   ============================================================ */

/* Tablet: 768px and below */
@media (max-width: 768px) {
  .sv-welcome-section,
  .sv-mission-section,
  .sv-features-section,
  .sv-values-section,
  .sv-cta-section {
    padding: 60px 0;
  }

  .sv-welcome-content,
  .sv-mission-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .sv-mission-image {
    order: 0;
  }

  .sv-section-header h2,
  .sv-values-header h2,
  .sv-cta-content h2 {
    font-size: 32px;
  }

  .sv-section-header p,
  .sv-values-header p,
  .sv-cta-content p {
    font-size: 16px;
  }

  .sv-welcome-text h2,
  .sv-mission-text h2 {
    font-size: 32px;
  }

  .sv-features-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .sv-feature-card {
    padding: 30px;
  }

  .sv-values-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .sv-cta-buttons {
    flex-direction: column;
  }

  .sv-cta-btn {
    width: 100%;
  }
}

/* Mobile: 640px and below */
@media (max-width: 640px) {
  .sv-welcome-section,
  .sv-mission-section,
  .sv-features-section,
  .sv-values-section,
  .sv-cta-section {
    padding: 40px 0;
  }

  .sv-section-header h2,
  .sv-values-header h2,
  .sv-cta-content h2 {
    font-size: 24px;
  }

  .sv-section-header p,
  .sv-values-header p,
  .sv-cta-content p {
    font-size: 14px;
  }

  .sv-welcome-text h2,
  .sv-mission-text h2 {
    font-size: 24px;
  }

  .sv-welcome-text p,
  .sv-mission-text p {
    font-size: 14px;
  }

  .sv-feature-card {
    padding: 24px;
  }

  .sv-feature-icon {
    width: 50px;
    height: 50px;
    font-size: 24px;
  }

  .sv-feature-card h3 {
    font-size: 18px;
  }

  .sv-feature-card p {
    font-size: 13px;
  }

  .sv-value-card {
    padding: 24px;
  }

  .sv-value-icon {
    font-size: 32px;
  }

  .sv-value-card h3 {
    font-size: 18px;
  }

  .sv-value-card p {
    font-size: 13px;
  }

  .sv-cta-btn {
    padding: 12px 32px;
    font-size: 14px;
  }
}
