:root {
    --color-accent: #00decf;
    --color-dark: #161717;
    --color-blue: #2100c8;
    --main-bg: #121212;
    /* Fondo muy oscuro */
    --white-text: #ffffff;
    --orange-accent: #00dede;
    /* Naranja brillante */
    --sidebar-item-bg: #2a2a2a;
    /* Gris oscuro para elementos */
    --border-color: #444;
    --muted-text: #282626;
}

.container-serv {
    margin-top: 6rem;
}

/* Estilo de la Card */
.custom-card {
    position: relative;
    height: 500px;
    border: none;
    border-radius: 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    transition: transform 0.3s ease;
}

/* Imágenes de fondo específicas para cada card */
.card-1 {
    background: url('images/services/driveway.jpeg') center/cover no-repeat;
}

.card-2 {
    background: url('images/services/min/2.jpg') center/cover no-repeat;
}

.card-3 {
    background: url('images/services/Stampedconcrete.jpeg') center/cover no-repeat;
}

.card-4 {
    background: url('images/services/drivewayrepair.jpeg') center/cover no-repeat;
}

.card-5 {
    background: url('images/services/steps.jpeg') center/cover no-repeat;
}

.card-6 {
    background: url('https://articles.bluehaven.com/hubfs/swimming-pool-deck-sealed-stamped-concrete.jpg') center/cover no-repeat;
}

.card-7 {
    background: url('https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQ2aWbPtHApNmYlb304P5ZUCrmD5NSACf_B8w&s') center/cover no-repeat;
}

.card-8 {
    background: url('https://alphaconcreteservicellc.com/images/gallery/newconstruction/9.jpeg') center/cover no-repeat;
}

.card-9 {
    background: url('https://alphaconcreteservicellc.com/images/gallery/excavation/16.jpeg') center/cover no-repeat;
}
.card-10{
    background: url('https://alphaconcreteservicellc.com/images/gallery/framing/5.jpeg') center/cover no-repeat;
}
/* Overlay oscuro utilizando #161717 */
.custom-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(22, 23, 23, 0.721);
    /* Usando #161717 con opacidad */
    z-index: 1;
    transition: background-color 0.3s ease;
}

.custom-card:hover::before {
    background-color: rgba(1, 40, 35, 0.884);
}

/* Contenido sobre la imagen */
.card-content {
    position: relative;
    z-index: 2;
    padding: 2rem;
    max-width: 90%;
}

.card-title {
    font-weight: 700;
    font-size: 2rem;
    color: var(--color-accent);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.card-text {
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 2rem;
}

/* Botón personalizado: Sin fondo, bordes cuadrados, color #00decf */
.btn-custom {
    background-color: transparent;
    color: white;
    border: 2px solid var(--color-accent);
    border-radius: 0;
    /* Bordes cuadrados */
    padding: 12px 30px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-custom:hover {
    background-color: var(--color-accent);
    color: var(--color-dark);
    border-color: var(--color-accent);
}

/* Variación del botón con el azul #2100c8 para efectos o estados */
.btn-custom:active {
    background-color: var(--color-blue) !important;
    border-color: var(--color-blue) !important;
    color: white !important;
}

.row-2serv {
    margin-top: 4rem !important;
}







/* Contenedor Principal Responsive con Ancho Máximo */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Estructura de Cuadrícula Responsive */
.grid-container {
    display: grid;
    gap: 30px;
    grid-template-columns: 1fr;
    /* Móvil: una sola columna apilada */
}

@media (min-width: 992px) {
    .grid-container {
        grid-template-columns: 2.2fr 1fr;
        /* Escritorio: ~69% para contenido, ~31% para barra lateral */
    }
}

/* Encabezado */
header {
    margin-bottom: 20px;
}

.logo-partial {
    width: 30px;
    height: 30px;
    background-color: var(--orange-accent);
    border-radius: 50%;
    border: 4px solid var(--sidebar-item-bg);
    box-sizing: border-box;
}

/* Columna Izquierda: Contenido Principal */
.col-left {
    padding-right: 0;
}

@media (min-width: 992px) {
    .col-left {
        padding-right: 15px;
        /* Espaciado entre columnas en escritorio */
    }
}

/* Contenedor de la Imagen con Recorte Especial */
.image-crop-wrapper {
    position: relative;
    margin-bottom: 25px;
    overflow: hidden;
    border-radius: 6px;
    /* Bordes un poco redondeados */
    /* Aplicar el recorte poligonal a la imagen */
    clip-path: polygon(0 0, 100% 0, 100% 80%, 80% 100%, 0 100%);
}

/* Imagen de fondo principal */
.main-image {
    width: 100%;
    height: auto;
    display: block;
}

/* Elemento de borde blanco recortado detrás */
.image-crop-border {
    position: absolute;
    top: -5px;
    /* Ligeramente más grande para el borde */
    left: -5px;
    right: -5px;
    bottom: -5px;
    background-color: #fff;
    /* Color del borde blanco */
    z-index: -1;
    /* Detrás de la imagen */
    /* Aplicar el mismo recorte poligonal */
    clip-path: polygon(0 0, 100% 0, 100% 80%, 80% 100%, 0 100%);
    border-radius: 8px;
    /* Un poco más redondeado */
}

/* Bloques de Texto de Contenido */
.content-block {
    margin-bottom: 25px;
}

.content-block h3 {
    font-size: 20px;
    color: var(--white-text);
    margin-bottom: 12px;
    text-transform: uppercase;
    font-weight: 700;
}

.content-block p {
    font-size: 14px;
    color: var(--muted-text);
    margin-bottom: 15px;
}

/* Columna Derecha: Barra Lateral */
.col-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Sección de Servicios */
.sidebar-section {
    background-color: var(--sidebar-item-bg);

    overflow: hidden;
}

.sidebar-header {
    color: var(--orange-accent);
    text-transform: uppercase;
    font-size: 16px;
    padding: 20px;
    font-weight: 700;
    border-bottom: 1px solid var(--border-color);
}

.services-list {
    list-style: none;
}

.services-list li {
    border-bottom: 1px solid var(--border-color);
}

.services-list li:last-child {
    border-bottom: none;
}

.services-list a {
    display: block;
    padding: 15px 20px;
    color: var(--white-text);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    position: relative;
    transition: background 0.3s ease;
}

.services-list a:hover {
    background-color: #3a3a3a;
}

.services-list a i {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--orange-accent);
    font-size: 16px;
}

/* Sección de Descarga */
.download-wrapper {
    margin-top: 10px;
}

.download-header {
    color: var(--orange-accent);
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 15px;
}

.download-item {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    background-color: #fff;
    /* Fondo blanco para las cajas de descarga */
    color: #333;
    /* Texto oscuro sobre blanco */
    margin-bottom: 12px;
    padding: 12px 15px;

    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    text-decoration: none;
}

.download-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.pdf-icon-wrapper {
    display: inline-block;
    width: 24px;
    height: 24px;
    background-color: var(--orange-accent);
    color: #fff;
    text-align: center;
    line-height: 24px;
    margin-right: 12px;

    font-size: 12px;
}

.filename {
    font-size: 13px;
    font-weight: 600;
}

.download-icon {
    color: var(--orange-accent);
    font-size: 18px;
}




/* Contenedor Principal Responsive */
.main-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr;
    /* 2 partes para contenido, 1 para barra lateral */
    overflow: hidden;
    /* Para contener la imagen desbordada si es necesario */
}

/* Estilos de la Columna Izquierda (Contenido) */
.content-left {
    padding: 60px;
    background-color: var(--dark-bg);
}

/* Lista de Verificación (Checklist) superior */
.checklist {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px 30px;
    margin-bottom: 50px;
}

.checklist li {
    display: flex;
    align-items: center;
    color: var(--muted-text);
    font-size: 14px;
}

.check-icon-container {
    width: 22px;
    height: 22px;
    background-color: var(--orange-accent);
    border-radius: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 12px;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
}

/* Sección "BENEFITS & SOLUTION" */
.benefits h2 {
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.benefits>p {
    color: var(--muted-text);
    font-size: 14px;
    margin-bottom: 50px;
    max-width: 800px;
}

/* Cuadrícula de Servicios (Service Grid) */
.service-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.service-item {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.service-icon {
    width: 50px;
    height: 50px;
    color: var(--orange-accent);
}

.service-item h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--white-text);
    margin: 0;
}

.service-item p {
    color: var(--muted-text);
    font-size: 13px;
    margin: 0;
}

/* Estilos de la Columna Derecha (Barra Lateral Naranja) */
.sidebar-right {
    background-color: #191818;
    color: white;
    padding: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    /* Para posicionar la imagen del trabajador */
    min-height: 100%;
    /* Asegura que llene el alto */
}

.sidebar-header {
    margin-bottom: 40px;
}

.sidebar-header h2 {
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 25px;
}

/* Información de Contacto */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    margin-bottom: 30px;
}

.info-item {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.info-item.phone {
    font-size: 26px;
    font-weight: 600;
}

.contact-icon {
    color: #fff;
    font-size: 18px;
}

.sidebar-right p.contact-desc {
    font-size: 13px;
    color: #fff;
    line-height: 1.5;
    margin-bottom: 40px;
    width: 80%;
}

/* Botón de Contacto */
.contact-btn {
    background-color: rgba(0, 0, 0, 0.5);
    /* Fondo oscuro semitransparente */
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.4);
    padding: 12px 30px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    border-radius: 4px;
    text-decoration: none;
}

.contact-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Imagen del Trabajador de Construcción */
.worker-image-container {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 350px;
    /* Ajusta según el tamaño de la imagen */
    overflow: hidden;
    display: flex;
    justify-content: center;
}

.worker-image {
    height: 100%;
    object-fit: cover;
    /* Nota: Necesitarás colocar una imagen real aquí con fondo transparente. 
               Esta URL es un marcador de posición de ejemplo. */
    /* src="ruta/a/tu/imagen-trabajador.png" alt="Trabajador de construcción" */
}

/* Consultas de Medios para Responsividad (Media Queries) */
@media (max-width: 1024px) {
    .main-container {
        grid-template-columns: 1fr;
        /* Cambia a una sola columna en tablets/móviles */
    }

    .content-left,
    .sidebar-right {
        padding: 40px;
    }

    .sidebar-right {
        padding-bottom: 350px;
        /* Da espacio para la imagen del trabajador */
    }
}

@media (max-width: 768px) {

    .checklist,
    .service-grid {
        grid-template-columns: 1fr;
        /* Columnas simples en pantallas pequeñas */
    }
}




.body-faq {
    /* Fondo gris oscuro de la imagen */
    color: #ffffff;
    font-family: 'Open Sans', sans-serif;
    /* Usando una fuente sans-serif limpia */
    margin: 0;
    padding: 40px;
    display: flex;
    justify-content: center;
}

.faq-section {
    width: 100%;
    max-width: 800px;
}

/* Título de la sección */
.faq-title {
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 30px;
    margin-top: 0;
}

/* Contenedor del acordeón */
.accordion {
    display: flex;
    flex-direction: column;
    gap: 10px;
    /* Espacio entre los elementos */
}

.accordion-item {
    border: 1px solid #333;
    /* Borde sutil para cada elemento */
    overflow: hidden;
    /* Asegura que el contenido esté contenido */
    border-radius: 4px;
}

/* Estilos para el encabezado (la pregunta) */
.accordion-header {
    background-color: #333333;
    /* Fondo gris medio por defecto (para cerrados) */
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
    text-transform: uppercase;
    font-weight: 700;
    user-select: none;
    /* Previene la selección de texto al hacer clic rápido */
}

/* Estilos cuando un encabezado está activo/abierto */
.accordion-header.active {
    background-color: var(--color-accent);
    /* Fondo naranja brillante cuando está abierto */
    color: #ffffff;
}

.accordion-header span {
    font-size: 1rem;
}

/* Estilos para el icono */
.accordion-header .icon {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

/* Rotar el icono cuando está activo */
.accordion-header.active .icon {
    transform: rotate(180deg);
}

/* Estilos para el panel de contenido (la respuesta) */
.accordion-content {
    background-color: #000000;
    /* Fondo negro de la imagen */
    color: #b0b0b0;
    /* Texto gris claro para el contenido */
    max-height: 0;
    /* Oculto por defecto */
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease;
}

/* Estilos para cuando el panel de contenido está abierto */
.accordion-content.open {
    padding: 20px;
    max-height: 500px;
    /* Un valor lo suficientemente grande para mostrar el contenido */
    transition: max-height 0.5s ease-in, padding 0.3s ease;
}

.accordion-content p {
    margin: 0;
    line-height: 1.6;
    font-size: 0.95rem;
    text-transform: none;
    /* El contenido no está en mayúsculas */
}