/* =======================================================
   SERVICES HERO SECTION
   PREMIUM MODERN UI STYLE
========================================================= */

.services-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
========================================= */

.services-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
========================================= */

.services-hero-container{
    width:100%;
    max-width:1200px;
    margin:auto;
    position:relative;
    z-index:2;
}

/* =========================================
   CONTENT
========================================= */

.services-hero-content{
    text-align:center;
    color:#ffffff;
    animation:servicesHeroFadeUp 1s ease forwards;
    opacity:0;
}

/* =========================================
   TITLE
========================================= */

.services-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
========================================= */

.services-hero-divider{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:12px;
}

/* =========================================
   LINE
========================================= */

.services-hero-line{
    width:160px;
    height:14px;
    border-radius:20px;
    background:#ffffff;
    opacity:.7;
    position:relative;
    overflow:hidden;
}

.services-hero-line::before{
    content:"";
    position:absolute;
    inset:0;
    background:#CE0F2C;
    animation:servicesLineMove 2s linear infinite;
}

/* =========================================
   ICON
========================================= */

.services-hero-icon{
    width:18px;
    height:18px;
    display:flex;
    animation:servicesHeroPulse 2s ease infinite;
}

.services-hero-icon svg{
    fill:#CE0F2C;
    width:100%;
    height:100%;
    filter:drop-shadow(0 0 10px rgba(206,15,44,0.5));
}

/* =========================================
   ANIMATIONS
========================================= */

@keyframes servicesHeroFadeUp{

    from{
        transform:translateY(40px);
        opacity:0;
    }

    to{
        transform:translateY(0);
        opacity:1;
    }

}

@keyframes servicesLineMove{

    0%{
        transform:translateX(-100%);
    }

    100%{
        transform:translateX(100%);
    }

}

@keyframes servicesHeroPulse{

    0%,100%{
        transform:scale(1);
    }

    50%{
        transform:scale(1.2);
    }

}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width:768px){

    .services-hero-title{
        font-size:28px;
    }

    .services-hero-section{
        padding:60px 15px;
    }

    .services-hero-line{
        width:70px;
    }

}

@media (max-width:480px){

    .services-hero-title{
        font-size:24px;
        line-height:1.4;
    }

    .services-hero-line{
        width:40px;
    }

    .services-hero-divider{
        gap:8px;
    }

}



/* =========================================
   SERVICES ABOUT SECTION STYLE  
========================================= */

.services-about-section{
    position:relative;
    padding:clamp(10px,8vw,15px) 20px;
    overflow:hidden;
}

/* Background */
.services-about-section::before{
    content:"";
    position:absolute;
    inset:0;
    background: var(--paving-bg) center/cover no-repeat;
    filter: blur(2px);
    transform: scale(1.05);
    z-index:-2;
}

/* Overlay */
.services-about-section::after{
    content:"";
    position:absolute;
    inset:0;
    background: rgba(255,255,255,0.85);
    z-index:-1;
}

.services-about-container{
    position:relative;
    z-index:2;
    padding-top: 20px;
    padding-bottom: 20px;
    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
========================================= */

.services-about-content{
    display:flex;
    flex-direction:column;
    justify-content:center;
    font-family:calibri;
}

.services-about-content h2{
    font-family: 'Anton', sans-serif;
    color:#CE0F2C;
    font-size:clamp(20px,4vw,38px);
    font-weight:800;
    margin-bottom:5px;
    line-height:1.15;
}

.services-about-content p{
    color:rgba(17,17,17,0.92);
    font-size:18px;
    font-weight:500;
    line-height:1.75;
    margin-bottom:5px;
}

.services-about-content p a {
    text-decoration: none;
    color: #CE0F2C;
}



/* =========================================
   CONTACT BUTTON
========================================= */
.services-about-cta-wrapper{
    margin-top:28px;
}

.services-about-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;

    /* animation */
    opacity: 0;
    transform: translateY(15px);
    animation: fadeInUp 0.7s ease-out forwards;
}

.services-about-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;
}

.services-about-cta-button:hover::before {
    left: 120%;
}

.services-about-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);
    }
}

/* =========================================
   FORM BOX
========================================= */

.services-about-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;
}

.services-about-form-box:hover{
    transform:translateY(-4px);
    box-shadow:0 30px 70px rgba(0,0,0,.35);
}

/* TITLE */
.services-about-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; /* GAP FIX */
    border-radius:8px;
}

/* =========================================
   CONTACT FORM 7 COMPLETE FIX
========================================= */

/* Remove ALL unwanted spacing */
.services-about-form-box .wpcf7,
.services-about-form-box .wpcf7-form,
.services-about-form-box .wpcf7-form p{
    margin:0 !important;
    padding:0 !important;
}

/* Remove line breaks */
.wpcf7-form br{
    display:none;
}

/* Remove bottom gap */
.services-about-form-box .wpcf7-form > p:last-child{
    margin-bottom:0 !important;
}

/* Response message */
.services-about-form-box .wpcf7-response-output{
    margin:10px 0 0 !important;
    border-radius:8px;
}

/* =========================================
   FORM STYLE
========================================= */

.quote-form{
    display:flex;
    flex-direction:column;
    gap:10px;
}

.quote-form label{
    display:block;
    width:100%;
}

/* INPUT */
.quote-form input,
.quote-form select,
.quote-form textarea{
    width:100%;
    height:44px;
    padding:12px 14px;
    border:1px solid #ddd;
    border-radius:8px;
    font-size:.95rem;
    background:#fff;
    transition:.3s ease;
    box-shadow:0 2px 6px rgba(0,0,0,0.04);
}

/* TEXTAREA */
.quote-form textarea{
    height:110px;
    resize:none;
}

/* FOCUS */
.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);
    transform:translateY(-1px);
    outline:none;
}

/* SELECT FIX */
.quote-form select{
    appearance:none;
    -webkit-appearance:none;
    -moz-appearance:none;
    background-image:url("data:image/svg+xml;utf8,<svg fill='%23111' height='20' viewBox='0 0 20 20' width='20' xmlns='http://www.w3.org/2000/svg'><path d='M5 7l5 5 5-5H5z'/></svg>");
    background-repeat:no-repeat;
    background-position:right 12px center;
    background-size:14px;
    padding-right:40px;
    cursor:pointer;
}

/* SUBMIT */
.quote-form input[type="submit"]{
    width:100%;
    background:#CE0F2C;
    color:#fff;
    border:none;
    padding:14px;
    font-size:.95rem;
    font-weight:600;
    border-radius:50px;
    cursor:pointer;
    transition:.3s ease;
}

.quote-form input[type="submit"]:hover{
    background:#000;
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width:1024px){

    .services-about-container{
        grid-template-columns:1fr;
    }

    .services-about-form-box{
        max-width:600px;
        margin:0 auto;
    }

    .services-about-content{
        text-align:center;
        align-items:center;
    }

}

@media (max-width:576px){

    .services-about-section{
        padding:60px 15px;
    }

    .services-about-content h2{
        font-size:1.9rem;
    }

    .services-about-form-box{
        padding:24px;
        border-radius:14px;
    }

    .services-about-form-title{
        font-size:1rem;
        padding:12px;
    }

}


/* ================================
    Residential & Commercial Services
================================ */

/* SECTION BASE */
.residential-commercial-services-section {
    padding: clamp(20px, 6vw, 20px) 20px;
    background: linear-gradient(180deg, #ce0f2c 0%, #0f172a 100%);
    color: #fff;
}

/* CONTAINERS */
.residential-services-container,
.commercial-services-container {
    max-width: 1200px;
    margin: 0 auto 20px;
}

/* HEADERS */
.residential-services-header,
.commercial-services-header {
    text-align: center;
    margin-bottom: 40px;
}

.residential-services-header h2,
.commercial-services-header h2 {
    font-family: 'Anton', sans-serif;
    color:#ffffff;
    font-size:clamp(22px,4vw,40px);
    font-weight:800;    
    margin-bottom:15px; 
}

.residential-services-header p,
.commercial-services-header p {
    font-size: 18px;
    font-family: calibri;
    color:#ffffff;
    line-height:1.7;
    margin-bottom:18px;
}

/* GRID SYSTEM */
.residential-services-cards,
.commercial-services-cards {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
}

/* CARD DESIGN */
.residential-service-card,
.commercial-service-card {
    background: #1e293b;
    padding: 25px 20px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

/* HOVER EFFECT */
.residential-service-card:hover,
.commercial-service-card:hover {
    transform: translateY(-5px);
    border-color: #ef4444;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

/* ICON */
.icon {
    font-size: 28px;
    margin-bottom: 15px;
    color: #ef4444;
}

/* TEXT */
.residential-service-card h3,
.commercial-service-card h3 {
    font-size: 18px;
    font-family: calibri;
    margin-bottom: 8px;
}

.residential-service-card p,
.commercial-service-card p {
    font-size: 16px;
    color: #cbd5e1;
    font-family: calibri;
}

/* CTA Button */
.residential-commercial-cta {
    display: grid;
    place-items: center;
    text-align: center;
    gap: 15px;
}

.residential-commercial-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: clamp(12px, 1.5vw, 10px) clamp(25px, 3vw, 30px);
    font-size: clamp(14px, 1.5vw, 16px);
    font-weight: 600;
    border-radius: 50px;
    background: #ce0f2c;
    color: #fff;
    text-decoration: none;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;

    box-shadow: 0 8px 25px rgba(206, 15, 44, 0.4);
}

.residential-commercial-cta-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,0.5),
        transparent
    );
    transform: skewX(-25deg);
}

.residential-commercial-cta-btn:hover::before {
    animation: shine 0.8s ease forwards;
}

@keyframes shine {
    100% {
        left: 125%;
    }
}

.residential-commercial-cta-btn:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 16px 40px rgba(206, 15, 44, 0.6);
}

.residential-commercial-cta-btn:active {
    transform: scale(0.97);
}



/* =========================
   TABLET (≥768px)
========================= */
@media (min-width: 768px) {

    .residential-services-cards,
    .commercial-services-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .residential-services-header h2,
    .commercial-services-header h2 {
        font-size: 36px;
    }
}

/* =========================
   SMALL LAPTOP (≥992px)
========================= */
@media (min-width: 992px) {

    .residential-services-cards {
        grid-template-columns: repeat(3, 1fr);
    }

    .commercial-services-cards {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* =========================
   LARGE SCREEN (≥1200px)
========================= */
@media (min-width: 1200px) {

    .residential-services-cards {
        grid-template-columns: repeat(3, 1fr);
    }

    .commercial-services-cards {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* =========================
   EXTRA LARGE (≥1400px)
========================= */
@media (min-width: 1400px) {

    .commercial-services-cards {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* =====================================
   PAVING SERVICES SOLUTIONS
===================================== */

.paving-services-solutions {
    position: relative;
    padding: 20px;
    overflow: hidden;
    z-index: 1;
}

/* BACKGROUND OVERLAY */
.paving-services-solutions::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(0,0,0,0.15), rgba(0,0,0,0.15)),
        url('../images/newyork-overlay-map-image.webp') center/cover no-repeat;

    filter: blur(6px);
    opacity: 0.25;
    transform: scale(1.1);
    z-index: -1;
}

/* MAIN CONTAINER */
.paving-services-container {
    max-width: 1200px;
    margin: 0 auto;

    display: flex;
    align-items: stretch; /* 🔥 equal height */
    gap: 40px;
}

/* IMAGE SECTION */
.paving-services-image {
    flex: 1;
    display: flex;
}

.paving-services-image img {
    width: 100%;
    height: 100%;        /* 🔥 match content height */
    object-fit: cover;

    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* CONTENT SECTION */
.paving-services-content {
    flex: 1.3; /* 🔥 slightly wider than image */
    background: #ffffff;

    width: 100%;
    height: 100%;  /* 🔥 equal height */

    max-width: 750px; /* 🔥 wider box */

    padding: 28px 32px;

    border-radius: 14px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);

    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* HEADING */
.paving-services-content h2 {
    font-family: 'Anton', sans-serif;
    color:#CE0F2C;
    font-size:clamp(20px,4vw,38px);
    font-weight:800;
    margin-bottom:5px;
    line-height:1.15;
}

/* INTRO TEXT */
.services-intro {
    font-size: 16px;
    font-family: calibri;
    color: #555;
    line-height: 1.8;
    margin-bottom: 25px;
}

/* LIST */
.paving-services-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.paving-services-list li {
    background: #f1f5f9;
    margin-bottom: 15px;
    padding: 18px 20px;
    font-family: calibri;
    border-left: 4px solid #ce0f2c;
    border-radius: 8px;

    font-size: 15px;
    color: #333;
    line-height: 1.7;
}

/* STRONG TEXT */
.paving-services-list li strong {
    color: #ce0f2c;
    font-weight: 600;
}

/* ===============================
   RESPONSIVE
=================================*/

@media (max-width: 992px) {

    .paving-services-container {
        flex-direction: column;
    }

    .paving-services-content {
        max-width: 100%;
        padding: 30px;
    }

    .paving-services-content h2 {
        font-size: 26px;
    }
}

@media (max-width: 576px) {

    .paving-services-solutions {
        padding: 50px 15px;
    }

    .paving-services-content {
        padding: 22px;
    }

    .paving-services-content h2 {
        font-size: 22px;
    }

    .services-intro {
        font-size: 14px;
    }

    .paving-services-list li {
        padding: 14px;
        font-size: 14px;
    }
}


/* =====================================
   USA CONSTRUCTION AGENCY HOMEPAGE UI
   PREMIUM DESIGN (STATS + SERVICES)
===================================== */

.usa-construction-section {
    padding: 20px 20px;
    background: #f4f6f8;
    font-family: Arial, sans-serif;
}

/* CONTAINER */
.usa-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* =========================
   STATS SECTION (HERO BAR)
========================= */
.usa-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;

    background: linear-gradient(135deg, #0b1f3a, #122b4d);
    padding: 40px;
    border-radius: 18px;

    margin-bottom: 60px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.usa-stat {
    text-align: center;
    color: #fff;
}

.usa-stat h2 {
    font-size: 38px;
    font-weight: 700;
    color: #ffb400;
    margin: 0;
}

.usa-stat p {
    margin-top: 8px;
    font-size: 14px;
    opacity: 0.9;
}

/* =========================
   SECTION HEADER
========================= */
.usa-section-header {
    text-align: center;
    margin-bottom: 50px;
}

.usa-section-header h2 {
    font-size: 36px;
    color: #111;
    margin-bottom: 10px;
    font-weight: 700;
}

.usa-section-header p {
    max-width: 750px;
    margin: 0 auto;
    color: #666;
    line-height: 1.7;
    font-size: 16px;
}

/* =========================
   SERVICES GRID
========================= */
.usa-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

/* =========================
   SERVICE CARD
========================= */
.usa-card {
    background: #ffffff;
    padding: 32px 22px;
    border-radius: 16px;

    text-align: center;

    border: 1px solid #eef1f5;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);

    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* CARD HOVER */
.usa-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.14);
    border-color: #dbe7ff;
}

/* =========================
   ICON BOX (PREMIUM STYLE)
========================= */
.usa-icon {
    width: 74px;
    height: 74px;
    margin: 0 auto 18px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 18px;

    background: linear-gradient(135deg, #eef5ff, #f7faff);
    box-shadow: inset 0 0 0 1px #d6e6ff;

    transition: all 0.3s ease;
}

/* HOVER EFFECT */
.usa-card:hover .usa-icon {
    transform: translateY(-3px) scale(1.08);
    background: linear-gradient(135deg, #dceaff, #eef6ff);
}

/* SVG ICON */
.usa-icon svg {
    width: 34px;
    height: 34px;

    stroke: #0b1f3a;
    fill: none;
    stroke-width: 1.6;

    transition: 0.3s ease;
}

/* ACTIVE COLOR */
.usa-card:hover .usa-icon svg {
    stroke: #0d6efd;
}

/* =========================
   TITLE
========================= */
.usa-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #0b1f3a;
    margin-bottom: 10px;
}

/* =========================
   TEXT
========================= */
.usa-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

/* =========================
   RESPONSIVE DESIGN
========================= */

@media (max-width: 992px) {

    .usa-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .usa-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .usa-section-header h2 {
        font-size: 28px;
    }
}

@media (max-width: 576px) {

    .usa-stats {
        grid-template-columns: 1fr;
        padding: 30px;
    }

    .usa-services-grid {
        grid-template-columns: 1fr;
    }

    .usa-card {
        padding: 25px 18px;
    }

    .usa-section-header h2 {
        font-size: 24px;
    }
}


/* =====================================
   WHY CHOOSE US - PREMIUM USA STYLE
===================================== */

.why-choose-container {
    max-width: 1100px;
    margin: 0 auto;
}

/* HEADER */
.why-choose-header {
    text-align: center;
    margin-bottom: 50px;
}

.why-choose-header h2 {
    font-size: 36px;
    color: #0b1f3a;
    margin-bottom: 10px;
    font-weight: 700;
}

.why-choose-header p {
    max-width: 750px;
    margin: 0 auto;
    color: #666;
    line-height: 1.7;
}

/* GRID */
.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

/* CARD */
.why-choose-card {
    display: flex;
    gap: 15px;
    align-items: flex-start;

    background: #fff;
    padding: 22px;
    border-radius: 14px;

    border: 1px solid #eef1f5;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);

    transition: all 0.3s ease;

    position: relative;
}

/* HOVER */
.why-choose-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.12);
    border-left: 4px solid #0d6efd;
}

/* ICON BOX */
.why-choose-card .icon {
    width: 52px;
    height: 52px;
    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    background: linear-gradient(135deg, #eaf2ff, #f5f9ff);
    border-radius: 12px;

    box-shadow: inset 0 0 0 1px #dbe7ff;
}

/* ICON */
.why-choose-card .icon svg {
    width: 26px;
    height: 26px;
    fill: none;
    stroke: #0b1f3a;
    stroke-width: 1.6;
}

/* TEXT */
.why-choose-card h3 {
    font-size: 17px;
    color: #0b1f3a;
    margin-bottom: 6px;
}

.why-choose-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* FULL WIDTH CARD */
.why-choose-card.full {
    grid-column: span 2;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .why-choose-grid {
        grid-template-columns: 1fr;
    }

    .why-choose-card.full {
        grid-column: span 1;
    }

    .why-choose-header h2 {
        font-size: 26px;
    }
}


/* =====================================
   SERVICES CTA SECTION
===================================== */
.services-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 */
.services-cta-container{
    max-width:1150px;
    margin:auto;
    text-align:center;
    position:relative;
    z-index:2;
}

/* HEADER */
.services-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 */
.services-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 */
.services-cta-content p{
    font-size: 18px;
    font-family: calibri;
    color:rgba(255,255,255,0.85);
    line-height:1.7;
    margin-bottom:18px;
}

/* LINKS */
.services-cta-content a{
    color:#CE0F2C;
    font-weight:600;
    text-decoration:none;
    position:relative;
}

/* underline hover effect */
.services-cta-content a::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-3px;
    width:0%;
    height:2px;
    background:#ff4d6d;
    transition:0.3s ease;
}

.services-cta-content a:hover::after{
    width:100%;
}

/* =========================================
   CONTACT BUTTON
========================================= */
.services-cta-wrapper{
    margin-top:28px;
    text-align: center;
}

.services-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;

    /* animation */
    opacity: 0;
    transform: translateY(15px);
    animation: fadeInUp 0.7s ease-out forwards;
}

.services-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;
}

.services-cta-button:hover::before {
    left: 120%;
}

.services-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);
    }
}

/* RESPONSIVE */
@media(max-width:600px){
    .services-cta-section{
        padding:70px 15px;
    }

    .services-cta-content{
        padding:25px 20px;
    }

    .services-cta-header h3{
        font-size:26px;
    }
}