/* ===== Press Coverage Page ===== */

/* ---------- Override global .container flex ---------- */
.pc-news-section .container,
.pc-enquiry-section .container {
    display: block;
}

/* ---------- Hero ---------- */
.pc-hero-breadcrumb {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 14px;
    margin-bottom: 0;
}

.pc-hero-breadcrumb span {
    color: #ff8c1a;
}

/* ---------- Section Header ---------- */
.pc-section-header {
    text-align: center;
    margin-bottom: 45px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pc-label-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #fff5f5, #fff0e0);
    border: 1px solid #ffe0cc;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 700;
    color: #ff8c1a;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.pc-label-tag i {
    font-size: 13px;
    background: linear-gradient(90deg, #ff8c1a, #ffad33);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.pc-section-heading {
    font-size: 36px;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 12px;
    line-height: 1.3;
    text-align: center;
    width: 100%;
}

.pc-section-subtitle {
    text-align: center;
    font-size: 16px;
    color: #777;
    max-width: 620px;
    margin: 0 auto 18px;
    line-height: 1.6;
    font-weight: 400;
}

.pc-heading-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #ff8c1a, #ffad33);
    border-radius: 3px;
}

/* ---------- Placeholder ---------- */
.pc-photo-placeholder {
    background: linear-gradient(135deg, #f0f0f5, #e8e8ee);
    border: 2px dashed #d0d0d8;
    border-radius: 12px 12px 0 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #aaa;
    font-size: 13px;
    font-weight: 600;
    width: 100%;
    height: 100%;
    min-height: 240px;
}

.pc-photo-placeholder i {
    font-size: 40px;
    color: #ccc;
}


/* ==========================================
   NEWS SECTIONS
   ========================================== */
.pc-news-section {
    padding: 70px 0;
    background: #fff;
}

/* White section (default) */
.pc-section-white {
    background: #fff;
}

/* Orange section */
.pc-section-orange {
    background: linear-gradient(135deg, #f2920c 0%, #e07d00 40%, #f2920c 100%);
    position: relative;
    overflow: hidden;
}

.pc-section-orange::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    pointer-events: none;
}

.pc-section-orange::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    pointer-events: none;
}

.pc-section-orange .pc-section-heading {
    color: #fff;
}

.pc-section-orange .pc-section-subtitle {
    color: rgba(255,255,255,0.85);
}

.pc-section-orange .pc-label-tag {
    background: rgba(255,255,255,0.2);
    border-color: rgba(255,255,255,0.3);
    color: #fff;
}

.pc-section-orange .pc-label-tag i {
    background: none;
    -webkit-background-clip: unset;
    background-clip: unset;
    color: #fff;
}

.pc-section-orange .pc-heading-divider {
    background: rgba(255,255,255,0.4);
}

.pc-section-orange .pc-news-card {
    background: #fff;
    border-color: #f0e8e0;
}

.pc-section-orange .pc-news-card:hover {
    border-color: #ffe0b2;
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.15);
}

.pc-news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

/* --- News Card --- */
.pc-news-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.35s ease;
    position: relative;
}

.pc-news-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff8c1a, #ffad33);
    transform: scaleX(0);
    transition: transform 0.35s ease;
}

.pc-news-card:hover {
    border-color: #ffe0b2;
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.08);
    transform: translateY(-6px);
}

.pc-news-card:hover::after {
    transform: scaleX(1);
}

/* Image container */
.pc-news-image {
    position: relative;
    overflow: hidden;
    background: #f5f5f8;
}

.pc-news-image img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.pc-news-card:hover .pc-news-image img {
    transform: scale(1.05);
}

/* Badge on image */
.pc-news-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: linear-gradient(90deg, #ff8c1a, #ffad33);
    color: #fff;
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 5px;
    z-index: 2;
}

.pc-news-badge i {
    font-size: 10px;
}

/* Body / Caption */
.pc-news-body {
    padding: 18px 22px 20px;
    background: linear-gradient(135deg, #fafbff, #fff8f5);
    border-top: 1px solid #f0e8e0;
}

.pc-news-body p {
    font-size: 15px;
    font-weight: 600;
    color: #1a1a2e;
    line-height: 1.5;
    margin: 0;
    padding-left: 14px;
    border-left: 3px solid #ff8c1a;
    transition: all 0.3s ease;
}

.pc-news-card:hover .pc-news-body p {
    color: #ff8c1a;
}


/* ==========================================
   ENQUIRY FORM
   ========================================== */
.pc-enquiry-section {
    padding: 70px 0 50px;
    background: linear-gradient(135deg, #f2920c 0%, #e07d00 50%, #f2920c 100%);
    position: relative;
    overflow: hidden;
}

.pc-enquiry-section::before {
    content: '';
    position: absolute;
    top: -80px;
    left: 50%;
    transform: translateX(-50%);
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    pointer-events: none;
}

.pc-enquiry-section::after {
    content: '';
    position: absolute;
    bottom: -60px;
    right: -60px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    pointer-events: none;
}

.pc-enquiry-section .pc-section-heading {
    color: #fff;
}

.pc-enquiry-section .pc-section-subtitle {
    color: rgba(255,255,255,0.85);
}

.pc-enquiry-section .pc-label-tag {
    background: rgba(255,255,255,0.2);
    border-color: rgba(255,255,255,0.3);
    color: #fff;
}

.pc-enquiry-section .pc-label-tag i {
    background: none;
    -webkit-background-clip: unset;
    background-clip: unset;
    color: #fff;
}

.pc-enquiry-section .pc-heading-divider {
    background: rgba(255,255,255,0.4);
}

.pc-enquiry-section .container-form {
    display: flex;
    justify-content: center;
    width: 100%;
}

.pc-enquiry-section .enquiry-form {
    max-width: 580px !important;
    width: 100%;
    margin: 25px auto !important;
    padding: 35px 35px 30px !important;
    background: #fff !important;
    border-radius: 18px !important;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15) !important;
    border: none !important;
    position: relative;
    z-index: 1;
}

.pc-enquiry-section .submit-btn1 {
    background: linear-gradient(90deg, #ff8c1a, #ffad33) !important;
    border-radius: 10px !important;
    padding: 14px 20px !important;
    font-size: 22px !important;
    font-weight: 700 !important;
}

.pc-enquiry-section .form-control {
    border: 1.5px solid #dce0e8 !important;
    border-radius: 10px !important;
    padding: 12px 16px !important;
    font-size: 15px !important;
    color: #333 !important;
    background: #fafbfc !important;
    transition: border-color 0.3s ease, box-shadow 0.3s ease !important;
}

.pc-enquiry-section .form-control:focus {
    border-color: #ff8c1a !important;
    box-shadow: 0 0 0 3px rgba(255, 140, 26, 0.08) !important;
    background: #fff !important;
    outline: none !important;
}

.pc-enquiry-section .submit-btn {
    background: #f2920c !important;
    border-radius: 10px !important;
    padding: 14px 50px !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    letter-spacing: 0.5px;
    transition: all 0.3s ease !important;
    width: auto !important;
}

.pc-enquiry-section .submit-btn:hover {
    background: #e07d00 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(242, 146, 12, 0.4) !important;
}


/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 991px) {
    .pc-news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .pc-section-heading {
        font-size: 26px;
    }

    .pc-section-subtitle {
        font-size: 14px;
    }

    .pc-section-header {
        margin-bottom: 30px;
    }

    .pc-news-section,
    .pc-enquiry-section {
        padding: 50px 0;
    }

    .pc-news-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin: 0 auto;
    }

    .pc-enquiry-section .enquiry-form {
        padding: 25px 22px 20px !important;
        margin: 20px 15px !important;
    }
}

@media (max-width: 480px) {
    .pc-section-heading {
        font-size: 20px;
    }

    .pc-label-tag {
        font-size: 11px;
        padding: 6px 14px;
    }

    .pc-news-image img,
    .pc-photo-placeholder {
        min-height: 200px;
        height: 200px;
    }

    .pc-news-body {
        padding: 18px 16px 22px;
    }

    .pc-news-body h4 {
        font-size: 15px;
    }

    .pc-hero-breadcrumb {
        font-size: 12px;
    }
}
