/* ========================================
   Hisham CTA - Style 3
   (Centered Hero Banner)
======================================== */

.hisham-cta-style-3 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;

    width: 100%;
    height: var(--cta-height, 400px);

    padding: 30px;
    border-radius: var(--cta-radius, 0px);

    background: var(--cta-bg, #024035);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    position: relative;
    overflow: hidden;
}

/* Title */
.hisham-cta-style-3 .hisham-cta-title {
    font-size: var(--cta-title-size, 2em);
    font-weight: var(--cta-title-weight, 700);
    color: var(--cta-title-color, #ffffff);
    margin: 0;
    padding: 0 10px;
}

/* Gradient Title Presets */
.hisham-cta-gradient-1 { background: linear-gradient(90deg, #024035, #9a6404); }
.hisham-cta-gradient-2 { background: linear-gradient(90deg, #000000, #ffffff); }
.hisham-cta-gradient-3 { background: linear-gradient(90deg, #024035, #ffffff); }
.hisham-cta-gradient-4 { background: linear-gradient(90deg, #9a6404, #ffffff); }

.hisham-cta-title.hisham-cta-gradient-text {
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none !important;
}

/* Description */
.hisham-cta-style-3 .hisham-cta-description {
    font-size: var(--cta-desc-size, 1em);
    color: var(--cta-desc-color, #ffffff);
    font-weight: var(--cta-desc-weight, 400);
    margin-top: 10px;
    padding: 0 15px;
}

/* Buttons Wrapper */
.hisham-cta-style-3 .hisham-cta-buttons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

/* Buttons */
.hisham-cta-style-3 .hisham-cta-button {
    padding: var(--cta-btn-padding, 10px 20px);
    border-radius: var(--cta-btn-radius, 5px);
    font-size: var(--cta-btn-size, 1em);
    font-weight: var(--cta-btn-weight, 600);
    color: var(--cta-btn-text, #ffffff);
    background-color: var(--cta-btn-bg, #9c6c06);
    text-decoration: none;
    display: inline-block;
}

/* Mobile */
@media (max-width: 767px) {
    .hisham-cta-style-3 {
        height: auto !important;
        padding: 40px 20px;
    }
}