/* =======================================================
   CONCRETE PAVING HERO SECTION
========================================================= */

.concrete-paving-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
========================================= */

.concrete-paving-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
========================================= */

.concrete-paving-hero-container{
    width:100%;
    max-width:1200px;
    margin:auto;
    position:relative;
    z-index:2;
}

/* =========================================
   CONTENT
========================================= */

.concrete-paving-hero-content{
    text-align:center;
    color:#ffffff;
    animation:concretePavingFadeUp 1s ease forwards;
    opacity:0;
}

/* =========================================
   TITLE
========================================= */

.concrete-paving-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-transform:uppercase;
    text-shadow:0 4px 20px rgba(0,0,0,0.35);
}

/* =========================================
   DIVIDER
========================================= */

.concrete-paving-hero-divider{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:12px;
}

/* LINE */

.concrete-paving-hero-line{
    width:160px;
    height:14px;
    border-radius:20px;
    background:#ffffff;
    opacity:.7;
    position:relative;
    overflow:hidden;
}

.concrete-paving-hero-line::before{
    content:"";
    position:absolute;
    inset:0;
    background:#CE0F2C;
    animation:concreteLineMove 2s linear infinite;
}

/* =========================================
   ICON
========================================= */

.concrete-paving-hero-icon{
    width:18px;
    height:18px;
    display:flex;
    animation:heroPulse 2s ease infinite;
}

.concrete-paving-hero-icon svg{
    fill:#CE0F2C;
    width:100%;
    height:100%;
    filter:drop-shadow(0 0 10px rgba(206,15,44,0.5));
}

/* =========================================
   ANIMATIONS
========================================= */

@keyframes concretePavingFadeUp{

    from{
        transform:translateY(40px);
        opacity:0;
    }

    to{
        transform:translateY(0);
        opacity:1;
    }

}

@keyframes concreteLineMove{

    0%{
        transform:translateX(-100%);
    }

    100%{
        transform:translateX(100%);
    }

}

@keyframes heroPulse{

    0%,100%{
        transform:scale(1);
    }

    50%{
        transform:scale(1.2);
    }

}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width:768px){

    .concrete-paving-hero-title{
        font-size:28px;
    }

    .concrete-paving-hero-section{
        padding:60px 15px;
    }

    .concrete-paving-hero-line{
        width:70px;
    }

}

@media (max-width:480px){

    .concrete-paving-hero-title{
        font-size:24px;
        line-height:1.4;
    }

    .concrete-paving-hero-line{
        width:40px;
    }

    .concrete-paving-hero-divider{
        gap:8px;
    }

}


/* =========================================
   CONCRETE PAVING INTRO STYLE
========================================= */

.concrete-paving-intro-section{
    position:relative;
    padding:clamp(10px,8vw,15px) 20px;
    overflow:hidden;
}

/* =========================================
   BACKGROUND LAYER
========================================= */

.concrete-paving-intro-section::before{
    content:"";
    position:absolute;
    inset:0;
    background:var(--paving-bg) center/cover no-repeat;
    filter:blur(2px);
    transform:scale(1.05);
    z-index:-2;
}

/* =========================================
   OVERLAY
========================================= */

.concrete-paving-intro-section::after{
    content:"";
    position:absolute;
    inset:0;
    background:rgba(255,255,255,0.85);
    z-index:-1;
}

/* =========================================
   CONTAINER
========================================= */

.concrete-paving-intro-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
========================================= */

.concrete-paving-intro-content{
    display:flex;
    flex-direction:column;
    justify-content:flex-start;
}

.concrete-paving-intro-content h2{
    color:#CE0F2C;
    font-size:clamp(30px,4vw,46px);
    font-weight:700;
    margin-bottom:15px;
    margin-top:5px;
    border-left:6px solid #CE0F2C;
    padding-left:18px;
    line-height:1.15;
}

.concrete-paving-intro-content p{
    color:rgba(17,17,17,0.92);
    font-size:1.05rem;
    font-family:calibri;
    font-weight:500;
    line-height:1.75;
    margin-bottom:18px;
}

.concrete-paving-intro-content p a{
    text-decoration:none;
    color:#CE0F2C;
}

/* =========================================
   FORM BOX
========================================= */

.concrete-paving-intro-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;

    height:auto;
    transition:.3s ease;
}

.concrete-paving-intro-form-box:hover{
    transform:translateY(-4px);
    box-shadow:0 30px 70px rgba(0,0,0,.35);
}

.concrete-paving-intro-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
========================================= */

.concrete-paving-intro-cta-wrapper{
    margin-top:28px;
}

.concrete-paving-intro-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:concretePavingFadeInUp .7s ease-out forwards;
}

.concrete-paving-intro-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;
}

.concrete-paving-intro-cta-button:hover::before{
    left:120%;
}

.concrete-paving-intro-cta-button:hover{
    transform:translateY(-5px) scale(1.03);
    box-shadow:0 12px 28px rgba(206,15,44,0.4);
}

@keyframes concretePavingFadeInUp{

    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;
    width:100%;
}

.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;
    background:#fff;
}

.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
========================================= */

/* LARGE TABLETS */

@media (max-width:1024px){

    .concrete-paving-intro-container{
        grid-template-columns:1fr;
        gap:40px;
    }

    .concrete-paving-intro-form-box{
        max-width:600px;
        margin:0 auto;
    }

    .concrete-paving-intro-content{
        text-align:center;
        align-items:center;
    }

    .concrete-paving-intro-content h2{
        border-left:none;
        padding-left:0;
    }

}

/* TABLETS */

@media (max-width:768px){

    .concrete-paving-intro-section{
        padding:40px 15px;
    }

    .concrete-paving-intro-container{
        gap:30px;
    }

    .concrete-paving-intro-content h2{
        font-size:clamp(26px, 5vw, 36px);
    }

    .concrete-paving-intro-content p{
        font-size:.95rem;
    }

    .concrete-paving-intro-form-box{
        padding:24px;
    }

    .concrete-paving-intro-cta-wrapper{
        text-align:center;
    }

}

/* MOBILE */

@media (max-width:576px){

    .concrete-paving-intro-section{
        padding:30px 12px;
    }

    .concrete-paving-intro-container{
        gap:24px;
    }

    .concrete-paving-intro-content h2{
        font-size:24px;
        line-height:1.3;
    }

    .concrete-paving-intro-content p{
        font-size:.9rem;
        line-height:1.6;
    }

    .concrete-paving-intro-form-box{
        padding:20px;
        border-radius:14px;
    }

    .concrete-paving-intro-form-title{
        font-size:1rem;
        padding:10px;
    }

    .quote-form input,
    .quote-form select,
    .quote-form textarea{
        font-size:.9rem;
        padding:10px 12px;
    }

    .quote-form textarea{
        height:90px;
    }

    .quote-form input[type="submit"]{
        padding:12px;
        font-size:.95rem;
    }

    .concrete-paving-intro-cta-button{
        font-size:16px;
        padding:12px 24px;
    }

}

/* EXTRA SMALL DEVICES */

@media (max-width:400px){

    .concrete-paving-intro-content h2{
        font-size:22px;
    }

    .concrete-paving-intro-form-box{
        padding:16px;
    }

    .concrete-paving-intro-cta-button{
        width:100%;
        text-align:center;
    }

}



/* =========================================
   PREMIUM CONCRETE PAVING SECTION
========================================= */

.premium-concrete-paving-section{
    position:relative;
    padding:120px 20px;
        background-image:url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?auto=format&fit=crop&w=2200&q=80');

    overflow:hidden;
    isolation:isolate;
}

/* =========================================
   BACKGROUND ELEMENTS
========================================= */

.premium-concrete-paving-grid{
    position:absolute;
    inset:0;
    background-image:
        linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size:60px 60px;
    z-index:-3;
}

.premium-concrete-paving-glow{
    position:absolute;
    width:420px;
    height:420px;
    border-radius:50%;
    filter:blur(120px);
    opacity:.18;
    z-index:-2;
}

.glow-left{
    top:-120px;
    left:-120px;
    background:#CE0F2C;
}

.glow-right{
    bottom:-120px;
    right:-120px;
    background:#CE0F2C;
}

/* =========================================
   CONTAINER
========================================= */

.premium-concrete-paving-container{
    max-width:1300px;
    margin:0 auto;
    display:flex;
    flex-direction:column;
    gap:100px;
}

/* =========================================
   CARD
========================================= */

.premium-concrete-paving-card{
    position:relative;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:center;
    background:rgba(255,255,255,0.04);
    border:1px solid rgba(255,255,255,0.08);
    border-radius:32px;
    padding:40px;
    backdrop-filter:blur(18px);
    overflow:hidden;
    transition:.4s ease;
}

.premium-concrete-paving-card:hover{
    transform:translateY(-8px);
    border-color:rgba(206,15,44,0.45);
    box-shadow:0 30px 70px rgba(0,0,0,.45);
}

/* =========================================
   REVERSE LAYOUT
========================================= */

.reverse-card-layout .premium-concrete-paving-image-side{
    order:2;
}

.reverse-card-layout .premium-concrete-paving-content-side{
    order:1;
}

/* =========================================
   IMAGE SIDE
========================================= */

.premium-concrete-paving-image-side{
    position:relative;
}

.premium-concrete-paving-image-wrapper{
    position:relative;
    border-radius:28px;
    overflow:hidden;
}

.premium-concrete-paving-image-wrapper::before{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(
        to top,
        rgba(0,0,0,0.45),
        rgba(0,0,0,0)
    );
    z-index:1;
}

.premium-concrete-paving-image-wrapper img{
    width:100%;
    height:100%;
    min-height:420px;
    object-fit:cover;
    display:block;
    transition:transform .7s ease;
}

.premium-concrete-paving-card:hover img{
    transform:scale(1.06);
}

/* =========================================
   CONTENT SIDE
========================================= */

.premium-concrete-paving-content-side{
    position:relative;
    z-index:2;
}

/* TAG */

.premium-concrete-paving-tag{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:10px 18px;
    border-radius:50px;
    background:rgba(206,15,44,0.12);
    border:1px solid rgba(206,15,44,0.35);
    color:#ff5a73;
    font-size:13px;
    font-weight:700;
    letter-spacing:1px;
    text-transform:uppercase;
    margin-bottom:22px;
}

/* TITLE */

.premium-concrete-paving-title{
    color:#ffffff;
    font-size:clamp(30px,4vw,52px);
    line-height:1.15;
    font-weight:800;
    margin-bottom:24px;
}

/* DESCRIPTION */

.premium-concrete-paving-description{
    color:rgba(255,255,255,0.82);
    font-size:1.02rem;
    line-height:1.9;
    margin-bottom:20px;
}

/* LIST */

.premium-concrete-paving-list{
    list-style:none;
    margin:30px 0 0;
    padding:0;

    display:grid;
    gap:16px;
}

.premium-concrete-paving-list li{
    position:relative;
    color:#ffffff;
    padding-left:34px;
    line-height:1.6;
    font-size:1rem;
}

/* CUSTOM ICON */

.premium-concrete-paving-list li::before{
    content:"";
    position:absolute;
    left:0;
    top:8px;
    width:14px;
    height:14px;
    border-radius:50%;
    background:#CE0F2C;
    box-shadow:0 0 16px rgba(206,15,44,0.55);
}

/* =========================================
   REVEAL ANIMATION
========================================= */

.reveal-animation{
    opacity:0;
    transform:translateY(60px);
    animation:premiumConcreteReveal 1s ease forwards;
}

@keyframes premiumConcreteReveal{

    to{
        opacity:1;
        transform:translateY(0);
    }

}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width:1100px){

    .premium-concrete-paving-card{
        grid-template-columns:1fr;
        gap:40px;
        padding:32px;
    }

    .reverse-card-layout .premium-concrete-paving-image-side,
    .reverse-card-layout .premium-concrete-paving-content-side{
        order:unset;
    }

    .premium-concrete-paving-image-wrapper img{
        min-height:340px;
    }

}

@media (max-width:768px){

    .premium-concrete-paving-section{
        padding:90px 16px;
    }

    .premium-concrete-paving-container{
        gap:70px;
    }

    .premium-concrete-paving-card{
        padding:24px;
        border-radius:24px;
    }

    .premium-concrete-paving-title{
        font-size:30px;
    }

    .premium-concrete-paving-description{
        font-size:.95rem;
        line-height:1.8;
    }

    .premium-concrete-paving-list li{
        font-size:.95rem;
    }

    .premium-concrete-paving-image-wrapper img{
        min-height:280px;
    }

}

@media (max-width:480px){

    .premium-concrete-paving-section{
        padding:70px 12px;
    }

    .premium-concrete-paving-card{
        padding:18px;
        border-radius:20px;
    }

    .premium-concrete-paving-title{
        font-size:24px;
    }

    .premium-concrete-paving-tag{
        font-size:11px;
        padding:8px 14px;
    }

    .premium-concrete-paving-description{
        font-size:.9rem;
    }

    .premium-concrete-paving-list{
        gap:12px;
    }

    .premium-concrete-paving-list li{
        padding-left:28px;
        font-size:.88rem;
    }

    .premium-concrete-paving-list li::before{
        width:12px;
        height:12px;
    }

    .premium-concrete-paving-image-wrapper img{
        min-height:220px;
    }

}



/* =====================================================
   CONCRETE PAVING AREA SECTION
===================================================== */

.concrete-paving-area-section {
    padding: clamp(20px, 8vw, 20px) 20px;
    position: relative;
    text-align: center;
    color: #fff;
}

/* Overlay */
.concrete-paving-area-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, #000000, #CE0F2C);
    z-index: 1;
}

.concrete-paving-area-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: auto;
}

/* ===== HEADING ===== */
.concrete-paving-area-gradient-heading {
    font-size: clamp(26px, 4vw, 40px);
    font-weight: 900;
    color: #ffffff;
}

/* underline */
.concrete-paving-area-gradient-heading::after {
    content: "";
    display: block;
    width: 90px;
    height: 4px;
    margin: 12px auto;
    background: linear-gradient(90deg, #CE0F2C, #a50c23);
}

/* ===== GRID (WITH BACKGROUND IMAGE) ===== */
.concrete-paving-area-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;

    padding: 30px;
    border-radius: 20px;

    /* 🔥 BACKGROUND IMAGE */
    background:
        linear-gradient(rgba(2,6,23,0.7), rgba(2,6,23,0.85)),
        url('../images/hero-section-image.webp'); /* change image path */

    background-size: cover;
    background-position: center;

    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 25px 80px rgba(0,0,0,0.6);

    overflow: hidden;
}

/* grid overlay */
.concrete-paving-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.2;
    z-index: 0;
}

/* ===== CARD ===== */
.concrete-paving-area--list {
    position: relative;
    z-index: 1;

    list-style: none;
    padding: 18px;

    border-radius: 14px;
    background: rgba(255,255,255,0.05);

    border: 1px solid rgba(255,255,255,0.08);

    transition: 0.3s;
}

/* Hover */
.concrete-paving-area--list:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 30px rgba(255,59,59,0.4);
}

/* ===== LINKS ===== */
.concrete-paving-area--list li {
    margin-bottom: 10px;
}

.concrete-paving-area--list a {
    display: flex;
    align-items: center;
    gap: 8px;

    color: #fff;
    text-decoration: none;

    padding: 8px;
    border-radius: 6px;
}

/* icon */
.concrete-paving-area--list a::before {
    content: "✔";
    color: #ff3b3b;
}

/* hover */
.concrete-paving-area--list a:hover {
    background: rgba(255,255,255,0.08);
    padding-left: 12px;
}



/* =====================================
   CONCRETE PAVING CTA SECTION
===================================== */

.concrete-paving-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 */

.concrete-paving-cta-container{
    max-width:1200px;

    margin:auto;

    text-align:center;

    position:relative;

    z-index:2;
}

/* HEADER */

.concrete-paving-cta-header h3{
    font-family:'Anton', sans-serif;

    font-size:clamp(20px,4vw,38px);

    font-weight:800;

    color:#fff;

    margin-bottom:25px;

    line-height:1.2;
}

/* CONTENT BOX */

.concrete-paving-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.1);

    box-shadow:
    0 20px 60px rgba(0,0,0,0.3);
}

/* TEXT */

.concrete-paving-cta-content p{
    font-size:18px;

    font-family:calibri;

    color:
    rgba(255,255,255,0.85);

    line-height:1.7;

    margin-bottom:18px;
}

/* LINKS */

.concrete-paving-cta-content a{
    color:#CE0F2C;

    font-weight:600;

    text-decoration:none;

    position:relative;
}

/* UNDERLINE HOVER EFFECT */

.concrete-paving-cta-content a::after{
    content:"";

    position:absolute;

    left:0;
    bottom:-3px;

    width:0%;

    height:2px;

    background:#ff4d6d;

    transition:0.3s ease;
}

.concrete-cta-content a:hover::after{
    width:100%;
}

/* =========================================
   CONTACT BUTTON
========================================= */

.concrete-paving-cta-wrapper{
    margin-top:30px;

    display:flex;

    justify-content:center;

    align-items:center;
}

.concrete-paving-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:#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);
}

.concrete-paving-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);
}

.concrete-paving-cta-button:hover::before{
    animation:concreteShine 0.8s ease forwards;
}

@keyframes concreteShine{

    100%{
        left:125%;
    }

}

.concrete-paving-cta-button:hover{
    transform:
    translateY(-4px)
    scale(1.05);

    box-shadow:
    0 16px 40px rgba(206, 15, 44, 0.6);
}

.concrete-paving-cta-button:active{
    transform:scale(0.97);
}

/* =====================================
   RESPONSIVE
===================================== */

@media(max-width:600px){

    .concrete-paving-cta-section{
        padding:20px 15px;
    }

    .concrete-paving-cta-content{
        padding:25px 20px;
    }

    .concrete-paving-cta-header h3{
        font-size:26px;
    }

}

