/* ==========================================================================
   #ABOUT PAGE STYLES - Belsh Leather (Complete Version)
   ========================================================================== */

/* Core Variables */
:root {
  --color-gold: #D4AF37;
  --color-gold-light: rgba(212, 175, 55, 0.8);
  --color-black: #000000;
  --color-black-soft: #111111;
  --color-gray: #1A1A1A;
  --color-white: #FFFFFF;
  --color-text: rgba(255, 255, 255, 0.9);
  --color-text-light: rgba(255, 255, 255, 0.7);
  --transition-fast: 0.3s ease;
  --transition-slow: 0.6s ease;
  --radius-sm: 4px;
  --radius-md: 8px;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.2);
}

/* Base Reset */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.6rem;
  line-height: 1.6;
  color: var(--color-text);
  background-color: var(--color-black);
  overflow-x: hidden;
}

/* Layout */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Preloader */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-black);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity var(--transition-slow), visibility var(--transition-slow);
}

.preloader__logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.preloader__text {
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--color-gold);
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.preloader__bar {
  width: 200px;
  height: 2px;
  background-color: rgba(212, 175, 55, 0.2);
  transform-origin: left center;
}

/* Header */

/* Hero Section */
.about-hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  background-color: var(--color-black-soft);
  overflow: hidden;
  padding-top: 80px;
}

.about-hero__canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0,0,0,0.9), rgba(0,0,0,0.6));
}

.about-hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  text-align: center;
}

.about-hero__title {
  font-size: clamp(4rem, 8vw, 7rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--color-white);
  margin-bottom: 2rem;
}

.about-hero__subtitle {
  font-size: clamp(1.8rem, 2.5vw, 2.4rem);
  color: var(--color-gold-light);
  max-width: 800px;
  margin: 0 auto 4rem;
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--color-gold-light);
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.scroll-indicator__line {
  width: 1px;
  height: 60px;
  background: var(--color-gold);
  margin-bottom: 1rem;
  animation: scrollLine 2s infinite;
}

@keyframes scrollLine {
  0% { transform: translateY(0); opacity: 0; }
  50% { opacity: 1; }
  100% { transform: translateY(20px); opacity: 0; }
}

/* Section Header */
.section-header {
  text-align: center;
  margin-bottom: 6rem;
}

.section-header__subtitle {
  display: block;
  font-size: 1.4rem;
  color: var(--color-gold);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 1.6rem;
}

.section-header__title {
  font-size: clamp(3.2rem, 5vw, 5.6rem);
  line-height: 1.2;
  color: var(--color-white);
}

/* Heritage Section - Enhanced Responsive Version */
.heritage-section {
  padding: 6rem 1.5rem;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 1));
  background-image: radial-gradient(circle at 70% 30%, rgba(212, 175, 55, 0.05), transparent 40%);
  color: #fff;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  text-align: center;
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 5vw, 3rem);
  font-weight: 600;
  margin-bottom: 2rem;
  color: #fff;
  letter-spacing: 0.5px;
}

.intro-text {
  font-size: 1.15rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.88);
  max-width: 850px;
  margin: 0 auto;
  text-align: center;
}

.leadership-profiles {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  margin: 4rem auto 2rem auto;
}

.founder-profile {
  padding: 2rem;
  background: rgba(35, 35, 35, 0.85);
  border-radius: 14px;
  border: 1px solid rgba(212, 175, 55, 0.12);
  backdrop-filter: blur(6px);
  transition: all 0.3s ease;
}

.founder-profile:hover {
  transform: translateY(-6px);
  background: rgba(40, 40, 40, 0.9);
}

.profile-icon {
  font-size: 2.2rem;
  margin-bottom: 0.75rem;
}

.email-link {
  display: inline-block;
  margin-top: 1.2rem;
  color: var(--color-gold, #d4af37);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.email-link:hover {
  color: #fff;
}

.legal-text {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.75);
  margin-top: 3.5rem;
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.dual-signature-container {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  margin-top: 4rem;
  align-items: center;
}

.signature-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.2rem;
}

.signature-block img {
  height: 75px;
  max-width: 180px;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.4));
  transition: transform 0.3s ease;
}

.signature-block:hover img {
  transform: translateY(-3px);
}

.signature-details {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  line-height: 1.4;
}

.signature-name {
  font-size: 1.4rem;
  margin: 0;
}

.signature-title {
  font-size: 1.05rem;
  font-weight: 600;
  color: #D4AF37; /* Royal gold tone */
  margin: 0.15rem 0;
  letter-spacing: 0.5px;
}

.company-name {
  font-size: 0.85rem;
  margin: 0;
}

.location {
  font-size: 0.8rem;
  margin-top: 0.2rem;
  color: rgba(255,255,255,0.5);
}

@media (min-width: 768px) {
  .dual-signature-container {
    flex-direction: row;
    justify-content: space-between;
    gap: 4rem;
    align-items: flex-start;
  }

  .signature-block {
    flex-direction: row;
    align-items: center;
    text-align: left;
  }

  .signature-details {
    align-items: flex-start;
    text-align: left;
  }

  .signature-block img {
    height: 90px;
    margin-right: 1rem;
  }
}
.heritage-image-section {
  padding: 4rem 0;
  position: relative;
}

.premium-image-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
}

.artisan-image-frame {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  aspect-ratio: 16/9;
}

.artisan-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.artisan-image-frame:hover img {
  transform: scale(1.03);
}

.gold-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, transparent 60%);
}

.craftsmanship-badge {
  position: absolute;
  top: 2rem;
  right: 2rem;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(10px);
  border-radius: 50px;
  padding: 0.75rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border: 1px solid rgba(212, 175, 55, 0.3);
}

.craftsmanship-badge svg {
  flex-shrink: 0;
}

.craftsmanship-badge span {
  color: white;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.heritage-content-overlay {
  position: absolute;
  bottom: 3rem;
  left: 3rem;
  max-width: 500px;
  background: rgba(15, 15, 15, 0.8);
  backdrop-filter: blur(10px);
  padding: 2rem;
  border-radius: 8px;
  border-left: 4px solid var(--color-gold);
}

.heritage-quote {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: var(--color-gold);
  margin: 0 0 1rem 0;
  font-style: italic;
}

.heritage-description {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.5rem;
}

.craftsmanship-details {
  display: flex;
  gap: 2rem;
  margin-top: 1.5rem;
}

.detail-item {
  display: flex;
  flex-direction: column;
}

.detail-number {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: var(--color-gold);
  line-height: 1;
}

.detail-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 0.5rem;
}

.premium-caption {
  text-align: center;
  margin-top: 1.5rem;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  font-style: italic;
  padding: 0 2rem;
}

.premium-caption a {
  color: var(--color-gold);
  text-decoration: none;
  border-bottom: 1px dotted var(--color-gold);
  transition: opacity 0.3s;
}

.premium-caption a:hover {
  opacity: 0.8;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .heritage-content-overlay {
    position: relative;
    bottom: auto;
    left: auto;
    max-width: 100%;
    margin-top: -3rem;
    z-index: 2;
  }
  
  .craftsmanship-badge {
    top: 1rem;
    right: 1rem;
  }
}

@media (max-width: 768px) {
  .heritage-quote {
    font-size: 1.5rem;
  }
  
  .craftsmanship-details {
    flex-direction: column;
    gap: 1rem;
  }
  
  .heritage-content-overlay {
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .artisan-image-frame {
    aspect-ratio: 4/5;
  }
  
  .heritage-quote {
    font-size: 1.3rem;
  }
  
  .detail-number {
    font-size: 1.5rem;
  }
}
/* Craft Section */
.craft-section {
  padding: 12rem 0;
  background-color: var(--color-black-soft);
}

.craft-steps {
  margin-top: 6rem;
}

.craft-step {
  display: grid;
  grid-template-columns: 100px 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 8rem;
}

.craft-step:last-child {
  margin-bottom: 0;
}

.step-number {
  font-size: 6.4rem;
  font-weight: 700;
  color: var(--color-gold);
  line-height: 1;
  text-align: center;
}

.step-content h3 {
  font-size: 2.4rem;
  color: var(--color-white);
  margin-bottom: 1.6rem;
}

.step-content p {
  font-size: 1.6rem;
  color: var(--color-text-light);
  line-height: 1.6;
}

.step-image {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.step-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform var(--transition-slow);
}

.craft-step:hover .step-image img {
  transform: scale(1.05);
}



/* Values Section */
.values-section {
  padding: 12rem 0;
  background-color: var(--color-black-soft);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-top: 6rem;
}

.value-card {
  background-color: var(--color-gray);
  padding: 3rem 2rem;
  border-radius: var(--radius-md);
  transition: transform var(--transition-fast);
  border-top: 3px solid var(--color-gold);
}

.value-card:hover {
  transform: translateY(-10px);
}

.value-icon {
  margin-bottom: 2rem;
}

.value-icon svg {
  width: 48px;
  height: 48px;
}

.value-card h3 {
  font-size: 2rem;
  color: var(--color-white);
  margin-bottom: 1.6rem;
}

.value-card p {
  font-size: 1.6rem;
  color: var(--color-text-light);
}

/* CTA Section */
.about-cta {
  padding: 12rem 0;
  background: linear-gradient(to right, rgba(212, 175, 55, 0.1), transparent);
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.cta-title {
  font-size: clamp(3.2rem, 5vw, 4.8rem);
  color: var(--color-white);
  margin-bottom: 2rem;
}

.cta-text {
  font-size: 1.8rem;
  color: var(--color-text-light);
  margin-bottom: 4rem;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 2rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.4rem 3.2rem;
  font-size: 1.4rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
  text-decoration: none;
  cursor: pointer;
}

.btn--gold {
  background-color: var(--color-gold);
  color: var(--color-black);
  border: 1px solid var(--color-gold);
}

.btn--gold:hover {
  background-color: transparent;
  color: var(--color-gold);
}

.btn--outline {
  background-color: transparent;
  color: var(--color-gold);
  border: 1px solid var(--color-gold);
}

.btn--outline:hover {
  background-color: var(--color-gold);
  color: var(--color-black);
}

.btn__icon {
  margin-left: 1rem;
  transition: transform var(--transition-fast);
}

.btn:hover .btn__icon {
  transform: translateX(3px);
}

/* Footer */
.footer {
  background-color: var(--color-black-soft);
  padding: 8rem 0 4rem;
  color: var(--color-text-light);
}

.footer__inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer__col {
  margin-bottom: 3rem;
}

.footer-logo {
  display: flex;
  flex-direction: column;
  margin-bottom: 2rem;
  text-decoration: none;
}

.footer-logo__main {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: 0.1em;
}

.footer-logo__sub {
  font-size: 1rem;
  color: var(--color-gold);
  letter-spacing: 0.2em;
}

.footer__title {
  font-size: 1.8rem;
  color: var(--color-white);
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.footer__list {
  list-style: none;
}

.footer__list li {
  margin-bottom: 1.2rem;
}

.footer__list a {
  color: var(--color-text-light);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.footer__list a:hover {
  color: var(--color-gold);
}

.footer__address {
  font-style: normal;
  line-height: 1.6;
}

.footer__address a {
  color: var(--color-text-light);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.footer__address a:hover {
  color: var(--color-gold);
}

.certifications {
  display: flex;
  gap: 1.5rem;
}

.certifications img {
  height: 40px;
  width: auto;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__social {
  display: flex;
  gap: 1.5rem;
}

.footer__social a {
  color: var(--color-text-light);
  transition: color var(--transition-fast);
}

.footer__social a:hover {
  color: var(--color-gold);
}

/* Back to Top */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background-color: var(--color-gold);
  color: var(--color-black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-fast);
  z-index: 99;
  border: none;
  cursor: pointer;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  transform: translateY(-5px);
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .heritage-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  
  .heritage-image {
    order: -1;
    max-width: 600px;
    margin: 0 auto;
  }
}

@media (max-width: 992px) {
  .nav {
    display: none;
  }
  
  .hamburger {
    display: block;
  }
  
  .craft-step {
    grid-template-columns: 80px 1fr;
    margin-bottom: 6rem;
  }
  
  .step-image {
    grid-column: span 2;
  }
  
  .values-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 768px) {
  .about-hero {
    min-height: 500px;
  }
  
  .about-hero__title {
    font-size: clamp(3rem, 8vw, 4rem);
  }
  
  .global-map {
    height: 300px;
  }
  
  .footer__inner {
    grid-template-columns: 1fr 1fr;
  }
  
  .footer__bottom {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }
}

@media (max-width: 576px) {
  .craft-step {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .step-image {
    grid-column: auto;
  }
  
  .step-number {
    text-align: left;
  }
  
  .values-grid {
    grid-template-columns: 1fr;
  }
  
  .footer__inner {
    grid-template-columns: 1fr;
  }
}

/* Animation Base Styles */
[data-scroll] {
  will-change: transform, opacity;
}

/* Print Styles */
@media print {
  .preloader,
  .header,
  .footer,
  .back-to-top {
    display: none !important;
  }
  
  body {
    background-color: white !important;
    color: black !important;
    font-size: 12pt !important;
  }
  
  a {
    text-decoration: underline !important;
  }
  
  .about-hero {
    height: auto !important;
    min-height: auto !important;
    padding: 3rem 0 !important;
  }
  
  .about-hero__title,
  .about-hero__subtitle {
    color: black !important;
  }
}