/*
Theme Name: Pro Theme1
Author: You
Version: 1.0
*/

/* =========================
   RESET
========================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

html,
body{
    width:100%;
    min-height:100%;
    overflow-x:hidden;
    overflow-y:auto;
}

body{
    background:#0f2d5c;
    color:#ffffff;
    font-family:Arial,sans-serif;
    line-height:1.6;
}

a{
    text-decoration:none;
    color:#1E293B;
}

img{
    max-width:100%;
    display:block;
}

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

.header{
    width:100%;
    position:fixed;
    top:0;
    left:0;
    z-index:999;
    background:rgba(2,8,23,.85);
    backdrop-filter:blur(10px);
    border-bottom:1px solid rgba(255,255,255,.05);
}

.navbar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:50px 60px;
}

/* LOGO */

.logo{
    display:flex;
	flex-direction:column;
    align-items:center;
	text-align:center;
    gap:2px;
}

.logo a{
    display:flex;
    align-items:center;
    gap:12px;
}
.logo h2{
    color:#2563eb;
    font-size:26px;
    font-weight:700;
	line-height:1;
}

.logo-text p{
    color:#94a3b8;
    font-size:11px;
    letter-spacing:2px;
    margin:0;
}

/* MENU */

.menu{
    display:flex;
    gap:35px;
}

.menu a{
    color:white;
    font-size:14px;
    position:relative;
    transition:.3s;
}

.menu a::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-8px;
    width:0;
    height:2px;
    background:#2563eb;
    transition:.3s;
}

.menu a:hover::after{
    width:100%;
}

/* BUTTON */

.header-btn{
    background:#2563eb;
    padding:14px 24px;
    border-radius:8px;
    transition:.3s;
}

.header-btn:hover{
    background:#1d4ed8;
    transform:translateY(-2px);
}


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

.hero{
    width:100%;
    min-height:100vh;
    display:flex;
    align-items:center;
    padding:180px 60px 90px;

    background:
    linear-gradient(
        90deg,
        rgba(2,8,23,.92) 0%,
        rgba(2,8,23,.78) 42%,
        rgba(2,8,23,.35) 100%
    ),
    url('https://qtdiecast.id.vn/wp-content/uploads/2026/05/551ae010-ab73-48b7-86eb-29c62dd43de3-4-e1780374335418.png');

    background-size:58%;
    background-repeat:no-repeat;
    background-position:right 52%;
}
.hero-content{
    max-width:620px;
}

.hero h1{
    font-size:32px;
    line-height:1.15;
    margin-bottom:15px;
    font-weight:700;
    color:#ffffff;
}

.hero p{
    font-size:15px;
    color:#e2e8f0;
    line-height:1.75;
    margin-bottom:34px;
}
.hero-buttons{
    display:flex;
    gap:30px;
    flex-wrap:wrap;
}

.btn-primary{
    background:#2563eb;
    color:#ffffff !important;
    padding:14px 28px;
    border-radius:10px;
    font-size:16px;
    font-weight:700;
    transition:.3s;
    line-height:1.3;
}

.btn-primary:hover{
    background:#1d4ed8;
    color:#ffffff !important;
    transform:translateY(-3px);
}

.btn-outline{
    border:2px solid #ffffff;
    color:#ffffff !important;
    padding:14px 28px;
    border-radius:10px;
    font-size:16px;
    font-weight:700;
    transition:.3s;
    line-height:1.3;
}

.btn-outline:hover{
    background:#ffffff;
    color:#020817 !important;
    transform:translateY(-3px);
}
/* =========================
   FEATURES
========================= */

.features{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
    padding:60px;
    background:#020817;
}

.feature-box{
    padding:30px;
    border:1px solid rgba(255,255,255,.05);
    border-radius:16px;
    background:#081120;
    transition:.3s;
}

.feature-box:hover{
    transform:translateY(-5px);
}

.feature-box h3{
    margin-bottom:15px;
    color:#2563eb;
}

.feature-box p{
    color:#94a3b8;
}

/* =========================
   SERVICES
========================= */

.services{
    padding:100px 60px;
}

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

.service-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:30px;
}

.service-card{
    border-radius:20px;
    overflow:visible;
    transition:.3s;
    background:transparent;
    border:none;
}

.service-card:hover{
    transform:translateY(-5px);
}

.service-card img{
    width:100%;
    height:auto !important;
    display:block;
    border-radius:20px;
}

.service-content{
    padding:30px;
}

.service-content h3{
    margin-bottom:15px;
}

.service-content p{
    color:#94a3b8;
}

@media(max-width:768px){

    .services{
        padding:60px 20px;
    }

    .service-grid{
        grid-template-columns:1fr;
        gap:20px;
    }

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

.footer{
    width:100%;
    background:#020617;
    margin-top:100px;
    border-top:1px solid #1e293b;
}

.footer-grid{
    display:grid;
    grid-template-columns:1.5fr 1fr 1fr 1fr;
    gap:40px;
    padding:70px 60px;
}

.footer-box h3{
    margin-bottom:20px;
    color:#ffffff;
}

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

.footer-box p,
.footer-box li,
.footer-box a{
    color:#94a3b8;
    line-height:1.9;
    font-size:15px;
    transition:.3s;
}

.footer-box a:hover{
    color:#ffffff;
    padding-left:5px;
}

.footer-logo{
    display:flex;
    align-items:center;
    gap:14px;
    margin-bottom:20px;
}

.footer-logo img{
    width:42px;
    height:42px;
    object-fit:contain;
}

.footer-logo h2{
    color:#2563eb;
    font-size:24px;
    line-height:1.1;
}

.footer-logo p{
    color:#94a3b8;
    font-size:10px;
    letter-spacing:2px;
    margin-top:4px;
}

.footer-desc{
    margin-bottom:20px;
}

.footer-social{
    display:flex;
    flex-direction:row;
    align-items:center;
    gap:10px;
    margin-top:20px;
    flex-wrap:nowrap;
}

.footer-social a{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:8px 12px;
    border-radius:8px;
    background:#081120;
    color:#cbd5e1;
    border:1px solid rgba(255,255,255,.05);
    transition:.3s;
    white-space:nowrap;
    font-size:14px;
}

.footer-social a:hover{
    background:#2563eb;
    color:#ffffff;
    transform:translateY(-3px);
    padding-left:12px;
}

.footer-bottom{
    border-top:1px solid #1e293b;
    padding:24px 60px;
    background:#020817;
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
    gap:20px;
}

.footer-bottom p{
    margin:0;
    color:#cbd5e1;
    font-size:14px;
    line-height:1.6;
}

.footer-credit span{
    color:#2563eb;
    font-weight:600;
}

@media(max-width:1000px){
    .footer-grid{
        grid-template-columns:1fr 1fr;
    }

    .hero h1{
        font-size:22px;
    }
}

@media(max-width:768px){
    .footer{
        margin-top:60px;
    }

    .footer-grid{
        grid-template-columns:1fr;
        gap:25px;
        padding:40px 20px;
    }

    .footer-social{
        flex-wrap:wrap;
    }

    .footer-bottom{
        padding:20px;
        flex-direction:column;
        text-align:center;
    }

    .section-title{
        font-size:25px;
    }

    .header-btn{
        display:none;
    }

    .hero-buttons{
        flex-direction:column;
        gap:15px;
    }

    .btn-primary,
    .btn-outline{
        width:100%;
        text-align:center;
        font-size:16px;
        padding:16px 20px;
    }
}
/* XÓA BULLET TRẮNG */
.quick-info li::marker{
    display:none;
}
.footer-bottom{
    width:100%;
    text-align:center;
    padding:20px 10px;
    background:#020817;
    border-top:1px solid rgba(255,255,255,0.08);
}

.footer-bottom p{
    margin:6px 0;
    color:#94a3b8;
    font-size:14px;
}

.footer-credit span{
    color:#1e90ff;
    font-weight:600;
}
.footer-bottom{
    width:100%;
    text-align:center;
    padding:20px 10px;
    background:#020817;
    border-top:1px solid rgba(255,255,255,0.08);
}

.footer-bottom p{
    margin:6px 0;
    font-size:14px;
    font-weight:400;
    color:#cbd5e1;
    line-height:1.6;
    letter-spacing:0.3px;
}

.footer-credit{
    color:#cbd5e1;
}

.footer-credit span{
    color:#cbd5e1;
    font-weight:400;
}
.zalo-icon{
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
}

.zalo-icon img{
    width: 24px;
    height: 24px;
    object-fit: contain;
}
.qt-logo{font-size:26px;font-weight:700;color:#2f7bff;}
.qt-sub{font-size:12px;letter-spacing:2px;color:#aaa;}
.qt-footer{display:flex;flex-wrap:wrap;gap:20px;background:#0d0f14;color:#fff;padding:40px;}
.qt-footer .col{flex:1;min-width:150px;}

.page-section{
    min-height:70vh;
    padding:240px 60px 100px;
    background:#0f2d5c;
    color:#ffffff;
}

.page-container{
    max-width:1180px;
    margin:0 auto;
}

.page-container h1{
    color:#ffffff;
    font-size:42px;
    margin-bottom:25px;
}

.page-container p{
    color:#cbd5e1;
    font-size:18px;
    line-height:1.8;
    margin-bottom:18px;
}

@media(max-width:768px){
    .page-section{
        padding:170px 20px 70px;
    }

    .page-container h1{
        font-size:32px;
    }

    .page-container p{
        font-size:16px;
    }
}
.header{
    min-height:auto !important;
}

.navbar{
    min-height:auto !important;
    padding:22px 60px !important;
}

.logo img{
    width:80px !important;
    height:80px !important;
}
html{
    height:auto !important;
    min-height:100% !important;
    overflow-y:scroll !important;
    overflow-x:hidden !important;
}

body{
    height:auto !important;
    min-height:100% !important;
    overflow-y:auto !important;
    overflow-x:hidden !important;
    position:relative !important;
}
.home-map-section{
    width:100%;
    padding:70px 60px;
    background:#0f2d5c;
}

.home-map-grid{
    width:100%;
    max-width:1180px;
    margin:0 auto;
    display:flex;
    gap:24px;
}

.home-map-card{
    width:50%;
}

.home-map-card h3{
    margin-bottom:12px;
    color:#ffffff;
    font-size:18px;
}

.home-map-card iframe{
    width:100%;
    height:300px;
    display:block;
    border:0;
    border-radius:12px;
}

@media(max-width:768px){
    .home-map-section{
        padding:45px 20px;
    }

    .home-map-grid{
        display:flex;
        flex-direction:column;
        gap:22px;
    }

    .home-map-card{
        width:100%;
    }

    .home-map-card iframe{
        height:260px;
    }
}
@media(max-width:768px){
    .hero h1{
        font-size:18px !important;
        line-height:1.2 !important;
    }
}
@media(max-width:768px){
    .hero p{
        font-size:11px !important;
        line-height:1.6 !important;
        margin-bottom:18px !important;
    }
}
/* RESPONSIVE HEADER + HERO FIX */

/* PC lớn */
@media (min-width:1600px){
    .navbar{
        padding:45px 80px !important;
    }

    .logo img{
        width:110px !important;
        height:110px !important;
    }

    .logo h2{
        font-size:30px !important;
    }

    .menu a{
        font-size:16px !important;
    }

    .hero h1{
        font-size:46px !important;
    }
}

/* Laptop */
@media (min-width:1025px) and (max-width:1599px){
    .navbar{
        padding:20px 50px !important;
    }

    .logo img{
        width:72px !important;
        height:72px !important;
    }

    .logo h2{
        font-size:24px !important;
    }

    .menu{
        gap:26px !important;
    }

    .menu a{
        font-size:13px !important;
    }

    .hero h1{
        font-size:28px !important;
    }
}

/* MOBILE */
@media (max-width:768px){

.navbar{
    padding:14px 18px !important;
    flex-direction:column !important;
    align-items:center !important;
    justify-content:center !important;
    gap:12px !important;
}

.logo{
    width:100%;
    justify-content:center;
}

.logo img{
    width:56px !important;
    height:56px !important;
}

.logo h2{
    font-size:18px !important;
}

.logo-text p{
    font-size:8px !important;
    letter-spacing:1px !important;
}

/* HIỆN MENU MOBILE */
.menu{
    display:flex !important;
    flex-wrap:wrap !important;
    justify-content:center !important;
    align-items:center !important;
    gap:10px 14px !important;
    width:100% !important;
    margin-top:10px !important;
}

.menu a{
    font-size:12px !important;
    color:#fff !important;
    font-weight:600 !important;
    padding:4px 6px !important;
}

.hero{
    padding:220px 20px 70px !important;
    background-size:90% !important;
    background-position:center bottom !important;
}

.hero h1{
    font-size:28px !important;
    line-height:1.2 !important;
}

.hero p{
    font-size:14px !important;
}

.services{
    padding:60px 20px !important;
}

.service-grid{
    grid-template-columns:1fr !important;
    gap:20px !important;
}

.service-card img{
    width:100% !important;
    height:auto !important;
    display:block !important;
    border-radius:20px !important;
}

.home-map-inline{
    padding:45px 20px !important;
}

.home-map-inline-grid{
    flex-direction:column !important;
}

.home-map-inline-card{
    width:100% !important;
}

.footer-grid{
    grid-template-columns:1fr !important;
}

}

/* FIX HEADER PC - DÁN CUỐI FILE */
@media screen and (min-width:1025px){
    body .header .navbar{
        height:150px !important;
        min-height:150px !important;
        padding:0 80px !important;
        display:flex !important;
        align-items:center !important;
    }

    body .header .logo img{
        width:105px !important;
        height:105px !important;
    }

    body .header .logo h2{
        font-size:30px !important;
    }

    body .header .menu a{
        font-size:16px !important;
    }
}
@media screen and (max-width:768px){
    body .header .navbar .menu{
        display:flex !important;
        visibility:visible !important;
        opacity:1 !important;
        height:auto !important;
        flex-wrap:wrap !important;
        justify-content:center !important;
        gap:10px !important;
        width:100% !important;
    }

    body .header .navbar .menu a{
        display:inline-block !important;
        color:#ffffff !important;
        font-size:12px !important;
        padding:5px 6px !important;
    }
}

/* =========================
   FIX MENU 5 MỤC - PC + MOBILE
========================= */

@media screen and (min-width:1025px){
    body .header .navbar{
        height:150px !important;
        min-height:150px !important;
        padding:0 80px !important;
        display:flex !important;
        align-items:center !important;
        justify-content:space-between !important;
    }

    body .header .menu{
        display:flex !important;
        align-items:center !important;
        justify-content:flex-end !important;
        gap:32px !important;
        flex-wrap:nowrap !important;
    }

    body .header .menu a{
        color:#ffffff !important;
        font-size:16px !important;
        font-weight:600 !important;
        white-space:nowrap !important;
    }
}

@media screen and (max-width:768px){
    body .header .navbar{
        flex-direction:column !important;
        align-items:center !important;
        justify-content:center !important;
        padding:10px 12px !important;
        gap:8px !important;
        height:auto !important;
        min-height:auto !important;
    }

    body .header .logo img{
        width:52px !important;
        height:52px !important;
    }

    body .header .logo h2{
        font-size:17px !important;
    }

    body .header .logo-text p{
        font-size:8px !important;
        letter-spacing:1px !important;
    }

    body .header .menu{
        display:flex !important;
        flex-wrap:wrap !important;
        align-items:center !important;
        justify-content:center !important;
        width:100% !important;
        gap:6px 10px !important;
        margin-top:4px !important;
    }

    body .header .menu a{
        display:inline-block !important;
        color:#ffffff !important;
        font-size:11px !important;
        font-weight:600 !important;
        padding:3px 5px !important;
        line-height:1.2 !important;
        white-space:nowrap !important;
    }

    body .header .menu a::after{
        display:none !important;
    }

    body .hero{
        padding-top:165px !important;
    }
}
.footer-social img{ width:28px; height:28px; object-fit:contain; display:block; } .footer-social a{ width:46px; height:46px; display:flex; align-items:center; justify-content:center; border-radius:50%; }

.footer-social a{
    width:45px !important;
    height:45px !important;
    display:flex !important;
    align-items:center !important;
    justify-content:center !important;
    border-radius:50% !important;
}

.footer-social i{
    font-size:22px !important;
}

.footer-social .fa-facebook-f{
    color:#1877f2;
}

.footer-social .fa-youtube{
    color:#ff0000;
}

.footer-social .fa-comment-dots{
    color:#0068ff;
}
.footer-social{
    display:flex !important;
    flex-direction:row !important;
    align-items:center !important;
    justify-content:flex-start !important;
    gap:12px !important;
    flex-wrap:nowrap !important;
}

.footer-social a{
    width:42px !important;
    height:42px !important;
    min-width:42px !important;
    min-height:42px !important;
    padding:0 !important;
    display:flex !important;
    align-items:center !important;
    justify-content:center !important;
    border-radius:50% !important;
}

.footer-social i{
    font-size:20px !important;
}
.live-viewers{
    position:fixed;
    left:18px;
    bottom:18px;
    z-index:99999;
    background:rgba(2,8,23,.9);
    color:#ffffff;
    padding:10px 16px;
    border-radius:999px;
    font-size:14px;
    display:flex;
    align-items:center;
    gap:6px;
    box-shadow:0 8px 22px rgba(0,0,0,.25);
    border:1px solid rgba(255,255,255,.12);
}
.live-viewers{
    position:fixed;
    left:15px;
    bottom:15px;
    background:#081120;
    color:#fff;
    padding:10px 15px;
    border-radius:50px;
    font-size:13px;
    z-index:99999;
    box-shadow:0 4px 15px rgba(0,0,0,.3);
}

@media(max-width:768px){
    .live-viewers{
        font-size:11px;
        padding:8px 12px;
    }
}
.viewer-fixed{ position:fixed; left:15px; bottom:20px; z-index:99999; height:40px; padding:0 16px; display:flex; align-items:center; justify-content:center; border-radius:50px; background:linear-gradient(135deg,#0068ff,#00aaff); color:#ffffff; font-size:13px; font-weight:600; box-shadow:0 8px 20px rgba(0,104,255,.35); } @media(max-width:768px){ .viewer-fixed{ left:10px; bottom:10px; height:34px; font-size:11px; padding:0 12px; } }

.image-modal{ display:none; position:fixed; left:0; top:0; width:100%; height:100%; background:rgba(0,0,0,.85); z-index:999999; justify-content:center; align-items:center; padding:20px; } .image-modal img{ max-width:90%; max-height:90%; border-radius:12px; } .image-close{ position:absolute; top:20px; right:30px; color:#fff; font-size:40px; cursor:pointer; }