/*====================================================
PRESS_RELEASES.CSS
AMROS PROJECTS LLP
======================================================*/

/* Press Releases Section */
.press-section {
    padding: 60px 0;
    background: #fff;
}

.section-tag {
    display: inline-block;
    padding: 8px 20px;
    background: #eaf4ff;
    color: #005BAA;
    font-size: 13px;
    font-weight: 700;
    border-radius: 50px;
    letter-spacing: 1px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

/* Press Article Cards */
.press-card {
    background: #fff;
    border-radius: 24px;
    border: 1px solid #e8eef5;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.03);
    overflow: hidden;
    margin-bottom: 30px;
    transition: 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.press-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
    border-color: #005BAA;
}

.press-card-img {
    height: 220px;
    position: relative;
    overflow: hidden;
    background: #081c34;
}

.press-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.press-card:hover .press-card-img img {
    transform: scale(1.08);
    opacity: 0.85;
}

.press-card-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.press-meta {
    font-size: 13px;
    color: #98a2b3;
    margin-bottom: 12px;
    display: flex;
    gap: 15px;
    font-weight: 500;
}

.press-meta span i {
    color: #005BAA;
    margin-right: 5px;
}

.press-card-content h3 {
    font-size: 20px;
    color: #081c34;
    line-height: 1.4;
    margin-bottom: 12px;
}

.press-card-content p {
    font-size: 14px;
    color: #667085;
    line-height: 1.7;
    margin-bottom: 20px;
}

.press-link {
    font-weight: 700;
    font-size: 13px;
    color: #005BAA;
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.press-link:hover {
    color: #0A84FF;
    gap: 9px;
}

/* Form box styling */
.press-form-box {
    background: #f8fbfd;
    padding: 45px;
    border-radius: 30px;
    border: 1px solid #e5edf5;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.03);
}

.press-form-box h3 {
    font-size: 24px;
    color: #081c34;
    margin-bottom: 12px;
}

.press-form-box p {
    font-size: 15px;
    color: #667085;
    margin-bottom: 30px;
}

.press-form-box label {
    font-size: 14px;
    font-weight: 600;
    color: #344054;
    margin-bottom: 8px;
    display: block;
}

.press-form-box .form-control,
.press-form-box .form-select {
    height: 55px;
    border-radius: 12px;
    border: 1px solid #e5edf5;
    background: #fff;
    font-size: 14px;
}

.press-form-box textarea.form-control {
    height: auto;
    min-height: 120px;
}

.btn-primary-custom {
    padding: 15px 35px;
    background: linear-gradient(135deg, #005BAA, #0A84FF);
    color: #fff;
    border-radius: 50px;
    font-weight: 700;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: 0.4s;
}

.btn-primary-custom:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(0, 91, 170, 0.2);
    color: #fff;
}
