/* -----------------------------------------------------------
   WRAPPER
----------------------------------------------------------- */
.phc-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(0,0,0,0.18);
}

/* -----------------------------------------------------------
   IMAGE AREA
----------------------------------------------------------- */
.phc-image-wrap {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.phc-image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center center;
    transform: scale(1.02);
    transition: transform .35s ease, opacity .35s ease, filter .35s ease;
}

.phc-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.15), rgba(0,0,0,0.35));
    pointer-events: none;
    transition: opacity .35s ease;
}

.phc-image-border {
    height: 4px;
    width: 100%;
}

/* Image hover effects */
.phc-hover-none .phc-image {}
.phc-hover-none .phc-image-overlay {}

.phc-hover-zoom:hover .phc-image {
    transform: scale(1.06);
}

.phc-hover-fade:hover .phc-image {
    opacity: 0.9;
}

.phc-hover-zoom_darken:hover .phc-image {
    transform: scale(1.06);
    filter: brightness(0.9);
}

/* -----------------------------------------------------------
   PANEL
----------------------------------------------------------- */
.phc-panel {
    padding: 28px 32px 30px;
}

.phc-panel-inner {
    max-width: 900px;
}

/* -----------------------------------------------------------
   TEXT
----------------------------------------------------------- */
.phc-section-title {
    font-weight: 600;
    text-transform: uppercase;
    opacity: 0.9;
    margin-bottom: 4px;
    letter-spacing: 0.08em;
}

.phc-heading {
    line-height: 1.1;
    margin: 4px 0 8px;
    font-weight: 700;
}

.phc-heading-underline-wrap {
    display: flex;
    justify-content: center;
    margin-bottom: 14px;
}

.phc-heading-underline {
    display: inline-block;
    border-radius: 999px;
}

.phc-description {
    line-height: 1.6;
    margin: 0 0 18px;
    opacity: 0.95;
}

/* -----------------------------------------------------------
   BUTTONS
----------------------------------------------------------- */
.phc-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

/* Base button */
.phc-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    background-color: var(--bg);
    color: var(--color);
    border: 1px solid var(--border);

    text-decoration: none;
    cursor: pointer;
    white-space: nowrap;

    /* Subtle 3D effect */
    box-shadow:
        0 2px 4px rgba(0,0,0,0.18),
        inset 0 1px 0 rgba(255,255,255,0.25);

    transition:
        background-color .25s ease,
        color .25s ease,
        border-color .25s ease,
        transform .15s ease,
        box-shadow .15s ease;
}

/* Hover: lifted 3D */
.phc-btn:hover {
    background-color: var(--bgH);
    color: var(--colorH);
    border-color: var(--borderH);

    transform: translateY(-2px);

    box-shadow:
        0 4px 8px rgba(0,0,0,0.22),
        inset 0 1px 0 rgba(255,255,255,0.2);

    opacity: 0.98;
}

/* Icons */
.phc-btn-icon {
    display: inline-block;
    margin-right: 6px;
    font-size: 1.1em;
}

.phc-btn-text + .phc-btn-icon {
    margin-left: 6px;
    margin-right: 0;
}

/* -----------------------------------------------------------
   RESPONSIVE
----------------------------------------------------------- */
@media (max-width: 768px) {
    .phc-panel {
        padding: 20px 18px 22px;
    }
}
