/* =======================================================
   REVIEWS HERO SECTION
   PREMIUM MODERN UI STYLE
========================================================= */

.reviews-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
========================================= */

.reviews-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
========================================= */

.reviews-hero-container{
    width:100%;
    max-width:1200px;
    margin:auto;
    position:relative;
    z-index:2;
}

/* =========================================
   CONTENT
========================================= */

.reviews-hero-content{
    text-align:center;
    color:#ffffff;
    animation:reviewsHeroFadeUp 1s ease forwards;
    opacity:0;
}

/* =========================================
   TITLE
========================================= */

.reviews-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
========================================= */

.reviews-hero-divider{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:12px;
}

/* =========================================
   LINE
========================================= */

.reviews-hero-line{
    width:160px;
    height:14px;
    border-radius:20px;
    background:#ffffff;
    opacity:.7;
    position:relative;
    overflow:hidden;
}

.reviews-hero-line::before{
    content:"";
    position:absolute;
    inset:0;
    background:#CE0F2C;
    animation:reviewsLineMove 2s linear infinite;
}

/* =========================================
   ICON
========================================= */

.reviews-hero-icon{
    width:18px;
    height:18px;
    display:flex;
    animation:reviewsHeroPulse 2s ease infinite;
}

.reviews-hero-icon svg{
    fill:#CE0F2C;
    width:100%;
    height:100%;
    filter:drop-shadow(0 0 10px rgba(206,15,44,0.5));
}

/* =========================================
   ANIMATIONS
========================================= */

@keyframes reviewsHeroFadeUp{

    from{
        transform:translateY(40px);
        opacity:0;
    }

    to{
        transform:translateY(0);
        opacity:1;
    }

}

@keyframes reviewsLineMove{

    0%{
        transform:translateX(-100%);
    }

    100%{
        transform:translateX(100%);
    }

}

@keyframes reviewsHeroPulse{

    0%,100%{
        transform:scale(1);
    }

    50%{
        transform:scale(1.2);
    }

}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width:768px){

    .reviews-hero-title{
        font-size:28px;
    }

    .reviews-hero-section{
        padding:60px 15px;
    }

    .reviews-hero-line{
        width:70px;
    }

}

@media (max-width:480px){

    .reviews-hero-title{
        font-size:24px;
        line-height:1.4;
    }

    .reviews-hero-line{
        width:40px;
    }

    .reviews-hero-divider{
        gap:8px;
    }

}

/* =========================================
   REVIEWS SECTION STYLE  
========================================= */

.reviews-about-section{
    position:relative;
    padding:clamp(10px,8vw,15px) 20px;
    overflow:hidden;
}

/* Background */
.reviews-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 */
.reviews-about-section::after{
    content:"";
    position:absolute;
    inset:0;
    background: rgba(255,255,255,0.85);
    z-index:-1;
}

.reviews-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
========================================= */

.reviews-about-content{
    display:flex;
    flex-direction:column;
    justify-content:center;
    font-family:calibri;
}

.reviews-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;
}

.reviews-about-content p{
    color:rgba(17,17,17,0.92);
    font-size:18px;
    font-weight:500;
    line-height:1.75;
    margin-bottom:5px;
}

.reviews-about-content p a {
    text-decoration: none;
    color: #CE0F2C;
}



/* =========================================
   CONTACT BUTTON
========================================= */
.reviews-about-cta-wrapper{
    margin-top:28px;
}

.reviews-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;
}

.reviews-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;
}

.reviews-about-cta-button:hover::before {
    left: 120%;
}

.reviews-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
========================================= */

.reviews-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;
}

.reviews-about-form-box:hover{
    transform:translateY(-4px);
    box-shadow:0 30px 70px rgba(0,0,0,.35);
}

/* TITLE */
.reviews-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 */
.reviews-about-form-box .wpcf7,
.reviews-about-form-box .wpcf7-form,
.reviews-about-form-box .wpcf7-form p{
    margin:0 !important;
    padding:0 !important;
}

/* Remove line breaks */
.wpcf7-form br{
    display:none;
}

/* Remove bottom gap */
.reviews-about-form-box .wpcf7-form > p:last-child{
    margin-bottom:0 !important;
}

/* Response message */
.reviews-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){

    .reviews-about-container{
        grid-template-columns:1fr;
    }

    .reviews-about-form-box{
        max-width:600px;
        margin:0 auto;
    }

    .reviews-about-content{
        text-align:center;
        align-items:center;
    }

}

@media (max-width:576px){

    .reviews-about-section{
        padding:60px 15px;
    }

    .reviews-about-content h2{
        font-size:1.9rem;
    }

    .reviews-about-form-box{
        padding:24px;
        border-radius:14px;
    }

    .reviews-about-form-title{
        font-size:1rem;
        padding:12px;
    }

}


/* ================================
   GOOGLE REVIEWS (MODERN MINIMAL)
================================ */

.google-reviews-section {
    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);
    padding: 20px 20px;
    font-family: 'Inter', sans-serif;
}

.google-reviews-container {
    max-width: 1200px;
    margin: auto;
}

/* HEADER */
.google-reviews-header {
    text-align: center;
    margin-bottom: 48px;
}

.google-reviews-header h2 {
    font-family: 'Anton', sans-serif;
    color:#f5f5f5;
    font-size:clamp(20px,4vw,38px);
    font-weight:800;
    margin-bottom: 8px;
    letter-spacing: -0.3px;
}

.google-reviews-header p {
    font-size: 14px;
    color: #6b7280;
}

/* GRID */
.google-reviews-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
}

/* CARD */
.google-review-card {
    background: #fff;
    padding: 22px;
    border-radius: 14px;
    border: 1px solid #eceef2;
    transition: all 0.25s ease;
}

/* HOVER (SUBTLE) */
.google-review-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}

/* TOP */
.google-review-top {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

/* AVATAR */
.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: #111;
}

/* COLORS */
.avatar.green { background: #22c55e; }
.avatar.blue { background: #3b82f6; }
.avatar.purple { background: #8b5cf6; }
.avatar.orange { background: #f97316; }

/* USER INFO */
.user-info h4 {
    font-size: 14px;
    margin: 0;
    font-weight: 600;
    color: #111;
}

.user-info span {
    font-size: 12px;
    color: #9ca3af;
}

/* GOOGLE LOGO */
.google-logo {
    width: 16px;
    margin-left: auto;
    opacity: 0.6;
}

/* STARS */
.stars {
    font-size: 13px;
    color: #f59e0b;
    margin: 6px 0;
}

/* TEXT */
.google-review-card p {
    font-size: 14px;
    color: #4b5563;
    line-height: 1.6;
}

/* =========================================
   REVIEWS BUTTON
========================================= */
.google-reviews-btn-wrap{
    margin-top:28px;
    display: flex;
    justify-content: center;  /* horizontal center */
}

.google-reviews-btn{
    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;
}

.google-reviews-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    height: 100%;
    width: 100%;
    background: rgba(255,255,255,0.25);
    transform: skewX(-20deg);
    transition: .5s;
}

.google-reviews-btn:hover::before {
    left: 120%;
}

.google-reviews-btn: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);
    }
}

.stars {
    position: relative;
    display: inline-block;
    font-size: 14px;
    color: #ddd;
    line-height: 1;
}

.star-bg {
    color: #e5e7eb;
}

.star-fill {
    position: absolute;
    top: 0;
    left: 0;
    color: #f59e0b;
    overflow: hidden;
    white-space: nowrap;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .google-reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .google-reviews-grid {
        grid-template-columns: 1fr;
    }

    .google-reviews-section {
        padding: 60px 15px;
    }
}


/* =========================================
   REVIEWS CONTENT SECTION
========================================= */
.reviews-content-section{
    position:relative;
    padding:clamp(10px,8vw,15px) 20px;
    overflow:hidden;
}

/* Background */
.reviews-content-section::before{
    content:"";
    position:absolute;
    inset:0;
    background: url('../images/new-york-map-bw.webp') center/cover no-repeat;
    filter: blur(8px);
    transform: scale(1.05);
    z-index:-2;
}

.reviews-content-container{
    max-width: 1200px;
    margin: auto;
}

/* HEADER */
.reviews-content-header.center{
    text-align:center;
    max-width:1200px;
    margin:0 auto 50px;
}

.reviews-content-header h2{
    font-family: 'Anton', sans-serif;
    color:#CE0F2C;
    font-size:clamp(20px,4vw,38px);
    font-weight:800;
    margin-bottom:5px;
    line-height:1.15;  
}

.reviews-content-header p{
    font-size: 18px;
    font-family: calibri;
    color:#000000;
    line-height:1.7;
    margin-bottom:18px;
}

.reviews-content-header p a {
    text-decoration: none;
    color: #CE0F2C;
}

/* SECOND HEADER */
.reviews-content-header2.center{
    text-align:center;
    max-width:1200px;
    margin:0 auto 50px;
}

.reviews-content-header2 h2{
    font-family: 'Anton', sans-serif;
    color:#CE0F2C;
    font-size:clamp(22px,4vw,40px);
    font-weight:800;    
    margin-bottom:15px;    
}

/* =========================================
   GRID SYSTEM
========================================= */

/* Default (Mobile + Tablet) */
.reviews-features-grid{
    display:grid;
    grid-template-columns: repeat(auto-fit, minmax(240px,1fr));
    gap: 30px;
}

/* Desktop → All in One Line */
@media (min-width: 1200px){
    .reviews-features-grid{
        grid-template-columns: repeat(5, 1fr);
    }
}

/* Extra Large Screen (optional polish) */
@media (min-width: 1400px){
    .reviews-content-container{
        max-width: 1400px;
    }
}

/* =========================================
   CARD DESIGN
========================================= */
.feature-card{
    background:#ffffff;
    border-radius:18px;
    padding:26px;
    text-align:center;
    border:1px solid #eee;
    transition: all .3s ease;
    position:relative;
}

.feature-card:hover{
    transform: translateY(-8px);
    box-shadow:0 20px 50px rgba(0,0,0,0.08);
}

/* =========================================
   ICON (SVG)
========================================= */
.feature-card .icon{
    width:70px;
    height:70px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    background: linear-gradient(135deg, #CE0F2C, #ff4d6d);
    margin: 0 auto 16px;
    box-shadow:0 10px 25px rgba(206,15,44,0.3);
}

/* SVG STYLE */
.feature-card .icon svg{
    width:32px;
    height:32px;
    stroke:#fff;
    fill:none;
    stroke-width:2;
}

/* HOVER ICON ANIMATION */
.feature-card:hover .icon{
    transform: scale(1.1) rotate(6deg);
    transition:0.3s ease;
}

/* =========================================
   TEXT
========================================= */
.feature-card h4{   
    font-weight:600;
    margin-bottom:10px;
    color:#111;
    font-family: 'Anton', sans-serif;
    color:#CE0F2C;
    font-size:clamp(10px,4vw,17px);    
}

.feature-card p{
    font-size:14px;
    color:#555;
    line-height:1.6;
    
}

/* =========================================
   MOBILE
========================================= */
@media (max-width:480px){
    .feature-card{
        padding:18px;
    }
}

/* =====================================
   REVIEWS CTA SECTION
===================================== */
.reviews-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 */
.reviews-cta-container{
    max-width:1150px;
    margin:auto;
    text-align:center;
    position:relative;
    z-index:2;
}

/* HEADER */
.reviews-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 */
.reviews-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 */
.reviews-cta-content p{
    font-size: 18px;
    font-family: calibri;
    color:rgba(255,255,255,0.85);
    line-height:1.7;
    margin-bottom:18px;
}

/* LINKS */
.reviews-cta-content a{
    color:#CE0F2C;
    font-weight:600;
    text-decoration:none;
    position:relative;
}

/* underline hover effect */
.reviews-cta-content a::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-3px;
    width:0%;
    height:2px;
    background:#ff4d6d;
    transition:0.3s ease;
}

.reviews-cta-content a:hover::after{
    width:100%;
}

/* =========================================
   CONTACT BUTTON
========================================= */
.reviews-cta-wrapper{
    margin-top:28px;
    text-align: center;
}

.reviews-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;
}

.reviews-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;
}

.reviews-cta-button:hover::before {
    left: 120%;
}

.reviews-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){
    .reviews-cta-section{
        padding:70px 15px;
    }

    .reviews-cta-content{
        padding:25px 20px;
    }

    .reviews-cta-header h3{
        font-size:26px;
    }
}