/* =========================================
   Laptop Hero Trust Line Fix
========================================= */

.laptop-rental-page .hero-trust-line {
    margin-top: 34px;
    padding: 20px 24px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    background: #ffffff;
    border: 1px solid #dfe7f3;
    border-radius: 14px;
    box-shadow: 0 12px 30px rgba(15, 35, 65, 0.08);
}

.laptop-rental-page .hero-trust-line span {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.laptop-rental-page .hero-trust-line strong {
    color: #172033;
    font-size: 16px;
    font-weight: 700;
}

.laptop-rental-page .hero-trust-line small {
    color: #64748b;
    font-size: 14px;
    font-weight: 500;
}

@media (max-width: 600px) {
    .laptop-rental-page .hero-trust-line {
        grid-template-columns: 1fr;
        padding: 18px;
    }
}

/* =========================================
   Laptop Rental Page — FAQ Accordion Fix
========================================= */

.laptop-rental-page .faq-item{
    overflow:hidden;
}

.laptop-rental-page .faq-question{
    position:relative;
    transition:background .25s ease,color .25s ease;
}

.laptop-rental-page .faq-question:hover,
.laptop-rental-page .faq-question:focus{
    background:#f4f8ff;
    outline:none;
}

.laptop-rental-page .faq-question i{
    flex:0 0 auto;
    color:#0057d9;
    font-size:18px;
}

.laptop-rental-page .faq-answer{
    display:block !important;
    max-height:0;
    overflow:hidden;
    padding:0 22px;
    opacity:0;
    visibility:hidden;
    transition:max-height .35s ease,opacity .25s ease,padding .35s ease,visibility .25s ease;
}

.laptop-rental-page .faq-item.active .faq-answer{
    max-height:260px;
    padding:0 22px 20px;
    opacity:1;
    visibility:visible;
}

.laptop-rental-page .faq-answer p{
    margin:0;
}

/* Make the first answer visible even before JavaScript finishes loading */
.laptop-rental-page .faq-item.active .faq-answer{
    display:block !important;
}

/* Slightly stronger active state */
.laptop-rental-page .faq-item.active{
    border-color:#c9dcf8;
    box-shadow:0 12px 28px rgba(0,87,217,.08);
}

.laptop-rental-page .faq-item.active .faq-question{
    color:#0057d9;
    background:#f7faff;
}

/* Footer logo visibility */
.laptop-rental-page .footer-logo{
    width:220px;
    height:auto;
    max-height:88px;
    padding:10px 14px;
    background:#ffffff;
    border-radius:12px;
    filter:none !important;
    object-fit:contain;
}

/* Responsive FAQ */
@media(max-width:700px){
    .laptop-rental-page .faq-question{
        padding:18px;
        font-size:15px;
    }

    .laptop-rental-page .faq-answer,
    .laptop-rental-page .faq-item.active .faq-answer{
        padding-left:18px;
        padding-right:18px;
    }
}

/* =========================================
   Laptop Page — Services Dropdown Navigation
========================================= */

.laptop-rental-page .nav-menu .has-dropdown{
    position:relative;
}

.laptop-rental-page .nav-menu .dropdown-toggle{
    display:flex;
    align-items:center;
    gap:7px;
    padding:28px 0;
    border:0;
    background:transparent;
    color:#13213d;
    font:inherit;
    font-size:15px;
    font-weight:600;
    cursor:pointer;
}

.laptop-rental-page .nav-menu .dropdown-toggle i{
    font-size:11px;
    transition:transform .25s ease;
}

.laptop-rental-page .nav-menu .dropdown-menu{
    position:absolute;
    top:calc(100% - 8px);
    left:50%;
    z-index:1500;
    min-width:245px;
    margin:0;
    padding:10px;
    list-style:none;
    background:#ffffff;
    border:1px solid #e3e9f2;
    border-radius:14px;
    box-shadow:0 18px 45px rgba(15,35,60,.16);
    opacity:0;
    visibility:hidden;
    transform:translate(-50%,12px);
    transition:opacity .22s ease,visibility .22s ease,transform .22s ease;
}

.laptop-rental-page .nav-menu .dropdown-menu li{
    width:100%;
}

.laptop-rental-page .nav-menu .dropdown-menu a{
    display:block;
    padding:11px 13px;
    border-radius:9px;
    color:#1f2937;
    font-size:14px;
    font-weight:600;
    white-space:nowrap;
}

.laptop-rental-page .nav-menu .dropdown-menu a:hover,
.laptop-rental-page .nav-menu .dropdown-menu a.active{
    color:#0057d9;
    background:#eef5ff;
}

.laptop-rental-page .nav-menu .has-dropdown:hover .dropdown-menu,
.laptop-rental-page .nav-menu .has-dropdown:focus-within .dropdown-menu,
.laptop-rental-page .nav-menu .has-dropdown.open .dropdown-menu{
    opacity:1;
    visibility:visible;
    transform:translate(-50%,0);
}

.laptop-rental-page .nav-menu .has-dropdown:hover .dropdown-toggle i,
.laptop-rental-page .nav-menu .has-dropdown:focus-within .dropdown-toggle i,
.laptop-rental-page .nav-menu .has-dropdown.open .dropdown-toggle i{
    transform:rotate(180deg);
}

@media(max-width:1100px){
    .laptop-rental-page .nav-menu .dropdown-menu{
        position:static;
        min-width:0;
        width:100%;
        padding:4px 0 4px 16px;
        border:0;
        border-radius:0;
        box-shadow:none;
        opacity:1;
        visibility:visible;
        transform:none;
        display:none;
        background:transparent;
    }

    .laptop-rental-page .nav-menu .has-dropdown.open .dropdown-menu{
        display:block;
    }

    .laptop-rental-page .nav-menu .dropdown-toggle{
        width:100%;
        justify-content:space-between;
        padding:14px 0;
    }
}


/* =========================================
   FINAL LAPTOP PAGE HEADER & HERO IMAGE FIX
========================================= */

.laptop-rental-page .top-header .top-header-wrapper{
    width:min(1180px, calc(100% - 72px)) !important;
    min-height:48px;
    margin:0 auto !important;
    padding:0 !important;
    display:grid !important;
    grid-template-columns:1fr auto 1fr;
    align-items:center !important;
    gap:28px !important;
}

.laptop-rental-page .top-contact{
    display:inline-flex;
    align-items:center;
    gap:8px;
    color:#fff;
    white-space:nowrap;
}

.laptop-rental-page .top-phone{justify-self:start;}
.laptop-rental-page .top-email{justify-self:center;}
.laptop-rental-page .top-hours{justify-self:end;}

.laptop-rental-page .top-contact i{
    margin:0 !important;
    color:#74a8ff;
}

.laptop-rental-page .hero{
    position:relative;
    padding:88px 0 82px !important;
    background:
        linear-gradient(90deg,
            rgba(0,69,178,.94) 0%,
            rgba(0,69,178,.88) 38%,
            rgba(7,31,69,.54) 67%,
            rgba(7,31,69,.28) 100%),
        url("../images/hero/laptop-rental-hero.webp") center/cover no-repeat !important;
}

.laptop-rental-page .hero-content{
    max-width:760px;
    position:relative;
    z-index:2;
}

.laptop-rental-page .hero h1{
    max-width:760px;
    font-size:clamp(42px,4.8vw,62px);
}

.laptop-rental-page .hero p{
    max-width:700px;
}

@media(max-width:900px){
    .laptop-rental-page .top-header .top-header-wrapper{
        width:min(100% - 40px,1180px) !important;
        grid-template-columns:1fr 1fr;
        row-gap:8px !important;
    }

    .laptop-rental-page .top-phone{justify-self:start;}
    .laptop-rental-page .top-email{justify-self:end;}
    .laptop-rental-page .top-hours{
        grid-column:1 / -1;
        justify-self:center;
    }

    .laptop-rental-page .hero{
        background:
            linear-gradient(90deg,rgba(0,69,178,.94),rgba(7,31,69,.62)),
            url("../images/hero/laptop-rental-hero.webp") center/cover no-repeat !important;
    }
}

@media(max-width:700px){
    .laptop-rental-page .top-header{display:none;}

    .laptop-rental-page .hero{
        padding:64px 0 !important;
        background:
            linear-gradient(rgba(0,69,178,.90),rgba(7,31,69,.82)),
            url("../images/hero/laptop-rental-hero.webp") 62% center/cover no-repeat !important;
    }
}

/* ==========================================================
   FINAL COMPACT SPACING — LAPTOP RENTAL PAGE
========================================================== */

.laptop-rental-page main > section:not(.hero):not(.cta-section){
    padding-top:52px !important;
    padding-bottom:52px !important;
    margin-top:0 !important;
    margin-bottom:0 !important;
    min-height:0 !important;
}

.laptop-rental-page .hero{
    padding-top:68px !important;
    padding-bottom:62px !important;
    margin-bottom:0 !important;
}

.laptop-rental-page .section-heading{
    margin-top:0 !important;
    margin-bottom:26px !important;
    padding-top:0 !important;
    padding-bottom:0 !important;
}

.laptop-rental-page .section-heading .section-label{
    margin-bottom:8px !important;
}

.laptop-rental-page .section-heading h2{
    margin-top:0 !important;
    margin-bottom:9px !important;
}

.laptop-rental-page .section-heading p{
    margin-top:0 !important;
    margin-bottom:0 !important;
}

.laptop-rental-page .intro-grid,
.laptop-rental-page .why-grid{
    gap:46px !important;
}

.laptop-rental-page .config-grid,
.laptop-rental-page .use-grid,
.laptop-rental-page .benefit-panel,
.laptop-rental-page .process-grid{
    gap:18px !important;
}

.laptop-rental-page .config-card{
    padding:24px !important;
}

.laptop-rental-page .use-card,
.laptop-rental-page .benefit-card{
    padding:22px 20px !important;
}

.laptop-rental-page .process-card{
    padding:25px 21px !important;
}

.laptop-rental-page .config-card h3,
.laptop-rental-page .use-card h3,
.laptop-rental-page .benefit-card h3,
.laptop-rental-page .process-card h3{
    margin-bottom:8px !important;
}

.laptop-rental-page .config-card p{
    margin-bottom:14px !important;
}

.laptop-rental-page .intro-image img{
    min-height:410px !important;
}

.laptop-rental-page .feature-list{
    margin-top:22px !important;
    gap:11px !important;
}

.laptop-rental-page .faq-section{
    padding-top:48px !important;
    padding-bottom:48px !important;
}

.laptop-rental-page .faq-list{
    gap:11px !important;
}

.laptop-rental-page .faq-question{
    padding-top:17px !important;
    padding-bottom:17px !important;
}

.laptop-rental-page .cta-section{
    padding-top:58px !important;
    padding-bottom:58px !important;
    margin-top:0 !important;
}

.laptop-rental-page .cta-box h2{
    margin-bottom:12px !important;
}

.laptop-rental-page .cta-box p{
    margin-bottom:26px !important;
}

.laptop-rental-page .footer{
    margin-top:0 !important;
}

@media(max-width:900px){
    .laptop-rental-page main > section:not(.hero):not(.cta-section){
        padding-top:44px !important;
        padding-bottom:44px !important;
    }

    .laptop-rental-page .hero{
        padding-top:58px !important;
        padding-bottom:54px !important;
    }

    .laptop-rental-page .intro-grid,
    .laptop-rental-page .why-grid{
        gap:34px !important;
    }

    .laptop-rental-page .intro-image img{
        min-height:360px !important;
    }
}

@media(max-width:700px){
    .laptop-rental-page main > section:not(.hero):not(.cta-section){
        padding-top:36px !important;
        padding-bottom:36px !important;
    }

    .laptop-rental-page .hero{
        padding-top:50px !important;
        padding-bottom:46px !important;
    }

    .laptop-rental-page .section-heading{
        margin-bottom:20px !important;
    }

    .laptop-rental-page .config-grid,
    .laptop-rental-page .use-grid,
    .laptop-rental-page .benefit-panel,
    .laptop-rental-page .process-grid{
        gap:14px !important;
    }

    .laptop-rental-page .config-card,
    .laptop-rental-page .use-card,
    .laptop-rental-page .benefit-card,
    .laptop-rental-page .process-card{
        padding:20px !important;
    }

    .laptop-rental-page .intro-image img{
        min-height:300px !important;
    }

    .laptop-rental-page .faq-section{
        padding-top:34px !important;
        padding-bottom:34px !important;
    }

    .laptop-rental-page .cta-section{
        padding-top:44px !important;
        padding-bottom:44px !important;
    }
}
