/* =======================================================
   GRAVEL PAVING HERO SECTION
   PREMIUM MODERN UI STYLE
========================================================= */

.gravel-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
========================================= */

.gravel-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
========================================= */

.gravel-paving-hero-container{
    width: 100%;
    max-width: 1200px;
    margin: auto;
    position: relative;
    z-index: 2;
}

/* =========================================
   CONTENT
========================================= */

.gravel-paving-hero-content{
    text-align: center;
    color: #ffffff;
    animation: gravelPavingFadeUp 1s ease forwards;
    opacity: 0;
}

/* =========================================
   TITLE
========================================= */

.gravel-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-shadow: 0 4px 20px rgba(0,0,0,.35);
}

/* =========================================
   DIVIDER
========================================= */

.gravel-paving-hero-divider{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

/* =========================================
   LINE
========================================= */

.gravel-paving-hero-line{
    width: 160px;
    height: 14px;
    border-radius: 20px;
    background: #ffffff;
    opacity: .7;
    position: relative;
    overflow: hidden;
}

.gravel-paving-hero-line::before{
    content: "";
    position: absolute;
    inset: 0;
    background: #CE0F2C;
    animation: gravelPavingLineMove 2s linear infinite;
}

/* =========================================
   ICON
========================================= */

.gravel-paving-hero-icon{
    width: 18px;
    height: 18px;
    display: flex;
    animation: gravelPavingPulse 2s ease infinite;
}

.gravel-paving-hero-icon svg{
    width: 100%;
    height: 100%;
    fill: #CE0F2C;
    filter: drop-shadow(0 0 10px rgba(206,15,44,.5));
}

/* =========================================
   ANIMATIONS
========================================= */

@keyframes gravelPavingFadeUp{

    from{
        opacity: 0;
        transform: translateY(40px);
    }

    to{
        opacity: 1;
        transform: translateY(0);
    }

}

@keyframes gravelPavingLineMove{

    0%{
        transform: translateX(-100%);
    }

    100%{
        transform: translateX(100%);
    }

}

@keyframes gravelPavingPulse{

    0%,
    100%{
        transform: scale(1);
    }

    50%{
        transform: scale(1.2);
    }

}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 768px){

    .gravel-paving-hero-title{
        font-size: 28px;
    }

    .gravel-paving-hero-section{
        padding: 60px 15px;
    }

    .gravel-paving-hero-line{
        width: 70px;
    }

}

@media (max-width: 480px){

    .gravel-paving-hero-title{
        font-size: 24px;
        line-height: 1.4;
    }

    .gravel-paving-hero-line{
        width: 40px;
    }

    .gravel-paving-hero-divider{
        gap: 8px;
    }

}



/* =========================================
   GRAVEL PAVING SECTION STYLE (NEW YORK)
   SAME DESIGN SYSTEM AS ABOUT PAVE NY
========================================= */

.gravel-paving-section{
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    position:relative;
    padding:clamp(10px,8vw,15px) 20px;    
    overflow:hidden;
}

/* Background Layer */
.gravel-paving-section::before{
    content:"";
    position:absolute;
    inset:0;
    background: var(--gravel-paving-bg) center/cover no-repeat;
    filter: blur(2px);
    transform: scale(1.05);
    z-index:-2;
}

/* Overlay */
.gravel-paving-section::after{
    content:"";
    position:absolute;
    inset:0;
    background: rgba(255,255,255,0.85);
    z-index:-1;
}

/* Container */
.gravel-paving-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
========================================= */

.gravel-paving-content{
    display:flex;
    flex-direction:column;
    justify-content:center;
}

.gravel-paving-content h2{
    font-weight: 900;
    text-transform: uppercase;    
    color:#CE0F2C;
    font-size: clamp(1.5rem, 4vw, 2.5rem);    
    margin-bottom:5px;
    line-height:1.2; 
    border-left:6px solid #CE0F2C;
    padding-left:18px;
}

.gravel-paving-content p{
    color:rgba(17,17,17,0.92);
    font-size:1.05rem;
    font-weight:500;
    line-height:1.75;
    margin-bottom: 5px;
}

/* =========================================
   FORM BOX
========================================= */

.gravel-paving-form-box{
    background:#fff;
    width:100%;
    max-width:460px;
    margin-left:auto;
    padding:30px;
    border-radius:16px;
    box-shadow:0 25px 60px rgba(0,0,0,.25);
    display:flex;
    flex-direction:column;
    justify-content:flex-start;
    transition:.3s ease;
}

.gravel-paving-form-box:hover{
    transform:translateY(-4px);
    box-shadow:0 30px 70px rgba(0,0,0,.35);
}

.gravel-paving-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
========================================= */

.gravel-paving-cta-wrapper{
    margin-top:28px;
}

.gravel-paving-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;
}

.gravel-paving-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;
}

.gravel-paving-cta-button:hover::before {
    left: 120%;
}

.gravel-paving-cta-button:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 12px 28px rgba(206,15,44,0.4);
}

/* =========================================
   ANIMATION
========================================= */

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =========================================
   CONTACT FORM 7 FIX
========================================= */

.wpcf7-form p{
    margin:0;
    padding:0;
}

.wpcf7-form br{
    display:none;
}

.quote-form{
    display:flex;
    flex-direction:column;
    gap:12px;
}

.quote-form label{
    display:block;
    padding-bottom:5px;
}

.quote-form input,
.quote-form select,
.quote-form textarea{
    width:100%;
    padding:12px 14px;
    border:1px solid #ddd;
    border-radius:8px;
    font-size:.95rem;
    transition:.3s ease;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus{
    border-color:#CE0F2C;
    box-shadow:0 0 0 3px rgba(206,15,44,.15);
    outline:none;
}

.quote-form textarea{
    height:110px;
    resize:none;
}

.quote-form input[type="submit"]{
    background:#CE0F2C;
    color:#fff;
    border:none;
    padding:13px;
    font-size:.98rem;
    font-weight:600;
    border-radius:50px;
    cursor:pointer;
    transition:.3s ease;
}

.quote-form input[type="submit"]:hover{
    background:#000;
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width:1024px){
    .gravel-paving-container{
        grid-template-columns:1fr;
        gap:40px;
    }

    .gravel-paving-form-box{
        max-width:600px;
        margin:0 auto;
    }

    .gravel-paving-content{
        text-align:center;
        align-items:center;
    }

    .gravel-paving-content h2{
        border-left:none;
        padding-left:0;
    }
}

@media (max-width:768px){
    .gravel-paving-section{
        padding:40px 15px;
    }

    .gravel-paving-content h2{
        font-size:clamp(26px, 5vw, 36px);
    }

    .gravel-paving-content p{
        font-size:0.95rem;
    }

    .gravel-paving-form-box{
        padding:24px;
    }

    .gravel-paving-cta-wrapper{
        text-align:center;
    }
}

@media (max-width:576px){
    .gravel-paving-section{
        padding:30px 12px;
    }

    .gravel-paving-content h2{
        font-size:24px;
    }

    .gravel-paving-content p{
        font-size:0.9rem;
    }

    .gravel-paving-form-box{
        padding:20px;
        border-radius:14px;
    }

    .gravel-paving-form-title{
        font-size:1rem;
        padding:10px;
    }

    .gravel-paving-cta-button{
        font-size:16px;
        padding:12px 24px;
    }
}

@media (max-width:400px){
    .gravel-paving-form-box{
        padding:16px;
    }

    .gravel-paving-cta-button{
        width:100%;
        text-align:center;
    }
}

/* =========================================
   WHO WE ARE (GRAVEL VERSION)
========================================= */

.gravel-paving-about-container{
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    padding:30px 20px;
    max-width:1200px;
    margin:auto;
    display:flex;
    align-items:center;
    gap:50px;
}

.gravel-paving-about-image{
    flex:1;
}

.gravel-paving-about-image img{
    width:100%;
    height:auto;
    border-radius:12px;
    object-fit:cover;
}

.gravel-paving-about-content{
    flex:1;
}

.gravel-paving-about-content h2{
    font-size:40px;
    font-weight:700;
    color:#CE0F2C;
    margin-bottom:20px;
}

.gravel-paving-about-content p{
    font-size:18px;
    line-height:1.6;
    color:rgba(17,17,17,0.85);
    margin-bottom:25px;
}

.gravel-paving-about-button{
    display:inline-block;
    padding:14px 32px;
    background:#CE0F2C;
    color:#fff;
    font-weight:700;
    font-size:18px;
    border-radius:50px;
    text-decoration:none;
    transition:.25s ease;
}

.gravel-paving-about-button:hover{
    transform:translateY(-5px) scale(1.03);
    box-shadow:0 12px 28px rgba(206,15,44,0.4);
}

/* RESPONSIVE */
@media (max-width:992px){
    .gravel-paving-about-container{
        flex-direction:column;
        text-align:center;
        gap:30px;
    }

    .gravel-paving-about-content h2{
        font-size:32px;
    }
}

@media (max-width:768px){
    .gravel-paving-about-content h2{
        font-size:26px;
    }

    .gravel-paving-about-content p{
        font-size:15px;
    }

    .gravel-paving-about-button{
        font-size:16px;
        padding:12px 24px;
    }
}

@media (max-width:480px){
    .gravel-paving-about-content h2{
        font-size:22px;
    }

    .gravel-paving-about-button{
        width:100%;
        text-align:center;
    }
}




/* =====================================
   GRAVEL COMPANY BANNER
===================================== */

.gravel-company-section{
    position: relative;
    padding: 40px 20px;
    background-image: url('../images/gravel-company-bg.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
}

/* Dark Overlay */
.gravel-company-overlay{
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
}

.gravel-company-content{
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    color: #fff;
}

.gravel-company-subtitle{
    display: inline-block;
    padding: 8px 18px;
    margin-bottom: 10px;
    border-radius: 50px;
    background: rgba(255,255,255,0.75);
    backdrop-filter: blur(8px);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color:#CE0F2C;
}

.gravel-company-title{
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 900;
    line-height: 1.2;
    color:#ffffff;
    margin-bottom: 25px;
}

.gravel-company-description{
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255,255,255,0.9);
    margin-bottom: 35px;
}

.gravel-company-btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
    overflow: hidden;

    padding: 16px 30px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.15);

    background: linear-gradient(135deg, #CE0F2C 0%, #CE0F2C 100%);
    color: #ffffff;
    text-decoration: none;

    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.4px;

    box-shadow:
        0 10px 25px rgba(206, 15, 44, 0.35),
        0 4px 10px rgba(0, 0, 0, 0.15);

    transition: all 0.35s ease;
    z-index: 1;
}

/* Shine Effect */
.gravel-company-btn::before{
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 60%;
    height: 100%;

    background: linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,0.4),
        transparent
    );

    transform: skewX(-25deg);
    transition: all 0.7s ease;
}

/* Hover */
.gravel-company-btn:hover{
    transform: translateY(-4px);
    box-shadow:
        0 15px 35px rgba(206, 15, 44, 0.45),
        0 8px 18px rgba(0, 0, 0, 0.2);
}

.gravel-company-btn:hover::before{
    left: 150%;
}

/* Click Effect */
.gravel-company-btn:active{
    transform: translateY(-1px) scale(0.98);
}

/* Focus */
.gravel-company-btn:focus-visible{
    outline: 3px solid rgba(255,255,255,0.4);
    outline-offset: 3px;
}

@media (max-width: 768px){
    .gravel-company-section{
        padding: 80px 20px;
    }

    .gravel-company-description{
        font-size: 16px;
    }
}

/* =========================
   ASPHALT SERVICES
========================= */

.asphalt-services-title{
    font-size: clamp(34px, 4vw, 48px);
    font-weight: 900;
    line-height: 1.15;
    color: #CE0F2C;
    text-align: center;
    margin-bottom: 20px;
}

.asphalt-services-intro{
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    max-width: 850px;
    margin: 0 auto 25px;
    font-size: 17px;
    line-height: 1.8;
    color: #4b5563;
    text-align: center;
}

.asphalt-services-subtitle{
    font-size: 20px;
    font-weight: 700;
    color: #111827;
    text-align: center;
    margin: 40px 0 30px;
}

/* Grid */
.asphalt-services-list{
    list-style: none;
    max-width: 1200px;
    margin: 0 auto 40px;
    padding: 0;

    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.asphalt-services-list li{
    position: relative;
    padding: 20px 24px 20px 60px;
    background: #DDDDDD;
    border-radius: 16px;

    font-size: 16px;
    font-weight: 600;
    line-height: 1.6;
    color: #374151;

    box-shadow: 0 6px 20px rgba(0,0,0,0.06);
    border: 1px solid rgba(0,0,0,0.05);

    transition: all 0.3s ease;
}

.asphalt-services-list li::before{
    content: "✓";
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #CE0F2C;
    color: #fff;
    border-radius: 50%;
    font-size: 14px;
    font-weight: 700;
}

.asphalt-services-list li:hover{
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.10);
    border-color: rgba(206, 15, 44, 0.2);
}

.asphalt-services-text{
    max-width: 900px;
    margin: 0 auto;
    font-size: 17px;
    line-height: 1.8;
    color: #4b5563;
    text-align: center;
}

/* Responsive */
@media (max-width: 768px){
    .asphalt-services-section{
        padding: 60px 20px;
    }

    .asphalt-services-title{
        font-size: 30px;
        margin-bottom: 15px;
    }

    .asphalt-services-intro,
    .asphalt-services-text{
        font-size: 16px;
    }

    .asphalt-services-subtitle{
        font-size: 18px;
        margin: 30px 0 20px;
    }

    .asphalt-services-list{
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .asphalt-services-list li{
        padding: 18px 18px 18px 55px;
        font-size: 15px;
    }

    .asphalt-services-list li::before{
        left: 18px;
        width: 26px;
        height: 26px;
        font-size: 13px;
    }
}

/* =========================
   ASPHALT BENEFITS
========================= */

.asphalt-benefits-container{
    max-width: 1200px;
    margin: 20px auto;
    padding: 40px;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    align-items: center;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 32px;
    box-shadow:
        0 10px 30px rgba(15, 23, 42, 0.06),
        0 30px 80px rgba(15, 23, 42, 0.08);
    position: relative;
    overflow: hidden;
}

.asphalt-benefits-container::before,
.asphalt-benefits-container::after{
    content: "";
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.asphalt-benefits-container::before{
    top: -120px;
    right: -120px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(206, 15, 44, 0.12) 0%, transparent 70%);
}

.asphalt-benefits-container::after{
    bottom: -80px;
    left: -80px;
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(206, 15, 44, 0.08) 0%, transparent 70%);
}

/* Content */
.asphalt-benefits-content{
    position: relative;
    z-index: 2;
}

.asphalt-benefits-title{
    margin: 0 0 25px;
    color: #CE0F2C;
    font-size: clamp(36px, 5vw, 54px);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -1.5px;
}

.asphalt-benefits-intro{
    margin-bottom: 35px;
    color: #475569;
    font-size: 18px;
    line-height: 1.9;
}

/* List */
.asphalt-benefits-list{
    list-style: none;
    padding: 0;
    margin: 0 0 35px;
    display: grid;
    gap: 7px;
}

.asphalt-benefits-list li{
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 18px 20px;
    background: #DDDDDD;
    border: 1px solid rgba(15, 23, 42, 0.06);
    border-radius: 18px;
    color: #334155;
    font-size: 16px;
    line-height: 1.7;
    backdrop-filter: blur(12px);
    transition: all .3s ease;
}

.asphalt-benefits-list li::before{
    content: "✓";
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, #CE0F2C, #ef4444);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
}

.asphalt-benefits-list li:hover{
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
    border-color: rgba(206, 15, 44, 0.15);
}

/* Button */
.asphalt-benefits-btn{
    display: inline-flex;
    align-items: center;
    gap: 12px;
    position: relative;
    overflow: hidden;
    padding: 18px 34px;
    border-radius: 999px;
    background: linear-gradient(135deg, #CE0F2C 0%, #CE0F2C 100%);
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: .5px;
    box-shadow: 0 12px 30px rgba(206, 15, 44, 0.35);
    transition: all .35s ease;
}

.asphalt-benefits-btn::after{
    content: "→";
    font-size: 18px;
    transition: transform .3s ease;
}

.asphalt-benefits-btn::before{
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
    transition: left .7s ease;
}

.asphalt-benefits-btn:hover{
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(206, 15, 44, 0.45);
}

.asphalt-benefits-btn:hover::before{
    left: 100%;
}

.asphalt-benefits-btn:hover::after{
    transform: translateX(4px);
}

/* Image */
.asphalt-benefits-image{
    min-height: 650px;
    border-radius: 28px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.12);
    transition: transform .5s ease;
}

.asphalt-benefits-image::before{
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15,23,42,.15), transparent 45%);
}

.asphalt-benefits-image:hover{
    transform: scale(1.02);
}

/* Responsive */
@media (max-width: 991px){
    .asphalt-benefits-container{
        grid-template-columns: 1fr;
        padding: 30px;
        gap: 35px;
    }

    .asphalt-benefits-image{
        order: -1;
        min-height: 420px;
    }
}

@media (max-width: 767px){
    .asphalt-benefits-container{
        padding: 25px;
        border-radius: 24px;
    }

    .asphalt-benefits-title{
        font-size: 34px;
    }

    .asphalt-benefits-intro,
    .asphalt-benefits-description{
        font-size: 16px;
    }

    .asphalt-benefits-list li{
        padding: 16px;
        font-size: 15px;
    }

    .asphalt-benefits-btn{
        width: 100%;
        justify-content: center;
    }

    .asphalt-benefits-image{
        min-height: 280px;
        border-radius: 20px;
    }
}

/* =========================
   DRIVEWAY REPAIR
========================= */

.driveway-repair-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
}

.driveway-repair-title {
    font-size: clamp(34px, 4vw, 48px);
    font-weight: 900;
    line-height: 1.15;
    color: #CE0F2C;
    text-align: center;
    margin-bottom: 20px;
}

.driveway-repair-description {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
    text-align: center;
    margin-bottom: 30px;
    padding: 0 10px;
}

.driveway-repair-video {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.driveway-repair-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Responsive */
@media (max-width: 768px){
    .driveway-repair-content{
        padding: 30px 15px;
    }

    .driveway-repair-title{
        font-size: 26px;
    }

    .driveway-repair-description{
        font-size: 15px;
    }
}

@media (max-width: 480px){
    .driveway-repair-title{
        font-size: 22px;
    }

    .driveway-repair-description{
        font-size: 14px;
    }

    .driveway-repair-content{
        border-radius: 10px;
    }
}



/* =========================
   GRAVEL CHOOSE SECTION (FIXED SYSTEM)
========================= */

.gravel-choose-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* ROW */
.gravel-choose-row {
    display: flex;
    align-items: stretch; /* Equal height */
    justify-content: space-between;
    gap: 40px;

    padding: 40px;
    background: #ffffff;
    border-radius: 18px;

    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.gravel-choose-row:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
}

/* IMAGE COLUMN */
.gravel-choose-image {
    flex: 1;
    min-width: 0;
    display: flex;
}

/* IMAGE */
.gravel-choose-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
    transition: transform 0.4s ease, filter 0.3s ease;
}

.gravel-choose-image img:hover {
    transform: scale(1.03);
    filter: brightness(1.05);
}

/* CONTENT */
.gravel-choose-content {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* Top aligned */
}

.gravel-choose-title {
    font-size: clamp(34px, 4vw, 48px);
    font-weight: 900;
    line-height: 1.15;
    color: #CE0F2C;
    text-align: left;
    margin: 0 0 20px;
}

.gravel-choose-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin: 0 0 14px;
}

/* =========================
   RESPONSIVE SYSTEM
========================= */

/* 992px */
@media (max-width: 992px) {
    .gravel-choose-row {
        padding: 30px;
        gap: 30px;
    }

    .gravel-choose-title {
        font-size: 28px;
    }
}

/* 768px */
@media (max-width: 768px) {
    .gravel-choose-row {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
        padding: 25px;
    }

    .gravel-choose-title {
        font-size: 24px;
        text-align: center;
    }

    .gravel-choose-content {
        text-align: center;
    }

    .gravel-choose-content p {
        font-size: 15px;
    }

    .gravel-choose-image img {
        height: auto;
        max-height: 300px;
    }
}

/* 480px */
@media (max-width: 480px) {
    .gravel-choose-section {
        padding: 30px 15px;
    }

    .gravel-choose-row {
        padding: 18px;
        border-radius: 14px;
    }

    .gravel-choose-title {
        font-size: 22px;
    }

    .gravel-choose-content p {
        font-size: 14px;
    }

    .gravel-choose-image img {
        max-height: 240px;
    }
}



/* =====================================================
   GRAVEL PAVING SERVICE AREA SECTION
===================================================== */

/* ===== SECTION ===== */
.gravel-service-area-section {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    padding: clamp(30px, 8vw, 20px) 20px;
    position: relative;
    text-align: center;
    color: #fff;
}

/* Overlay */
.gravel-service-area-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, #000000, #CE0F2C);
    z-index: 1;
}

.gravel-service-area-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: auto;
}

/* ===== HEADING ===== */
.gravel-service-area-section-header {
    margin-bottom: 30px;
}

.gravel-service-area-gradient-heading {
    font-size: clamp(26px, 4vw, 40px);
    font-weight: 900;
    color:#f5f5f5;
    line-height: 1.2;
    margin: 0;
    text-transform: uppercase;
}

/* ===== GRID (WITH BACKGROUND IMAGE) ===== */
.gravel-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.70), rgba(2, 6, 23, 0.85)),
    var(--gravel-service-bg) center/cover no-repeat;

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    border: 0px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.6);

    overflow: hidden;
}

/* Grid Overlay */
.gravel-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 ===== */
.service-area--list {
    position: relative;
    z-index: 1;

    list-style: none;
    margin: 0;
    padding: 18px;

    border-radius: 14px;
    background: rgba(255, 255, 255, 0.05);

    border: 1px solid rgba(255, 255, 255, 0.08);

    transition: all 0.3s ease;
}

/* Hover */
.service-area--list:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 30px rgba(255, 59, 59, 0.4);
}

/* ===== LIST ITEMS ===== */
.service-area--list li {
    margin-bottom: 10px;
}

.service-area--list li:last-child {
    margin-bottom: 0;
}

/* ===== LINKS ===== */
.service-area--list a {
    display: flex;
    align-items: center;
    gap: 8px;

    color: #ffffff;
    text-decoration: none;

    padding: 8px;
    border-radius: 6px;

    font-size: 15px;
    line-height: 1.6;
    font-weight: 500;

    transition: all 0.3s ease;
}

/* Icon */
.service-area--list a::before {
    content: "✔";
    color: #ff3b3b;
    flex-shrink: 0;
}

/* Hover */
.service-area--list a:hover {
    background: rgba(255, 255, 255, 0.08);
    padding-left: 12px;
}

/* =====================================================
   RESPONSIVE DESIGN
===================================================== */

/* Tablet */
@media (max-width: 991px) {

    .gravel-service-area-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 25px;
        gap: 20px;
    }

    .gravel-service-area-gradient-heading {
        font-size: 30px;
    }
}

/* Mobile */
@media (max-width: 767px) {

    .gravel-service-area-section {
        padding: 20px 15px;
    }

    .gravel-service-area-grid {
        grid-template-columns: 1fr;
        padding: 20px;
        gap: 18px;
    }

    .gravel-service-area-gradient-heading {
        font-size: 24px;
    }

    .service-area--list {
        padding: 16px;
    }

    .service-area--list a {
        font-size: 14px;
        padding: 7px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {

    .gravel-service-area-grid {
        padding: 15px;
    }

    .gravel-service-area-gradient-heading {
        font-size: 22px;
    }

    .service-area--list {
        padding: 14px;
        border-radius: 12px;
    }

    .service-area--list a {
        font-size: 13px;
    }
}


/* =====================================
   GRAVEL CTA SECTION
===================================== */
.gravel-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 */
.gravel-cta-container{
    max-width: 1200px;
    margin: auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

/* HEADER */
.gravel-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;
    text-transform: uppercase;
}

/* CONTENT BOX */
.gravel-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 */
.gravel-cta-content p{
    font-size: 18px;
    font-family: Calibri, sans-serif;
    color: rgba(255,255,255,0.85);
    line-height: 1.7;
    margin-bottom: 18px;
}

.gravel-cta-content p:last-child{
    margin-bottom: 0;
}

/* LINKS */
.gravel-cta-content a{
    color: #CE0F2C;
    font-weight: 600;
    text-decoration: none;
    position: relative;
}

/* Underline Hover Effect */
.gravel-cta-content a::after{
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 0%;
    height: 2px;
    background: #ff4d6d;
    transition: 0.3s ease;
}

.gravel-cta-content a:hover::after{
    width: 100%;
}

/* =========================================
   CONTACT BUTTON
========================================= */
.gravel-cta-wrapper{
    margin-top: 30px;

    display: flex;
    justify-content: center;
    align-items: center;
}

.gravel-cta-button{
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: clamp(12px, 1.5vw, 10px)
             clamp(25px, 3vw, 30px);

    font-size: clamp(14px, 1.5vw, 16px);
    font-weight: 600;

    border-radius: 50px;
    background: #CE0F2C;
    color: #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);
}

.gravel-cta-button::before{
    content: "";
    position: absolute;
    top: 0;
    left: -75%;

    width: 50%;
    height: 100%;

    background: linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,0.5),
        transparent
    );

    transform: skewX(-25deg);
}

.gravel-cta-button:hover::before{
    animation: gravel-shine 0.8s ease forwards;
}

@keyframes gravel-shine{
    100%{
        left: 125%;
    }
}

.gravel-cta-button:hover{
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 16px 40px rgba(206, 15, 44, 0.6);
}

.gravel-cta-button:active{
    transform: scale(0.97);
}

/* =====================================
   RESPONSIVE
===================================== */
@media (max-width: 600px){

    .gravel-cta-section{
        padding: 20px 15px;
    }

    .gravel-cta-content{
        padding: 25px 20px;
    }

    .gravel-cta-header h3{
        font-size: 26px;
    }

    .gravel-cta-content p{
        font-size: 16px;
    }

    .gravel-cta-button{
        width: 100%;
        max-width: 320px;
    }
}