/* ============================================================
   VastuMitra — Custom Brand Stylesheet
   Brand Colors:
     Primary Dark:   #031d2e  (deep navy)
     Secondary Dark: #17384e
     Accent Orange:  #ff7010
     Gold:           #c9a84c
     Light:          #e5f0f5
   ============================================================ */

:root {
    --vm-gold:    #c9a84c;
    --vm-gold-lt: #f0d98a;
    --vm-saffron: #ff7010;
    --vm-nav:     #031d2e;
    --vm-dark:    #17384e;
    --vm-light:   #e5f0f5;
    --vm-white:   #ffffff;
    --vm-border:  rgba(201,168,76,0.25);
    --vm-radius:  8px;
    --vm-shadow:  0 8px 32px rgba(3,29,46,0.35);
}

/* ── NAVIGATION ENHANCEMENT ─────────────────────────────── */
.vastu-nav-highlight {
    color: var(--vm-gold) !important;
}
.vastu-nav-highlight i { margin-right: 5px; }
.has_submenu { position: relative; }
.submenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--vm-dark);
    border-top: 2px solid var(--vm-saffron);
    min-width: 220px;
    list-style: none;
    padding: 10px 0;
    z-index: 9999;
    box-shadow: var(--vm-shadow);
}
.has_submenu:hover .submenu { display: block; }
.submenu li a {
    display: block;
    padding: 10px 20px;
    font-size: 14px;
    color: var(--vm-light);
    transition: all 0.2s;
}
.submenu li a:hover {
    background: rgba(255,112,16,0.15);
    color: var(--vm-saffron);
    padding-left: 28px;
}

/* ── HERO SECTION ────────────────────────────────────────── */
.vm_hero_wrapper {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--vm-nav);
}
.vm_hero_bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 70% 50%, rgba(201,168,76,0.12) 0%, transparent 60%),
        radial-gradient(ellipse at 20% 80%, rgba(255,112,16,0.08) 0%, transparent 50%),
        url('../images/bg1.jpg') center/cover no-repeat;
    opacity: 0.5;
}
.min-vh-85 { min-height: 85vh; }
.vm_hero_content { position: relative; z-index: 2; padding: 60px 0; }
.vm_hero_tagline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(201,168,76,0.15);
    border: 1px solid var(--vm-border);
    border-radius: 50px;
    padding: 8px 20px;
    font-size: 13px;
    color: var(--vm-gold);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 24px;
}
.vm_hero_title {
    font-size: clamp(36px, 5vw, 58px);
    line-height: 1.15;
    color: var(--vm-white);
    margin-bottom: 24px;
    font-weight: 700;
}
.vm_hero_desc {
    font-size: 17px;
    line-height: 1.7;
    color: var(--vm-light);
    max-width: 520px;
    margin-bottom: 36px;
    opacity: 0.9;
}
.vm_hero_actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 40px; }
.vm_btn_outline {
    display: inline-flex;
    align-items: center;
    height: 50px;
    padding: 0 24px;
    border: 2px solid var(--vm-gold);
    color: var(--vm-gold);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s;
    background: transparent;
    text-decoration: none;
}
.vm_btn_outline:hover {
    background: var(--vm-gold);
    color: var(--vm-nav);
}
.vm_hero_trust {
    display: flex;
    gap: 0;
    flex-wrap: wrap;
}
.vm_trust_item { padding: 0 24px 0 0; }
.vm_trust_item:first-child { padding-left: 0; }
.vm_trust_num {
    display: block;
    font-size: 26px;
    font-weight: 700;
    color: var(--vm-gold);
    font-family: 'Philosopher', sans-serif;
}
.vm_trust_label { display: block; font-size: 12px; color: var(--vm-light); opacity: 0.8; }
.vm_trust_divider {
    width: 1px;
    background: var(--vm-border);
    margin-right: 24px;
    align-self: stretch;
    min-height: 40px;
}

/* Hero compass visual */
.vm_hero_visual {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 40px 0;
}
.vm_compass_container {
    position: relative;
    width: 300px;
    height: 300px;
    margin: 0 auto 30px;
}
.vm_compass_ring {
    position: absolute;
    border-radius: 50%;
    border: 2px solid var(--vm-border);
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    animation: rotateCompass 20s linear infinite;
}
.vm_ring_outer  { width: 280px; height: 280px; border-color: rgba(201,168,76,0.3); animation-duration: 30s; }
.vm_ring_middle { width: 200px; height: 200px; border-color: rgba(201,168,76,0.5); animation-duration: -20s; animation-direction: reverse; }
.vm_ring_inner  { width: 120px; height: 120px; border-color: rgba(255,112,16,0.5); animation-duration: 15s; }
@keyframes rotateCompass {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to   { transform: translate(-50%, -50%) rotate(360deg); }
}
.vm_compass_center {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 80px; height: 80px;
    background: linear-gradient(135deg, var(--vm-saffron), #e04000);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 32px;
    color: var(--vm-white);
    z-index: 10;
    box-shadow: 0 0 30px rgba(255,112,16,0.6);
}
.vm_compass_directions {
    position: absolute;
    inset: 0;
    animation: rotateCompass 60s linear infinite reverse;
}
.vm_dir {
    position: absolute;
    font-size: 13px;
    font-weight: 700;
    color: var(--vm-gold);
    letter-spacing: 1px;
}
.vm_dir_n  { top: 5px;   left: 50%; transform: translateX(-50%); }
.vm_dir_s  { bottom: 5px; left: 50%; transform: translateX(-50%); }
.vm_dir_e  { right: 5px; top: 50%; transform: translateY(-50%); }
.vm_dir_w  { left: 5px;  top: 50%; transform: translateY(-50%); }
.vm_dir_ne { top: 20px; right: 20px; font-size: 11px; color: var(--vm-saffron); }
.vm_dir_nw { top: 20px; left: 20px; font-size: 11px; color: var(--vm-saffron); }
.vm_dir_se { bottom: 20px; right: 20px; font-size: 11px; color: var(--vm-saffron); }
.vm_dir_sw { bottom: 20px; left: 20px; font-size: 11px; color: var(--vm-saffron); }
.vm_hero_floorplan_preview { position: relative; display: inline-block; }
.vm_hero_img {
    width: 100%;
    max-width: 380px;
    border-radius: var(--vm-radius);
    border: 2px solid var(--vm-border);
    filter: brightness(0.8) sepia(0.3);
}
.vm_analysis_badge {
    position: absolute;
    bottom: 16px; right: 16px;
    background: #28a745;
    color: white;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 13px;
    display: flex; align-items: center; gap: 6px;
    font-weight: 600;
}
.vm_hero_scroll {
    position: absolute;
    bottom: 30px; left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}
.vm_hero_scroll a span {
    display: block;
    width: 20px; height: 30px;
    border: 2px solid var(--vm-gold);
    border-radius: 10px;
    position: relative;
    animation: scrollBounce 2s infinite;
}
.vm_hero_scroll a span::after {
    content: '';
    position: absolute;
    left: 50%; top: 5px;
    width: 4px; height: 8px;
    background: var(--vm-gold);
    border-radius: 2px;
    transform: translateX(-50%);
    animation: scrollDot 2s infinite;
}
@keyframes scrollDot { 0%,100%{top:5px;opacity:1} 50%{top:12px;opacity:0} }

/* ── SECTION COMMON ──────────────────────────────────────── */
.vm_section_tag {
    display: inline-block;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--vm-gold);
    border-left: 3px solid var(--vm-saffron);
    padding-left: 12px;
    margin-bottom: 16px;
}
.vm_section_sub {
    max-width: 600px;
    margin: 0 auto 50px;
    color: var(--vm-light);
    opacity: 0.8;
}
.vm_link {
    color: var(--vm-gold);
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 12px;
    transition: gap 0.2s;
}
.vm_link:hover { gap: 12px; color: var(--vm-saffron); }
.vm_link_orange { color: var(--vm-saffron); }

/* ── HOW IT WORKS ────────────────────────────────────────── */
.vm_howitworks_wrapper { background: var(--vm-dark); }
.vm_steps_row { margin-top: 50px; }
.vm_step_card {
    background: rgba(3,29,46,0.6);
    border: 1px solid var(--vm-border);
    border-radius: var(--vm-radius);
    padding: 40px 30px;
    text-align: center;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
}
.vm_step_card:hover {
    transform: translateY(-8px);
    box-shadow: var(--vm-shadow);
    border-color: var(--vm-saffron);
}
.vm_step_card::before {
    content: attr(data-step);
    position: absolute;
    top: -20px; left: 50%;
    transform: translateX(-50%);
    background: var(--vm-saffron);
    color: white;
    width: 44px; height: 44px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 18px;
    font-weight: 700;
    font-family: 'Philosopher', sans-serif;
}
.vm_step_icon {
    font-size: 48px;
    color: var(--vm-gold);
    margin: 20px 0 20px;
}
.vm_step_card h4 {
    color: var(--vm-white);
    font-size: 20px;
    margin-bottom: 12px;
}
.vm_step_card p { color: var(--vm-light); opacity: 0.85; font-size: 14px; }

/* ── SERVICES ────────────────────────────────────────────── */
.vm_services_wrapper { position: relative; overflow: hidden; }
.vm_services_bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(201,168,76,0.08) 0%, transparent 60%);
}
.vm_service_card {
    background: var(--vm-dark);
    border: 1px solid var(--vm-border);
    border-radius: var(--vm-radius);
    padding: 36px 28px;
    margin-bottom: 24px;
    position: relative;
    transition: all 0.3s;
    height: calc(100% - 24px);
}
.vm_service_card:hover {
    border-color: var(--vm-gold);
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(3,29,46,0.5);
}
.vm_service_featured {
    border-color: var(--vm-saffron);
    background: linear-gradient(135deg, #1e4a60, #17384e);
}
.vm_service_badge {
    position: absolute;
    top: -12px; right: 20px;
    background: var(--vm-saffron);
    color: white;
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}
.vm_service_ai { border-color: rgba(201,168,76,0.5); }
.vm_service_icon {
    font-size: 40px;
    color: var(--vm-gold);
    margin-bottom: 20px;
    display: block;
}
.vm_service_card h4 {
    color: var(--vm-white);
    font-size: 20px;
    margin-bottom: 12px;
}
.vm_service_card p { color: var(--vm-light); opacity: 0.85; font-size: 14px; }

/* ── VASTU ZONES MANDALA GRID ─────────────────────────────  */
.vm_zones_wrapper { background: var(--vm-dark); }
.vm_zones_list { list-style: none; padding: 0; margin: 20px 0; }
.vm_zones_list li {
    display: flex; align-items: center; gap: 10px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    font-size: 14px;
    color: var(--vm-light);
}
.vm_zone_dot {
    width: 12px; height: 12px;
    border-radius: 50%;
    flex-shrink: 0;
}
.vm_mandala_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4px;
    max-width: 450px;
    margin: 0 auto;
}
.vm_zone_cell {
    border: 2px solid;
    border-radius: 4px;
    padding: 20px 12px;
    text-align: center;
    background: rgba(3,29,46,0.6);
    transition: all 0.3s;
}
.vm_zone_cell:hover { transform: scale(1.05); z-index: 5; }
.vm_zone_center { background: rgba(255,112,16,0.15) !important; }
.vm_zone_dir {
    display: block;
    font-size: 20px;
    font-weight: 700;
    font-family: 'Philosopher', sans-serif;
}
.vm_zone_name { display: block; font-size: 13px; color: var(--vm-white); margin: 4px 0 2px; }
.vm_zone_meaning { display: block; font-size: 11px; color: var(--vm-light); opacity: 0.7; }

/* ── CTA STRIP ───────────────────────────────────────────── */
.vm_cta_strip {
    background: linear-gradient(135deg, var(--vm-saffron) 0%, #c04000 100%);
    padding: 40px 0;
}
.vm_cta_title { color: white; font-size: 24px; margin: 0 0 8px; }
.vm_cta_sub { color: rgba(255,255,255,0.85); font-size: 15px; margin: 0; }
.vm_cta_btn { background: var(--vm-nav); margin-left: 0; }
.vm_cta_btn:hover { background: black; }
.vm_cta_btn::after, .vm_cta_btn::before { border-left-color: var(--vm-nav); }

/* ── WHY US / STATS ─────────────────────────────────────── */
.vm_why_wrapper {}
.vm_why_card {
    background: var(--vm-dark);
    border: 1px solid var(--vm-border);
    border-radius: var(--vm-radius);
    padding: 36px 24px;
    margin-bottom: 24px;
    transition: all 0.3s;
}
.vm_why_card:hover {
    border-color: var(--vm-gold);
    transform: translateY(-5px);
}
.vm_why_icon {
    font-size: 42px;
    color: var(--vm-gold);
    margin-bottom: 20px;
}
.vm_why_card h5 { color: var(--vm-white); font-size: 18px; margin-bottom: 12px; }
.vm_why_card p { color: var(--vm-light); opacity: 0.85; font-size: 14px; }
.vm_stats_row {
    background: rgba(3,29,46,0.5);
    border: 1px solid var(--vm-border);
    border-radius: var(--vm-radius);
    padding: 40px 0;
    margin-top: 50px;
}
.vm_stat_item { padding: 20px; }
.vm_stat_num {
    display: inline-block;
    font-size: 52px;
    font-weight: 700;
    color: var(--vm-gold);
    font-family: 'Philosopher', sans-serif;
    line-height: 1;
}
.vm_stat_plus { font-size: 32px; color: var(--vm-saffron); font-weight: 700; }
.vm_stat_label { display: block; font-size: 14px; color: var(--vm-light); opacity: 0.8; margin-top: 8px; }

/* ── TESTIMONIALS ────────────────────────────────────────── */
.vm_testimonials_wrapper { position: relative; overflow: hidden; }
.vm_testimonials_bg {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, var(--vm-dark) 0%, var(--vm-nav) 100%);
}
.vm_testi_card {
    background: rgba(23,56,78,0.8);
    border: 1px solid var(--vm-border);
    border-radius: var(--vm-radius);
    padding: 32px 28px;
    margin-bottom: 24px;
    position: relative;
    z-index: 2;
    transition: all 0.3s;
}
.vm_testi_card:hover { border-color: var(--vm-gold); transform: translateY(-5px); }
.vm_testi_stars { color: var(--vm-gold); font-size: 14px; margin-bottom: 16px; }
.vm_testi_card p {
    color: var(--vm-light);
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 20px;
    font-style: italic;
}
.vm_testi_author { display: flex; align-items: center; gap: 16px; }
.vm_testi_avatar {
    width: 48px; height: 48px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700;
    font-size: 16px;
    color: white;
    flex-shrink: 0;
}
.vm_avatar_1 { background: linear-gradient(135deg, #FF6B35, #F7931E); }
.vm_avatar_2 { background: linear-gradient(135deg, #7B2D8B, #C4418E); }
.vm_avatar_3 { background: linear-gradient(135deg, #1A6B3C, #2E9E5C); }
.vm_testi_author h6 { color: var(--vm-white); font-size: 16px; margin: 0 0 4px; }
.vm_testi_author span { color: var(--vm-light); font-size: 13px; opacity: 0.8; }

/* ── BLOG ────────────────────────────────────────────────── */
.vm_blog_card {
    background: var(--vm-dark);
    border: 1px solid var(--vm-border);
    border-radius: var(--vm-radius);
    overflow: hidden;
    margin-bottom: 24px;
    transition: all 0.3s;
}
.vm_blog_card:hover { transform: translateY(-5px); border-color: var(--vm-gold); }
.vm_blog_img { position: relative; overflow: hidden; height: 200px; }
.vm_blog_img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.vm_blog_card:hover .vm_blog_img img { transform: scale(1.05); }
.vm_blog_cat {
    position: absolute;
    top: 16px; left: 16px;
    background: var(--vm-saffron);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}
.vm_blog_body { padding: 24px; }
.vm_blog_date { color: var(--vm-gold); font-size: 13px; margin-bottom: 12px; display: block; }
.vm_blog_body h5 { color: var(--vm-white); font-size: 18px; margin-bottom: 12px; line-height: 1.4; }
.vm_blog_body p { color: var(--vm-light); opacity: 0.85; font-size: 14px; margin-bottom: 16px; }

/* ── NEWSLETTER ──────────────────────────────────────────── */
.vm_newsletter_wrapper {
    background: linear-gradient(135deg, #1a3a50, #0d2a3e);
    border-top: 1px solid var(--vm-border);
    border-bottom: 1px solid var(--vm-border);
    padding: 60px 0;
}
.vm_newsletter_title { color: var(--vm-white); font-size: 28px; margin-bottom: 10px; }
.vm_newsletter_wrapper p { color: var(--vm-light); opacity: 0.8; margin: 0; }
.vm_newsletter_form {
    display: flex;
    gap: 0;
    margin-top: 0;
}
.vm_newsletter_form .form-control {
    flex: 1;
    border-radius: 0;
    height: 50px;
    border: 1px solid var(--vm-border);
    border-right: none;
}
.vm_newsletter_form .as_btn { border-radius: 0; margin-left: 0; }

/* ── FOOTER ──────────────────────────────────────────────── */
.vm_footer_wrapper {
    background: #020e18;
    border-top: 1px solid var(--vm-border);
}
.vm_footer_top { padding: 70px 0 40px; }
.vm_footer_widget { padding-right: 20px; margin-bottom: 30px; }
.vm_footer_about {
    color: var(--vm-light);
    opacity: 0.75;
    font-size: 14px;
    line-height: 1.8;
    margin: 20px 0;
}
.vm_social_links { display: flex; gap: 10px; margin-top: 20px; }
.vm_social_links a {
    width: 38px; height: 38px;
    border: 1px solid var(--vm-border);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--vm-light);
    font-size: 14px;
    transition: all 0.3s;
}
.vm_social_links a:hover {
    background: var(--vm-saffron);
    border-color: var(--vm-saffron);
    color: white;
    transform: translateY(-3px);
}
.vm_footer_heading {
    color: var(--vm-white);
    font-size: 18px;
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--vm-saffron);
    display: inline-block;
}
.vm_footer_links { list-style: none; padding: 0; margin: 0; }
.vm_footer_links li { margin-bottom: 10px; }
.vm_footer_links li a {
    color: var(--vm-light);
    opacity: 0.75;
    font-size: 14px;
    display: flex; align-items: center; gap: 8px;
    transition: all 0.2s;
}
.vm_footer_links li a:hover { opacity: 1; color: var(--vm-gold); padding-left: 4px; }
.vm_footer_links li a i { color: var(--vm-saffron); font-size: 12px; }
.vm_footer_contact { list-style: none; padding: 0; margin: 0; }
.vm_footer_contact li {
    display: flex; gap: 14px; align-items: flex-start;
    margin-bottom: 16px;
    color: var(--vm-light);
    opacity: 0.8;
    font-size: 14px;
}
.vm_footer_contact li a { color: var(--vm-light); opacity: 0.8; }
.vm_footer_contact li a:hover { color: var(--vm-gold); opacity: 1; }
.vm_contact_icon {
    width: 34px; height: 34px;
    background: rgba(255,112,16,0.15);
    border: 1px solid rgba(255,112,16,0.3);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--vm-saffron);
    flex-shrink: 0;
    font-size: 13px;
    margin-top: 2px;
}
.vm_footer_bottom {
    border-top: 1px solid rgba(255,255,255,0.07);
    padding: 20px 0;
}
.vm_copyright { color: var(--vm-light); opacity: 0.6; font-size: 13px; margin: 0; }
.vm_footer_legal { list-style: none; padding: 0; margin: 0; display: flex; gap: 20px; justify-content: flex-end; }
.vm_footer_legal li a { color: var(--vm-light); opacity: 0.6; font-size: 13px; }
.vm_footer_legal li a:hover { opacity: 1; color: var(--vm-gold); }

/* ── BREADCRUMB ──────────────────────────────────────────── */
.as_breadcrum_wrapper {
    background: linear-gradient(135deg, var(--vm-nav), var(--vm-dark));
    padding: 80px 0 60px;
    position: relative;
}
.vm_breadcrumb_analysis {
    background:
        linear-gradient(135deg, rgba(3,29,46,0.95), rgba(23,56,78,0.9)),
        url('../images/bg2.jpg') center/cover no-repeat;
    padding: 100px 0 70px;
}
.vm_breadcrumb_overlay {
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at 50% 50%, rgba(201,168,76,0.1) 0%, transparent 70%);
}
.vm_breadcrumb_sub {
    color: var(--vm-light);
    opacity: 0.85;
    font-size: 16px;
    max-width: 600px;
    margin: 16px auto;
}

/* ── ANALYSIS FORM PAGE ──────────────────────────────────── */
.vm_analysis_section { background: var(--vm-nav); }
.vm_analysis_form_wrapper {
    background: var(--vm-dark);
    border: 1px solid var(--vm-border);
    border-radius: var(--vm-radius);
    padding: 40px;
}
.vm_form_header { margin-bottom: 36px; }
.vm_form_step_badge {
    display: inline-block;
    background: rgba(255,112,16,0.15);
    border: 1px solid rgba(255,112,16,0.4);
    color: var(--vm-saffron);
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 12px;
    margin-bottom: 12px;
}
.vm_form_header h2 { color: var(--vm-white); font-size: 28px; margin-bottom: 10px; }
.vm_form_header p { color: var(--vm-light); opacity: 0.8; font-size: 14px; }
.vm_form_section { margin-bottom: 36px; padding-bottom: 36px; border-bottom: 1px solid rgba(255,255,255,0.07); }
.vm_form_section:last-of-type { border-bottom: none; }
.vm_form_section_title {
    color: var(--vm-white);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    display: flex; align-items: center; gap: 10px;
}
.vm_form_section_title i { color: var(--vm-saffron); }
.vm_field_group { margin-bottom: 20px; }
.vm_field_group label {
    display: block;
    color: var(--vm-light);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 8px;
}
.vm_required { color: var(--vm-saffron); margin-left: 3px; }
.vm_input, .vm_select, .vm_textarea {
    background: rgba(3,29,46,0.8) !important;
    border: 1px solid var(--vm-border) !important;
    color: var(--vm-light) !important;
    border-radius: 4px !important;
    transition: border-color 0.3s !important;
    font-size: 14px !important;
}
.vm_input:focus, .vm_select:focus, .vm_textarea:focus {
    border-color: var(--vm-gold) !important;
    background: rgba(3,29,46,0.95) !important;
    box-shadow: 0 0 0 3px rgba(201,168,76,0.15) !important;
}
.vm_select { height: 50px !important; cursor: pointer; }
.vm_textarea { height: auto !important; padding: 14px 20px !important; resize: vertical; }
.vm_field_hint { color: var(--vm-gold); font-size: 12px; display: block; margin-top: 5px; }
.vm_checkbox_grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 10px;
}
.vm_checkbox_label {
    display: flex !important;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 14px !important;
    text-transform: none !important;
    color: var(--vm-light) !important;
    letter-spacing: 0 !important;
    padding: 10px 14px;
    border: 1px solid var(--vm-border);
    border-radius: 4px;
    transition: all 0.2s;
    font-weight: normal !important;
    margin: 0 !important;
}
.vm_checkbox_label:hover { border-color: var(--vm-gold); background: rgba(201,168,76,0.08); }
.vm_checkbox_label input { accent-color: var(--vm-saffron); width: 16px; height: 16px; cursor: pointer; margin: 0; }
.vm_checkbox_label span { color: var(--vm-light); }

/* Dropzone */
.vm_dropzone {
    border: 2px dashed var(--vm-border);
    border-radius: var(--vm-radius);
    padding: 40px 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    background: rgba(3,29,46,0.5);
}
.vm_dropzone:hover, .vm_dropzone.vm_dragover {
    border-color: var(--vm-gold);
    background: rgba(201,168,76,0.05);
}
.vm_dropzone_secondary { border-color: rgba(201,168,76,0.2); padding: 28px 20px; }
.vm_dropzone_icon { font-size: 36px; color: var(--vm-gold); margin-bottom: 12px; }
.vm_dropzone_secondary .vm_dropzone_icon { font-size: 28px; }
.vm_dropzone_text strong { display: block; color: var(--vm-white); font-size: 15px; margin-bottom: 6px; }
.vm_dropzone_text span { display: block; color: var(--vm-gold); font-size: 13px; margin-bottom: 6px; }
.vm_dropzone_text small { color: var(--vm-light); opacity: 0.6; font-size: 12px; }
.vm_upload_note { font-size: 13px; color: var(--vm-gold); margin-bottom: 16px; }
.vm_file_preview_list { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 12px; }
.vm_file_preview {
    display: flex; align-items: center; gap: 8px;
    background: rgba(3,29,46,0.6);
    border: 1px solid var(--vm-border);
    border-radius: 4px;
    padding: 8px 12px;
    font-size: 13px;
    color: var(--vm-light);
}
.vm_file_preview i { color: var(--vm-gold); }
.vm_file_remove {
    color: var(--vm-saffron);
    cursor: pointer;
    margin-left: 6px;
    font-weight: 700;
    transition: color 0.2s;
}
.vm_file_remove:hover { color: #ff3030; }

/* Analysis type cards */
.vm_analysis_type_grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.vm_type_card {
    display: flex !important;
    align-items: flex-start;
    gap: 16px;
    border: 2px solid var(--vm-border);
    border-radius: var(--vm-radius);
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: normal !important;
    text-transform: none !important;
    color: var(--vm-light) !important;
    letter-spacing: 0 !important;
    margin: 0 !important;
    font-size: 14px !important;
}
.vm_type_card input[type="radio"] { display: none; }
.vm_type_card:hover, .vm_type_selected {
    border-color: var(--vm-gold) !important;
    background: rgba(201,168,76,0.08);
}
.vm_type_icon { font-size: 28px; color: var(--vm-gold); flex-shrink: 0; }
.vm_type_body h6 { color: var(--vm-white); font-size: 15px; margin-bottom: 6px; }
.vm_type_body p { font-size: 13px; color: var(--vm-light); opacity: 0.8; margin: 0 0 8px; }
.vm_type_badge { display: inline-block; padding: 2px 10px; border-radius: 10px; font-size: 11px; font-weight: 700; }
.vm_type_free { background: rgba(40,167,69,0.2); color: #28a745; border: 1px solid rgba(40,167,69,0.4); }

/* Submit */
.vm_form_submit { padding-top: 20px; }
.vm_consent { margin-bottom: 20px; }
.vm_consent .vm_checkbox_label {
    border: none; padding: 0;
    font-size: 13px !important;
    background: none;
}
.vm_consent .vm_checkbox_label a { color: var(--vm-gold); text-decoration: underline; }
.vm_submit_btn { width: 100%; justify-content: center; font-size: 16px; height: 56px; margin-left: 0; }
.vm_submit_note {
    text-align: center;
    font-size: 12px;
    color: var(--vm-light);
    opacity: 0.6;
    margin-top: 12px;
}
.vm_submit_note i { color: #28a745; margin-right: 6px; }

/* Upload progress */
.vm_upload_progress_bar { margin-bottom: 24px; }
.vm_progress_track {
    height: 6px;
    background: rgba(255,255,255,0.1);
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 8px;
}
.vm_progress_fill {
    height: 100%;
    background: linear-gradient(90deg, var(--vm-gold), var(--vm-saffron));
    border-radius: 3px;
    width: 0%;
    transition: width 0.5s;
    animation: progressPulse 1.5s infinite;
}
@keyframes progressPulse { 0%,100%{opacity:1} 50%{opacity:0.7} }
.vm_progress_label { font-size: 13px; color: var(--vm-gold); }

/* Sidebar */
.vm_analysis_sidebar { padding-left: 10px; }
.vm_sidebar_card {
    background: var(--vm-dark);
    border: 1px solid var(--vm-border);
    border-radius: var(--vm-radius);
    padding: 28px;
    margin-bottom: 24px;
}
.vm_sidebar_title {
    color: var(--vm-white);
    font-size: 17px;
    margin-bottom: 20px;
    display: flex; align-items: center; gap: 10px;
}
.vm_report_includes { list-style: none; padding: 0; margin: 0; }
.vm_report_includes li {
    display: flex; align-items: flex-start; gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    font-size: 14px; color: var(--vm-light);
}
.vm_report_includes li:last-child { border-bottom: none; }
.vm_report_includes li i { color: #28a745; font-size: 14px; margin-top: 3px; flex-shrink: 0; }
.vm_report_includes li strong { color: var(--vm-white); }
.vm_sidebar_tips { background: rgba(23,56,78,0.6); }
.vm_tip_item { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 16px; }
.vm_tip_num {
    width: 28px; height: 28px; min-width: 28px;
    background: var(--vm-saffron);
    color: white;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 13px; font-weight: 700;
}
.vm_tip_item p { font-size: 13px; color: var(--vm-light); opacity: 0.9; margin: 0; }
.vm_tip_item p strong { color: var(--vm-white); }

/* Timeline */
.vm_timeline { padding: 10px 0; }
.vm_timeline_item { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 20px; position: relative; }
.vm_timeline_item:not(:last-child)::before {
    content: '';
    position: absolute;
    left: 8px; top: 20px;
    width: 2px; height: calc(100% + 10px);
    background: rgba(255,255,255,0.1);
}
.vm_timeline_dot {
    width: 18px; height: 18px; min-width: 18px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    border: 2px solid rgba(255,255,255,0.2);
    margin-top: 3px;
}
.vm_dot_active { background: var(--vm-saffron); border-color: var(--vm-saffron); }
.vm_timeline_body h6 { color: var(--vm-white); font-size: 14px; margin-bottom: 3px; }
.vm_timeline_body p { font-size: 13px; color: var(--vm-gold); margin: 0; }

/* Trust badges */
.vm_trust_badges_card { background: rgba(3,29,46,0.6); }
.vm_trust_badge { text-align: center; padding: 10px; }
.vm_trust_badge i { font-size: 24px; color: var(--vm-gold); display: block; margin-bottom: 6px; }
.vm_trust_badge span { font-size: 12px; color: var(--vm-light); opacity: 0.8; }

/* ── RESULT SECTION ──────────────────────────────────────── */
.vm_result_section { background: var(--vm-nav); padding: 80px 0; }
.vm_result_wrapper {
    background: var(--vm-dark);
    border: 1px solid var(--vm-border);
    border-radius: var(--vm-radius);
    padding: 50px;
}
.vm_result_header { margin-bottom: 40px; }
.vm_result_icon {
    font-size: 56px;
    color: #28a745;
    margin-bottom: 16px;
}
.vm_result_header h2 { color: var(--vm-white); }
.vm_result_header p { color: var(--vm-gold); font-size: 16px; }
.vm_result_score_row {
    display: flex;
    gap: 40px;
    align-items: center;
    margin-bottom: 40px;
    padding: 30px;
    background: rgba(3,29,46,0.5);
    border-radius: var(--vm-radius);
    border: 1px solid var(--vm-border);
    flex-wrap: wrap;
}
.vm_score_circle {
    position: relative;
    width: 140px; height: 140px;
    flex-shrink: 0;
}
.vm_score_circle svg { width: 140px; height: 140px; transform: rotate(-90deg); }
.vm_score_track { fill: none; stroke: rgba(255,255,255,0.1); stroke-width: 8; }
.vm_score_fill  { fill: none; stroke: var(--vm-gold); stroke-width: 8; stroke-dasharray: 314; stroke-dashoffset: 314; stroke-linecap: round; transition: stroke-dashoffset 2s ease; }
.vm_score_value {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    font-size: 36px;
    font-weight: 700;
    color: var(--vm-gold);
    font-family: 'Philosopher', sans-serif;
    line-height: 1;
}
.vm_score_label {
    position: absolute;
    bottom: -24px; left: 50%;
    transform: translateX(-50%);
    font-size: 12px;
    color: var(--vm-light);
    white-space: nowrap;
}
.vm_score_summary { flex: 1; color: var(--vm-light); font-size: 15px; line-height: 1.7; }

/* Report HTML output styling */
.vm_result_body { color: var(--vm-light); line-height: 1.8; }
.vm_result_body h2, .vm_result_body h3, .vm_result_body h4 { color: var(--vm-white); }
.vm_result_body h2 { border-bottom: 2px solid var(--vm-saffron); padding-bottom: 10px; margin: 30px 0 20px; }
.vm_result_body .vm_report { font-size: 15px; }
.vm_result_body .vm_report_overview,
.vm_result_body .vm_report_zones,
.vm_result_body .vm_report_rooms,
.vm_result_body .vm_report_elements,
.vm_result_body .vm_report_defects,
.vm_result_body .vm_report_remedies,
.vm_result_body .vm_report_priorities {
    background: rgba(3,29,46,0.4);
    border: 1px solid var(--vm-border);
    border-radius: var(--vm-radius);
    padding: 28px;
    margin-bottom: 24px;
}
.vm_result_actions { margin-top: 40px; }

/* ── FAQ ─────────────────────────────────────────────────── */
.vm_faq_wrapper { background: var(--vm-dark); }
.vm_faq_list {}
.vm_faq_item {
    border: 1px solid var(--vm-border);
    border-radius: var(--vm-radius);
    margin-bottom: 12px;
    overflow: hidden;
}
.vm_faq_question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 24px;
    cursor: pointer;
    color: var(--vm-white);
    font-size: 15px;
    font-weight: 600;
    transition: background 0.2s;
}
.vm_faq_question:hover { background: rgba(201,168,76,0.08); }
.vm_faq_question i { color: var(--vm-gold); transition: transform 0.3s; }
.vm_faq_question.open i { transform: rotate(45deg); }
.vm_faq_answer { padding: 0 24px; max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s; }
.vm_faq_answer.open { max-height: 300px; padding: 0 24px 20px; }
.vm_faq_answer p { color: var(--vm-light); opacity: 0.85; font-size: 14px; margin: 0; }

/* ── ABOUT PAGE ──────────────────────────────────────────── */
.vm_about_card {
    background: var(--vm-dark);
    border: 1px solid var(--vm-border);
    border-radius: var(--vm-radius);
    padding: 30px;
    margin-bottom: 24px;
    text-align: center;
}
.vm_about_card img { width: 80px; height: 80px; border-radius: 50%; object-fit: cover; border: 2px solid var(--vm-gold); margin-bottom: 16px; }

/* ── CONTACT PAGE ────────────────────────────────────────── */
.vm_contact_card {
    background: var(--vm-dark);
    border: 1px solid var(--vm-border);
    border-radius: var(--vm-radius);
    padding: 30px;
    text-align: center;
    margin-bottom: 24px;
    transition: all 0.3s;
}
.vm_contact_card:hover { border-color: var(--vm-gold); transform: translateY(-5px); }
.vm_contact_card .vm_why_icon { font-size: 36px; }
.vm_contact_card h5 { color: var(--vm-white); }
.vm_contact_card p { font-size: 14px; color: var(--vm-light); opacity: 0.85; }

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 991px) {
    .vm_hero_wrapper { min-height: auto; }
    .vm_hero_content { padding: 40px 0; }
    .vm_hero_title { font-size: 36px; }
    .vm_compass_container { width: 220px; height: 220px; }
    .vm_ring_outer { width: 200px; height: 200px; }
    .vm_ring_middle { width: 140px; height: 140px; }
    .vm_ring_inner { width: 80px; height: 80px; }
    .vm_analysis_form_wrapper { padding: 24px; }
    .vm_analysis_sidebar { padding-left: 0; margin-top: 30px; }
    .vm_analysis_type_grid { grid-template-columns: 1fr; }
    .vm_trust_divider { display: none; }
    .vm_mandala_grid { max-width: 320px; }
    .vm_footer_legal { justify-content: flex-start; margin-top: 10px; }
}
@media (max-width: 767px) {
    .vm_newsletter_form { flex-direction: column; }
    .vm_newsletter_form .form-control { border-right: 1px solid var(--vm-border); }
    .vm_result_wrapper { padding: 24px; }
    .vm_result_score_row { flex-direction: column; text-align: center; }
    .vm_hero_visual { display: none; }
    .vm_checkbox_grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
    .vm_checkbox_grid { grid-template-columns: 1fr; }
    .vm_hero_actions { flex-direction: column; }
    .vm_step_card { margin-bottom: 40px; }
}

/* ── PRINT STYLES ────────────────────────────────────────── */
@media print {
    header, footer, .vm_newsletter_wrapper, .vm_faq_wrapper,
    .vm_analysis_sidebar, .vm_hero_wrapper, .vm_result_actions,
    .vm_breadcrumb_analysis { display: none !important; }
    .vm_result_section { display: block !important; }
    .vm_result_wrapper { border: none; background: white; color: black; }
    .vm_result_body * { color: black !important; background: white !important; }
}
