@import url(common.css);

/* ===== GENERAL LAYOUT & TYPOGRAPHY ===== */
.main-container {
    width: 80%;
    margin: auto;
}

.subtitle {
    color: var(--main-primary-color);
    font-size: 2vh;
}

.title {
    font-weight: bold;
    font-size: 4vh;
}

/* ===== FIRST & SECOND SECTIONS ===== */
.first-section {
    margin: 0 0 70px 0;
    gap: 50px;
    display: flex;
}

.first-section img {
    width: 100%;
    object-fit: contain;
}

.second-section-grid {
    display: flex;
    flex-direction: row;
}

.second-section-grid-first {
    flex: 1;
}

.second-section-grid-second {
    flex: 1;
}

/* ===== SECTOR GROWTH SECTION ===== */
.sector-growth-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 20px;
    background-color: #f9fbfd;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

.text-content h2 {
    font-size: 36px;
    color: #2c2e35;
    margin-bottom: 30px;
    font-weight: 800;
    line-height: 1.2;
}

.text-content p {
    font-size: 16px;
    line-height: 1.6;
    color: #6d7278;
    margin-bottom: 20px;
}

/* ===== STAT CARDS SECTION ===== */
.cards-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.stat-card {
    background-color: #fffbf5;
    border: 2px dashed #ebdccb;
    border-radius: 16px;
    padding: 24px;
    height: 100%;
    box-sizing: border-box;
}

.card-title {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    color: #a67c70;
    margin-bottom: 8px;
}

.card-value {
    font-size: 32px;
    font-weight: 800;
    color: #b84a42;
    margin-bottom: 12px;
}

.card-desc {
    font-size: 13px;
    line-height: 1.4;
    color: #5a4e4a;
    margin: 0;
}

/* ===== CTA SECTION ===== */
.cta-container {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 40px;
    padding: 20px;
}

.cta-action-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.btn-gold {
    display: inline-block;
    background-color: var(--main-primary-color);
    color: #222;
    text-decoration: none;
    font-weight: 700;
    padding: 14px 28px;
    border-radius: 50px;
    font-size: 16px;
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 10px 20px -5px var(--second-primary-color);
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 25px -5px var(--second-primary-color);
}

.info-text {
    margin: 0;
    font-size: 13px;
    color: #7f8c8d;
    margin-left: 5px;
}

.info-text strong {
    color: #5e686d;
    font-weight: 700;
}

.cta-link-group {
    display: flex;
    align-items: start;
    height: 50px;
}

.link-pdf {
    color: #333;
    text-decoration: none;
    font-size: 16px;
}

.link-pdf:hover {
    text-decoration: underline;
}

/* ===== MEDIA QUERIES ===== */

/* Min-width (Desktop First logic additions) */
@media (min-width: 1024px) {
    .sector-growth-section {
        grid-template-columns: 0.8fr 1.2fr;
        gap: 60px;
    }
}

@media (min-width: 768px) {
    .cards-wrapper {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Max-width (Mobile adaptations) */
@media (max-width: 768px) {
    .second-section-grid {
        flex-direction: column;
    }
    .first-section {
        flex-direction: column;
    }
}

@media (max-width: 600px) {
    .cta-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 20px;
    }
    
    .info-text {
        margin-left: 0;
    }
}