/* ===== ABOUT PAGE SPECIFIC STYLES ===== */

/* Hero Section */
.about-hero {
    background: linear-gradient(rgba(10, 10, 10, 0.85), rgba(10, 10, 10, 0.9)), url('../images/hero/product-hero.jpeg');
    background-size: cover;
    background-position: center;
    padding: 180px 0 100px;
    position: relative;
    text-align: center;
    margin-top: 70px;
    overflow: hidden;
}

.about-hero .hero-content {
    position: relative;
    z-index: 3;
}

.about-hero .hero-title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 800;
}

.about-hero .hero-subtitle {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto 2rem;
    color: #cccccc;
    line-height: 1.6;
}

.hero-breadcrumb {
    font-size: 1rem;
    color: #aaaaaa;
}

.hero-breadcrumb a {
    color: #D4AF37;
    text-decoration: none;
    transition: color 0.3s ease;
}

.hero-breadcrumb a:hover {
    color: #FFD700;
    text-decoration: underline;
}

.hero-breadcrumb span {
    color: #ffffff;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 30%, rgba(212, 175, 55, 0.2), transparent 70%);
    z-index: 1;
}

.hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.shape {
    position: absolute;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), transparent);
    border-radius: 50%;
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: -150px;
    right: -100px;
}

.shape-2 {
    width: 200px;
    height: 200px;
    bottom: 100px;
    left: -50px;
}

.shape-3 {
    width: 150px;
    height: 150px;
    bottom: -50px;
    right: 20%;
}

/* Story Section */
.story-section {
    padding: 100px 0;
    background: #0a0a0a;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 60px;
    align-items: start;
}

.story-text {
    color: #cccccc;
}

.story-intro {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 40px;
    color: #dddddd;
}

/* Timeline */
.timeline {
    position: relative;
    margin: 40px 0 60px;
    padding-left: 30px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, #D4AF37, #FFD700, #D4AF37);
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
    padding-left: 30px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -38px;
    top: 5px;
    width: 15px;
    height: 15px;
    background: #D4AF37;
    border-radius: 50%;
    border: 3px solid #0a0a0a;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.3);
}

.timeline-year {
    position: absolute;
    left: -120px;
    top: 0;
    background: rgba(212, 175, 55, 0.1);
    color: #D4AF37;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.timeline-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #ffffff;
}

.timeline-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: #aaaaaa;
}

/* Mission Statement */
.mission-statement {
    background: rgba(30, 30, 30, 0.8);
    border-radius: 15px;
    padding: 30px;
    border-left: 5px solid #D4AF37;
    display: flex;
    gap: 25px;
    align-items: flex-start;
    margin-top: 40px;
}

.mission-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #D4AF37, #FFD700);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #000;
    flex-shrink: 0;
}

.mission-text h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #ffffff;
}

.mission-text p {
    font-size: 1rem;
    line-height: 1.6;
    color: #cccccc;
}

/* Story Image */
.story-image {
    position: sticky;
    top: 100px;
}

.image-frame {
    background: rgba(30, 30, 30, 0.8);
    border-radius: 15px;
    padding: 30px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    margin-bottom: 30px;
    text-align: center;
}

.image-placeholder {
    width: 100%;
    height: 200px;
    background: rgba(40, 40, 40, 0.7);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #D4AF37;
    font-size: 5rem;
}

.story-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.stat-item {
    background: rgba(30, 30, 30, 0.8);
    border-radius: 10px;
    padding: 20px 10px;
    text-align: center;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 5px;
    font-family: 'Montserrat', sans-serif;
}

.stat-label {
    font-size: 0.8rem;
    color: #aaaaaa;
}

/* Founder Section */
.founder-section {
    padding: 100px 0;
    background: #111111;
    position: relative;
}

.founder-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, transparent, #D4AF37, transparent);
}

.founder-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.founder-card {
    background: rgba(25, 25, 25, 0.8);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
}

.founder-card:hover {
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.founder-image {
    position: relative;
    height: 250px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(184, 134, 11, 0.05));
    display: flex;
    align-items: center;
    justify-content: center;
}

.founder-image .image-placeholder {
    width: 150px;
    height: 150px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    font-size: 4rem;
    color: #D4AF37;
    border: 5px solid rgba(212, 175, 55, 0.2);
}

.founder-role {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    text-align: center;
    background: rgba(0, 0, 0, 0.7);
    color: #D4AF37;
    padding: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.founder-content {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.founder-content h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: #ffffff;
}

.founder-tagline {
    font-style: italic;
    color: #D4AF37;
    margin-bottom: 20px;
    font-size: 1rem;
    padding-left: 15px;
    border-left: 3px solid #D4AF37;
}

.founder-content p {
    color: #aaaaaa;
    line-height: 1.6;
    margin-bottom: 25px;
    flex: 1;
}

.founder-expertise h4 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: #ffffff;
}

.expertise-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 25px;
}

.tag {
    background: rgba(212, 175, 55, 0.1);
    color: #D4AF37;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.founder-contact {
    margin-top: auto;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: #D4AF37;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid #D4AF37;
    transition: all 0.3s ease;
    width: 100%;
    justify-content: center;
    text-align: center;
}

.contact-link:hover {
    background: rgba(212, 175, 55, 0.1);
    transform: translateY(-3px);
}

/* Values Section */
.values-section {
    padding: 100px 0;
    background: #0a0a0a;
}

.values-content {
    max-width: 1200px;
    margin: 0 auto;
}

.philosophy-statement {
    background: rgba(30, 30, 30, 0.8);
    border-radius: 15px;
    padding: 40px;
    margin-bottom: 60px;
    display: flex;
    gap: 30px;
    align-items: flex-start;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.philosophy-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #D4AF37, #FFD700);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: #000;
    flex-shrink: 0;
}

.philosophy-text h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #ffffff;
}

.philosophy-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #cccccc;
    margin-bottom: 25px;
}

.philosophy-text blockquote {
    font-style: italic;
    font-size: 1.2rem;
    color: #D4AF37;
    padding: 20px;
    border-left: 3px solid #D4AF37;
    background: rgba(212, 175, 55, 0.05);
    border-radius: 0 10px 10px 0;
    margin: 25px 0 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.value-card {
    background: rgba(30, 30, 30, 0.8);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.3s ease;
}

.value-card:hover {
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: #D4AF37;
}

.value-card h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #ffffff;
}

.value-card p {
    color: #aaaaaa;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Why Choose Us Section */
.why-choose-section {
    padding: 100px 0;
    background: #111111;
    position: relative;
}

.why-choose-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #D4AF37, #FFD700, #D4AF37);
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.reason-card {
    background: rgba(25, 25, 25, 0.8);
    border-radius: 15px;
    padding: 30px;
    display: flex;
    gap: 25px;
    align-items: flex-start;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.reason-card:hover {
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateY(-5px);
}

.reason-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(to bottom, #D4AF37, #FFD700);
}

.reason-number {
    font-size: 3rem;
    font-weight: 800;
    color: rgba(212, 175, 55, 0.2);
    font-family: 'Montserrat', sans-serif;
    line-height: 1;
    flex-shrink: 0;
}

.reason-content h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #ffffff;
}

.reason-content p {
    color: #aaaaaa;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Impact Section */
.impact-section {
    padding: 100px 0;
    background: #0a0a0a;
}

.impact-content {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 60px;
    align-items: start;
}

.impact-text h2 {
    text-align: left;
}

.impact-text p {
    font-size: 1.1rem;
    color: #cccccc;
    margin-bottom: 40px;
    line-height: 1.6;
}

.impact-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.impact-stat {
    text-align: center;
    padding: 25px;
    background: rgba(30, 30, 30, 0.8);
    border-radius: 10px;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.impact-stat .stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 10px;
    font-family: 'Montserrat', sans-serif;
}

.impact-stat .stat-label {
    font-size: 1rem;
    margin-bottom: 10px;
    color: #ffffff;
    font-weight: 600;
}

.impact-stat .stat-desc {
    font-size: 0.85rem;
    color: #aaaaaa;
}

.impact-image .image-frame {
    height: 200px;
    margin-bottom: 30px;
}

.impact-note {
    background: rgba(30, 30, 30, 0.8);
    border-radius: 10px;
    padding: 25px;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.impact-note h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 10px;
}

.impact-note ul {
    list-style: none;
    padding-left: 0;
}

.impact-note ul li {
    color: #cccccc;
    font-size: 0.95rem;
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
}

.impact-note ul li::before {
    content: '🏆';
    position: absolute;
    left: 0;
    top: 0;
}

/* CTA Section */
.about-cta {
    padding: 100px 0;
    background: linear-gradient(rgba(10, 10, 10, 0.9), rgba(10, 10, 10, 0.9)), url('../images/hero/product-hero.jpeg');
    background-size: cover;
    background-position: center;
    text-align: center;
    position: relative;
}

.about-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(212, 175, 55, 0.2), transparent 70%);
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.about-cta h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #ffffff;
}

.about-cta p {
    font-size: 1.3rem;
    color: #cccccc;
    max-width: 700px;
    margin: 0 auto 50px;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.btn-gold-large {
    background: linear-gradient(135deg, #D4AF37, #B8860b);
    color: #000;
    padding: 20px 50px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.3rem;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
    border: 2px solid transparent;
}

.btn-gold-large:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.6);
    color: #000;
}

.btn-outline-large {
    background: transparent;
    color: #D4AF37;
    padding: 20px 50px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.3rem;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    border: 2px solid #D4AF37;
    transition: all 0.3s ease;
}

.btn-outline-large:hover {
    background: rgba(212, 175, 55, 0.1);
    transform: translateY(-8px);
}

/* Footer Additional */
.footer-note {
    font-size: 0.9rem;
    color: #777777;
    margin-top: 10px;
    font-style: italic;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .story-content,
    .impact-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .story-image,
    .impact-image {
        position: static;
    }
}

@media (max-width: 992px) {
    .about-hero .hero-title {
        font-size: 2.8rem;
    }
    
    .founder-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .philosophy-statement {
        flex-direction: column;
        text-align: center;
    }
    
    .philosophy-icon {
        margin: 0 auto;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .why-choose-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .about-hero {
        padding: 150px 0 80px;
    }
    
    .about-hero .hero-title {
        font-size: 2.2rem;
    }
    
    .about-hero .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .timeline-year {
        position: static;
        display: inline-block;
        margin-bottom: 10px;
    }
    
    .timeline {
        padding-left: 20px;
    }
    
    .timeline-item {
        padding-left: 20px;
    }
    
    .timeline-item::before {
        left: -28px;
    }
    
    .mission-statement {
        flex-direction: column;
        text-align: center;
    }
    
    .mission-icon {
        margin: 0 auto;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .impact-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-cta h2 {
        font-size: 2.2rem;
    }
    
    .about-cta p {
        font-size: 1.1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-gold-large, .btn-outline-large {
        width: 100%;
        max-width: 400px;
        justify-content: center;
        padding: 18px 30px;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .story-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .impact-stats {
        grid-template-columns: 1fr;
    }
    
    .reason-card {
        flex-direction: column;
        text-align: center;
    }
    
    .reason-number {
        font-size: 2.5rem;
    }
}