/* About Page Styles */

/* Hero Section */
.about-hero {
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.05) 0%, rgba(255, 0, 0, 0.02) 100%);
    padding: var(--spacing-xl) 0 var(--spacing-lg);
    border-bottom: 1px solid var(--gray-light);
}

.hero-content {
    text-align: center;
    margin-top: 2rem;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* About Section */
.about-section {
    padding: var(--spacing-xl) 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text {
    padding: 2rem;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.section-title i {
    font-size: 1.75rem;
    color: var(--primary);
}

.section-title.text-center {
    justify-content: center;
    text-align: center;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--gray);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.lead-text {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.about-text p {
    font-size: 1.0625rem;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.about-text strong {
    color: var(--dark);
    font-weight: 600;
}

.about-image {
    position: relative;
}

.image-placeholder {
    width: 100%;
    padding-top: 75%;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: 0 10px 30px rgba(255, 0, 0, 0.2);
}

.image-placeholder i {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.image-placeholder span {
    font-size: 1.125rem;
    font-weight: 600;
}

/* History Section */
.history-section {
    padding: var(--spacing-xl) 0;
}

.history-content {
    max-width: 900px;
    margin: 0 auto;
}

.history-content p {
    font-size: 1.125rem;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.history-content strong {
    color: var(--dark);
    font-weight: 600;
}

/* Jewels Section */
.jewels-section {
    padding: var(--spacing-xl) 0;
}

.jewels-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.jewel-card {
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
}

.jewel-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(255, 0, 0, 0.15);
    border-color: var(--primary);
}

.jewel-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.3);
}

.jewel-icon i {
    font-size: 2rem;
    color: var(--white);
}

.jewel-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.75rem;
}

.jewel-text {
    font-size: 0.9375rem;
    color: var(--gray);
    line-height: 1.6;
    margin: 0;
}

/* Products Highlight */
.products-highlight {
    padding: var(--spacing-xl) 0;
}

.highlight-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.highlight-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-top: 4px solid var(--primary);
}

.highlight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(255, 0, 0, 0.2);
}

.highlight-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    background: var(--gray-lighter);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.highlight-card:hover .highlight-icon {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    transform: scale(1.1);
}

.highlight-icon i {
    font-size: 2.5rem;
    color: var(--primary);
    transition: var(--transition);
}

.highlight-card:hover .highlight-icon i {
    color: var(--white);
}

.highlight-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.highlight-subtitle {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1rem;
}

.highlight-text {
    font-size: 0.9375rem;
    color: var(--gray);
    line-height: 1.6;
    margin: 0;
}

/* Mission Section */
.mission-section {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.03) 0%, rgba(255, 0, 0, 0.01) 100%);
}

.mission-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.mission-text p {
    font-size: 1.0625rem;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9375rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.3);
}

.badge i {
    font-size: 1rem;
}

.mission-values {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.value-item {
    display: flex;
    gap: 1.25rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.value-item:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(255, 0, 0, 0.1);
}

.value-item i {
    font-size: 2rem;
    color: var(--primary);
    flex-shrink: 0;
}

.value-item h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.value-item p {
    font-size: 0.9375rem;
    color: var(--gray);
    line-height: 1.6;
    margin: 0;
}

/* Products Detail */
.products-detail {
    padding: var(--spacing-xl) 0;
}

.products-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 3rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.product-item {
    display: flex;
    gap: 2rem;
    padding: 2rem;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.product-item:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 16px rgba(255, 0, 0, 0.1);
    border-left-color: var(--primary);
}

.product-item-icon {
    width: 64px;
    height: 64px;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(255, 0, 0, 0.2);
}

.product-item-icon i {
    font-size: 1.75rem;
    color: var(--white);
}

.product-item-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.75rem;
}

.product-item-content p {
    font-size: 0.9375rem;
    color: var(--gray);
    line-height: 1.7;
    margin: 0;
}

/* Location Section */
.location-section {
    padding: var(--spacing-xl) 0;
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.location-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.location-item {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.location-item i {
    font-size: 1.5rem;
    color: var(--primary);
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.location-item h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.location-item p {
    font-size: 1rem;
    color: var(--gray);
    line-height: 1.6;
    margin: 0.25rem 0;
}

.location-item a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

.location-item a:hover {
    text-decoration: underline;
}

.map-placeholder {
    width: 100%;
    padding-top: 75%;
    background: var(--gray-lighter);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--gray);
    border: 2px dashed var(--gray-light);
}

.map-placeholder i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.map-placeholder p {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.map-placeholder span {
    font-size: 0.9375rem;
    color: var(--gray);
}

/* CTA Section */
.cta-section {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
}

.cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--white);
}

.cta-text {
    font-size: 1.125rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--white);
    color: var(--primary);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    background: var(--gray-lighter);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* Text Center Utility */
.text-center {
    text-align: center;
}

/* Responsive */
@media (max-width: 992px) {
    .about-content,
    .mission-content,
    .location-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .jewels-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .highlight-grid {
        grid-template-columns: 1fr;
    }

    .image-placeholder {
        padding-top: 60%;
    }

    .map-placeholder {
        padding-top: 60%;
    }
}

@media (max-width: 768px) {
    .about-hero {
        padding: var(--spacing-lg) 0;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.0625rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .section-title i {
        font-size: 1.5rem;
    }

    .about-section,
    .history-section,
    .jewels-section,
    .products-highlight,
    .mission-section,
    .products-detail,
    .location-section {
        padding: var(--spacing-lg) 0;
    }

    .jewels-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .products-list {
        gap: 1.25rem;
    }

    .product-item {
        flex-direction: column;
        gap: 1.5rem;
        padding: 1.5rem;
    }

    .product-item-icon {
        width: 56px;
        height: 56px;
    }

    .product-item-icon i {
        font-size: 1.5rem;
    }

    .cta-title {
        font-size: 2rem;
    }

    .cta-text {
        font-size: 1rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-large {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.75rem;
    }

    .section-title {
        font-size: 1.5rem;
        flex-wrap: wrap;
    }

    .about-text,
    .history-content {
        padding: 0;
    }

    .jewel-card,
    .highlight-card {
        padding: 1.5rem;
    }

    .value-item {
        padding: 1.25rem;
    }

    .location-item {
        flex-direction: column;
        gap: 0.75rem;
    }

    .product-item {
        padding: 1.25rem;
    }
}

