/*!
Theme Name: Nocodevn.
Theme URI: https://nocodevn.dev.
Author: liendai.
Description: Theme build by Nocodevn.
Version: 2026.
License: RNQR6-67XM2-Y9V4R-7HQQH-94QB4.
*/



/**
 * NukeViet Content Management System
 * @version 4.x
 * @author VINADES.,JSC <contact@vinades.vn>
 * @copyright (C) 2009-2021 VINADES.,JSC. All rights reserved
 * @license GNU/GPL version 2 or any later version
 * @see https://github.com/nukeviet The NukeViet CMS GitHub project
 */
 




 :root {
    --primary: #f79321;
    --primary-dark: #d87b15;
    --dark-blue: #0b132b;
    --text-dark: #1c1c1c;
    --text-gray: #6b7280;
    --bg-light: #f9fafb;
    --shadow-soft: 0 20px 40px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 25px 50px rgba(0, 0, 0, 0.1);
    --radius-soft: 16px;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--text-dark);
    background-color: #ffffff;
    -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; transition: 0.3s; }

.section-padding { padding: 100px 0; }

.title-luxury {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark-blue);
    letter-spacing: -1px;
    margin-bottom: 1rem;
}
.subtitle-luxury {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 3rem;
}

/* --- HERO SECTION --- */
.hero-section {
    position: relative;
    height: 80vh;
    min-height: 600px;
    background: url('https://images.unsplash.com/photo-1544620347-c4fd4a3d5957?q=80&w=1920&auto=format&fit=crop') center/cover no-repeat;
    display: flex;
    align-items: center;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(11, 19, 43, 0.9) 0%, rgba(11, 19, 43, 0.4) 100%);
}
.hero-content {
    position: relative;
    z-index: 2;
    color: white;
}
.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -2px;
}

/* --- OVERLAPPING SEARCH FORM --- */
.search-overlap-container {
    margin-top: -100px;
    position: relative;
    z-index: 10;
}
.search-card {
    background: #ffffff;
    border-radius: var(--radius-soft);
    box-shadow: var(--shadow-soft);
    padding: 40px;
    border: 1px solid rgba(0,0,0,0.03);
}
.search-tabs {
    border-bottom: 2px solid #f3f4f6;
    margin-bottom: 30px;
    display: flex;
    gap: 30px;
}
.search-tab {
    padding-bottom: 15px;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--text-gray);
    cursor: pointer;
    position: relative;
}
.search-tab.active {
    color: var(--primary);
}
.search-tab.active::after {
    content: '';
    position: absolute;
    bottom: -2px; left: 0; right: 0;
    height: 2px;
    background: var(--primary);
}

/* --- FEATURES (TẠI SAO CHỌN) --- */
.feature-box {
    padding: 40px;
    border-radius: var(--radius-soft);
    background: var(--bg-light);
    transition: all 0.4s ease;
    height: 100%;
}
.feature-box:hover {
    background: #ffffff;
    box-shadow: var(--shadow-hover);
    transform: translateY(-5px);
}
.feature-icon-wrapper {
    width: 64px;
    height: 64px;
    background: rgba(247, 147, 33, 0.1);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 24px;
}
.feature-box h4 { font-weight: 700; font-size: 1.25rem; margin-bottom: 12px; }
.feature-box p { color: var(--text-gray); line-height: 1.7; margin: 0; }

/* --- DỊCH VỤ NỔI BẬT --- */
.service-card {
    position: relative;
    border-radius: var(--radius-soft);
    overflow: hidden;
    aspect-ratio: 4/5;
    display: block;
}
.service-card img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.service-card:hover img { transform: scale(1.05); }
.service-content {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 40px 30px;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    color: white;
}
.service-content h3 { font-size: 1.5rem; font-weight: 700; margin-bottom: 5px; }

/* --- VĂN PHÒNG (DANH SÁCH MỞ) --- */
.office-list-item {
    display: flex;
    align-items: flex-start;
    padding: 24px 0;
    border-bottom: 1px solid #e5e7eb;
    transition: 0.3s;
}
.office-list-item:last-child { border-bottom: none; }
.office-list-item:hover { padding-left: 10px; }
.office-list-icon {
    font-size: 1.5rem; color: var(--primary); margin-right: 20px; margin-top: 5px;
}
.office-list-content h5 { font-weight: 700; font-size: 1.1rem; color: var(--dark-blue); margin-bottom: 5px; }
.office-list-content p { color: var(--text-gray); margin-bottom: 4px; font-size: 0.95rem; }
.office-list-content .phone { color: var(--text-dark); font-weight: 600; }

/* Nút Bấm */
.btn-luxury {
    background: var(--primary);
    color: white;
    font-weight: 600;
    padding: 12px 32px;
    border-radius: 50px;
    border: none;
    transition: 0.3s;
}
.btn-luxury:hover { background: var(--primary-dark); color: white; transform: translateY(-2px); }

/* --- BTP: Search tabs panels --- */
.search-panels {
    margin-top: 10px;
}

.search-panel {
    display: none;
}

.search-panel.active {
    display: block;
}

.search-tab:focus {
    outline: 2px solid rgba(247, 147, 33, 0.45);
    outline-offset: 4px;
}

/* --- Compact search (home hero) --- */
.btp-compact-search {
    width: 100%;
}

.btp-compact-form {
    display: grid;
    grid-template-columns: 1fr 1fr 240px 160px;
    gap: 16px;
    align-items: end;
}

.btp-compact-field {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 12px 14px;
}

.btp-compact-label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-gray);
    margin-bottom: 6px;
}

.btp-compact-form select,
.btp-compact-form input[type="date"] {
    width: 100%;
    border: none;
    outline: none;
    padding: 0;
    background: transparent;
    font-weight: 700;
    color: var(--dark-blue);
}

.btp-compact-actions {
    display: flex;
    justify-content: stretch;
}

.btp-compact-submit {
    width: 100%;
    height: 52px;
    border-radius: 12px;
    font-weight: 800;
}

@media (max-width: 992px) {
    .btp-compact-form {
        grid-template-columns: 1fr 1fr;
    }
    .btp-compact-actions {
        grid-column: 1 / -1;
    }
}

@media (max-width: 576px) {
    .btp-compact-form {
        grid-template-columns: 1fr;
    }
}
