

/* OVERLAY oscuro */
.hero-contact::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
}

/* EFECTO DE LUZ / SOMBRA AMARILLA */
.hero-contact::after {
    content: "";
    position: absolute;
    inset: 0;
    box-shadow: inset 0 0 120px #1f1d00;
    opacity: 0.4;
}

/* CONTENIDO ENCIMA */
.hero-contact .container {
    position: relative;
    z-index: 2;
}

:root {
    --primary-orange: #f30000;
    --primary-black: #00043e;
    --deco-orange: rgba(202, 0, 0, 0.85);
}

/* text colors */
.text-orange {
    color: var(--primary-orange);
}

.text-black {
    color: var(--primary-black);
}

.text-uppercase {
    text-transform: uppercase;
}

/* typography */
.service-label {
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.service-title {
    font-weight: 700;
    color: var(--primary-black);
    margin-bottom: 1.5rem;
}

.service-desc {
    font-size: 0.95rem;
    color: #6c757d;
    line-height: 1.6;
}

/* service list */
.service-list li {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
    font-weight: 500;
}

.service-list li i {
    font-size: 1.3rem;
    margin-right: 0.75rem;
    color: var(--primary-orange);
}

/* buttons */
.btn-orange {
    background-color: var(--primary-orange);
    color: white;
    border-radius: 4px;
    padding: 10px 28px;
    font-weight: 600;
    font-size: 0.9rem;
    border: none;
    transition: background-color 0.3s;
}

.btn-orange:hover {
    background-color: #ec0000;
    color: white;
}

.btn-black {
    background-color: var(--primary-black);
    color: white;
    border-radius: 4px;
    padding: 10px 28px;
    font-weight: 600;
    font-size: 0.9rem;
    border: none;
    transition: background-color 0.3s;
}

.btn-black:hover {
    background-color: #333;
    color: white;
}

/* decorative elements for images */
.p-deco {
    padding: 40px;
}

/* add extra padding for decoration */
.image-deco-wrapper {
    position: relative;
}

.service-image {
    display: block;
}

/* masonry deco: top and left */
.masonry-deco::before {
    content: "";
    position: absolute;
    top: -20px;
    left: -20px;
    width: calc(100% + 20px);
    height: calc(100% + 20px);
    border-top: 2px solid var(--deco-orange);
    border-left: 2px solid var(--deco-orange);
    z-index: -1;
}

/* concrete deco: top and right, inverted */
.concrete-deco::after {
    content: "";
    position: absolute;
    top: -20px;
    right: -20px;
    width: calc(100% + 20px);
    height: calc(100% + 20px);
    border-top: 2px solid var(--deco-orange);
    border-right: 2px solid var(--deco-orange);
    z-index: -1;
}