/* ===== ABOUT PAGE STYLES ===== */

/* About Hero Section */
.about-hero {
  position: relative;
  height: 45vh;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1e392f 0%, #2a4a3f 50%, #1e392f 100%);
  overflow: hidden;
}

.about-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(218, 165, 32, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(255, 215, 0, 0.08) 0%, transparent 50%);
  animation: heroGlow 8s ease-in-out infinite;
}

@keyframes heroGlow {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

.about-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to bottom,
    rgba(30, 57, 47, 0.3) 0%,
    rgba(30, 57, 47, 0.5) 100%
  );
}

.about-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 0 2rem;
  padding-top: 3rem;
  animation: fadeInUp 1s ease-out;
}

.about-hero-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 3.2rem;
  font-weight: 600;
  color: #fdfdf5;
  margin-bottom: 0.8rem;
  line-height: 1.1;
  letter-spacing: -0.02em;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.about-hero-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: rgba(253, 253, 245, 0.9);
  letter-spacing: 0.02em;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* About Sections */
.about-section {
  padding: 3rem 0;
  position: relative;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 3rem;
}

.section-header {
  text-align: center;
  margin-bottom: 2rem;
}

.section-label {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: #daa520;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
  padding: 0.5rem 1.5rem;
  background: rgba(218, 165, 32, 0.1);
  border-radius: 20px;
}

.section-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.2rem;
  font-weight: 600;
  color: #1e392f;
  line-height: 1.1;
  letter-spacing: -0.02em;
  max-width: 800px;
  margin: 0 auto;
}

/* Mission Section */
.mission-section {
  background: #ffffff;
}

.mission-content {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2rem;
  align-items: start;
}

.mission-text {
  font-family: 'Inter', sans-serif;
}

.lead-text {
  font-size: 1.2rem;
  font-weight: 500;
  color: #1e392f;
  line-height: 1.4;
  margin-bottom: 1rem;
}

.mission-text p {
  font-size: 1rem;
  color: #6c757d;
  line-height: 1.5;
  margin-bottom: 0.8rem;
}

.mission-highlight {
  display: flex;
  gap: 1rem;
  align-items: start;
  margin-top: 1.5rem;
  padding: 1.2rem;
  background: linear-gradient(135deg, rgba(218, 165, 32, 0.05), rgba(255, 215, 0, 0.05));
  border-left: 4px solid #daa520;
  border-radius: 8px;
}

.highlight-icon {
  flex-shrink: 0;
  color: #daa520;
}

.highlight-text {
  font-size: 1.1rem;
  color: #1e392f;
  line-height: 1.6;
  margin: 0;
}

.highlight-text strong {
  color: #daa520;
  font-weight: 600;
}

.mission-visual {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.visual-card {
  padding: 1.2rem;
  background: linear-gradient(135deg, #fdfdf5 0%, #ffffff 100%);
  border-radius: 12px;
  border: 1px solid rgba(218, 165, 32, 0.1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.visual-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  border-color: rgba(218, 165, 32, 0.2);
}

.visual-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #daa520, #e6b800);
  border-radius: 12px;
  color: #1e392f;
  margin-bottom: 0.8rem;
  box-shadow: 0 4px 16px rgba(218, 165, 32, 0.3);
}

.visual-card h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #1e392f;
  margin-bottom: 0.4rem;
}

.visual-card p {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: #6c757d;
  line-height: 1.6;
  margin: 0;
}

/* Company Section */
.company-section {
  background: linear-gradient(135deg, #fdfdf5 0%, #ffffff 100%);
}

.company-story {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
}

.story-card {
  padding: 1.5rem;
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid rgba(218, 165, 32, 0.1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.story-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #daa520, #e6b800);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.story-card:hover::before {
  transform: scaleX(1);
}

.story-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  border-color: rgba(218, 165, 32, 0.2);
}

.story-badge {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #daa520, #e6b800);
  border-radius: 12px;
  color: #1e392f;
  margin-bottom: 0.8rem;
  box-shadow: 0 4px 16px rgba(218, 165, 32, 0.3);
}

.story-badge.quality {
  background: linear-gradient(135deg, #1e392f, #2a4a3f);
  color: #daa520;
}

.story-badge.delivery {
  background: linear-gradient(135deg, #e6b800, #ffd700);
  color: #1e392f;
}

.story-badge.tech {
  background: linear-gradient(135deg, #2a4a3f, #1e392f);
  color: #ffd700;
}

.story-card h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: #1e392f;
  margin-bottom: 0.6rem;
}

.story-card p {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: #6c757d;
  line-height: 1.4;
  margin: 0;
}

/* Values Section */
.values-section {
  background: #ffffff;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.value-card {
  padding: 1.5rem;
  background: linear-gradient(135deg, #fdfdf5 0%, #ffffff 100%);
  border-radius: 12px;
  border: 1px solid rgba(218, 165, 32, 0.1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  border-color: rgba(218, 165, 32, 0.2);
}

.value-number {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: rgba(218, 165, 32, 0.2);
  line-height: 1;
  margin-bottom: 0.6rem;
}

.value-title {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #1e392f;
  margin-bottom: 0.6rem;
}

.value-description {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: #6c757d;
  line-height: 1.4;
  margin: 0;
}

/* Vision Section */
.vision-section {
  background: linear-gradient(135deg, #1e392f 0%, #2a4a3f 100%);
  color: #fdfdf5;
}

.vision-section .section-label {
  background: rgba(218, 165, 32, 0.2);
  color: #daa520;
}

.vision-section .section-title {
  color: #fdfdf5;
}

.vision-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.vision-text {
  text-align: center;
}

.vision-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2rem;
  font-weight: 600;
  color: #fdfdf5;
  line-height: 1.1;
  margin-bottom: 1rem;
}

.vision-description {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: rgba(253, 253, 245, 0.9);
  line-height: 1.5;
  margin-bottom: 0.8rem;
}

.vision-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}

.stat-item {
  text-align: center;
  padding: 1rem;
  background: rgba(218, 165, 32, 0.1);
  border-radius: 8px;
  border: 1px solid rgba(218, 165, 32, 0.2);
}

.stat-values {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: #ede314;
  line-height: 1;
  margin-bottom: 0.3rem;
}

.stat-labels {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: #f0f0efdc;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.vision-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.vision-image-container {
  position: relative;
  width: 100%;
  max-width: 100%;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 
    0 25px 80px rgba(0, 0, 0, 0.4),
    0 10px 40px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  background: linear-gradient(135deg, rgba(218, 165, 32, 0.1), rgba(30, 57, 47, 0.1));
}

.vision-image-container:hover {
  transform: translateY(-12px) scale(1.03);
  box-shadow: 
    0 40px 120px rgba(0, 0, 0, 0.5),
    0 20px 60px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(218, 165, 32, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.vision-environment-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 24px;
  transition: all 0.5s ease;
  filter: brightness(1.05) contrast(1.1) saturate(1.1);
}

.vision-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(30, 57, 47, 0.1) 0%,
    rgba(218, 165, 32, 0.1) 50%,
    rgba(30, 57, 47, 0.2) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 20px;
}

.vision-image-container:hover .vision-image-overlay {
  opacity: 1;
}

.overlay-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
  transform: translateY(20px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.vision-image-container:hover .overlay-content {
  transform: translateY(0);
}

.overlay-icon {
  color: #daa520;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
  animation: pulse 2s ease-in-out infinite;
}

.overlay-text {
  font-family: 'Inter', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: #fdfdf5;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
  letter-spacing: 0.05em;
}

@keyframes pulse {
  0%, 100% { 
    transform: scale(1);
    opacity: 0.8;
  }
  50% { 
    transform: scale(1.1);
    opacity: 1;
  }
}

/* Image container border effect */
.vision-image-container::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(
    45deg,
    #daa520,
    #e6b800,
    #ffd700,
    #daa520
  );
  border-radius: 22px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
  animation: borderGlow 3s ease-in-out infinite;
}

.vision-image-container:hover::before {
  opacity: 0.6;
}

@keyframes borderGlow {
  0%, 100% { 
    background-position: 0% 50%;
  }
  50% { 
    background-position: 100% 50%;
  }
}

/* CTA Section */
.about-cta-section {
  padding: 3rem 0;
  background: linear-gradient(135deg, #fdfdf5 0%, #ffffff 100%);
}

.cta-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.cta-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.2rem;
  font-weight: 600;
  color: #1e392f;
  margin-bottom: 0.8rem;
  line-height: 1.1;
}

.cta-description {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  color: #6c757d;
  line-height: 1.4;
  margin-bottom: 1.5rem;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-primary-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #daa520, #e6b800);
  color: #1e392f;
  border: none;
  padding: 0.8rem 2rem;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 16px rgba(218, 165, 32, 0.3);
}

.cta-primary-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(218, 165, 32, 0.4);
  background: linear-gradient(135deg, #e6b800, #ffd700);
}

.cta-secondary-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: #1e392f;
  border: 2px solid #1e392f;
  padding: 0.8rem 2rem;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.cta-secondary-button:hover {
  background: #1e392f;
  color: #fdfdf5;
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(30, 57, 47, 0.2);
}

/* Animations */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .about-hero-title {
    font-size: 2.5rem;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .mission-content,
  .vision-content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .company-story {
    grid-template-columns: 1fr;
  }
  
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .vision-image-section {
    margin-top: 1.5rem;
    padding: 1.5rem 0;
  }
  
  .vision-image-container {
    max-width: 100%;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .about-container {
    padding: 0 1.5rem;
  }
  
  .about-section {
    padding: 2rem 0;
  }
  
  .about-hero {
    height: 40vh;
    min-height: 250px;
  }
  
  .about-hero-title {
    font-size: 2rem;
  }
  
  .about-hero-subtitle {
    font-size: 1rem;
  }
  
  .section-title {
    font-size: 1.6rem;
  }
  
  .lead-text {
    font-size: 1rem;
  }
  
  .values-grid {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }
  
  .vision-stats {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }
  
  .vision-content {
    gap: 1rem;
  }
  
  .vision-title {
    font-size: 1.6rem;
  }
  
  .vision-description {
    font-size: 0.9rem;
  }
  
  .vision-image-section {
    margin-top: 1rem;
    padding: 1rem 0;
  }
  
  .vision-image-container {
    max-width: 100%;
    border-radius: 16px;
  }
  
  .vision-image-container::before {
    border-radius: 19px;
  }
  
  .vision-environment-image {
    border-radius: 16px;
  }
  
  .vision-environment-image {
    border-radius: 12px;
  }
  
  .vision-image-overlay {
    border-radius: 12px;
  }
  
  .overlay-text {
    font-size: 1rem;
  }
  
  .overlay-icon {
    width: 40px;
    height: 40px;
  }
  
  .cta-title {
    font-size: 1.8rem;
  }
  
  .cta-description {
    font-size: 1rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }
}

@media (max-width: 480px) {
  .about-container {
    padding: 0 1rem;
  }
  
  .about-section {
    padding: 1.5rem 0;
  }
  
  .about-hero {
    height: 35vh;
    min-height: 220px;
  }
  
  .about-hero-content {
    padding-top: 1rem;
  }
  
  .about-hero-title {
    font-size: 1.6rem;
    margin-bottom: 0.4rem;
  }
  
  .about-hero-subtitle {
    font-size: 0.9rem;
  }
  
  .section-title {
    font-size: 1.4rem;
  }
  
  .section-header {
    margin-bottom: 1.2rem;
  }
  
  .story-card,
  .value-card {
    padding: 1rem;
  }
  
  .vision-image-section {
    margin-top: 1rem;
    padding: 1rem 0;
  }
  
  .vision-image-container {
    max-width: 100%;
    border-radius: 12px;
    box-shadow: 
      0 15px 40px rgba(0, 0, 0, 0.2),
      0 6px 20px rgba(0, 0, 0, 0.15);
  }
  
  .vision-image-container::before {
    border-radius: 15px;
  }
  
  .vision-environment-image {
    border-radius: 12px;
  }
  
  .vision-environment-image {
    border-radius: 8px;
  }
  
  .vision-image-overlay {
    border-radius: 8px;
  }
  
  .overlay-content {
    gap: 0.5rem;
  }
  
  .overlay-text {
    font-size: 0.9rem;
  }
  
  .overlay-icon {
    width: 32px;
    height: 32px;
  }
  
  .vision-image-container:hover {
    transform: translateY(-4px) scale(1.01);
  }
  
  .vision-title {
    font-size: 1.4rem;
  }
  
  .vision-description {
    font-size: 0.85rem;
  }
  
  .cta-primary-button,
  .cta-secondary-button {
    width: 100%;
    justify-content: center;
    padding: 0.7rem 1.5rem;
  }
}
