/* Modern Luxurious About Page Styles */

:root {
    --color-gold: #D4AF37;
    --color-gold-hover: #b5952f;
    --color-dark: #050505;
    --color-dark-soft: #121212;
    --color-card-bg: #1c1c1c;
    --color-white: #ffffff;
    --color-gray: #a0a0a0;
    --color-light-gray: #e0e0e0;
    --color-border: rgba(255, 255, 255, 0.1);
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Outfit', sans-serif;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-blur: blur(20px);
}

/* Base Styles specific to About Page to isolate changes */
body.about-page {
    background-color: var(--color-white);
    color: var(--color-dark);
    font-family: var(--font-body);
}

/* Hero Section */
.about-hero-modern {
    position: relative;
    height: 70vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background-color: var(--color-dark);
    /* Using a dark/luxury looking image */
    background-image: url('../images/slider/viterra-bathware-slider-6.webp'); 
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Parallax effect */
}

.about-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(5,5,5,0.4) 0%, rgba(5,5,5,0.8) 100%);
    z-index: 1;
}

.about-hero-content {
    position: relative;
    z-index: 2;
    padding: 0 20px;
    max-width: 900px;
    animation: fadeInUp 1s ease-out;
}

.about-hero-subtitle {
    font-family: var(--font-body);
    font-size: 1rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 20px;
    display: block;
    font-weight: 500;
}

.about-hero-title {
    font-family: var(--font-heading);
    font-size: 4.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--color-white);
    text-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.about-hero-desc {
    font-size: 1.2rem;
    color: var(--color-light-gray);
    font-weight: 300;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

/* Intro Section */
.about-intro-section {
    padding: 100px 0;
    background-color: var(--color-white);
    position: relative;
}

.about-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-intro-image-wrapper {
    position: relative;
}

.about-intro-img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* Abstract decorations */
.about-intro-image-wrapper::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100px;
    height: 100px;
    border-top: 2px solid var(--color-gold);
    border-left: 2px solid var(--color-gold);
    z-index: -1;
}

.about-intro-image-wrapper::after {
    content: '';
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    border-bottom: 2px solid var(--color-gold);
    border-right: 2px solid var(--color-gold);
    z-index: -1;
}

.about-intro-content h3 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: var(--color-dark);
}

.about-intro-content p {
    color: #555;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Timeline/History Stripe */
.history-section {
    padding: 100px 0;
    background-color: #f9f9f9;
}

.section-header-center {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.section-subtitle {
    display: block;
    color: var(--color-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: 15px;
    font-weight: 500;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--color-dark);
    margin-bottom: 20px;
}

/* Core Values Grid */
.values-section {
    padding: 100px 0;
    background-color: var(--color-dark); /* Dark theme for contrast */
    color: var(--color-white);
    position: relative;
    overflow: hidden;
}

/* Background overlay pattern */
.values-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.05), transparent 70%);
    pointer-events: none;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 2;
}

.value-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.05);
    padding: 40px;
    transition: all 0.4s ease;
    border-radius: 4px;
}

.value-card:hover {
    background: rgba(212, 175, 55, 0.1); /* Gold tint on hover */
    transform: translateY(-10px);
    border-color: var(--color-gold);
}

.value-icon {
    font-size: 2.5rem;
    color: var(--color-gold);
    margin-bottom: 25px;
    display: inline-block;
}

.value-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--color-white);
}

.value-desc {
    color: var(--color-gray);
    line-height: 1.6;
}

/* Stats Counter Section - Clean & Minimal */
.stats-section {
    padding: 80px 0;
    background-color: var(--color-white);
    border-bottom: 1px solid #eee;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-item h4 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    color: var(--color-dark);
    margin-bottom: 10px;
    font-weight: 700;
}

.stat-item span {
    color: var(--color-gold); /* Gold suffix like '+' */
}

.stat-item p {
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    color: #666;
}


/* Responsive Tweaks */
@media (max-width: 992px) {
    .about-hero-title {
        font-size: 3.5rem;
    }
    
    .about-intro-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 50px 30px;
    }
}

@media (max-width: 576px) {
    .about-hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
