/* Variables for Cold Ink-Navy Style */
:root {
    --vmb-bg-deep: #000F2B;
    --vmb-bg-alt: #001A3D;
    --vmb-text-light: #D9FAFF;
    --vmb-accent-ice: #D9FAFF;
    --vmb-glass-bg: rgba(217, 250, 255, 0.05);
    --vmb-glass-border: rgba(217, 250, 255, 0.15);
    --vmb-ice-glow: 0 0 15px rgba(217, 250, 255, 0.4);
    --vmb-transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body.vmb_MainBody_Base {
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background-color: var(--vmb-bg-deep);
    color: var(--vmb-text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

.vmb_Section_Inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

/* Typography */
.vmb_H1_MainTitle {
    font-size: 3rem;
    line-height: 1.1;
    margin-bottom: 25px;
    color: var(--vmb-accent-ice);
    text-shadow: var(--vmb-ice-glow);
}

.vmb_H2_Title {
    font-size: 2.2rem;
    margin-bottom: 30px;
    color: var(--vmb-accent-ice);
}

.vmb_H3_PriceTitle {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.vmb_Text_Center { text-align: center; }

/* Header & Nav */
.vmb_Header_Glassy {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(0, 15, 43, 0.85);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--vmb-glass-border);
}

.vmb_Header_Container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.vmb_Logo_TextOnly {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--vmb-accent-ice);
    text-transform: uppercase;
}

.vmb_Nav_List {
    display: flex;
    list-style: none;
    gap: 30px;
}

.vmb_Nav_Link {
    text-decoration: none;
    color: var(--vmb-text-light);
    font-weight: 500;
    transition: var(--vmb-transition);
}

.vmb_Nav_Link:hover {
    color: var(--vmb-accent-ice);
    text-shadow: var(--vmb-ice-glow);
}

/* Burger Menu (No JS) */
.vmb_Menu_Checkbox { display: none; }
.vmb_Burger_Icon {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
}
.vmb_Burger_Icon span {
    width: 25px;
    height: 2px;
    background: var(--vmb-accent-ice);
    transition: var(--vmb-transition);
}

/* Hero Section */
.vmb_Hero_Grid {
    display: flex;
    gap: 40px;
    align-items: center;
    margin-bottom: 50px;
}

.vmb_Hero_ImageSide, .vmb_Hero_TextSide {
    flex: 1;
}

.vmb_Hero_MainImg {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: var(--vmb-ice-glow);
}

.vmb_Sub_Intro {
    font-size: 1.2rem;
    margin-bottom: 20px;
    opacity: 0.9;
}

.vmb_Hero_Desc {
    margin-bottom: 15px;
    font-weight: 300;
}

.vmb_Hero_Gallery {
    display: flex;
    gap: 20px;
    margin-top: 40px;
}

.vmb_Gallery_Item { flex: 1; }
.vmb_Img_Fluid { width: 100%; border-radius: 5px; opacity: 0.7; transition: var(--vmb-transition); }
.vmb_Img_Fluid:hover { opacity: 1; transform: scale(1.05); }

/* Buttons */
.vmb_Btn_Primary {
    display: inline-block;
    padding: 14px 30px;
    background-color: var(--vmb-accent-ice);
    color: var(--vmb-bg-deep);
    text-decoration: none;
    font-weight: 700;
    border-radius: 4px;
    transition: var(--vmb-transition);
}

.vmb_Btn_Primary:hover {
    box-shadow: var(--vmb-ice-glow);
    transform: translateY(-2px);
}

/* Price Section */
.vmb_Bordered_Block {
    border: 2px solid var(--vmb-glass-border);
    border-radius: 20px;
}

.vmb_Price_Grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 40px;
}

.vmb_Price_Card {
    flex: 1 1 calc(33.333% - 20px);
    background: var(--vmb-bg-alt);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid var(--vmb-glass-border);
    transition: var(--vmb-transition);
}

.vmb_Price_Card:hover {
    border-color: var(--vmb-accent-ice);
    transform: translateY(-5px);
}

.vmb_Price_Featured {
    background: var(--vmb-glass-bg);
    border-color: var(--vmb-accent-ice);
}

.vmb_Price_Tag {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--vmb-accent-ice);
}

.vmb_Price_Features {
    list-style: none;
}

.vmb_Price_Features li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.vmb_Price_Features li::before {
    content: "❄";
    position: absolute;
    left: 0;
    color: var(--vmb-accent-ice);
}

/* For Whom Section */
.vmb_Top_Photo_Wrap {
    margin-bottom: 40px;
    overflow: hidden;
    border-radius: 15px;
}

.vmb_Img_Wide {
    width: 100%;
    display: block;
    object-fit: cover;
}

.vmb_Custom_List {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 30px;
}

.vmb_List_Item {
    background: var(--vmb-glass-bg);
    padding: 15px;
    border-left: 3px solid var(--vmb-accent-ice);
}

/* Reviews Section */
.vmb_Reviews_Grid {
    display: flex;
    gap: 20px;
}

.vmb_Review_Card {
    flex: 1;
    background: var(--vmb-bg-alt);
    padding: 25px;
    border-radius: 10px;
    font-style: italic;
}

.vmb_Review_Author {
    display: block;
    margin-top: 15px;
    font-style: normal;
    font-weight: 700;
    color: var(--vmb-accent-ice);
}

/* Benefits Section */
.vmb_Benefits_Layout {
    display: flex;
    gap: 50px;
    align-items: center;
}

.vmb_Benefits_Text, .vmb_Benefits_Image { flex: 1; }
.vmb_Img_Radius { width: 100%; border-radius: 20px; }

.vmb_Benefits_List {
    list-style: none;
    margin-top: 20px;
}

.vmb_Benefits_List li {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

/* Expert Section */
.vmb_Glass_Panel {
    background: var(--vmb-glass-bg);
    border: 1px solid var(--vmb-glass-border);
    backdrop-filter: blur(5px);
    padding: 50px;
    border-radius: 30px;
    text-align: center;
}

.vmb_Main_Quote {
    font-size: 1.8rem;
    font-weight: 300;
    margin-bottom: 30px;
    position: relative;
}

.vmb_Expert_Info {
    display: flex;
    flex-direction: column;
}

.vmb_Expert_Name {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--vmb-accent-ice);
}

/* FAQ Section */
.vmb_FAQ_Container {
    max-width: 800px;
    margin: 0 auto;
}

.vmb_FAQ_Item {
    margin-bottom: 10px;
    border-bottom: 1px solid var(--vmb-glass-border);
}

.vmb_FAQ_Question {
    padding: 20px;
    cursor: pointer;
    font-weight: 600;
    list-style: none;
}

.vmb_FAQ_Question::-webkit-details-marker { display: none; }
.vmb_FAQ_Answer {
    padding: 0 20px 20px;
    opacity: 0.8;
}

/* Form Section */
.vmb_Form_Wrapper {
    max-width: 600px;
    margin: 0 auto;
}

.vmb_Main_Form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
}

.vmb_Form_Group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.vmb_Form_Group label {
    font-weight: 500;
}

.vmb_Form_Group input, .vmb_Form_Group textarea {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--vmb-glass-border);
    padding: 12px;
    color: #fff;
    border-radius: 5px;
}

.vmb_Btn_Submit {
    background: var(--vmb-accent-ice);
    color: var(--vmb-bg-deep);
    border: none;
    padding: 15px;
    font-weight: 700;
    cursor: pointer;
    border-radius: 5px;
    transition: var(--vmb-transition);
}

.vmb_Btn_Submit:hover { background: #fff; box-shadow: var(--vmb-ice-glow); }

/* Extra Sections */
.vmb_Extra_Section { padding: 40px 0; }
.vmb_Alt_Bg { background: var(--vmb-bg-alt); }
.vmb_Text_Bullets { margin: 20px 0; padding-left: 40px; }
.vmb_Text_Grid { display: flex; gap: 30px; margin-top: 30px; }
.vmb_Text_Col { flex: 1; background: var(--vmb-glass-bg); padding: 20px; border-radius: 10px; }

/* Footer */
.vmb_Footer_Base {
    background: #000;
    padding: 40px 0;
    border-top: 1px solid var(--vmb-glass-border);
    text-align: center;
}

.vmb_Footer_Links {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.vmb_Footer_Links a {
    color: var(--vmb-accent-ice);
    text-decoration: none;
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Responsive */
@media (max-width: 992px) {
    .vmb_Hero_Grid, .vmb_Benefits_Layout { flex-direction: column; }
    .vmb_Price_Card { flex: 1 1 calc(50% - 20px); }
    .vmb_H1_MainTitle { font-size: 2.2rem; }
}

@media (max-width: 768px) {
    .vmb_Nav_Wrapper {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--vmb-bg-deep);
        padding: 20px;
    }
    .vmb_Nav_List { flex-direction: column; text-align: center; }
    .vmb_Burger_Icon { display: flex; }
    #vmb_MobileMenu_Toggle:checked ~ .vmb_Nav_Wrapper { display: block; }
    .vmb_Price_Card { flex: 1 1 100%; }
    .vmb_Custom_List { grid-template-columns: 1fr; }
    .vmb_Reviews_Grid { flex-direction: column; }
    .vmb_Text_Grid { flex-direction: column; }
}