/* ==========================================
   PrintQly Desktop CSS v3.0
   Desktop Only (768px and above)
==========================================*/

@media screen and (min-width:768px){

html{
    scroll-behavior:smooth;
}

body{
    background:#090909;
    color:#fff;
    overflow-x:hidden;
}

/* ==========================================
   CONTAINER
==========================================*/

.container{
    width:92%;
    max-width:1400px;
    margin:0 auto;
}

/* ==========================================
   HIDE MOBILE
==========================================*/

.mobile-menu,
.mobile-nav,
.menu-overlay,
.bottom-nav{
    display:none !important;
}

/* ==========================================
   HEADER
==========================================*/

.header{
    position:sticky;
    top:0;
    z-index:999;
    background:#0d0d0d;
    border-bottom:1px solid #1d1d1d;
    height:82px;
}

.navbar{
    height:82px;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.nav-logo img{
    height:92px;
}

.nav-menu{
    display:flex;
    align-items:center;
    gap:36px;
}

.nav-menu a{
    color:#fff;
    text-decoration:none;
    font-size:16px;
    font-weight:600;
    transition:.3s;
}

.nav-menu a:hover{
    color:#FFD400;
}

.nav-right{
    display:flex;
    align-items:center;
    gap:15px;
}

/* ==========================================
   HERO
==========================================*/

.hero{
    padding:30px 0;
    text-align:center;
}

.hero-content{
    max-width:950px;
    margin:auto;
}

.hero h1{
    font-size:72px;
    line-height:1.08;
    font-weight:800;
    margin-bottom:30px;
}

.hero p{
    max-width:760px;
    margin:0 auto 45px;
    font-size:22px;
    color:#bdbdbd;
    line-height:1.8;
}

.hero-buttons{
    display:flex;
    justify-content:center;
    gap:22px;
}

/* ==========================================
   SECTIONS
==========================================*/

section{
    padding:50px 0;
}

.section-title{
    text-align:center;
    font-size:54px;
    margin-bottom:18px;
}

.section-subtitle{
    text-align:center;
    max-width:780px;
    margin:auto;
    margin-bottom:70px;
    color:#b8b8b8;
    font-size:20px;
    line-height:1.8;
}

/* HOME SEARCH BOX */

.search-box{
    background:#151515;
    border:1px solid #2a2a2a;
    border-radius:24px;
    padding:40px;
}

.search-info{
    margin-bottom:30px;
}

.search-info h3{
    font-size:42px;
    color:#fff;
    font-weight:800;
    margin-bottom:10px;
}

.search-info p{
    color:#9d9d9d;
    font-size:17px;
}

.search-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
    align-items:end;
}

.search-field{
    display:flex;
    flex-direction:column;
}

.search-field label{
    color:#fff;
    margin-bottom:8px;
    font-weight:600;
}

.search-field select{
    width:100%;
    height:58px;
    background:#222;
    color:#fff;
    border:1px solid #333;
    border-radius:14px;
    padding:0 18px;
}

.search-btn{
    display:flex;
    align-items:flex-end;
}

.search-btn button{
    width:100%;
    height:58px;
    background:#FFD400;
    color:#111;
    border:none;
    border-radius:14px;
    font-weight:700;
    cursor:pointer;
}


/* ==========================================
   SERVICE CARDS
==========================================*/

.service-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:35px;
}

.service-card{
    background:#131313;
    border:1px solid #242424;
    border-radius:24px;
    padding:45px;
    transition:.35s;
}

.service-card:hover{
    transform:translateY(-8px);
    border-color:#FFD400;
    box-shadow:0 25px 60px rgba(0,0,0,.45);
}

/* ==========================================
   FEATURES
==========================================*/

.feature-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.feature-card{
    background:#151515;
    border:1px solid #252525;
    border-radius:22px;
    padding:40px;
    text-align:center;
    transition:.35s;
}

.feature-card:hover{
    transform:translateY(-8px);
    border-color:#FFD400;
}

.feature-card h3{
    margin-bottom:18px;
}

.feature-card p{
    color:#b9b9b9;
    line-height:1.8;
}

/* ==========================================
   TIMELINE
==========================================*/

.timeline{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:25px;
}

.timeline-step{
    background:#151515;
    border:1px solid #252525;
    border-radius:20px;
    padding:35px 25px;
    text-align:center;
    transition:.3s;
}

.timeline-step:hover{
    border-color:#FFD400;
    transform:translateY(-6px);
}

/* ==========================================
   FAQ
==========================================*/

.faq-section{
    max-width:1050px;
    margin:auto;
}

.faq-item{
    background:#151515;
    border:1px solid #272727;
    border-radius:18px;
    padding:30px 35px;
    margin-bottom:22px;
    transition:.3s;
}

.faq-item:hover{
    border-color:#FFD400;
    transform:translateY(-4px);
}

.faq-item h3{
    font-size:26px;
    margin-bottom:16px;
}

.faq-item p{
    color:#bdbdbd;
    line-height:1.8;
}

/* ==========================================
   FOOTER
==========================================*/

.footer{
    background:#090909;
    border-top:1px solid #202020;
    padding:45px 0 25px;
    margin-top:30px;
}

.footer-brand{
    text-align:center;
    margin-bottom:40px;
}

/* Footer Left */

.footer-left{
    max-width:420px;
}

/* Logo */

.footer-logo{
    display:inline-block;
    margin-bottom:18px;
}

.footer-logo img{
    width:280px;      /* Change to 240px if needed */
    height:auto;
    display:block;
}

/* Tagline */

.footer-tagline{
    margin:0;
    margin-top:2px;
    color:#9f9f9f;
    font-size:17px;
    line-height:1.8;
}

.footer-social{
    display:flex;
    justify-content:center;
    gap:18px;
    margin:35px 0 50px;
}

.footer-social a{
    width:48px;
    height:48px;
    border-radius:50%;
    background:#1c1c1c;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    transition:.3s;
}

.footer-social a:hover{
    background:#FFD400;
    color:#000;
    transform:translateY(-5px);
}

.footer-links{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:80px;
    max-width:950px;
    margin:0 auto;
}

.footer-links h4{
    color:#FFD400;
    margin-bottom:20px;
    font-size:22px;
}

.footer-links ul{
    margin:0;
    padding:0;
    list-style:none;
}

.footer-links li{
    margin-bottom:14px;
}

.footer-links a{
    color:#d8d8d8;
    text-decoration:none;
    transition:.3s;
}

.footer-links a:hover{
    color:#FFD400;
    padding-left:6px;
}

.footer-bottom{
    margin-top:60px;
    padding-top:25px;
    border-top:1px solid #222;
    text-align:center;
    color:#8c8c8c;
    font-size:15px;
}

/* ==========================================
   COMMON CARDS
==========================================*/

.card,
.service-card,
.feature-card,
.timeline-step,
.search-box,
.faq-item{
    box-shadow:0 10px 35px rgba(0,0,0,.30);
}

/* ==========================================
   BUTTONS
==========================================*/

.btn{
    height:56px;
    padding:0 36px;
    border-radius:14px;
    font-size:16px;
    font-weight:700;
}

/* ==========================================
   TYPOGRAPHY
==========================================*/

h2{
    font-size:48px;
    margin-bottom:20px;
}

h3{
    font-size:28px;
    margin-bottom:18px;
}

}

.welcome-box{

margin-top:30px;

margin-bottom:25px;

padding:18px 25px;

background:#151515;

border-radius:15px;

border:1px solid #262626;

}

.welcome-box h2{

margin:0;

font-size:28px;

font-weight:700;

color:#ffffff;

}

/* ===== FINAL PRINTQLY DESKTOP/MOBILE FIX ===== */

@media screen and (min-width:769px){

.customer-topbar{
    display:flex !important;
}

.header{
    display:block !important;
}

.mobile-menu,
.mobile-nav,
.menu-overlay,
.bottom-nav{
    display:none !important;
}

}

@media screen and (min-width:769px){

main{
    padding-bottom:0 !important;
    margin-bottom:0 !important;
}

main > section:last-child,
.container:last-child{
    margin-bottom:0 !important;
    padding-bottom:20px !important;
}

.footer{
    margin-top:0 !important;
    padding-top:40px !important;
}

}


/* ==========================================
   MOBILE ONLY
==========================================*/

@media screen and (max-width:768px){

/* Hide desktop UI */
.customer-topbar,
.home-btn,
.header,
.navbar,
.nav-menu,
.nav-right,
.desktop-only{
    display:flex !important;
}

/* Show mobile UI */
.mobile-menu,
.mobile-nav,
.bottom-nav,
.mobile-header,
.mobile-only{
    display:block !important;
}

}

/* ==========================================
   CUSTOMER VAULT TOOLBAR
========================================== */

.vault-toolbar{
    display:flex;
    flex-wrap:wrap;
    gap:14px;
    margin:22px 0 30px;
    align-items:center;
}

.vault-toolbar button,
.doc-actions a{
    width:48px;
    height:48px;

    display:flex;
    align-items:center;
    justify-content:center;

    background:#171717;
    border:1px solid #2f2f2f;

    border-radius:14px;

    color:#ffffff;

    font-size:18px;

    transition:.25s ease;

    cursor:pointer;

    text-decoration:none;
}

.vault-toolbar button:hover,
.doc-actions a:hover{

    border-color:#FFD400;

    background:#1f1f1f;

    transform:translateY(-3px);

    box-shadow:0 10px 25px rgba(0,0,0,.35);

}

.vault-toolbar button.active,
.doc-actions a.active{

    border:2px solid #ffffff;

    color:#FFD400;

}

.doc-actions{

    display:flex;

    gap:10px;

    margin-top:18px;

    flex-wrap:wrap;

}

/* ===========================================
   PRINTQLY DESKTOP VAULT TOOLBAR
=========================================== */

@media (min-width:992px){

.desktop-toolbar{

display:grid;

grid-template-columns:repeat(8,60px);

row-gap:18px;

column-gap:16px;

align-items:center;

margin:20px 0 35px;

}

.desktop-toolbar .vault-tool{

width:58px;

height:58px;

font-size:22px;

border-radius:16px;

}

#searchBoxArea{

grid-column:1 / 5;

width:420px;

margin-top:10px;

}

}

/* =====================================================
PRINTQLY DESKTOP FIX v4.0
Append this block at the END of desktop.css
===================================================== */

@media screen and (min-width:768px){

.customer-topbar{
    display:flex !important;
}

body,main,.wrapper,.content,.page-content,.customer-page,
.folder-page,.profile-page,.upload-page,.orders-page,
.settings-page,.document-page,.container{
margin-top:0!important;
padding-top:0!important;
margin-bottom:0!important;
}

.header,.navbar{
margin-bottom:0!important;
}

main>section:first-child,
.page-content>section:first-child{
padding-top:20px!important;
}

.footer{
margin-top:30px!important;
padding-top:60px!important;
}

.header .customer-topbar{
display:flex!important;
position:absolute;
top:20px;
right:20px;
background:transparent;
border:0;
padding:0;
height:auto;
}
}

/* PHP CHANGE REQUIRED:
Move Dashboard + Customer Name HTML into header.php/navbar.
CSS cannot move HTML between containers.
*/



/*=========================================================
  PRINTQLY DESKTOP ENHANCEMENTS
  Add at END of desktop.css
=========================================================*/

@media screen and (min-width:768px){

/* Hero */

.hero{

padding:90px 0 80px;

position:relative;

overflow:hidden;

}

.hero::before{

content:"";

position:absolute;

top:-180px;

right:-180px;

width:420px;

height:420px;

border-radius:50%;

background:rgba(255,212,0,.05);

filter:blur(20px);

}

.hero::after{

content:"";

position:absolute;

bottom:-220px;

left:-180px;

width:380px;

height:380px;

border-radius:50%;

background:rgba(255,212,0,.04);

filter:blur(20px);

}

.hero-content{

position:relative;

z-index:2;

}

.hero h1{

font-size:78px;

font-weight:800;

line-height:1.05;

max-width:1100px;

margin:auto;

}

.hero p{

font-size:22px;

max-width:850px;

margin:35px auto 45px;

line-height:1.9;

}


/*=========================================================*/


section{

padding:70px 0;

}


/*=========================================================*/


.card{

padding:50px;

margin-bottom:40px;

transition:.35s;

}

.card:hover{

transform:translateY(-8px);

}


/*=========================================================*/


.card h2{

font-size:52px;

margin-bottom:25px;

position:relative;

}

.card h2::after{

content:"";

display:block;

width:90px;

height:5px;

background:#FFD400;

margin-top:16px;

border-radius:20px;

}

.card p{

font-size:18px;

line-height:2;

}


/*=========================================================*/


.row{

display:flex;

gap:30px;

align-items:stretch;

margin-top:25px;

}

.col-md-4{

flex:1;

}

.col-md-6{

flex:1;

}


/*=========================================================*/


.icon-card{

padding:45px;

}

.icon-card .icon{

font-size:60px;

margin-bottom:25px;

}

.icon-card h3{

font-size:30px;

margin-bottom:18px;

}

.icon-card p{

font-size:17px;

line-height:1.9;

}


/*=========================================================*/


.business-card{

padding:50px;

}

.business-card h2{

font-size:48px;

}

.business-card ul{

margin-top:25px;

}

.business-card li{

padding:10px 0;

font-size:18px;

}


/*=========================================================*/


.highlight-card{

padding:60px;

}

.highlight-card h2{

font-size:50px;

}

.highlight-card p{

font-size:20px;

}


/*=========================================================*/


.stats-grid{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:30px;

margin-top:40px;

}

.stats-card{

padding:45px 30px;

}


/*=========================================================*/


.compare-row{

display:grid;

grid-template-columns:2fr 1fr 1fr;

gap:20px;

align-items:center;

}


/*=========================================================*/


.timeline{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:25px;

margin-top:40px;

}

.step{

background:#171717;

border:1px solid #292929;

border-radius:20px;

padding:35px;

transition:.3s;

}

.step:hover{

border-color:#FFD400;

transform:translateY(-6px);

}

.step h4{

margin-bottom:15px;

font-size:22px;

}

.step p{

font-size:16px;

line-height:1.8;

}


/*=========================================================*/


.hero-buttons{

justify-content:center;

gap:25px;

margin-top:45px;

}


/*=========================================================*/


footer{

padding:60px 0;

}

footer p{

font-size:17px;

}


/*=========================================================*/


.card:hover,

.business-card:hover,

.icon-card:hover,

.stats-card:hover,

.step:hover{

box-shadow:0 25px 60px rgba(0,0,0,.45);

}

}

/*=========================================================
  SERVICES PAGE - DESKTOP LAYOUT
=========================================================*/

@media (min-width:992px){

    /* Hero */

    .service-hero{
        padding:90px 0 70px;
    }

    .service-hero-card{
        max-width:1200px;
        margin:0 auto;
    }

    /* Standard Sections */

    .service-section,
    .printing-categories,
    .service-highlight{
        padding:90px 0;
    }

    /* Category Grid */

    .category-grid{
        display:grid;
        grid-template-columns:repeat(3,1fr);
        gap:30px;
        margin-top:60px;
    }

    /* Feature Grid */

    .feature-grid{
        display:grid;
        grid-template-columns:repeat(3,1fr);
        gap:25px;
        margin-top:40px;
    }

    .feature-item{
        background:#181818;
        border:1px solid #2d2d2d;
        border-radius:16px;
        padding:20px;
        text-align:center;
        transition:.3s;
    }

    .feature-item:hover{
        border-color:#FFD400;
        transform:translateY(-5px);
    }

    /* Yellow Highlight Sections */

    .highlight-card{
        max-width:1200px;
        margin:auto;
    }

    /* Bottom CTA */

    .service-bottom-card{
        max-width:1000px;
        margin:70px auto 0;
        text-align:center;
    }

    .service-bottom-card p{
        max-width:760px;
        margin:20px auto 35px;
    }

    /* Delivery Cards */

    .service-section .category-card{
        min-height:320px;
    }

    /* Better spacing */

    .section-title{
        margin-bottom:60px;
    }

}

