/* ===========================
   CORPORATE CAPITAL MARKETS
   Premium Enterprise Design
   =========================== */

/* ===========================
   HERO SECTION
   =========================== */
.ccm-hero {
    position: relative;
    height: 75vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(rgba(15, 20, 30, 0.6), rgba(15, 20, 30, 0.65)),
                url('../images/hero-main-skyscrapers.jpg') center center/cover no-repeat;
    overflow: hidden;
}

.ccm-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.06;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(255,255,255,0.03) 10px, rgba(255,255,255,0.03) 20px),
        repeating-linear-gradient(-45deg, transparent, transparent 10px, rgba(255,255,255,0.03) 10px, rgba(255,255,255,0.03) 20px);
}

.ccm-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 0 20px;
}

.ccm-hero-breadcrumb {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.ccm-hero-breadcrumb a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.ccm-hero-breadcrumb a:hover {
    color: #1a4d4d;
}

.ccm-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 64px;
    font-weight: 400;
    color: #ffffff;
    line-height: 1.1;
    letter-spacing: -1.2px;
    margin: 0 0 28px 0;
}

.ccm-hero-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 19px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
    margin: 0;
}

/* ===========================
   OVERVIEW SECTION
   =========================== */
.ccm-overview {
    padding: 120px 0;
    background: #ffffff;
}

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

.ccm-market-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 64px;
    padding-top: 64px;
    border-top: 1px solid #e1e4e8;
}

.ccm-highlight-box {
    padding: 32px;
    background: #fafbfc;
    border: 1px solid #e1e4e8;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.ccm-highlight-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.06);
    border-color: #1a4d4d;
}

.ccm-highlight-box h4 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 500;
    color: #1a1a1a;
    margin: 0 0 12px 0;
}

.ccm-highlight-box p {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
    color: #6a737d;
    margin: 0;
}

/* ===========================
   MARKET ENVIRONMENT SECTION
   =========================== */
.ccm-environment {
    padding: 140px 0;
    background: linear-gradient(to bottom, #fafbfc 0%, #ffffff 100%);
}

.ccm-env-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
}

.ccm-env-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.ccm-env-card {
    padding: 48px;
    background: #ffffff;
    border: 1px solid #e1e4e8;
    border-radius: 2px;
    transition: all 0.4s ease;
}

.ccm-env-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.08);
}

.ccm-env-icon {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 2px;
    margin-bottom: 28px;
    padding: 16px;
    transition: all 0.4s ease;
}

.ccm-env-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: all 0.3s ease;
}



.ccm-env-title {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    font-weight: 500;
    color: #1a1a1a;
    margin: 0 0 20px 0;
    letter-spacing: -0.4px;
}

.ccm-env-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.ccm-env-list li {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: #4a4a4a;
    padding-left: 24px;
    position: relative;
}

.ccm-env-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #1a4d4d;
    font-size: 18px;
    font-weight: 700;
}

/* ===========================
   SERVICES SECTION
   =========================== */
.ccm-services {
    padding: 140px 0;
    background: #ffffff;
}

.ccm-services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 64px;
}

.ccm-service-card {
    padding: 48px;
    background: linear-gradient(135deg, #fafbfc 0%, #ffffff 100%);
    border: 1px solid #e1e4e8;
    border-radius: 2px;
    transition: all 0.4s ease;
}

.ccm-service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.ccm-service-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e1e4e8;
}

.ccm-service-number {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 300;
    color: #1a4d4d;
    line-height: 1;
}

.ccm-service-title {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    font-weight: 500;
    color: #1a1a1a;
    margin: 0;
    letter-spacing: -0.4px;
}

.ccm-service-desc {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.7;
    color: #4a4a4a;
    margin: 0 0 28px 0;
}

.ccm-service-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ccm-detail-item {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height: 1.5;
    color: #6a737d;
    padding-left: 24px;
    position: relative;
}

.ccm-detail-item::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #1a4d4d;
    font-weight: 600;
}

/* ===========================
   CLIENTS SECTION
   =========================== */
.ccm-clients {
    padding: 140px 0;
    background: #fafbfc;
}

.ccm-clients-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
}

.ccm-clients-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.ccm-client-item {
    padding: 48px;
    background: #ffffff;
    border: 1px solid #e1e4e8;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.ccm-client-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
    border-color: #1a4d4d;
}

.ccm-client-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    border-radius: 2px;
    margin-bottom: 24px;
    padding: 14px;
    transition: all 0.3s ease;
}

.ccm-client-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: all 0.3s ease;
}

.ccm-client-item:hover .ccm-client-logo {
    transform: scale(1.05);
}

.ccm-client-item:hover .ccm-client-icon {
    background: #1a4d4d;
}

.ccm-client-title {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 500;
    color: #1a1a1a;
    margin: 0 0 14px 0;
    letter-spacing: -0.4px;
}

.ccm-client-desc {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.7;
    color: #4a4a4a;
    margin: 0;
}

/* ===========================
   RESPONSIVE DESIGN
   =========================== */

/* Tablet */
@media (max-width: 1024px) {
    .ccm-hero-title {
        font-size: 52px;
    }

    .ccm-market-highlights {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .ccm-env-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .ccm-services-grid {
        gap: 32px;
    }

    .ccm-clients-grid {
        gap: 32px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .ccm-hero {
        min-height: 500px;
    }

    .ccm-hero-title {
        font-size: 40px;
    }

    .ccm-hero-subtitle {
        font-size: 17px;
    }

    .ccm-overview {
        padding: 100px 0;
    }

    .ccm-market-highlights {
        margin-top: 48px;
        padding-top: 48px;
    }

    .ccm-highlight-box {
        padding: 28px 24px;
    }

    .ccm-environment {
        padding: 100px 0;
    }

    .ccm-env-card {
        padding: 36px 28px;
    }

    .ccm-services {
        padding: 100px 0;
    }

    .ccm-services-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .ccm-service-card {
        padding: 36px 28px;
    }

    .ccm-service-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .ccm-clients {
        padding: 100px 0;
    }

    .ccm-clients-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .ccm-client-item {
        padding: 36px 28px;
    }
}
