/* --- VARIABLES & THEME --- */
:root {
    --primary-orange: #E65400;
    --primary-red: #B21E1E;
    --bg-dark: #0A0A0A;
    --card-bg: #1F1F1F;
    --footer-bg: #050505;
    --text-white: #ffffff;
    --text-gray: #a0a0a0;
    --border-color: #333333;
    --input-bg: #2A2A2A;
    --brand-gradient: linear-gradient(135deg, var(--primary-orange), var(--primary-red));
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    background-color: var(--bg-dark);
    color: var(--text-white);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 { font-family: 'Montserrat', sans-serif; font-weight: 700; }
a { text-decoration: none; color: inherit; transition: 0.3s; }
ul { list-style: none; }

/* --- HEADER --- */
header {
    display: flex; justify-content: space-between; align-items: center;
    padding: 1.2rem 5%; background-color: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px); border-bottom: 1px solid var(--border-color);
    position: sticky; top: 0; z-index: 1000;
}
.logo {
    font-family: 'Montserrat', sans-serif; font-size: 1.5rem; font-weight: 800;
    background: var(--brand-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    display: flex; align-items: center; gap: 10px;
}
.nav-links { display: flex; gap: 2rem; }
.nav-links a { font-size: 0.95rem; color: var(--text-white); font-weight: 500; }
.nav-links a:hover { color: var(--primary-orange); }
.hamburger { display: none; cursor: pointer; font-size: 1.8rem; color: var(--text-white); }

/* --- BUTTONS --- */
.btn-gradient {
    background: var(--brand-gradient); color: var(--text-white);
    padding: 0.7rem 1.5rem; border-radius: 50px; font-weight: 600;
    border: none; cursor: pointer; box-shadow: 0 4px 15px rgba(230, 84, 0, 0.3);
    transition: transform 0.3s, box-shadow 0.3s;
}
.btn-gradient:hover { transform: scale(1.05); box-shadow: 0 6px 20px rgba(230, 84, 0, 0.5); }
.btn-outline {
    background: transparent; border: 1px solid var(--text-gray); color: var(--text-gray);
    padding: 0.7rem 1.5rem; border-radius: 50px; font-weight: 600; cursor: pointer; transition: 0.3s;
}
.btn-outline:hover { border-color: var(--text-white); color: var(--text-white); }

/* --- HERO (Homepage) --- */
.hero {
    background: linear-gradient(rgba(10, 10, 10, 0.7), rgba(10, 10, 10, 0.7)), url('images/wtc-hero.jpg');
    background-color: #111;
    background-size: cover; 
    background-position: center; 
    min-height: 75vh;
    display: flex; 
    flex-direction: column; 
    justify-content: center; 
    align-items: center;
    text-align: center; 
    padding: 0 20px;
}
.hero h1 { font-size: 3.5rem; margin-bottom: 1.5rem; line-height: 1.1; margin-top: 18vh; }
.hero h1 span { background: var(--brand-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.hero p { font-size: 1.2rem; max-width: 600px; margin-bottom: 2.5rem; color: var(--text-gray); }

/* --- PAGE HERO (Career Launch) --- */
.page-hero {
    min-height: 60vh;
    background: linear-gradient(rgba(10, 10, 10, 0.8), rgba(10, 10, 10, 0.8)), url('images/wtc-hero.jpg');
    background-color: #111;
    background-size: cover; 
    background-position: center;
    display: flex; 
    flex-direction: column; 
    justify-content: center; 
    align-items: center;
    text-align: center; 
    padding: 0 20px;
}
.page-hero h1 { font-size: 3.5rem; margin-bottom: 1rem; }
.page-hero h1 span { background: var(--brand-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.page-hero p { font-size: 1.2rem; max-width: 700px; color: var(--text-gray); margin-bottom: 2rem; }

/* --- UTILITY & SECTIONS --- */
.reveal-on-scroll { opacity: 0; transform: translateY(30px); transition: all 0.8s ease-out; }
.reveal-on-scroll.is-visible { opacity: 1; transform: translateY(0); }
.hidden { display: none !important; }
.section-padding { padding: 6rem 5%; }
.section-title { text-align: center; margin-bottom: 4rem; }
.section-title h2 { font-size: 2.5rem; margin-bottom: 0.8rem; }
.section-title p { color: var(--text-gray); font-size: 1.1rem; }

/* --- TICKER --- */
.occupations-ticker {
    background-color: #111; padding: 1.2rem 0; overflow: hidden;
    white-space: nowrap; border-bottom: 1px solid var(--border-color); position: relative;
}
.occupations-ticker::before, .occupations-ticker::after {
    content: ""; position: absolute; top: 0; width: 100px; height: 100%; z-index: 2;
}
.occupations-ticker::before { left: 0; background: linear-gradient(to right, var(--bg-dark), transparent); }
.occupations-ticker::after { right: 0; background: linear-gradient(to left, var(--bg-dark), transparent); }
.ticker-content { display: inline-block; animation: scroll 25s linear infinite; }
.ticker-item { display: inline-block; padding: 0 2.5rem; font-weight: 600; color: var(--text-gray); font-family: 'Montserrat', sans-serif; }
@keyframes scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* --- CARDS & GRID --- */
.programs-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; max-width: 1000px; margin: 0 auto; }
@media (min-width: 768px) {
    .programs-grid { grid-template-columns: 1fr 1fr; }
    .program-card-featured { grid-column: span 2; }
}

.program-card {
    background-color: var(--card-bg); border: 1px solid var(--border-color);
    border-radius: 16px; padding: 2.5rem; transition: all 0.4s ease;
    display: flex; flex-direction: column; position: relative; overflow: hidden;
}
.program-card::before {
    content: ''; position: absolute; top: 0; left: -100%; width: 50%; height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.05) 50%, rgba(255,255,255,0) 100%);
    transform: skewX(-25deg); transition: 0s; pointer-events: none;
}
.program-card:hover::before { animation: shine 0.75s; }
@keyframes shine { 100% { left: 150%; } }
.program-card:hover { transform: translateY(-10px) scale(1.02); border-color: var(--primary-orange); box-shadow: 0 20px 40px rgba(0,0,0,0.4); }

.program-card-featured {
    background-color: var(--card-bg); border: 1px solid var(--border-color);
    border-radius: 16px; padding: 2.5rem; transition: all 0.4s ease;
    position: relative; overflow: hidden;
    display: flex; flex-direction: column; gap: 1.5rem;
}
.program-card-featured:hover {
    transform: translateY(-5px) scale(1.01);
    border-color: var(--primary-orange); box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

@media (min-width: 1024px) {
    .program-card-featured {
        flex-direction: row; 
        align-items: center; 
        justify-content: space-between; 
        padding: 3rem; 
    }
    .featured-left {
        flex: 1; 
        border-right: 1px solid #333; 
        padding-right: 2rem; 
        margin-right: 2rem;
    }
    .featured-right {
        flex: 2; 
        display: flex; 
        align-items: center; 
        justify-content: space-between; 
        gap: 1rem; 
    }
    .featured-right .card-features {
        display: grid; 
        grid-template-columns: 1fr 1fr; 
        gap: 0.5rem 1.5rem; 
        margin-bottom: 0; 
        width: 100%;
    }
    .featured-right .card-btn {
        margin-top: 0; 
        white-space: nowrap; 
        width: auto; 
        min-width: 160px; 
    }
}

.price { background: var(--brand-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; font-weight: 800; margin-bottom: 0.5rem; display: block; font-family: 'Montserrat', sans-serif; font-size: 1.35rem; white-space: nowrap; }
@media (min-width: 768px) { .price { font-size: 1.8rem; } }
.card-title { font-size: 1.5rem; margin-bottom: 1.5rem; color: var(--text-white); }
.card-features li { margin-bottom: 1rem; color: var(--text-gray); display: flex; align-items: center; font-size: 0.95rem; }
.card-features li::before { content: "✓"; color: var(--primary-orange); margin-right: 12px; font-weight: bold; }
.card-btn { text-align: center; margin-top: auto; border: 1px solid var(--primary-orange); color: var(--primary-orange); padding: 1rem; border-radius: 8px; transition: 0.3s; font-weight: 600; text-transform: uppercase; font-size: 0.9rem; letter-spacing: 1px; width: 100%; display: block; }
.card-btn:hover { background: var(--brand-gradient); color: var(--text-white); border-color: transparent; }

/* --- SERVICES GRID (Page Specific) --- */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2.5rem; max-width: 1200px; margin: 0 auto; }
.service-feature { background-color: var(--card-bg); border: 1px solid var(--border-color); border-radius: 16px; padding: 2.5rem; position: relative; overflow: hidden; transition: all 0.3s; }
.service-feature h3 { font-size: 1.5rem; margin-bottom: 1rem; color: #fff; }
.service-feature p { color: var(--text-gray); margin-bottom: 1.5rem; }
.service-feature i { font-size: 2.5rem; color: var(--primary-orange); margin-bottom: 1.5rem; }
.service-feature::before { content: ''; position: absolute; top: 0; left: -100%; width: 50%; height: 100%; background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.05) 50%, rgba(255,255,255,0) 100%); transform: skewX(-25deg); transition: 0s; pointer-events: none; }
.service-feature:hover::before { animation: shine 0.75s; }
.service-feature:hover { transform: translateY(-10px); border-color: var(--primary-orange); box-shadow: 0 20px 40px rgba(0,0,0,0.4); }

/* --- TIMELINE --- */
.timeline-container { position: relative; max-width: 800px; margin: 0 auto; }
.timeline-item { display: flex; gap: 2rem; margin-bottom: 3rem; position: relative; }
.timeline-item:last-child { margin-bottom: 0; }
.timeline-marker { flex-shrink: 0; width: 50px; height: 50px; background: var(--card-bg); border: 2px solid var(--primary-orange); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 1.2rem; color: var(--primary-orange); z-index: 2; }
.timeline-line { position: absolute; left: 24px; top: 50px; bottom: -50px; width: 2px; background: #333; z-index: 1; }
.timeline-item:last-child .timeline-line { display: none; }
.timeline-content h4 { font-size: 1.3rem; margin-bottom: 0.5rem; }
.timeline-content p { color: var(--text-gray); }

/* --- STATS SECTION --- */
.values-section { background-color: #0F0F0F; }
.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 3rem; text-align: center; }
@media (max-width: 768px) { .values-grid { grid-template-columns: 1fr; gap: 2rem; } }
.value-item h3 { font-size: 3rem; background: var(--brand-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; margin-bottom: 0.5rem; }
.value-item p { color: var(--text-gray); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }

/* --- FAQ SECTION --- */
.faq-section { padding: 6rem 5%; }
.accordion { max-width: 800px; margin: 0 auto; }
.accordion-item { border: 1px solid var(--border-color); background-color: var(--card-bg); margin-bottom: 1rem; border-radius: 8px; overflow: hidden; transition: 0.3s; }
.accordion-header { width: 100%; padding: 1.5rem; background: none; border: none; color: var(--text-white); font-size: 1.1rem; font-weight: 600; text-align: left; cursor: pointer; display: flex; justify-content: space-between; align-items: center; }
.accordion-header:hover { background-color: #2a2a2a; }
.accordion-header::after { content: '+'; font-size: 1.5rem; color: var(--primary-orange); font-weight: bold; transition: 0.3s; }
.accordion-item.active .accordion-header::after { content: '-'; transform: rotate(180deg); }
.accordion-content { 
    max-height: 0; overflow: hidden; transition: max-height 0.4s ease-out, opacity 0.4s ease;
    padding: 0 !important; opacity: 0;
}
.accordion-item.active .accordion-content { max-height: 500px; opacity: 1; }
.accordion-inner { padding: 1.5rem; }

/* --- CONTACT BOX --- */
.contact-box-wrapper { max-width: 1000px; margin: 0 auto; background: linear-gradient(145deg, #181818 0%, #1a0800 100%); border: 1px solid var(--primary-orange); border-radius: 20px; padding: 3rem 2rem; box-shadow: 0 0 30px rgba(230, 84, 0, 0.15); position: relative; overflow: hidden; }
.contact-redesign { display: flex; flex-direction: column; gap: 2rem; }
.contact-cards-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1.5rem; }
.contact-card-interactive { background-color: rgba(255, 255, 255, 0.03); border: 1px solid #333; border-radius: 12px; padding: 2rem; text-align: center; transition: all 0.3s ease; text-decoration: none; display: flex; flex-direction: column; align-items: center; justify-content: center; height: 100%; }
.contact-card-interactive i { font-size: 2rem; color: var(--primary-orange); margin-bottom: 1rem; transition: transform 0.3s; }
.contact-card-interactive h4 { color: var(--text-white); margin-bottom: 0.5rem; font-size: 1.1rem; }
.contact-card-interactive p { color: var(--text-gray); font-size: 0.9rem; line-height: 1.4; }
.contact-card-interactive:hover { border-color: var(--primary-orange); transform: translateY(-5px); background-color: rgba(230, 84, 0, 0.05); }
.contact-card-interactive:hover i { transform: scale(1.2); }
.cta-pulse-container { text-align: center; margin-top: 1.5rem; }
.btn-pulse { background: var(--brand-gradient); color: white; font-size: 1.2rem; font-weight: 700; padding: 1.2rem 3rem; border-radius: 50px; border: none; cursor: pointer; box-shadow: 0 0 0 0 rgba(230, 84, 0, 0.7); animation: pulse-orange 2s infinite; transition: transform 0.3s; }
.btn-pulse:hover { transform: scale(1.02); animation: none; box-shadow: 0 10px 30px rgba(230, 84, 0, 0.4); }
@keyframes pulse-orange { 0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(230, 84, 0, 0.7); } 70% { transform: scale(1); box-shadow: 0 0 0 15px rgba(230, 84, 0, 0); } 100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(230, 84, 0, 0); } }

/* --- FLOATING & MOBILE UI --- */
.floater-left, .floater-right { position: fixed; top: 50%; transform: translateY(-50%); z-index: 1500; display: flex; flex-direction: column; gap: 15px; }
.floater-left { left: 0; }
.floater-right { right: 0; gap: 10px; }
.floater-btn { background-color: var(--card-bg); color: var(--text-white); writing-mode: vertical-rl; text-orientation: mixed; padding: 15px 8px; border-top-right-radius: 10px; border-bottom-right-radius: 10px; font-weight: 600; font-size: 0.85rem; letter-spacing: 1px; text-transform: uppercase; display: flex; align-items: center; justify-content: center; gap: 10px; box-shadow: 2px 2px 10px rgba(0,0,0,0.3); transition: all 0.3s; cursor: pointer; border: 1px solid var(--border-color); border-left: none; min-height: 120px; }
.floater-btn i { font-size: 1.1rem; color: var(--primary-orange); transform: rotate(90deg); margin-bottom: 5px; }
.floater-btn:hover { background-color: var(--primary-orange); color: var(--text-white); padding-left: 12px; border-color: var(--primary-orange); }
.floater-btn:hover i { color: var(--text-white); }
.phone-num { font-size: 0.8rem; color: var(--text-gray); margin-top: 5px; font-weight: 400; letter-spacing: 2px; }
.floater-btn:hover .phone-num { color: #f0f0f0; }
.social-icon-box { background-color: var(--card-bg); width: 45px; height: 45px; display: flex; justify-content: center; align-items: center; border-top-left-radius: 8px; border-bottom-left-radius: 8px; box-shadow: -2px 2px 10px rgba(0,0,0,0.3); transition: 0.3s; cursor: pointer; border: 1px solid var(--border-color); border-right: none; color: var(--text-gray); position: relative; }
.social-icon-box img { width: 24px; height: 24px; object-fit: contain; transition: transform 0.3s; }
.social-icon-box i { font-size: 1.4rem; } 
.social-wechat:hover { background-color: #07c160; width: 55px; }
.social-tiktok:hover { background-color: #000; width: 55px; }
.social-rednote:hover { background-color: #ff2442; width: 55px; }
.social-insta:hover { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%); width: 55px; border-color: transparent; }
.social-icon-box:hover img { transform: scale(1.1); }
.social-icon-box:hover i { color: #fff; }
#backToTop { display: none; position: fixed; bottom: 30px; right: 30px; z-index: 1400; background-color: var(--primary-orange); color: white; border: none; border-radius: 50%; width: 50px; height: 50px; font-size: 1.2rem; cursor: pointer; box-shadow: 0 4px 10px rgba(0,0,0,0.3); transition: transform 0.3s, background-color 0.3s; }
#backToTop:hover { transform: translateY(-5px); background-color: #ff6a00; }
.qr-modal-overlay { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(0, 0, 0, 0.85); z-index: 3000; justify-content: center; align-items: center; backdrop-filter: blur(5px); animation: fadeIn 0.3s ease-out; }
.qr-modal-content { background-color: #fff; padding: 30px; border-radius: 12px; text-align: center; max-width: 350px; width: 90%; box-shadow: 0 20px 50px rgba(0,0,0,0.5); position: relative; }
.qr-modal-content img { width: 100%; max-width: 250px; height: auto; display: block; margin: 0 auto 15px; }
.qr-modal-content h3 { color: #333; margin-bottom: 5px; font-size: 1.2rem; }
.qr-modal-content p { color: #666; font-size: 0.9rem; }
.qr-id-text { background-color: #f0f0f0; padding: 5px 10px; border-radius: 4px; font-family: monospace; color: #333; font-weight: bold; display: inline-block; margin-top: 5px; }
.close-qr { position: absolute; top: 10px; right: 15px; font-size: 1.5rem; color: #aaa; cursor: pointer; }
.close-qr:hover { color: #333; }

/* --- FOOTER --- */
footer { background-color: var(--footer-bg); padding-top: 3rem; border-top: 1px solid #222; }
.footer-center { text-align: center; max-width: 800px; margin: 0 auto; padding-bottom: 2rem; padding-left: 20px; padding-right: 20px; }
.footer-logo { display: flex; align-items: center; justify-content: center; gap: 15px; margin-bottom: 1.5rem; }
.footer-logo img { height: 75px; width: auto; } 
.logo-text { display: flex; flex-direction: column; text-align: left; line-height: 1.1; }
.logo-text span:first-child { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 1.5rem; color: #fff; } 
.logo-text span:last-child { font-family: 'Montserrat', sans-serif; font-weight: 400; font-size: 1.375rem; color: #ddd; } 
.footer-slogan { color: #fff; font-size: 1.2rem; margin-bottom: 1rem; letter-spacing: 1px; font-family: 'Montserrat', sans-serif; }
.footer-desc { color: #888; font-size: 0.95rem; line-height: 1.8; max-width: 600px; margin: 0 auto; }
.footer-bottom { padding: 2rem 5%; background-color: #000; color: #555; font-size: 0.85rem; display: flex; flex-direction: column; gap: 1.5rem; }
.footer-legal-links { display: flex; gap: 1.5rem; flex-wrap: wrap; justify-content: center; }
.footer-legal-links a:hover { color: var(--text-white); }

/* --- MODAL CSS --- */
.modal-overlay { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(0, 0, 0, 0.85); z-index: 2000; justify-content: center; align-items: center; backdrop-filter: blur(8px); }
.modal-content { 
    background-color: #1a1a1a; border: 1px solid #333; border-radius: 20px; 
    width: 95%; max-width: 500px; max-height: 90vh; 
    overflow-y: auto; position: relative; box-shadow: 0 25px 60px rgba(0,0,0,0.6); 
    display: flex; flex-direction: column; 
}
.modal-header { padding: 2rem; border-bottom: 1px solid #333; background: #1a1a1a; position: sticky; top:0; z-index: 10; display: flex; justify-content: space-between; align-items: center; }
.modal-header-left h3 { font-size: 1.4rem; margin-bottom: 0.5rem; color: var(--text-white); }
.save-link { font-size: 0.8rem; color: #888; text-decoration: underline; cursor: pointer; transition: 0.3s; }
.save-link:hover { color: var(--primary-orange); }
.close-modal { font-size: 2rem; color: #fff; cursor: pointer; transition: 0.3s; line-height: 1; margin-left: 15px;}
.close-modal:hover { color: var(--primary-orange); }
.progress-container { width: 100%; background-color: #2a2a2a; height: 6px; border-radius: 3px; overflow: hidden; margin-top: 0.5rem; }
.progress-bar { height: 100%; background: linear-gradient(90deg, var(--primary-orange), var(--primary-red)); width: 14%; transition: width 0.4s cubic-bezier(0.25, 1, 0.5, 1); }

.form-step { padding: 1.5rem; display: none; animation: slideIn 0.4s ease-out; }
@keyframes slideIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
.form-step.active { display: block; }
.form-group { margin-bottom: 1.2rem; }
.form-group label { display: block; margin-bottom: 0.5rem; font-weight: 600; color: #ccc; font-size: 0.9rem; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 1rem; background-color: var(--input-bg); border: 2px solid transparent; border-radius: 12px; color: var(--text-white); font-family: 'Inter', sans-serif; font-size: 1rem; transition: all 0.3s; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--primary-orange); background-color: #333; box-shadow: 0 0 15px rgba(230, 84, 0, 0.1); }
.modal-footer { padding: 1.5rem 2rem; border-top: 1px solid #333; display: flex; justify-content: space-between; align-items: center; background: #1a1a1a; position: sticky; bottom: 0; }
.input-group-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.input-with-btn { display: flex; gap: 10px; }
.input-with-btn input { flex: 1; }
.input-with-btn button { white-space: nowrap; padding: 0 1.2rem; border-radius: 12px; }
@media(max-width:600px) { .input-group-row { grid-template-columns: 1fr; } }
.otp-box { background: #222; padding: 15px; border-radius: 12px; margin-top: 10px; border: 1px dashed var(--primary-orange); }
#summary-content { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; background: #222; padding: 20px; border-radius: 12px; border: 1px solid #333; }
.summary-item { margin-bottom: 5px; }
.summary-item strong { color: #888; font-size: 0.8rem; display: block; text-transform: uppercase; margin-bottom: 2px; }
.summary-item span { color: #fff; font-size: 1rem; font-weight: 500; }
@media(max-width: 600px) { #summary-content { grid-template-columns: 1fr; } }

/* --- MOBILE SPECIFIC FIXES --- */
.mobile-social-row { display: none; }
@media (max-width: 768px) {
    .nav-links { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; background-color: var(--bg-dark); width: 100%; padding: 2rem; border-bottom: 1px solid var(--border-color); }
    .nav-links.active { display: flex; }
    .hamburger { display: block; }
    .hero, .page-hero { justify-content: flex-start; padding-top: 140px; padding-bottom: 60px; }
    .hero h1 { font-size: 2.5rem; margin-top: 0; }
    .floater-left, .floater-right { display: none; }
    #backToTop { bottom: 20px; right: 20px; width: 40px; height: 40px; font-size: 1rem; }
    .mobile-social-row { display: flex; justify-content: center; gap: 20px; margin-top: 1.5rem; padding-top: 1.5rem; border-top: 1px solid #333; }
    .mobile-social-row .social-icon-box { width: 45px; height: 45px; border-radius: 50%; border: 1px solid #444; box-shadow: none; }
    .dropdown-menu { position: static; background: transparent; border: none; box-shadow: none; padding: 0 0 0 20px; backdrop-filter: none; }
    .nav-links li:hover .dropdown-menu { display: flex; }
}

/* --- DROPDOWN MENU CSS --- */
.nav-links li { position: relative; } 
.dropdown-menu { display: none; position: absolute; top: 100%; left: 0; background-color: rgba(10, 10, 10, 0.95); backdrop-filter: blur(10px); border: 1px solid var(--border-color); border-radius: 8px; padding: 10px 0; min-width: 200px; box-shadow: 0 10px 30px rgba(0,0,0,0.5); z-index: 1001; flex-direction: column; gap: 0; }
.nav-links li:hover .dropdown-menu { display: flex; }
.dropdown-menu li { margin: 0; width: 100%; }
.dropdown-menu a { display: block; padding: 12px 20px; color: var(--text-gray); font-size: 0.9rem; white-space: nowrap; transition: 0.2s; }
.dropdown-menu a:hover { color: var(--text-white); background-color: rgba(255, 255, 255, 0.05); padding-left: 25px; }
.fa-chevron-down { font-size: 0.7rem; margin-left: 5px; opacity: 0.7; }

/* =========================================================
   NEW PORTAL & CALENDAR UI UPDATES BELOW
   ========================================================= */

/* --- SECURE CLIENT PORTAL (booking.html) --- */
.portal-wrapper {
    min-height: 80vh; padding: 6rem 5%; display: flex; justify-content: center; align-items: flex-start;
}
.portal-card {
    background-color: var(--card-bg); border: 1px solid var(--border-color); border-radius: 20px; width: 100%; max-width: 800px; padding: 3rem; box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}
.portal-header { text-align: center; margin-bottom: 3rem; border-bottom: 1px solid #333; padding-bottom: 2rem; }
.portal-header h2 { font-size: 2rem; color: var(--text-white); margin-bottom: 0.5rem; }
.portal-header p { color: var(--text-gray); }

/* 4-Stage Tracker */
.stage-tracker { display: flex; justify-content: space-between; position: relative; margin-bottom: 3rem; }
.stage-tracker::before { content: ''; position: absolute; top: 20px; left: 0; width: 100%; height: 2px; background-color: #333; z-index: 1; }
.stage-step { position: relative; z-index: 2; text-align: center; width: 25%; }
.stage-circle { width: 40px; height: 40px; background-color: var(--card-bg); border: 2px solid #555; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 10px; font-weight: 600; color: #555; transition: 0.3s; }
.stage-label { font-size: 0.8rem; color: #555; text-transform: uppercase; letter-spacing: 1px; font-weight: 600; }
.stage-step.completed .stage-circle { background-color: #4CAF50; border-color: #4CAF50; color: white; }
.stage-step.active .stage-circle { border-color: var(--primary-orange); color: var(--primary-orange); box-shadow: 0 0 15px rgba(230, 84, 0, 0.3); }
.stage-step.completed .stage-label { color: #4CAF50; }
.stage-step.active .stage-label { color: var(--text-white); }

/* Progressive Profiling Form */
.missing-info-box { background: rgba(230, 84, 0, 0.05); border: 1px dashed var(--primary-orange); border-radius: 12px; padding: 2rem; margin-bottom: 2rem; text-align: center; }

/* --- GRID CALENDAR UI --- */
.calendar-wrapper { background: #222; border-radius: 12px; padding: 20px; margin-bottom: 20px; border: 1px solid #333; }
.calendar-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 15px; }
.calendar-header button { background: none; border: none; color: var(--primary-orange); font-size: 1.2rem; cursor: pointer; padding: 5px 10px; }
.calendar-header button:hover { color: white; }
.calendar-header h4 { margin: 0; color: white; font-size: 1.1rem; }
.calendar-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 5px; text-align: center; }
.calendar-day-name { font-size: 0.75rem; color: #888; text-transform: uppercase; margin-bottom: 5px; }
.calendar-date-btn { background: #333; border: 1px solid #444; color: white; border-radius: 6px; padding: 10px 0; cursor: pointer; transition: 0.2s; font-size: 0.95rem; font-weight: 500; }
.calendar-date-btn:hover:not(:disabled) { border-color: var(--primary-orange); }
.calendar-date-btn.active { background: var(--primary-orange); border-color: var(--primary-orange); color: white; }

/* Disabled Calendar Dates */
.calendar-date-btn:disabled { background: transparent; border-color: transparent; color: #444; cursor: not-allowed; opacity: 0.5; }

/* --- MODERN TIME BUTTONS --- */
.time-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(110px, 1fr)); gap: 12px; }
.time-btn { padding: 12px 10px; background: #2A2A2A; border: 1px solid #444; border-radius: 12px; color: #ddd; font-size: 0.9rem; font-weight: 600; cursor: pointer; transition: all 0.3s ease; box-shadow: 0 2px 5px rgba(0,0,0,0.2); }
.time-btn:hover:not(:disabled) { border-color: var(--primary-orange); color: #fff; transform: translateY(-2px); box-shadow: 0 5px 15px rgba(230, 84, 0, 0.2); }
.time-btn.active { background: linear-gradient(135deg, var(--primary-orange), var(--primary-red)); border-color: transparent; color: white; box-shadow: 0 5px 15px rgba(230, 84, 0, 0.4); }
.time-btn:disabled { background: #151515; color: #444; border-color: #222; cursor: not-allowed; box-shadow: none; text-decoration: line-through; }