/* =======================================================
   PAVING CONTRACTOR HERO SECTION
   PREMIUM MODERN UI STYLE
========================================================= */

.paving-contractor-hero-section{
    position: relative;
    min-height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

/* =========================================
   OVERLAY
========================================= */

.paving-contractor-hero-overlay{
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            rgba(0,0,0,0.55),
            rgba(0,0,0,0.55)
        ),
        url('../images/ebony-black-carousel-far.webp') center/cover no-repeat;
    backdrop-filter: blur(5px);;
    z-index: 1;
}

/* =========================================
   CONTAINER
========================================= */

.paving-contractor-hero-container{
    width: 100%;
    max-width: 1200px;
    margin: auto;
    position: relative;
    z-index: 2;
}

/* =========================================
   CONTENT
========================================= */

.paving-contractor-hero-content{
    text-align: center;
    color: #ffffff;
    animation: pavingContractorFadeUp 1s ease forwards;
    opacity: 0;
}

/* =========================================
   TITLE
========================================= */

.paving-contractor-hero-title{
    font-family: 'Orbitron', sans-serif;
    font-size: 46px;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 20px;
    line-height: 1.3;
    letter-spacing: .5px;
    text-shadow: 0 4px 20px rgba(0,0,0,.35);
}

/* =========================================
   DIVIDER
========================================= */

.paving-contractor-hero-divider{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

/* =========================================
   LINE
========================================= */

.paving-contractor-hero-line{
    width: 160px;
    height: 14px;
    border-radius: 20px;
    background: #ffffff;
    opacity: .7;
    position: relative;
    overflow: hidden;
}

.paving-contractor-hero-line::before{
    content: "";
    position: absolute;
    inset: 0;
    background: #CE0F2C;
    animation: pavingContractorLineMove 2s linear infinite;
}

/* =========================================
   ICON
========================================= */

.paving-contractor-hero-icon{
    width: 18px;
    height: 18px;
    display: flex;
    animation: pavingContractorPulse 2s ease infinite;
}

.paving-contractor-hero-icon svg{
    width: 100%;
    height: 100%;
    fill: #CE0F2C;
    filter: drop-shadow(0 0 10px rgba(206,15,44,.5));
}

/* =========================================
   ANIMATIONS
========================================= */

@keyframes pavingContractorFadeUp{

    from{
        opacity: 0;
        transform: translateY(40px);
    }

    to{
        opacity: 1;
        transform: translateY(0);
    }

}

@keyframes pavingContractorLineMove{

    0%{
        transform: translateX(-100%);
    }

    100%{
        transform: translateX(100%);
    }

}

@keyframes pavingContractorPulse{

    0%,
    100%{
        transform: scale(1);
    }

    50%{
        transform: scale(1.2);
    }

}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 768px){

    .paving-contractor-hero-title{
        font-size: 28px;
    }

    .paving-contractor-hero-section{
        padding: 60px 15px;
    }

    .paving-contractor-hero-line{
        width: 70px;
    }

}

@media (max-width: 480px){

    .paving-contractor-hero-title{
        font-size: 24px;
        line-height: 1.4;
    }

    .paving-contractor-hero-line{
        width: 40px;
    }

    .paving-contractor-hero-divider{
        gap: 8px;
    }

}



/* =========================================
   PAVING CONTRACTOR SECTION STYLE (NEW YORK)
   SAME DESIGN SYSTEM AS ABOUT PAVE NY
========================================= */

.paving-contractor-section{
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    position:relative;
    padding:clamp(10px,8vw,15px) 20px;    
    overflow:hidden;
}

/* Background Layer */
.paving-contractor-section::before{
    content:"";
    position:absolute;
    inset:0;
    background: var(--paving-contractor-bg) center/cover no-repeat;
    filter: blur(2px);
    transform: scale(1.05);
    z-index:-2;
}

/* Overlay */
.paving-contractor-section::after{
    content:"";
    position:absolute;
    inset:0;
    background: rgba(255,255,255,0.85);
    z-index:-1;
}

/* Container */
.paving-contractor-container{
    position:relative;
    z-index:2;
    max-width:1200px;
    margin:0 auto;
    display:grid;
    grid-template-columns:1.4fr .6fr;
    gap:clamp(40px,6vw,80px);
    align-items:flex-start; 
}

/* =========================================
   LEFT CONTENT
========================================= */

.paving-contractor-content{
    display:flex;
    flex-direction:column;
    justify-content:center;
}

.paving-contractor-content h2{
    font-weight: 900;
    text-transform: uppercase;    
    color:#CE0F2C;
    font-size: clamp(1.5rem, 4vw, 2.5rem);    
    margin-bottom:5px;
    line-height:1.2; 
    border-left:6px solid #CE0F2C;
    padding-left:18px;
}

.paving-contractor-content p{
    color:rgba(17,17,17,0.92);
    font-size:1.05rem;
    font-weight:500;
    line-height:1.75;
    margin-bottom: 5px;
}


.paving-contractor-content p a{
    color:#CE0F2C;
    text-decoration:none;
}

/* =========================================
   FORM BOX
========================================= */

.paving-contractor-form-box{
    background:#fff;
    width:100%;
    max-width:460px;
    margin-left:auto;
    padding:30px;
    border-radius:16px;
    box-shadow:0 25px 60px rgba(0,0,0,.25);
    display:flex;
    flex-direction:column;
    justify-content:flex-start;
    transition:.3s ease;
}

.paving-contractor-form-box:hover{
    transform:translateY(-4px);
    box-shadow:0 30px 70px rgba(0,0,0,.35);
}

.paving-contractor-form-title{
    background:#000;
    border:5px solid #CE0F2C;
    color:#fff;
    padding:14px;
    font-size:1.2rem;
    font-weight:600;
    text-align:center;
    margin:0 0 18px 0;
    border-radius:8px;
}

/* =========================================
   CTA BUTTON
========================================= */

.paving-contractor-cta-wrapper{
    margin-top:28px;
}

.paving-contractor-cta-button{
    display: inline-block;
    padding: 14px 32px;
    background: #CE0F2C;
    color: #fff;
    font-weight: 700;
    font-size: 18px;
    border-radius: 50px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: transform .25s ease, box-shadow .25s ease;
    letter-spacing: .5px;
    cursor: pointer;
    z-index: 1;

    opacity: 0;
    transform: translateY(15px);
    animation: fadeInUp 0.7s ease-out forwards;
}

.paving-contractor-cta-button::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    height: 100%;
    width: 100%;
    background: rgba(255,255,255,0.25);
    transform: skewX(-20deg);
    transition: .5s;
}

.paving-contractor-cta-button:hover::before {
    left: 120%;
}

.paving-contractor-cta-button:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 12px 28px rgba(206,15,44,0.4);
}

/* =========================================
   ANIMATION
========================================= */

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =========================================
   CONTACT FORM 7 FIX
========================================= */

.wpcf7-form p{
    margin:0;
    padding:0;
}

.wpcf7-form br{
    display:none;
}

.quote-form{
    display:flex;
    flex-direction:column;
    gap:12px;
}

.quote-form label{
    display:block;
    padding-bottom:5px;
}

.quote-form input,
.quote-form select,
.quote-form textarea{
    width:100%;
    padding:12px 14px;
    border:1px solid #ddd;
    border-radius:8px;
    font-size:.95rem;
    transition:.3s ease;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus{
    border-color:#CE0F2C;
    box-shadow:0 0 0 3px rgba(206,15,44,.15);
    outline:none;
}

.quote-form textarea{
    height:110px;
    resize:none;
}

.quote-form input[type="submit"]{
    background:#CE0F2C;
    color:#fff;
    border:none;
    padding:13px;
    font-size:.98rem;
    font-weight:600;
    border-radius:50px;
    cursor:pointer;
    transition:.3s ease;
}

.quote-form input[type="submit"]:hover{
    background:#000;
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width:1024px){
    .paving-contractor-container{
        grid-template-columns:1fr;
        gap:40px;
    }

    .paving-contractor-form-box{
        max-width:600px;
        margin:0 auto;
    }

    .paving-contractor-content{
        text-align:center;
        align-items:center;
    }

    .paving-contractor-content h2{
        border-left:none;
        padding-left:0;
    }
}

@media (max-width:768px){
    .paving-contractor-section{
        padding:40px 15px;
    }

    .paving-contractor-content h2{
        font-size:clamp(26px, 5vw, 36px);
    }

    .paving-contractor-content p{
        font-size:0.95rem;
    }

    .paving-contractor-form-box{
        padding:24px;
    }

    .paving-contractor-cta-wrapper{
        text-align:center;
    }
}

@media (max-width:576px){
    .paving-contractor-section{
        padding:30px 12px;
    }

    .paving-contractor-content h2{
        font-size:24px;
    }

    .paving-contractor-content p{
        font-size:0.9rem;
    }

    .paving-contractor-form-box{
        padding:20px;
        border-radius:14px;
    }

    .paving-contractor-form-title{
        font-size:1rem;
        padding:10px;
    }

    .paving-contractor-cta-button{
        font-size:16px;
        padding:12px 24px;
    }
}

@media (max-width:400px){
    .paving-contractor-form-box{
        padding:16px;
    }

    .paving-contractor-cta-button{
        width:100%;
        text-align:center;
    }
}

/* =========================================
   ABOUT SECTION (PAVING CONTRACTOR VERSION)
========================================= */

.paving-contractor-about-container{
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    padding:30px 20px;
    max-width:1200px;
    margin:auto;
    display:flex;
    align-items:center;
    gap:50px;
}

.paving-contractor-about-image{
    flex:1;
}

.paving-contractor-about-image img{
    width:100%;
    height:auto;
    border-radius:12px;
    object-fit:cover;
}

.paving-contractor-about-content{
    flex:1;
}

.paving-contractor-about-content h2{
    font-size:40px;
    font-weight:700;
    color:#CE0F2C;
    margin-bottom:20px;
}

.paving-contractor-about-content p{
    font-size:18px;
    line-height:1.6;
    color:rgba(17,17,17,0.85);
    margin-bottom:25px;
}

.paving-contractor-about-button{
    display:inline-block;
    padding:14px 32px;
    background:#CE0F2C;
    color:#fff;
    font-weight:700;
    font-size:18px;
    border-radius:50px;
    text-decoration:none;
    transition:.25s ease;
}

.paving-contractor-about-button:hover{
    transform:translateY(-5px) scale(1.03);
    box-shadow:0 12px 28px rgba(206,15,44,0.4);
}

/* RESPONSIVE */
@media (max-width:992px){
    .paving-contractor-about-container{
        flex-direction:column;
        text-align:center;
        gap:30px;
    }

    .paving-contractor-about-content h2{
        font-size:32px;
    }
}

@media (max-width:768px){
    .paving-contractor-about-content h2{
        font-size:26px;
    }

    .paving-contractor-about-content p{
        font-size:15px;
    }

    .paving-contractor-about-button{
        font-size:16px;
        padding:12px 24px;
    }
}

@media (max-width:480px){
    .paving-contractor-about-content h2{
        font-size:22px;
    }

    .paving-contractor-about-button{
        width:100%;
        text-align:center;
    }
}


/* ===============================
   BEST PAVING CONTRACTOR SECTION
================================= */

.bpc-section {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    padding: 20px 20px;
    background:
        linear-gradient(rgba(0,0,0,0.55),
        rgba(0,0,0,0.55)),
        url('../images/ebony-black-carousel-far.webp') center/cover no-repeat;
    backdrop-filter:blur(5px);
}

.bpc-container {
    max-width: 1200px;
    margin: 0 auto;   
}

/* Title */
.bpc-title {
    font-size: clamp(26px, 3vw, 38px);
    font-weight: 900;
    text-align: center;
    color:#CE0F2C;
    margin-bottom: 25px;
    line-height: 1.3;
    position: relative;
}

/* Text */
.bpc-text {
    font-size: clamp(15px, 1.8vw, 18px);
    line-height: 1.7;
    color: #ffffff;
    margin-bottom: 20px;
    max-width: 1200px;
}

/* CTA Button */
.bpc-cta {
    margin-top: 30px;

    /* ✅ Modern center layout */
    display: flex;
    justify-content: center;
    align-items: center;
}

.bpc-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: clamp(12px, 1.5vw, 10px) clamp(25px, 3vw, 30px);
    font-size: clamp(14px, 1.5vw, 16px);
    font-weight: 600;
    border-radius: 50px;
    background: #ce0f2c;
    color: #fff;
    text-decoration: none;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;

    box-shadow: 0 8px 25px rgba(206, 15, 44, 0.4);
}

.bpc-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,0.5),
        transparent
    );
    transform: skewX(-25deg);
}

.bpc-btn:hover::before {
    animation: shine 0.8s ease forwards;
}

@keyframes shine {
    100% {
        left: 125%;
    }
}

.bpc-btn:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 16px 40px rgba(206, 15, 44, 0.6);
}

.bpc-btn:active {
    transform: scale(0.97);
}

/* ===============================
   RESPONSIVE
================================= */

@media (max-width: 768px) {
    .bpc-section {
        padding: 50px 15px;
    }
}

@media (max-width: 480px) {
    .bpc-title {
        font-size: 24px;
    }

    .bpc-text {
        font-size: 14px;
    }

    .bpc-btn {
        padding: 12px 22px;
        font-size: 14px;
    }
}


/* =========================================
   BPC SERVICES SECTION 
========================================= */

.bpc-service-section{
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    padding: 20px 20px;
    position: relative;
    overflow: hidden;
}

/* =========================================
   BACKGROUND IMAGE LAYER (LIKE GRAVEL DESIGN)
========================================= */

.bpc-service-section::before{
    content: "";
    position: absolute;
    inset: 0;
    background: var(--bpc-service-paving-bg) center/cover no-repeat;
    filter: blur(2px);
    transform: scale(1.05);
    z-index: -2;
}

/* OVERLAY LAYER */
.bpc-service-section::after{
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.85);
    z-index: -1;
}

/* =========================================
   CONTAINER
========================================= */

.bpc-services-container{
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* =========================================
   HEADER
========================================= */

.bpc-services-header h3{
    font-size: clamp(26px, 3vw, 42px);
    font-weight: 800;
    text-align: center;
    color:#CE0F2C;
    margin-bottom: 25px;
    line-height: 1.3;
    position: relative;
    text-transform:uppercase;
}

/* =========================================
   GRID LAYOUT
========================================= */

.bpc-services-grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* =========================================
   SERVICE CARD DESIGN
========================================= */

.bpc-service-card{
    background: #DDDDDD;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* Hover effect */
.bpc-service-card:hover{
    transform: translateY(-10px);
    box-shadow: 0 18px 45px rgba(0,0,0,0.15);
}

/* top accent line animation */
.bpc-service-card::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 4px;
    width: 100%;
    background: #CE0F2C;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.bpc-service-card:hover::before{
    transform: scaleX(1);
}

/* =========================================
   CARD TITLE
========================================= */

.bpc-service-card h4{
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #CE0F2C;
}


/* =========================================
   TEXT
========================================= */

.bpc-service-card p{
    font-size: 15px;
    line-height: 1.6;
    color: rgba(17,17,17,0.75);
    margin-bottom: 16px;
}

/* =========================================
   IMAGE
========================================= */

.bpc-service-image{
    border-radius: 12px;
    overflow: hidden;
}

.bpc-service-image img{
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

/* image zoom hover */
.bpc-service-card:hover .bpc-service-image img{
    transform: scale(1.08);
}

/* =========================================
   RESPONSIVE DESIGN
========================================= */

/* Tablet */
@media (max-width: 992px){
    .bpc-services-grid{
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 600px){
    .bpc-services-grid{
        grid-template-columns: 1fr;
    }

    .bpc-service-card{
        padding: 20px;
    }

    .bpc-service-image img{
        height: 180px;
    }

    .bpc-services-header h3{
        margin-bottom: 25px;
    }
}



/* =========================================
   TEAM WORK SECTION - MODERN PREMIUM
========================================= */

.team-work-section{
    padding: clamp(30px, 4vw, 30px) 20px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    background: #EDEDED;
}

.team-work-container{
    max-width: 1200px;
    margin: 0 auto;
}

/* ==========================
   Heading
========================== */

.team-work-header{
    text-align: center;
    margin-bottom: clamp(20px, 3vw, 40px);
}

.team-work-title{
    font-size: clamp(28px, 4vw, 46px);
    font-weight: 800;
    color: #CE0F2C;
    text-transform: uppercase;
    line-height: 1.2;
    margin: 0;
    letter-spacing: 1px;
    position: relative;
    display: inline-block;
}

/* ==========================
   Layout
========================== */

.team-work-row{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(35px, 5vw, 80px);
    align-items: center;
}

/* ==========================
   Image
========================== */

.team-work-image img{
    width: 100%;
    display: block;
    border-radius: 24px;
    object-fit: cover;
    box-shadow: 0 20px 50px rgba(0,0,0,.12);
    transition: all .4s ease;
}

.team-work-image:hover img{
    transform: translateY(-6px);
    box-shadow: 0 28px 60px rgba(0,0,0,.18);
}

/* ==========================
   Progress Area
========================== */

.team-work-progress-wrapper{
    width: 100%;
}

.team-progress-item{
    margin-bottom: 35px;
}

.team-progress-item:last-child{
    margin-bottom: 0;
}

.team-progress-title{
    display: block;
    font-size: clamp(15px, 2vw, 18px);
    font-weight: 700;
    color: #222;
    margin-bottom: 14px;
}

/* Track */

.team-progress-bar-wrapper{
    position: relative;
    width: 100%;
    height: 12px;
    background: #ececec;
    border-radius: 50px;
    overflow: visible;
}

/* Fill */

.team-progress-bar{
    width: 0;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(
        90deg,
        #CE0F2C 0%,
        #f4435d 100%
    );
    position: relative;
}

/* Moving Percentage Bubble */

.team-progress-percentage{
    position: absolute;
    top: -42px;
    right: -20px;

    min-width: 46px;
    height: 30px;

    padding: 0 12px;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 13px;
    font-weight: 700;

    color: #fff;
    background: #CE0F2C;

    border-radius: 30px;

    box-shadow: 0 10px 25px rgba(206,15,44,.25);

    white-space: nowrap;
}

.team-progress-percentage::after{
    content: "";
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);

    width: 10px;
    height: 10px;
    background: #CE0F2C;
}

/* ==========================
   Tablet
========================== */

@media (max-width: 991px){

    .team-work-row{
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .team-work-image{
        max-width: 750px;
        margin: 0 auto;
    }
}

/* ==========================
   Mobile
========================== */

@media (max-width: 767px){

    .team-work-section{
        padding: 60px 16px;
    }

    .team-progress-item{
        margin-bottom: 28px;
    }

    .team-progress-bar-wrapper{
        height: 10px;
    }

    .team-progress-percentage{
        min-width: 40px;
        height: 28px;
        font-size: 12px;
        top: -38px;
        right: -16px;
    }
}

@media (max-width: 480px){

    .team-work-title{
        font-size: 28px;
    }

    .team-progress-title{
        font-size: 14px;
    }

    .team-progress-bar-wrapper{
        height: 9px;
    }

    .team-progress-percentage{
        min-width: 36px;
        height: 26px;
        font-size: 11px;
        top: -35px;
        right: -14px;
    }
}



/* =====================================================
   PAVING CONTRACTOR SERVICE AREA SECTION
===================================================== */

/* ===== SECTION ===== */
.pcs-area-section{
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    padding: clamp(30px, 8vw, 60px) 20px;
    position: relative;
    text-align: center;
    color: #ffffff;
    overflow: hidden;
}

/* Overlay */
.pcs-area-section::before{
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, #000000, #CE0F2C);
    z-index: 1;
}

.pcs-area-container{
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
}

/* =====================================================
   HEADING
===================================================== */

.pcs-area-section-header{
    margin-bottom: 30px;
}

.pcs-area-gradient-heading{
    font-size: clamp(26px, 4vw, 40px);
    font-weight: 900;
    color: #f5f5f5;
    line-height: 1.2;
    margin: 0;
    text-transform: uppercase;
}

/* =====================================================
   GRID (WITH BACKGROUND IMAGE)
===================================================== */

.pcs-area-grid{
    position: relative;

    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;

    padding: 30px;
    border-radius: 20px;

    background:
        linear-gradient(rgba(2, 6, 23, 0.70), rgba(2, 6, 23, 0.85)),
        var(--pcs-service-bg) center/cover no-repeat;

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    border: 0 solid rgba(255, 255, 255, 0.08);

    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.60);

    overflow: hidden;
}

/* Grid Pattern Overlay */
.pcs-area-grid::before{
    content: "";
    position: absolute;
    inset: 0;

    background-image:
        linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);

    background-size: 40px 40px;
    opacity: 0.20;

    z-index: 0;
}

/* =====================================================
   COLUMN CARD
===================================================== */

.pcs-area--list{
    position: relative;
    z-index: 1;

    list-style: none;
    margin: 0;
    padding: 18px;

    border-radius: 14px;

    background: rgba(255,255,255,0.05);

    border: 1px solid rgba(255,255,255,0.08);

    transition: all 0.3s ease;
}

/* Hover */
.pcs-area--list:hover{
    transform: translateY(-6px);
    box-shadow: 0 10px 30px rgba(255, 59, 59, 0.40);
}

/* =====================================================
   LIST ITEMS
===================================================== */

.pcs-area--list li{
    margin-bottom: 10px;
}

.pcs-area--list li:last-child{
    margin-bottom: 0;
}

/* =====================================================
   LINKS
===================================================== */

.pcs-area--list a{
    display: flex;
    align-items: center;
    gap: 8px;

    color: #ffffff;
    text-decoration: none;

    padding: 8px;
    border-radius: 6px;

    font-size: 15px;
    line-height: 1.6;
    font-weight: 500;

    transition: all 0.3s ease;
}

/* Check Icon */
.pcs-area--list a::before{
    content: "✔";
    color: #ff3b3b;
    flex-shrink: 0;
}

/* Hover */
.pcs-area--list a:hover{
    background: rgba(255,255,255,0.08);
    padding-left: 12px;
    color: #ffffff;
}

/* =====================================================
   RESPONSIVE DESIGN
===================================================== */

/* Tablet */
@media (max-width: 991px){

    .pcs-area-grid{
        grid-template-columns: repeat(2, 1fr);
        padding: 25px;
        gap: 20px;
    }

    .pcs-area-gradient-heading{
        font-size: 30px;
    }
}

/* Mobile */
@media (max-width: 767px){

    .pcs-area-section{
        padding: 20px 15px;
    }

    .pcs-area-grid{
        grid-template-columns: 1fr;
        padding: 20px;
        gap: 18px;
    }

    .pcs-area-gradient-heading{
        font-size: 24px;
    }

    .pcs-area--list{
        padding: 16px;
    }

    .pcs-area--list a{
        font-size: 14px;
        padding: 7px;
    }
}

/* Small Mobile */
@media (max-width: 480px){

    .pcs-area-grid{
        padding: 15px;
    }

    .pcs-area-gradient-heading{
        font-size: 22px;
    }

    .pcs-area--list{
        padding: 14px;
        border-radius: 12px;
    }

    .pcs-area--list a{
        font-size: 13px;
    }
}



/* =====================================
   PAVING CONTRACTOR CTA SECTION
===================================== */

.pc-cta-section{
    padding: 10px;
    background:
        linear-gradient(
            rgba(0,0,0,0.55),
            rgba(0,0,0,0.55)
        ),
        url('../images/ebony-black-carousel-far.webp') center/cover no-repeat;

    backdrop-filter: blur(5px);

    position: relative;
    overflow: hidden;
}

/* CONTAINER */
.pc-cta-container{
    max-width: 1200px;
    margin: auto;

    text-align: center;

    position: relative;
    z-index: 2;
}

/* HEADER */
.pc-cta-header h3{
    font-family: 'Anton', sans-serif;
    font-size: clamp(20px, 4vw, 38px);
    font-weight: 800;

    color: #ffffff;

    margin-bottom: 25px;

    line-height: 1.2;

    text-transform: uppercase;
}

/* CONTENT BOX */
.pc-cta-content{
    text-align: left;

    background: rgba(255,255,255,0.05);

    backdrop-filter: blur(12px);

    padding: 40px 30px;

    border-radius: 20px;

    border: 1px solid rgba(255,255,255,0.10);

    box-shadow: 0 20px 60px rgba(0,0,0,0.30);
}

/* TEXT */
.pc-cta-content p{
    font-size: 18px;
    font-family: Calibri, sans-serif;

    color: rgba(255,255,255,0.85);

    line-height: 1.7;

    margin-bottom: 18px;
}

.pc-cta-content p:last-child{
    margin-bottom: 0;
}

/* LINKS */
.pc-cta-content a{
    color: #CE0F2C;

    font-weight: 600;

    text-decoration: none;

    position: relative;
}

/* Underline Hover Effect */
.pc-cta-content a::after{
    content: "";

    position: absolute;

    left: 0;
    bottom: -3px;

    width: 0%;
    height: 2px;

    background: #ff4d6d;

    transition: 0.3s ease;
}

.pc-cta-content a:hover::after{
    width: 100%;
}

/* =========================================
   CONTACT BUTTON
========================================= */

.gravel-cta-wrapper{
    margin-top: 30px;

    display: flex;
    justify-content: center;
    align-items: center;
}

.gravel-cta-button{
    display: inline-flex;

    align-items: center;
    justify-content: center;

    padding:
        clamp(12px, 1.5vw, 10px)
        clamp(25px, 3vw, 30px);

    font-size: clamp(14px, 1.5vw, 16px);
    font-weight: 600;

    border-radius: 50px;

    background: #CE0F2C;

    color: #ffffff;

    text-decoration: none;

    transition: all 0.4s ease;

    position: relative;
    overflow: hidden;

    z-index: 1;

    box-shadow: 0 8px 25px rgba(206,15,44,0.40);
}

.gravel-cta-button::before{
    content: "";

    position: absolute;

    top: 0;
    left: -75%;

    width: 50%;
    height: 100%;

    background: linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,0.5),
        transparent
    );

    transform: skewX(-25deg);
}

.gravel-cta-button:hover::before{
    animation: pc-cta-shine 0.8s ease forwards;
}

@keyframes pc-cta-shine{
    100%{
        left: 125%;
    }
}

.gravel-cta-button:hover{
    transform: translateY(-4px) scale(1.05);

    box-shadow: 0 16px 40px rgba(206,15,44,0.60);
}

.gravel-cta-button:active{
    transform: scale(0.97);
}

/* =====================================
   RESPONSIVE
===================================== */

@media (max-width: 600px){

    .pc-cta-section{
        padding: 20px 15px;
    }

    .pc-cta-content{
        padding: 25px 20px;
    }

    .pc-cta-header h3{
        font-size: 26px;
    }

    .pc-cta-content p{
        font-size: 16px;
    }

    .gravel-cta-button{
        width: 100%;
        max-width: 320px;
    }
}

