/* =======================================================
   FAQ HERO SECTION
   PREMIUM MODERN UI STYLE
========================================================= */

.faq-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
========================================= */

.faq-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
========================================= */

.faq-hero-container{
    width:100%;
    max-width:1200px;
    margin:auto;
    position:relative;
    z-index:2;
}

/* =========================================
   CONTENT
========================================= */

.faq-hero-content{
    text-align:center;
    color:#ffffff;
    animation:faqHeroFadeUp 1s ease forwards;
    opacity:0;
}

/* =========================================
   TITLE
========================================= */

.faq-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
========================================= */

.faq-hero-divider{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:12px;
}

/* =========================================
   LINE
========================================= */

.faq-hero-line{
    width:160px;
    height:14px;
    border-radius:20px;
    background:#ffffff;
    opacity:.7;
    position:relative;
    overflow:hidden;
}

.faq-hero-line::before{
    content:"";
    position:absolute;
    inset:0;
    background:#CE0F2C;
    animation:faqLineMove 2s linear infinite;
}

/* =========================================
   ICON
========================================= */

.faq-hero-icon{
    width:18px;
    height:18px;
    display:flex;
    animation:faqHeroPulse 2s ease infinite;
}

.faq-hero-icon svg{
    fill:#CE0F2C;
    width:100%;
    height:100%;
    filter:drop-shadow(0 0 10px rgba(206,15,44,0.5));
}

/* =========================================
   ANIMATIONS
========================================= */

@keyframes faqHeroFadeUp{

    from{
        transform:translateY(40px);
        opacity:0;
    }

    to{
        transform:translateY(0);
        opacity:1;
    }

}

@keyframes faqLineMove{

    0%{
        transform:translateX(-100%);
    }

    100%{
        transform:translateX(100%);
    }

}

@keyframes faqHeroPulse{

    0%,100%{
        transform:scale(1);
    }

    50%{
        transform:scale(1.2);
    }

}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width:768px){

    .faq-hero-title{
        font-size:28px;
    }

    .faq-hero-section{
        padding:60px 15px;
    }

    .faq-hero-line{
        width:70px;
    }

}

@media (max-width:480px){

    .faq-hero-title{
        font-size:24px;
        line-height:1.4;
    }

    .faq-hero-line{
        width:40px;
    }

    .faq-hero-divider{
        gap:8px;
    }

}


/* =========================================
   FAQ ABOUT SECTION STYLE  
========================================= */

.faq-about-section{
    position:relative;
    padding:clamp(10px,8vw,15px) 20px;
    overflow:hidden;
}

/* Background */
.faq-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 */
.faq-about-section::after{
    content:"";
    position:absolute;
    inset:0;
    background: rgba(255,255,255,0.85);
    z-index:-1;
}

.faq-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
========================================= */

.faq-about-content{
    display:flex;
    flex-direction:column;
    justify-content:center;
    font-family:calibri;
}

.faq-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;
}

.faq-about-content p{
    color:rgba(17,17,17,0.92);
    font-size:18px;
    font-weight:500;
    line-height:1.75;
    margin-bottom:5px;
}

.faq-about-content p a {
    text-decoration: none;
    color: #CE0F2C;
}


/* =========================================
   CONTACT BUTTON
========================================= */
.faq-about-cta-wrapper{
    margin-top:28px;
}

.faq-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;
}

.faq-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;
}

.faq-about-cta-button:hover::before {
    left: 120%;
}

.faq-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
========================================= */

.faq-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;
}

.faq-about-form-box:hover{
    transform:translateY(-4px);
    box-shadow:0 30px 70px rgba(0,0,0,.35);
}

/* TITLE */
.faq-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 */
.faq-about-form-box .wpcf7,
.faq-about-form-box .wpcf7-form,
.faq-about-form-box .wpcf7-form p{
    margin:0 !important;
    padding:0 !important;
}

/* Remove line breaks */
.wpcf7-form br{
    display:none;
}

/* Remove bottom gap */
.faq-about-form-box .wpcf7-form > p:last-child{
    margin-bottom:0 !important;
}

/* Response message */
.faq-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){

    .faq-about-container{
        grid-template-columns:1fr;
    }

    .faq-about-form-box{
        max-width:600px;
        margin:0 auto;
    }

    .faq-about-content{
        text-align:center;
        align-items:center;
    }

}

@media (max-width:576px){

    .faq-about-section{
        padding:60px 15px;
    }

    .faq-about-content h2{
        font-size:1.9rem;
    }

    .faq-about-form-box{
        padding:24px;
        border-radius:14px;
    }

    .faq-about-form-title{
        font-size:1rem;
        padding:12px;
    }

}


/* ===============================
   QUICK LINKS SECTION
================================= */

.quick-links-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

/* Title */
.quick-links-title {
    font-family: 'Anton', sans-serif;
    color:#CE0F2C;
    font-size:clamp(20px,4vw,30px);
    font-weight:800;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
}

.quick-links-title::after {
    content: "";
    display: block;
    width: 60%;
    height: 3px;
    background: #CE0F2C;
    margin: 8px auto 0;
    border-radius: 2px;
}

/* ===============================
   WRAPPER (BACKGROUND)
================================= */

.quick-links-wrapper {
    background: url('../images/video-section.webp') center/cover no-repeat;
    padding: 40px 20px;
    border-radius: 12px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

/* ===============================
   CARD STYLE
================================= */

.quick-links-card {
    background: #f1f1f1;
    padding: 15px 10px;
    border-radius: 12px;
    text-decoration: none;
    color: #000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.35s ease;
}

/* Hover glow (safe) */
.quick-links-card:hover {
    transform: translateY(-6px);
    background: #fff;

    box-shadow: 
        0 10px 25px rgba(0,0,0,0.15),
        0 0 15px rgba(255,122,0,0.6);
}

/* ===============================
   ICON + PULSE
================================= */

.quick-links-card .icon {
    width: 50px;
    height: 50px;
    background: #CE0F2C;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 12px;
    position: relative;
}

/* Pulse effect */
.quick-links-card .icon::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(255,122,0,0.4);

    animation: pulse 2s infinite;
}

/* Faster on hover */
.quick-links-card:hover .icon::after {
    animation: pulse 1s infinite;
}

/* Text */
.quick-links-card h3 {
    font-family: calibri;
    text-align: center;
    font-size: clamp(16px, 2vw, 18px);
    font-weight: 600;
}

/* ===============================
   ANIMATION
================================= */

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }
    70% {
        transform: scale(1.6);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 0;
    }
}

/* ===============================
   RESPONSIVE
================================= */

@media (max-width: 768px) {
    .quick-links-wrapper {
        padding: 30px 15px;
    }
}

@media (max-width: 480px) {
    .quick-links-section {
        padding: 40px 15px;
    }

    .quick-links-card {
        padding: 20px 15px;
    }
}




/* =====================================
   FAQ NY SECTION
===================================== */

/* Background */
.faq-ny {
    padding: 20px 20px;
    background: linear-gradient(180deg, #0a0a0a 0%, #111111 70%, #CE0F2C 140%);
    position: relative;
}

/* subtle glow effect */
.faq-ny::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(59,130,246,0.3), transparent);
    top: -100px;
    right: -100px;
    filter: blur(100px);
}

/* Container */
.faq-ny-container {
    max-width: 1200px;
    margin: auto;
    position: relative;
    z-index: 2;
}

/* Title */
.faq-ny-title {
    font-family: 'Anton', sans-serif;
    color:#CE0F2C;
    font-size:clamp(20px,4vw,30px);
    font-weight:800;
    text-align: center;
    margin-bottom: 50px;
}

.faq-ny-title span {
    display: block;
    font-size: 16px;
    color: #f1f1f1;
    margin-top: 20px;
    line-height:1.75;
}

/* FAQ Card (Glassmorphism) */
.faq-ny-item {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    margin-bottom: 15px;
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
}

.faq-ny-item:hover {
    border-color: rgba(59,130,246,0.5);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* Question */
.faq-ny-question {
    width: 100%;
    padding: 20px;
    background: none;
    border: none;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    position: relative;
}

/* Icon */
.faq-ny-question::after {
    content: "+";
    position: absolute;
    right: 20px;
    font-size: 22px;
    color: #3b82f6;
}

.faq-ny-item.active .faq-ny-question::after {
    content: "–";
}

/* Answer */
.faq-ny-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
}

.faq-ny-answer p {
    padding: 0 20px 20px;
    color: #d1d1d1;
    font-family: calibri;
    line-height: 1.7;
    font-size: 15.5px;
}

/* Active */
.faq-ny-item.active {
    background: rgba(59,130,246,0.15);
}

/* =====================================
   FAQ CTA SECTION
===================================== */
.faq-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 */
.faq-cta-container{
    max-width:1150px;
    margin:auto;
    text-align:center;
    position:relative;
    z-index:2;
}

/* HEADER */
.faq-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 */
.faq-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 */
.faq-cta-content p{
    font-size: 18px;
    font-family: calibri;
    color:rgba(255,255,255,0.85);
    line-height:1.7;
    margin-bottom:18px;
}

/* LINKS */
.faq-cta-content a{
    color:#CE0F2C;
    font-weight:600;
    text-decoration:none;
    position:relative;
}

/* underline hover effect */
.faq-cta-content a::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-3px;
    width:0%;
    height:2px;
    background:#ff4d6d;
    transition:0.3s ease;
}

.faq-cta-content a:hover::after{
    width:100%;
}

/* =========================================
   CONTACT BUTTON
========================================= */
.faq-cta-wrapper{
    margin-top:28px;
    text-align: center;
}

.faq-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;
}

.faq-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;
}

.faq-cta-button:hover::before {
    left: 120%;
}

.faq-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){
    .faq-cta-section{
        padding:70px 15px;
    }

    .faq-cta-content{
        padding:25px 20px;
    }

    .faq-cta-header h3{
        font-size:26px;
    }
}