/* Enhanced About Page Styles - Using Existing Color Theme */

/* Header Menu Styles */
.ct-menu-link {
  color: #000000 !important;
}

.ct-menu-link:hover {
  color: #000000 !important;
}

.header-menu-1 {
  background: #ffffff !important;
}

.ct-header {
  background: #ffffff !important;
}

/* Cart and Search Icons */
.ct-header-cart .ct-cart-item {
  color: #000000 !important;
}

.ct-header-cart .ct-cart-item:hover {
  color: #000000 !important;
}

.ct-header-search {
  color: #000000 !important;
}

.ct-header-search:hover {
  color: #000000 !important;
}

.ct-header-trigger {
  color: #000000 !important;
}

.ct-header-trigger:hover {
  color: #000000 !important;
}

/* SVG Icons */
.ct-header-cart svg,
.ct-header-search svg,
.ct-header-trigger svg {
  fill: #000000 !important;
  stroke: #000000 !important;
}

.ct-header-cart:hover svg,
.ct-header-search:hover svg,
.ct-header-trigger:hover svg {
  fill: #000000 !important;
  stroke: #000000 !important;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Hero Section */
.hero-section {
  display: flex;
  align-items: center;
  min-height: 80vh;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  color: #333333;
  padding: 60px 0;
  margin-bottom: 60px;
}

.hero-content {
  flex: 1;
  padding: 0 40px;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #000000;
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 30px;
  opacity: 0.9;
}

.hero-description {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 600px;
  color: #333333;
}

.hero-buttons {
  display: flex !important;
  gap: 20px;
  visibility: visible !important;
  opacity: 1 !important;
}

.hero-image {
  flex: 1;
  text-align: center;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

/* Buttons */
.btn {
  display: inline-block !important;
  padding: 15px 30px;
  border-radius: 3px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 1px solid transparent;
  font-family: "neue-haas-grotesk", Sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  visibility: visible !important;
  opacity: 1 !important;
}

.btn-primary {
  background: transparent !important;
  color: #000000 !important;
  border: solid 1px #000000 !important;
}

.btn-primary:hover {
  background: #000000 !important;
  color: #ffffff !important;
  border-color: #000000 !important;
}

.btn-secondary {
  background: transparent;
  color: #000000;
  border-color: #000000;
}

.btn-secondary:hover {
  background: #000000;
  color: white;
}

.btn-large {
  padding: 18px 40px;
  font-size: 1.1rem;
}

.btn-outline {
  background: transparent !important;
  border: solid 1px #ffffff !important;
  color: #ffffff !important;
}

.btn-outline:hover {
  background: #ffffff !important;
  color: #000000 !important;
  border-color: #ffffff !important;
}

/* CTA Section Button Overrides */
.cta-section .btn-primary {
  background: transparent !important;
  color: #ffffff !important;
  border: solid 1px #ffffff !important;
}

.cta-section .btn-primary:hover {
  background: #ffffff !important;
  color: #000000 !important;
  border-color: #ffffff !important;
}

/* Section Styles */
.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 60px;
  color: #000000;
  position: relative;
  font-family: "neue-haas-grotesk", Sans-serif;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: #000000;
  border-radius: 2px;
}

/* Introduction Section */
.intro-section {
  padding: 80px 0;
  background: #F4F5F5;
}

.intro-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.intro-text {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #000000;
  font-family: "neue-haas-grotesk", Sans-serif;
}

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

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

.story-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #000000;
  margin-bottom: 20px;
  font-family: "neue-haas-grotesk", Sans-serif;
}

.story-stats {
  display: flex;
  gap: 40px;
  margin-top: 40px;
}

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

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: #000000;
  margin-bottom: 10px;
}

.stat-label {
  font-size: 0.9rem;
  color: #000000;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: "neue-haas-grotesk", Sans-serif;
}

.story-image img {
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

/* Values Section */
.values-section {
  padding: 80px 0;
  background: #F4F5F5;
}

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

.value-card {
  background: white;
  padding: 40px 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: solid 1px #000000;
}

.value-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.value-icon {
  color: #000000;
  margin-bottom: 20px;
}

.value-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #000000;
  font-family: "neue-haas-grotesk", Sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.4;
  word-wrap: break-word;
  hyphens: auto;
  min-height: 3.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.value-card p {
  color: #000000;
  line-height: 1.6;
  font-family: "neue-haas-grotesk", Sans-serif;
}

/* Vision & Mission Section */
.vision-mission-section {
  padding: 80px 0;
}

.vm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.vm-card {
  background: white;
  padding: 50px 40px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  border: solid 1px #000000;
}

.vm-card:hover {
  transform: translateY(-5px);
}

.vision-card {
  background: #000000;
  color: white;
}

.mission-card {
  background: #333333;
  color: white;
}

.vm-icon {
  margin-bottom: 30px;
}

.vm-card h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  font-family: "neue-haas-grotesk", Sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.vm-card p {
  line-height: 1.6;
  opacity: 0.9;
  font-family: "neue-haas-grotesk", Sans-serif;
}

/* Features Section */
.features-section {
  padding: 80px 0;
  background: #F4F5F5;
}

.section-subtitle {
  text-align: center;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #666666;
  max-width: 900px;
  margin: -40px auto 60px;
  font-family: "neue-haas-grotesk", Sans-serif;
  text-decoration: none;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-item {
  background: white;
  padding: 40px 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  border: 1px solid #e0e0e0;
}

.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  border-color: #000000;
}

.feature-icon {
  background: #000000;
  color: white;
  padding: 20px;
  border-radius: 50%;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
  background: #333333;
  transform: scale(1.1);
}

.feature-item h4 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: #000000;
  font-family: "neue-haas-grotesk", Sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
}

.feature-item p {
  color: #666666;
  line-height: 1.7;
  font-family: "neue-haas-grotesk", Sans-serif;
  font-size: 1rem;
}

/* CTA Section */
.cta-section {
  padding: 100px 0;
  background: #000000;
  color: white;
  text-align: center;
}

.cta-content h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  font-family: "neue-haas-grotesk", Sans-serif;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.cta-content p {
  font-size: 1.2rem;
  margin-bottom: 40px;
  opacity: 0.9;
  font-family: "neue-haas-grotesk", Sans-serif;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
}

/* Contact Section */
.contact-section {
  padding: 80px 0;
}

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

.contact-card {
  background: white;
  padding: 40px 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  border: solid 1px #000000;
}

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

.contact-icon {
  background: #000000;
  color: white;
  padding: 15px;
  border-radius: 50%;
  margin: 0 auto 20px;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #000000;
  font-family: "neue-haas-grotesk", Sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact-card p {
  color: #000000;
  line-height: 1.6;
  font-family: "neue-haas-grotesk", Sans-serif;
}

.contact-card a {
  color: #000000;
  text-decoration: none;
  font-weight: 600;
}

.contact-card a:hover {
  text-decoration: underline;
}

/* Enhanced Responsive Design */
@media (max-width: 1024px) {
  .container {
    padding: 0 30px;
  }
  
  .hero-section {
    padding: 50px 0;
  }
  
  .hero-title {
    font-size: 3rem;
  }
  
  .story-grid {
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }
  
  .hero-section {
    flex-direction: column;
    text-align: center;
    padding: 40px 0;
    min-height: auto;
  }

  .hero-content {
    padding: 0 0 40px 0;
    order: 2;
  }
  
  .hero-image {
    order: 1;
    margin-bottom: 40px;
  }

  .hero-title {
    font-size: 2.5rem;
    margin-bottom: 15px;
  }

  .hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 30px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
  
  .btn {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }

  .section-title {
    font-size: 2rem;
    margin-bottom: 40px;
  }
  
  .section-title::after {
    width: 60px;
    bottom: -10px;
  }

  .intro-section,
  .story-section,
  .values-section,
  .vision-mission-section,
  .features-section,
  .contact-section {
    padding: 60px 0;
  }

  .story-grid,
  .vm-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .story-stats {
    justify-content: center;
    gap: 30px;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .stat-label {
    font-size: 0.8rem;
  }

  .cta-section {
    padding: 80px 0;
  }

  .cta-content h2 {
    font-size: 2rem;
  }
  
  .cta-content p {
    font-size: 1.1rem;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
  
  .values-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
  }
  
  .value-card {
    padding: 30px 20px;
  }
  
  .section-subtitle {
    font-size: 1rem;
    line-height: 1.7;
    margin: -30px auto 50px;
    padding: 0 20px;
    max-width: 100%;
  }
  
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 100%;
  }
  
  .feature-item {
    padding: 35px 25px;
  }
  
  .feature-icon {
    width: 70px;
    height: 70px;
    padding: 18px;
  }
  
  .feature-item h4 {
    font-size: 1.2rem;
  }
  
  .feature-item p {
    font-size: 0.95rem;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }
  
  .hero-section {
    padding: 30px 0;
  }
  
  .hero-title {
    font-size: 1.8rem;
    line-height: 1.3;
  }

  .hero-subtitle {
    font-size: 1rem;
  }
  
  .hero-buttons {
    gap: 10px;
  }
  
  .btn {
    padding: 12px 25px;
    font-size: 0.9rem;
  }
  
  .btn-large {
    padding: 15px 30px;
    font-size: 1rem;
  }

  .section-title {
    font-size: 1.6rem;
    margin-bottom: 30px;
  }
  
  .section-title::after {
    width: 50px;
    height: 3px;
    bottom: -8px;
  }

  .intro-section,
  .story-section,
  .values-section,
  .vision-mission-section,
  .features-section,
  .contact-section {
    padding: 40px 0;
  }
  
  .intro-text {
    font-size: 1rem;
  }
  
  .story-text p {
    font-size: 1rem;
  }

  .story-stats {
    gap: 20px;
  }
  
  .stat-number {
    font-size: 1.8rem;
  }
  
  .stat-label {
    font-size: 0.7rem;
  }

  .values-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .section-subtitle {
    font-size: 0.95rem;
    line-height: 1.6;
    margin: -20px auto 40px;
    padding: 0 15px;
    max-width: 100%;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .value-card {
    padding: 25px 20px;
  }
  
  .value-card h3 {
    font-size: 1.3rem;
    line-height: 1.3;
    min-height: auto;
    padding: 0 10px;
  }
  
  .value-card p {
    font-size: 0.9rem;
  }
  
  .vm-card {
    padding: 35px 25px;
  }
  
  .vm-card h3 {
    font-size: 1.5rem;
  }
  
  .vm-card p {
    font-size: 0.9rem;
  }
  
  .feature-item {
    padding: 30px 25px;
  }
  
  .feature-icon {
    width: 65px;
    height: 65px;
    padding: 15px;
  }
  
  .feature-item h4 {
    font-size: 1.15rem;
  }
  
  .feature-item p {
    font-size: 0.95rem;
    line-height: 1.6;
  }
  
  .cta-section {
    padding: 60px 0;
  }

  .cta-content h2 {
    font-size: 1.6rem;
  }
  
  .cta-content p {
    font-size: 1rem;
  }
  
  .contact-card {
    padding: 30px 20px;
  }
  
  .contact-card h3 {
    font-size: 1.3rem;
  }
  
  .contact-card p {
    font-size: 0.9rem;
  }
  
  .contact-icon {
    width: 60px;
    height: 60px;
  }
}

@media (max-width: 360px) {
  .hero-title {
    font-size: 1.5rem;
  }
  
  .hero-subtitle {
    font-size: 0.9rem;
  }
  
  .section-title {
    font-size: 1.4rem;
  }
  
  .value-card,
  .vm-card,
  .contact-card {
    padding: 20px 15px;
  }
  
  .story-stats {
    flex-direction: column;
    gap: 15px;
  }
}

/* Additional styles for intro section content */
.intro-details {
  margin-top: 40px;
  text-align: center;
}

.intro-header {
  margin-bottom: 30px;
}

.intro-header .text-custom {
  color: #000000 !important;
  font-family: "neue-haas-grotesk", Sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
  display: block;
}

.intro-header .about-heading {
  color: #000000 !important;
  font-family: "neue-haas-grotesk", Sans-serif;
  font-size: 2rem;
  font-weight: 700;
  text-transform: capitalize;
  letter-spacing: 1px;
  margin-bottom: 0;
  line-height: 1.3;
}

.intro-description {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #000000;
  font-family: "neue-haas-grotesk", Sans-serif;
  margin-bottom: 20px;
}

/* Ensure text-custom class is always black */
.text-custom {
  color: #000000 !important;
}

/* Responsive adjustments for intro section */
@media (max-width: 768px) {
  .intro-details {
    text-align: center;
    margin-top: 30px;
  }
  
  .intro-header .about-heading {
    font-size: 1.6rem;
  }
  
  .intro-description {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .intro-header .about-heading {
    font-size: 1.4rem;
  }
  
  .intro-description {
    font-size: 0.95rem;
  }
}