/* ===================================================
   Control Productions - Pages CSS
   ================================================== */

/* ===================================================
   1. PAGE LAYOUT
   ================================================== */

.page-content {
    min-height: 100vh;
    padding-top: 100px; /* Space for fixed topbar */
    padding-bottom: 4rem;
}

.page-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.page-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background-color: var(--primary-color);
    margin: 1rem auto 0;
}

.section-subtitle {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* ===================================================
   2. ABOUT PAGE
   ================================================== */

.about-section {
    max-width: 900px;
    margin: 0 auto;
}

.about-content {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
}

.intro-paragraph {
    font-size: 1.2rem !important;
    color: var(--text-primary) !important;
}

/* Highlight Box */
.highlight-box {
    background: linear-gradient(135deg, rgba(230, 52, 98, 0.1) 0%, rgba(220, 72, 112, 0.05) 100%);
    border-right: 4px solid var(--primary-color);
    padding: 2rem;
    margin: 2rem 0;
    border-radius: 10px;
}

.motto {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    text-align: center;
    margin: 1.5rem 0;
}

.motto-emphasis {
    display: inline-block;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-light));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Stats Section */
.stats-section {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

.stat-item {
    text-align: center;
    padding: 2rem 1rem;
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    transition: all var(--transition-normal);
}

.stat-item:hover {
    background-color: rgba(230, 52, 98, 0.1);
    transform: translateY(-5px);
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    display: block;
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.closing-paragraph {
    font-size: 1.15rem !important;
    text-align: center;
    margin-top: 2rem !important;
}

/* CTA Section */
.cta-section {
    text-align: center;
    margin-top: 3rem;
}

.btn-cta {
    display: inline-block;
    padding: 1.2rem 3rem;
    background-color: var(--primary-color);
    color: var(--text-primary);
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 50px;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-normal);
    text-decoration: none;
}

.btn-cta:hover {
    background-color: var(--accent-light);
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
    color: var(--text-primary);
}

/* ===================================================
   3. WHY CHOOSE US PAGE
   ================================================== */

.why-us-section {
    max-width: 1200px;
    margin: 0 auto;
}

.cards-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 3rem 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-md);
}

.value-card:hover {
    background-color: rgba(230, 52, 98, 0.1);
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.card-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.card-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.card-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

/* ===================================================
   4. RESPONSIVE - PAGES
   ================================================== */

@media (max-width: 768px) {
    .page-content {
        padding-top: 80px;
    }

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

    .about-content {
        padding: 2rem 1.5rem;
    }

    .stats-section {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .cards-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .highlight-box {
        padding: 1.5rem;
    }

    .motto {
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    .page-title {
        font-size: 1.8rem;
    }

    .about-content {
        padding: 1.5rem 1rem;
    }

    .about-text p {
        font-size: 1rem;
    }

    .btn-cta {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}
