/* Luxury About Page Styles */

/* Intro Grid */
.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.intro-content h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 25px;
    font-family: var(--font-heading);
}

.intro-content p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.intro-image {
    position: relative;
}

.intro-image img {
    width: 100%;
    border-radius: 4px;
    box-shadow: var(--shadow-lg);
}

.intro-image::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid var(--primary);
    top: 20px;
    left: 20px;
    z-index: -1;
}

@media (max-width: 768px) {
    .intro-grid { grid-template-columns: 1fr; gap: 40px; }
    .intro-image::before { top: 15px; left: 15px; }
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-card {
    background: #fff;
    padding: 40px 20px;
    border-radius: 4px;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s;
    border: 1px solid #ddd;
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
}

.stat-card .number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    font-family: var(--font-heading);
    margin-bottom: 10px;
}

.stat-card .label {
    font-size: 1rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 992px) {
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
    .stats-grid { grid-template-columns: 1fr; }
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.value-card {
    padding: 40px 30px;
    text-align: center;
    border: 1px solid #eee;
    transition: all 0.3s;
    background: #fff;
}

.value-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.value-card .icon {
    width: 80px;
    height: 80px;
    background: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: var(--primary);
}

.value-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 15px;
    font-family: var(--font-heading);
}

.value-card p {
    font-size: 1rem;
    color: #666;
    line-height: 1.7;
}

@media (max-width: 992px) {
    .values-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .values-grid { grid-template-columns: 1fr; }
}