/* =======================================================
   COMMERCIAL HERO SECTION
   PREMIUM MODERN UI STYLE
========================================================= */

.commercial-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
========================================= */

.commercial-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
========================================= */

.commercial-hero-container{
    width:100%;
    max-width:1200px;
    margin:auto;
    position:relative;
    z-index:2;
}

/* =========================================
   CONTENT
========================================= */

.commercial-hero-content{
    text-align:center;
    color:#ffffff;
    animation:commercialHeroFadeUp 1s ease forwards;
    opacity:0;
}

/* =========================================
   TITLE
========================================= */

.commercial-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
========================================= */

.commercial-hero-divider{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:12px;
}

/* =========================================
   LINE
========================================= */

.commercial-hero-line{
    width:160px;
    height:14px;
    border-radius:20px;
    background:#ffffff;
    opacity:.7;
    position:relative;
    overflow:hidden;
}

.commercial-hero-line::before{
    content:"";
    position:absolute;
    inset:0;
    background:#CE0F2C;
    animation:commercialLineMove 2s linear infinite;
}

/* =========================================
   ICON
========================================= */

.commercial-hero-icon{
    width:18px;
    height:18px;
    display:flex;
    animation:commercialHeroPulse 2s ease infinite;
}

.commercial-hero-icon svg{
    fill:#CE0F2C;
    width:100%;
    height:100%;
    filter:drop-shadow(0 0 10px rgba(206,15,44,0.5));
}

/* =========================================
   ANIMATIONS
========================================= */

@keyframes commercialHeroFadeUp{

    from{
        transform:translateY(40px);
        opacity:0;
    }

    to{
        transform:translateY(0);
        opacity:1;
    }

}

@keyframes commercialLineMove{

    0%{
        transform:translateX(-100%);
    }

    100%{
        transform:translateX(100%);
    }

}

@keyframes commercialHeroPulse{

    0%,100%{
        transform:scale(1);
    }

    50%{
        transform:scale(1.2);
    }

}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width:768px){

    .commercial-hero-title{
        font-size:28px;
    }

    .commercial-hero-section{
        padding:60px 15px;
    }

    .commercial-hero-line{
        width:70px;
    }

}

@media (max-width:480px){

    .commercial-hero-title{
        font-size:24px;
        line-height:1.4;
    }

    .commercial-hero-line{
        width:40px;
    }

    .commercial-hero-divider{
        gap:8px;
    }

}


/* =========================================
   COMMERCIAL SERVICE SECTION STYLE
========================================= */

.commercial-service-section{
    position:relative;
    padding:clamp(10px,8vw,15px) 20px;    
    overflow:hidden;
}

/* Background Layer */
.commercial-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) */
.commercial-service-section::after{
    content:"";
    position:absolute;
    inset:0;
    background: rgba(255,255,255,0.85);
    z-index:-1;
}

.commercial-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
========================================= */

.commercial-service-content{
    display:flex;
    flex-direction:column;
    justify-content:flex-start; /* 🔥 CHANGED (was center) */
}

.commercial-service-content h2{
    color:#CE0F2C;
    font-size:clamp(30px,4vw,46px);
    font-weight:700;
    margin-bottom:15px;
    margin-top:5px; /* 🔥 ADD (ensure top align) */
    border-left:6px solid #CE0F2C;
    padding-left:18px;
    line-height:1.15;
}

.commercial-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;
}

.commercial-service-content p a {
    text-decoration: none;
    color: #CE0F2C;
}

/* =========================================
   FORM BOX
========================================= */

.commercial-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;
}

.commercial-service-form-box:hover{
    transform:translateY(-4px);
    box-shadow:0 30px 70px rgba(0,0,0,.35);
}

.commercial-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
========================================= */

.commercial-service-cta-wrapper{
    margin-top:28px;
}

.commercial-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;
}

.commercial-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;
}

.commercial-service-cta-button:hover::before {
    left: 120%;
}

.commercial-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){

    .commercial-service-container{
        grid-template-columns:1fr; /* 🔥 stack layout */
        gap:40px;
    }

    .commercial-service-form-box{
        max-width:600px;
        margin:0 auto;
    }

    .commercial-service-content{
        text-align:center;
        align-items:center;
    }

    .commercial-service-content h2{
        border-left:none;
        padding-left:0;
    }
}


/* ✅ Tablets */
@media (max-width:768px){

    .commercial-service-section{
        padding:40px 15px;
    }

    .commercial-service-container{
        gap:30px;
    }

    .commercial-service-content h2{
        font-size:clamp(26px, 5vw, 36px);
    }

    .commercial-service-content p{
        font-size:0.95rem;
    }

    .commercial-service-form-box{
        padding:24px;
    }

    .commercial-service-cta-wrapper{
        text-align:center;
    }
}


/* ✅ Mobile devices */
@media (max-width:576px){

    .commercial-service-section{
        padding:30px 12px;
    }

    .commercial-service-container{
        gap:24px;
    }

    .commercial-service-content h2{
        font-size:24px;
        line-height:1.3;
    }

    .commercial-service-content p{
        font-size:0.9rem;
        line-height:1.6;
    }

    .commercial-service-form-box{
        padding:20px;
        border-radius:14px;
    }

    .commercial-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){

    .commercial-service-content h2{
        font-size:22px;
    }

    .commercial-service-form-box{
        padding:16px;
    }

    .commercial-service-cta-button{
        width:100%;
        text-align:center;
    }
}


/* =========================
   COMMERCIAL FEATURE SECTION
========================= */

.commercial-feature-section{
    position: relative;
    padding: 80px 20px;
    overflow: hidden;

    background:
        linear-gradient(rgba(0,0,0,0.55),
        rgba(0,0,0,0.55)),
        url('../images/commercial-road-paving.webp') center/cover no-repeat;
    backdrop-filter:blur(5px);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

/* =========================
   CARD
========================= */

.commercial-feature-card{
    max-width: 1200px;
    margin: auto;
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    box-shadow:
    0 20px 60px rgba(0,0,0,0.25);
    transition: 0.4s ease;
}

.commercial-feature-card:hover{
    transform: translateY(-6px);
}

/* =========================
   IMAGE
========================= */

.commercial-feature-image{
    position: relative;
    overflow: hidden;
}

.commercial-feature-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.commercial-feature-card:hover img{
    transform: scale(1.05);
}

/* =========================
   CONTENT
========================= */

.commercial-feature-content{
    padding: 55px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* TITLE */

.commercial-feature-content h2{
    font-size: clamp(2rem, 4vw, 4rem);
    font-family: 'Anton', sans-serif;
    line-height: 1.1;
    font-weight: 900;
    color: #ce0f2c;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* PARAGRAPH */

.commercial-feature-content p{
    font-size: 1.05rem;
    line-height: 1.9;
    color: #555555;
    margin-bottom: 20px;
}

/* BUTTON */

.commercial-feature-btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    padding: 16px 32px;
    background: linear-gradient(
        135deg,
        #ce0f2c 0%,
        #8f0017 100%
    );
    color: #ffffff;
    text-decoration: none;
    border-radius: 999px;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: 0.35s ease;
    box-shadow:
    0 10px 25px rgba(206,15,44,0.35);
}

.commercial-feature-btn:hover{
    transform: translateY(-3px);
    background: #000000;
    box-shadow:
    0 14px 30px rgba(0,0,0,0.25);
}

/* =========================
   LARGE SCREEN
========================= */

@media (max-width: 1200px){

    .commercial-feature-content{
        padding: 45px;
    }

}

/* =========================
   TABLET
========================= */

@media (max-width: 991px){

    .commercial-feature-card{
        grid-template-columns: 1fr;
    }

    .commercial-feature-image{
        height: 420px;
    }

    .commercial-feature-content{
        padding: 40px;
    }

}

/* =========================
   MOBILE
========================= */

@media (max-width: 768px){

    .commercial-feature-section{
        padding: 60px 15px;
    }

    .commercial-feature-image{
        height: 320px;
    }

    .commercial-feature-content{
        padding: 30px;
    }

    .commercial-feature-content h2{
        font-size: 2rem;
    }

    .commercial-feature-content p{
        font-size: 0.97rem;
        line-height: 1.8;
    }

    .commercial-btn{
        width: 100%;
    }

}

/* =========================
   SMALL MOBILE
========================= */

@media (max-width: 480px){

    .commercial-feature-image{
        height: 250px;
    }

    .commercial-feature-content{
        padding: 24px;
    }

    .commercial-feature-content h2{
        font-size: 1.6rem;
    }

    .commercial-btn{
        padding: 14px 20px;
        font-size: 0.95rem;
    }

}


/*==============================
COMMERCIAL SERVICES ALT
===============================*/

.commercial-services-alt{
    display:flex;
    min-height:100vh;
    font-family:sans-serif;
}

/* LEFT IMAGE PANEL */
.commercial-services-alt-image{
    flex:1;
    background:url('../images/commercial-concrete-solutions.webp')
    center/cover no-repeat;
    position:relative;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
}

/* OVERLAY */
.commercial-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.55);
}

/* IMAGE CONTENT */
.commercial-image-content{
    position:relative;
    text-align:center;
    padding:40px;
    z-index:2;
}

.commercial-image-content h2{
    font-size:2.5rem;
    font-weight:800;
    margin-bottom:15px;
    line-height:1.1;
}

.commercial-image-content p{
    color:#ddd;
    line-height:1.8;
    max-width:420px;
    margin:auto;
    font-size:1rem;
}

/* RIGHT SIDE */
.commercial-services-alt-content{
    flex:1;
    padding:30px 40px;
    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);

    color:#fff;
}

/* HEADING */
.commercial-services-alt-content h2{
    font-family:'Anton',sans-serif;
    color:#ffffff;
    font-size:clamp(20px,4vw,34px);
    font-weight:800;
    margin-bottom:20px;
    line-height:1.15;
    letter-spacing:1px;
}

/* LIST */
.commercial-services-list{
    display:flex;
    flex-direction:column;
    gap:15px;
}

/* ITEM */
.commercial-item{
    background:#212224;
    border-left:4px solid #ce0f2c;
    border-radius:10px;
    overflow:hidden;
    transition:0.3s ease;
}

/* TITLE */
.commercial-toggle{
    margin:0;
    padding:15px 20px;
    cursor:pointer;
    position:relative;
    font-size:1.1rem;
    font-weight:700;
    padding-right:50px;
    transition:0.3s ease;
}

/* ICON + */
.commercial-toggle::after{
    content:"+";
    position:absolute;
    right:18px;
    top:50%;
    transform:translateY(-50%);
    font-size:22px;
    transition:0.3s ease;
}

/* ACTIVE ICON - */
.commercial-item.active .commercial-toggle::after{
    content:"-";
}

/* CONTENT */
.commercial-content{
    max-height:0;
    overflow:hidden;
    padding:0 20px;
    opacity:0;
    color:#cfcfcf;
    line-height:1.7;
    transition:all 0.4s ease;
}

/* ACTIVE OPEN */
.commercial-item.active .commercial-content{
    max-height:220px;
    padding:10px 20px 15px;
    opacity:1;
}

/* HOVER */
.commercial-item:hover{
    background:rgba(206,15,44,0.1);
    transform:translateX(6px);
}

/*==============================
TABLET RESPONSIVE
===============================*/

@media(max-width:991px){

    .commercial-services-alt{
        flex-direction:column;
    }

    .commercial-services-alt-image{
        min-height:450px;
    }

    .commercial-services-alt-content{
        padding:50px 25px;
    }

    .commercial-image-content h2{
        font-size:2rem;
    }

}

/*==============================
MOBILE RESPONSIVE
===============================*/

@media(max-width:768px){

    .commercial-services-alt-image{
        min-height:380px;
    }

    .commercial-image-content{
        padding:30px 20px;
    }

    .commercial-image-content h2{
        font-size:1.8rem;
    }

    .commercial-image-content p{
        font-size:0.95rem;
    }

    .commercial-services-alt-content{
        padding:40px 20px;
    }

    .commercial-toggle{
        font-size:1rem;
        padding:14px 45px 14px 18px;
    }

}

/*==============================
SMALL MOBILE
===============================*/

@media(max-width:480px){

    .commercial-services-alt-image{
        min-height:320px;
    }

    .commercial-image-content h2{
        font-size:1.5rem;
    }

    .commercial-services-alt-content h2{
        font-size:1.7rem;
    }

    .commercial-content{
        font-size:0.92rem;
    }

}


/* =========================================================
COMMERCIAL NEED SECTION (FINAL WORKING PREMIUM 2026)
========================================================= */

.commercial-need-section{
    position:relative;
    padding:clamp(60px,6vw,120px) 20px;
    overflow:hidden;

    background:
linear-gradient(rgba(0,0,0,.78), rgba(0,0,0,.92)),
url('../images/commercial-paving.webp')
center/cover no-repeat;

    background-attachment:fixed;
}

/* MOBILE FIX */
@media (max-width:1024px){
    .commercial-need-section{
        background-attachment:scroll;
    }
}

/* =========================================================
GLOW EFFECT
========================================================= */

.commercial-need-section::before{
    content:'';
    position:absolute;
    top:clamp(-180px,-10vw,-100px);
    right:clamp(-180px,-10vw,-100px);
    width:clamp(250px,25vw,500px);
    height:clamp(250px,25vw,500px);
    background:rgba(206,15,44,.18);
    filter:blur(120px);
    border-radius:50%;
    pointer-events:none;
}

/* =========================================================
CONTAINER
========================================================= */

.commercial-need-container{
    width:min(100% - clamp(20px,4vw,60px), 1320px);
    margin:auto;
    position:relative;
    z-index:2;
}

/* =========================================================
HEADER
========================================================= */

.commercial-need-header{
    text-align:center;
    margin-bottom:clamp(40px,5vw,80px);

    opacity:0;
    transform:translateY(30px);
    transition:0.8s ease;
}

.commercial-need-header.show{
    opacity:1;
    transform:translateY(0);
}

.commercial-need-header h2{
    color:#fff;
    font-size:clamp(1.6rem,3vw,3.6rem);
    font-weight:800;
    line-height:1.15;
    margin-bottom:20px;
    letter-spacing:-1px;
}

.commercial-need-header p{
    max-width:900px;
    margin:auto;
    color:#cfcfcf;
    line-height:1.9;
    font-size:clamp(0.95rem,1.2vw,1.05rem);
}

/* =========================================================
GRID (2 COLUMN)
========================================================= */

.commercial-need-feature-grid{
    display:grid;
    grid-template-columns:repeat(2, 1fr);
    gap:clamp(16px,2vw,24px);
}

/* MOBILE */
@media(max-width:768px){
    .commercial-need-feature-grid{
        grid-template-columns:1fr;
    }
}


/* =========================================================
COMMERCIAL FEATURE CARD (NEW PREMIUM STYLE)
========================================================= */

.commercial-feature-card{
    position:relative;

    /* PREMIUM GRADIENT BACKGROUND */
    background:linear-gradient(135deg, #111 0%, #1a1a1a 50%, #0d0d0d 100%);

    border:1px solid rgba(255,255,255,0.08);
    border-radius:20px;

    padding:clamp(18px,2vw,28px);
    min-height:160px;

    overflow:hidden;

    /* GLASS EFFECT */
    backdrop-filter:blur(10px);

    opacity:0;
    transform:translateY(35px);
    transition:0.6s cubic-bezier(.4,0,.2,1);

    z-index:1;
}

/* SHOW ANIMATION */
.commercial-feature-card.show{
    opacity:1;
    transform:translateY(0);
}

/* =========================================================
SOFT LIGHT GLOW (MODERN STYLE)
========================================================= */

.commercial-feature-card::before{
    content:'';
    position:absolute;
    top:-60px;
    right:-60px;

    width:180px;
    height:180px;

    background:radial-gradient(
        circle,
        rgba(206,15,44,.35),
        transparent 70%
    );

    filter:blur(20px);
    opacity:0;
    transition:0.4s ease;
}

.commercial-feature-card:hover::before{
    opacity:1;
}

/* =========================================================
HOVER EFFECT (SMOOTH LIFT)
========================================================= */

.commercial-feature-card:hover{
    transform:translateY(-12px) scale(1.02);
    border-color:rgba(206,15,44,.7);
    box-shadow:
        0 20px 60px rgba(0,0,0,.6),
        0 0 25px rgba(206,15,44,.15);
}

/* =========================================================
TEXT STYLE (CLEAN PREMIUM)
========================================================= */

.commercial-feature-card h3{
    color:#fff;
    font-size:clamp(1rem,1.2vw,1.2rem);
    font-weight:800;
    margin-bottom:10px;
    letter-spacing:0.3px;
}

.commercial-feature-card p{
    color:rgba(255,255,255,0.75);
    line-height:1.7;
    font-size:clamp(0.9rem,1vw,1rem);
}

/* =========================================================
TOP ACCENT LINE (PREMIUM DETAIL)
========================================================= */

.commercial-feature-card::after{
    content:'';
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:3px;

    background:linear-gradient(90deg,#ce0f2c,#ff3d00,#ce0f2c);
    opacity:0.8;
}

/* =========================================================
CTA
========================================================= */

.commercial-need-cta-box{
    margin-top:clamp(40px,5vw,70px);
    text-align:center;
    padding:clamp(25px,3vw,40px);
    border-radius:22px;

    background:linear-gradient(135deg,#ce0f2c,#ff3d00);
    box-shadow:0 25px 60px rgba(0,0,0,.4);
}

.commercial-need-cta-box p{
    color:#fff;
    font-size:clamp(1rem,1.3vw,1.1rem);
    margin-bottom:18px;
    font-weight:600;
}

.commercial-need-cta-btn{
    display:inline-block;
    padding:12px 30px;
    background:#111;
    color:#fff;
    border-radius:10px;
    font-weight:700;
    text-decoration:none;
    transition:0.3s ease;
}

.commercial-need-cta-btn:hover{
    transform:scale(1.05);
    background:#000;
}


/* =====================================================
COMMERCIAL SERVICE AREA SECTION
===================================================== */

/* ===== SECTION ===== */
.commercial-service-area-section {
    padding: clamp(20px, 8vw, 20px) 20px;
    position: relative;
    text-align: center;
    color: #fff;
}

/* Overlay */
.commercial-service-area-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, #000000, #CE0F2C);
    z-index: 1;
}

.commercial-service-area-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: auto;
}

/* ===== HEADING ===== */
.commercial-service-area-gradient-heading {
    font-size: clamp(26px, 4vw, 40px);
    font-weight: 900;
    color: #ffffff;
}

/* underline */
.commercial-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) ===== */
.commercial-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 */
.commercial-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 ===== */
.commercial-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 */
.commercial-service-area--list:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 30px rgba(255,59,59,0.4);
}

/* ===== LINKS ===== */
.commercial-service-area--list li {
    margin-bottom: 10px;
}

.commercial-service-area--list a {
    display: flex;
    align-items: center;
    gap: 8px;

    color: #fff;
    text-decoration: none;

    padding: 8px;
    border-radius: 6px;
}

/* icon */
.commercial-service-area--list a::before {
    content: "✔";
    color: #ff3b3b;
}

/* hover */
.commercial-service-area--list a:hover {
    background: rgba(255,255,255,0.08);
    padding-left: 12px;
}



/* =====================================
   COMMERCIAL CTA SECTION
===================================== */
.commercial-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 */
.commercial-cta-container{
    max-width:1200px;
    margin:auto;
    text-align:center;
    position:relative;
    z-index:2;
}

/* HEADER */
.commercial-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 */
.commercial-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 */
.commercial-cta-content p{
    font-size: 18px;
    font-family: calibri;
    color:rgba(255,255,255,0.85);
    line-height:1.7;
    margin-bottom:18px;
}

/* LINKS */
.commercial-cta-content a{
    color:#CE0F2C;
    font-weight:600;
    text-decoration:none;
    position:relative;
}

/* underline hover effect */
.commercial-cta-content a::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-3px;
    width:0%;
    height:2px;
    background:#ff4d6d;
    transition:0.3s ease;
}

.commercial-cta-content a:hover::after{
    width:100%;
}

/* =========================================
   CONTACT BUTTON
========================================= */
.commercial-cta-wrapper {
    margin-top: 30px;

    /* ✅ Modern center layout */
    display: flex;
    justify-content: center;
    align-items: center;
}

.commercial-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);
}

.commercial-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);
}

.commercial-cta-button:hover::before {
    animation: shine 0.8s ease forwards;
}

@keyframes shine {
    100% {
        left: 125%;
    }
}

.commercial-cta-button:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 16px 40px rgba(206, 15, 44, 0.6);
}

.commercial-cta-button:active {
    transform: scale(0.97);
}

/* RESPONSIVE */
@media(max-width:600px){
    .commercial-cta-section{
        padding:20px 15px;
    }

    .commercial-cta-content{
        padding:25px 20px;
    }

    .commercial-cta-header h3{
        font-size:26px;
    }
}