@import url('https://fonts.googleapis.com/css2?family=Chakra+Petch:ital,wght@0,400;0,500;0,600;0,700;1,700&family=Inter:wght@300;400;600&display=swap');

:root {
    --bg: #0b1212;        
    --bg-card: #141c1c;   
    --primary: #FF6B00;   
    --secondary: #FFD700; 
    --text: #ffffff;
    --text-dim: #999999;
    

    --font-display: 'Chakra Petch', sans-serif; 
    --font-body: 'Inter', sans-serif;       
}

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

html, body { overflow-x: hidden; width: 100%; }
html { scroll-behavior: smooth; font-size: 16px; } 
body { background-color: var(--bg); color: var(--text); font-family: var(--font-body); line-height: 1.6; }
a { text-decoration: none; color: inherit; transition: 0.3s; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.cursor-dot, .cursor-outline { position: fixed; top: 0; left: 0; transform: translate(-50%, -50%); border-radius: 50%; z-index: 9999; pointer-events: none; }
.cursor-dot { width: 8px; height: 8px; background-color: var(--primary); }
.cursor-outline { width: 40px; height: 40px; border: 1px solid rgba(255, 107, 0, 0.5); transition: width 0.2s, height 0.2s; }
body.hovering .cursor-outline { width: 60px; height: 60px; background: rgba(255, 107, 0, 0.1); border-color: var(--primary); }

.navbar { position: fixed; top: 0; width: 100%; padding: 15px 0; z-index: 1000; background: rgba(11, 18, 18, 0.95); backdrop-filter: blur(15px); border-bottom: 1px solid rgba(255,255,255,0.05); }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.nav-flex { display: flex; justify-content: space-between; align-items: center; }


.brand-logo {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.8rem;
    text-transform: uppercase;
    letter-spacing: 1px; 
    font-style: italic; 
    background: linear-gradient(180deg, #FFFFFF 20%, #A0A0A0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 5px rgba(255, 107, 0, 0.6));
}
.dot { background: var(--primary); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }

.nav-links { display: flex; gap: 30px; }
.nav-links a { font-size: 0.9rem; font-weight: 600; text-transform: uppercase; position: relative; }
.nav-links a:hover { color: var(--primary); }

.btn-booking { padding: 8px 25px; border: 1px solid var(--primary); border-radius: 30px; font-weight: 700; color: var(--primary); position: relative; overflow: hidden; }
.btn-booking .btn-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: var(--primary); z-index: -1; transform: translateY(100%); transition: 0.4s; }
.btn-booking:hover { color: #000; }
.btn-booking:hover .btn-bg { transform: translateY(0); }

.menu-btn { display: none; font-size: 1.5rem; color: var(--primary); cursor: pointer; }
.mobile-menu-overlay { position: fixed; top: 0; right: -100%; width: 100%; height: 100vh; background: #000; z-index: 1001; display: flex; flex-direction: column; justify-content: center; align-items: center; transition: 0.4s cubic-bezier(0.77, 0, 0.175, 1); }
.mobile-menu-overlay.active { right: 0; }
.m-link { font-size: 1.8rem; font-weight: 800; margin: 15px 0; color: #fff; text-transform: uppercase; font-family: var(--font-display); }
.close-menu { position: absolute; top: 30px; right: 30px; font-size: 2rem; color: var(--primary); cursor: pointer; }

.hero { height: 100vh; position: relative; display: flex; align-items: center; justify-content: center; overflow: hidden; background-color: var(--bg); padding-top: 80px; }
.hero-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.4; filter: blur(1px); }
.overlay-gradient { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(to bottom, rgba(11,18,18,0.5), rgba(11,18,18,1)); }

.hero-content-wrapper { position: relative; z-index: 2; text-align: center; max-width: 900px; padding: 0 20px; }
.hero-badge { display: inline-block; background: rgba(255,255,255,0.1); padding: 8px 20px; border-radius: 50px; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 2px; border: 1px solid rgba(255,255,255,0.2); margin-bottom: 20px; backdrop-filter: blur(5px); }


.hero-title {
    font-family: var(--font-display);
    font-size: 4.5rem; 
    font-weight: 700;
    text-transform: uppercase;
    background: linear-gradient(180deg, #FFFFFF 20%, #A0A0A0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 20px rgba(255, 107, 0, 0.4));
    margin-bottom: 15px;
    letter-spacing: 2px;
    line-height: 1.2;
    font-style: italic;
}

.hero-subtitle { font-family: var(--font-display); font-size: 2.2rem; font-weight: 700; color: #fff; line-height: 1.2; margin-bottom: 25px; }
.text-gradient { background: linear-gradient(90deg, #FFD700, #FF6B00); -webkit-background-clip: text; -webkit-text-fill-color: transparent; text-shadow: 0 0 20px rgba(255, 107, 0, 0.3); }
.hero-description { font-size: 1.1rem; color: #ccc; max-width: 700px; margin: 0 auto 40px auto; }
.hero-actions { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }

.btn-primary { background: linear-gradient(90deg, #FF6B00, #ff9900); color: #000; padding: 15px 40px; font-weight: 800; border-radius: 50px; box-shadow: 0 10px 30px rgba(255, 107, 0, 0.4); transition: 0.3s; display: inline-flex; align-items: center; gap: 10px; border: none; }
.btn-primary:hover { transform: translateY(-5px); box-shadow: 0 15px 40px rgba(255, 107, 0, 0.6); background: #fff; color: #FF6B00; }
.btn-secondary { background: transparent; border: 2px solid var(--primary); color: var(--primary); padding: 15px 40px; font-weight: 700; border-radius: 50px; transition: 0.3s; display: inline-flex; align-items: center; gap: 10px; }
.btn-secondary:hover { background: var(--primary); color: #000; }

.pulse-anim { animation: pulse 2s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(255, 107, 0, 0.7); } 70% { box-shadow: 0 0 0 15px rgba(255, 107, 0, 0); } 100% { box-shadow: 0 0 0 0 rgba(255, 107, 0, 0); } }

.section-padding { padding: 100px 0; }
.section-header { margin-bottom: 50px; }
.split-text { font-family: var(--font-display); font-size: 3rem; margin-bottom: 10px; word-wrap: break-word; font-weight: 700;}
.section-heading { font-family: var(--font-display); font-size: 3rem; margin-bottom: 20px; word-wrap: break-word; font-weight: 700;}
.accent { color: var(--primary); }
.bg-darker { background: #080808; }

.services-grid-detail { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 30px; }
.detail-card { background: var(--bg-card); border: 1px solid rgba(255,255,255,0.05); border-radius: 16px; padding: 30px; transition: 0.3s; position: relative; overflow: hidden; }
.detail-card:hover { transform: translateY(-10px); border-color: var(--primary); box-shadow: 0 0 30px rgba(255, 107, 0, 0.15); z-index: 5; }
.card-icon { font-size: 2.5rem; color: var(--primary); margin-bottom: 20px; }
.detail-card h3 { font-family: var(--font-display); font-size: 1.5rem; margin-bottom: 10px; font-weight: 700; }
.detail-card .desc { color: #ccc; font-style: italic; margin-bottom: 15px; border-bottom: 1px solid #333; padding-bottom: 15px; }
.card-list li { position: relative; padding-left: 20px; margin-bottom: 8px; color: var(--text-dim); font-size: 0.9rem; }
.card-list li::before { content: '•'; color: var(--primary); position: absolute; left: 0; font-weight: bold; }
.highlight-border { border: 1px solid var(--primary); background: rgba(255, 107, 0, 0.05); }


.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; margin-top: 40px; }
.gallery-item { height: 240px; border-radius: 12px; overflow: hidden; border: 1px solid #333; transition: 0.3s; position: relative; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: 0.6s; }
.gallery-item:hover { border-color: var(--primary); transform: scale(1.02); z-index: 5; }
.gallery-item:hover img { transform: scale(1.1); }


.pricing-layout { display: grid; grid-template-columns: 2fr 1fr; gap: 50px; margin-bottom: 80px; }
.table-wrapper { overflow-x: auto; } 
.price-table { width: 100%; border-collapse: collapse; min-width: 600px; }
.price-table th { text-align: left; padding: 15px; color: var(--primary); border-bottom: 1px solid #333; font-family: var(--font-display); font-weight: 700; }
.price-table td { padding: 15px; border-bottom: 1px solid #222; color: #aaa; }
.price-col { color: #fff !important; font-weight: bold; }

.promo-box { background: linear-gradient(145deg, #1a1a1a, #000); border: 1px solid var(--primary); border-radius: 20px; padding: 40px 30px; text-align: center; position: sticky; top: 100px; }
.promo-badge { display: inline-block; background: rgba(255, 215, 0, 0.2); color: #FFD700; padding: 5px 15px; border-radius: 20px; font-size: 0.8rem; font-weight: bold; margin-bottom: 20px; }
.btn-zalo { display: block; width: 100%; padding: 12px; background: #0088ff; color: white; font-weight: bold; border-radius: 8px; margin-top: 20px; box-shadow: 0 5px 15px rgba(0, 136, 255, 0.3); }
.promo-footer { margin-top: 20px; text-align: left; font-size: 0.9rem; color: #888; }
.promo-footer li i { color: var(--primary); margin-right: 8px; }

.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 40px; }
.process-step { background: var(--bg-card); padding: 25px; border-radius: 12px; border: 1px solid #333; position: relative; }
.step-num { width: 40px; height: 40px; background: var(--primary); color: #000; font-weight: 800; display: flex; align-items: center; justify-content: center; border-radius: 50%; margin-bottom: 15px; font-size: 1.2rem; }


.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; margin-top: 30px; }
.review-card { background: #111; padding: 25px; border-radius: 12px; border: 1px solid #333; transition: 0.3s; }
.review-card:hover { border-color: var(--primary); transform: translateY(-5px); box-shadow: 0 5px 20px rgba(255, 107, 0, 0.1); }
.stars { color: #FFD700; margin-bottom: 10px; }
.review-text { font-style: italic; color: #ccc; margin-bottom: 15px; }
.review-author { color: var(--primary); font-weight: 700; }

.faq-section { margin-top: 60px; }
.faq-item { border-bottom: 1px solid #333; margin-bottom: 10px; }
.faq-question { width: 100%; padding: 15px 0; background: none; border: none; color: #fff; font-size: 1.1rem; text-align: left; cursor: pointer; display: flex; justify-content: space-between; }
.faq-answer { max-height: 0; overflow: hidden; transition: 0.3s; color: #999; padding-right: 20px; }
.faq-item.active .faq-answer { max-height: 100px; padding-bottom: 15px; }
.faq-item.active i { transform: rotate(45deg); color: var(--primary); }

.contact-wrapper { display: grid; grid-template-columns: 1.2fr 1fr; gap: 40px; align-items: flex-start; }

.contact-form-card, .map-card { background: rgba(20, 28, 28, 0.6); backdrop-filter: blur(15px); -webkit-backdrop-filter: blur(15px); border: 1px solid rgba(255, 255, 255, 0.08); border-radius: 24px; padding: 40px; box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5); transition: transform 0.3s ease; }
.contact-form-card:hover { border-color: rgba(255, 107, 0, 0.3); box-shadow: 0 20px 60px rgba(255, 107, 0, 0.05); }
.form-title { font-family: var(--font-display); font-size: 1.5rem; color: #fff; margin-bottom: 30px; padding-left: 15px; border-left: 4px solid var(--primary); font-weight: 700; }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.input-group { margin-bottom: 25px; }
.input-group label { display: block; color: #aaa; font-size: 0.9rem; margin-bottom: 10px; font-weight: 600; }
.input-box { position: relative; display: flex; align-items: center; background: rgba(0, 0, 0, 0.3); border: 1px solid #333; border-radius: 12px; transition: 0.3s; }
.input-box i { padding: 0 15px; color: #555; font-size: 1.1rem; transition: 0.3s; }
.input-box input, .input-box textarea { width: 100%; background: transparent; border: none; color: #fff; padding: 15px 15px 15px 0; font-family: var(--font-body); font-size: 1rem; }
.input-box textarea { padding-top: 15px; resize: none; }
.textarea-box i { padding-top: 18px; }
.input-box:focus-within { border-color: var(--primary); box-shadow: 0 0 15px rgba(255, 107, 0, 0.2); }
.input-box:focus-within i { color: var(--primary); }

.btn-submit-modern { width: 100%; background: linear-gradient(135deg, var(--primary), #ff9900); border: none; padding: 16px; border-radius: 12px; color: #000; font-weight: 800; font-size: 1.1rem; cursor: pointer; display: flex; justify-content: center; align-items: center; gap: 15px; transition: 0.4s; box-shadow: 0 10px 20px rgba(255, 107, 0, 0.2); }
.btn-submit-modern:hover { transform: translateY(-3px); box-shadow: 0 15px 30px rgba(255, 107, 0, 0.4); letter-spacing: 1px; }

.divider-or { text-align: center; margin: 30px 0; position: relative; }
.divider-or::before { content: ''; position: absolute; top: 50%; left: 0; width: 100%; height: 1px; background: #333; z-index: 0; }
.divider-or span { background: #141c1c; padding: 0 15px; color: #666; font-size: 0.8rem; position: relative; z-index: 1; font-weight: 700; }
.quick-contact { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.qc-btn { display: flex; align-items: center; padding: 12px; border-radius: 12px; background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.1); transition: 0.3s; }
.qc-icon { width: 40px; height: 40px; background: #222; border-radius: 50%; display: flex; justify-content: center; align-items: center; margin-right: 12px; font-size: 1.2rem; }
.qc-info span { display: block; font-size: 0.75rem; color: #888; }
.qc-info strong { display: block; font-size: 0.9rem; color: #fff; }
.qc-btn.zalo:hover { background: rgba(0, 104, 255, 0.2); border-color: #0068ff; }
.qc-btn.zalo .qc-icon { color: #0068ff; }
.qc-btn.hotline:hover { background: rgba(255, 107, 0, 0.1); border-color: var(--primary); }
.qc-btn.hotline .qc-icon { color: var(--primary); }

.map-card { padding: 0; height: 100%; min-height: 500px; overflow: hidden; position: relative; }
.map-card iframe { width: 100%; height: 100%; filter: none; opacity: 1; }
.map-overlay-info { position: absolute; bottom: 20px; left: 20px; right: 20px; background: rgba(0,0,0,0.8); backdrop-filter: blur(10px); padding: 15px; border-radius: 15px; display: flex; align-items: center; gap: 15px; border: 1px solid rgba(255,255,255,0.1); }
.moi-icon { width: 45px; height: 45px; background: var(--primary); color: #000; border-radius: 50%; display: flex; justify-content: center; align-items: center; font-size: 1.2rem; flex-shrink: 0; }
.moi-text h4 { color: #fff; font-size: 1rem; margin-bottom: 3px; }
.moi-text p { color: #ccc; font-size: 0.85rem; margin: 0; }
.btn-direction { margin-left: auto; width: 40px; height: 40px; border: 1px solid #444; border-radius: 10px; display: flex; justify-content: center; align-items: center; color: #fff; }
.btn-direction:hover { background: #fff; color: #000; }


.main-footer { border-top: 1px solid #222; padding: 60px 0 30px; margin-top: 50px; background: #050505; }
.footer-content { display: grid; grid-template-columns: 1.5fr 1fr 0.5fr; gap: 40px; }
.brand-logo.small {
    font-family: var(--font-display); font-weight: 700; font-size: 2rem; text-transform: uppercase; letter-spacing: 2px; font-style: italic; margin-bottom: 15px;
    background: linear-gradient(180deg, #FFFFFF 20%, #A0A0A0 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 5px rgba(255, 107, 0, 0.6));
}
.footer-contact li { margin-bottom: 10px; color: #888; }
.footer-contact .highlight { color: #fff; font-weight: bold; margin-left: 5px; }
.social-icons a { width: 40px; height: 40px; background: #222; display: inline-flex; align-items: center; justify-content: center; border-radius: 8px; margin-right: 5px; color: #888; }
.social-icons a:hover { background: var(--primary); color: #000; }

.reveal { opacity: 0; transform: translateY(50px); transition: all 0.8s cubic-bezier(0.5, 0, 0, 1); }
.reveal.active { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }


@media (max-width: 1024px) {
    .cursor-dot, .cursor-outline { display: none !important; }
    * { cursor: auto !important; }
    .nav-links, .btn-booking { display: none; }
    .menu-btn { display: block; }
    .pricing-layout { grid-template-columns: 1fr; gap: 40px; }
    .contact-wrapper { grid-template-columns: 1fr; gap: 40px; }
}


@media (max-width: 768px) {
    .hero { min-height: 85vh; padding-top: 80px; padding-bottom: 40px; }
    .hero-content-wrapper { padding: 0 15px; }

    .hero-title { font-size: 2.6rem !important; letter-spacing: 1px; margin-bottom: 15px; line-height: 1.2; word-break: keep-all; }
    .hero-subtitle { font-size: 1.4rem; margin-bottom: 20px; }
    .hero-description { font-size: 0.9rem; padding: 0 5px; line-height: 1.5; }
    .hero-actions { flex-direction: column; gap: 15px; width: 100%; }
    .btn-primary, .btn-secondary { width: 100%; justify-content: center; font-size: 1rem; padding: 12px 20px; }

    .section-padding { padding: 50px 0; }
    .section-header { margin-bottom: 30px; text-align: center; padding: 0 10px; }
    .split-text { font-size: 2rem; text-align: center; line-height: 1.2; }
    .sub-head { text-align: center; font-size: 0.9rem; padding: 0 10px; }
    
    .section-heading, h2.section-heading {
        font-size: 1.6rem !important; 
        line-height: 1.4 !important;
        word-wrap: break-word !important; 
        overflow-wrap: break-word !important;
        white-space: normal !important; 
        width: 100% !important;
        padding: 0 15px !important;
        text-align: center !important;
        display: block !important;
    }

    .services-grid-detail, .form-group-row, .footer-content, .form-grid, .quick-contact { grid-template-columns: 1fr; }
    
    .table-wrapper {
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        border: 1px solid #333;
        border-radius: 12px;
        margin-bottom: 20px;
    }
    .price-table { width: 100%; min-width: 500px; } 
    .price-table th, .price-table td { padding: 12px; font-size: 0.9rem; white-space: nowrap; }

    .map-card { min-height: 350px; border-radius: 16px; }
    .contact-form-card { padding: 25px; }
    
    .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .process-grid { grid-template-columns: 1fr 1fr; }
    .footer-content { gap: 30px; text-align: center; }
    .footer-contact li, .footer-social { justify-content: center; }
    .social-icons { justify-content: center; }
    
    .container, .pricing-content {
        width: 100% !important;
        padding-left: 15px !important;
        padding-right: 15px !important;
        overflow-x: hidden !important; 
    }
}

@media (max-width: 380px) {
    .hero-title { font-size: 2.2rem !important; }
    .split-text, .section-heading { font-size: 1.6rem; }
    .gallery-grid { grid-template-columns: 1fr; }
}
