/* ========================================
   Corporate Connect Page Styles (corporate-connect.css)
   All styles prefixed with 'cc-' to avoid conflicts
   ======================================== */

/* Corporate Connect Hero Section */
.cc-hero {
    min-height: 70vh;
    background: url('../images/corporate-connect-banner-bg.webp') center center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    padding: 96px 0;
}

.cc-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.cc-hero .container {
    position: relative;
    z-index: 2;
}

.cc-hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    color: #fff;
}

.cc-hero-title {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cc-hero-subtitle {
    font-size: 32px;
    font-weight: 400;
    line-height: 1.4;
    margin-bottom: 40px;
    color: #fff;
}

/* Dual Value Proposition Section */
.cc-value-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.cc-value-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
    max-width: 1000px;
    margin: 0 auto;
}

.cc-value-card {
    background: #fff;
    padding: 48px 40px;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.cc-value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.15);
}

.cc-value-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #0d86ff 0%, #0066cc 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 32px;
    font-size: 48px;
    color: #fff;
}

.cc-value-title {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cc-value-description {
    font-size: 18px;
    line-height: 1.6;
    color: #666;
}

/* Section Common Styles */
.cc-section-header {
    margin-bottom: 64px;
}

.cc-section-title {
    font-size: 42px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cc-section-subtitle {
    font-size: 20px;
    line-height: 1.6;
    color: #666;
    max-width: 900px;
    margin: 16px auto 0;
}

/* Why Corporate Connect Features */
.cc-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.cc-feature-card {
    background: #fff;
    padding: 40px 24px;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    text-align: center;
    transition: all 0.3s ease;
}

.cc-feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.15);
}

.cc-feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #0d86ff 0%, #0066cc 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 36px;
    color: #fff;
}

.cc-feature-title {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cc-feature-description {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
}

/* How to Use Guide Section */
.cc-guide-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.cc-guide-item {
    margin-bottom: 64px;
}

.cc-guide-item:last-child {
    margin-bottom: 0;
}

.cc-guide-heading {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 40px;
    text-align: center;
}

.cc-steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.cc-step {
    background: #fff;
    padding: 32px 24px;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    position: relative;
    transition: all 0.3s ease;
}

.cc-step:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.cc-step-number {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #0d86ff 0%, #0066cc 100%);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
}

.cc-step-title {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
    padding-right: 50px;
}

.cc-step-description {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
}

/* Highlight Box */
.cc-highlight-box {
    background: linear-gradient(135deg, #0d86ff 0%, #0066cc 100%);
    padding: 48px;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(13, 134, 255, 0.3);
    display: flex;
    align-items: center;
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
}

.cc-highlight-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: #fff;
    flex-shrink: 0;
}

.cc-highlight-text {
    font-size: 20px;
    line-height: 1.6;
    color: #fff;
    margin: 0;
}

/* Participating Companies Section */
.cc-disclaimer {
    max-width: 900px;
    margin: 0 auto 48px;
    padding: 24px;
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    border-radius: 8px;
}

.cc-disclaimer p {
    font-size: 14px;
    line-height: 1.6;
    color: #856404;
    margin: 0;
}

.cc-companies-grid {
    background: #fff;
    padding: 80px 48px;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    text-align: center;
    margin-bottom: 40px;
}

.cc-company-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.cc-company-placeholder i {
    font-size: 64px;
    color: #ccc;
}

.cc-company-placeholder p {
    font-size: 18px;
    color: #999;
    margin: 0;
}

/* For Companies Section */
.cc-invest-section {
    background: linear-gradient(135deg, #f0f8ff 0%, #e6f2ff 100%);
}

.cc-company-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
    max-width: 1200px;
    margin: 0 auto;
}

.cc-company-feature {
    text-align: center;
}

.cc-company-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #0d86ff 0%, #0066cc 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 48px;
    color: #fff;
}

.cc-company-feature-title {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.cc-company-feature-desc {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
}

.cc-company-feature-desc em {
    color: #0d86ff;
    font-style: normal;
    font-weight: 700;
}

/* Reasons Section */
.cc-reasons-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
}

.cc-reason-card {
    background: #fff;
    padding: 40px 32px;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    text-align: center;
    transition: all 0.3s ease;
}

.cc-reason-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.15);
}

.cc-reason-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #0d86ff 0%, #0066cc 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 36px;
    color: #fff;
}

.cc-reason-title {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
    line-height: 1.3;
}

.cc-reason-description {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
}

/* Contact Section */
.cc-contact-section {
    background: linear-gradient(135deg, #0d86ff 0%, #0066cc 100%);
}

.cc-contact-content {
    max-width: 700px;
    margin: 0 auto;
    color: #fff;
}

.cc-contact-title {
    font-size: 42px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 24px;
}

.cc-contact-text {
    font-size: 20px;
    line-height: 1.6;
    color: #fff;
    margin-bottom: 32px;
}

.cc-contact-text strong {
    color: #fff;
    text-decoration: underline;
}

/* Disclosure Section */
.cc-disclosure-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.cc-disclosure-content {
    max-width: 1000px;
    margin: 0 auto;
}

.cc-disclosure-title {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 32px;
    text-transform: uppercase;
}

.cc-disclosure-text {
    background: #fff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.cc-disclosure-text p {
    font-size: 14px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 20px;
}

.cc-disclosure-text p:last-child {
    margin-bottom: 0;
}

.cc-disclosure-text ul {
    margin: 16px 0;
    padding-left: 24px;
}

.cc-disclosure-text ul li {
    font-size: 14px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 8px;
}

/* Responsive Styles for Corporate Connect Page */
@media (max-width: 1200px) {
    .cc-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cc-company-features-grid,
    .cc-reasons-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

@media (max-width: 992px) {
    .cc-hero-title {
        font-size: 42px;
    }

    .cc-hero-subtitle {
        font-size: 24px;
    }

    .cc-value-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .cc-section-title {
        font-size: 32px;
    }

    .cc-guide-heading {
        font-size: 28px;
    }

    .cc-features-grid {
        grid-template-columns: 1fr;
    }

    .cc-steps-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .cc-hero {
        min-height: auto;
        padding: 64px 0;
    }

    .cc-hero-title {
        font-size: 32px;
    }

    .cc-hero-subtitle {
        font-size: 20px;
    }

    .cc-section-title {
        font-size: 28px;
    }

    .cc-guide-heading {
        font-size: 24px;
    }

    .cc-contact-title {
        font-size: 32px;
    }

    .cc-contact-text {
        font-size: 18px;
    }

    .cc-highlight-box {
        flex-direction: column;
        padding: 32px 24px;
        text-align: center;
    }

    .cc-highlight-text {
        font-size: 16px;
    }

    .cc-disclosure-text {
        padding: 24px;
    }
}

@media (max-width: 480px) {
    .cc-hero-title {
        font-size: 24px;
    }

    .cc-hero-subtitle {
        font-size: 18px;
    }

    .cc-section-title {
        font-size: 24px;
    }

    .cc-value-icon,
    .cc-company-icon {
        width: 80px;
        height: 80px;
        font-size: 36px;
    }

    .cc-feature-icon,
    .cc-reason-icon {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }

    .cc-step-number {
        width: 32px;
        height: 32px;
        font-size: 16px;
    }

    .cc-value-card {
        padding: 32px 24px;
    }

    .cc-companies-grid {
        padding: 48px 24px;
    }
}

