/* ============================================================
   Expertise Redesign - Based on 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;
}

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 */
.expertise-page-wrapper {
    overflow-x: hidden;
}

/* Hero Section */
.expertise-hero {
    padding: 20px 0 60px;
    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;
}

/* Main Content Section */
.expertise-content-section {
    padding: 80px 0;
    /* matches about section padding */
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

/* Expertise Blocks - ZigZag Layout */
.expertise-row {
    display: flex;
    align-items: center;
    gap: 80px;
    margin-bottom: 100px;
}

.expertise-row:last-child {
    margin-bottom: 0;
}

.expertise-row.reverse {
    flex-direction: row-reverse;
}

.expertise-image-box {
    flex: 1;
    position: relative;
}

.expertise-image-box img {
    width: 100%;
    height: auto;
    border-radius: 0;
    /* Geometric/Sharp like About page */
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.expertise-row:hover .expertise-image-box img {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}

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

.expertise-heading {
    font-size: 2.2rem;
    font-weight: 800;
    color: #333;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-family: 'Outfit', sans-serif;
    position: relative;
    letter-spacing: -0.5px;
}

.expertise-desc {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 30px;
}

.expertise-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.expertise-tag {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--secondary-color);
    border: 1px solid #eee;
    padding: 10px 20px;
    background: #fff;
    transition: var(--transition);
}

.expertise-tag:hover {
    background: var(--secondary-color);
    color: #fff;
    border-color: var(--secondary-color);
}

/* Responsive */
@media (max-width: 992px) {
    .expertise-row {
        flex-direction: column;
        gap: 40px;
        margin-bottom: 60px;
    }

    .expertise-row.reverse {
        flex-direction: column;
    }

    .hero-content-wrapper {
        flex-direction: column;
        text-align: center;
        margin-top: 40px;
        gap: 30px;
    }

    .hero-logo-box {
        margin: 0 auto;
        width: 200px;
        height: 200px;
    }

    .hero-values-list {
        justify-content: center;
        flex-wrap: wrap;
        font-size: 0.75rem;
    }

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