/* About Page Styles - Theme Support */
:root {
  --gold: #f2b705;
  --gold-dark: #c98a00;
  --amber: #f5d061;
  --charcoal: #1e1f24;
  --white: #ffffff;

  /* Dark mode (default) */
  --bg-primary: #0f1014;
  --bg-secondary: #1a1b23;
  --bg-tertiary: #16171f;
  --bg-card: rgba(255, 255, 255, 0.03);
  --bg-input: rgba(255, 255, 255, 0.04);
  --text-primary: #ffffff;
  --text-secondary: rgba(255, 255, 255, 0.7);
  --text-tertiary: rgba(255, 255, 255, 0.5);
  --border-color: rgba(255, 255, 255, 0.06);
  --border-input: rgba(255, 255, 255, 0.08);
}

[data-theme="light"] {
  /* Light mode */
  --bg-primary: #e8e9ea;
  --bg-secondary: #f0f1f2;
  --bg-tertiary: #d8d9da;
  --bg-card: rgba(240, 241, 242, 0.95);
  --bg-input: rgba(0, 0, 0, 0.03);
  --text-primary: #2a2b35;
  --text-secondary: rgba(42, 43, 53, 0.7);
  --text-tertiary: rgba(42, 43, 53, 0.5);
  --border-color: rgba(0, 0, 0, 0.06);
  --border-input: rgba(0, 0, 0, 0.08);
}

/* Auth Header Styles (shared with other pages) */
.auth-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-color);
  padding: 1rem 1.5rem;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

[data-theme="light"] .auth-header {
  background: rgba(240, 241, 242, 0.9);
}

.auth-header-content {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.auth-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: inherit;
  transition: opacity 0.2s ease;
}

.auth-logo:hover {
  opacity: 0.8;
}

.auth-logo img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(242, 183, 5, 0.3));
}

.auth-company-name {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: -0.01em;
  transition: color 0.3s ease;
}

.theme-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
  position: relative;
  overflow: hidden;
}

.theme-toggle:hover {
  background: var(--bg-input);
  border-color: var(--gold);
  transform: scale(1.05);
}

.theme-icon {
  position: absolute;
  width: 20px;
  height: 20px;
  color: var(--text-primary);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.theme-icon-dark {
  opacity: 1;
  transform: rotate(0deg) scale(1);
}

.theme-icon-light {
  opacity: 0;
  transform: rotate(90deg) scale(0);
}

[data-theme="light"] .theme-icon-dark {
  opacity: 0;
  transform: rotate(-90deg) scale(0);
}

[data-theme="light"] .theme-icon-light {
  opacity: 1;
  transform: rotate(0deg) scale(1);
}

/* About Page Styles */
.about-page {
  min-height: 100vh;
  padding-top: 80px;
  background: var(--bg-primary);
  color: var(--text-primary);
  transition: background-color 0.3s ease, color 0.3s ease;
  padding-bottom: 4rem;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Hero Section */
.about-hero-header {
  text-align: center;
  margin-bottom: 3rem;
  padding-top: 2rem;
}

.about-hero-title {
  font-family: "Space Grotesk", sans-serif;
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  position: relative;
  display: inline-block;
  transition: color 0.3s ease;
}

.about-hero-title::after {
  content: "";
  position: absolute;
  bottom: -0.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--amber) 100%);
  border-radius: 2px;
}

.about-hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-top: 1.5rem;
  transition: color 0.3s ease;
}

/* Section Styles */
.about-section {
  margin-bottom: 4rem;
}

.section-header {
  margin-bottom: 2.5rem;
  position: relative;
}

.section-title {
  font-family: "Space Grotesk", sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
  letter-spacing: -0.015em;
  position: relative;
  display: inline-block;
  transition: color 0.3s ease;
}

[data-theme="light"] .section-title {
  color: #1a1b23;
}

.title-accent {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--amber) 100%);
  border-radius: 2px;
  margin-top: 0.5rem;
}

.section-content {
  width: 100%;
}

.section-text {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.section-text:last-child {
  margin-bottom: 0;
}

/* Grid Layouts */
.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

/* Cards */
.about-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.about-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--amber) 100%);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.about-card:hover {
  transform: translateY(-4px);
  border-color: rgba(242, 183, 5, 0.4);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.about-card:hover::before {
  transform: scaleX(1);
}

.card-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.5rem;
  background: rgba(242, 183, 5, 0.1);
  border: 2px solid rgba(242, 183, 5, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  transition: all 0.3s ease;
}

.about-card:hover .card-icon {
  background: rgba(242, 183, 5, 0.2);
  border-color: var(--gold);
  transform: scale(1.1);
}

.card-title {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.card-text {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0;
}

/* Value Items */
.value-item {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 0.875rem;
  padding: 1.5rem;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.value-item:hover {
  background: var(--bg-input);
  border-color: rgba(242, 183, 5, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.value-icon {
  width: 48px;
  height: 48px;
  background: rgba(242, 183, 5, 0.1);
  border-radius: 0.625rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.value-item:hover .value-icon {
  background: rgba(242, 183, 5, 0.2);
  transform: scale(1.1);
}

.value-title {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.value-text {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

/* Feature Cards */
.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 1rem;
  padding: 2rem;
  position: relative;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--gold) 0%, var(--amber) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(242, 183, 5, 0.4);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-number {
  font-family: "Space Grotesk", sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold);
  opacity: 0.2;
  line-height: 1;
  margin-bottom: 1rem;
  transition: opacity 0.3s ease;
}

.feature-card:hover .feature-number {
  opacity: 0.4;
}

.feature-title {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.feature-text {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0;
}

/* Contact Section */
.contact-section {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 1rem;
  padding: 3rem;
  margin-bottom: 4rem;
}

.contact-card {
  text-align: center;
  padding: 1.5rem;
  transition: all 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-2px);
}

.contact-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
  background: rgba(242, 183, 5, 0.1);
  border: 2px solid rgba(242, 183, 5, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  transition: all 0.3s ease;
}

.contact-card:hover .contact-icon {
  background: rgba(242, 183, 5, 0.2);
  border-color: var(--gold);
  transform: scale(1.1);
}

.contact-title {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.contact-text {
  font-size: 1rem;
  color: var(--text-secondary);
  margin: 0;
}

/* CTA Section */
.about-cta {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 1rem;
  padding: 3rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.about-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--amber) 100%);
}

.cta-title {
  font-family: "Space Grotesk", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.cta-text {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-btn {
  padding: 0.875rem 2rem;
  border-radius: 0.75rem;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Poppins", sans-serif;
}

.cta-primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--amber) 100%);
  color: var(--charcoal);
  box-shadow: 0 4px 15px rgba(242, 183, 5, 0.2);
}

.cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(242, 183, 5, 0.3);
  background: linear-gradient(135deg, var(--amber) 0%, var(--gold) 100%);
}

.cta-secondary {
  background: var(--bg-input);
  color: var(--text-primary);
  border: 1px solid var(--border-input);
}

.cta-secondary:hover {
  background: var(--bg-card);
  border-color: var(--border-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Responsive */
@media (max-width: 1024px) {
  .about-hero-title {
    font-size: 2.25rem;
  }

  .section-title {
    font-size: 2.25rem;
  }

  .about-grid,
  .features-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .about-container {
    padding: 0 1.5rem;
  }

  .about-hero-header {
    margin-bottom: 2rem;
    padding-top: 1rem;
  }

  .about-hero-title {
    font-size: 1.75rem;
  }

  .about-hero-subtitle {
    font-size: 0.9rem;
    margin-top: 1rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .section-text {
    font-size: 1rem;
  }

  .about-section {
    margin-bottom: 3rem;
  }

  .about-grid,
  .values-grid,
  .features-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .about-card,
  .feature-card {
    padding: 1.5rem;
  }

  .contact-section {
    padding: 2rem 1.5rem;
  }

  .about-cta {
    padding: 2.5rem 1.5rem;
  }

  .cta-title {
    font-size: 1.75rem;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-btn {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .about-page {
    padding-top: 70px;
  }

  .about-container {
    padding: 0 1rem;
  }

  .about-hero-header {
    margin-bottom: 2rem;
    padding-top: 1rem;
  }

  .about-hero-title {
    font-size: 1.75rem;
  }

  .about-hero-subtitle {
    font-size: 0.9rem;
    margin-top: 1rem;
  }

  .section-title {
    font-size: 1.75rem;
  }

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

  .about-section {
    margin-bottom: 2.5rem;
  }

  .about-card,
  .feature-card {
    padding: 1.25rem;
  }

  .card-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 1.25rem;
  }

  .card-title {
    font-size: 1.25rem;
  }

  .card-text {
    font-size: 0.95rem;
  }

  .value-item {
    padding: 1.25rem;
  }

  .value-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 0.875rem;
  }

  .value-title {
    font-size: 1.1rem;
  }

  .value-text {
    font-size: 0.9rem;
  }

  .feature-number {
    font-size: 2.5rem;
  }

  .feature-title {
    font-size: 1.25rem;
  }

  .feature-text {
    font-size: 0.95rem;
  }

  .contact-section {
    padding: 1.5rem 1rem;
  }

  .contact-card {
    padding: 1.25rem;
  }

  .contact-icon {
    width: 48px;
    height: 48px;
  }

  .about-cta {
    padding: 2rem 1.25rem;
  }

  .cta-title {
    font-size: 1.5rem;
  }

  .cta-text {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
}

/* Breadcrumb Navigation */
.breadcrumb-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  font-size: 0.875rem;
  border-bottom: 1px solid var(--border-color);
  background: var(--bg-primary);
}

.breadcrumb-link {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.3s ease;
  font-weight: 500;
}

.breadcrumb-link:hover {
  color: var(--gold);
}

.breadcrumb-separator {
  color: var(--text-tertiary);
  margin: 0 0.25rem;
}

.breadcrumb-current {
  color: var(--text-primary);
  font-weight: 600;
}

[data-theme="light"] .breadcrumb-nav {
  border-bottom-color: var(--border-color);
}

[data-theme="light"] .breadcrumb-link {
  color: var(--text-secondary);
}

[data-theme="light"] .breadcrumb-link:hover {
  color: var(--gold);
}

[data-theme="light"] .breadcrumb-current {
  color: var(--text-primary);
}
