/* About Page Styles (v1) */

/* Hero Section */
.about-hero {
    padding: var(--spacing-xl, 2rem) 0 var(--spacing-lg, 1.5rem);
    border-bottom: 1px solid #e5e7eb;
}

.about-hero .breadcrumb {
    font-size: 0.9375rem;
    color: #6b7280;
    margin-bottom: 1rem;
}

.about-hero .breadcrumb a {
    color: var(--primary, #2563eb);
    text-decoration: none;
}

.about-hero .breadcrumb a:hover {
    text-decoration: underline;
}

.hero-content {
    text-align: center;
    margin-top: 2rem;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* About Section */
.about-section {
    padding: 2rem 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

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

.section-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.section-title i {
    font-size: 1.5rem;
    color: var(--primary, #2563eb);
}

.section-title.text-center {
    justify-content: center;
    text-align: center;
}

.section-subtitle {
    font-size: 1.125rem;
    color: #6b7280;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.lead-text {
    font-size: 1.25rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.about-text p {
    font-size: 1rem;
    color: #6b7280;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.about-image .image-placeholder {
    width: 100%;
    padding-top: 75%;
    background: linear-gradient(135deg, #dbeafe 0%, #2563eb 100%);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.about-image .image-placeholder i {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.about-image .image-placeholder span {
    font-size: 1rem;
    font-weight: 600;
}

/* History */
.history-section {
    padding: 2rem 0;
}

.bg-light {
    background: #f9fafb;
}

.history-content {
    max-width: 900px;
    margin: 0 auto;
}

.history-content p {
    font-size: 1.0625rem;
    color: #6b7280;
    line-height: 1.8;
    margin-bottom: 1rem;
}

/* Jewels */
.jewels-section {
    padding: 2rem 0;
}

.jewels-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.jewel-card {
    text-align: center;
    padding: 1.5rem 1rem;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    transition: transform 0.2s, box-shadow 0.2s;
}

.jewel-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.jewel-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, var(--primary, #2563eb) 0%, #1d4ed8 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.jewel-icon i {
    font-size: 1.5rem;
    color: #fff;
}

.jewel-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.5rem;
}

.jewel-text {
    font-size: 0.875rem;
    color: #6b7280;
    line-height: 1.5;
    margin: 0;
}

/* Highlight */
.products-highlight {
    padding: 2rem 0;
}

.highlight-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.highlight-card {
    background: #fff;
    padding: 2rem 1.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    transition: transform 0.2s, box-shadow 0.2s;
    border-top: 4px solid var(--primary, #2563eb);
}

.highlight-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.highlight-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    background: #f3f4f6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.highlight-icon i {
    font-size: 2rem;
    color: var(--primary, #2563eb);
}

.highlight-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.25rem;
}

.highlight-subtitle {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--primary, #2563eb);
    margin-bottom: 0.5rem;
}

.highlight-text {
    font-size: 0.875rem;
    color: #6b7280;
    line-height: 1.5;
    margin: 0;
}

/* Mission */
.mission-section {
    padding: 2rem 0;
}

.mission-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 2rem;
    align-items: start;
}

.mission-text p {
    font-size: 1rem;
    color: #6b7280;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.mission-text .badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, var(--primary, #2563eb) 0%, #1d4ed8 100%);
    color: #fff;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

.mission-values {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.value-item {
    display: flex;
    gap: 1rem;
    padding: 1.25rem;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.value-item i {
    font-size: 1.5rem;
    color: var(--primary, #2563eb);
    flex-shrink: 0;
}

.value-item h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.25rem;
}

.value-item p {
    font-size: 0.875rem;
    color: #6b7280;
    line-height: 1.5;
    margin: 0;
}

/* Products detail */
.products-detail {
    padding: 2rem 0;
}

.products-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.product-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
    border-left: 4px solid var(--primary, #2563eb);
}

.product-item-icon {
    width: 56px;
    height: 56px;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--primary, #2563eb) 0%, #1d4ed8 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-item-icon i {
    font-size: 1.5rem;
    color: #fff;
}

.product-item-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.5rem;
}

.product-item-content p {
    font-size: 0.875rem;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

/* Location */
.location-section {
    padding: 2rem 0;
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
}

.location-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 1rem;
}

.location-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.location-item i {
    font-size: 1.25rem;
    color: var(--primary, #2563eb);
    flex-shrink: 0;
}

.location-item h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.25rem;
}

.location-item p, .location-item a {
    font-size: 0.9375rem;
    color: #6b7280;
    line-height: 1.5;
    margin: 0.125rem 0;
}

.location-item a {
    color: var(--primary, #2563eb);
    text-decoration: none;
}

.location-item a:hover {
    text-decoration: underline;
}

.map-placeholder {
    width: 100%;
    padding-top: 75%;
    background: #f3f4f6;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #6b7280;
    border: 2px dashed #e5e7eb;
}

.map-placeholder i {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary, #2563eb);
}

.map-placeholder p {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: #111827;
}

/* CTA */
.cta-section {
    padding: 2rem 0;
    background: linear-gradient(135deg, var(--primary, #2563eb) 0%, #1d4ed8 100%);
    color: #fff;
}

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

.cta-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #fff;
}

.cta-text {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    opacity: 0.95;
    line-height: 1.6;
}

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

.cta-section .btn-large {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    transition: transform 0.2s;
}

.cta-section .btn-primary {
    background: #fff;
    color: var(--primary, #2563eb);
}

.cta-section .btn-primary:hover {
    transform: translateY(-2px);
}

.cta-section .btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.cta-section .btn-secondary:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 992px) {
    .about-content,
    .mission-content,
    .location-content {
        grid-template-columns: 1fr;
    }
    .jewels-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .highlight-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-title { font-size: 1.75rem; }
    .jewels-grid { grid-template-columns: 1fr; }
    .product-item { flex-direction: column; }
    .cta-buttons { flex-direction: column; }
    .cta-section .btn-large { width: 100%; justify-content: center; }
}
