/* =======================================================
   CONCRETE SERVICES HERO SECTION
   PREMIUM MODERN UI STYLE
========================================================= */

.concrete-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-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-hero-container{
    width:100%;
    max-width:1200px;
    margin:auto;
    position:relative;
    z-index:2;
}

/* =========================================
   CONTENT
========================================= */

.concrete-hero-content{
    text-align:center;
    color:#ffffff;
    animation:concreteHeroFadeUp 1s ease forwards;
    opacity:0;
}

/* =========================================
   TITLE
========================================= */

.concrete-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,0.35);
}

/* =========================================
   DIVIDER
========================================= */

.concrete-hero-divider{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:12px;
}

/* =========================================
   LINE
========================================= */

.concrete-hero-line{
    width:160px;
    height:14px;
    border-radius:20px;
    background:#ffffff;
    opacity:.7;
    position:relative;
    overflow:hidden;
}

.concrete-hero-line::before{
    content:"";
    position:absolute;
    inset:0;
    background:#CE0F2C;
    animation:concreteHeroLineMove 2s linear infinite;
}

/* =========================================
   ICON
========================================= */

.concrete-hero-icon{
    width:18px;
    height:18px;
    display:flex;
    animation:concreteHeroPulse 2s ease infinite;
}

.concrete-hero-icon svg{
    fill:#CE0F2C;
    width:100%;
    height:100%;
    filter:drop-shadow(0 0 10px rgba(206,15,44,0.5));
}

/* =========================================
   ANIMATIONS
========================================= */

@keyframes concreteHeroFadeUp{

    from{
        transform:translateY(40px);
        opacity:0;
    }

    to{
        transform:translateY(0);
        opacity:1;
    }

}

@keyframes concreteHeroLineMove{

    0%{
        transform:translateX(-100%);
    }

    100%{
        transform:translateX(100%);
    }

}

@keyframes concreteHeroPulse{

    0%,100%{
        transform:scale(1);
    }

    50%{
        transform:scale(1.2);
    }

}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width:768px){

    .concrete-hero-title{
        font-size:28px;
    }

    .concrete-hero-section{
        padding:60px 15px;
    }

    .concrete-hero-line{
        width:70px;
    }

}

@media (max-width:480px){

    .concrete-hero-title{
        font-size:24px;
        line-height:1.4;
    }

    .concrete-hero-line{
        width:40px;
    }

    .concrete-hero-divider{
        gap:8px;
    }

}


/* =========================================
   CONCRETE SERVICE ABOUT STYLE
========================================= */

.concrete-service-section{
    position:relative;
    padding:clamp(10px,8vw,15px) 20px;    
    overflow:hidden;
}

/* Background Layer */
.concrete-service-section::before{
    content:"";
    position:absolute;
    inset:0;
    background: var(--paving-bg) center/cover no-repeat;
    filter: blur(2px);
    transform: scale(1.05); /* blur edge fix */
    z-index:-2;
}

/* Overlay (optional but recommended) */
.concrete-service-section::after{
    content:"";
    position:absolute;
    inset:0;
    background: rgba(255,255,255,0.85);
    z-index:-1;
}

.concrete-service-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; /* 🔥 CHANGED (was center) */
}

/* =========================================
   LEFT CONTENT
========================================= */

.concrete-service-content{
    display:flex;
    flex-direction:column;
    justify-content:flex-start; /* 🔥 CHANGED (was center) */
}

.concrete-service-content h2{
    font-family: 'Anton', sans-serif;
    color:#CE0F2C;
    font-size:clamp(30px,4vw,38px);
    font-weight:800;
    margin-bottom:15px;
    margin-top:5px; /* 🔥 ADD (ensure top align) */
    border-left:6px solid #CE0F2C;
    padding-left:18px;
    line-height:1.15;
}

.concrete-service-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-service-content p a {
    text-decoration: none;
    color: #CE0F2C;
}

/* =========================================
   FORM BOX
========================================= */

.concrete-service-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-service-form-box:hover{
    transform:translateY(-4px);
    box-shadow:0 30px 70px rgba(0,0,0,.35);
}

.concrete-service-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-service-cta-wrapper{
    margin-top:28px;
}

.concrete-service-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;
}

.concrete-service-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-service-cta-button:hover::before {
    left: 120%;
}

.concrete-service-cta-button:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 12px 28px rgba(206,15,44,0.4);
}

@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;
    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 (FIXED + IMPROVED)
========================================= */

/* ✅ Large tablets / small laptops */
@media (max-width:1024px){

    .concrete-service-container{
        grid-template-columns:1fr; /* 🔥 stack layout */
        gap:40px;
    }

    .concrete-service-form-box{
        max-width:600px;
        margin:0 auto;
    }

    .concrete-service-content{
        text-align:center;
        align-items:center;
    }

    .concrete-service-content h2{
        border-left:none;
        padding-left:0;
    }
}


/* ✅ Tablets */
@media (max-width:768px){

    .concrete-service-section{
        padding:40px 15px;
    }

    .concrete-service-container{
        gap:30px;
    }

    .concrete-service-content h2{
        font-size:clamp(26px, 5vw, 36px);
    }

    .concrete-service-content p{
        font-size:0.95rem;
    }

    .concrete-service-form-box{
        padding:24px;
    }

    .concrete-service-cta-wrapper{
        text-align:center;
    }
}


/* ✅ Mobile devices */
@media (max-width:576px){

    .concrete-service-section{
        padding:30px 12px;
    }

    .concrete-service-container{
        gap:24px;
    }

    .concrete-service-content h2{
        font-size:24px;
        line-height:1.3;
    }

    .concrete-service-content p{
        font-size:0.9rem;
        line-height:1.6;
    }

    .concrete-service-form-box{
        padding:20px;
        border-radius:14px;
    }

    .concrete-service-form-title{
        font-size:1rem;
        padding:10px;
    }

    .quote-form input,
    .quote-form select,
    .quote-form textarea{
        font-size:0.9rem;
        padding:10px 12px;
    }

    .quote-form textarea{
        height:90px;
    }

    .quote-form input[type="submit"]{
        padding:12px;
        font-size:0.95rem;
    }

    .about-pave-ny-cta-button{
        font-size:16px;
        padding:12px 24px;
    }
}


/* ✅ Extra small devices */
@media (max-width:400px){

    .concrete-service-content h2{
        font-size:22px;
    }

    .concrete-service-form-box{
        padding:16px;
    }

    .concrete-service-cta-button{
        width:100%;
        text-align:center;
    }
}


/* =========================================
   WHY PAVE NY - PREMIUM MODERN SECTION
========================================= */

.why-paveny-section{
    position:relative;
    overflow:hidden;
    padding:clamp(20px,8vw,20px) 0;

    background:
    radial-gradient(circle at top left, rgba(206,15,44,.14), transparent 30%),
    linear-gradient(
        135deg,
        #0d0d0d 0%,
        #111111 46%,
        #f7f7f7 46%,
        #f7f7f7 100%
    );
}

/* =========================================
   BACKGROUND GLOW
========================================= */

.why-paveny-section::before{
    content:"";
    position:absolute;

    width:520px;
    height:520px;

    top:-180px;
    left:-150px;

    background:
    radial-gradient(
        circle,
        rgba(206,15,44,.18),
        transparent 70%
    );

    filter:blur(55px);

    animation:
    whyPavenyGlow 8s linear infinite;

    pointer-events:none;
}

/* =========================================
   WRAPPER
========================================= */

.why-paveny-wrapper{
    width:min(1200px,92%);
    margin:auto;

    display:grid;

    grid-template-columns:
    minmax(320px,.95fr)
    minmax(320px,1fr);

    align-items:center;

    gap:clamp(50px,6vw,90px);

    position:relative;
    z-index:2;
}

/* =========================================
   VISUAL SIDE
========================================= */

.why-paveny-visual{
    position:relative;
    perspective:1200px;
}

/* Main Image */

.why-paveny-image-main{
    position:relative;

    overflow:hidden;

    border-radius:32px;

    transform-style:preserve-3d;

    box-shadow:
    0 40px 80px rgba(0,0,0,.28);

    isolation:isolate;

    transition:
    transform .5s ease;
}

.why-paveny-image-main::before{
    content:"";
    position:absolute;
    inset:0;

    background:
    linear-gradient(
        to top,
        rgba(0,0,0,.65),
        transparent 55%
    );

    z-index:1;
}

.why-paveny-image-main img{
    width:100%;
    height:700px;

    object-fit:cover;

    transition:
    transform 1s ease,
    filter .6s ease;
}

.why-paveny-visual:hover
.why-paveny-image-main img{
    transform:scale(1.08);
    filter:brightness(1.05);
}

/* =========================================
   SECONDARY IMAGE
========================================= */

.why-paveny-image-secondary{
    position:absolute;

    right:-20px;
    bottom:-40px;

    width:min(260px,42%);

    overflow:hidden;

    border-radius:28px;

    border:8px solid #fff;

    box-shadow:
    0 25px 50px rgba(0,0,0,.18);

    z-index:4;

    transform:
    rotate(-4deg);

    transition:
    transform .6s ease;
}

.why-paveny-visual:hover
.why-paveny-image-secondary{
    transform:
    rotate(0deg)
    translateY(-10px);
}

.why-paveny-image-secondary img{
    width:100%;
    height:240px;
    object-fit:cover;
}

/* =========================================
   EXPERIENCE BADGE
========================================= */

.why-paveny-experience{
    position:absolute;

    top:30px;
    left:-30px;

    width:160px;
    min-height:160px;

    border-radius:50%;

    background:
    linear-gradient(
        135deg,
        #CE0F2C,
        #7d091c
    );

    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;

    text-align:center;

    color:#fff;

    box-shadow:
    0 25px 45px rgba(206,15,44,.35);

    z-index:5;

    animation:
    floatingBadge 5s ease-in-out infinite;
}

.why-paveny-experience::before{
    content:"";
    position:absolute;
    inset:10px;

    border-radius:50%;

    border:
    1px dashed rgba(255,255,255,.35);
}

.why-paveny-experience strong{
    font-size:clamp(2rem,5vw,4rem);
    line-height:1;
    font-weight:800;
}

.why-paveny-experience span{
    margin-top:10px;

    font-size:.9rem;
    font-weight:700;

    letter-spacing:.5px;
}

/* =========================================
   FLOATING GLASS CARD
========================================= */

.why-paveny-floating-card{
    position:absolute;

    left:-30px;
    bottom:90px;

    padding:18px 24px;

    border-radius:20px;

    background:
    rgba(255,255,255,.12);

    backdrop-filter:blur(16px);

    border:
    1px solid rgba(255,255,255,.18);

    box-shadow:
    0 15px 40px rgba(0,0,0,.2);

    z-index:5;

    animation:
    floatingCard 6s ease-in-out infinite;
}

.floating-card-label{
    color:#fff;

    font-size:.95rem;
    font-weight:700;

    letter-spacing:.4px;
}

/* =========================================
   CONTENT SIDE
========================================= */

.why-paveny-content{
    position:relative;
    z-index:2;
}

.why-paveny-subtitle{
    display:inline-flex;
    align-items:center;
    gap:12px;

    margin-bottom:20px;

    font-size:.9rem;
    font-weight:700;

    letter-spacing:2px;
    text-transform:uppercase;

    color:#CE0F2C;
}

.why-paveny-subtitle::before{
    content:"";

    width:60px;
    height:2px;

    background:#CE0F2C;
}

.why-paveny-content h2{
    font-size:clamp(2.7rem,5vw,5rem);
    line-height:1.02;
    font-family: 'Anton', sans-serif;   
    letter-spacing:-2px;
    color:#CE0F2C;
    margin-bottom:28px;
}

.why-paveny-description{
    max-width:650px;
    font-family: calibri;
    font-size:1.03rem;
    line-height:1.9;

    color:#5d5d5d;

    margin-bottom:45px;
}

/* =========================================
   FEATURES GRID
========================================= */

.why-paveny-features{
    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(250px,1fr));

    gap:24px;
}

/* =========================================
   FEATURE CARD
========================================= */

.why-paveny-feature-card{
    position:relative;

    display:flex;
    gap:18px;

    padding:26px;

    border-radius:26px;

    background:
    rgba(255,255,255,.72);

    backdrop-filter:blur(14px);

    border:
    1px solid rgba(255,255,255,.7);

    box-shadow:
    0 18px 45px rgba(0,0,0,.06);

    transition:
    transform .45s ease,
    box-shadow .45s ease,
    opacity .7s ease;

    opacity:0;

    transform:
    translateY(50px);
}

.why-paveny-feature-card.active{
    opacity:1;

    transform:
    translateY(0);
}

.why-paveny-feature-card::before{
    content:"";
    position:absolute;
    inset:0;

    border-radius:inherit;

    background:
    linear-gradient(
        135deg,
        rgba(206,15,44,.08),
        transparent
    );

    opacity:0;

    transition:.4s ease;
}

.why-paveny-feature-card:hover{
    transform:
    translateY(-12px);

    box-shadow:
    0 25px 60px rgba(0,0,0,.12);
}

.why-paveny-feature-card:hover::before{
    opacity:1;
}

/* =========================================
   FEATURE ICON
========================================= */

.why-paveny-feature-icon{
    flex-shrink:0;

    width:62px;
    height:62px;

    border-radius:18px;

    background:
    linear-gradient(
        135deg,
        #CE0F2C,
        #8f0b21
    );

    display:flex;
    align-items:center;
    justify-content:center;

    box-shadow:
    0 12px 25px rgba(206,15,44,.25);
}

.why-paveny-feature-icon span{
    width:22px;
    height:22px;

    border-radius:50%;

    background:#fff;
}

.why-paveny-feature-content h3{
    font-size:1.08rem;
    line-height:1.4;

    margin-bottom:10px;

    color:#111;
}

.why-paveny-feature-content p{
    font-size:.95rem;
    line-height:1.75;

    color:#5f5f5f;
}

/* =========================================
   CTA BUTTONS
========================================= */

.why-paveny-actions{
    display:flex;
    flex-wrap:wrap;
    gap:18px;

    margin-top:50px;
}

/* Primary Button */

.why-paveny-btn-primary{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    min-height:58px;
    padding:14px 34px;

    position:relative;
    overflow:hidden;

    border:none;
    border-radius:60px;

    background:
    linear-gradient(
        135deg,
        #CE0F2C,
        #9b0b22
    );

    color:#fff;

    text-decoration:none;

    font-size:1rem;
    font-weight:700;

    letter-spacing:.4px;

    cursor:pointer;

    z-index:1;

    transition:
    transform .3s ease,
    box-shadow .3s ease;

    box-shadow:
    0 12px 30px rgba(206,15,44,.28);

    opacity:0;

    transform:
    translateY(15px);

    animation:
    whyPavenyFadeUp .7s ease-out forwards;
}

.why-paveny-btn-primary::before{
    content:"";
    position:absolute;

    top:0;
    left:-120%;

    width:100%;
    height:100%;

    background:
    rgba(255,255,255,.25);

    transform:
    skewX(-20deg);

    transition:.6s ease;

    z-index:-1;
}

.why-paveny-btn-primary:hover::before{
    left:120%;
}

.why-paveny-btn-primary:hover{
    transform:
    translateY(-5px)
    scale(1.03);

    box-shadow:
    0 18px 38px rgba(206,15,44,.42);
}

/* Secondary Button */

.why-paveny-btn-secondary{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    min-height:58px;
    padding:14px 34px;

    position:relative;
    overflow:hidden;

    border-radius:60px;

    background:#fff;

    border:
    1px solid rgba(0,0,0,.08);

    color:#111;

    text-decoration:none;

    font-size:1rem;
    font-weight:700;

    letter-spacing:.4px;

    cursor:pointer;

    transition:
    transform .3s ease,
    box-shadow .3s ease,
    background .3s ease,
    color .3s ease;

    box-shadow:
    0 10px 24px rgba(0,0,0,.06);

    opacity:0;

    transform:
    translateY(15px);

    animation:
    whyPavenyFadeUp .8s ease-out forwards;
}

.why-paveny-btn-secondary::before{
    content:"";
    position:absolute;

    top:0;
    left:-120%;

    width:100%;
    height:100%;

    background:
    rgba(0,0,0,.05);

    transform:
    skewX(-20deg);

    transition:.6s ease;
}

.why-paveny-btn-secondary:hover::before{
    left:120%;
}

.why-paveny-btn-secondary:hover{
    background:#111;
    color:#fff;

    transform:
    translateY(-5px)
    scale(1.03);

    box-shadow:
    0 16px 35px rgba(0,0,0,.18);
}

/* =========================================
   KEYFRAMES
========================================= */

@keyframes floatingBadge{

    0%{
        transform:translateY(0);
    }

    50%{
        transform:translateY(-12px);
    }

    100%{
        transform:translateY(0);
    }

}

@keyframes floatingCard{

    0%{
        transform:translateY(0);
    }

    50%{
        transform:translateY(10px);
    }

    100%{
        transform:translateY(0);
    }

}

@keyframes whyPavenyGlow{

    0%{
        transform:translateX(0);
    }

    50%{
        transform:translateX(40px);
    }

    100%{
        transform:translateX(0);
    }

}

@keyframes whyPavenyFadeUp{

    to{
        opacity:1;
        transform:translateY(0);
    }

}

/* =========================================
   RESPONSIVE
========================================= */

@media(max-width:1024px){

    .why-paveny-section{
        background:#f7f7f7;
    }

    .why-paveny-wrapper{
        grid-template-columns:1fr;
    }

    .why-paveny-image-main img{
        height:600px;
    }

}

@media(max-width:768px){

    .why-paveny-image-main img{
        height:500px;
    }

    .why-paveny-image-secondary{
        width:180px;
        bottom:-20px;
        right:10px;
    }

    .why-paveny-image-secondary img{
        height:170px;
    }

    .why-paveny-experience{
        width:130px;
        min-height:130px;

        top:15px;
        left:10px;
    }

    .why-paveny-floating-card{
        left:10px;
        bottom:25px;
    }

    .why-paveny-actions{
        flex-direction:column;
    }

    .why-paveny-btn-primary,
    .why-paveny-btn-secondary{
        width:100%;
    }

}

@media(max-width:580px){

    .why-paveny-feature-card{
        flex-direction:column;
    }

    .why-paveny-image-main img{
        height:430px;
    }

    .why-paveny-image-secondary{
        width:140px;
    }

    .why-paveny-image-secondary img{
        height:130px;
    }

}




/* =========================================
   ROOT VARIABLES
========================================= */

:root{

    

    --portfolio-primary:#CE0F2C;
    --portfolio-white:#ffffff;
    --portfolio-text:#d7d7d7;

    --portfolio-radius:30px;

    --portfolio-shadow:
    0 25px 55px rgba(0,0,0,.16);

}

/* =========================================
   PORTFOLIO SECTION
========================================= */

.paveny-portfolio-section{
    position:relative;
    overflow:hidden;

    padding:clamp(40px,8vw,20px) 0;

    background:
radial-gradient(
    circle at 15% 10%,
    rgba(206,15,44,.18),
    transparent 40%
),
radial-gradient(
    circle at 85% 20%,
    rgba(255,149,0,.12),
    transparent 45%
),
radial-gradient(
    circle at 50% 90%,
    rgba(255,255,255,.04),
    transparent 50%
),

linear-gradient(
    145deg,
    #050505 0%,
    #0d0d0d 30%,
    #141414 65%,
    #1c1c1c 100%
);
backdrop-filter: blur(10px);
}

/* =========================================
   BACKGROUND EFFECT
========================================= */

.paveny-portfolio-section::before{
    content:"";

    position:absolute;

    top:-180px;
    left:-180px;

    width:min(520px,70vw);
    aspect-ratio:1/1;

    border-radius:50%;

    background:
    radial-gradient(
        circle,
        rgba(206,15,44,.14),
        transparent 70%
    );

    filter:blur(60px);

    pointer-events:none;
}

/* =========================================
   CONTAINER
========================================= */

.paveny-portfolio-container{
    position:relative;
    z-index:2;

    width:min(1200px,92%);
    margin-inline:auto;
}

/* =========================================
   HEADER
========================================= */

.paveny-portfolio-header{
    max-width:min(760px,100%);
    margin-inline:auto;
    margin-bottom:clamp(40px,5vw,70px);

    text-align:center;
}

.paveny-portfolio-subtitle{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:12px;

    flex-wrap:wrap;

    margin-bottom:18px;

    font-size:clamp(.78rem,1vw,.92rem);
    font-weight:700;

    letter-spacing:2px;
    text-transform:uppercase;

    color:var(--portfolio-white);
}

.paveny-portfolio-subtitle::before,
.paveny-portfolio-subtitle::after{
    content:"";

    width:clamp(35px,4vw,50px);
    height:2px;

    background:var(--portfolio-primary);
}

.paveny-portfolio-header h2{
    font-size:clamp(2rem,5vw,5rem);
    line-height:1.05;
    font-family: 'Anton', sans-serif;    
    letter-spacing:-2px;
    color:var(--portfolio-white);
    margin-bottom:22px;
    text-wrap:balance;
}

.paveny-portfolio-header p{
    max-width:680px;
    font-family: calibri;
    margin-inline:auto;
    font-size:clamp(.95rem,1.2vw,1.05rem);
    line-height:1.9;
    color:var(--portfolio-text);
}

/* =========================================
   FILTERS
========================================= */

.paveny-portfolio-filters{
    display:flex;
    align-items:center;
    justify-content:center;

    flex-wrap:wrap;

    gap:14px;

    margin-bottom:clamp(40px,5vw,60px);
}

.paveny-portfolio-filters button{
    min-height:52px;

    padding-inline:24px;

    border:none;
    border-radius:999px;

    background:rgba(255,255,255,.08);

    backdrop-filter:blur(10px);

    color:var(--portfolio-white);

    font-size:clamp(.84rem,1vw,.95rem);
    font-weight:700;

    letter-spacing:.3px;

    cursor:pointer;

    transition:
    transform .35s ease,
    background .35s ease,
    color .35s ease,
    box-shadow .35s ease;

    box-shadow:
    0 10px 24px rgba(0,0,0,.14);
}

.paveny-portfolio-filters button.active,
.paveny-portfolio-filters button:hover{
    background:var(--portfolio-primary);

    color:var(--portfolio-white);

    transform:
    translateY(-3px);

    box-shadow:
    0 14px 30px rgba(206,15,44,.35);
}

/* =========================================
   PORTFOLIO GRID
========================================= */

.paveny-portfolio-grid{
    display:grid;

    grid-template-columns:
    repeat(
        auto-fit,
        minmax(min(100%,320px),1fr)
    );

    grid-auto-flow:dense;

    gap:clamp(18px,2vw,28px);
}

/* =========================================
   CARD SIZES
========================================= */

.paveny-project-card{
    position:relative;

    min-height:320px;

    overflow:hidden;

    border-radius:var(--portfolio-radius);

    background:#111;

    box-shadow:var(--portfolio-shadow);

    isolation:isolate;

    opacity:0;

    transform:
    translateY(45px);

    transition:
    transform .7s ease,
    opacity .7s ease,
    box-shadow .45s ease;
}

.paveny-project-card.active{
    opacity:1;

    transform:
    translateY(0);
}

/* Masonry Style */

.tall-card{
    min-height:650px;
}

.wide-card{
    grid-column:span 2;
    min-height:360px;
}

/* =========================================
   IMAGE
========================================= */

.paveny-project-image{
    position:absolute;
    inset:0;
}

.paveny-project-image img{
    width:100%;
    height:100%;

    object-fit:cover;

    transition:
    transform 1s ease,
    filter .5s ease;
}

/* =========================================
   OVERLAY
========================================= */

.paveny-project-overlay{
    position:absolute;
    inset:0;

    display:flex;
    align-items:flex-end;

    padding:clamp(22px,3vw,36px);

    background:
    linear-gradient(
        to top,
        rgba(0,0,0,.92),
        rgba(0,0,0,.45),
        rgba(0,0,0,.08)
    );

    opacity:0;

    transition:
    opacity .45s ease;
}

.paveny-project-card:hover
.paveny-project-overlay{
    opacity:1;
}

.paveny-project-card:hover
.paveny-project-image img{
    transform:scale(1.08);
    filter:brightness(.92);
}

.paveny-project-card:hover{
    box-shadow:
    0 35px 70px rgba(0,0,0,.28);
}

/* =========================================
   BADGES
========================================= */

.paveny-project-badge,
.paveny-before-after{
    position:absolute;

    z-index:5;

    display:inline-flex;
    align-items:center;
    justify-content:center;

    min-height:42px;

    padding-inline:18px;

    border-radius:999px;

    font-size:.76rem;
    font-weight:700;

    letter-spacing:.6px;

    backdrop-filter:blur(14px);
}

.paveny-project-badge{
    top:20px;
    left:20px;

    background:
    rgba(255,255,255,.14);

    color:#fff;

    border:
    1px solid rgba(255,255,255,.1);
}

.paveny-before-after{
    top:20px;
    right:20px;

    background:var(--portfolio-primary);

    color:#fff;
}

/* =========================================
   CONTENT
========================================= */

.paveny-project-content{
    width:100%;

    transform:
    translateY(28px);

    transition:
    transform .45s ease;
}

.paveny-project-card:hover
.paveny-project-content{
    transform:
    translateY(0);
}

.paveny-project-location{
    display:inline-block;

    margin-bottom:12px;

    font-size:.78rem;
    font-weight:700;

    letter-spacing:1px;
    text-transform:uppercase;

    color:#ff9a00;
}

.paveny-project-content h3{
    font-size:clamp(1.3rem,2vw,1.8rem);
    line-height:1.3;

    color:#fff;

    margin-bottom:14px;
}

.paveny-project-content p{
    max-width:520px;

    font-size:clamp(.9rem,1vw,.98rem);
    line-height:1.8;

    color:rgba(255,255,255,.78);

    margin-bottom:24px;
}

/* =========================================
   BUTTON
========================================= */

.paveny-project-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    min-height:54px;

    padding-inline:28px;

    border-radius:999px;

    background:
    linear-gradient(
        135deg,
        #CE0F2C,
        #8d0b20
    );

    color:#fff;

    text-decoration:none;

    font-size:.92rem;
    font-weight:700;

    letter-spacing:.3px;

    transition:
    transform .3s ease,
    box-shadow .3s ease;

    box-shadow:
    0 12px 28px rgba(206,15,44,.28);
}

.paveny-project-btn:hover{
    transform:
    translateY(-4px);

    box-shadow:
    0 18px 35px rgba(206,15,44,.38);
}

/* =========================================
   LARGE DESKTOP
========================================= */

@media(min-width:1600px){

    .paveny-portfolio-container{
        width:min(1500px,90%);
    }

    .paveny-portfolio-grid{
        grid-template-columns:
        repeat(
            auto-fit,
            minmax(360px,1fr)
        );
    }

}

/* =========================================
   LAPTOP
========================================= */

@media(max-width:1200px){

    .wide-card{
        grid-column:span 1;
    }

}

/* =========================================
   TABLET
========================================= */

@media(max-width:991px){

    .paveny-project-card{
        min-height:300px;
    }

    .tall-card{
        min-height:500px;
    }

}

/* =========================================
   MOBILE
========================================= */

@media(max-width:768px){

    .paveny-portfolio-section{
        padding:70px 0;
    }

    .paveny-portfolio-grid{
        grid-template-columns:1fr;
    }

    .wide-card,
    .tall-card{
        grid-column:auto;
        min-height:320px;
    }

    .paveny-project-overlay{
        opacity:1;
    }

    .paveny-project-content{
        transform:translateY(0);
    }

    .paveny-project-card:hover
    .paveny-project-image img{
        transform:none;
    }

}

/* =========================================
   SMALL MOBILE
========================================= */

@media(max-width:480px){

    .paveny-portfolio-container{
        width:min(94%,100%);
    }

    .paveny-project-card{
        border-radius:22px;
    }

    .paveny-project-overlay{
        padding:22px;
    }

    .paveny-project-badge,
    .paveny-before-after{
        min-height:38px;

        padding-inline:14px;

        font-size:.7rem;
    }

    .paveny-project-btn{
        width:100%;
    }

}




/* =====================================================
CONCRETE SERVICES AREA SECTION
===================================================== */

/* ===== SECTION ===== */
.concrete-service-area-section {
    padding: clamp(20px, 8vw, 20px) 20px;
    position: relative;
    text-align: center;
    color: #fff;
}

/* Overlay */
.concrete-service-area-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, #000000, #CE0F2C);
    z-index: 1;
}

.concrete-service-area-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: auto;
}

/* ===== HEADING ===== */
.concrete-service-area-gradient-heading {
    font-size: clamp(26px, 4vw, 40px);
    font-weight: 900;
    color: #ffffff;
}

/* underline */
.concrete-service-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-service-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-service-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-service-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-service-area--list:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 30px rgba(255,59,59,0.4);
}

/* ===== LINKS ===== */
.concrete-service-area--list li {
    margin-bottom: 10px;
}

.concrete-service-area--list a {
    display: flex;
    align-items: center;
    gap: 8px;

    color: #fff;
    text-decoration: none;

    padding: 8px;
    border-radius: 6px;
}

/* icon */
.concrete-service-area--list a::before {
    content: "✔";
    color: #ff3b3b;
}

/* hover */
.concrete-service-area--list a:hover {
    background: rgba(255,255,255,0.08);
    padding-left: 12px;
}



/* =====================================
   CONCRETE CTA SECTION
===================================== */
.concrete-cta-section{
    padding:10px;
    background: url('../images/ebony-black-carousel-far.webp');
    position:relative;
    overflow:hidden;
}

/* CONTAINER */
.concrete-cta-container{
    max-width:1200px;
    margin:auto;
    text-align:center;
    position:relative;
    z-index:2;
}

/* HEADER */
.concrete-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-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-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-cta-content a{
    color:#CE0F2C;
    font-weight:600;
    text-decoration:none;
    position:relative;
}

/* underline hover effect */
.concrete-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-cta-wrapper {
    margin-top: 30px;

    /* ✅ Modern center layout */
    display: flex;
    justify-content: center;
    align-items: center;
}

.concrete-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-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-cta-button:hover::before {
    animation: shine 0.8s ease forwards;
}

@keyframes shine {
    100% {
        left: 125%;
    }
}

.concrete-cta-button:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 16px 40px rgba(206, 15, 44, 0.6);
}

.concrete-cta-button:active {
    transform: scale(0.97);
}

/* RESPONSIVE */
@media(max-width:600px){
    .concrete-cta-section{
        padding:20px 15px;
    }

    .concrete-cta-content{
        padding:25px 20px;
    }

    .concrete-cta-header h3{
        font-size:26px;
    }
}