/* ============================================================
   About Us Redesign - Premium Architect Theme
   ============================================================ */

/* Import Fonts */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&family=Inter:wght@300;400;500&display=swap');

:root {
    --primary-color: #1a1a1a;
    --secondary-color: #d4af37;
    /* Gold */
    --text-color: #4a4a4a;
    --light-bg: #f9f9f9;
    --white: #ffffff;
    --border-color: #e5e5e5;
    --transition: all 0.4s ease;
}

.text-center {
    text-align: center;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Outfit', sans-serif;
    color: var(--primary-color);
    font-weight: 600;
}

/* Page Wrapper */
.about-page-wrapper {

    /* Account for fixed header */
    overflow-x: hidden;
}

/* Hero Section - Reference Style */
.about-hero {
    padding: 20px 0 60px;
    /* Reduced top padding significantly */
    background-color: #f8f9fa;
    border-bottom: 1px solid #eee;
}

.hero-content-wrapper {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    margin-top: 100px;
}

.hero-logo-box {
    width: 300px;
    height: 300px;
    border: 10px solid #333;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    flex-shrink: 0;
}

.hero-logo-box img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
}

.hero-text-content {
    flex: 1;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    color: #000;
    margin-bottom: 5px;
    line-height: 1;
    font-family: 'Outfit', sans-serif;
    text-transform: uppercase;
}

.hero-company-name {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 30px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 500;
}

.hero-values-list {
    display: flex;
    gap: 15px;
    color: #999;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Journey Section */
.journey-section {
    padding: 80px 0;
    max-width: 1200px;
    margin: 0 auto;
}

.journey-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    padding: 0 20px;
}

.journey-heading {
    font-size: 2.5rem;
    font-weight: 800;
    color: #333;
    margin-bottom: 10px;
    text-transform: uppercase;
    font-family: 'Outfit', sans-serif;
}

.journey-subheading {
    font-size: 0.9rem;
    color: var(--secondary-color);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 40px;
    font-weight: 600;
}

.journey-text p {
    margin-bottom: 2rem;
    color: #555;
    line-height: 1.8;
    font-size: 1.05rem;
}

/* Benefits Grid (Right Side) */
.benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.benefit-card {
    background: #fff;
    padding: 20px;
    /* Further reduced padding */
    border: 1px solid #eee;
    transition: var(--transition);
    min-height: 180px;
    /* Even smaller height */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

.benefit-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transform: translateY(-5px);
}

.benefit-card.highlight {
    justify-content: flex-end;
    /* Push text to bottom */
    background: #fff;
}

.bg-text-small {
    font-size: 0.8rem;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 3px;
    font-weight: 600;
}

.bg-text-large {
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1;
    color: #dfb162;
    text-transform: uppercase;
}

.bg-text-large span {
    color: #333;
    display: block;
}

.benefit-icon {
    font-size: 2rem;
    color: #333;
    position: absolute;
    top: 20px;
    right: 20px;
}

/* Content Container for Title/Desc */
.benefit-content-wrap {
    margin-top: auto;
}

.benefit-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #333;
    padding-right: 40px;
    /* Space for icon if needed */
}

.benefit-desc {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.5;
}

/* Faces Behind Section */
.faces-section {
    padding: 80px 0 120px;
    background: #fff;
}

.section-center-heading {
    text-align: center;
    margin-bottom: 80px;
}

.faces-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.team-card {
    display: flex;
    align-items: center;
    background: #fff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.team-image {
    width: 200px;
    height: 250px;
    object-fit: cover;
}

.team-info {
    padding: 30px;
    flex: 1;
}

.team-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.team-role {
    font-size: 0.8rem;
    color: #999;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.team-social {
    display: flex;
    gap: 15px;
}

.team-social a {
    color: #ccc;
    font-size: 0.9rem;
    transition: 0.3s;
}

.team-social a:hover {
    color: #333;
}

/* Values Section */
.values-section {
    background-color: var(--light-bg);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.value-card {
    background: var(--white);
    padding: 40px;
    text-align: center;
    transition: var(--transition);
    border-bottom: 2px solid transparent;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-bottom-color: var(--secondary-color);
}

.value-icon {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.value-title {
    font-size: 1.25rem;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.value-text {
    font-size: 0.95rem;
    color: #666;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .order-reverse {
        order: -1;
    }
}

@media (max-width: 768px) {
    .about-page-wrapper {
        margin-top: 80px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .about-section {
        padding: 50px 0;
    }

    .about-grid,
    .values-grid {
        padding: 0 20px;
    }
}